diff --git a/.github/workflows/build-docfx.yml b/.github/workflows/build-docfx.yml index d37e37026d740c..2842578abc80e4 100644 --- a/.github/workflows/build-docfx.yml +++ b/.github/workflows/build-docfx.yml @@ -21,7 +21,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 8.0.100 + dotnet-version: 9.0.x - name: Install dependencies run: dotnet restore diff --git a/.github/workflows/build-map-renderer.yml b/.github/workflows/build-map-renderer.yml index c1790feadb83ca..c179187f15530f 100644 --- a/.github/workflows/build-map-renderer.yml +++ b/.github/workflows/build-map-renderer.yml @@ -36,7 +36,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 8.0.100 + dotnet-version: 9.0.x - name: Install dependencies run: dotnet restore diff --git a/.github/workflows/build-test-debug.yml b/.github/workflows/build-test-debug.yml index bb0624e3ba04ab..9ae31c8c1b5c73 100644 --- a/.github/workflows/build-test-debug.yml +++ b/.github/workflows/build-test-debug.yml @@ -36,7 +36,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 8.0.100 + dotnet-version: 9.0.x - name: Install dependencies run: dotnet restore diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d9cfd3b25b4c39..b1e7bb1f3ef39f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -22,7 +22,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 8.0.100 + dotnet-version: 9.0.x - name: Get Engine Tag run: | diff --git a/.github/workflows/test-packaging.yml b/.github/workflows/test-packaging.yml index 27cf5d2d7b1792..2a9f01f4dbf64a 100644 --- a/.github/workflows/test-packaging.yml +++ b/.github/workflows/test-packaging.yml @@ -51,7 +51,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 8.0.100 + dotnet-version: 9.0.x - name: Install dependencies run: dotnet restore diff --git a/.github/workflows/yaml-linter.yml b/.github/workflows/yaml-linter.yml index 8660ccc04079cd..070f8bf2cc8dc3 100644 --- a/.github/workflows/yaml-linter.yml +++ b/.github/workflows/yaml-linter.yml @@ -26,7 +26,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3.2.0 with: - dotnet-version: 8.0.100 + dotnet-version: 9.0.x - name: Install dependencies run: dotnet restore - name: Build diff --git a/Content.Client/Weather/WeatherSystem.cs b/Content.Client/Weather/WeatherSystem.cs index 64ce64415d954e..b8c7ee75b85c49 100644 --- a/Content.Client/Weather/WeatherSystem.cs +++ b/Content.Client/Weather/WeatherSystem.cs @@ -44,7 +44,8 @@ protected override void Run(EntityUid uid, WeatherData weather, WeatherPrototype return; } - if (!Timing.IsFirstTimePredicted || weatherProto.Sound == null) + if (!Timing.IsFirstTimePredicted || weatherProto.Sound == null + || weather.Stream is not null) // Don't ever generate more than one weather sound. return; var playStream = _audio.PlayGlobal(weatherProto.Sound, Filter.Local(), true); diff --git a/Content.IntegrationTests/Tests/GameObjects/Components/Mobs/AlertsComponentTests.cs b/Content.IntegrationTests/Tests/GameObjects/Components/Mobs/AlertsComponentTests.cs index ee2ddb2790cdbd..2f02d930f2424e 100644 --- a/Content.IntegrationTests/Tests/GameObjects/Components/Mobs/AlertsComponentTests.cs +++ b/Content.IntegrationTests/Tests/GameObjects/Components/Mobs/AlertsComponentTests.cs @@ -35,7 +35,7 @@ await server.WaitAssertion(() => { playerUid = serverPlayerManager.Sessions.Single().AttachedEntity.GetValueOrDefault(); #pragma warning disable NUnit2045 // Interdependent assertions. - Assert.That(playerUid, Is.Not.EqualTo(default)); + Assert.That(playerUid, Is.Not.EqualTo(default(EntityUid))); // Making sure it exists Assert.That(entManager.HasComponent(playerUid)); #pragma warning restore NUnit2045 diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index bc3fedbd954afe..d3940718714c2b 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -8,7 +8,6 @@ using Content.Server.Spawners.Components; using Content.Server.Station.Components; using Content.Shared.CCVar; -using Content.Shared.Roles; using Robust.Server.GameObjects; using Robust.Shared.Configuration; using Robust.Shared.ContentPack; @@ -16,7 +15,6 @@ using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Prototypes; -using FastAccessors; using Robust.Shared.Utility; using YamlDotNet.RepresentationModel; @@ -65,7 +63,8 @@ public sealed class PostMapInitTest "Submarine", //DeltaV "Gax", "Rad", - "Europa" + "Europa", + "Meta" }; /// @@ -253,6 +252,7 @@ await server.WaitPost(() => // This is done inside gamemap test because loading the map takes ages and we already have it. var spawnPoints = entManager.EntityQuery() .Where(x => x.SpawnType == SpawnPointType.Job) + .Where(x => x.Job!.JobEntity == null) .Select(x => x.Job!.ID); jobs.ExceptWith(spawnPoints); diff --git a/Content.PatreonParser/Content.PatreonParser.csproj b/Content.PatreonParser/Content.PatreonParser.csproj index 3206ad42e9d23b..1724ec0cea2d48 100644 --- a/Content.PatreonParser/Content.PatreonParser.csproj +++ b/Content.PatreonParser/Content.PatreonParser.csproj @@ -2,7 +2,7 @@ Exe - net7.0 + net9.0 enable enable true diff --git a/Content.Server.Database/Migrations/Postgres/20241222203147_UpstreamMerge.cs b/Content.Server.Database/Migrations/Postgres/20241222203147_UpstreamMerge.cs index 029a62460ba927..0269f6dcdd2d68 100644 --- a/Content.Server.Database/Migrations/Postgres/20241222203147_UpstreamMerge.cs +++ b/Content.Server.Database/Migrations/Postgres/20241222203147_UpstreamMerge.cs @@ -11,23 +11,11 @@ public partial class UpstreamMerge : Migration protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.Sql("DROP TABLE IF EXISTS ProileLoadouts;"); - - migrationBuilder.AddForeignKey( - name: "FK_loadout_profile_profile_id", - table: "loadout", - column: "profile_id", - principalTable: "profile", - principalColumn: "profile_id", - onDelete: ReferentialAction.Cascade); } /// protected override void Down(MigrationBuilder migrationBuilder) { - migrationBuilder.DropForeignKey( - name: "FK_loadout_profile_profile_id", - table: "loadout"); - migrationBuilder.CreateTable( name: "ProfileLoadout", columns: table => new diff --git a/Content.Server.Database/Migrations/Sqlite/20241222203134_UpstreamMerge.cs b/Content.Server.Database/Migrations/Sqlite/20241222203134_UpstreamMerge.cs index 8b5d357376314c..bdda99b9c90a77 100644 --- a/Content.Server.Database/Migrations/Sqlite/20241222203134_UpstreamMerge.cs +++ b/Content.Server.Database/Migrations/Sqlite/20241222203134_UpstreamMerge.cs @@ -11,23 +11,11 @@ public partial class UpstreamMerge : Migration protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.Sql("DROP TABLE IF EXISTS ProileLoadouts;"); - - migrationBuilder.AddForeignKey( - name: "FK_loadout_profile_profile_id", - table: "loadout", - column: "profile_id", - principalTable: "profile", - principalColumn: "profile_id", - onDelete: ReferentialAction.Cascade); } /// protected override void Down(MigrationBuilder migrationBuilder) { - migrationBuilder.DropForeignKey( - name: "FK_loadout_profile_profile_id", - table: "loadout"); - migrationBuilder.CreateTable( name: "ProfileLoadout", columns: table => new diff --git a/Content.Server/Administration/Commands/PlayTimeUnlockCommands.cs b/Content.Server/Administration/Commands/PlayTimeUnlockCommands.cs new file mode 100644 index 00000000000000..2642b8ff0ab679 --- /dev/null +++ b/Content.Server/Administration/Commands/PlayTimeUnlockCommands.cs @@ -0,0 +1,128 @@ +using System.Linq; +using Content.Server.Players.PlayTimeTracking; +using Content.Shared.Administration; +using Content.Shared.Customization.Systems; +using Content.Shared.Roles; +using Robust.Server.Player; +using Robust.Shared.Console; +using Robust.Shared.Prototypes; + + +namespace Content.Server.Administration.Commands; + +[AdminCommand(AdminFlags.Admin)] +public sealed class PlayTimeUnlockCommands : IConsoleCommand +{ + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly PlayTimeTrackingManager _playTimeTracking = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + + public string Command => "playtime_unlock"; + public string Description => Loc.GetString("cmd-playtime_unlock-desc"); + public string Help => Loc.GetString("cmd-playtime_unlock-help", ("command", Command)); + + private Dictionary _departmentToTrackers = new(); + + public void Execute(IConsoleShell shell, string argStr, string[] args) + { + if (_departmentToTrackers.Count == 0) + PopulateDepartmentConversions(); + + if (args.Length != 2) + { + shell.WriteError(Loc.GetString("cmd-playtime_addoverall-error-args")); + return; + } + + if (!_playerManager.TryGetSessionByUsername(args[0], out var player)) + { + shell.WriteError(Loc.GetString("parse-session-fail", ("username", args[0]))); + return; + } + + var jobName = args[1]; + var jobExists = _prototypeManager.TryIndex(jobName, out var job); + + if (!jobExists) + { + shell.WriteError(Loc.GetString("cmd-playtime_unlock-error-job", ("invalidJob", jobName))); + return; + } + + if (job == null || job.Requirements == null) + { + shell.WriteError(Loc.GetString("cmd-playtime_unlock-error-no-requirements")); + return; + } + + var jobPlaytimeRequirements = job.Requirements + .Where(r => r is CharacterPlaytimeRequirement) + .Cast() + .ToList(); + + var jobDepartmentRequirements = job.Requirements + .Where(r => r is CharacterDepartmentTimeRequirement) + .Cast() + .ToList(); + + if (!jobPlaytimeRequirements.Any() && !jobDepartmentRequirements.Any()) + { + shell.WriteError(Loc.GetString("cmd-playtime_unlock-error-no-requirements")); + return; + } + + foreach (var jobPlaytimeRequirement in jobPlaytimeRequirements) + _playTimeTracking.AddTimeToTracker(player, jobPlaytimeRequirement.Tracker, jobPlaytimeRequirement.Min); + + foreach (var jobDepartmentRequirement in jobDepartmentRequirements) + { + if (!_departmentToTrackers.TryGetValue(jobDepartmentRequirement.Department, out var jobId)) + continue; + + var exists = _prototypeManager.TryIndex(jobId, out var jobPrototype); + + if (!exists) + continue; + + _playTimeTracking.AddTimeToTracker(player, jobPrototype!.PlayTimeTracker, jobDepartmentRequirement.Min); + } + + shell.WriteLine(Loc.GetString("shell-command-success")); + } + + public CompletionResult GetCompletion(IConsoleShell shell, string[] args) + { + if (args.Length == 1) + { + return CompletionResult.FromHintOptions( + CompletionHelper.SessionNames(players: _playerManager), + Loc.GetString("cmd-playtime_unlock-arg-user")); + } + + if (args.Length == 2) + { + return CompletionResult.FromHintOptions( + CompletionHelper.PrototypeIDs(), + Loc.GetString("cmd-playtime_unlock-arg-job")); + } + + return CompletionResult.Empty; + } + + private void PopulateDepartmentConversions() + { + var allDepartments = _prototypeManager.EnumeratePrototypes() + .ToList(); + + foreach (var department in allDepartments) + { + if (_departmentToTrackers.ContainsKey(department.ID)) + continue; + + if (department.Roles.Count == 0) + continue; + + _departmentToTrackers.Add(department.ID, department.Roles[0]); + } + } +} diff --git a/Content.Server/Animals/Components/UdderComponent.cs b/Content.Server/Animals/Components/UdderComponent.cs index 620f4572a71287..f01c11c5dd77d1 100644 --- a/Content.Server/Animals/Components/UdderComponent.cs +++ b/Content.Server/Animals/Components/UdderComponent.cs @@ -29,7 +29,7 @@ internal sealed partial class UdderComponent : Component /// /// The solution to add reagent to. /// - [DataField] + [ViewVariables] public Entity? Solution = null; /// diff --git a/Content.Server/Animals/Components/WoolyComponent.cs b/Content.Server/Animals/Components/WoolyComponent.cs index c09c6f5e089e2e..77dbd9033225a4 100644 --- a/Content.Server/Animals/Components/WoolyComponent.cs +++ b/Content.Server/Animals/Components/WoolyComponent.cs @@ -29,7 +29,7 @@ public sealed partial class WoolyComponent : Component /// /// The solution to add reagent to. /// - [DataField] + [ViewVariables(VVAccess.ReadOnly)] public Entity? Solution; /// diff --git a/Content.Server/Anomaly/Components/ReagentProducerAnomalyComponent.cs b/Content.Server/Anomaly/Components/ReagentProducerAnomalyComponent.cs index 49c62aec81d6f6..3f63a0518cfaec 100644 --- a/Content.Server/Anomaly/Components/ReagentProducerAnomalyComponent.cs +++ b/Content.Server/Anomaly/Components/ReagentProducerAnomalyComponent.cs @@ -97,6 +97,6 @@ public sealed partial class ReagentProducerAnomalyComponent : Component /// /// Solution where the substance is generated /// - [DataField("solutionRef")] + [ViewVariables] public Entity? Solution = null; } diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasCondenserComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasCondenserComponent.cs index c25c010708f987..e89bba1fd7097d 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasCondenserComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasCondenserComponent.cs @@ -25,7 +25,7 @@ public sealed partial class GasCondenserComponent : Component /// /// The solution that gases are condensed into. /// - [DataField] + [ViewVariables] public Entity? Solution = null; /// diff --git a/Content.Server/Body/Components/BloodstreamComponent.cs b/Content.Server/Body/Components/BloodstreamComponent.cs index ee0de4aa4dc3ab..0dacd1753a659c 100644 --- a/Content.Server/Body/Components/BloodstreamComponent.cs +++ b/Content.Server/Body/Components/BloodstreamComponent.cs @@ -160,22 +160,22 @@ public sealed partial class BloodstreamComponent : Component /// /// Internal solution for blood storage /// - [DataField] - public Entity? BloodSolution = null; + [ViewVariables] + public Entity? BloodSolution; /// /// Internal solution for reagent storage /// - [DataField] - public Entity? ChemicalSolution = null; + [ViewVariables] + public Entity? ChemicalSolution; /// /// Temporary blood solution. /// When blood is lost, it goes to this solution, and when this /// solution hits a certain cap, the blood is actually spilled as a puddle. /// - [DataField] - public Entity? TemporarySolution = null; + [ViewVariables] + public Entity? TemporarySolution; /// /// Variable that stores the amount of status time added by having a low blood level. diff --git a/Content.Server/Body/Components/LungComponent.cs b/Content.Server/Body/Components/LungComponent.cs index 72af4d9e63a991..4fb769d6702aaa 100644 --- a/Content.Server/Body/Components/LungComponent.cs +++ b/Content.Server/Body/Components/LungComponent.cs @@ -26,7 +26,7 @@ public sealed partial class LungComponent : Component /// /// The solution on this entity that these lungs act on. /// - [DataField] + [ViewVariables] public Entity? Solution = null; /// diff --git a/Content.Server/Body/Components/StomachComponent.cs b/Content.Server/Body/Components/StomachComponent.cs index d541ca4d7c4536..06f03482e7e676 100644 --- a/Content.Server/Body/Components/StomachComponent.cs +++ b/Content.Server/Body/Components/StomachComponent.cs @@ -25,8 +25,8 @@ public sealed partial class StomachComponent : Component /// /// The solution inside of this stomach this transfers reagents to the body. /// - [DataField] - public Entity? Solution = null; + [ViewVariables] + public Entity? Solution; /// /// What solution should this stomach push reagents into, on the body? diff --git a/Content.Server/Body/Systems/InternalsSystem.cs b/Content.Server/Body/Systems/InternalsSystem.cs index b79e083bd467ce..56fc981a0f4318 100644 --- a/Content.Server/Body/Systems/InternalsSystem.cs +++ b/Content.Server/Body/Systems/InternalsSystem.cs @@ -51,7 +51,7 @@ private void OnStartingGear(EntityUid uid, InternalsComponent component, ref Sta return; // already connected // Can the entity breathe the air it is currently exposed to? - if (_respirator.CanMetabolizeInhaledAir(uid)) + if (!TryComp(uid, out RespiratorComponent? respirator) || _respirator.CanMetabolizeInhaledAir((uid, respirator))) return; var tank = FindBestGasTank(uid); diff --git a/Content.Server/Botany/Components/PlantHolderComponent.cs b/Content.Server/Botany/Components/PlantHolderComponent.cs index 809af737ac666f..84dcab2e04ca16 100644 --- a/Content.Server/Botany/Components/PlantHolderComponent.cs +++ b/Content.Server/Botany/Components/PlantHolderComponent.cs @@ -92,6 +92,6 @@ public sealed partial class PlantHolderComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("solution")] public string SoilSolutionName = "soil"; - [DataField] + [ViewVariables] public Entity? SoilSolution = null; } diff --git a/Content.Server/Botany/Systems/MutationSystem.cs b/Content.Server/Botany/Systems/MutationSystem.cs index 4780f8b3310fb2..c4c826a03c5b11 100644 --- a/Content.Server/Botany/Systems/MutationSystem.cs +++ b/Content.Server/Botany/Systems/MutationSystem.cs @@ -5,7 +5,6 @@ using Content.Shared.Chemistry.Reagent; using System.Linq; using Content.Shared.Atmos; -using FastAccessors; namespace Content.Server.Botany; diff --git a/Content.Server/Cargo/Systems/PricingSystem.cs b/Content.Server/Cargo/Systems/PricingSystem.cs index d936451d524d3d..119b7a5aab8acd 100644 --- a/Content.Server/Cargo/Systems/PricingSystem.cs +++ b/Content.Server/Cargo/Systems/PricingSystem.cs @@ -424,7 +424,7 @@ public record struct PriceCalculationEvent() [ByRefEvent] public record struct EstimatedPriceCalculationEvent() { - public EntityPrototype Prototype; + public required EntityPrototype Prototype; /// /// The total price of the entity. diff --git a/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs b/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs index 23bf6b215736e3..2daad5eb19f0ec 100644 --- a/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs +++ b/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs @@ -20,8 +20,8 @@ public sealed partial class SolutionRegenerationComponent : Component /// /// The solution to add reagents to. /// - [DataField("solutionRef")] - public Entity? Solution = null; + [ViewVariables] + public Entity? SolutionRef = null; /// /// The reagent(s) to be regenerated in the solution. diff --git a/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs index 5af181e4af5a08..fdfacde3476026 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs @@ -24,7 +24,7 @@ public override void Update(float frameTime) // timer ignores if its full, it's just a fixed cycle regen.NextRegenTime = _timing.CurTime + regen.Duration; - if (_solutionContainer.ResolveSolution((uid, manager), regen.SolutionName, ref regen.Solution, out var solution)) + if (_solutionContainer.ResolveSolution((uid, manager), regen.SolutionName, ref regen.SolutionRef, out var solution)) { var amount = FixedPoint2.Min(solution.AvailableVolume, regen.Generated.Volume); if (amount <= FixedPoint2.Zero) @@ -41,7 +41,7 @@ public override void Update(float frameTime) generated = regen.Generated.Clone().SplitSolution(amount); } - _solutionContainer.TryAddSolution(regen.Solution.Value, generated); + _solutionContainer.TryAddSolution(regen.SolutionRef.Value, generated); } } } diff --git a/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs b/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs index a5ebb0fd9e123b..4dc8795d580053 100644 --- a/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs +++ b/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs @@ -149,14 +149,14 @@ public void ForceFree(EntityUid ensnare, EnsnaringComponent component) var target = component.Ensnared.Value; - _container.Remove(ensnare, ensnareable.Container, force: true); + _container.TryRemoveFromContainer(ensnare, force: true); // Goobstation - fix on ensnare entity remove ensnareable.IsEnsnared = ensnareable.Container.ContainedEntities.Count > 0; Dirty(component.Ensnared.Value, ensnareable); component.Ensnared = null; UpdateAlert(target, ensnareable); var ev = new EnsnareRemoveEvent(component.WalkSpeed, component.SprintSpeed); - RaiseLocalEvent(ensnare, ev); + RaiseLocalEvent(target, ev); } /// diff --git a/Content.Server/Materials/MaterialSiloSystem.cs b/Content.Server/Materials/MaterialSiloSystem.cs index 649a82f7af7407..1573da23136e6d 100644 --- a/Content.Server/Materials/MaterialSiloSystem.cs +++ b/Content.Server/Materials/MaterialSiloSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.DeviceLinking; using Content.Shared.Lathe; using Content.Shared.Materials; +using Robust.Server.GameStates; using Robust.Shared.Timing; namespace Content.Server.Materials; @@ -11,6 +12,7 @@ namespace Content.Server.Materials; public sealed class MaterialSiloSystem : SharedMaterialSiloSystem { [Dependency] private readonly LatheSystem _lathe = default!; + [Dependency] private readonly PvsOverrideSystem _pvs = default!; public override void Initialize() { @@ -18,6 +20,8 @@ public override void Initialize() SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnMaterialAmountChanged); + SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnShutdown); } private void OnMaterialAmountChanged(Entity ent, ref MaterialAmountChangedEvent args) @@ -67,4 +71,14 @@ private void OnMapInit(Entity ent, ref MapInitEvent arg DeviceLink.LinkDefaults(null, silo.Value, utilizer, silo.Value.Comp, sink); } } + + private void OnStartup(Entity ent, ref ComponentStartup args) + { + _pvs.AddGlobalOverride(ent); + } + + private void OnShutdown(Entity ent, ref ComponentShutdown args) + { + _pvs.RemoveGlobalOverride(ent); + } } diff --git a/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs b/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs index f5591daa4763f3..12e33b48a49275 100644 --- a/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs +++ b/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs @@ -189,9 +189,9 @@ private void UpdateRanged(float frameTime) EntityCoordinates targetCordinates; if (_mapManager.TryFindGridAt(xform.MapID, targetPos, out var gridUid, out var mapGrid)) - targetCordinates = new(gridUid, _map.WorldToLocal(comp.Target, mapGrid, targetSpot)); + targetCordinates = new EntityCoordinates(gridUid, mapGrid.WorldToLocal(targetSpot)); else - targetCordinates = new(xform.MapUid!.Value, targetSpot); + targetCordinates = new EntityCoordinates(xform.MapUid!.Value, targetSpot); comp.Status = CombatStatus.Normal; diff --git a/Content.Server/Power/Generator/ChemicalFuelGeneratorAdapterComponent.cs b/Content.Server/Power/Generator/ChemicalFuelGeneratorAdapterComponent.cs index 58e0e8b012a8f1..d36828eb83a5a2 100644 --- a/Content.Server/Power/Generator/ChemicalFuelGeneratorAdapterComponent.cs +++ b/Content.Server/Power/Generator/ChemicalFuelGeneratorAdapterComponent.cs @@ -29,7 +29,7 @@ public sealed partial class ChemicalFuelGeneratorAdapterComponent : Component /// /// The solution on the to use. /// - [DataField("solutionRef")] + [ViewVariables] public Entity? Solution = null; /// diff --git a/Content.Server/_Goobstation/Interaction/Components/UseOnStationOnlyComponent.cs b/Content.Server/_Goobstation/Interaction/Components/UseOnStationOnlyComponent.cs new file mode 100644 index 00000000000000..9e93f91d139915 --- /dev/null +++ b/Content.Server/_Goobstation/Interaction/Components/UseOnStationOnlyComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Server._Goobstation.Interaction.Components; + +/// +/// Allows use item with component on stations only +/// +[RegisterComponent] +public sealed partial class UseOnStationOnlyComponent : Component +{ +} diff --git a/Content.Server/_Goobstation/Interaction/Systems/UseOnStationOnlySystem.cs b/Content.Server/_Goobstation/Interaction/Systems/UseOnStationOnlySystem.cs new file mode 100644 index 00000000000000..66ba9e0d8f233c --- /dev/null +++ b/Content.Server/_Goobstation/Interaction/Systems/UseOnStationOnlySystem.cs @@ -0,0 +1,28 @@ +using Content.Server._Goobstation.Interaction.Components; +using Content.Server.Popups; +using Content.Server.Station.Systems; +using Content.Shared._Goobstation.Interaction; + +namespace Content.Server._Goobstation.Interaction.Systems; + +public sealed partial class UseOnStationOnlySystem : EntitySystem +{ + [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly PopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnUseAttempt); + } + + private void OnUseAttempt(Entity item, ref UseInHandAttemptEvent args) + { + if (_station.GetOwningStation(args.User) is not null) + return; + + _popup.PopupEntity(Loc.GetString("use-on-station-only-not-on-station"), args.User, args.User); + args.Cancel(); + } +} diff --git a/Content.Server/_Goobstation/Spawn/Components/UniqueEntityCheckerComponent.cs b/Content.Server/_Goobstation/Spawn/Components/UniqueEntityCheckerComponent.cs new file mode 100644 index 00000000000000..b5e78366865bb6 --- /dev/null +++ b/Content.Server/_Goobstation/Spawn/Components/UniqueEntityCheckerComponent.cs @@ -0,0 +1,15 @@ +namespace Content.Server._Goobstation.Spawn.Components; + +/// +/// Ensures that related entity will be on station (like NTR or BSO lockers) and will be not duplicate. +/// If station have unique entity - item with this component will be deleted. +/// +[RegisterComponent] +public sealed partial class UniqueEntityCheckerComponent : Component +{ + /// + /// Name of marker in UniqueEntityMarker + /// + [DataField] + public string? MarkerName; +} diff --git a/Content.Server/_Goobstation/Spawn/Components/UniqueEntityMarkerComponent.cs b/Content.Server/_Goobstation/Spawn/Components/UniqueEntityMarkerComponent.cs new file mode 100644 index 00000000000000..ffabf76440d770 --- /dev/null +++ b/Content.Server/_Goobstation/Spawn/Components/UniqueEntityMarkerComponent.cs @@ -0,0 +1,21 @@ +namespace Content.Server._Goobstation.Spawn.Components; + +/// +/// Component-marker for unique entity +/// +[RegisterComponent] +public sealed partial class UniqueEntityMarkerComponent : Component +{ + /// + /// Marker name that would be used in check + /// + [DataField] + public string? MarkerName; + + /// + /// If true - marker will work on grids with StationDataComponent + /// If false - marker will work globally + /// + [DataField] + public bool StationOnly = true; +} diff --git a/Content.Server/_Goobstation/Spawn/Systems/UniqueEntitySystem.cs b/Content.Server/_Goobstation/Spawn/Systems/UniqueEntitySystem.cs new file mode 100644 index 00000000000000..47c9425cc5b052 --- /dev/null +++ b/Content.Server/_Goobstation/Spawn/Systems/UniqueEntitySystem.cs @@ -0,0 +1,43 @@ +using Content.Server._Goobstation.Spawn.Components; +using Content.Server.Station.Components; +using Content.Server.Station.Systems; + +namespace Content.Server._Goobstation.Spawn.Systems; + +public sealed partial class UniqueEntitySystem : EntitySystem +{ + [Dependency] private readonly StationSystem _station = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnComponentInit); + } + + public void OnComponentInit(Entity checker, ref ComponentInit args) + { + var comp = checker.Comp; + + if (string.IsNullOrEmpty(comp.MarkerName)) + return; + + var query = EntityQueryEnumerator(); + + while (query.MoveNext(out var uid, out var marker, out var xform)) + { + if (string.IsNullOrEmpty(marker.MarkerName) + || marker.MarkerName != comp.MarkerName + || uid == checker.Owner) + continue; + + // Check if marker on station + if (marker.StationOnly && _station.GetOwningStation(uid, xform) is null) + continue; + + // Delete it if found unique entity + QueueDel(checker); + return; + } + } +} diff --git a/Content.Shared/Actions/Events/AnomalyPowerActionEvent.cs b/Content.Shared/Actions/Events/AnomalyPowerActionEvent.cs index 9184460153b288..a234521ecb2b21 100644 --- a/Content.Shared/Actions/Events/AnomalyPowerActionEvent.cs +++ b/Content.Shared/Actions/Events/AnomalyPowerActionEvent.cs @@ -74,7 +74,7 @@ public sealed partial class AnomalyPowerActionEvent : InstantActionEvent [DataRecord] public partial record struct AnomalyPowerSettings() { - public string PowerName; + public string PowerName = string.Empty; public float ManaCost; diff --git a/Content.Shared/Announcements/Systems/SharedAnnouncerSystem.cs b/Content.Shared/Announcements/Systems/SharedAnnouncerSystem.cs index 5e02b602d068b2..1aad348a5acecf 100644 --- a/Content.Shared/Announcements/Systems/SharedAnnouncerSystem.cs +++ b/Content.Shared/Announcements/Systems/SharedAnnouncerSystem.cs @@ -66,7 +66,7 @@ public string GetAnnouncementPath(string announcementId, AnnouncerPrototype anno public string GetAnnouncementId(string announcementId, bool ended = false) { // Replace the first letter with lowercase - var id = char.ToLowerInvariant(announcementId[0]) + announcementId[1..]; + var id = OopsConcat(char.ToLowerInvariant(announcementId[0]).ToString(), announcementId[1..]); // If the event has ended, add "Complete" to the end if (ended) @@ -75,6 +75,12 @@ public string GetAnnouncementId(string announcementId, bool ended = false) return id; } + private string OopsConcat(string a, string b) + { + // This exists to prevent Roslyn being clever and compiling something that fails sandbox checks. + return a + b; + } + /// /// Gets audio params from the announcer diff --git a/Content.Shared/Chemistry/Components/SmokeComponent.cs b/Content.Shared/Chemistry/Components/SmokeComponent.cs index f07a77c1ac6673..db4ad37c7ab44a 100644 --- a/Content.Shared/Chemistry/Components/SmokeComponent.cs +++ b/Content.Shared/Chemistry/Components/SmokeComponent.cs @@ -16,7 +16,7 @@ public sealed partial class SmokeComponent : Component /// /// The solution on the entity with touch and ingestion reactions. /// - [DataField] + [ViewVariables] public Entity? Solution = null; /// diff --git a/Content.Shared/Chemistry/Components/SolutionContainerMixerComponent.cs b/Content.Shared/Chemistry/Components/SolutionContainerMixerComponent.cs index 8e4b6f52d875f8..58aba436278f12 100644 --- a/Content.Shared/Chemistry/Components/SolutionContainerMixerComponent.cs +++ b/Content.Shared/Chemistry/Components/SolutionContainerMixerComponent.cs @@ -33,7 +33,7 @@ public sealed partial class SolutionContainerMixerComponent : Component [DataField, AutoNetworkedField] public SoundSpecifier? MixingSound; - [DataField] + [ViewVariables] public Entity? MixingSoundEntity; } diff --git a/Content.Shared/Ensnaring/SharedEnsnareableSystem.cs b/Content.Shared/Ensnaring/SharedEnsnareableSystem.cs index 4f35dc583a1ad2..e51c87329f4186 100644 --- a/Content.Shared/Ensnaring/SharedEnsnareableSystem.cs +++ b/Content.Shared/Ensnaring/SharedEnsnareableSystem.cs @@ -24,10 +24,23 @@ public override void Initialize() SubscribeLocalEvent(OnEnsnare); SubscribeLocalEvent(OnEnsnareRemove); SubscribeLocalEvent(OnEnsnareChange); + //SubscribeLocalEvent(OnProjectileHit); // Goobstation - TODO: add after ensnareable refactor SubscribeLocalEvent(OnGetState); SubscribeLocalEvent(OnHandleState); } + // // Goobstation - TODO: add after ensnareable refactor + // private void OnProjectileHit(EntityUid uid, EnsnaringComponent component, ProjectileHitEvent args) + // { + // if (!component.CanThrowTrigger) + // return; + // + // if (TryEnsnare(args.Target, uid, component)) + // { + // _audio.PlayPvs(component.EnsnareSound, uid); + // } + // } + private void OnHandleState(EntityUid uid, EnsnareableComponent component, ref ComponentHandleState args) { if (args.Current is not EnsnareableComponentState state) diff --git a/Content.Shared/Execution/DoafterEvent.cs b/Content.Shared/Execution/DoafterEvent.cs deleted file mode 100644 index 78549745276302..00000000000000 --- a/Content.Shared/Execution/DoafterEvent.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Content.Shared.DoAfter; -using Robust.Shared.Serialization; - -namespace Content.Shared.Execution; - -[Serializable, NetSerializable] -public sealed partial class ExecutionDoAfterEvent : SimpleDoAfterEvent -{ -} diff --git a/Content.Shared/Execution/DoAfterEvent.cs b/Content.Shared/Execution/ExecutionDoAfterEvent.cs similarity index 100% rename from Content.Shared/Execution/DoAfterEvent.cs rename to Content.Shared/Execution/ExecutionDoAfterEvent.cs diff --git a/Content.Shared/Fluids/Components/DrainComponent.cs b/Content.Shared/Fluids/Components/DrainComponent.cs index 4fb4fe9438335c..3a7bb9c1d61768 100644 --- a/Content.Shared/Fluids/Components/DrainComponent.cs +++ b/Content.Shared/Fluids/Components/DrainComponent.cs @@ -20,7 +20,7 @@ public sealed partial class DrainComponent : Component [ValidatePrototypeId] public const string PlungerTag = "Plunger"; - [DataField] + [ViewVariables] public Entity? Solution = null; [DataField("accumulator")] diff --git a/Content.Shared/Fluids/Components/PuddleComponent.cs b/Content.Shared/Fluids/Components/PuddleComponent.cs index b8a6fe0cb8826d..5434479fb71b5f 100644 --- a/Content.Shared/Fluids/Components/PuddleComponent.cs +++ b/Content.Shared/Fluids/Components/PuddleComponent.cs @@ -19,7 +19,7 @@ public sealed partial class PuddleComponent : Component [DataField("solution")] public string SolutionName = "puddle"; - [DataField("solutionRef")] + [ViewVariables] public Entity? Solution; } } diff --git a/Content.Shared/Footprint/FootPrintComponent.cs b/Content.Shared/Footprint/FootPrintComponent.cs index e1f9716057fdce..ec9fbec021cf13 100644 --- a/Content.Shared/Footprint/FootPrintComponent.cs +++ b/Content.Shared/Footprint/FootPrintComponent.cs @@ -18,6 +18,6 @@ public sealed partial class FootPrintComponent : Component [DataField] public string SolutionName = "step"; - [DataField] + [ViewVariables] public Entity? Solution; } diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index a2118205af1e29..00e51145c1a9df 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -7,6 +7,7 @@ using Content.Shared.CombatMode; using Content.Shared.Database; using Content.Shared.Ghost; +using Content.Shared._Goobstation.Interaction; using Content.Shared.Hands; using Content.Shared.Hands.Components; using Content.Shared.Input; @@ -1166,6 +1167,14 @@ public bool UseInHandInteraction( if (checkCanUse && !_actionBlockerSystem.CanUseHeldEntity(user, used)) return false; + // Goobstation [ + var useAttemptEv = new UseInHandAttemptEvent(user); + RaiseLocalEvent(used, useAttemptEv); + + if (useAttemptEv.Cancelled) + return false; + // ] Goobstation + var useMsg = new UseInHandEvent(user); RaiseLocalEvent(used, useMsg, true); if (useMsg.Handled) diff --git a/Content.Shared/Mind/MindComponent.cs b/Content.Shared/Mind/MindComponent.cs index 51a174c8465c86..e2ace2198b6f66 100644 --- a/Content.Shared/Mind/MindComponent.cs +++ b/Content.Shared/Mind/MindComponent.cs @@ -46,9 +46,9 @@ public sealed partial class MindComponent : Component /// The first entity that this mind controlled. Used for round end information. /// Might be relevant if the player has ghosted since. /// - [DataField, AutoNetworkedField] - public NetEntity? OriginalOwnedEntity; - // This is a net entity, because this field currently ddoes not get set to null when this entity is deleted. + [AutoNetworkedField] + public NetEntity? OriginalOwnedEntity; // TODO WeakEntityReference make this a Datafield again + // This is a net entity, because this field currently does not get set to null when this entity is deleted. // This is a lazy way to ensure that people check that the entity still exists. // TODO MIND Fix this properly by adding an OriginalMindContainerComponent or something like that. diff --git a/Content.Shared/Prototypes/LocalizedPrototype.cs b/Content.Shared/Prototypes/LocalizedPrototype.cs index acdd5fc180f913..b2f79864d1be7b 100644 --- a/Content.Shared/Prototypes/LocalizedPrototype.cs +++ b/Content.Shared/Prototypes/LocalizedPrototype.cs @@ -26,10 +26,16 @@ public string ToLocalizationString(string field) ((PrototypeAttribute?) Attribute.GetCustomAttribute(GetType(), typeof(PrototypeAttribute)))?.Type ?? GetType().Name.Remove(GetType().Name.Length - 9); // Lowercase the first letter - type = char.ToLowerInvariant(type[0]) + type[1..]; + type = OopsConcat(char.ToLowerInvariant(type[0]).ToString(), type[1..]); // Replace every uppercase letter with a dash and the lowercase letter - type = type.Aggregate("", (current, c) => current + (char.IsUpper(c) ? "-" + char.ToLowerInvariant(c) : c.ToString())); + type = type.Aggregate("", (current, c) => current + (char.IsUpper(c) ? OopsConcat("-", char.ToLowerInvariant(c).ToString()) : c.ToString())); return string.Format(LocFormat, type, ID, field); } + + private static string OopsConcat(string a, string b) + { + // This exists to prevent Roslyn being clever and compiling something that fails sandbox checks. + return a + b; + } } diff --git a/Content.Shared/Silicons/StationAi/StationAiVisionSystem.cs b/Content.Shared/Silicons/StationAi/StationAiVisionSystem.cs index bdc62a6bb3788e..86fd5881fecf35 100644 --- a/Content.Shared/Silicons/StationAi/StationAiVisionSystem.cs +++ b/Content.Shared/Silicons/StationAi/StationAiVisionSystem.cs @@ -278,7 +278,7 @@ private bool IsCorner( /// private record struct SeedJob() : IRobustJob { - public StationAiVisionSystem System; + public required StationAiVisionSystem System; public Entity Grid; public Box2 ExpandedBounds; @@ -293,14 +293,14 @@ private record struct ViewJob() : IParallelRobustJob { public int BatchSize => 1; - public IEntityManager EntManager; - public SharedMapSystem Maps; - public StationAiVisionSystem System; + public required IEntityManager EntManager; + public required SharedMapSystem Maps; + public required StationAiVisionSystem System; public Entity Grid; public List> Data = new(); - public HashSet VisibleTiles; + public HashSet VisibleTiles = new(); public readonly List> Vis1 = new(); public readonly List> Vis2 = new(); diff --git a/Content.Shared/_Goobstation/Interaction/InteractionEvents.cs b/Content.Shared/_Goobstation/Interaction/InteractionEvents.cs new file mode 100644 index 00000000000000..26efe8dd5ae6cd --- /dev/null +++ b/Content.Shared/_Goobstation/Interaction/InteractionEvents.cs @@ -0,0 +1,9 @@ +namespace Content.Shared._Goobstation.Interaction; + +/// +/// UseAttempt, but for item. +/// +public sealed class UseInHandAttemptEvent(EntityUid user) : CancellableEntityEventArgs +{ + public EntityUid User { get; } = user; +} diff --git a/Content.Shared/_Goobstation/Weapons/UseDelay/UseDelayBlockShootComponent.cs b/Content.Shared/_Goobstation/Weapons/UseDelay/UseDelayBlockShootComponent.cs new file mode 100644 index 00000000000000..3e9b5802b2db10 --- /dev/null +++ b/Content.Shared/_Goobstation/Weapons/UseDelay/UseDelayBlockShootComponent.cs @@ -0,0 +1,8 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared._Goobstation.Weapons.UseDelay; + +[RegisterComponent, NetworkedComponent] +public sealed partial class UseDelayBlockShootComponent : Component +{ +} \ No newline at end of file diff --git a/Content.Shared/_Goobstation/Weapons/UseDelay/UseDelayBlockShootSystem.cs b/Content.Shared/_Goobstation/Weapons/UseDelay/UseDelayBlockShootSystem.cs new file mode 100644 index 00000000000000..f060c170c0094f --- /dev/null +++ b/Content.Shared/_Goobstation/Weapons/UseDelay/UseDelayBlockShootSystem.cs @@ -0,0 +1,22 @@ +using Content.Shared.Timing; +using Content.Shared.Weapons.Ranged.Systems; + +namespace Content.Shared._Goobstation.Weapons.UseDelay; + +public sealed class UseDelayBlockShootSystem : EntitySystem +{ + [Dependency] private readonly UseDelaySystem _useDelay = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnShootAttempt); + } + + private void OnShootAttempt(Entity ent, ref AttemptShootEvent args) + { + if (TryComp(ent, out UseDelayComponent? useDelay) && _useDelay.IsDelayed((ent, useDelay))) + args.Cancelled = true; + } +} \ No newline at end of file diff --git a/Resources/Audio/Weapons/Guns/Bolt/lever_bolt_closed.ogg b/Resources/Audio/Weapons/Guns/Bolt/lever_bolt_closed.ogg new file mode 100644 index 00000000000000..1e351fd092a944 Binary files /dev/null and b/Resources/Audio/Weapons/Guns/Bolt/lever_bolt_closed.ogg differ diff --git a/Resources/Audio/Weapons/Guns/Bolt/lever_bolt_opened.ogg b/Resources/Audio/Weapons/Guns/Bolt/lever_bolt_opened.ogg new file mode 100644 index 00000000000000..03e11ee70fac64 Binary files /dev/null and b/Resources/Audio/Weapons/Guns/Bolt/lever_bolt_opened.ogg differ diff --git a/Resources/Audio/_Goobstation/Weapons/Guns/MagOut/garand_eject.ogg b/Resources/Audio/_Goobstation/Weapons/Guns/MagOut/garand_eject.ogg new file mode 100644 index 00000000000000..046e1a038c40cc Binary files /dev/null and b/Resources/Audio/_Goobstation/Weapons/Guns/MagOut/garand_eject.ogg differ diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 176245aad3b88d..b237ec9aba9bd1 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -9642,3 +9642,144 @@ Entries: id: 6669 time: '2025-01-11T19:02:09.0000000+00:00' url: https://github.com/Simple-Station/Einstein-Engines/pull/1466 +- author: VMSolidus + changes: + - type: Add + message: Added Station AI to (almost) every map in rotation. + - type: Add + message: Added Ore Silos to every map in rotation. + id: 6670 + time: '2025-01-11T19:58:08.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1499 +- author: VMSolidus + changes: + - type: Fix + message: Fixed an issue where ranged NPCs were incapable of aiming. + id: 6671 + time: '2025-01-11T20:40:09.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1500 +- author: VMSolidus + changes: + - type: Fix + message: Fixed a crash caused by Weather System creating millions of sounds. + id: 6672 + time: '2025-01-11T20:40:15.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1501 +- author: sleepyyapril + changes: + - type: Add + message: >- + Added a command to easily allow for adding a jobs playtime requirements. + (playtime_unlock) + id: 6673 + time: '2025-01-11T22:32:29.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1464 +- author: Aviu00 + changes: + - type: Fix + message: Fix silo being out of range. + id: 6674 + time: '2025-01-12T02:22:30.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1502 +- author: sleepyyapril + changes: + - type: Add + message: Added Nanotrasen Representative and Blueshield Officer + - type: Add + message: >- + Added Admin Assistant, Nanorep, and Blueshield Officer spawns to all + maps. BSO and Nanorep don't get an office, they get a unique teleporter. + (as of now) Ask your resident mapper to fix this. + - type: Add + message: >- + Added the loadout options for Nanotrasen Representative and Blueshield + Officer. + id: 6675 + time: '2025-01-12T06:55:41.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1495 +- author: VMSolidus + changes: + - type: Tweak + message: Disabled Shadowkin as a default roundstart-available species. + id: 6676 + time: '2025-01-12T20:28:22.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1516 +- author: VMSolidus + changes: + - type: Fix + message: Fixed Energy Swords not displaying their blade when ignited. + id: 6677 + time: '2025-01-12T21:20:27.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1519 +- author: sleepyyapril + changes: + - type: Fix + message: >- + Fixed Nanotrasen Representative lacking in the starter clothes + department + - type: Fix + message: Fixed Nanotrasen Representative lacking in the headset department + id: 6678 + time: '2025-01-12T21:21:34.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1512 +- author: CerberusWolfie + changes: + - type: Add + message: Added pockets to Admin Ghosts. + - type: Add + message: Added tail-drag (no-hands) to Admin Ghosts. + id: 6679 + time: '2025-01-12T21:23:18.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1508 +- author: Tirochora + changes: + - type: Fix + message: >- + the pew RSI's are now correct, so the sprites shouldn't be inverted. + That said, some maps still appear to be a little odd, so I'll have to + review them further at some point. + id: 6680 + time: '2025-01-12T21:25:13.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1469 +- author: BlueHNT + changes: + - type: Tweak + message: Tweaked DeltaV armors + id: 6681 + time: '2025-01-12T23:08:27.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1520 +- author: LonoferaRS + changes: + - type: Add + message: >- + A bunch of winter coats that are already in the game were added as a + loadouts. + id: 6682 + time: '2025-01-12T23:08:43.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1510 +- author: BlueHNT + changes: + - type: Add + message: Added New Law + - type: Tweak + message: Tweaked Space Law entries + - type: Remove + message: Removed Old Law + id: 6683 + time: '2025-01-12T23:09:32.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1386 +- author: Mike32oz + changes: + - type: Add + message: 'Station anchor on ATS ' + - type: Add + message: Clean bot and two locker + - type: Tweak + message: Air distribution on cargo shuttle + - type: Add + message: two seats including a wrench and a crowbar + - type: Remove + message: Plastic airtight flats and replace them with tiny fans + id: 6684 + time: '2025-01-12T23:11:11.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1457 diff --git a/Resources/Locale/en-US/_Goobstation/interaction/interaction-system.ftl b/Resources/Locale/en-US/_Goobstation/interaction/interaction-system.ftl new file mode 100644 index 00000000000000..8bcccd92a293f3 --- /dev/null +++ b/Resources/Locale/en-US/_Goobstation/interaction/interaction-system.ftl @@ -0,0 +1 @@ +use-on-station-only-not-on-station = You need to be on station to use this. diff --git a/Resources/Locale/en-US/_Goobstation/prototypes/access/accesses.ftl b/Resources/Locale/en-US/_Goobstation/prototypes/access/accesses.ftl new file mode 100644 index 00000000000000..131d1eef770bfc --- /dev/null +++ b/Resources/Locale/en-US/_Goobstation/prototypes/access/accesses.ftl @@ -0,0 +1,2 @@ +id-card-access-level-ntr = Nanotrasen Representative +id-card-access-level-bso = Blueshield Officer diff --git a/Resources/Locale/en-US/ghost/ghost-respawn.ftl b/Resources/Locale/en-US/ghost/ghost-respawn.ftl index a97fc68952483e..e1a93ac8d88566 100644 --- a/Resources/Locale/en-US/ghost/ghost-respawn.ftl +++ b/Resources/Locale/en-US/ghost/ghost-respawn.ftl @@ -5,7 +5,7 @@ ghost-respawn-time-left = Please wait {$time} {$time -> ghost-respawn-max-players = Cannot respawn right now. There should be fewer than {$players} players. ghost-respawn-window-title = Respawn rules -ghost-respawn-window-rules-footer = By respawning, you [color=#ff7700]agree[/color] [color=#ff0000]not to use any knowledge gained as your previous charactrer[/color]. Violation of this rule may constitute a server ban. Please, read the server rules for more details. +ghost-respawn-window-rules-footer = By respawning, you [color=#ff7700]agree[/color] [color=#ff0000]not to use any knowledge gained as your previous character[/color]. Violation of this rule may constitute a server ban. Please read the server rules for more details. ghost-respawn-same-character = You cannot respawn as the same character. Please select a different one in character preferences. ghost-respawn-log-character-almost-same = Player {$player} { $try -> diff --git a/Resources/Locale/en-US/guidebook/guides.ftl b/Resources/Locale/en-US/guidebook/guides.ftl index 5abf97984153a7..e4a4fa07022b51 100644 --- a/Resources/Locale/en-US/guidebook/guides.ftl +++ b/Resources/Locale/en-US/guidebook/guides.ftl @@ -118,7 +118,7 @@ guide-entry-rules-s8 = S8 guide-entry-rules-s9 = S9 guide-entry-rules-s10 = S10 guide-entry-rules-space-law = Space Law -guide-entry-rules-sl-crime-list = Crime List +guide-entry-rules-sl-crime-list = Law Book guide-entry-rules-sl-controlled-substances = Controlled Substances guide-entry-rules-sl-restricted-gear = Restricted Gear guide-entry-rules-sl-restricted-weapons = Restricted Weapons diff --git a/Resources/Locale/en-US/loadouts/categories.ftl b/Resources/Locale/en-US/loadouts/categories.ftl index 782932ae634ab2..7ed9fa320dad9c 100644 --- a/Resources/Locale/en-US/loadouts/categories.ftl +++ b/Resources/Locale/en-US/loadouts/categories.ftl @@ -17,6 +17,9 @@ loadout-category-JobsCommand = Command loadout-category-JobsCommandAUncategorized = All Command loadout-category-JobsCommandCaptain = Captain loadout-category-JobsCommandHeadOfPersonnel = Head of Personnel +loadout-category-JobsCommandAdminAssistant = Administrative Assistant +loadout-category-JobsCommandBlueshieldOfficer = Blueshield Officer +loadout-category-JobsCommandNanorep = Nanotrasen Representative # Engineering loadout-category-JobsEngineering = Engineering diff --git a/Resources/Locale/en-US/paper/stamp-component.ftl b/Resources/Locale/en-US/paper/stamp-component.ftl index e4341e7be335ea..c3e38245ca8cbb 100644 --- a/Resources/Locale/en-US/paper/stamp-component.ftl +++ b/Resources/Locale/en-US/paper/stamp-component.ftl @@ -16,3 +16,4 @@ stamp-component-stamped-name-warden = Warden stamp-component-stamped-name-trader = Trader stamp-component-stamped-name-syndicate = Syndicate stamp-component-stamped-name-ce = Chief Engineer +stamp-component-stamped-name-nanorep = Nanotrasen Representative diff --git a/Resources/Locale/en-US/players/play-time/play-time-commands.ftl b/Resources/Locale/en-US/players/play-time/play-time-commands.ftl index a06e1807e6db93..c578fbc21b3834 100644 --- a/Resources/Locale/en-US/players/play-time/play-time-commands.ftl +++ b/Resources/Locale/en-US/players/play-time/play-time-commands.ftl @@ -54,3 +54,14 @@ cmd-playtime_flush-help = Usage: {$command} [user name] cmd-playtime_flush-error-args = Expected zero or one arguments cmd-playtime_flush-arg-user = [user name] + +## ``playtime_unlock`` command + +cmd-playtime_unlock-desc = Unlock the playtime requirement for specific jobs. +cmd-playtime_unlock-help = Usage: {$command} [user name] [trackers...] + This command unlocks the playtime requirements for specific jobs for a user. +cmd-playtime_unlock-arg-user = [user name] +cmd-playtime_unlock-arg-job = [job id] +cmd-playtime_unlock-error-args = Expected zero or one arguments +cmd-playtime_unlock-error-job = Expected a valid JobPrototype for the second argument, but got {$invalidJob}. +cmd-playtime_unlock-error-no-requirements = No CharacterPlaytimeRequirements or CharacterDepartmentTime requirements found. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/store/uplink-catalog.ftl b/Resources/Locale/ru-RU/store/uplink-catalog.ftl index a5ccaace17da07..f7336252b363b2 100644 --- a/Resources/Locale/ru-RU/store/uplink-catalog.ftl +++ b/Resources/Locale/ru-RU/store/uplink-catalog.ftl @@ -1,7 +1,7 @@ uplink-emp-flashlight-name = Электромагнитный фонарик uplink-emp-flashlight-desc = Замаскированное под фонарик устройство. При ударе выпускает ЭМИ, поражающий электрические устройства. -#Armor +# Armor uplink-night-vision-name = Прибор ночного видения uplink-night-vision-desc = Позволяет вам видеть в темноте, при этом выглядя как обычные солнцезащитные очки! diff --git a/Resources/Maps/Shuttles/cargo.yml b/Resources/Maps/Shuttles/cargo.yml index 8a3007dd9c430e..b2041aeba16127 100644 --- a/Resources/Maps/Shuttles/cargo.yml +++ b/Resources/Maps/Shuttles/cargo.yml @@ -7,17 +7,31 @@ tilemap: 89: FloorShuttleWhite 93: FloorSteel 108: FloorTechMaint + 1: Lattice 126: Plating entities: - proto: "" entities: - - uid: 173 + - uid: 1 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 components: - type: MetaData name: Cargo shuttle - type: Transform pos: 2.2710133,-2.4148211 - parent: invalid + parent: 1 - type: MapGrid chunks: -1,0: @@ -30,7 +44,7 @@ entities: version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAA version: 6 0,-1: ind: 0,-1 @@ -106,34 +120,33 @@ entities: version: 2 data: tiles: - -2,-1: - 0: 52428 - -1,-1: - 0: 65535 - -1,-2: - 0: 61440 + -2,0: + 0: 51400 -2,1: - 0: 52428 + 0: 16520 + -2,-1: + 0: 32832 -1,0: 0: 65535 -1,1: - 0: 65535 + 0: 30719 + -2,2: + 0: 128 + -1,-1: + 0: 63346 -1,2: - 0: 255 - 0,-1: - 0: 4369 - 0,1: - 0: 4369 - 0,2: - 0: 1 + 0: 130 0,0: - 0: 4369 - -2,0: - 0: 52428 - -2,2: - 0: 140 + 0: 4112 + 0,1: + 0: 4096 -2,-2: 0: 32768 + -1,-2: + 1: 8192 + 0: 32768 + 0,-1: + 0: 16 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -150,6 +163,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: OccluderTree - type: Shuttle @@ -159,1097 +187,1262 @@ entities: - type: GravityShake shakeTimes: 10 - type: GasTileOverlay +- proto: AirAlarm + entities: + - uid: 3 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 118 + - 9 + - 119 - proto: AirCanister entities: - - uid: 172 + - uid: 4 components: - type: Transform pos: -3.5,-1.5 - parent: 173 - - type: AtmosDevice - joinedGrid: 173 + parent: 2 - proto: AirlockGlassShuttle entities: - - uid: 45 + - uid: 5 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,3.5 - parent: 173 - - uid: 50 + parent: 2 + - uid: 6 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,1.5 - parent: 173 - - uid: 52 + parent: 2 + - uid: 7 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,3.5 - parent: 173 - - uid: 53 + parent: 2 + - uid: 8 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,1.5 - parent: 173 + parent: 2 +- proto: AirSensor + entities: + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 3 - proto: APCHyperCapacity entities: - - uid: 79 + - uid: 10 components: - type: Transform pos: -0.5,6.5 - parent: 173 + parent: 2 - proto: AtmosDeviceFanTiny entities: - - uid: 168 + - uid: 11 components: - type: Transform pos: -5.5,1.5 - parent: 173 - - uid: 169 + parent: 2 + - uid: 12 components: - type: Transform pos: -5.5,3.5 - parent: 173 - - uid: 170 + parent: 2 + - uid: 13 components: - type: Transform pos: 0.5,3.5 - parent: 173 - - uid: 171 + parent: 2 + - uid: 14 components: - type: Transform pos: 0.5,1.5 - parent: 173 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 - proto: BlastDoor entities: - - uid: 1 + - uid: 15 components: - type: Transform - pos: 0.5,4.5 - parent: 173 + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 - type: DeviceLinkSink links: - - 57 - - uid: 3 + - 145 + - uid: 16 components: - type: Transform - pos: -5.5,0.5 - parent: 173 + rot: -1.5707963267948966 rad + pos: -5.5,4.5 + parent: 2 - type: DeviceLinkSink links: - - 55 - - uid: 54 + - 142 + - uid: 17 components: - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,0.5 - parent: 173 + parent: 2 - type: DeviceLinkSink links: - - 58 - - uid: 56 + - 143 + - uid: 18 components: - type: Transform - pos: -5.5,4.5 - parent: 173 + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2 - type: DeviceLinkSink links: - - 2 + - 144 - proto: CableApcExtension entities: - - uid: 100 + - uid: 19 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 20 components: - type: Transform pos: -0.5,6.5 - parent: 173 - - uid: 101 + parent: 2 + - uid: 21 components: - type: Transform pos: -1.5,6.5 - parent: 173 - - uid: 102 + parent: 2 + - uid: 22 components: - type: Transform pos: -2.5,6.5 - parent: 173 - - uid: 103 + parent: 2 + - uid: 23 components: - type: Transform pos: -2.5,5.5 - parent: 173 - - uid: 104 - components: - - type: Transform - pos: -2.5,8.5 - parent: 173 - - uid: 105 - components: - - type: Transform - pos: -3.5,8.5 - parent: 173 - - uid: 106 + parent: 2 + - uid: 24 components: - type: Transform - pos: -1.5,8.5 - parent: 173 - - uid: 107 + pos: -4.5,8.5 + parent: 2 + - uid: 25 components: - type: Transform pos: -3.5,6.5 - parent: 173 - - uid: 108 + parent: 2 + - uid: 26 components: - type: Transform pos: -3.5,7.5 - parent: 173 - - uid: 109 + parent: 2 + - uid: 27 components: - type: Transform pos: -2.5,4.5 - parent: 173 - - uid: 110 + parent: 2 + - uid: 28 components: - type: Transform pos: -2.5,3.5 - parent: 173 - - uid: 111 + parent: 2 + - uid: 29 components: - type: Transform pos: -2.5,2.5 - parent: 173 - - uid: 112 + parent: 2 + - uid: 30 components: - type: Transform pos: -2.5,1.5 - parent: 173 - - uid: 113 + parent: 2 + - uid: 31 components: - type: Transform pos: -2.5,0.5 - parent: 173 - - uid: 114 + parent: 2 + - uid: 32 components: - type: Transform pos: -2.5,-0.5 - parent: 173 - - uid: 115 + parent: 2 + - uid: 33 components: - type: Transform pos: -2.5,-1.5 - parent: 173 - - uid: 116 + parent: 2 + - uid: 34 components: - type: Transform pos: -1.5,-4.5 - parent: 173 - - uid: 117 + parent: 2 + - uid: 35 components: - type: Transform pos: -1.5,-1.5 - parent: 173 - - uid: 118 + parent: 2 + - uid: 36 components: - type: Transform pos: -1.5,-2.5 - parent: 173 - - uid: 119 + parent: 2 + - uid: 37 components: - type: Transform - pos: -2.5,-4.5 - parent: 173 - - uid: 120 + pos: -4.5,-1.5 + parent: 2 + - uid: 38 components: - type: Transform pos: -1.5,-3.5 - parent: 173 - - uid: 121 + parent: 2 + - uid: 39 components: - type: Transform pos: -3.5,-4.5 - parent: 173 - - uid: 122 + parent: 2 + - uid: 40 components: - type: Transform pos: -3.5,-3.5 - parent: 173 - - uid: 123 + parent: 2 + - uid: 41 components: - type: Transform pos: -4.5,7.5 - parent: 173 - - uid: 124 + parent: 2 + - uid: 42 components: - type: Transform pos: -0.5,7.5 - parent: 173 - - uid: 125 + parent: 2 + - uid: 43 components: - type: Transform pos: -1.5,3.5 - parent: 173 - - uid: 126 + parent: 2 + - uid: 44 components: - type: Transform pos: -0.5,3.5 - parent: 173 - - uid: 127 + parent: 2 + - uid: 45 components: - type: Transform pos: -1.5,1.5 - parent: 173 - - uid: 128 + parent: 2 + - uid: 46 components: - type: Transform pos: -0.5,1.5 - parent: 173 - - uid: 129 + parent: 2 + - uid: 47 components: - type: Transform pos: -3.5,1.5 - parent: 173 - - uid: 130 + parent: 2 + - uid: 48 components: - type: Transform pos: -4.5,1.5 - parent: 173 - - uid: 131 + parent: 2 + - uid: 49 components: - type: Transform pos: -3.5,3.5 - parent: 173 - - uid: 132 + parent: 2 + - uid: 50 components: - type: Transform pos: -4.5,3.5 - parent: 173 - - uid: 163 + parent: 2 + - uid: 51 components: - type: Transform pos: -4.5,-3.5 - parent: 173 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 53 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 - proto: CableHV entities: - - uid: 80 + - uid: 54 components: - type: Transform pos: -1.5,-2.5 - parent: 173 - - uid: 81 + parent: 2 + - uid: 55 components: - type: Transform pos: -2.5,-2.5 - parent: 173 - - uid: 86 + parent: 2 + - uid: 56 components: - type: Transform pos: -2.5,-3.5 - parent: 173 + parent: 2 - proto: CableMV entities: - - uid: 87 + - uid: 57 components: - type: Transform pos: -1.5,-2.5 - parent: 173 - - uid: 88 + parent: 2 + - uid: 58 components: - type: Transform pos: -1.5,-1.5 - parent: 173 - - uid: 89 + parent: 2 + - uid: 59 components: - type: Transform pos: -2.5,-1.5 - parent: 173 - - uid: 90 + parent: 2 + - uid: 60 components: - type: Transform pos: -2.5,-0.5 - parent: 173 - - uid: 91 + parent: 2 + - uid: 61 components: - type: Transform pos: -2.5,0.5 - parent: 173 - - uid: 92 + parent: 2 + - uid: 62 components: - type: Transform pos: -2.5,1.5 - parent: 173 - - uid: 93 + parent: 2 + - uid: 63 components: - type: Transform pos: -2.5,2.5 - parent: 173 - - uid: 94 + parent: 2 + - uid: 64 components: - type: Transform pos: -2.5,3.5 - parent: 173 - - uid: 95 + parent: 2 + - uid: 65 components: - type: Transform pos: -2.5,4.5 - parent: 173 - - uid: 96 + parent: 2 + - uid: 66 components: - type: Transform pos: -2.5,5.5 - parent: 173 - - uid: 97 + parent: 2 + - uid: 67 components: - type: Transform pos: -2.5,6.5 - parent: 173 - - uid: 98 + parent: 2 + - uid: 68 components: - type: Transform pos: -1.5,6.5 - parent: 173 - - uid: 99 + parent: 2 + - uid: 69 components: - type: Transform pos: -0.5,6.5 - parent: 173 + parent: 2 - proto: CableTerminal entities: - - uid: 82 + - uid: 70 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-3.5 - parent: 173 + parent: 2 - proto: CargoPallet entities: - - uid: 151 + - uid: 71 components: - type: Transform pos: -4.5,5.5 - parent: 173 - - uid: 152 + parent: 2 + - uid: 72 components: - type: Transform pos: -3.5,5.5 - parent: 173 - - uid: 153 + parent: 2 + - uid: 73 components: - type: Transform pos: -1.5,5.5 - parent: 173 - - uid: 154 + parent: 2 + - uid: 74 components: - type: Transform pos: -0.5,5.5 - parent: 173 - - uid: 155 + parent: 2 + - uid: 75 components: - type: Transform pos: -0.5,2.5 - parent: 173 - - uid: 156 + parent: 2 + - uid: 76 components: - type: Transform pos: -1.5,2.5 - parent: 173 - - uid: 157 + parent: 2 + - uid: 77 components: - type: Transform pos: -1.5,-0.5 - parent: 173 - - uid: 158 + parent: 2 + - uid: 78 components: - type: Transform pos: -0.5,-0.5 - parent: 173 - - uid: 159 + parent: 2 + - uid: 79 components: - type: Transform pos: -3.5,2.5 - parent: 173 - - uid: 160 + parent: 2 + - uid: 80 components: - type: Transform pos: -4.5,2.5 - parent: 173 - - uid: 161 + parent: 2 + - uid: 81 components: - type: Transform pos: -4.5,-0.5 - parent: 173 - - uid: 162 + parent: 2 + - uid: 82 components: - type: Transform pos: -3.5,-0.5 - parent: 173 + parent: 2 - proto: ChairPilotSeat entities: - - uid: 141 + - uid: 83 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,7.5 - parent: 173 -- proto: ComputerShuttle - entities: - - uid: 78 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 + - uid: 85 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 +- proto: ComputerShuttle + entities: + - uid: 86 components: - type: Transform pos: -2.5,8.5 - parent: 173 + parent: 2 - proto: ConveyorBelt entities: - - uid: 38 + - uid: 87 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,4.5 - parent: 173 + parent: 2 - type: DeviceLinkSink links: - - 36 - - uid: 39 + - 160 + - uid: 88 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,4.5 - parent: 173 + parent: 2 - type: DeviceLinkSink links: - - 36 - - uid: 40 + - 160 + - uid: 89 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,4.5 - parent: 173 + parent: 2 - type: DeviceLinkSink links: - - 36 - - uid: 41 + - 160 + - uid: 90 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,0.5 - parent: 173 + parent: 2 - type: DeviceLinkSink links: - - 34 - - uid: 42 + - 158 + - uid: 91 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,0.5 - parent: 173 + parent: 2 - type: DeviceLinkSink links: - - 34 - - uid: 43 + - 158 + - uid: 92 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 - parent: 173 + parent: 2 - type: DeviceLinkSink links: - - 34 - - uid: 46 + - 158 + - uid: 93 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,0.5 - parent: 173 + parent: 2 - type: DeviceLinkSink links: - - 35 - - uid: 47 + - 159 + - uid: 94 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,4.5 - parent: 173 + parent: 2 - type: DeviceLinkSink links: - - 37 - - uid: 48 + - 161 + - uid: 95 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,4.5 - parent: 173 + parent: 2 - type: DeviceLinkSink links: - - 37 - - uid: 49 + - 161 + - uid: 96 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,4.5 - parent: 173 + parent: 2 - type: DeviceLinkSink links: - - 37 - - uid: 51 + - 161 + - uid: 97 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,0.5 - parent: 173 + parent: 2 - type: DeviceLinkSink links: - - 35 - - uid: 167 + - 159 + - uid: 98 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,0.5 - parent: 173 + parent: 2 - type: DeviceLinkSink links: - - 35 + - 159 +- proto: Crowbar + entities: + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.641858,-1.5760336 + parent: 2 +- proto: GasOutletInjector + entities: + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 2 - proto: GasPipeBend entities: - - uid: 134 + - uid: 101 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-1.5 - parent: 173 + parent: 2 + - uid: 102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 - proto: GasPipeStraight entities: - - uid: 136 + - uid: 105 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,0.5 - parent: 173 - - uid: 137 + parent: 2 + - uid: 106 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,1.5 - parent: 173 - - uid: 140 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 108 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 173 + pos: -1.5,-1.5 + parent: 2 + - uid: 109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 2 + - uid: 110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 2 + - uid: 111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 2 + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 2 + - uid: 113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 2 + - uid: 114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 2 + - uid: 115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 2 - proto: GasPort entities: - - uid: 135 + - uid: 116 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-1.5 - parent: 173 - - type: AtmosDevice - joinedGrid: 173 + parent: 2 +- proto: GasPressurePump + entities: + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 2 - proto: GasVentPump entities: - - uid: 138 + - uid: 118 components: - type: Transform pos: -2.5,2.5 - parent: 173 - - type: AtmosDevice - joinedGrid: 173 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 3 +- proto: GasVentScrubber + entities: + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 3 - proto: GeneratorBasic15kW entities: - - uid: 83 + - uid: 120 components: - type: Transform pos: -2.5,-3.5 - parent: 173 + parent: 2 - proto: GravityGeneratorMini entities: - - uid: 146 + - uid: 121 components: - type: Transform pos: -1.5,-1.5 - parent: 173 + parent: 2 - proto: Grille entities: - - uid: 73 + - uid: 122 components: - type: Transform pos: -3.5,8.5 - parent: 173 - - uid: 74 + parent: 2 + - uid: 123 components: - type: Transform pos: -3.5,9.5 - parent: 173 - - uid: 75 + parent: 2 + - uid: 124 components: - type: Transform pos: -2.5,9.5 - parent: 173 - - uid: 76 + parent: 2 + - uid: 125 components: - type: Transform pos: -1.5,9.5 - parent: 173 - - uid: 77 + parent: 2 + - uid: 126 components: - type: Transform pos: -1.5,8.5 - parent: 173 + parent: 2 - proto: Gyroscope entities: - - uid: 133 + - uid: 127 components: - type: Transform pos: -3.5,-2.5 - parent: 173 -- proto: PlasticFlapsAirtightClear - entities: - - uid: 44 - components: - - type: Transform - pos: 0.5,0.5 - parent: 173 - - uid: 164 - components: - - type: Transform - pos: -5.5,0.5 - parent: 173 - - uid: 165 - components: - - type: Transform - pos: -5.5,4.5 - parent: 173 - - uid: 166 - components: - - type: Transform - pos: 0.5,4.5 - parent: 173 + parent: 2 - proto: Poweredlight entities: - - uid: 147 + - uid: 132 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,2.5 - parent: 173 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 148 + - uid: 133 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,2.5 - parent: 173 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 149 + - uid: 134 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,7.5 - parent: 173 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 150 + - uid: 135 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 - parent: 173 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 +- proto: Rack + entities: + - uid: 136 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 - proto: ShuttleWindow entities: - - uid: 68 + - uid: 137 components: - type: Transform pos: -1.5,8.5 - parent: 173 - - uid: 69 + parent: 2 + - uid: 138 components: - type: Transform pos: -1.5,9.5 - parent: 173 - - uid: 70 + parent: 2 + - uid: 139 components: - type: Transform pos: -2.5,9.5 - parent: 173 - - uid: 71 + parent: 2 + - uid: 140 components: - type: Transform pos: -3.5,9.5 - parent: 173 - - uid: 72 + parent: 2 + - uid: 141 components: - type: Transform pos: -3.5,8.5 - parent: 173 + parent: 2 - proto: SignalButton entities: - - uid: 2 + - uid: 142 components: - type: Transform pos: -5.5,5.5 - parent: 173 + parent: 2 - type: DeviceLinkSource linkedPorts: - 56: + 16: - Pressed: Toggle - - uid: 55 + - uid: 143 components: - type: Transform - pos: -5.5,-0.5 - parent: 173 + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 - type: DeviceLinkSource linkedPorts: - 3: + 17: - Pressed: Toggle - - uid: 57 + - uid: 144 components: - type: Transform pos: 0.5,5.5 - parent: 173 + parent: 2 - type: DeviceLinkSource linkedPorts: - 1: + 18: - Pressed: Toggle - - uid: 58 + - uid: 145 components: - type: Transform - pos: 0.5,-0.5 - parent: 173 + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 2 - type: DeviceLinkSource linkedPorts: - 54: + 15: - Pressed: Toggle - proto: SMESBasic entities: - - uid: 84 + - uid: 146 components: - type: Transform pos: -2.5,-2.5 - parent: 173 + parent: 2 - proto: SubstationBasic entities: - - uid: 85 + - uid: 147 components: - type: Transform pos: -1.5,-2.5 - parent: 173 + parent: 2 - proto: TableReinforced entities: - - uid: 143 + - uid: 148 components: - type: Transform pos: -3.5,7.5 - parent: 173 - - uid: 144 + parent: 2 + - uid: 149 components: - type: Transform pos: -1.5,7.5 - parent: 173 + parent: 2 - proto: Thruster entities: - - uid: 12 + - uid: 150 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-2.5 - parent: 173 - - uid: 13 + parent: 2 + - uid: 151 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,7.5 - parent: 173 - - uid: 14 + parent: 2 + - uid: 152 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,7.5 - parent: 173 - - uid: 15 + parent: 2 + - uid: 153 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-2.5 - parent: 173 - - uid: 59 + parent: 2 + - uid: 154 components: - type: Transform pos: -4.5,9.5 - parent: 173 - - uid: 60 + parent: 2 + - uid: 155 components: - type: Transform pos: -0.5,9.5 - parent: 173 - - uid: 61 + parent: 2 + - uid: 156 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 - parent: 173 - - uid: 62 + parent: 2 + - uid: 157 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-4.5 - parent: 173 + parent: 2 - proto: TwoWayLever entities: - - uid: 34 + - uid: 158 components: - type: Transform pos: -3.5,1.5 - parent: 173 + parent: 2 - type: DeviceLinkSource linkedPorts: - 43: + 92: - Left: Forward - Right: Reverse - Middle: Off - 42: + 91: - Left: Forward - Right: Reverse - Middle: Off - 41: + 90: - Left: Forward - Right: Reverse - Middle: Off - - uid: 35 + - uid: 159 components: - type: Transform pos: -1.5,1.5 - parent: 173 + parent: 2 - type: DeviceLinkSource linkedPorts: - 51: + 97: - Left: Forward - Right: Reverse - Middle: Off - 46: + 93: - Left: Forward - Right: Reverse - Middle: Off - 167: + 98: - Left: Forward - Right: Reverse - Middle: Off - - uid: 36 + - uid: 160 components: - type: Transform pos: -1.5,3.5 - parent: 173 + parent: 2 - type: DeviceLinkSource linkedPorts: - 38: + 87: - Left: Forward - Right: Reverse - Middle: Off - 39: + 88: - Left: Forward - Right: Reverse - Middle: Off - 40: + 89: - Left: Forward - Right: Reverse - Middle: Off - - uid: 37 + - uid: 161 components: - type: Transform pos: -3.5,3.5 - parent: 173 + parent: 2 - type: DeviceLinkSource linkedPorts: - 49: + 96: - Left: Forward - Right: Reverse - Middle: Off - 48: + 95: - Left: Forward - Right: Reverse - Middle: Off - 47: + 94: - Left: Forward - Right: Reverse - Middle: Off - proto: WallShuttle entities: - - uid: 4 + - uid: 162 components: - type: Transform - pos: -5.5,8.5 - parent: 173 - - uid: 5 + pos: -0.5,8.5 + parent: 2 + - uid: 163 components: - type: Transform - pos: -4.5,8.5 - parent: 173 - - uid: 6 + pos: -5.5,8.5 + parent: 2 + - uid: 164 components: - type: Transform - pos: -0.5,8.5 - parent: 173 - - uid: 7 + pos: -4.5,8.5 + parent: 2 + - uid: 165 components: - type: Transform pos: 0.5,8.5 - parent: 173 - - uid: 8 + parent: 2 + - uid: 166 components: - type: Transform pos: -0.5,-3.5 - parent: 173 - - uid: 9 + parent: 2 + - uid: 167 components: - type: Transform pos: 0.5,-3.5 - parent: 173 - - uid: 10 + parent: 2 + - uid: 168 components: - type: Transform pos: -4.5,-3.5 - parent: 173 - - uid: 11 + parent: 2 + - uid: 169 components: - type: Transform pos: -5.5,-3.5 - parent: 173 - - uid: 16 + parent: 2 + - uid: 170 components: - type: Transform pos: -0.5,-1.5 - parent: 173 - - uid: 17 + parent: 2 + - uid: 171 components: - type: Transform pos: -0.5,-2.5 - parent: 173 - - uid: 18 + parent: 2 + - uid: 172 components: - type: Transform pos: -4.5,-1.5 - parent: 173 - - uid: 19 + parent: 2 + - uid: 173 components: - type: Transform pos: 0.5,-1.5 - parent: 173 - - uid: 20 + parent: 2 + - uid: 174 components: - type: Transform pos: -4.5,-2.5 - parent: 173 - - uid: 21 + parent: 2 + - uid: 175 components: - type: Transform pos: -5.5,-1.5 - parent: 173 - - uid: 22 + parent: 2 + - uid: 176 components: - type: Transform pos: -0.5,7.5 - parent: 173 - - uid: 23 + parent: 2 + - uid: 177 components: - type: Transform pos: -0.5,6.5 - parent: 173 - - uid: 24 + parent: 2 + - uid: 178 components: - type: Transform pos: 0.5,6.5 - parent: 173 - - uid: 25 + parent: 2 + - uid: 179 components: - type: Transform pos: -4.5,7.5 - parent: 173 - - uid: 26 + parent: 2 + - uid: 180 components: - type: Transform pos: -4.5,6.5 - parent: 173 - - uid: 27 + parent: 2 + - uid: 181 components: - type: Transform pos: -5.5,6.5 - parent: 173 - - uid: 28 + parent: 2 + - uid: 182 components: - type: Transform pos: -5.5,-0.5 - parent: 173 - - uid: 29 + parent: 2 + - uid: 183 components: - type: Transform pos: -5.5,5.5 - parent: 173 - - uid: 30 + parent: 2 + - uid: 184 components: - type: Transform pos: 0.5,5.5 - parent: 173 - - uid: 31 + parent: 2 + - uid: 185 components: - type: Transform pos: 0.5,-0.5 - parent: 173 - - uid: 32 + parent: 2 + - uid: 186 components: - type: Transform pos: 0.5,2.5 - parent: 173 - - uid: 33 + parent: 2 + - uid: 187 components: - type: Transform pos: -5.5,2.5 - parent: 173 - - uid: 63 + parent: 2 + - uid: 188 components: - type: Transform pos: -3.5,-4.5 - parent: 173 - - uid: 64 - components: - - type: Transform - pos: -2.5,-4.5 - parent: 173 - - uid: 65 + parent: 2 + - uid: 189 components: - type: Transform pos: -1.5,-4.5 - parent: 173 - - uid: 66 + parent: 2 + - uid: 190 components: - type: Transform pos: -3.5,-3.5 - parent: 173 - - uid: 67 + parent: 2 + - uid: 191 components: - type: Transform pos: -1.5,-3.5 - parent: 173 + parent: 2 - proto: WindoorCargoLocked entities: - - uid: 139 + - uid: 192 components: - type: Transform pos: -2.5,7.5 - parent: 173 + parent: 2 - proto: WindowReinforcedDirectional entities: - - uid: 142 + - uid: 193 components: - type: Transform pos: -1.5,7.5 - parent: 173 - - uid: 145 + parent: 2 + - uid: 194 components: - type: Transform pos: -3.5,7.5 - parent: 173 + parent: 2 + - uid: 195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 +- proto: Wrench + entities: + - uid: 197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.529358,-1.5535336 + parent: 2 ... diff --git a/Resources/Maps/Shuttles/trading_outpost.yml b/Resources/Maps/Shuttles/trading_outpost.yml index 961b4fac1b1d59..c95e1d36426ac9 100644 --- a/Resources/Maps/Shuttles/trading_outpost.yml +++ b/Resources/Maps/Shuttles/trading_outpost.yml @@ -20,34 +20,46 @@ tilemap: entities: - proto: "" entities: + - uid: 1 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree - uid: 2 components: - type: MetaData name: Automated Trade Station - type: Transform pos: -2.9375,-1.625 - parent: invalid + parent: 1 - type: MapGrid chunks: 0,0: ind: 0,0 - tiles: XQAAAAABXQAAAAABTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAJAAAAAABJwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAABJAAAAAAAJAAAAAAAJAAAAAACJAAAAAABJAAAAAAAJAAAAAAAJAAAAAABJAAAAAACfgAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAfAAAAAABfAAAAAADfAAAAAACMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAADfAAAAAABfAAAAAABegAAAAACfgAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAegAAAAADfAAAAAABfAAAAAADfAAAAAADegAAAAADegAAAAACegAAAAADfAAAAAAAfAAAAAABfAAAAAAAegAAAAACJAAAAAADJwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAABegAAAAAAegAAAAACegAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAABXQAAAAABTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: fgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAABJAAAAAACJAAAAAAAJAAAAAAAJAAAAAABJAAAAAABJAAAAAACJAAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAADXQAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAACaAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAXQAAAAABbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAaAAAAAACfgAAAAAAJAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAXQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAXQAAAAABaAAAAAACfgAAAAAAJAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAaAAAAAACXQAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADaAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACTwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJwAAAAACJAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJwAAAAADJAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAJAAAAAABJAAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAABHwAAAAACHwAAAAABJAAAAAADJAAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 @@ -65,6 +77,9 @@ entities: angularDampening: 0.05 - type: Fixtures fixtures: {} + - type: PassiveDampening + angularDampening: 0.01 + linearDampening: 0.01 - type: OccluderTree - type: SpreaderGrid - type: Shuttle @@ -77,280 +92,267 @@ entities: version: 2 nodes: - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 71: 12,-6 - 72: 12,-4 - - node: - angle: 1.5707963267948966 rad + angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 69: -2,-4 - 70: -2,-6 + 70: 2,2 + 71: 8,2 - node: color: '#FFFFFFFF' id: Bot decals: - 19: 0,2 - 20: 10,2 - 21: 9,-12 - 25: 4,-16 - 28: 0,-6 - 29: 0,-4 - 30: 0,-1 - 31: 0,-9 - 32: 10,-9 - 33: 10,-6 - 34: 10,-4 - 35: 10,-1 - 50: 4,-5 - 51: 6,-5 - 61: 1,-12 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 26: 4,-18 - 27: 5,-18 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 0: 3,-18 - 1: 3,-17 - 2: 3,-16 - 58: 8,-6 - 59: 8,-5 - 60: 8,-4 - 62: 3,-6 - 63: 3,-5 - 64: 3,-4 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 52: 2,-6 - 53: 2,-5 - 54: 2,-4 - 55: 7,-6 - 56: 7,-5 - 57: 7,-4 - - node: - color: '#FFFFFFFF' - id: BushCOne - decals: - 23: 6,4 + 0: 4,-5 + 1: 6,-5 + 61: 4,4 + 62: 4,5 + 63: 5,5 + 64: 6,5 + 65: 6,4 + 66: 5,4 + 67: 4,6 + 68: 5,6 + 69: 6,6 + 76: 4,-12 + 77: 5,-12 + 78: 6,-12 - node: color: '#FFFFFFFF' - id: BushCTwo + id: Delivery decals: - 22: 4,4 - - node: - color: '#FFFFFFFF' - id: Bushi2 - decals: - 24: 5,4 + 55: 1,3 + 56: 2,3 + 57: 3,3 + 58: 7,3 + 59: 8,3 + 60: 9,3 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 65: 9,-7 - 66: 9,-3 + 74: 9,-7 + 75: 1,-7 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 67: 1,-7 - 68: 1,-3 + 72: 1,-3 + 73: 9,-3 - node: - color: '#FFFFFFFF' - id: WarnLineN + color: '#A4610696' + id: QuarterTileOverlayGreyscale decals: - 43: 8,1 - 44: 7,1 - 45: 6,1 - 46: 5,1 - 47: 4,1 - 48: 3,1 - 49: 2,1 + 16: 0,-3 + 17: 0,-2 + 18: 0,-1 + 19: 0,0 + 20: 0,1 + 21: 0,2 + 41: 6,2 - node: - color: '#FFFFFFFF' - id: WarnLineW + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 decals: - 36: 2,-11 - 37: 3,-11 - 38: 4,-11 - 39: 5,-11 - 40: 6,-11 - 41: 7,-11 - 42: 8,-11 + 27: 10,-11 + 28: 10,-10 + 29: 10,-9 + 30: 10,-8 + 38: 9,-12 + 39: 8,-12 + 40: 7,-12 - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 decals: - 17: 0,6 - 18: 6,6 + 31: 0,-11 + 32: 0,-10 + 33: 0,-9 + 34: 0,-8 + 35: 1,-12 + 36: 2,-12 + 37: 3,-12 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 22: 10,2 + 23: 10,1 + 24: 10,0 + 25: 10,-1 + 26: 10,-2 + 42: 4,2 - node: color: '#FFFFFFFF' - id: WoodTrimThinInnerSw + id: WarnLineGreyscaleN decals: - 15: 4,6 - 16: 10,6 + 43: 1,2 + 44: 2,2 + 45: 3,2 + 46: 7,2 + 47: 8,2 + 48: 9,2 - node: color: '#FFFFFFFF' - id: WoodTrimThinLineE + id: WarnLineGreyscaleS decals: - 9: 0,4 - 10: 0,5 - 11: 6,5 + 49: 1,4 + 50: 2,4 + 51: 3,4 + 52: 7,4 + 53: 8,4 + 54: 9,4 - node: color: '#FFFFFFFF' - id: WoodTrimThinLineS + id: WarnLineN decals: - 3: 1,6 - 4: 2,6 - 5: 3,6 - 6: 7,6 - 7: 9,6 - 8: 8,6 + 8: 2,1 + 9: 3,1 + 10: 5,1 + 11: 4,1 + 12: 6,1 + 13: 7,1 + 14: 8,1 - node: color: '#FFFFFFFF' - id: WoodTrimThinLineW + id: WarnLineW decals: - 12: 4,5 - 13: 10,4 - 14: 10,5 + 2: 2,-11 + 3: 3,-11 + 4: 4,-11 + 5: 6,-11 + 6: 7,-11 + 7: 8,-11 + 15: 5,-11 - type: GridAtmosphere version: 2 data: tiles: 0,0: + 0: 4095 + 0,-1: 0: 65535 + -1,0: + 0: 17600 0,1: - 0: 65535 + 0: 4095 + -1,1: + 0: 196 + 1: 16384 0,2: - 0: 65535 - 0,3: - 0: 14 + 1: 241 + -1,2: + 1: 192 1,0: - 0: 65535 + 0: 4093 1,1: - 0: 65535 + 0: 4095 1,2: - 0: 65535 - 1,3: - 0: 15 + 1: 240 + 1,-1: + 0: 56797 2,0: - 0: 65535 + 0: 2039 2,1: - 0: 65535 + 0: 2039 2,2: - 0: 30583 - 1: 128 - 2,3: - 0: 3 + 1: 244 + 2,-1: + 0: 30591 3,0: - 0: 13107 + 0: 4368 3,1: - 0: 4915 + 0: 17 + 1: 4096 + 3,2: + 1: 16 + 3,-1: + 1: 12288 + 0: 19 0,-4: - 0: 65535 + 0: 1038 + 1: 256 + -1,-4: + 1: 43690 0,-3: - 0: 65535 + 0: 65534 0,-2: 0: 65535 - 0,-1: - 0: 65535 + -1,-2: + 0: 3648 + -1,-1: + 0: 78 + 1: 24576 + 0,-5: + 0: 60928 + 1: 5 1,-4: - 0: 65535 + 0: 15 + 1: 1792 1,-3: - 0: 65535 + 0: 56831 1,-2: - 0: 65535 - 1,-1: - 0: 65535 + 0: 56797 + 1,-5: + 0: 65399 2,-4: - 0: 65535 + 0: 259 + 1: 35976 2,-3: - 0: 65535 + 0: 30579 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-2: - 0: 13107 - 3,-1: - 0: 13107 - -1,0: - 0: 61166 - -1,1: - 0: 52974 - -1,-2: - 0: 61166 - -1,-1: - 0: 61166 - -1,-4: - 0: 34952 - 1: 8738 - -1,-3: - 0: 59528 - 1: 38 - 0,-5: - 0: 65520 - 1: 9 - 1,-5: - 0: 65520 - 1: 8 + 0: 32631 2,-5: - 0: 65392 - 1: 140 - -1,-5: - 0: 34816 - 1: 8938 + 0: 13192 + 1: 34821 3,-3: - 0: 12288 - 1: 35 - 3,2: - 1: 16 + 1: 12323 + 3,-2: + 0: 784 3,-4: 1: 8738 - -1,2: - 1: 192 + 3,-5: + 1: 8754 + -1,-5: + 1: 43618 + 0: 136 + -1,-3: + 1: 24614 0,-8: 1: 12288 + -1,-8: + 1: 40960 0,-7: 1: 61936 + -1,-7: + 0: 34944 + 1: 8750 0,-6: - 1: 61937 + 1: 29169 + -1,-6: + 0: 34952 + 1: 610 1,-7: - 1: 53456 + 1: 32976 + 0: 20480 1,-6: - 1: 53456 + 0: 80 + 1: 640 2,-7: - 1: 64760 + 1: 29816 + 0: 34944 2,-6: - 1: 64764 + 1: 29812 + 0: 34952 2,-8: 1: 57344 3,-7: 1: 8739 3,-6: 1: 562 - 3,-5: - 1: 8754 3,-8: 1: 8192 - -1,-8: - 1: 40960 - -1,-7: - 1: 43694 - -1,-6: - 1: 35562 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -368,7 +370,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -387,7 +389,7 @@ entities: - type: RadiationGridResistance - proto: AirAlarm entities: - - uid: 802 + - uid: 3 components: - type: Transform rot: 1.5707963267948966 rad @@ -395,16 +397,11 @@ entities: parent: 2 - type: DeviceList devices: - - 793 - - 411 - - 400 - - 410 - - 402 - - 790 - - 789 - - type: AtmosDevice - joinedGrid: 2 - - uid: 803 + - 567 + - 558 + - 566 + - 560 + - uid: 4 components: - type: Transform rot: -1.5707963267948966 rad @@ -412,52 +409,13 @@ entities: parent: 2 - type: DeviceList devices: - - 794 - - 402 - - 410 - - 400 - - 411 - - 789 - - 790 - - type: AtmosDevice - joinedGrid: 2 - - uid: 805 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,4.5 - parent: 2 - - type: DeviceList - devices: - - 796 - - 409 - - 403 - - 401 - - 408 - - 783 - - 782 - - type: AtmosDevice - joinedGrid: 2 - - uid: 806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,4.5 - parent: 2 - - type: DeviceList - devices: - - 795 - - 408 - - 401 - - 403 - - 409 - - 783 - - 782 - - type: AtmosDevice - joinedGrid: 2 + - 560 + - 566 + - 558 + - 567 - proto: AirCanister entities: - - uid: 387 + - uid: 5 components: - type: Transform anchored: True @@ -465,2262 +423,2243 @@ entities: parent: 2 - type: Physics bodyType: Static - - type: AtmosDevice - joinedGrid: 2 -- proto: AirlockCargo - entities: - - uid: 1 - components: - - type: Transform - pos: 11.5,1.5 - parent: 2 - - uid: 22 - components: - - type: Transform - pos: -0.5,1.5 - parent: 2 -- proto: AirlockCargoGlass +- proto: AirlockCargoLocked entities: - - uid: 248 + - uid: 6 components: - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,5.5 parent: 2 - - uid: 249 - components: - - type: Transform - pos: -0.5,5.5 - parent: 2 -- proto: AirlockExternalGlass - entities: - - uid: 582 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-5.5 - parent: 2 - - uid: 583 + - uid: 7 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-3.5 + rot: -1.5707963267948966 rad + pos: 11.5,1.5 parent: 2 - - uid: 584 + - uid: 8 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-5.5 + rot: -1.5707963267948966 rad + pos: -0.5,5.5 parent: 2 - - uid: 585 + - uid: 9 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-3.5 + rot: -1.5707963267948966 rad + pos: -0.5,1.5 parent: 2 -- proto: AirlockExternalGlassShuttleLocked +- proto: AirlockExternalGlass entities: - - uid: 313 + - uid: 10 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-3.5 + pos: 11.5,-5.5 parent: 2 - - uid: 560 + - uid: 11 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 2 - - uid: 562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 2 - - uid: 563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-5.5 + pos: -0.5,-5.5 parent: 2 -- proto: AirSensor - entities: - - uid: 793 + - uid: 12 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-4.5 + pos: 11.5,-3.5 parent: 2 - - uid: 794 + - uid: 13 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-4.5 + pos: -0.5,-3.5 parent: 2 - - uid: 795 +- proto: AirlockGlassShuttle + entities: + - uid: 14 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,4.5 + pos: -2.5,-5.5 parent: 2 - - uid: 796 + - uid: 15 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,4.5 + pos: -2.5,-3.5 parent: 2 -- proto: AlwaysPoweredWallLight - entities: - - uid: 541 + - uid: 16 components: - type: Transform - pos: 3.5,-19.5 + rot: 1.5707963267948966 rad + pos: 13.5,-5.5 parent: 2 - - uid: 576 + - uid: 17 components: - type: Transform - pos: 7.5,-19.5 + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 parent: 2 - proto: APCBasic entities: - - uid: 597 + - uid: 18 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,0.5 parent: 2 - - uid: 944 + - uid: 19 components: - type: Transform pos: 2.5,-14.5 parent: 2 - proto: AtmosDeviceFanTiny entities: - - uid: 947 + - uid: 23 components: - type: Transform - pos: 13.5,-5.5 + pos: -2.5,-6.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: -2.5,-2.5 parent: 2 - - uid: 948 + - uid: 908 components: - type: Transform pos: 13.5,-3.5 parent: 2 - - uid: 949 + - uid: 909 components: - type: Transform - pos: 13.5,-2.5 + pos: 13.5,-5.5 parent: 2 - - uid: 950 + - uid: 910 components: - type: Transform - pos: 13.5,-6.5 + pos: -2.5,-5.5 parent: 2 - - uid: 951 + - uid: 911 components: - type: Transform - pos: -2.5,-6.5 + pos: -2.5,-3.5 parent: 2 - - uid: 952 + - uid: 916 components: - type: Transform pos: -2.5,-5.5 parent: 2 - - uid: 953 + - uid: 917 components: - type: Transform pos: -2.5,-3.5 parent: 2 - - uid: 954 + - uid: 918 components: - type: Transform - pos: -2.5,-2.5 + pos: 13.5,-5.5 parent: 2 -- proto: BoxFolderClipboard - entities: - - uid: 779 + - uid: 919 components: - type: Transform - pos: 9.622929,-17.072632 + pos: 13.5,-3.5 + parent: 2 +- proto: BlastDoor + entities: + - uid: 20 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 741 + - uid: 21 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 740 + - uid: 22 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 742 + - uid: 679 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 739 +- proto: ButtonFrameCaution + entities: + - uid: 24 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 2 + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 2 + - uid: 26 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 parent: 2 - proto: CableApcExtension entities: - - uid: 31 + - uid: 28 components: - type: Transform pos: 1.5,-4.5 parent: 2 - - uid: 222 + - uid: 29 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 30 components: - type: Transform pos: 11.5,1.5 parent: 2 - - uid: 260 + - uid: 31 components: - type: Transform pos: 12.5,1.5 parent: 2 - - uid: 276 + - uid: 32 components: - type: Transform pos: 7.5,-4.5 parent: 2 - - uid: 283 + - uid: 33 components: - type: Transform pos: 6.5,5.5 parent: 2 - - uid: 305 + - uid: 34 components: - type: Transform pos: 12.5,5.5 parent: 2 - - uid: 308 + - uid: 35 components: - type: Transform pos: -0.5,1.5 parent: 2 - - uid: 309 + - uid: 36 components: - type: Transform pos: -1.5,1.5 parent: 2 - - uid: 310 + - uid: 37 components: - type: Transform pos: 8.5,5.5 parent: 2 - - uid: 319 + - uid: 38 components: - type: Transform pos: -1.5,5.5 parent: 2 - - uid: 320 + - uid: 39 components: - type: Transform pos: 2.5,5.5 parent: 2 - - uid: 324 + - uid: 40 components: - type: Transform pos: -1.5,2.5 parent: 2 - - uid: 542 + - uid: 41 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 43 components: - type: Transform pos: 4.5,-4.5 parent: 2 - - uid: 575 + - uid: 44 components: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 577 + - uid: 45 components: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 638 + - uid: 46 components: - type: Transform pos: 1.5,-14.5 parent: 2 - - uid: 639 + - uid: 47 components: - type: Transform pos: 1.5,-15.5 parent: 2 - - uid: 640 + - uid: 48 components: - type: Transform pos: 2.5,-17.5 parent: 2 - - uid: 641 + - uid: 49 components: - type: Transform pos: 2.5,-16.5 parent: 2 - - uid: 642 + - uid: 50 components: - type: Transform pos: 3.5,-16.5 parent: 2 - - uid: 643 + - uid: 51 components: - type: Transform pos: 4.5,-16.5 parent: 2 - - uid: 644 + - uid: 52 components: - type: Transform pos: 5.5,-16.5 parent: 2 - - uid: 645 + - uid: 53 components: - type: Transform pos: 6.5,-16.5 parent: 2 - - uid: 646 + - uid: 54 components: - type: Transform pos: 7.5,-16.5 parent: 2 - - uid: 647 + - uid: 55 components: - type: Transform pos: 8.5,-16.5 parent: 2 - - uid: 648 + - uid: 56 components: - type: Transform pos: 9.5,-16.5 parent: 2 - - uid: 651 + - uid: 57 components: - type: Transform pos: 8.5,-15.5 parent: 2 - - uid: 652 + - uid: 58 components: - type: Transform pos: 8.5,-14.5 parent: 2 - - uid: 653 + - uid: 59 components: - type: Transform pos: 8.5,-13.5 parent: 2 - - uid: 654 + - uid: 60 components: - type: Transform pos: 2.5,-13.5 parent: 2 - - uid: 655 + - uid: 61 components: - type: Transform pos: 2.5,-14.5 parent: 2 - - uid: 656 + - uid: 62 components: - type: Transform pos: 2.5,-15.5 parent: 2 - - uid: 657 + - uid: 63 components: - type: Transform pos: 2.5,-12.5 parent: 2 - - uid: 658 + - uid: 64 components: - type: Transform pos: 8.5,-12.5 parent: 2 - - uid: 659 + - uid: 65 components: - type: Transform pos: 1.5,-17.5 parent: 2 - - uid: 660 + - uid: 66 components: - type: Transform pos: -0.5,0.5 parent: 2 - - uid: 661 + - uid: 67 components: - type: Transform pos: 0.5,0.5 parent: 2 - - uid: 662 + - uid: 68 components: - type: Transform pos: 0.5,-0.5 parent: 2 - - uid: 663 + - uid: 69 components: - type: Transform pos: 0.5,2.5 parent: 2 - - uid: 664 + - uid: 70 components: - type: Transform pos: 1.5,2.5 parent: 2 - - uid: 665 + - uid: 71 components: - type: Transform pos: 2.5,2.5 parent: 2 - - uid: 666 + - uid: 72 components: - type: Transform pos: 3.5,2.5 parent: 2 - - uid: 667 + - uid: 73 components: - type: Transform pos: 5.5,2.5 parent: 2 - - uid: 668 + - uid: 74 components: - type: Transform pos: 4.5,2.5 parent: 2 - - uid: 669 + - uid: 75 components: - type: Transform pos: 6.5,2.5 parent: 2 - - uid: 670 + - uid: 76 components: - type: Transform pos: 7.5,2.5 parent: 2 - - uid: 671 + - uid: 77 components: - type: Transform pos: 8.5,2.5 parent: 2 - - uid: 672 + - uid: 78 components: - type: Transform pos: 9.5,2.5 parent: 2 - - uid: 673 + - uid: 79 components: - type: Transform pos: 0.5,-1.5 parent: 2 - - uid: 674 + - uid: 80 components: - type: Transform pos: 0.5,1.5 parent: 2 - - uid: 675 + - uid: 81 components: - type: Transform pos: 10.5,2.5 parent: 2 - - uid: 676 + - uid: 82 components: - type: Transform pos: 10.5,1.5 parent: 2 - - uid: 677 + - uid: 83 components: - type: Transform pos: 10.5,0.5 parent: 2 - - uid: 678 + - uid: 84 components: - type: Transform pos: 10.5,-0.5 parent: 2 - - uid: 679 + - uid: 85 components: - type: Transform pos: 10.5,-1.5 parent: 2 - - uid: 680 + - uid: 86 components: - type: Transform pos: 10.5,-2.5 parent: 2 - - uid: 681 + - uid: 87 components: - type: Transform pos: 10.5,-3.5 parent: 2 - - uid: 682 + - uid: 88 components: - type: Transform pos: 10.5,-4.5 parent: 2 - - uid: 683 + - uid: 89 components: - type: Transform pos: 10.5,-5.5 parent: 2 - - uid: 684 + - uid: 90 components: - type: Transform pos: 10.5,-6.5 parent: 2 - - uid: 685 + - uid: 91 components: - type: Transform pos: 10.5,-7.5 parent: 2 - - uid: 686 + - uid: 92 components: - type: Transform pos: 10.5,-8.5 parent: 2 - - uid: 687 + - uid: 93 components: - type: Transform pos: 10.5,-9.5 parent: 2 - - uid: 688 + - uid: 94 components: - type: Transform pos: 10.5,-10.5 parent: 2 - - uid: 689 + - uid: 95 components: - type: Transform pos: 9.5,-10.5 parent: 2 - - uid: 690 + - uid: 96 components: - type: Transform pos: 8.5,-10.5 parent: 2 - - uid: 691 + - uid: 97 components: - type: Transform pos: 7.5,-10.5 parent: 2 - - uid: 692 + - uid: 98 components: - type: Transform pos: 6.5,-10.5 parent: 2 - - uid: 693 + - uid: 99 components: - type: Transform pos: 5.5,-10.5 parent: 2 - - uid: 694 + - uid: 100 components: - type: Transform pos: 4.5,-10.5 parent: 2 - - uid: 695 + - uid: 101 components: - type: Transform pos: 3.5,-10.5 parent: 2 - - uid: 696 + - uid: 102 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 697 + - uid: 103 components: - type: Transform pos: 1.5,-10.5 parent: 2 - - uid: 698 + - uid: 104 components: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 699 + - uid: 105 components: - type: Transform pos: 0.5,-9.5 parent: 2 - - uid: 700 + - uid: 106 components: - type: Transform pos: 0.5,-8.5 parent: 2 - - uid: 701 + - uid: 107 components: - type: Transform pos: 0.5,-7.5 parent: 2 - - uid: 702 + - uid: 108 components: - type: Transform pos: 0.5,-6.5 parent: 2 - - uid: 703 + - uid: 109 components: - type: Transform pos: 0.5,-5.5 parent: 2 - - uid: 704 + - uid: 110 components: - type: Transform pos: 0.5,-4.5 parent: 2 - - uid: 705 + - uid: 111 components: - type: Transform pos: 0.5,-3.5 parent: 2 - - uid: 706 + - uid: 112 components: - type: Transform pos: 0.5,-2.5 parent: 2 - - uid: 707 + - uid: 113 components: - type: Transform pos: 1.5,-0.5 parent: 2 - - uid: 708 + - uid: 114 components: - type: Transform pos: 2.5,-0.5 parent: 2 - - uid: 709 + - uid: 115 components: - type: Transform pos: 3.5,-0.5 parent: 2 - - uid: 710 + - uid: 116 components: - type: Transform pos: 4.5,-0.5 parent: 2 - - uid: 711 + - uid: 117 components: - type: Transform pos: 4.5,-8.5 parent: 2 - - uid: 712 + - uid: 118 components: - type: Transform pos: 3.5,-8.5 parent: 2 - - uid: 713 + - uid: 119 components: - type: Transform pos: 2.5,-8.5 parent: 2 - - uid: 714 + - uid: 120 components: - type: Transform pos: 1.5,-8.5 parent: 2 - - uid: 715 + - uid: 121 components: - type: Transform pos: 6.5,-8.5 parent: 2 - - uid: 716 + - uid: 122 components: - type: Transform pos: 7.5,-8.5 parent: 2 - - uid: 717 + - uid: 123 components: - type: Transform pos: 8.5,-8.5 parent: 2 - - uid: 718 + - uid: 124 components: - type: Transform pos: 9.5,-8.5 parent: 2 - - uid: 719 + - uid: 125 components: - type: Transform pos: 9.5,-0.5 parent: 2 - - uid: 720 + - uid: 126 components: - type: Transform pos: 8.5,-0.5 parent: 2 - - uid: 721 + - uid: 127 components: - type: Transform pos: 7.5,-0.5 parent: 2 - - uid: 722 + - uid: 128 components: - type: Transform pos: 6.5,-0.5 parent: 2 - - uid: 723 + - uid: 129 components: - type: Transform pos: 11.5,-3.5 parent: 2 - - uid: 724 + - uid: 130 components: - type: Transform pos: 12.5,-3.5 parent: 2 - - uid: 725 - components: - - type: Transform - pos: 13.5,-3.5 - parent: 2 - - uid: 726 - components: - - type: Transform - pos: 13.5,-5.5 - parent: 2 - - uid: 727 + - uid: 131 components: - type: Transform pos: 12.5,-5.5 parent: 2 - - uid: 728 + - uid: 132 components: - type: Transform pos: 11.5,-5.5 parent: 2 - - uid: 729 + - uid: 133 components: - type: Transform pos: -0.5,-5.5 parent: 2 - - uid: 730 + - uid: 134 components: - type: Transform pos: -1.5,-5.5 parent: 2 - - uid: 731 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 2 - - uid: 732 + - uid: 135 components: - type: Transform pos: -0.5,-3.5 parent: 2 - - uid: 733 + - uid: 136 components: - type: Transform pos: -1.5,-3.5 parent: 2 - - uid: 734 - components: - - type: Transform - pos: -2.5,-3.5 - parent: 2 - - uid: 736 + - uid: 137 components: - type: Transform pos: 9.5,-4.5 parent: 2 - - uid: 739 + - uid: 138 components: - type: Transform pos: 7.5,5.5 parent: 2 - - uid: 740 + - uid: 139 components: - type: Transform pos: 5.5,5.5 parent: 2 - - uid: 741 + - uid: 140 components: - type: Transform pos: 4.5,5.5 parent: 2 - - uid: 742 + - uid: 141 components: - type: Transform pos: 3.5,5.5 parent: 2 - - uid: 744 + - uid: 142 components: - type: Transform pos: 1.5,5.5 parent: 2 - - uid: 745 + - uid: 143 components: - type: Transform pos: 0.5,5.5 parent: 2 - - uid: 747 + - uid: 144 components: - type: Transform pos: 9.5,5.5 parent: 2 - - uid: 748 + - uid: 145 components: - type: Transform pos: 10.5,5.5 parent: 2 - - uid: 749 + - uid: 146 components: - type: Transform pos: 11.5,5.5 parent: 2 - - uid: 751 + - uid: 147 components: - type: Transform pos: 12.5,4.5 parent: 2 - - uid: 752 + - uid: 148 components: - type: Transform pos: 12.5,3.5 parent: 2 - - uid: 753 + - uid: 149 components: - type: Transform pos: 12.5,2.5 parent: 2 - - uid: 757 + - uid: 150 components: - type: Transform pos: -1.5,3.5 parent: 2 - - uid: 758 + - uid: 151 components: - type: Transform pos: -1.5,4.5 parent: 2 - - uid: 760 + - uid: 152 components: - type: Transform pos: -0.5,5.5 parent: 2 - - uid: 804 + - uid: 153 components: - type: Transform pos: 6.5,-4.5 parent: 2 - - uid: 819 + - uid: 154 components: - type: Transform pos: 8.5,-4.5 parent: 2 - - uid: 855 + - uid: 155 components: - type: Transform pos: 3.5,-4.5 parent: 2 - proto: CableHV entities: - - uid: 53 + - uid: 156 components: - type: Transform pos: 11.5,-21.5 parent: 2 - - uid: 62 + - uid: 157 components: - type: Transform pos: 8.5,-20.5 parent: 2 - - uid: 63 + - uid: 158 components: - type: Transform pos: 10.5,-20.5 parent: 2 - - uid: 64 + - uid: 159 components: - type: Transform pos: 9.5,-20.5 parent: 2 - - uid: 190 + - uid: 160 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 161 components: - type: Transform pos: 11.5,-20.5 parent: 2 - - uid: 191 + - uid: 162 components: - type: Transform pos: 11.5,-22.5 parent: 2 - - uid: 267 + - uid: 163 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 164 components: - type: Transform pos: 11.5,-23.5 parent: 2 - - uid: 273 + - uid: 165 components: - type: Transform pos: -0.5,-17.5 parent: 2 - - uid: 274 + - uid: 166 components: - type: Transform pos: -0.5,-20.5 parent: 2 - - uid: 275 + - uid: 167 components: - type: Transform pos: -0.5,-21.5 parent: 2 - - uid: 278 + - uid: 168 components: - type: Transform pos: -0.5,-26.5 parent: 2 - - uid: 383 + - uid: 169 components: - type: Transform pos: 11.5,-15.5 parent: 2 - - uid: 392 + - uid: 170 components: - type: Transform pos: 11.5,-18.5 parent: 2 - - uid: 591 + - uid: 171 components: - type: Transform pos: 2.5,-17.5 parent: 2 - - uid: 592 + - uid: 172 components: - type: Transform pos: 1.5,-17.5 parent: 2 - - uid: 593 + - uid: 173 components: - type: Transform pos: 3.5,-17.5 parent: 2 - - uid: 594 + - uid: 174 components: - type: Transform pos: 3.5,-16.5 parent: 2 - - uid: 595 + - uid: 175 components: - type: Transform pos: 3.5,-15.5 parent: 2 - - uid: 623 + - uid: 176 components: - type: Transform pos: 11.5,-17.5 parent: 2 - - uid: 735 + - uid: 177 components: - type: Transform pos: 11.5,-13.5 parent: 2 - - uid: 738 + - uid: 178 components: - type: Transform pos: -0.5,-19.5 parent: 2 - - uid: 743 + - uid: 179 components: - type: Transform pos: -0.5,-22.5 parent: 2 - - uid: 746 + - uid: 180 components: - type: Transform pos: -0.5,-25.5 parent: 2 - - uid: 763 + - uid: 181 components: - type: Transform pos: 11.5,-24.5 parent: 2 - - uid: 764 + - uid: 182 components: - type: Transform pos: 11.5,-25.5 parent: 2 - - uid: 765 + - uid: 183 components: - type: Transform pos: 11.5,-26.5 parent: 2 - - uid: 778 + - uid: 184 components: - type: Transform pos: 1.5,-16.5 parent: 2 - - uid: 780 + - uid: 185 components: - type: Transform pos: 0.5,-16.5 parent: 2 - - uid: 781 + - uid: 186 components: - type: Transform pos: 11.5,-14.5 parent: 2 - - uid: 784 + - uid: 187 components: - type: Transform pos: -0.5,-15.5 parent: 2 - - uid: 785 + - uid: 188 components: - type: Transform pos: 11.5,-16.5 parent: 2 - - uid: 800 + - uid: 189 components: - type: Transform pos: -0.5,-16.5 parent: 2 - - uid: 801 + - uid: 190 components: - type: Transform pos: -0.5,-14.5 parent: 2 - - uid: 817 + - uid: 191 components: - type: Transform pos: -0.5,-24.5 parent: 2 - - uid: 818 + - uid: 192 components: - type: Transform pos: -0.5,-23.5 parent: 2 - - uid: 824 + - uid: 193 components: - type: Transform pos: -0.5,-13.5 parent: 2 - - uid: 825 + - uid: 194 components: - type: Transform pos: -0.5,-18.5 parent: 2 - - uid: 828 + - uid: 195 components: - type: Transform pos: 10.5,-13.5 parent: 2 - - uid: 829 + - uid: 196 components: - type: Transform pos: 9.5,-13.5 parent: 2 - - uid: 830 + - uid: 197 components: - type: Transform pos: 8.5,-13.5 parent: 2 - - uid: 831 + - uid: 198 components: - type: Transform pos: 7.5,-13.5 parent: 2 - - uid: 832 + - uid: 199 components: - type: Transform pos: 6.5,-13.5 parent: 2 - - uid: 833 + - uid: 200 components: - type: Transform pos: 5.5,-13.5 parent: 2 - - uid: 834 + - uid: 201 components: - type: Transform pos: 4.5,-13.5 parent: 2 - - uid: 835 + - uid: 202 components: - type: Transform pos: 3.5,-13.5 parent: 2 - - uid: 836 + - uid: 203 components: - type: Transform pos: 2.5,-13.5 parent: 2 - - uid: 837 + - uid: 204 components: - type: Transform pos: 1.5,-13.5 parent: 2 - - uid: 838 + - uid: 205 components: - type: Transform pos: 0.5,-13.5 parent: 2 - - uid: 902 + - uid: 206 components: - type: Transform pos: 10.5,-22.5 parent: 2 - - uid: 904 + - uid: 207 components: - type: Transform pos: 11.5,-19.5 parent: 2 - - uid: 905 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 2 - - uid: 906 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 2 - - uid: 910 + - uid: 208 components: - type: Transform pos: 9.5,-22.5 parent: 2 - - uid: 911 + - uid: 209 components: - type: Transform pos: 8.5,-22.5 parent: 2 - - uid: 912 + - uid: 210 components: - type: Transform pos: 7.5,-22.5 parent: 2 - - uid: 913 + - uid: 211 components: - type: Transform pos: 6.5,-22.5 parent: 2 - - uid: 914 - components: - - type: Transform - pos: 4.5,-20.5 - parent: 2 - - uid: 915 - components: - - type: Transform - pos: 3.5,-20.5 - parent: 2 - - uid: 916 + - uid: 212 components: - type: Transform pos: 2.5,-20.5 parent: 2 - - uid: 917 + - uid: 213 components: - type: Transform pos: 1.5,-20.5 parent: 2 - - uid: 918 + - uid: 214 components: - type: Transform pos: 0.5,-20.5 parent: 2 - - uid: 919 + - uid: 215 components: - type: Transform pos: 0.5,-22.5 parent: 2 - - uid: 920 + - uid: 216 components: - type: Transform pos: 1.5,-22.5 parent: 2 - - uid: 921 + - uid: 217 components: - type: Transform pos: 2.5,-22.5 parent: 2 - - uid: 922 + - uid: 218 components: - type: Transform pos: 3.5,-22.5 parent: 2 - - uid: 923 + - uid: 219 components: - type: Transform pos: 4.5,-22.5 parent: 2 - - uid: 924 + - uid: 220 components: - type: Transform pos: 4.5,-24.5 parent: 2 - - uid: 925 + - uid: 221 components: - type: Transform pos: 3.5,-24.5 parent: 2 - - uid: 926 + - uid: 222 components: - type: Transform pos: 2.5,-24.5 parent: 2 - - uid: 927 + - uid: 223 components: - type: Transform pos: 1.5,-24.5 parent: 2 - - uid: 928 + - uid: 224 components: - type: Transform pos: 0.5,-24.5 parent: 2 - - uid: 929 + - uid: 225 components: - type: Transform pos: 0.5,-26.5 parent: 2 - - uid: 930 + - uid: 226 components: - type: Transform pos: 1.5,-26.5 parent: 2 - - uid: 931 + - uid: 227 components: - type: Transform pos: 2.5,-26.5 parent: 2 - - uid: 932 + - uid: 228 components: - type: Transform pos: 3.5,-26.5 parent: 2 - - uid: 933 + - uid: 229 components: - type: Transform pos: 4.5,-26.5 parent: 2 - - uid: 934 + - uid: 230 components: - type: Transform pos: 6.5,-26.5 parent: 2 - - uid: 935 + - uid: 231 components: - type: Transform pos: 7.5,-26.5 parent: 2 - - uid: 936 + - uid: 232 components: - type: Transform pos: 9.5,-26.5 parent: 2 - - uid: 937 + - uid: 233 components: - type: Transform pos: 8.5,-26.5 parent: 2 - - uid: 938 + - uid: 234 components: - type: Transform pos: 10.5,-26.5 parent: 2 - - uid: 939 + - uid: 235 components: - type: Transform pos: 6.5,-24.5 parent: 2 - - uid: 940 + - uid: 236 components: - type: Transform pos: 7.5,-24.5 parent: 2 - - uid: 941 + - uid: 237 components: - type: Transform pos: 8.5,-24.5 parent: 2 - - uid: 942 + - uid: 238 components: - type: Transform pos: 9.5,-24.5 parent: 2 - - uid: 943 + - uid: 239 components: - type: Transform pos: 10.5,-24.5 parent: 2 - proto: CableMV entities: - - uid: 599 + - uid: 240 components: - type: Transform - pos: 3.5,-15.5 + pos: 2.5,5.5 parent: 2 - - uid: 600 + - uid: 241 components: - type: Transform - pos: 2.5,-15.5 + pos: 6.5,7.5 parent: 2 - - uid: 601 + - uid: 242 components: - type: Transform - pos: -0.5,0.5 + pos: 7.5,7.5 parent: 2 - - uid: 602 + - uid: 243 components: - type: Transform - pos: 1.5,-14.5 + pos: 5.5,7.5 parent: 2 - - uid: 603 + - uid: 244 components: - type: Transform - pos: 2.5,-14.5 + pos: 4.5,7.5 parent: 2 - - uid: 604 + - uid: 245 components: - type: Transform - pos: 2.5,-13.5 + pos: 3.5,7.5 parent: 2 - - uid: 605 + - uid: 246 components: - type: Transform - pos: 2.5,-12.5 + pos: -1.5,1.5 parent: 2 - - uid: 606 + - uid: 247 components: - type: Transform - pos: 2.5,-11.5 + pos: -2.5,1.5 parent: 2 - - uid: 607 + - uid: 248 components: - type: Transform - pos: 1.5,1.5 + pos: -2.5,2.5 parent: 2 - - uid: 608 + - uid: 249 components: - type: Transform - pos: 2.5,1.5 + pos: -2.5,3.5 parent: 2 - - uid: 609 + - uid: 250 components: - type: Transform - pos: 2.5,0.5 + pos: -2.5,4.5 parent: 2 - - uid: 610 + - uid: 251 components: - type: Transform - pos: 2.5,-0.5 + pos: -2.5,5.5 parent: 2 - - uid: 611 + - uid: 252 components: - type: Transform - pos: 2.5,-1.5 + pos: -1.5,5.5 parent: 2 - - uid: 612 + - uid: 253 components: - type: Transform - pos: 2.5,-2.5 + pos: 7.5,5.5 parent: 2 - - uid: 613 + - uid: 254 components: - type: Transform - pos: 2.5,-3.5 + pos: 8.5,5.5 parent: 2 - - uid: 614 + - uid: 255 components: - type: Transform - pos: 2.5,-4.5 + pos: 9.5,5.5 parent: 2 - - uid: 615 + - uid: 256 components: - type: Transform - pos: 2.5,-5.5 + pos: 11.5,5.5 parent: 2 - - uid: 616 + - uid: 257 components: - type: Transform - pos: 2.5,-6.5 + pos: 10.5,5.5 parent: 2 - - uid: 617 + - uid: 258 components: - type: Transform - pos: 2.5,-7.5 + pos: 12.5,5.5 parent: 2 - - uid: 618 + - uid: 259 components: - type: Transform - pos: 2.5,-8.5 + pos: 13.5,5.5 parent: 2 - - uid: 619 + - uid: 260 components: - type: Transform - pos: 2.5,-9.5 + pos: 13.5,4.5 parent: 2 - - uid: 620 + - uid: 261 components: - type: Transform - pos: 2.5,-10.5 + pos: 13.5,3.5 parent: 2 - - uid: 621 + - uid: 262 components: - type: Transform - pos: 0.5,1.5 + pos: 13.5,2.5 parent: 2 - - uid: 622 + - uid: 263 components: - type: Transform - pos: -0.5,1.5 + pos: 13.5,1.5 parent: 2 - - uid: 628 + - uid: 264 components: - type: Transform - pos: -0.5,5.5 + pos: 12.5,1.5 parent: 2 - - uid: 629 + - uid: 265 components: - type: Transform - pos: 0.5,5.5 + pos: 12.5,0.5 parent: 2 - - uid: 630 + - uid: 266 components: - type: Transform - pos: 1.5,5.5 + pos: -1.5,0.5 parent: 2 - - uid: 633 + - uid: 267 components: - type: Transform - pos: 6.5,6.5 + pos: -1.5,-0.5 parent: 2 - - uid: 634 + - uid: 268 components: - type: Transform - pos: 6.5,5.5 + pos: -1.5,-1.5 parent: 2 - - uid: 635 + - uid: 269 components: - type: Transform - pos: 5.5,5.5 + pos: 1.5,-6.5 parent: 2 - - uid: 636 + - uid: 270 components: - type: Transform - pos: 4.5,5.5 + pos: 0.5,-6.5 parent: 2 - - uid: 637 + - uid: 271 components: - type: Transform - pos: 3.5,5.5 + pos: -0.5,-6.5 parent: 2 -- proto: CableTerminal - entities: - - uid: 590 + - uid: 272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-17.5 + pos: -1.5,-6.5 parent: 2 -- proto: CargoPalletBuy - entities: - - uid: 21 + - uid: 273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-9.5 + pos: -1.5,-7.5 parent: 2 - - uid: 24 + - uid: 274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 + pos: 12.5,-7.5 parent: 2 - - uid: 25 + - uid: 275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 + pos: 12.5,-6.5 parent: 2 - - uid: 26 + - uid: 276 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-8.5 + pos: 11.5,-6.5 parent: 2 - - uid: 27 + - uid: 277 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 + pos: 10.5,-6.5 parent: 2 - - uid: 30 + - uid: 278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 + pos: 9.5,-6.5 parent: 2 - - uid: 32 + - uid: 279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-9.5 + pos: 9.5,-7.5 parent: 2 - - uid: 35 + - uid: 280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-0.5 + pos: 9.5,-8.5 parent: 2 - - uid: 36 + - uid: 281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-0.5 + pos: 9.5,-9.5 parent: 2 - - uid: 37 + - uid: 282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-7.5 + pos: 9.5,-10.5 parent: 2 - - uid: 39 + - uid: 283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-2.5 + pos: 8.5,-10.5 parent: 2 - - uid: 41 + - uid: 284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-1.5 + pos: 7.5,-10.5 parent: 2 - - uid: 42 + - uid: 285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-1.5 + pos: 6.5,-10.5 parent: 2 - - uid: 43 + - uid: 286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-2.5 + pos: 5.5,-10.5 parent: 2 - - uid: 44 + - uid: 287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-1.5 + pos: 4.5,-10.5 parent: 2 - - uid: 47 + - uid: 288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,0.5 + pos: 3.5,-10.5 parent: 2 - - uid: 49 + - uid: 289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-0.5 + pos: 12.5,-0.5 parent: 2 - - uid: 50 + - uid: 290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-2.5 + pos: 12.5,-1.5 parent: 2 - - uid: 56 + - uid: 291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 + pos: 3.5,-15.5 parent: 2 - - uid: 61 + - uid: 292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 + pos: 2.5,-15.5 parent: 2 - - uid: 67 + - uid: 293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 + pos: -0.5,0.5 parent: 2 - - uid: 71 + - uid: 294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 + pos: 1.5,-14.5 parent: 2 - - uid: 183 + - uid: 295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,0.5 + pos: 2.5,-14.5 parent: 2 - - uid: 900 + - uid: 296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,0.5 + pos: 2.5,-13.5 parent: 2 -- proto: CargoPalletSell - entities: - - uid: 34 + - uid: 297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 + pos: 2.5,-12.5 parent: 2 - - uid: 45 + - uid: 298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-7.5 + pos: 2.5,-11.5 parent: 2 - - uid: 46 + - uid: 299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 + pos: 1.5,1.5 parent: 2 - - uid: 48 + - uid: 300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 + pos: 2.5,1.5 parent: 2 - - uid: 51 + - uid: 301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-1.5 + pos: 2.5,0.5 parent: 2 - - uid: 52 + - uid: 302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 + pos: 2.5,-0.5 parent: 2 - - uid: 54 + - uid: 303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-9.5 + pos: 2.5,-1.5 parent: 2 - - uid: 55 + - uid: 304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 + pos: 2.5,-2.5 parent: 2 - - uid: 57 + - uid: 305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-9.5 + pos: 2.5,-3.5 parent: 2 - - uid: 58 + - uid: 306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,0.5 + pos: 2.5,-4.5 parent: 2 - - uid: 59 + - uid: 307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-6.5 + pos: 2.5,-5.5 parent: 2 - - uid: 60 + - uid: 308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-7.5 + pos: 2.5,-6.5 parent: 2 - - uid: 66 + - uid: 309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,0.5 + pos: 2.5,-7.5 parent: 2 - - uid: 68 + - uid: 310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-8.5 + pos: 2.5,-8.5 parent: 2 - - uid: 69 + - uid: 311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-8.5 + pos: 2.5,-9.5 parent: 2 - - uid: 70 + - uid: 312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-9.5 + pos: 2.5,-10.5 parent: 2 - - uid: 72 + - uid: 313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-6.5 + pos: 0.5,1.5 parent: 2 - - uid: 73 + - uid: 314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-6.5 + pos: -0.5,1.5 parent: 2 - - uid: 901 + - uid: 315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 + pos: -0.5,5.5 parent: 2 - - uid: 903 + - uid: 316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 + pos: 0.5,5.5 parent: 2 - - uid: 907 + - uid: 317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-7.5 + pos: 1.5,5.5 parent: 2 - - uid: 908 + - uid: 318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 + pos: 6.5,6.5 parent: 2 - - uid: 909 + - uid: 319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-8.5 + pos: 6.5,5.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: 5.5,5.5 parent: 2 - - uid: 960 + - uid: 321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-7.5 + pos: 4.5,5.5 parent: 2 - - uid: 961 + - uid: 322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,0.5 + pos: 3.5,5.5 parent: 2 -- proto: CarpetBlack +- proto: CableTerminal entities: - - uid: 33 + - uid: 323 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,5.5 + pos: 2.5,-17.5 parent: 2 - - uid: 65 +- proto: CargoPalletBuy + entities: + - uid: 324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,5.5 + rot: -1.5707963267948966 rad + pos: 3.5,-9.5 parent: 2 - - uid: 199 + - uid: 325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,6.5 + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 parent: 2 - - uid: 200 + - uid: 326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,5.5 + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 parent: 2 - - uid: 201 + - uid: 327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,5.5 + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 parent: 2 - - uid: 211 + - uid: 328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,6.5 + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 parent: 2 - - uid: 212 + - uid: 329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,6.5 + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 parent: 2 - - uid: 213 + - uid: 330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,6.5 + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 parent: 2 - - uid: 214 + - uid: 331 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,5.5 + pos: 7.5,-0.5 parent: 2 - - uid: 215 + - uid: 332 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,6.5 + pos: 6.5,-0.5 parent: 2 - - uid: 221 + - uid: 333 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,6.5 + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 parent: 2 - - uid: 246 + - uid: 334 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,6.5 + pos: 6.5,-2.5 parent: 2 - - uid: 247 + - uid: 335 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,5.5 + pos: 6.5,-1.5 parent: 2 - - uid: 265 + - uid: 336 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,6.5 + pos: 7.5,-1.5 parent: 2 - - uid: 266 + - uid: 337 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,6.5 + pos: 8.5,-2.5 parent: 2 - - uid: 268 + - uid: 338 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,5.5 + pos: 8.5,-1.5 parent: 2 - - uid: 269 + - uid: 339 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,5.5 + pos: 8.5,0.5 parent: 2 - - uid: 270 + - uid: 340 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,5.5 + pos: 8.5,-0.5 parent: 2 - - uid: 271 + - uid: 341 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,6.5 + pos: 7.5,-2.5 parent: 2 -- proto: Catwalk - entities: - - uid: 294 + - uid: 342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,4.5 + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 parent: 2 - - uid: 295 + - uid: 343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,3.5 + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 parent: 2 - - uid: 296 + - uid: 344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,2.5 + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 parent: 2 - - uid: 297 + - uid: 345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,4.5 + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 parent: 2 - - uid: 298 + - uid: 346 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,3.5 + pos: 6.5,0.5 parent: 2 - - uid: 299 + - uid: 347 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,2.5 + pos: 7.5,0.5 parent: 2 - - uid: 528 +- proto: CargoPalletSell + entities: + - uid: 348 components: - type: Transform - pos: 0.5,-24.5 + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 parent: 2 - - uid: 529 + - uid: 349 components: - type: Transform - pos: 2.5,-26.5 + rot: 1.5707963267948966 rad + pos: 8.5,-7.5 parent: 2 - - uid: 533 + - uid: 350 components: - type: Transform - pos: 3.5,-22.5 + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 parent: 2 - - uid: 538 + - uid: 351 components: - type: Transform - pos: 0.5,-20.5 + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 parent: 2 - - uid: 539 + - uid: 352 components: - type: Transform - pos: 9.5,-20.5 + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 parent: 2 - - uid: 540 + - uid: 353 components: - type: Transform - pos: 9.5,-22.5 + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 parent: 2 - - uid: 543 + - uid: 354 components: - type: Transform - pos: 8.5,-22.5 + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 parent: 2 - - uid: 544 + - uid: 355 components: - type: Transform - pos: 9.5,-24.5 + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 parent: 2 - - uid: 552 + - uid: 356 components: - type: Transform - pos: 2.5,-24.5 + rot: 1.5707963267948966 rad + pos: 8.5,-9.5 parent: 2 - - uid: 554 + - uid: 357 components: - type: Transform - pos: 7.5,-26.5 + rot: -1.5707963267948966 rad + pos: 4.5,0.5 parent: 2 - - uid: 557 + - uid: 358 components: - type: Transform - pos: 3.5,-26.5 + rot: 1.5707963267948966 rad + pos: 8.5,-6.5 parent: 2 - - uid: 559 + - uid: 359 components: - type: Transform - pos: 0.5,-26.5 + rot: 1.5707963267948966 rad + pos: 7.5,-7.5 parent: 2 - - uid: 571 + - uid: 360 components: - type: Transform - pos: 8.5,-20.5 + rot: -1.5707963267948966 rad + pos: 3.5,0.5 parent: 2 - - uid: 573 + - uid: 361 components: - type: Transform - pos: 10.5,-20.5 + rot: 1.5707963267948966 rad + pos: 7.5,-8.5 parent: 2 - - uid: 578 + - uid: 362 components: - type: Transform - pos: 9.5,-26.5 + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 parent: 2 - - uid: 579 + - uid: 363 components: - type: Transform - pos: 10.5,-24.5 + rot: 1.5707963267948966 rad + pos: 7.5,-9.5 parent: 2 - - uid: 586 + - uid: 364 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-3.5 + pos: 7.5,-6.5 parent: 2 - - uid: 587 + - uid: 365 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-5.5 + pos: 6.5,-6.5 parent: 2 - - uid: 588 + - uid: 366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 parent: 2 - - uid: 589 + - uid: 367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 368 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-3.5 + pos: 7.5,-7.5 parent: 2 - - uid: 596 + - uid: 369 components: - type: Transform - pos: 7.5,-24.5 + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 parent: 2 - - uid: 598 + - uid: 370 components: - type: Transform - pos: 7.5,-22.5 + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 parent: 2 - - uid: 759 + - uid: 371 components: - type: Transform - pos: 3.5,-24.5 + rot: 1.5707963267948966 rad + pos: 6.5,-7.5 parent: 2 - - uid: 761 + - uid: 372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 373 components: - type: Transform - pos: 1.5,-22.5 + pos: 2.5,-15.5 parent: 2 - - uid: 762 + - uid: 374 components: - type: Transform - pos: 2.5,-20.5 + pos: 12.5,-3.5 parent: 2 - - uid: 840 + - uid: 375 components: - type: Transform - pos: 3.5,-20.5 + pos: 12.5,-5.5 parent: 2 - - uid: 841 + - uid: 376 components: - type: Transform - pos: 1.5,-24.5 + pos: -1.5,-3.5 parent: 2 - - uid: 846 + - uid: 377 components: - type: Transform - pos: 1.5,-26.5 + pos: 2.5,-16.5 parent: 2 - - uid: 848 + - uid: 378 components: - type: Transform - pos: 4.5,-26.5 + pos: -1.5,-5.5 parent: 2 - - uid: 849 + - uid: 379 components: - type: Transform - pos: 0.5,-22.5 + pos: 0.5,-24.5 parent: 2 - - uid: 850 + - uid: 380 components: - type: Transform - pos: 2.5,-22.5 + pos: 2.5,-26.5 parent: 2 - - uid: 856 + - uid: 381 components: - type: Transform - pos: 6.5,-26.5 + pos: 3.5,-22.5 parent: 2 - - uid: 857 + - uid: 382 components: - type: Transform - pos: 10.5,-22.5 + pos: 0.5,-20.5 parent: 2 - - uid: 858 + - uid: 383 components: - type: Transform - pos: 6.5,-20.5 + pos: 9.5,-20.5 parent: 2 - - uid: 859 + - uid: 384 components: - type: Transform - pos: 1.5,-20.5 + pos: 9.5,-22.5 parent: 2 - - uid: 860 + - uid: 385 components: - type: Transform - pos: 4.5,-20.5 + pos: 8.5,-22.5 parent: 2 - - uid: 861 + - uid: 386 components: - type: Transform - pos: 7.5,-20.5 + pos: 9.5,-24.5 parent: 2 - - uid: 863 + - uid: 387 components: - type: Transform - pos: 8.5,-24.5 + pos: 2.5,-24.5 parent: 2 - - uid: 864 + - uid: 388 components: - type: Transform - pos: 8.5,-26.5 + pos: 7.5,-26.5 parent: 2 - - uid: 865 + - uid: 389 components: - type: Transform - pos: 10.5,-26.5 + pos: 3.5,-26.5 parent: 2 - - uid: 956 + - uid: 390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 + pos: 0.5,-26.5 parent: 2 - - uid: 957 + - uid: 391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-5.5 + pos: 8.5,-20.5 parent: 2 - - uid: 958 + - uid: 392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 + pos: 10.5,-20.5 parent: 2 - - uid: 959 + - uid: 393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 + pos: 9.5,-26.5 parent: 2 -- proto: Chair - entities: - - uid: 38 + - uid: 394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-4.5 + pos: 10.5,-24.5 parent: 2 - - uid: 40 + - uid: 395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-4.5 + pos: 7.5,-24.5 parent: 2 - - uid: 94 + - uid: 396 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-11.5 + pos: 7.5,-22.5 parent: 2 - - uid: 99 + - uid: 397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-11.5 + pos: 3.5,-24.5 parent: 2 - - uid: 138 + - uid: 398 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-11.5 + pos: 1.5,-22.5 parent: 2 - - uid: 143 + - uid: 399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-11.5 + pos: 2.5,-20.5 parent: 2 - - uid: 226 + - uid: 400 components: - type: Transform - pos: 8.5,2.5 + pos: 1.5,-24.5 parent: 2 - - uid: 227 + - uid: 401 components: - type: Transform - pos: 7.5,2.5 + pos: 1.5,-26.5 parent: 2 - - uid: 394 + - uid: 402 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-11.5 + pos: 4.5,-26.5 parent: 2 - - uid: 395 + - uid: 403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-11.5 + pos: 0.5,-22.5 parent: 2 - - uid: 396 + - uid: 404 components: - type: Transform - pos: 2.5,2.5 + pos: 2.5,-22.5 parent: 2 - uid: 405 components: - type: Transform - pos: 3.5,2.5 + pos: 6.5,-26.5 parent: 2 - uid: 406 components: - type: Transform - pos: 4.5,2.5 + pos: 10.5,-22.5 parent: 2 - uid: 407 components: - type: Transform - pos: 6.5,2.5 + pos: 1.5,-20.5 parent: 2 -- proto: ChairPilotSeat - entities: - - uid: 767 + - uid: 408 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-16.5 + pos: 8.5,-24.5 parent: 2 - - uid: 768 + - uid: 409 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-16.5 + pos: 8.5,-26.5 parent: 2 -- proto: ChairWood - entities: - - uid: 253 + - uid: 410 components: - type: Transform - pos: 2.5,5.5 + pos: 10.5,-26.5 parent: 2 - - uid: 254 +- proto: Chair + entities: + - uid: 411 components: - type: Transform - pos: 7.5,5.5 + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 parent: 2 - - uid: 255 + - uid: 412 components: - type: Transform - pos: 3.5,5.5 + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 parent: 2 - - uid: 258 +- proto: ChairOfficeDark + entities: + - uid: 413 components: - type: Transform - pos: 1.5,5.5 + rot: 3.141592653589793 rad + pos: 8.5,-16.5 parent: 2 - - uid: 263 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 414 components: - type: Transform - pos: 8.5,5.5 + pos: 10.5,6.5 parent: 2 - - uid: 264 + - uid: 914 components: - type: Transform - pos: 9.5,5.5 + pos: 0.5,4.5 parent: 2 -- proto: ClosetEmergencyFilledRandom +- proto: ClosetFireFilled entities: - - uid: 354 + - uid: 415 components: - type: Transform - pos: 0.5,2.5 + pos: 10.5,4.5 parent: 2 -- proto: ClosetFireFilled - entities: - - uid: 355 + - uid: 915 components: - type: Transform - pos: 10.5,2.5 + pos: 0.5,6.5 parent: 2 - proto: ComputerPalletConsole entities: - - uid: 894 + - uid: 416 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-4.5 parent: 2 - - uid: 895 + - uid: 417 components: - type: Transform rot: -1.5707963267948966 rad @@ -2728,3230 +2667,3233 @@ entities: parent: 2 - proto: ComputerPowerMonitoring entities: - - uid: 766 + - uid: 418 components: - type: Transform pos: 7.5,-15.5 parent: 2 - proto: ComputerSolarControl entities: - - uid: 772 + - uid: 419 components: - type: Transform pos: 8.5,-15.5 parent: 2 - proto: ConveyorBelt entities: - - uid: 81 + - uid: 420 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-2.5 + pos: 0.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 365 - - uid: 82 + - 801 + - uid: 421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 366 - - uid: 108 + - 802 + - uid: 422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-2.5 + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 393 - - uid: 110 + - 801 + - uid: 423 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-2.5 + pos: -0.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 365 - - uid: 329 + - 801 + - uid: 424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 366 - - uid: 330 + - 802 + - uid: 425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-6.5 + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 404 - - uid: 331 + - 801 + - uid: 426 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-6.5 + pos: 0.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 404 - - uid: 335 + - 802 + - uid: 427 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-6.5 + pos: 10.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 404 - - uid: 337 + - 800 + - uid: 428 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-2.5 + pos: 11.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 393 - - uid: 338 + - 800 + - uid: 429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 + rot: -1.5707963267948966 rad + pos: 12.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 366 - - uid: 339 + - 800 + - uid: 430 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-2.5 + pos: 12.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 365 - - uid: 340 + - 803 + - uid: 431 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: 13.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 393 - - uid: 359 + - 803 + - uid: 432 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-2.5 + pos: 13.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 393 - - uid: 362 + - 800 + - uid: 433 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-6.5 + pos: -0.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 404 - - uid: 363 + - 802 + - uid: 434 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-2.5 + pos: 10.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 365 - - uid: 364 + - 803 + - uid: 435 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-6.5 + pos: 11.5,-2.5 parent: 2 - type: DeviceLinkSink links: - - 366 + - 803 - proto: ExtinguisherCabinetFilled entities: - - uid: 360 + - uid: 436 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,0.5 parent: 2 - - uid: 361 + - uid: 437 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-9.5 parent: 2 -- proto: Firelock - entities: - - uid: 789 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,1.5 - parent: 2 - - uid: 790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,1.5 - parent: 2 -- proto: FirelockEdge - entities: - - uid: 786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-16.5 - parent: 2 -- proto: FirelockGlass +- proto: FoodBreadMoldySlice entities: - - uid: 782 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,5.5 - parent: 2 - - uid: 783 + - uid: 677 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,5.5 + pos: 9.492397,-17.283579 parent: 2 + missingComponents: + - Food + - InjectableSolution + - RefillableSolution - proto: GasOutletInjector entities: - - uid: 386 + - uid: 438 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasPassiveVent entities: - - uid: 397 + - uid: 439 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 414 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 440 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeBend entities: - - uid: 316 + - uid: 441 components: - type: Transform pos: 7.5,6.5 parent: 2 - - uid: 317 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 442 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,4.5 parent: 2 - - uid: 318 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 443 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,4.5 parent: 2 - - uid: 322 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 444 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,6.5 parent: 2 - - uid: 434 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 445 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-17.5 parent: 2 - - uid: 457 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 446 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-11.5 parent: 2 - - uid: 458 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 447 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-8.5 parent: 2 - - uid: 475 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 448 components: - type: Transform pos: 3.5,-8.5 parent: 2 - - uid: 476 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 449 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-10.5 parent: 2 - - uid: 486 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 450 components: - type: Transform pos: 2.5,1.5 parent: 2 - - uid: 487 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 451 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,1.5 parent: 2 - - uid: 488 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 452 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,5.5 parent: 2 - - uid: 489 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 453 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 2 - - uid: 490 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 454 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,1.5 parent: 2 - - uid: 491 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 455 components: - type: Transform pos: 12.5,5.5 parent: 2 - - uid: 512 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 456 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 2 - - uid: 520 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 457 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,4.5 parent: 2 - - uid: 522 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 458 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,5.5 parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasPipeStraight entities: - - uid: 223 + - uid: 459 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,6.5 parent: 2 - - uid: 241 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 460 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,6.5 parent: 2 - - uid: 250 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 461 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,6.5 parent: 2 - - uid: 284 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 462 components: - type: Transform pos: 7.5,5.5 parent: 2 - - uid: 321 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 463 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,5.5 parent: 2 - - uid: 323 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 464 components: - type: Transform pos: 3.5,5.5 parent: 2 - - uid: 417 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 465 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-14.5 parent: 2 - - uid: 418 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 466 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-13.5 parent: 2 - - uid: 419 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 467 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-12.5 parent: 2 - - uid: 420 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 468 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-11.5 parent: 2 - - uid: 421 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 469 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-16.5 parent: 2 - - uid: 422 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 470 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-16.5 parent: 2 - - uid: 423 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 471 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-16.5 parent: 2 - - uid: 424 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 472 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-16.5 parent: 2 - - uid: 425 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 473 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-16.5 parent: 2 - - uid: 426 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 474 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-16.5 parent: 2 - - uid: 428 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 475 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-15.5 parent: 2 - - uid: 430 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 476 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-14.5 parent: 2 - - uid: 431 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 477 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-13.5 parent: 2 - - uid: 432 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 478 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-12.5 parent: 2 - - uid: 435 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 479 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-16.5 parent: 2 - - uid: 436 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 480 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-17.5 parent: 2 - - uid: 437 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 481 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-17.5 parent: 2 - - uid: 438 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 482 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-17.5 parent: 2 - - uid: 439 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 483 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-17.5 parent: 2 - - uid: 442 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 484 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 2 - - uid: 443 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 485 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 2 - - uid: 444 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 486 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 2 - - uid: 445 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 487 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-3.5 parent: 2 - - uid: 446 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 488 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-4.5 parent: 2 - - uid: 447 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 489 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-5.5 parent: 2 - - uid: 448 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 490 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-6.5 parent: 2 - - uid: 449 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 491 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 2 - - uid: 450 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 492 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 2 - - uid: 451 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 493 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-9.5 parent: 2 - - uid: 452 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 494 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-10.5 parent: 2 - - uid: 453 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 495 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-11.5 parent: 2 - - uid: 454 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 496 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-11.5 parent: 2 - - uid: 455 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 497 components: - type: Transform pos: 5.5,-12.5 parent: 2 - - uid: 456 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 498 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-11.5 parent: 2 - - uid: 459 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 499 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-8.5 parent: 2 - - uid: 460 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 500 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-8.5 parent: 2 - - uid: 461 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 501 components: - type: Transform pos: 7.5,-10.5 parent: 2 - - uid: 462 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 502 components: - type: Transform pos: 7.5,-9.5 parent: 2 - - uid: 464 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 503 components: - type: Transform pos: 8.5,-9.5 parent: 2 - - uid: 465 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 504 components: - type: Transform pos: 8.5,-8.5 parent: 2 - - uid: 466 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 505 components: - type: Transform pos: 8.5,-7.5 parent: 2 - - uid: 467 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 506 components: - type: Transform pos: 8.5,-6.5 parent: 2 - - uid: 468 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 507 components: - type: Transform pos: 8.5,-5.5 parent: 2 - - uid: 469 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 508 components: - type: Transform pos: 8.5,-4.5 parent: 2 - - uid: 470 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 509 components: - type: Transform pos: 8.5,-3.5 parent: 2 - - uid: 471 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 510 components: - type: Transform pos: 8.5,-2.5 parent: 2 - - uid: 472 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 511 components: - type: Transform pos: 8.5,-1.5 parent: 2 - - uid: 473 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 512 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-0.5 parent: 2 - - uid: 477 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 513 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-8.5 parent: 2 - - uid: 478 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 514 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-8.5 parent: 2 - - uid: 479 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 515 components: - type: Transform pos: 3.5,-9.5 parent: 2 - - uid: 480 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 516 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-10.5 parent: 2 - - uid: 481 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 517 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-10.5 parent: 2 - - uid: 482 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 518 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-10.5 parent: 2 - - uid: 483 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 519 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-10.5 parent: 2 - - uid: 484 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 520 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 2 - - uid: 485 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 521 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,0.5 parent: 2 - - uid: 492 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 522 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,1.5 parent: 2 - - uid: 493 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 523 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,1.5 parent: 2 - - uid: 494 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 524 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,1.5 parent: 2 - - uid: 495 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 525 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,1.5 parent: 2 - - uid: 496 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 526 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,1.5 parent: 2 - - uid: 497 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 527 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,1.5 parent: 2 - - uid: 498 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 528 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,2.5 parent: 2 - - uid: 499 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 529 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,3.5 parent: 2 - - uid: 500 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 530 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,4.5 parent: 2 - - uid: 501 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 531 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,5.5 parent: 2 - - uid: 502 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 532 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,5.5 parent: 2 - - uid: 503 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 533 components: - type: Transform pos: 12.5,4.5 parent: 2 - - uid: 504 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 534 components: - type: Transform pos: 12.5,3.5 parent: 2 - - uid: 505 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 535 components: - type: Transform pos: 12.5,2.5 parent: 2 - - uid: 506 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 536 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,5.5 parent: 2 - - uid: 507 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 537 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,5.5 parent: 2 - - uid: 508 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 538 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 2 - - uid: 511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,5.5 - parent: 2 - - uid: 513 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 539 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,4.5 parent: 2 - - uid: 519 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 540 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,4.5 parent: 2 - - uid: 521 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 541 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,5.5 parent: 2 - - uid: 523 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 542 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,5.5 parent: 2 - - uid: 524 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 543 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,5.5 parent: 2 - - uid: 525 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 544 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,5.5 parent: 2 - - uid: 526 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 545 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,5.5 parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasPipeTJunction entities: - - uid: 415 + - uid: 546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 547 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-16.5 parent: 2 - - uid: 416 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 548 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-15.5 parent: 2 - - uid: 429 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 549 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-15.5 parent: 2 - - uid: 433 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 550 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-11.5 parent: 2 - - uid: 440 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 551 components: - type: Transform pos: 5.5,-11.5 parent: 2 - - uid: 441 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 552 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-0.5 parent: 2 - - uid: 463 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 553 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-10.5 parent: 2 - - uid: 474 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 554 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 2 - - uid: 509 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 555 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,5.5 parent: 2 - - uid: 510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,5.5 - parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasPort entities: - - uid: 427 + - uid: 556 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasVentPump entities: - - uid: 398 + - uid: 557 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 400 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 558 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 401 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 559 components: - type: Transform pos: 2.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 402 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 560 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 403 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 561 components: - type: Transform pos: 8.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 412 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 562 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasVentScrubber entities: - - uid: 399 + - uid: 563 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 408 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 564 components: - type: Transform pos: 1.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 409 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 565 components: - type: Transform pos: 9.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 410 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 566 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 411 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 567 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 413 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 568 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: GeneratorRTG + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GeneratorBasic15kW entities: - - uid: 367 + - uid: 569 components: - type: Transform pos: 1.5,-17.5 parent: 2 - - uid: 368 + - uid: 570 components: - type: Transform - pos: 2.5,-17.5 + pos: 1.5,-16.5 parent: 2 - proto: GravityGeneratorMini entities: - - uid: 279 + - uid: 571 components: - type: Transform - pos: 1.5,-16.5 + pos: 1.5,-15.5 parent: 2 - proto: Grille entities: - - uid: 14 + - uid: 572 components: - type: Transform pos: 5.5,-1.5 parent: 2 - - uid: 15 + - uid: 573 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 16 + - uid: 574 components: - type: Transform pos: 5.5,-3.5 parent: 2 - - uid: 17 + - uid: 575 components: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 18 + - uid: 576 components: - type: Transform pos: 5.5,-5.5 parent: 2 - - uid: 19 + - uid: 577 components: - type: Transform pos: 5.5,-6.5 parent: 2 - - uid: 75 + - uid: 578 components: - type: Transform pos: 5.5,-7.5 parent: 2 - - uid: 146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 2 - - uid: 147 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 2 - - uid: 148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,3.5 - parent: 2 - - uid: 149 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,3.5 - parent: 2 - - uid: 150 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 2 - - uid: 151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,3.5 - parent: 2 - - uid: 153 + - uid: 579 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 2 - - uid: 162 + - uid: 580 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,3.5 parent: 2 - - uid: 163 + - uid: 581 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,2.5 parent: 2 - - uid: 164 + - uid: 582 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,1.5 parent: 2 - - uid: 166 + - uid: 583 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,0.5 parent: 2 - - uid: 167 + - uid: 584 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 2 - - uid: 168 + - uid: 585 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 2 - - uid: 169 + - uid: 586 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,1.5 parent: 2 - - uid: 170 + - uid: 587 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 - - uid: 171 + - uid: 588 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 2 - - uid: 194 + - uid: 589 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 2 - - uid: 195 + - uid: 590 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-13.5 parent: 2 - - uid: 196 + - uid: 591 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-13.5 parent: 2 - - uid: 197 + - uid: 592 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-13.5 parent: 2 - - uid: 224 + - uid: 593 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 596 components: - type: Transform pos: 8.5,-13.5 parent: 2 - - uid: 225 + - uid: 597 components: - type: Transform pos: 2.5,-13.5 parent: 2 - - uid: 228 + - uid: 598 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,4.5 parent: 2 - - uid: 229 + - uid: 599 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,5.5 parent: 2 - - uid: 272 + - uid: 600 components: - type: Transform pos: 10.5,-28.5 parent: 2 - - uid: 282 + - uid: 601 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-11.5 parent: 2 - - uid: 286 + - uid: 602 components: - type: Transform pos: -2.5,-24.5 parent: 2 - - uid: 291 + - uid: 603 components: - type: Transform pos: -2.5,-28.5 parent: 2 - - uid: 303 + - uid: 604 components: - type: Transform pos: 4.5,7.5 parent: 2 - - uid: 304 + - uid: 605 components: - type: Transform pos: 3.5,7.5 parent: 2 - - uid: 306 + - uid: 606 components: - type: Transform pos: 6.5,7.5 parent: 2 - - uid: 307 + - uid: 607 components: - type: Transform pos: 5.5,7.5 parent: 2 - - uid: 312 + - uid: 608 components: - type: Transform pos: 7.5,7.5 parent: 2 - - uid: 349 + - uid: 609 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 2 - - uid: 350 + - uid: 610 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-7.5 parent: 2 - - uid: 351 + - uid: 611 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-7.5 parent: 2 - - uid: 352 + - uid: 612 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-1.5 parent: 2 - - uid: 373 + - uid: 613 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-12.5 parent: 2 - - uid: 379 + - uid: 614 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-19.5 parent: 2 - - uid: 514 + - uid: 615 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 2 - - uid: 516 + - uid: 616 components: - type: Transform pos: 13.5,-27.5 parent: 2 - - uid: 527 + - uid: 617 components: - type: Transform pos: -0.5,-28.5 parent: 2 - - uid: 556 + - uid: 618 components: - type: Transform pos: 13.5,-21.5 parent: 2 - - uid: 569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-4.5 - parent: 2 - - uid: 570 + - uid: 619 components: - type: Transform pos: 13.5,-24.5 parent: 2 - - uid: 572 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-4.5 - parent: 2 - - uid: 624 + - uid: 620 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-19.5 parent: 2 - - uid: 625 + - uid: 621 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-14.5 parent: 2 - - uid: 626 + - uid: 622 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-11.5 parent: 2 - - uid: 627 + - uid: 623 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-12.5 parent: 2 - - uid: 737 + - uid: 624 components: - type: Transform pos: 9.5,-28.5 parent: 2 - - uid: 750 + - uid: 625 components: - type: Transform pos: -2.5,-27.5 parent: 2 - - uid: 787 + - uid: 626 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-18.5 parent: 2 - - uid: 788 + - uid: 627 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-10.5 parent: 2 - - uid: 791 + - uid: 628 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-10.5 parent: 2 - - uid: 792 + - uid: 629 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-16.5 parent: 2 - - uid: 798 + - uid: 630 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-17.5 parent: 2 - - uid: 814 + - uid: 631 components: - type: Transform pos: 13.5,-28.5 parent: 2 - - uid: 820 + - uid: 632 components: - type: Transform pos: -2.5,-25.5 parent: 2 - - uid: 821 + - uid: 633 components: - type: Transform pos: -2.5,-22.5 parent: 2 - - uid: 823 + - uid: 634 components: - type: Transform pos: 0.5,-28.5 parent: 2 - - uid: 826 + - uid: 635 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-18.5 parent: 2 - - uid: 827 + - uid: 636 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-14.5 parent: 2 - - uid: 847 + - uid: 637 components: - type: Transform pos: 13.5,-26.5 parent: 2 - - uid: 862 + - uid: 638 components: - type: Transform pos: 13.5,-23.5 parent: 2 - - uid: 876 + - uid: 639 components: - type: Transform pos: -1.5,9.5 parent: 2 - - uid: 877 + - uid: 640 components: - type: Transform pos: -0.5,9.5 parent: 2 - - uid: 878 + - uid: 641 components: - type: Transform pos: 1.5,9.5 parent: 2 - - uid: 879 + - uid: 642 components: - type: Transform pos: 0.5,9.5 parent: 2 - - uid: 880 + - uid: 643 components: - type: Transform pos: 3.5,9.5 parent: 2 - - uid: 881 + - uid: 644 components: - type: Transform pos: 5.5,9.5 parent: 2 - - uid: 882 + - uid: 645 components: - type: Transform pos: 7.5,9.5 parent: 2 - - uid: 883 + - uid: 646 components: - type: Transform pos: 8.5,9.5 parent: 2 - - uid: 884 + - uid: 647 components: - type: Transform pos: 10.5,9.5 parent: 2 - - uid: 885 + - uid: 648 components: - type: Transform pos: 9.5,9.5 parent: 2 - - uid: 886 + - uid: 649 components: - type: Transform pos: 12.5,9.5 parent: 2 + - uid: 650 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 - proto: GrilleSpawner entities: - - uid: 277 + - uid: 653 components: - type: Transform pos: 11.5,-28.5 parent: 2 - - uid: 382 + - uid: 654 components: - type: Transform pos: 13.5,-13.5 parent: 2 - - uid: 517 + - uid: 655 components: - type: Transform pos: -2.5,-26.5 parent: 2 - - uid: 631 + - uid: 656 components: - type: Transform pos: -2.5,-15.5 parent: 2 - - uid: 632 + - uid: 657 components: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 754 + - uid: 658 components: - type: Transform pos: -2.5,-21.5 parent: 2 - - uid: 755 + - uid: 659 components: - type: Transform pos: 13.5,-25.5 parent: 2 - - uid: 756 + - uid: 660 components: - type: Transform pos: 13.5,-22.5 parent: 2 - - uid: 797 + - uid: 661 components: - type: Transform pos: 13.5,-15.5 parent: 2 - - uid: 799 + - uid: 662 components: - type: Transform pos: -2.5,-13.5 parent: 2 - - uid: 815 + - uid: 663 components: - type: Transform pos: 1.5,-28.5 parent: 2 - - uid: 822 + - uid: 664 components: - type: Transform pos: -2.5,-23.5 parent: 2 - - uid: 887 + - uid: 665 components: - type: Transform pos: 2.5,9.5 parent: 2 - - uid: 888 + - uid: 666 components: - type: Transform pos: 4.5,9.5 parent: 2 - - uid: 889 - components: - - type: Transform - pos: 6.5,9.5 - parent: 2 - - uid: 890 - components: - - type: Transform - pos: 11.5,9.5 - parent: 2 -- proto: Gyroscope - entities: - - uid: 816 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 2 -- proto: Lamp - entities: - - uid: 774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.59808,-15.833403 - parent: 2 -- proto: LiquidNitrogenCanister - entities: - - uid: 385 - components: - - type: Transform - pos: 5.5,-17.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: LiquidOxygenCanister - entities: - - uid: 384 - components: - - type: Transform - pos: 4.5,-17.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: Paper - entities: - - uid: 775 - components: - - type: Transform - pos: 9.61031,-16.5917 - parent: 2 - - uid: 776 - components: - - type: Transform - pos: 9.488004,-16.738466 - parent: 2 - - uid: 777 - components: - - type: Transform - pos: 9.341236,-16.909695 - parent: 2 -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-15.5 - parent: 2 - - uid: 389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-15.5 - parent: 2 - - uid: 390 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 2 - - uid: 391 - components: - - type: Transform - pos: 5.5,-15.5 - parent: 2 -- proto: PlasticFlapsAirtightClear - entities: - - uid: 84 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 2 - - uid: 86 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 2 - - uid: 112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-6.5 - parent: 2 - - uid: 328 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 2 - - uid: 332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 2 - - uid: 333 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 2 - - uid: 334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 2 - - uid: 336 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 2 -- proto: PottedPlantRandom - entities: - - uid: 139 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 2 - - uid: 140 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 2 - - uid: 218 - components: - - type: Transform - pos: 1.5,2.5 - parent: 2 - - uid: 238 - components: - - type: Transform - pos: 9.5,2.5 - parent: 2 - - uid: 314 - components: - - type: Transform - pos: 0.5,4.5 - parent: 2 - - uid: 315 - components: - - type: Transform - pos: 10.5,4.5 - parent: 2 -- proto: PowerCellRecharger - entities: - - uid: 773 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 2 -- proto: Poweredlight - entities: - - uid: 119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 2 - - uid: 120 + - uid: 667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-0.5 + pos: 6.5,9.5 parent: 2 - - uid: 121 + - uid: 668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-8.5 + pos: 11.5,9.5 parent: 2 - - uid: 122 +- proto: NewtonCradle + entities: + - uid: 669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 + pos: 9.501623,-16.39294 parent: 2 - - uid: 123 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 670 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-11.5 + rot: -1.5707963267948966 rad + pos: 5.5,-15.5 parent: 2 - - uid: 124 + - uid: 671 components: - type: Transform - pos: 5.5,2.5 + rot: 1.5707963267948966 rad + pos: 6.5,-15.5 parent: 2 - - uid: 216 + - uid: 672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-17.5 + pos: 6.5,-15.5 parent: 2 - - uid: 219 + - uid: 673 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-17.5 + pos: 5.5,-15.5 parent: 2 - - uid: 231 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,6.5 + pos: 11.5,-2.5 parent: 2 - - uid: 232 + - uid: 675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,6.5 + pos: -0.5,-2.5 parent: 2 - - uid: 233 + - uid: 678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,3.5 + pos: 11.5,-6.5 parent: 2 - - uid: 234 + - uid: 680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,3.5 + pos: -0.5,-6.5 parent: 2 -- proto: PoweredSmallLight +- proto: PlastitaniumWindow entities: - - uid: 259 + - uid: 905 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-3.5 + pos: 4.5,-14.5 parent: 2 - - uid: 574 + missingComponents: + - Repairable + - Destructible + - ExaminableDamage + - RCDDeconstructable + - Construction + - uid: 906 components: - type: Transform - pos: -1.5,-5.5 + pos: 5.5,-14.5 parent: 2 - - uid: 580 + missingComponents: + - Repairable + - Destructible + - ExaminableDamage + - RCDDeconstructable + - Construction + - uid: 907 components: - type: Transform - pos: 12.5,-5.5 + pos: 6.5,-14.5 parent: 2 - - uid: 581 + missingComponents: + - Repairable + - Destructible + - ExaminableDamage + - RCDDeconstructable + - Construction +- proto: PosterLegitVacation + entities: + - uid: 682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-3.5 + rot: 1.5707963267948966 rad + pos: 8.5,-14.5 parent: 2 -- proto: Railing +- proto: PowerCellRecharger entities: - - uid: 287 + - uid: 683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,4.5 + pos: 9.5,-15.5 parent: 2 - - uid: 288 +- proto: Poweredlight + entities: + - uid: 684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,4.5 + pos: 5.5,2.5 parent: 2 - - uid: 289 + - uid: 685 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,4.5 + pos: 0.5,-8.5 parent: 2 - - uid: 293 + - uid: 686 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 2 - - uid: 325 - components: - - type: Transform - pos: 6.5,5.5 + pos: 10.5,-8.5 parent: 2 - - uid: 326 + - uid: 687 components: - type: Transform - pos: 4.5,5.5 + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 parent: 2 - - uid: 327 + - uid: 688 components: - type: Transform - pos: 5.5,5.5 + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 parent: 2 -- proto: RailingCornerSmall +- proto: PoweredSmallLight entities: - - uid: 290 + - uid: 689 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,5.5 + pos: 5.5,4.5 parent: 2 - - uid: 292 + - uid: 690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,5.5 + rot: 3.141592653589793 rad + pos: 5.5,-19.5 parent: 2 -- proto: RandomPosterLegit - entities: - - uid: 518 + - uid: 691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-14.5 + rot: -1.5707963267948966 rad + pos: 9.5,-16.5 parent: 2 - - uid: 545 + - uid: 692 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,3.5 + pos: -1.5,-3.5 parent: 2 - - uid: 546 + - uid: 693 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,3.5 + pos: -1.5,-5.5 parent: 2 - - uid: 547 + - uid: 694 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-11.5 + pos: 12.5,-5.5 parent: 2 - - uid: 548 + - uid: 695 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-11.5 + pos: 12.5,-3.5 parent: 2 - - uid: 549 +- proto: RandomInstruments + entities: + - uid: 913 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,7.5 + pos: 5.5,2.5 parent: 2 - - uid: 550 +- proto: RandomPosterLegit + entities: + - uid: 696 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,7.5 + pos: 10.5,-11.5 parent: 2 - - uid: 551 + - uid: 697 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-14.5 + pos: 0.5,-11.5 parent: 2 - proto: ReinforcedWindow entities: - - uid: 3 + - uid: 698 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,4.5 parent: 2 - - uid: 7 + - uid: 699 components: - type: Transform pos: 5.5,-7.5 parent: 2 - - uid: 8 + - uid: 700 components: - type: Transform pos: 5.5,-1.5 parent: 2 - - uid: 9 + - uid: 701 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 10 + - uid: 702 components: - type: Transform pos: 5.5,-3.5 parent: 2 - - uid: 11 + - uid: 703 components: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 12 + - uid: 704 components: - type: Transform pos: 5.5,-5.5 parent: 2 - - uid: 13 + - uid: 705 components: - type: Transform pos: 5.5,-6.5 parent: 2 - - uid: 77 + - uid: 706 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-13.5 parent: 2 - - uid: 100 + - uid: 707 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 2 - - uid: 127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,3.5 - parent: 2 - - uid: 128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 2 - - uid: 129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,3.5 - parent: 2 - - uid: 133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,3.5 - parent: 2 - - uid: 134 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 2 - - uid: 135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 2 - - uid: 142 + - uid: 708 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-13.5 parent: 2 - - uid: 152 + - uid: 709 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 2 - - uid: 154 + - uid: 710 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,1.5 parent: 2 - - uid: 155 + - uid: 711 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 2 - - uid: 156 + - uid: 712 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 - - uid: 157 + - uid: 713 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,0.5 parent: 2 - - uid: 158 + - uid: 714 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,5.5 parent: 2 - - uid: 159 + - uid: 715 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,1.5 parent: 2 - - uid: 160 + - uid: 716 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,2.5 parent: 2 - - uid: 161 + - uid: 717 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,3.5 parent: 2 - - uid: 165 + - uid: 718 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 2 - - uid: 182 + - uid: 719 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 2 - - uid: 185 + - uid: 720 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-13.5 parent: 2 - - uid: 285 + - uid: 721 components: - type: Transform pos: 3.5,7.5 parent: 2 - - uid: 300 + - uid: 722 components: - type: Transform pos: 5.5,7.5 parent: 2 - - uid: 301 + - uid: 723 components: - type: Transform pos: 6.5,7.5 parent: 2 - - uid: 302 + - uid: 724 components: - type: Transform pos: 7.5,7.5 parent: 2 - - uid: 311 + - uid: 725 components: - type: Transform pos: 4.5,7.5 parent: 2 - - uid: 353 + - uid: 726 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 2 - - uid: 356 + - uid: 727 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-7.5 parent: 2 - - uid: 357 + - uid: 728 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-7.5 parent: 2 - - uid: 358 + - uid: 729 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-1.5 parent: 2 - - uid: 555 + - uid: 730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-4.5 + pos: 6.5,-12.5 parent: 2 - - uid: 558 + - uid: 731 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-4.5 + pos: 5.5,-12.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: 4.5,-12.5 parent: 2 -- proto: ShuttersNormalOpen +- proto: ShuttersNormal entities: - - uid: 808 + - uid: 733 components: - type: Transform - pos: 1.5,3.5 + pos: 9.5,3.5 parent: 2 - type: DeviceLinkSink links: - - 807 - - uid: 809 + - 745 + - 746 + - uid: 734 components: - type: Transform - pos: 2.5,3.5 + pos: 1.5,3.5 parent: 2 - type: DeviceLinkSink links: - - 807 - - uid: 810 + - 743 + - 744 + - uid: 735 components: - type: Transform - pos: 3.5,3.5 + pos: 2.5,3.5 parent: 2 - type: DeviceLinkSink links: - - 807 - - uid: 811 + - 743 + - 744 + - uid: 736 components: - type: Transform - pos: 7.5,3.5 + pos: 3.5,3.5 parent: 2 - type: DeviceLinkSink links: - - 807 - - uid: 812 + - 743 + - 744 + - uid: 737 components: - type: Transform pos: 8.5,3.5 parent: 2 - type: DeviceLinkSink links: - - 807 - - uid: 813 + - 745 + - 746 + - uid: 738 components: - type: Transform - pos: 9.5,3.5 + pos: 7.5,3.5 parent: 2 - type: DeviceLinkSink links: - - 807 -- proto: SignalButton + - 745 + - 746 +- proto: SignalButtonDirectional entities: - - uid: 807 + - uid: 739 components: - - type: MetaData - name: shutters button - type: Transform - pos: 0.5,7.5 + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 808: - - Pressed: Toggle - 809: + invalid: - Pressed: Toggle - 810: + 679: - Pressed: Toggle - 811: + - uid: 740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21: - Pressed: Toggle - 812: + - uid: 741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 20: - Pressed: Toggle - 813: + - uid: 742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22: - Pressed: Toggle -- proto: SignSecureMed +- proto: SignalSwitchDirectional entities: - - uid: 144 + - uid: 743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-8.5 + pos: 4.5,3.5 parent: 2 - - uid: 145 + - type: DeviceLinkSource + linkedPorts: + 736: + - On: Open + - Off: Close + 735: + - On: Open + - Off: Close + 734: + - On: Open + - Off: Close + - uid: 744 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-0.5 + pos: 4.5,3.5 parent: 2 -- proto: SignShipDock - entities: - - uid: 945 + - type: DeviceLinkSource + linkedPorts: + 736: + - On: Open + - Off: Close + 735: + - On: Open + - Off: Close + 734: + - On: Open + - Off: Close + - uid: 745 components: - type: Transform - pos: -2.5,-4.5 + rot: 3.141592653589793 rad + pos: 6.5,3.5 parent: 2 - - uid: 946 + - type: DeviceLinkSource + linkedPorts: + 738: + - On: Open + - Off: Close + 737: + - On: Open + - Off: Close + 733: + - On: Open + - Off: Close + - uid: 746 components: - type: Transform - pos: 13.5,-4.5 + pos: 6.5,3.5 parent: 2 -- proto: SignSpace + - type: DeviceLinkSource + linkedPorts: + 738: + - On: Open + - Off: Close + 737: + - On: Open + - Off: Close + 733: + - On: Open + - Off: Close +- proto: SignCargoDock entities: - - uid: 341 + - uid: 747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 + pos: 13.5,-4.5 parent: 2 - - uid: 342 + - uid: 748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-1.5 + pos: -2.5,-4.5 parent: 2 - - uid: 343 +- proto: SignSecureMed + entities: + - uid: 749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-7.5 + rot: 3.141592653589793 rad + pos: 5.5,-8.5 parent: 2 - - uid: 344 + - uid: 750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-7.5 + rot: 3.141592653589793 rad + pos: 5.5,-0.5 parent: 2 - proto: SMESBasic entities: - - uid: 380 + - uid: 751 components: - type: Transform pos: 3.5,-17.5 parent: 2 - proto: SolarPanel entities: - - uid: 280 + - uid: 752 components: - type: Transform - pos: 3.5,-24.5 + rot: 1.5707963267948966 rad + pos: 11.5,-12.5 parent: 2 - - uid: 281 + - uid: 753 components: - type: Transform - pos: 1.5,-24.5 + rot: -1.5707963267948966 rad + pos: -0.5,-12.5 parent: 2 - - uid: 530 + - uid: 754 components: - type: Transform - pos: 6.5,-20.5 + pos: 3.5,-24.5 parent: 2 - - uid: 531 + - uid: 755 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 756 components: - type: Transform pos: 8.5,-20.5 parent: 2 - - uid: 532 + - uid: 757 components: - type: Transform pos: 10.5,-20.5 parent: 2 - - uid: 534 + - uid: 758 components: - type: Transform pos: 0.5,-26.5 parent: 2 - - uid: 535 + - uid: 759 components: - type: Transform pos: 9.5,-24.5 parent: 2 - - uid: 536 + - uid: 760 components: - type: Transform pos: 10.5,-22.5 parent: 2 - - uid: 537 + - uid: 761 components: - type: Transform pos: 7.5,-24.5 parent: 2 - - uid: 561 + - uid: 762 components: - type: Transform pos: 9.5,-26.5 parent: 2 - - uid: 564 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 2 - - uid: 565 + - uid: 763 components: - type: Transform pos: 6.5,-26.5 parent: 2 - - uid: 566 + - uid: 764 components: - type: Transform pos: 10.5,-24.5 parent: 2 - - uid: 567 + - uid: 765 components: - type: Transform pos: 1.5,-26.5 parent: 2 - - uid: 568 + - uid: 766 components: - type: Transform pos: 7.5,-22.5 parent: 2 - - uid: 649 + - uid: 767 components: - type: Transform pos: 4.5,-26.5 parent: 2 - - uid: 650 + - uid: 768 components: - type: Transform pos: 2.5,-24.5 parent: 2 - - uid: 839 + - uid: 769 components: - type: Transform pos: 8.5,-24.5 parent: 2 - - uid: 842 + - uid: 770 components: - type: Transform pos: 10.5,-26.5 parent: 2 - - uid: 843 + - uid: 771 components: - type: Transform pos: 7.5,-26.5 parent: 2 - - uid: 844 + - uid: 772 components: - type: Transform pos: 8.5,-26.5 parent: 2 - - uid: 845 + - uid: 773 components: - type: Transform pos: 9.5,-20.5 parent: 2 - - uid: 851 + - uid: 774 components: - type: Transform pos: 2.5,-26.5 parent: 2 - - uid: 852 + - uid: 775 components: - type: Transform pos: 3.5,-26.5 parent: 2 - - uid: 853 + - uid: 776 components: - type: Transform pos: 9.5,-22.5 parent: 2 - - uid: 854 + - uid: 777 components: - type: Transform pos: 8.5,-22.5 parent: 2 - - uid: 866 + - uid: 778 components: - type: Transform pos: 0.5,-24.5 parent: 2 - - uid: 867 + - uid: 779 components: - type: Transform pos: 3.5,-22.5 parent: 2 - - uid: 868 + - uid: 780 components: - type: Transform pos: 1.5,-22.5 parent: 2 - - uid: 869 + - uid: 781 components: - type: Transform pos: 2.5,-22.5 parent: 2 - - uid: 870 + - uid: 782 components: - type: Transform pos: 0.5,-20.5 parent: 2 - - uid: 871 + - uid: 783 components: - type: Transform pos: 2.5,-20.5 parent: 2 - - uid: 872 - components: - - type: Transform - pos: 3.5,-20.5 - parent: 2 - - uid: 873 - components: - - type: Transform - pos: 4.5,-20.5 - parent: 2 - - uid: 891 + - uid: 784 components: - type: Transform pos: 0.5,-22.5 parent: 2 - - uid: 892 + - uid: 785 components: - type: Transform pos: 1.5,-20.5 parent: 2 - proto: SolarTracker entities: - - uid: 198 + - uid: 786 components: - type: Transform pos: 4.5,-22.5 parent: 2 - - uid: 874 + - uid: 787 components: - type: Transform pos: 6.5,-22.5 parent: 2 - - uid: 875 + - uid: 788 components: - type: Transform pos: 4.5,-24.5 parent: 2 - - uid: 893 + - uid: 789 components: - type: Transform pos: 6.5,-24.5 parent: 2 -- proto: SubstationBasic +- proto: SpawnMobBear entities: - - uid: 381 + - uid: 790 components: - type: Transform - pos: 3.5,-15.5 + pos: 7.5,-16.5 parent: 2 -- proto: TableCounterWood +- proto: SpawnMobCleanBot entities: - - uid: 251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,4.5 - parent: 2 - - uid: 252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,4.5 - parent: 2 - - uid: 256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,4.5 - parent: 2 - - uid: 257 + - uid: 676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,4.5 + pos: 5.5,5.5 parent: 2 - - uid: 261 +- proto: StationAnchorIndestructible + entities: + - uid: 791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,4.5 + pos: 5.5,-18.5 parent: 2 - - uid: 262 +- proto: SubstationBasic + entities: + - uid: 792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,4.5 + pos: 3.5,-15.5 parent: 2 - proto: TableReinforced entities: - - uid: 769 + - uid: 793 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-15.5 parent: 2 - - uid: 770 + - uid: 794 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-16.5 parent: 2 - - uid: 771 + - uid: 795 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-17.5 parent: 2 - - uid: 896 + - uid: 796 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 2 - - uid: 897 + - uid: 797 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-5.5 parent: 2 - - uid: 898 + - uid: 798 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-3.5 parent: 2 - - uid: 899 + - uid: 799 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-5.5 parent: 2 +- proto: TableWood + entities: + - uid: 912 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 - proto: TwoWayLever entities: - - uid: 365 + - uid: 800 components: - type: Transform - pos: 0.5,-3.5 + pos: 10.5,-7.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 363: + 432: - Left: Forward - Right: Reverse - Middle: Off - 81: + 429: - Left: Forward - Right: Reverse - Middle: Off - 339: + 428: - Left: Forward - Right: Reverse - Middle: Off - 110: + 427: - Left: Forward - Right: Reverse - Middle: Off - - uid: 366 + - uid: 801 components: - type: Transform - pos: 0.5,-5.5 + pos: 0.5,-7.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 364: + 422: - Left: Forward - Right: Reverse - Middle: Off - 82: + 425: - Left: Forward - Right: Reverse - Middle: Off - 329: + 423: - Left: Forward - Right: Reverse - Middle: Off - 338: + 420: - Left: Forward - Right: Reverse - Middle: Off - - uid: 393 + - uid: 802 components: - type: Transform - pos: 10.5,-3.5 + pos: 0.5,-1.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 359: + 421: - Left: Forward - Right: Reverse - Middle: Off - 337: + 424: - Left: Forward - Right: Reverse - Middle: Off - 108: + 433: - Left: Forward - Right: Reverse - Middle: Off - 340: + 426: - Left: Forward - Right: Reverse - Middle: Off - - uid: 404 + - uid: 803 components: - type: Transform - pos: 10.5,-5.5 + pos: 10.5,-1.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 362: + 431: - Left: Forward - Right: Reverse - Middle: Off - 331: + 430: - Left: Forward - Right: Reverse - Middle: Off - 335: + 435: - Left: Forward - Right: Reverse - Middle: Off - 330: + 434: - Left: Forward - Right: Reverse - Middle: Off -- proto: WallReinforced +- proto: WallPlastitaniumIndestructible entities: - - uid: 4 + - uid: 804 components: - type: Transform - pos: 5.5,0.5 + pos: 7.5,-20.5 parent: 2 - - uid: 5 + - uid: 805 components: - type: Transform - pos: 5.5,-0.5 + pos: 7.5,-19.5 parent: 2 - - uid: 6 + - uid: 806 components: - type: Transform - pos: 5.5,-8.5 + pos: 4.5,-20.5 parent: 2 - - uid: 28 + - uid: 807 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 811 components: - type: Transform - rot: -1.5707963267948966 rad pos: 10.5,-15.5 parent: 2 - - uid: 29 + - uid: 812 components: - type: Transform - rot: -1.5707963267948966 rad pos: 10.5,-16.5 parent: 2 - - uid: 74 + - uid: 813 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 814 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 826 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 833 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 836 components: - type: Transform pos: 5.5,-9.5 parent: 2 - - uid: 76 + - uid: 837 components: - type: Transform pos: 11.5,2.5 parent: 2 - - uid: 78 + - uid: 838 components: - type: Transform pos: 11.5,0.5 parent: 2 - - uid: 79 + - uid: 839 components: - type: Transform pos: 11.5,-0.5 parent: 2 - - uid: 80 + - uid: 840 components: - type: Transform pos: 11.5,-1.5 parent: 2 - - uid: 83 + - uid: 841 components: - type: Transform pos: 11.5,-4.5 parent: 2 - - uid: 85 + - uid: 842 components: - type: Transform pos: 11.5,-7.5 parent: 2 - - uid: 87 + - uid: 843 components: - type: Transform pos: 11.5,-8.5 parent: 2 - - uid: 88 + - uid: 844 components: - type: Transform pos: 11.5,-9.5 parent: 2 - - uid: 89 + - uid: 845 components: - type: Transform pos: 11.5,-10.5 parent: 2 - - uid: 90 + - uid: 846 components: - type: Transform pos: 11.5,-11.5 parent: 2 - - uid: 91 + - uid: 847 components: - type: Transform pos: 10.5,-11.5 parent: 2 - - uid: 92 + - uid: 848 components: - type: Transform pos: 10.5,-12.5 parent: 2 - - uid: 93 + - uid: 849 components: - type: Transform pos: 9.5,-12.5 parent: 2 - - uid: 95 + - uid: 850 components: - type: Transform pos: 7.5,-12.5 parent: 2 - - uid: 96 - components: - - type: Transform - pos: 6.5,-12.5 - parent: 2 - - uid: 97 - components: - - type: Transform - pos: 5.5,-12.5 - parent: 2 - - uid: 98 - components: - - type: Transform - pos: 4.5,-12.5 - parent: 2 - - uid: 101 + - uid: 851 components: - type: Transform pos: 1.5,-12.5 parent: 2 - - uid: 102 + - uid: 852 components: - type: Transform pos: 0.5,-12.5 parent: 2 - - uid: 103 + - uid: 853 components: - type: Transform pos: 0.5,-11.5 parent: 2 - - uid: 104 + - uid: 854 components: - type: Transform pos: -0.5,-11.5 parent: 2 - - uid: 105 + - uid: 855 components: - type: Transform pos: -0.5,-10.5 parent: 2 - - uid: 106 + - uid: 856 components: - type: Transform pos: -0.5,-8.5 parent: 2 - - uid: 107 + - uid: 857 components: - type: Transform pos: -0.5,-7.5 parent: 2 - - uid: 109 + - uid: 858 components: - type: Transform pos: -0.5,-9.5 parent: 2 - - uid: 111 + - uid: 859 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-4.5 parent: 2 - - uid: 113 + - uid: 860 components: - type: Transform pos: -0.5,-4.5 parent: 2 - - uid: 114 + - uid: 861 components: - type: Transform pos: -0.5,-1.5 parent: 2 - - uid: 115 + - uid: 862 components: - type: Transform pos: -0.5,-0.5 parent: 2 - - uid: 116 + - uid: 863 components: - type: Transform pos: -0.5,0.5 parent: 2 - - uid: 117 + - uid: 864 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-12.5 parent: 2 - - uid: 118 + - uid: 865 components: - type: Transform pos: -0.5,2.5 parent: 2 - - uid: 125 + - uid: 866 components: - type: Transform pos: 11.5,3.5 parent: 2 - - uid: 126 + - uid: 867 components: - type: Transform pos: 10.5,3.5 parent: 2 - - uid: 130 + - uid: 868 components: - type: Transform pos: 6.5,3.5 parent: 2 - - uid: 131 + - uid: 869 components: - type: Transform pos: 5.5,3.5 parent: 2 - - uid: 132 + - uid: 870 components: - type: Transform pos: 4.5,3.5 parent: 2 - - uid: 136 + - uid: 871 components: - type: Transform pos: 0.5,3.5 parent: 2 - - uid: 137 + - uid: 872 components: - type: Transform pos: -0.5,3.5 parent: 2 - - uid: 141 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-14.5 - parent: 2 - - uid: 172 + - uid: 873 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,0.5 parent: 2 - - uid: 173 + - uid: 874 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,0.5 parent: 2 - - uid: 174 + - uid: 875 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 2 - - uid: 175 + - uid: 876 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,6.5 parent: 2 - - uid: 176 + - uid: 877 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,6.5 parent: 2 - - uid: 177 + - uid: 878 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,6.5 parent: 2 - - uid: 178 + - uid: 879 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,4.5 parent: 2 - - uid: 179 + - uid: 880 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,6.5 parent: 2 - - uid: 180 + - uid: 881 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,6.5 parent: 2 - - uid: 181 + - uid: 882 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,6.5 parent: 2 - - uid: 184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-14.5 - parent: 2 - - uid: 186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-14.5 - parent: 2 - - uid: 187 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-14.5 - parent: 2 - - uid: 188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-14.5 - parent: 2 - - uid: 189 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-14.5 - parent: 2 - - uid: 192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-14.5 - parent: 2 - - uid: 193 + - uid: 883 components: - type: Transform pos: 2.5,-12.5 parent: 2 - - uid: 202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-18.5 - parent: 2 - - uid: 203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-18.5 - parent: 2 - - uid: 204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-18.5 - parent: 2 - - uid: 205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-18.5 - parent: 2 - - uid: 206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-18.5 - parent: 2 - - uid: 207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-18.5 - parent: 2 - - uid: 208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-18.5 - parent: 2 - - uid: 209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-18.5 - parent: 2 - - uid: 210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-18.5 - parent: 2 - - uid: 217 + - uid: 884 components: - type: Transform pos: 8.5,-12.5 parent: 2 - - uid: 220 + - uid: 885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-18.5 + pos: 12.5,-4.5 parent: 2 - - uid: 230 + - uid: 886 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,7.5 parent: 2 - - uid: 235 + - uid: 887 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,7.5 parent: 2 - - uid: 236 + - uid: 888 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,7.5 parent: 2 - - uid: 237 + - uid: 889 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,7.5 parent: 2 - - uid: 239 - components: - - type: Transform - pos: 8.5,-14.5 - parent: 2 - - uid: 240 - components: - - type: Transform - pos: 2.5,-14.5 - parent: 2 - - uid: 242 + - uid: 890 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,7.5 parent: 2 - - uid: 243 + - uid: 891 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,7.5 parent: 2 - - uid: 244 + - uid: 892 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,7.5 parent: 2 - - uid: 245 + - uid: 893 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,7.5 parent: 2 - - uid: 345 + - uid: 894 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - uid: 895 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-7.5 parent: 2 - - uid: 346 + - uid: 896 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-7.5 parent: 2 - - uid: 347 + - uid: 897 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-1.5 parent: 2 - - uid: 348 + - uid: 898 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-1.5 parent: 2 - - uid: 372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-17.5 - parent: 2 - - uid: 374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-14.5 - parent: 2 - - uid: 375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 2 - - uid: 376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-15.5 - parent: 2 - - uid: 377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-14.5 - parent: 2 - - uid: 378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-18.5 - parent: 2 - - uid: 515 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-17.5 - parent: 2 - - uid: 553 + - uid: 899 components: - type: Transform rot: 3.141592653589793 rad @@ -5959,16 +5901,16 @@ entities: parent: 2 - proto: WarpPoint entities: - - uid: 955 + - uid: 900 components: - type: Transform pos: 5.5,-4.5 parent: 2 - type: WarpPoint location: Automated Trade Station -- proto: WindoorSecureEngineeringLocked +- proto: Windoor entities: - - uid: 371 + - uid: 901 components: - type: Transform rot: 1.5707963267948966 rad @@ -5976,13 +5918,13 @@ entities: parent: 2 - proto: WindowReinforcedDirectional entities: - - uid: 369 + - uid: 902 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-15.5 parent: 2 - - uid: 370 + - uid: 903 components: - type: Transform rot: 1.5707963267948966 rad @@ -5990,9 +5932,9 @@ entities: parent: 2 - proto: Wrench entities: - - uid: 23 + - uid: 904 components: - type: Transform - pos: 4.301509,-15.756044 + pos: 2.489903,-15.514006 parent: 2 ... diff --git a/Resources/Maps/arena.yml b/Resources/Maps/arena.yml index 362de161419ba1..d409d1add8a6af 100644 --- a/Resources/Maps/arena.yml +++ b/Resources/Maps/arena.yml @@ -55649,28 +55649,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.337725,-65.55754 parent: 6747 -- proto: chem_master - entities: - - uid: 1712 - components: - - type: Transform - pos: -19.5,-13.5 - parent: 6747 - - uid: 3673 - components: - - type: Transform - pos: 13.5,-25.5 - parent: 6747 - - uid: 19848 - components: - - type: Transform - pos: 10.5,-27.5 - parent: 6747 - - uid: 21533 - components: - - type: Transform - pos: 54.5,-41.5 - parent: 6747 - proto: ChemDispenser entities: - uid: 3242 @@ -55747,6 +55725,28 @@ entities: - type: Transform pos: 55.5,-42.5 parent: 6747 +- proto: ChemMaster + entities: + - uid: 1712 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 6747 + - uid: 3673 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 6747 + - uid: 19848 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 6747 + - uid: 21533 + components: + - type: Transform + pos: 54.5,-41.5 + parent: 6747 - proto: ChurchOrganInstrument entities: - uid: 4241 @@ -76157,6 +76157,11 @@ entities: - type: Transform pos: 0.63343143,-28.369678 parent: 6747 + - uid: 21851 + components: + - type: Transform + pos: -32.628227,-73.3529 + parent: 6747 - uid: 22528 components: - type: Transform @@ -76290,13 +76295,6 @@ entities: - type: Transform pos: -2.3555942,-22.542295 parent: 6747 -- proto: FoodMeatRatdoubleKebab - entities: - - uid: 21851 - components: - - type: Transform - pos: -32.628227,-73.3529 - parent: 6747 - proto: FoodMeatSpiderLeg entities: - uid: 22408 @@ -121588,6 +121586,13 @@ entities: - type: Transform pos: 36.5,2.5 parent: 6747 +- proto: MaterialSilo + entities: + - uid: 4984 + components: + - type: Transform + pos: -11.5,-57.5 + parent: 6747 - proto: MaterialWoodPlank entities: - uid: 9140 @@ -148256,8 +148261,6 @@ entities: rot: 3.141592653589793 rad pos: 49.5,28.5 parent: 6747 -- proto: SignAtmosMinsky - entities: - uid: 7488 components: - type: Transform @@ -148305,18 +148308,6 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,-40.5 parent: 6747 -- proto: SignCourt - entities: - - uid: 6079 - components: - - type: Transform - pos: -3.5,-41.5 - parent: 6747 - - uid: 8205 - components: - - type: Transform - pos: -3.5,-47.5 - parent: 6747 - proto: SignCryogenics entities: - uid: 26931 @@ -148922,13 +148913,6 @@ entities: - type: Transform pos: 31.5,-90.5 parent: 6747 -- proto: SignDrones - entities: - - uid: 11134 - components: - - type: Transform - pos: 70.5,19.5 - parent: 6747 - proto: SignElectricalMed entities: - uid: 6878 @@ -149076,8 +149060,6 @@ entities: - type: Transform pos: -12.5,-19.5 parent: 6747 -- proto: SignHydro3 - entities: - uid: 2662 components: - type: Transform @@ -149099,6 +149081,16 @@ entities: parent: 6747 - proto: SignLawyer entities: + - uid: 6079 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 6747 + - uid: 8205 + components: + - type: Transform + pos: -3.5,-47.5 + parent: 6747 - uid: 27084 components: - type: Transform @@ -149123,6 +149115,13 @@ entities: - type: Transform pos: 30.5,14.5 parent: 6747 +- proto: SignMaterials + entities: + - uid: 11134 + components: + - type: Transform + pos: 70.5,19.5 + parent: 6747 - proto: SignMedical entities: - uid: 3665 @@ -149270,19 +149269,15 @@ entities: - type: Transform pos: 23.5,-48.5 parent: 6747 -- proto: SignScience1 - entities: - - uid: 8912 + - uid: 8911 components: - type: Transform - pos: 8.5,-61.5 + pos: 17.5,-61.5 parent: 6747 -- proto: SignScience2 - entities: - - uid: 8911 + - uid: 8912 components: - type: Transform - pos: 17.5,-61.5 + pos: 8.5,-61.5 parent: 6747 - proto: SignSec entities: @@ -149320,17 +149315,15 @@ entities: parent: 6747 - proto: SignToxins entities: - - uid: 16791 + - uid: 16790 components: - type: Transform - pos: 6.5,-74.5 + pos: 3.5,-74.5 parent: 6747 -- proto: SignToxins2 - entities: - - uid: 16790 + - uid: 16791 components: - type: Transform - pos: 3.5,-74.5 + pos: 6.5,-74.5 parent: 6747 - proto: SilverDoor entities: @@ -149613,7 +149606,7 @@ entities: - type: Transform pos: -35.5,-11.5 parent: 6747 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 1826 components: @@ -150773,6 +150766,23 @@ entities: - type: Transform pos: 31.5,-61.5 parent: 6747 +- proto: SpawnPointAdminAssistant + entities: + - uid: 27820 + components: + - type: Transform + pos: -25.5,-55.5 + parent: 6747 + - uid: 27821 + components: + - type: Transform + pos: -24.5,-55.5 + parent: 6747 + - uid: 27822 + components: + - type: Transform + pos: -26.5,-55.5 + parent: 6747 - proto: SpawnPointAtmos entities: - uid: 17076 @@ -150812,6 +150822,13 @@ entities: - type: Transform pos: -18.5,-37.5 parent: 6747 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 27819 + components: + - type: Transform + pos: -24.5,-51.5 + parent: 6747 - proto: SpawnPointBorg entities: - uid: 6895 @@ -151264,6 +151281,13 @@ entities: - type: Transform pos: 35.5,-6.5 parent: 6747 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 27818 + components: + - type: Transform + pos: -26.5,-51.5 + parent: 6747 - proto: SpawnPointObserver entities: - uid: 12922 @@ -157103,13 +157127,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.534996,-73.55089 parent: 6747 -- proto: ToyAi - entities: - - uid: 4984 - components: - - type: Transform - pos: -13.014382,-57.852844 - parent: 6747 - proto: ToyFigurinePassenger entities: - uid: 6560 diff --git a/Resources/Maps/asterisk.yml b/Resources/Maps/asterisk.yml index bfd8a71261dba7..0bd34d57884a93 100644 --- a/Resources/Maps/asterisk.yml +++ b/Resources/Maps/asterisk.yml @@ -57,6 +57,7 @@ entities: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: PhysicsMap - type: GridTree - type: MovedGrids @@ -84,8 +85,10 @@ entities: - 0 - 0 - type: Gravity - enabled: true - inherent: true + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + inherent: True + enabled: True - type: LoadedMap - uid: 2 components: @@ -94,8 +97,8 @@ entities: pos: -0.5104167,-0.4739367 parent: 1 - type: PassiveDampening - linearDampening: 1 angularDampening: 1 + linearDampening: 1 - type: MapGrid chunks: 0,0: @@ -3279,8 +3282,6 @@ entities: - type: DeviceList devices: - 2046 - - type: AtmosDevice - joinedGrid: 2 - uid: 2603 components: - type: Transform @@ -3305,8 +3306,6 @@ entities: - 9802 - 9803 - 9804 - - type: AtmosDevice - joinedGrid: 2 - uid: 3401 components: - type: Transform @@ -3320,8 +3319,6 @@ entities: - 3714 - 7534 - 7509 - - type: AtmosDevice - joinedGrid: 2 - uid: 9714 components: - type: Transform @@ -3342,8 +3339,6 @@ entities: - 9862 - 9873 - 9874 - - type: AtmosDevice - joinedGrid: 2 - uid: 9715 components: - type: Transform @@ -3361,8 +3356,6 @@ entities: - 7612 - 9867 - 9866 - - type: AtmosDevice - joinedGrid: 2 - uid: 9768 components: - type: Transform @@ -3381,8 +3374,6 @@ entities: - 3714 - 7533 - 7508 - - type: AtmosDevice - joinedGrid: 2 - uid: 9779 components: - type: Transform @@ -3409,8 +3400,6 @@ entities: - 8191 - 7668 - 7669 - - type: AtmosDevice - joinedGrid: 2 - uid: 9786 components: - type: Transform @@ -3430,8 +3419,6 @@ entities: - 9780 - 9781 - 9787 - - type: AtmosDevice - joinedGrid: 2 - uid: 9788 components: - type: Transform @@ -3446,8 +3433,6 @@ entities: - 9781 - 9789 - 9501 - - type: AtmosDevice - joinedGrid: 2 - uid: 9796 components: - type: Transform @@ -3476,8 +3461,6 @@ entities: - 9790 - 7141 - 3782 - - type: AtmosDevice - joinedGrid: 2 - uid: 9811 components: - type: Transform @@ -3497,8 +3480,6 @@ entities: - 9808 - 9804 - 7134 - - type: AtmosDevice - joinedGrid: 2 - uid: 9812 components: - type: Transform @@ -3510,8 +3491,6 @@ entities: - 7156 - 7180 - 9810 - - type: AtmosDevice - joinedGrid: 2 - uid: 9813 components: - type: Transform @@ -3526,8 +3505,6 @@ entities: - 9794 - 9815 - 9814 - - type: AtmosDevice - joinedGrid: 2 - uid: 9816 components: - type: Transform @@ -3545,15 +3522,11 @@ entities: - 9797 - 7270 - 7243 - - type: AtmosDevice - joinedGrid: 2 - uid: 9822 components: - type: Transform pos: 24.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9836 components: - type: Transform @@ -3572,8 +3545,6 @@ entities: - 9830 - 9832 - 9833 - - type: AtmosDevice - joinedGrid: 2 - uid: 9837 components: - type: Transform @@ -3597,8 +3568,6 @@ entities: - 9838 - 7374 - 7407 - - type: AtmosDevice - joinedGrid: 2 - uid: 9842 components: - type: Transform @@ -3616,8 +3585,6 @@ entities: - 7386 - 7442 - 7443 - - type: AtmosDevice - joinedGrid: 2 - uid: 9845 components: - type: Transform @@ -3633,8 +3600,6 @@ entities: - 9846 - 9847 - 10856 - - type: AtmosDevice - joinedGrid: 2 - uid: 9853 components: - type: Transform @@ -3652,8 +3617,6 @@ entities: - 9848 - 9849 - 10856 - - type: AtmosDevice - joinedGrid: 2 - uid: 9854 components: - type: Transform @@ -3670,8 +3633,6 @@ entities: - 9861 - 8357 - 7565 - - type: AtmosDevice - joinedGrid: 2 - uid: 9864 components: - type: Transform @@ -3689,8 +3650,6 @@ entities: - 8300 - 8342 - 7566 - - type: AtmosDevice - joinedGrid: 2 - uid: 9877 components: - type: Transform @@ -3711,8 +3670,6 @@ entities: - 7786 - 8295 - 9875 - - type: AtmosDevice - joinedGrid: 2 - uid: 9884 components: - type: Transform @@ -3728,8 +3685,6 @@ entities: - 9466 - 9467 - 9468 - - type: AtmosDevice - joinedGrid: 2 - uid: 9890 components: - type: Transform @@ -3747,8 +3702,6 @@ entities: - 11153 - 2587 - 1172 - - type: AtmosDevice - joinedGrid: 2 - uid: 9891 components: - type: Transform @@ -3765,8 +3718,6 @@ entities: - 7727 - 8275 - 9879 - - type: AtmosDevice - joinedGrid: 2 - uid: 9894 components: - type: Transform @@ -3778,16 +3729,12 @@ entities: - 8681 - 9893 - 9892 - - type: AtmosDevice - joinedGrid: 2 - uid: 9895 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9903 components: - type: Transform @@ -3804,8 +3751,6 @@ entities: - 7853 - 9919 - 9920 - - type: AtmosDevice - joinedGrid: 2 - uid: 9904 components: - type: Transform @@ -3816,8 +3761,6 @@ entities: devices: - 7127 - 7129 - - type: AtmosDevice - joinedGrid: 2 - uid: 9910 components: - type: Transform @@ -3839,8 +3782,6 @@ entities: - 7908 - 9154 - 9907 - - type: AtmosDevice - joinedGrid: 2 - uid: 9915 components: - type: Transform @@ -3863,8 +3804,6 @@ entities: - 9875 - 9917 - 9918 - - type: AtmosDevice - joinedGrid: 2 - uid: 9927 components: - type: Transform @@ -3893,8 +3832,6 @@ entities: - 9931 - 7967 - 8513 - - type: AtmosDevice - joinedGrid: 2 - uid: 9932 components: - type: Transform @@ -3922,8 +3859,6 @@ entities: - 8525 - 9931 - 9930 - - type: AtmosDevice - joinedGrid: 2 - uid: 9943 components: - type: Transform @@ -3947,8 +3882,6 @@ entities: - 9942 - 9940 - 9939 - - type: AtmosDevice - joinedGrid: 2 - uid: 9946 components: - type: Transform @@ -3965,8 +3898,6 @@ entities: - 8007 - 9934 - 9935 - - type: AtmosDevice - joinedGrid: 2 - uid: 9951 components: - type: Transform @@ -3979,8 +3910,6 @@ entities: - 9948 - 9949 - 9955 - - type: AtmosDevice - joinedGrid: 2 - uid: 9952 components: - type: Transform @@ -4009,8 +3938,6 @@ entities: - 7929 - 9948 - 9949 - - type: AtmosDevice - joinedGrid: 2 - uid: 9956 components: - type: Transform @@ -4023,8 +3950,6 @@ entities: - 9950 - 7927 - 9955 - - type: AtmosDevice - joinedGrid: 2 - uid: 9958 components: - type: Transform @@ -4042,8 +3967,6 @@ entities: - 7301 - 7302 - 8152 - - type: AtmosDevice - joinedGrid: 2 - uid: 9961 components: - type: Transform @@ -4059,8 +3982,6 @@ entities: - 9414 - 8144 - 9415 - - type: AtmosDevice - joinedGrid: 2 - uid: 10119 components: - type: Transform @@ -4085,8 +4006,6 @@ entities: - 9835 - 7102 - 7101 - - type: AtmosDevice - joinedGrid: 2 - uid: 10122 components: - type: Transform @@ -4109,8 +4028,6 @@ entities: - 7884 - 7890 - 8638 - - type: AtmosDevice - joinedGrid: 2 - uid: 10787 components: - type: Transform @@ -4130,8 +4047,6 @@ entities: - 453 - 9817 - 9818 - - type: AtmosDevice - joinedGrid: 2 - proto: AirCanister entities: - uid: 2502 @@ -4139,36 +4054,26 @@ entities: - type: Transform pos: 22.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 3824 components: - type: Transform pos: -24.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10210 components: - type: Transform pos: 14.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10211 components: - type: Transform pos: 19.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10214 components: - type: Transform pos: 43.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: Airlock entities: - uid: 9886 @@ -4488,6 +4393,42 @@ entities: - type: Transform pos: -19.5,-30.5 parent: 2 +- proto: AirlockExternalGlass + entities: + - uid: 8946 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 9138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-16.5 + parent: 2 + - uid: 9139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-14.5 + parent: 2 + - uid: 9140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-8.5 + parent: 2 + - uid: 9141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-6.5 + parent: 2 + - uid: 10899 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 2 - proto: AirlockExternalGlassCargoLocked entities: - uid: 1677 @@ -4564,42 +4505,6 @@ entities: - DoorStatus: DoorBolt 3011: - DoorStatus: DoorBolt -- proto: AirlockExternalGlassEasyPry - entities: - - uid: 8946 - components: - - type: Transform - pos: -9.5,-34.5 - parent: 2 - - uid: 9138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-16.5 - parent: 2 - - uid: 9139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-14.5 - parent: 2 - - uid: 9140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-8.5 - parent: 2 - - uid: 9141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-6.5 - parent: 2 - - uid: 10899 - components: - - type: Transform - pos: -7.5,-34.5 - parent: 2 - proto: AirlockExternalGlassEngineeringLocked entities: - uid: 2001 @@ -6798,8 +6703,6 @@ entities: - type: Transform pos: 20.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: Basketball entities: - uid: 3936 @@ -7495,19 +7398,19 @@ entities: - type: Transform pos: -45.5,-13.5 parent: 2 -- proto: BookChefGaming +- proto: BookEngineersHandbook entities: - - uid: 2576 + - uid: 807 components: - type: Transform - pos: -2.4693463,-19.37615 + pos: 42.23865,9.989966 parent: 2 -- proto: BookEngineersHandbook +- proto: BookHowToCookForFortySpaceman entities: - - uid: 807 + - uid: 2576 components: - type: Transform - pos: 42.23865,9.989966 + pos: -2.4693463,-19.37615 parent: 2 - proto: BookRandom entities: @@ -7778,7 +7681,6 @@ entities: solutions: bucket: temperature: 293.15 - canMix: False canReact: True maxVol: 250 name: null @@ -24701,13 +24603,6 @@ entities: rot: 3.141592653589793 rad pos: -52.429382,-21.246624 parent: 2 -- proto: chem_master - entities: - - uid: 528 - components: - - type: Transform - pos: 22.5,-17.5 - parent: 2 - proto: ChemDispenser entities: - uid: 577 @@ -24722,6 +24617,13 @@ entities: - type: Transform pos: 19.5,-17.5 parent: 2 +- proto: ChemMaster + entities: + - uid: 528 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 - proto: ChurchOrganInstrument entities: - uid: 4191 @@ -26460,8 +26362,6 @@ entities: - type: Transform pos: 19.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: d6Dice entities: - uid: 1282 @@ -29410,7 +29310,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -29429,7 +29328,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -29471,7 +29369,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 7 name: null @@ -29502,7 +29399,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 100 name: null @@ -30093,8 +29989,6 @@ entities: - 9863 - 9876 - 9875 - - type: AtmosDevice - joinedGrid: 2 - uid: 9575 components: - type: Transform @@ -30114,8 +30008,6 @@ entities: - 9770 - 9769 - 1234 - - type: AtmosDevice - joinedGrid: 2 - uid: 9576 components: - type: Transform @@ -30129,8 +30021,6 @@ entities: - 9767 - 9766 - 1234 - - type: AtmosDevice - joinedGrid: 2 - uid: 9577 components: - type: Transform @@ -30145,8 +30035,6 @@ entities: - 9861 - 9862 - 9863 - - type: AtmosDevice - joinedGrid: 2 - proto: FireAxeCabinetFilled entities: - uid: 1290 @@ -31301,7 +31189,7 @@ entities: - type: Transform pos: -9.699375,-21.57564 parent: 2 -- proto: FoodTacoRat +- proto: FoodTacoShell entities: - uid: 11099 components: @@ -31391,8 +31279,6 @@ entities: - type: Transform pos: 24.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF8800FF' - uid: 743 @@ -31402,8 +31288,6 @@ entities: - type: Transform pos: 24.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FFAA00FF' - uid: 1967 @@ -31412,8 +31296,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00AAFFFF' - uid: 2054 @@ -31421,8 +31303,6 @@ entities: - type: Transform pos: 30.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF6600FF' - uid: 2224 @@ -31431,8 +31311,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 2227 @@ -31441,8 +31319,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - proto: GasMinerNitrogenStation @@ -31453,8 +31329,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerOxygenStation entities: - uid: 755 @@ -31463,8 +31337,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMixerFlipped entities: - uid: 707 @@ -31477,8 +31349,6 @@ entities: inletTwoConcentration: 0.22000003 inletOneConcentration: 0.78 targetPressure: 500 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - proto: GasOutletInjector @@ -31488,23 +31358,17 @@ entities: - type: Transform pos: 21.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 723 components: - type: Transform pos: 23.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 2029 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0099FFFF' - uid: 2062 @@ -31512,8 +31376,6 @@ entities: - type: Transform pos: 27.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF66FFFF' - uid: 2846 @@ -31522,16 +31384,12 @@ entities: rot: 3.141592653589793 rad pos: -41.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 3813 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasPassiveGate entities: - uid: 758 @@ -31540,8 +31398,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8212 @@ -31550,8 +31406,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8962 @@ -31559,8 +31413,6 @@ entities: - type: Transform pos: -46.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - proto: GasPassiveVent @@ -31571,23 +31423,17 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 721 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 1784 components: - type: Transform pos: 26.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FFAA00FF' - uid: 2847 @@ -31596,16 +31442,12 @@ entities: rot: 3.141592653589793 rad pos: -43.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 3814 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasPipeBend entities: - uid: 428 @@ -44427,8 +44269,6 @@ entities: rot: 3.141592653589793 rad pos: 27.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF00FFFF' - uid: 765 @@ -44437,8 +44277,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF8800FF' - uid: 1929 @@ -44447,8 +44285,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 1975 @@ -44457,8 +44293,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00AAFFFF' - uid: 2002 @@ -44467,8 +44301,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00AAFFFF' - uid: 2057 @@ -44477,8 +44309,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF6600FF' - uid: 2058 @@ -44486,8 +44316,6 @@ entities: - type: Transform pos: 30.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF6600FF' - uid: 2220 @@ -44496,8 +44324,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 2842 components: - type: MetaData @@ -44506,32 +44332,24 @@ entities: - type: Transform pos: -41.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 3809 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 3810 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9520 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - proto: GasPressurePump @@ -44543,8 +44361,6 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 200 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 750 @@ -44555,8 +44371,6 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 2 - uid: 751 components: - type: Transform @@ -44565,16 +44379,12 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 2 - uid: 1963 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00AAFFFF' - uid: 1969 @@ -44583,8 +44393,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00AAFFFF' - uid: 2050 @@ -44593,8 +44401,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF6600FF' - uid: 2051 @@ -44603,8 +44409,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF6600FF' - uid: 2088 @@ -44613,8 +44417,6 @@ entities: rot: 3.141592653589793 rad pos: 27.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF00FFFF' - uid: 2229 @@ -44623,24 +44425,18 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 3811 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 3812 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4028 components: - type: MetaData @@ -44651,8 +44447,6 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 4622 @@ -44663,8 +44457,6 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - proto: GasThermoMachineFreezer @@ -44676,8 +44468,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00AAFFFF' - - type: AtmosDevice - joinedGrid: 2 - proto: GasThermoMachineFreezerEnabled entities: - uid: 631 @@ -44685,24 +44475,18 @@ entities: - type: Transform pos: 18.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4027 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 8965 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasThermoMachineHeaterEnabled entities: - uid: 741 @@ -44712,8 +44496,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0088FFFF' - - type: AtmosDevice - joinedGrid: 2 - uid: 2297 components: - type: Transform @@ -44721,8 +44503,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF6600FF' - - type: AtmosDevice - joinedGrid: 2 - proto: GasValve entities: - uid: 904 @@ -44732,8 +44512,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0099FFFF' - uid: 1962 @@ -44741,8 +44519,6 @@ entities: - type: Transform pos: 19.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00AAFFFF' - uid: 2052 @@ -44750,8 +44526,6 @@ entities: - type: Transform pos: 28.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF6600FF' - uid: 2843 @@ -44761,8 +44535,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - proto: GasVentPump entities: - uid: 1371 @@ -44770,8 +44542,6 @@ entities: - type: Transform pos: 1.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 2587 @@ -44783,8 +44553,6 @@ entities: - type: DeviceNetwork deviceLists: - 9890 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 3723 @@ -44793,8 +44561,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 3782 @@ -44803,8 +44569,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7102 @@ -44812,8 +44576,6 @@ entities: - type: Transform pos: 19.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7126 @@ -44822,8 +44584,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7173 @@ -44832,8 +44592,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7180 @@ -44842,8 +44600,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7181 @@ -44852,8 +44608,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7189 @@ -44862,8 +44616,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7196 @@ -44872,8 +44624,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7206 @@ -44882,8 +44632,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7235 @@ -44892,8 +44640,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7243 @@ -44901,8 +44647,6 @@ entities: - type: Transform pos: 31.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7244 @@ -44911,8 +44655,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7245 @@ -44921,8 +44663,6 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7255 @@ -44931,8 +44671,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7280 @@ -44941,8 +44679,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7283 @@ -44951,8 +44687,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7293 @@ -44961,8 +44695,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7301 @@ -44971,8 +44703,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7302 @@ -44981,8 +44711,6 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7303 @@ -44990,8 +44718,6 @@ entities: - type: Transform pos: 48.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7311 @@ -44999,8 +44725,6 @@ entities: - type: Transform pos: 42.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7312 @@ -45009,8 +44733,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7321 @@ -45019,8 +44741,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7329 @@ -45029,8 +44749,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7331 @@ -45039,8 +44757,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7333 @@ -45048,8 +44764,6 @@ entities: - type: Transform pos: 26.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7406 @@ -45058,8 +44772,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7407 @@ -45067,8 +44779,6 @@ entities: - type: Transform pos: 33.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7418 @@ -45076,8 +44786,6 @@ entities: - type: Transform pos: 41.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7419 @@ -45085,8 +44793,6 @@ entities: - type: Transform pos: 35.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7442 @@ -45095,8 +44801,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7443 @@ -45104,8 +44808,6 @@ entities: - type: Transform pos: 32.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7459 @@ -45114,8 +44816,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7472 @@ -45123,8 +44823,6 @@ entities: - type: Transform pos: 16.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7474 @@ -45133,8 +44831,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7482 @@ -45143,8 +44839,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7483 @@ -45152,8 +44846,6 @@ entities: - type: Transform pos: 15.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7495 @@ -45162,8 +44854,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7500 @@ -45172,8 +44862,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7505 @@ -45181,8 +44869,6 @@ entities: - type: Transform pos: 9.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7508 @@ -45191,8 +44877,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 7509 @@ -45201,8 +44885,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8171 @@ -45211,8 +44893,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8191 @@ -45220,8 +44900,6 @@ entities: - type: Transform pos: 5.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8192 @@ -45229,8 +44907,6 @@ entities: - type: Transform pos: 9.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8193 @@ -45239,8 +44915,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8205 @@ -45249,8 +44923,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8209 @@ -45258,8 +44930,6 @@ entities: - type: Transform pos: 4.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8215 @@ -45268,16 +44938,12 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 8223 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8226 @@ -45286,8 +44952,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8227 @@ -45296,8 +44960,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8241 @@ -45305,8 +44967,6 @@ entities: - type: Transform pos: 0.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8242 @@ -45315,8 +44975,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8243 @@ -45325,8 +44983,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8275 @@ -45335,8 +44991,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8295 @@ -45345,8 +44999,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8296 @@ -45354,8 +45006,6 @@ entities: - type: Transform pos: -12.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8300 @@ -45364,8 +45014,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8316 @@ -45374,8 +45022,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8323 @@ -45384,8 +45030,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8342 @@ -45394,8 +45038,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8343 @@ -45404,8 +45046,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8357 @@ -45413,8 +45053,6 @@ entities: - type: Transform pos: 1.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8365 @@ -45422,8 +45060,6 @@ entities: - type: Transform pos: 0.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8370 @@ -45432,8 +45068,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8389 @@ -45442,8 +45076,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8393 @@ -45452,8 +45084,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8402 @@ -45462,8 +45092,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8403 @@ -45472,8 +45100,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8419 @@ -45482,8 +45108,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8423 @@ -45491,8 +45115,6 @@ entities: - type: Transform pos: -28.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8424 @@ -45500,8 +45122,6 @@ entities: - type: Transform pos: -31.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8425 @@ -45509,8 +45129,6 @@ entities: - type: Transform pos: -34.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8426 @@ -45518,8 +45136,6 @@ entities: - type: Transform pos: -37.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8443 @@ -45527,8 +45143,6 @@ entities: - type: Transform pos: -38.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8444 @@ -45536,8 +45150,6 @@ entities: - type: Transform pos: -43.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8459 @@ -45546,8 +45158,6 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8460 @@ -45556,8 +45166,6 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8461 @@ -45565,8 +45173,6 @@ entities: - type: Transform pos: -49.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8481 @@ -45575,8 +45181,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8487 @@ -45584,8 +45188,6 @@ entities: - type: Transform pos: -36.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8489 @@ -45594,8 +45196,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8490 @@ -45603,8 +45203,6 @@ entities: - type: Transform pos: -34.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8491 @@ -45612,8 +45210,6 @@ entities: - type: Transform pos: -28.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8512 @@ -45621,8 +45217,6 @@ entities: - type: Transform pos: -23.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8513 @@ -45631,8 +45225,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8525 @@ -45641,8 +45233,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8534 @@ -45651,8 +45241,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8544 @@ -45660,8 +45248,6 @@ entities: - type: Transform pos: -28.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8549 @@ -45670,8 +45256,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8566 @@ -45679,8 +45263,6 @@ entities: - type: Transform pos: -38.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8579 @@ -45688,8 +45270,6 @@ entities: - type: Transform pos: -15.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8617 @@ -45698,8 +45278,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8618 @@ -45708,8 +45286,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8621 @@ -45718,8 +45294,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8638 @@ -45728,8 +45302,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8639 @@ -45738,8 +45310,6 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8640 @@ -45748,8 +45318,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8641 @@ -45758,8 +45326,6 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8665 @@ -45767,8 +45333,6 @@ entities: - type: Transform pos: -19.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8667 @@ -45776,8 +45340,6 @@ entities: - type: Transform pos: -16.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8679 @@ -45786,8 +45348,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8681 @@ -45796,8 +45356,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8688 @@ -45806,8 +45364,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8692 @@ -45816,8 +45372,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8698 @@ -45826,8 +45380,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8700 @@ -45836,8 +45388,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8705 @@ -45846,8 +45396,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8754 @@ -45855,8 +45403,6 @@ entities: - type: Transform pos: 5.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8773 @@ -45864,8 +45410,6 @@ entities: - type: Transform pos: 19.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8789 @@ -45873,8 +45417,6 @@ entities: - type: Transform pos: 12.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8794 @@ -45882,8 +45424,6 @@ entities: - type: Transform pos: 14.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8951 @@ -45892,8 +45432,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8961 @@ -45901,8 +45439,6 @@ entities: - type: Transform pos: -52.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 8963 @@ -45911,16 +45447,12 @@ entities: rot: 3.141592653589793 rad pos: -46.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 8968 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 9153 @@ -45928,8 +45460,6 @@ entities: - type: Transform pos: -36.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 9154 @@ -45938,8 +45468,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 9161 @@ -45948,8 +45476,6 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 9167 @@ -45957,8 +45483,6 @@ entities: - type: Transform pos: -47.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 9173 @@ -45967,8 +45491,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 9247 @@ -45977,8 +45499,6 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 9414 @@ -45987,8 +45507,6 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 9415 @@ -45997,8 +45515,6 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 9954 @@ -46007,8 +45523,6 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 10116 @@ -46016,8 +45530,6 @@ entities: - type: Transform pos: 25.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 10117 @@ -46026,8 +45538,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - uid: 10860 @@ -46036,8 +45546,6 @@ entities: rot: 3.141592653589793 rad pos: -15.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0088FFFF' - proto: GasVentScrubber @@ -46051,8 +45559,6 @@ entities: - type: DeviceNetwork deviceLists: - 9890 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 2844 @@ -46060,8 +45566,6 @@ entities: - type: Transform pos: 11.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 3974 @@ -46070,8 +45574,6 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7066 @@ -46080,8 +45582,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7067 @@ -46089,8 +45589,6 @@ entities: - type: Transform pos: 15.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7068 @@ -46098,8 +45596,6 @@ entities: - type: Transform pos: 22.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7071 @@ -46108,8 +45604,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7072 @@ -46117,8 +45611,6 @@ entities: - type: Transform pos: 30.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7091 @@ -46127,8 +45619,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7101 @@ -46137,8 +45627,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7108 @@ -46147,8 +45635,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7111 @@ -46157,8 +45643,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7112 @@ -46167,8 +45651,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7134 @@ -46177,8 +45659,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7141 @@ -46187,8 +45667,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7156 @@ -46197,8 +45675,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7207 @@ -46207,8 +45683,6 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7209 @@ -46217,8 +45691,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7213 @@ -46227,8 +45699,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7250 @@ -46237,8 +45707,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7254 @@ -46246,8 +45714,6 @@ entities: - type: Transform pos: 25.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7270 @@ -46256,8 +45722,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7271 @@ -46266,8 +45730,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7289 @@ -46275,8 +45737,6 @@ entities: - type: Transform pos: 40.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7339 @@ -46285,8 +45745,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF8800FF' - uid: 7344 @@ -46295,8 +45753,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7345 @@ -46305,8 +45761,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7346 @@ -46315,8 +45769,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7355 @@ -46325,8 +45777,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7356 @@ -46334,8 +45784,6 @@ entities: - type: Transform pos: 34.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7374 @@ -46343,8 +45791,6 @@ entities: - type: Transform pos: 36.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7385 @@ -46353,8 +45799,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7386 @@ -46362,8 +45806,6 @@ entities: - type: Transform pos: 31.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7533 @@ -46372,8 +45814,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7534 @@ -46382,8 +45822,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7535 @@ -46391,8 +45829,6 @@ entities: - type: Transform pos: 8.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7544 @@ -46400,8 +45836,6 @@ entities: - type: Transform pos: 6.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7565 @@ -46410,8 +45844,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7566 @@ -46419,8 +45851,6 @@ entities: - type: Transform pos: 0.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7568 @@ -46428,8 +45858,6 @@ entities: - type: Transform pos: 0.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7587 @@ -46437,8 +45865,6 @@ entities: - type: Transform pos: 4.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7588 @@ -46447,8 +45873,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7597 @@ -46457,8 +45881,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7610 @@ -46467,8 +45889,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7611 @@ -46477,8 +45897,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7612 @@ -46487,8 +45905,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7613 @@ -46497,8 +45913,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7629 @@ -46507,8 +45921,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7637 @@ -46516,8 +45928,6 @@ entities: - type: Transform pos: -7.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7643 @@ -46526,8 +45936,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7648 @@ -46536,8 +45944,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7663 @@ -46546,8 +45952,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7666 @@ -46556,8 +45960,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7668 @@ -46566,8 +45968,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7669 @@ -46576,8 +45976,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7682 @@ -46585,8 +45983,6 @@ entities: - type: Transform pos: -0.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7699 @@ -46594,8 +45990,6 @@ entities: - type: Transform pos: 12.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7705 @@ -46604,8 +45998,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7706 @@ -46613,8 +46005,6 @@ entities: - type: Transform pos: 5.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7708 @@ -46623,8 +46013,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7719 @@ -46632,8 +46020,6 @@ entities: - type: Transform pos: -3.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7720 @@ -46642,8 +46028,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7727 @@ -46652,8 +46036,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7774 @@ -46662,8 +46044,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7775 @@ -46672,8 +46052,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7782 @@ -46682,8 +46060,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7785 @@ -46692,8 +46068,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7786 @@ -46702,8 +46076,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7796 @@ -46712,8 +46084,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7797 @@ -46722,8 +46092,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7852 @@ -46732,8 +46100,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7853 @@ -46742,8 +46108,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7854 @@ -46752,8 +46116,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7855 @@ -46762,8 +46124,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7876 @@ -46772,8 +46132,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7884 @@ -46782,8 +46140,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7885 @@ -46791,8 +46147,6 @@ entities: - type: Transform pos: -28.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7890 @@ -46801,8 +46155,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7897 @@ -46811,8 +46163,6 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7898 @@ -46821,8 +46171,6 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7908 @@ -46831,8 +46179,6 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7913 @@ -46841,8 +46187,6 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7927 @@ -46851,8 +46195,6 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7929 @@ -46861,8 +46203,6 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7930 @@ -46871,8 +46211,6 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7933 @@ -46880,8 +46218,6 @@ entities: - type: Transform pos: -39.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7951 @@ -46890,8 +46226,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7952 @@ -46900,8 +46234,6 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7955 @@ -46910,8 +46242,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7963 @@ -46920,8 +46250,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7967 @@ -46929,8 +46257,6 @@ entities: - type: Transform pos: -23.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7977 @@ -46939,8 +46265,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7978 @@ -46949,8 +46273,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7979 @@ -46958,8 +46280,6 @@ entities: - type: Transform pos: -37.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 7981 @@ -46968,8 +46288,6 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8007 @@ -46977,8 +46295,6 @@ entities: - type: Transform pos: -43.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8010 @@ -46987,8 +46303,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8011 @@ -46997,8 +46311,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8021 @@ -47006,8 +46318,6 @@ entities: - type: Transform pos: -52.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8022 @@ -47016,8 +46326,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8045 @@ -47025,8 +46333,6 @@ entities: - type: Transform pos: -36.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8046 @@ -47034,8 +46340,6 @@ entities: - type: Transform pos: -33.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8047 @@ -47043,8 +46347,6 @@ entities: - type: Transform pos: -30.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8048 @@ -47052,8 +46354,6 @@ entities: - type: Transform pos: -27.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8058 @@ -47062,8 +46362,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8059 @@ -47072,8 +46370,6 @@ entities: rot: 3.141592653589793 rad pos: -36.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8062 @@ -47082,8 +46378,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8078 @@ -47091,8 +46385,6 @@ entities: - type: Transform pos: -19.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8090 @@ -47101,8 +46393,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8095 @@ -47110,8 +46400,6 @@ entities: - type: Transform pos: -13.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8108 @@ -47120,8 +46408,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8111 @@ -47130,8 +46416,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8113 @@ -47139,8 +46423,6 @@ entities: - type: Transform pos: 0.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8117 @@ -47148,8 +46430,6 @@ entities: - type: Transform pos: 5.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8118 @@ -47157,8 +46437,6 @@ entities: - type: Transform pos: 42.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8144 @@ -47167,8 +46445,6 @@ entities: rot: 3.141592653589793 rad pos: 45.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8149 @@ -47176,8 +46452,6 @@ entities: - type: Transform pos: 49.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8151 @@ -47186,8 +46460,6 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8152 @@ -47196,8 +46468,6 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8157 @@ -47206,8 +46476,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8409 @@ -47216,8 +46484,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8952 @@ -47226,8 +46492,6 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8967 @@ -47236,8 +46500,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8969 @@ -47246,8 +46508,6 @@ entities: rot: 3.141592653589793 rad pos: -14.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 8970 @@ -47256,8 +46516,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 9111 @@ -47266,8 +46524,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 9162 @@ -47276,8 +46532,6 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 9166 @@ -47286,8 +46540,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 9295 @@ -47296,8 +46548,6 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 9297 @@ -47306,8 +46556,6 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 9501 @@ -47315,8 +46563,6 @@ entities: - type: Transform pos: 16.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 10384 @@ -47325,8 +46571,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - uid: 10870 @@ -47335,8 +46579,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF9900FF' - proto: GasVolumePump @@ -47347,8 +46589,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00AAFFFF' - uid: 1995 @@ -47356,8 +46596,6 @@ entities: - type: Transform pos: 25.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF6600FF' - uid: 1999 @@ -47366,8 +46604,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00AAFFFF' - uid: 2028 @@ -47376,8 +46612,6 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF6600FF' - proto: Gauze @@ -49693,8 +48927,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00AAFFFF' - uid: 966 @@ -49703,8 +48935,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00AAFFFF' - uid: 2033 @@ -49712,8 +48942,6 @@ entities: - type: Transform pos: 26.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF6600FF' - uid: 2034 @@ -49721,8 +48949,6 @@ entities: - type: Transform pos: 28.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF6600FF' - uid: 2039 @@ -49730,8 +48956,6 @@ entities: - type: Transform pos: 28.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF6600FF' - uid: 2044 @@ -49739,8 +48963,6 @@ entities: - type: Transform pos: 26.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF6600FF' - uid: 10220 @@ -49749,8 +48971,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00AAFFFF' - proto: HighSecCommandLocked @@ -50948,6 +50168,13 @@ entities: - type: Transform pos: -11.5,0.5 parent: 2 +- proto: MaterialSilo + entities: + - uid: 11182 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 - proto: MedalCase entities: - uid: 10228 @@ -51226,8 +50453,6 @@ entities: - type: Transform pos: -18.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: NitrousOxideCanister entities: - uid: 1320 @@ -51235,8 +50460,6 @@ entities: - type: Transform pos: -44.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: NuclearBombUnanchored entities: - uid: 2349 @@ -51256,7 +50479,7 @@ entities: - type: Transform pos: -19.5,-23.5 parent: 2 -- proto: Oracle +- proto: OracleSpawner entities: - uid: 2363 components: @@ -51284,64 +50507,46 @@ entities: - type: Transform pos: 31.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 3084 components: - type: Transform pos: 31.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 3091 components: - type: Transform pos: 20.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 3258 components: - type: Transform pos: 26.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 3382 components: - type: Transform pos: -17.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4209 components: - type: Transform pos: 34.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5384 components: - type: Transform pos: -43.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10212 components: - type: Transform pos: 42.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10232 components: - type: Transform pos: 40.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: PaintingBlunt entities: - uid: 4633 @@ -51521,22 +50726,16 @@ entities: - type: Transform pos: 33.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 2174 components: - type: Transform pos: 31.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 2914 components: - type: Transform pos: 26.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: PlasmaTankFilled entities: - uid: 808 @@ -57177,18 +56376,6 @@ entities: - type: Transform pos: 44.5,-7.5 parent: 2 -- proto: SignCourt - entities: - - uid: 1575 - components: - - type: Transform - pos: -32.5,3.5 - parent: 2 - - uid: 11006 - components: - - type: Transform - pos: -27.5,-1.5 - parent: 2 - proto: SignCryogenicsMed entities: - uid: 2064 @@ -57415,13 +56602,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,3.5 parent: 2 -- proto: SignDrones - entities: - - uid: 2943 - components: - - type: Transform - pos: 31.5,17.5 - parent: 2 - proto: SignEngineering entities: - uid: 438 @@ -57491,7 +56671,7 @@ entities: - type: Transform pos: 35.5,10.5 parent: 2 -- proto: SignHydro2 +- proto: SignHydro1 entities: - uid: 693 components: @@ -57514,6 +56694,16 @@ entities: parent: 2 - proto: SignLawyer entities: + - uid: 1575 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - uid: 11006 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 - uid: 11007 components: - type: Transform @@ -57531,6 +56721,13 @@ entities: - type: Transform pos: 1.5,15.5 parent: 2 +- proto: SignMaterials + entities: + - uid: 2943 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 - proto: SignMedical entities: - uid: 583 @@ -57551,13 +56748,6 @@ entities: - type: Transform pos: -26.5,15.5 parent: 2 -- proto: SignMinerDock - entities: - - uid: 10110 - components: - - type: Transform - pos: 19.5,29.5 - parent: 2 - proto: SignMorgue entities: - uid: 2423 @@ -57603,6 +56793,11 @@ entities: parent: 2 - proto: SignShipDock entities: + - uid: 10110 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 - uid: 10112 components: - type: Transform @@ -57713,7 +56908,7 @@ entities: - type: Transform pos: 18.5,10.5 parent: 2 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 321 components: @@ -57743,7 +56938,7 @@ entities: - type: Transform pos: 52.5,19.5 parent: 2 -- proto: SolarAssemblyPart +- proto: SolarAssemblyFlatpack entities: - uid: 3224 components: @@ -57934,7 +57129,7 @@ entities: - type: Transform pos: 53.5,5.5 parent: 2 -- proto: SophicScribe +- proto: SophicScribeSpawner entities: - uid: 8973 components: @@ -58135,6 +57330,18 @@ entities: - type: Transform pos: -35.5,-21.5 parent: 2 +- proto: SpawnPointAdminAssistant + entities: + - uid: 11183 + components: + - type: Transform + pos: 49.5,-12.5 + parent: 2 + - uid: 11184 + components: + - type: Transform + pos: 46.5,-12.5 + parent: 2 - proto: SpawnPointAtmos entities: - uid: 10897 @@ -58159,6 +57366,13 @@ entities: - type: Transform pos: 12.5,-23.5 parent: 2 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 11185 + components: + - type: Transform + pos: 49.5,-11.5 + parent: 2 - proto: SpawnPointBorg entities: - uid: 9986 @@ -58502,6 +57716,13 @@ entities: - type: Transform pos: 2.5,-28.5 parent: 2 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 11186 + components: + - type: Transform + pos: 49.5,-9.5 + parent: 2 - proto: SpawnPointObserver entities: - uid: 6851 @@ -59088,29 +58309,21 @@ entities: - type: Transform pos: 16.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 3260 components: - type: Transform pos: 16.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4623 components: - type: Transform pos: 17.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 8921 components: - type: Transform pos: -24.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: Stunbaton entities: - uid: 10805 @@ -61373,8 +60586,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: TegCirculator entities: - uid: 1992 diff --git a/Resources/Maps/core.yml b/Resources/Maps/core.yml index fcea47a9e307ae..40ab7beceedc56 100644 --- a/Resources/Maps/core.yml +++ b/Resources/Maps/core.yml @@ -372,20 +372,20 @@ entities: color: '#32CD32FF' id: Arrows decals: - 1653: 53,14 + 1647: 53,14 - node: angle: 1.5707963267948966 rad color: '#32CD32FF' id: Arrows decals: - 1654: 55,14 + 1648: 55,14 - node: angle: 4.71238898038469 rad color: '#DE3A3A96' id: Arrows decals: - 1140: 3,31 - 1141: 3,30 + 1134: 3,31 + 1135: 3,30 - node: angle: 1.5707963267948966 rad color: '#EFB34196' @@ -398,174 +398,174 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 6777: 46,14 + 6743: 46,14 - node: color: '#FFFFFFFF' id: Arrows decals: - 1796: 69,-28 - 1797: 70,-28 - 5886: -44.266167,24.17379 - 5887: -43.71579,24.16156 - 6549: 7.80612,-46.838108 - 6550: 8.233204,-46.827694 - 6772: 43.669937,12.024849 - 6773: 43.669937,12.431099 - 6774: 44.341812,12.009224 - 6775: 44.341812,12.399849 + 1790: 69,-28 + 1791: 70,-28 + 5875: -44.266167,24.17379 + 5876: -43.71579,24.16156 + 6515: 7.80612,-46.838108 + 6516: 8.233204,-46.827694 + 6738: 43.669937,12.024849 + 6739: 43.669937,12.431099 + 6740: 44.341812,12.009224 + 6741: 44.341812,12.399849 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 347: 44,-22 - 1214: 22,15 - 1271: -18,28 - 1692: 62,-25 - 1693: 62,-24 - 1834: 61,-18 - 1835: 61,-20 - 1859: 22,-38 - 1860: 22,-37 - 5884: -45.159,22.681658 - 5885: -45.17123,23.256496 + 341: 44,-22 + 1208: 22,15 + 1265: -18,28 + 1686: 62,-25 + 1687: 62,-24 + 1828: 61,-18 + 1829: 61,-20 + 1853: 22,-38 + 1854: 22,-37 + 5873: -45.159,22.681658 + 5874: -45.17123,23.256496 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 2837: -25,37 + 2831: -25,37 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 1218: 25,23 - 1219: 29,23 - 1717: 68.96644,-11.160069 - 1718: 69.96644,-11.15081 - 1719: 67.97107,-11.15544 - 5882: -43.71579,21.837746 - 5883: -44.32732,21.837746 - 6373: -33,-12 + 1212: 25,23 + 1213: 29,23 + 1711: 68.96644,-11.160069 + 1712: 69.96644,-11.15081 + 1713: 67.97107,-11.15544 + 5871: -43.71579,21.837746 + 5872: -44.32732,21.837746 + 6339: -33,-12 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Arrows decals: - 1217: 25,12 - 5880: -42.87188,22.669428 - 5881: -42.85965,23.219805 + 1211: 25,12 + 5869: -42.87188,22.669428 + 5870: -42.85965,23.219805 - node: color: '#FFFFFFFF' id: Basalt1 decals: - 306: 26,-21 - 2109: 26,1 + 300: 26,-21 + 2103: 26,1 - node: cleanable: True color: '#FFFFFFFF' id: Basalt1 decals: - 2878: 80.98914,-5.89228 + 2872: 80.98914,-5.89228 - node: color: '#FFFFFFFF' id: Basalt2 decals: - 310: 25,-24 + 304: 25,-24 - node: cleanable: True color: '#FFFFFFFF' id: Basalt2 decals: - 2880: 79.36655,-6.805498 + 2874: 79.36655,-6.805498 - node: color: '#FFFFFFFF' id: Basalt3 decals: - 309: 26,-24 - 1666: 57,19 + 303: 26,-24 + 1660: 57,19 - node: cleanable: True color: '#FFFFFFFF' id: Basalt3 decals: - 2877: 80.410225,-6.9767265 + 2871: 80.410225,-6.9767265 - node: color: '#FFFFFFFF' id: Basalt4 decals: - 312: 26,-24 - 886: -48,-27 + 306: 26,-24 + 880: -48,-27 - node: color: '#FFFFFFFF' id: Basalt5 decals: - 308: 26,-22 - 311: 25,-23 - 885: -48,-28 - 2110: 25,1 + 302: 26,-22 + 305: 25,-23 + 879: -48,-28 + 2104: 25,1 - node: color: '#FFFFFFFF' id: Basalt6 decals: - 884: -48,-29 + 878: -48,-29 - node: color: '#FFFFFFFF' id: Basalt7 decals: - 307: 25,-22 - 883: -49,-29 - 1667: 57,18 + 301: 25,-22 + 877: -49,-29 + 1661: 57,18 - node: cleanable: True color: '#FFFFFFFF' id: Basalt7 decals: - 2879: 80.88314,-7.8817906 + 2873: 80.88314,-7.8817906 - node: color: '#FFFFFFFF' id: Basalt8 decals: 33: -4,-12 - 887: -47,-30 + 881: -47,-30 - node: color: '#FFFFFFFF' id: Basalt9 decals: 32: -5,-12 - 305: 25,-21 + 299: 25,-21 - node: cleanable: True color: '#FFFFFFFF' id: Basalt9 decals: - 2881: 79.17086,-7.824714 + 2875: 79.17086,-7.824714 - node: color: '#D4D4D428' id: Bot decals: - 2064: -36,-58 - 2065: -36,-59 - 2066: -36,-60 - 2067: -36,-61 - 2068: -36,-62 - 2069: -36,-63 - 2070: -36,-64 - 2071: -60,-58 - 2072: -60,-59 - 2073: -60,-60 - 2074: -60,-61 - 2075: -60,-62 - 2076: -60,-63 - 2077: -60,-64 + 2058: -36,-58 + 2059: -36,-59 + 2060: -36,-60 + 2061: -36,-61 + 2062: -36,-62 + 2063: -36,-63 + 2064: -36,-64 + 2065: -60,-58 + 2066: -60,-59 + 2067: -60,-60 + 2068: -60,-61 + 2069: -60,-62 + 2070: -60,-63 + 2071: -60,-64 - node: color: '#DE3A3A41' id: Bot decals: - 6303: -38,-45 - 6304: -38,-45 + 6292: -38,-45 + 6293: -38,-45 - node: color: '#EFB34196' id: Bot @@ -599,596 +599,596 @@ entities: 153: 2,-23 182: 4,-24 183: 9,-21 - 200: 14,-26 - 201: 12,-25 - 202: 11,-25 - 203: 16,-25 - 204: 17,-25 - 235: 10,-21 - 247: 22,-17 - 248: 22,-18 - 249: 22,-19 - 250: 23,-17 - 251: 23,-18 - 252: 23,-19 - 253: 24,-17 - 254: 24,-18 - 255: 24,-19 - 256: 25,-17 - 257: 25,-19 - 258: 25,-18 - 259: 18,-15 - 260: 19,-15 - 261: 20,-15 - 262: 22,-15 - 263: 23,-15 - 264: 24,-15 - 285: 18,-21 - 286: 15,-22 - 287: 15,-21 - 6764: 41,13 - 6765: 41,12 - 6766: 41,11 - 6767: 47,11 - 6768: 45,11 - 6769: 45,12 - 6770: 43,11 - 6771: 43,12 + 194: 14,-26 + 195: 12,-25 + 196: 11,-25 + 197: 16,-25 + 198: 17,-25 + 229: 10,-21 + 241: 22,-17 + 242: 22,-18 + 243: 22,-19 + 244: 23,-17 + 245: 23,-18 + 246: 23,-19 + 247: 24,-17 + 248: 24,-18 + 249: 24,-19 + 250: 25,-17 + 251: 25,-19 + 252: 25,-18 + 253: 18,-15 + 254: 19,-15 + 255: 20,-15 + 256: 22,-15 + 257: 23,-15 + 258: 24,-15 + 279: 18,-21 + 280: 15,-22 + 281: 15,-21 + 6730: 41,13 + 6731: 41,12 + 6732: 41,11 + 6733: 47,11 + 6734: 45,11 + 6735: 45,12 + 6736: 43,11 + 6737: 43,12 - node: color: '#EFB341FF' id: Bot decals: - 224: 0,-26 - 225: -1,-26 - 288: 15,-21 - 289: 15,-22 + 218: 0,-26 + 219: -1,-26 + 282: 15,-21 + 283: 15,-22 - node: color: '#FFFFFF4A' id: Bot decals: - 6420: 18,-56 - 6421: 19,-56 + 6386: 18,-56 + 6387: 19,-56 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 1694: 63,-25 - 1695: 63,-24 - 1696: 65,-25 - 1697: 65,-24 + 1688: 63,-25 + 1689: 63,-24 + 1690: 65,-25 + 1691: 65,-24 - node: color: '#FFFFFFFF' id: Bot decals: - 304: -14,1 - 330: 22,-27 - 331: 9,-28 - 342: 45,-26 - 343: 40,-22 - 344: 41,-22 - 345: 42,-22 - 377: -21,-2 - 390: -25,21 - 409: -21,-28 - 410: -21,-27 - 411: -21,-26 - 687: -38,-34 - 688: -37,-34 - 689: -36,-34 - 732: -19,-35 - 830: -52,3 - 831: -52,-1 - 1029: 33,-3 - 1030: 34,-3 - 1054: 39,-28 - 1055: -26,-32 - 1056: 49,-22 - 1057: 35,2 - 1058: 21,21 - 1059: 34,-37 - 1060: -62,-29 - 1070: -5,31 - 1071: -6,31 - 1072: -6,32 - 1073: -5,32 - 1076: 2,26 - 1177: -1,27 - 1178: 7,30 - 1179: 7,31 - 1180: 7,32 - 1181: 7,33 - 1182: 6,33 - 1183: 2,32 - 1194: -4,48 - 1211: 23,15 - 1212: 23,13 - 1220: 23,8 - 1221: 23,7 - 1222: 23,6 - 1223: 24,6 - 1224: 24,7 - 1225: 24,8 - 1226: 25,6 - 1233: 25,7 - 1234: 25,8 - 1235: 26,20 - 1236: 25,20 - 1237: 24,20 - 1238: 24,19 - 1239: 25,19 - 1240: 28,20 - 1241: 29,20 - 1242: 30,20 - 1243: 28,19 - 1244: 29,19 - 1245: 30,19 - 1252: 29,17 - 1263: -10,34 - 1264: -9,34 - 1265: -8,34 - 1266: -7,34 - 1270: -18,25 - 1273: 33,17 - 1375: 58,-33 - 1382: 57,-35 - 1674: 61,-12 - 1675: 57,-15 - 1676: 57,-14 - 1680: 64,-24 - 1681: 64,-25 - 1714: 71,-11 - 1715: 71,-12 - 1716: 71,-13 - 1776: 63,-19 - 1781: 70,-22 - 1810: 69,-13 - 1839: 22,-39 - 1858: 22,-36 - 1899: 28,-36 - 1900: 29,-36 - 1901: 28,-47 - 1956: 12,-46 - 1957: 13,-46 - 1998: -2,-35 - 1999: -1,-35 - 2000: 3,-38 - 2001: 3,-37 - 2006: 10,-41 - 2012: 12,-38 - 2031: -6,-34 - 2032: -5,-34 - 2033: -4,-34 - 2081: 41,-10 - 2082: -23,12 - 2693: 66,-23 - 2725: -27,30 - 2738: 57,15 - 2999: 75,-13 - 3000: 75,-15 - 3005: 75,-19 - 3006: 75,-17 - 6088: 48,-10 - 6089: 51,5 - 6090: 53,10 - 6231: -36,-65 - 6232: -60,-65 - 6361: -34,-11 - 6362: -34,-10 - 6363: -32,-11 - 6364: -32,-10 - 6383: 61,-21 - 6390: -24,-42 - 6400: 3,48 - 6505: 54,-33 - 6509: 22,-59 - 6510: 15,-59 - 6513: -19,-38 - 6539: 7,-48 - 6540: 7,-49 - 6541: 9,-48 - 6542: 9,-49 - 6551: 7,-45 - 6552: 9,-45 - 6553: 76,-23 - 6554: 80,-25 - 6555: 76,-25 - 6566: 76,-23 - 6567: 58,-27 - 6568: 58,-26 - 6569: 49,17 - 6570: 50,17 - 6571: 53,17 - 6572: 54,17 - 6573: 55,17 - 6574: 69,6 - 6575: 68,4 - 6576: 69,4 - 6577: 67,0 - 6578: 65,-4 - 6579: 65,-5 - 6580: 79,-11 - 6581: 80,-11 - 6582: 81,-11 - 6583: 21,-41 - 6584: 5,-42 - 6585: 5,-43 - 6586: 5,-40 - 6587: 5,-39 - 6588: -12,-34 - 6589: -11,-34 - 6590: -10,-34 - 6591: -14,-34 - 6592: -15,-34 - 6593: -62,-32 - 6594: -63,-32 - 6595: -64,-32 - 6596: -46,-12 - 6597: -45,-12 - 6598: -41,17 - 6599: -40,17 - 6600: -39,17 - 6601: -21,31 - 6602: -20,31 - 6603: -7,38 - 6604: -6,38 - 6605: -5,38 - 6606: 3,38 - 6607: -11,17 - 6608: -10,17 - 6609: -9,17 - 6610: -12,17 - 6611: -13,17 - 6612: 1,16 - 6613: 2,16 - 6614: 3,16 - 6615: 10,16 - 6616: 11,16 - 6617: 15,4 - 6618: 17,1 - 6619: -14,-12 - 6620: -14,-11 - 6621: 39,-7 - 6622: 39,-8 - 6623: 39,-9 - 6624: 39,-10 - 6625: 39,-11 - 6626: 73,-21 - 6627: 73,-22 - 6628: 45,-10 - 6629: 45,-11 - 6630: 15,1 - 6631: -17,17 - 6632: 45,-17 - 6633: 45,-16 - 6634: 45,-15 - 6635: -37,-42 - 6636: -37,-40 - 6637: -37,-41 - 6676: -29,15 - 6749: 47,12 - 6778: 45,15 - 6820: 82,-11 - 6828: 59,-4 - 6869: -11,-40 - 6870: -12,-40 - 6919: 55,-30 - 6920: 56,-30 - 6923: 53,-24 - 6933: 65,19 - 6934: 65,21 - 6946: 26,19 - 6958: -29,-5 - 6959: -36,-5 - 6998: 39,17 - 6999: 38,17 - 7000: -1,-17 - 7001: 1,-17 - 7002: -67,-33 - 7003: -66,-33 + 298: -14,1 + 324: 22,-27 + 325: 9,-28 + 336: 45,-26 + 337: 40,-22 + 338: 41,-22 + 339: 42,-22 + 371: -21,-2 + 384: -25,21 + 403: -21,-28 + 404: -21,-27 + 405: -21,-26 + 681: -38,-34 + 682: -37,-34 + 683: -36,-34 + 726: -19,-35 + 824: -52,3 + 825: -52,-1 + 1023: 33,-3 + 1024: 34,-3 + 1048: 39,-28 + 1049: -26,-32 + 1050: 49,-22 + 1051: 35,2 + 1052: 21,21 + 1053: 34,-37 + 1054: -62,-29 + 1064: -5,31 + 1065: -6,31 + 1066: -6,32 + 1067: -5,32 + 1070: 2,26 + 1171: -1,27 + 1172: 7,30 + 1173: 7,31 + 1174: 7,32 + 1175: 7,33 + 1176: 6,33 + 1177: 2,32 + 1188: -4,48 + 1205: 23,15 + 1206: 23,13 + 1214: 23,8 + 1215: 23,7 + 1216: 23,6 + 1217: 24,6 + 1218: 24,7 + 1219: 24,8 + 1220: 25,6 + 1227: 25,7 + 1228: 25,8 + 1229: 26,20 + 1230: 25,20 + 1231: 24,20 + 1232: 24,19 + 1233: 25,19 + 1234: 28,20 + 1235: 29,20 + 1236: 30,20 + 1237: 28,19 + 1238: 29,19 + 1239: 30,19 + 1246: 29,17 + 1257: -10,34 + 1258: -9,34 + 1259: -8,34 + 1260: -7,34 + 1264: -18,25 + 1267: 33,17 + 1369: 58,-33 + 1376: 57,-35 + 1668: 61,-12 + 1669: 57,-15 + 1670: 57,-14 + 1674: 64,-24 + 1675: 64,-25 + 1708: 71,-11 + 1709: 71,-12 + 1710: 71,-13 + 1770: 63,-19 + 1775: 70,-22 + 1804: 69,-13 + 1833: 22,-39 + 1852: 22,-36 + 1893: 28,-36 + 1894: 29,-36 + 1895: 28,-47 + 1950: 12,-46 + 1951: 13,-46 + 1992: -2,-35 + 1993: -1,-35 + 1994: 3,-38 + 1995: 3,-37 + 2000: 10,-41 + 2006: 12,-38 + 2025: -6,-34 + 2026: -5,-34 + 2027: -4,-34 + 2075: 41,-10 + 2076: -23,12 + 2687: 66,-23 + 2719: -27,30 + 2732: 57,15 + 2993: 75,-13 + 2994: 75,-15 + 2999: 75,-19 + 3000: 75,-17 + 6077: 48,-10 + 6078: 51,5 + 6079: 53,10 + 6220: -36,-65 + 6221: -60,-65 + 6327: -34,-11 + 6328: -34,-10 + 6329: -32,-11 + 6330: -32,-10 + 6349: 61,-21 + 6356: -24,-42 + 6366: 3,48 + 6471: 54,-33 + 6475: 22,-59 + 6476: 15,-59 + 6479: -19,-38 + 6505: 7,-48 + 6506: 7,-49 + 6507: 9,-48 + 6508: 9,-49 + 6517: 7,-45 + 6518: 9,-45 + 6519: 76,-23 + 6520: 80,-25 + 6521: 76,-25 + 6532: 76,-23 + 6533: 58,-27 + 6534: 58,-26 + 6535: 49,17 + 6536: 50,17 + 6537: 53,17 + 6538: 54,17 + 6539: 55,17 + 6540: 69,6 + 6541: 68,4 + 6542: 69,4 + 6543: 67,0 + 6544: 65,-4 + 6545: 65,-5 + 6546: 79,-11 + 6547: 80,-11 + 6548: 81,-11 + 6549: 21,-41 + 6550: 5,-42 + 6551: 5,-43 + 6552: 5,-40 + 6553: 5,-39 + 6554: -12,-34 + 6555: -11,-34 + 6556: -10,-34 + 6557: -14,-34 + 6558: -15,-34 + 6559: -62,-32 + 6560: -63,-32 + 6561: -64,-32 + 6562: -46,-12 + 6563: -45,-12 + 6564: -41,17 + 6565: -40,17 + 6566: -39,17 + 6567: -21,31 + 6568: -20,31 + 6569: -7,38 + 6570: -6,38 + 6571: -5,38 + 6572: 3,38 + 6573: -11,17 + 6574: -10,17 + 6575: -9,17 + 6576: -12,17 + 6577: -13,17 + 6578: 1,16 + 6579: 2,16 + 6580: 3,16 + 6581: 10,16 + 6582: 11,16 + 6583: 15,4 + 6584: 17,1 + 6585: -14,-12 + 6586: -14,-11 + 6587: 39,-7 + 6588: 39,-8 + 6589: 39,-9 + 6590: 39,-10 + 6591: 39,-11 + 6592: 73,-21 + 6593: 73,-22 + 6594: 45,-10 + 6595: 45,-11 + 6596: 15,1 + 6597: -17,17 + 6598: 45,-17 + 6599: 45,-16 + 6600: 45,-15 + 6601: -37,-42 + 6602: -37,-40 + 6603: -37,-41 + 6642: -29,15 + 6715: 47,12 + 6744: 45,15 + 6786: 82,-11 + 6794: 59,-4 + 6835: -11,-40 + 6836: -12,-40 + 6885: 55,-30 + 6886: 56,-30 + 6889: 53,-24 + 6899: 65,19 + 6900: 65,21 + 6912: 26,19 + 6924: -29,-5 + 6925: -36,-5 + 6964: 39,17 + 6965: 38,17 + 6966: -1,-17 + 6967: 1,-17 + 6968: -67,-33 + 6969: -66,-33 - node: cleanable: True color: '#FFFFFFFF' id: Bot decals: - 2805: -25,34 - 2806: -25,35 - 2807: -30,35 - 2808: -30,34 - 2834: -23,38 - 2835: -10,38 - 2836: -9,38 - 2882: 78,-8 - 2883: 79,-8 + 2799: -25,34 + 2800: -25,35 + 2801: -30,35 + 2802: -30,34 + 2828: -23,38 + 2829: -10,38 + 2830: -9,38 + 2876: 78,-8 + 2877: 79,-8 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Bot decals: - 6249: 91,-19 - 6250: 91,-18 - 6251: 92,-18 - 6252: 92,-19 - 6253: 87,-19 - 6254: 88,-19 - 6255: 88,-18 - 6256: 87,-18 + 6238: 91,-19 + 6239: 91,-18 + 6240: 92,-18 + 6241: 92,-19 + 6242: 87,-19 + 6243: 88,-19 + 6244: 88,-18 + 6245: 87,-18 - node: color: '#52B4E996' id: BotGreyscale decals: - 5994: 55,8 - 5995: 55,8 - 5996: 56,8 - 5997: 56,8 - 6010: 57,1 - 6011: 57,1 - 6012: 56,1 - 6013: 56,1 - 6014: 55,4 - 6015: 55,4 - 6016: 56,4 - 6017: 56,4 - 6018: 57,4 - 6019: 57,4 + 5983: 55,8 + 5984: 55,8 + 5985: 56,8 + 5986: 56,8 + 5999: 57,1 + 6000: 57,1 + 6001: 56,1 + 6002: 56,1 + 6003: 55,4 + 6004: 55,4 + 6005: 56,4 + 6006: 56,4 + 6007: 57,4 + 6008: 57,4 - node: cleanable: True color: '#D4D4D428' id: BotGreyscale decals: - 2855: 78,-30 + 2849: 78,-30 - node: color: '#EFB34196' id: BotLeft decals: - 6780: 43,14 + 6746: 43,14 - node: cleanable: True color: '#EFB341FF' id: BotLeft decals: - 5820: 6,-14 - 5822: 6,-14 + 5809: 6,-14 + 5811: 6,-14 - node: color: '#FFFFFFFF' id: BotLeft decals: - 1774: 74,-13 - 1775: 74,-12 - 1840: 23,-39 - 1841: 24,-39 - 1842: 25,-39 - 2010: 12,-39 - 6211: -3,33 - 6677: -33,12 - 6678: -34,12 - 6679: -35,12 - 6680: -35,11 - 6681: -34,11 - 6682: -33,11 - 6827: 60,-4 - 6921: 54,-24 + 1768: 74,-13 + 1769: 74,-12 + 1834: 23,-39 + 1835: 24,-39 + 1836: 25,-39 + 2004: 12,-39 + 6200: -3,33 + 6643: -33,12 + 6644: -34,12 + 6645: -35,12 + 6646: -35,11 + 6647: -34,11 + 6648: -33,11 + 6793: 60,-4 + 6887: 54,-24 - node: cleanable: True color: '#FFFFFFFF' id: BotLeft decals: - 5817: 6,-14 + 5806: 6,-14 - node: color: '#D4D4D496' id: BotLeftGreyscale decals: - 6558: 77,-30 - 6559: 76,-30 + 6524: 77,-30 + 6525: 76,-30 - node: angle: -6.283185307179586 rad color: '#EFB34196' id: BotLeftGreyscale decals: - 6291: -1,-20 - 6292: -1,-21 + 6280: -1,-20 + 6281: -1,-21 - node: cleanable: True color: '#EFB341FF' id: BotLeftGreyscale decals: - 5821: 6,-14 + 5810: 6,-14 - node: angle: -6.283185307179586 rad color: '#EFB34196' id: BotRight decals: - 6293: -2,-21 - 6294: -2,-20 + 6282: -2,-21 + 6283: -2,-20 - node: color: '#EFB34196' id: BotRight decals: - 6779: 47,14 + 6745: 47,14 - node: cleanable: True color: '#EFB341FF' id: BotRight decals: - 5823: 6,-15 + 5812: 6,-15 - node: color: '#FFFFFFFF' id: BotRight decals: - 1772: 73,-12 - 1773: 73,-13 - 1843: 23,-36 - 1844: 24,-36 - 1845: 25,-36 - 2011: 12,-40 - 6212: -3,34 - 6683: -35,16 - 6684: -34,16 - 6685: -33,16 - 6686: -33,17 - 6687: -34,17 - 6688: -35,17 - 6826: 58,-4 - 6922: 52,-24 + 1766: 73,-12 + 1767: 73,-13 + 1837: 23,-36 + 1838: 24,-36 + 1839: 25,-36 + 2005: 12,-40 + 6201: -3,34 + 6649: -35,16 + 6650: -34,16 + 6651: -33,16 + 6652: -33,17 + 6653: -34,17 + 6654: -35,17 + 6792: 58,-4 + 6888: 52,-24 - node: cleanable: True color: '#FFFFFFFF' id: BotRight decals: - 5818: 6,-15 + 5807: 6,-15 - node: color: '#D4D4D496' id: BotRightGreyscale decals: - 6556: 79,-30 - 6557: 80,-30 + 6522: 79,-30 + 6523: 80,-30 - node: cleanable: True color: '#EFB341FF' id: BotRightGreyscale decals: - 5819: 6,-15 + 5808: 6,-15 - node: color: '#EFB34196' id: Box decals: - 6776: 45,14 + 6742: 45,14 - node: color: '#FFFFFFFF' id: Box decals: - 1031: 33,0 - 1032: 34,0 - 1061: -57,-24 - 1062: -56,-24 - 1873: 19,-37 - 1874: 19,-36 - 6276: 92,-20 - 6673: -31,17 - 6674: -30,17 - 6675: -29,16 - 6689: -31,12 - 6690: -30,12 - 6691: -30,11 - 6692: -31,11 - 6742: 47,16 - 6829: 60,-8 - 6830: 61,-8 - 6924: 66,-25 - 6925: 66,-24 + 1025: 33,0 + 1026: 34,0 + 1055: -57,-24 + 1056: -56,-24 + 1867: 19,-37 + 1868: 19,-36 + 6265: 92,-20 + 6639: -31,17 + 6640: -30,17 + 6641: -29,16 + 6655: -31,12 + 6656: -30,12 + 6657: -30,11 + 6658: -31,11 + 6708: 47,16 + 6795: 60,-8 + 6796: 61,-8 + 6890: 66,-25 + 6891: 66,-24 - node: color: '#52B4E996' id: BrickCornerOverlaySW decals: - 6839: 57,-8 + 6805: 57,-8 - node: color: '#52B4E996' id: BrickLineOverlayS decals: - 6840: 58,-8 + 6806: 58,-8 - node: color: '#FFFFFFFF' id: BrickLineOverlayS decals: - 6831: 58,-5 - 6832: 59,-5 - 6833: 60,-5 + 6797: 58,-5 + 6798: 59,-5 + 6799: 60,-5 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 740: -31,-36 - 1012: 28,-29 - 1374: 58,-34 - 1789: 69,-29 - 1980: 22,-53 - 6538: 9,-48 + 734: -31,-36 + 1006: 28,-29 + 1368: 58,-34 + 1783: 69,-29 + 1974: 22,-53 + 6504: 9,-48 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: 127: 0,-21 - 739: -33,-36 - 1010: 24,-29 - 1371: 56,-34 - 1788: 70,-29 - 1983: 15,-53 - 6537: 7,-48 + 733: -33,-36 + 1004: 24,-29 + 1365: 56,-34 + 1782: 70,-29 + 1977: 15,-53 + 6503: 7,-48 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 738: -31,-38 - 939: 46,-34 - 1011: 28,-34 - 1372: 58,-36 - 1791: 69,-30 - 1958: 17,-53 - 1982: 22,-60 - 6536: 9,-49 + 732: -31,-38 + 933: 46,-34 + 1005: 28,-34 + 1366: 58,-36 + 1785: 69,-30 + 1952: 17,-53 + 1976: 22,-60 + 6502: 9,-49 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 737: -33,-38 - 938: 34,-34 - 1013: 24,-34 - 1373: 56,-36 - 1790: 70,-30 - 1959: 20,-53 - 1981: 15,-60 - 6535: 7,-49 + 731: -33,-38 + 932: 34,-34 + 1007: 24,-34 + 1367: 56,-36 + 1784: 70,-30 + 1953: 20,-53 + 1975: 15,-60 + 6501: 7,-49 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: 118: -4,-16 - 574: -39,-16 - 1097: -4,21 - 1366: 56,-36 - 1713: 70,-11 - 1768: 74,-17 - 1771: 74,-14 - 1974: 15,-60 - 1979: 22,-53 - 1986: 21,-53 - 1987: 22,-54 + 568: -39,-16 + 1091: -4,21 + 1360: 56,-36 + 1707: 70,-11 + 1762: 74,-17 + 1765: 74,-14 + 1968: 15,-60 + 1973: 22,-53 + 1980: 21,-53 + 1981: 22,-54 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: 45: -12,-19 80: -5,-15 - 228: 0,-22 - 1096: -1,21 - 1365: 58,-36 - 1712: 68,-11 - 1975: 22,-60 - 1978: 15,-53 - 1984: 16,-53 - 1985: 15,-54 + 222: 0,-22 + 1090: -1,21 + 1359: 58,-36 + 1706: 68,-11 + 1969: 22,-60 + 1972: 15,-53 + 1978: 16,-53 + 1979: 15,-54 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 573: -39,-13 - 1102: -4,27 - 1364: 56,-34 - 1769: 74,-15 - 1770: 74,-19 - 1973: 15,-53 - 1976: 22,-60 - 1988: 21,-60 + 567: -39,-13 + 1096: -4,27 + 1358: 56,-34 + 1763: 74,-15 + 1764: 74,-19 + 1967: 15,-53 + 1970: 22,-60 + 1982: 21,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: 44: -12,-14 - 450: -25,-1 - 1363: 58,-34 - 1972: 22,-53 - 1977: 15,-60 - 1989: 16,-60 + 444: -25,-1 + 1357: 58,-34 + 1966: 22,-53 + 1971: 15,-60 + 1983: 16,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -1204,94 +1204,94 @@ entities: 172: 8,-23 173: 8,-24 174: 8,-25 - 218: 10,-18 - 219: 10,-17 - 299: -15,-1 - 300: -15,0 - 301: -15,2 - 302: -15,1 - 303: -15,3 - 386: -19,17 - 387: -19,21 - 415: -20,-28 - 416: -20,-27 - 417: -20,-26 - 459: -38,1 - 460: -30,1 - 461: -38,2 - 462: -34,2 - 463: -34,1 - 470: -30,2 - 557: -39,-15 - 558: -39,-14 - 649: -41,-34 - 650: -41,-33 - 651: -41,-32 - 652: -41,-31 - 653: -41,-30 - 654: -41,-29 - 655: -41,-28 - 656: -41,-27 - 657: -41,-26 - 658: -41,-25 - 677: -37,-15 - 678: -37,-14 - 679: -34,-15 - 680: -34,-14 - 681: -31,-15 - 682: -31,-14 - 683: -28,-15 - 684: -28,-14 - 727: -27,-38 - 728: -27,-37 - 735: -32,-40 - 736: -32,-39 - 744: -31,-37 - 745: -52,-2 - 746: -52,-3 - 747: -52,4 - 748: -52,5 - 865: -48,12 - 866: -48,13 - 913: -48,9 - 914: -48,10 - 915: -46,11 - 992: 42,-34 - 996: 28,-33 - 997: 28,-32 - 998: 28,-31 - 1003: 28,-30 - 1092: -4,23 - 1093: -4,24 - 1094: -4,24 - 1095: -4,25 - 1114: -3,36 - 1115: -3,37 - 1116: -3,38 - 1187: 0,45 - 1188: 0,46 - 1189: 0,47 - 1200: 0,48 - 1360: 56,-35 - 1367: 58,-35 - 1784: 69,-30 - 1785: 69,-29 - 1836: 22,-39 - 1837: 22,-38 - 1838: 22,-37 - 1879: 27,-47 - 1880: 27,-46 - 1881: 27,-45 - 1882: 27,-44 - 1883: 27,-43 - 1884: 27,-42 - 1968: 15,-58 - 1969: 15,-57 - 1970: 15,-55 - 1971: 15,-54 - 1994: 16,-60 - 6091: 53,12 - 6092: 53,11 + 212: 10,-18 + 213: 10,-17 + 293: -15,-1 + 294: -15,0 + 295: -15,2 + 296: -15,1 + 297: -15,3 + 380: -19,17 + 381: -19,21 + 409: -20,-28 + 410: -20,-27 + 411: -20,-26 + 453: -38,1 + 454: -30,1 + 455: -38,2 + 456: -34,2 + 457: -34,1 + 464: -30,2 + 551: -39,-15 + 552: -39,-14 + 643: -41,-34 + 644: -41,-33 + 645: -41,-32 + 646: -41,-31 + 647: -41,-30 + 648: -41,-29 + 649: -41,-28 + 650: -41,-27 + 651: -41,-26 + 652: -41,-25 + 671: -37,-15 + 672: -37,-14 + 673: -34,-15 + 674: -34,-14 + 675: -31,-15 + 676: -31,-14 + 677: -28,-15 + 678: -28,-14 + 721: -27,-38 + 722: -27,-37 + 729: -32,-40 + 730: -32,-39 + 738: -31,-37 + 739: -52,-2 + 740: -52,-3 + 741: -52,4 + 742: -52,5 + 859: -48,12 + 860: -48,13 + 907: -48,9 + 908: -48,10 + 909: -46,11 + 986: 42,-34 + 990: 28,-33 + 991: 28,-32 + 992: 28,-31 + 997: 28,-30 + 1086: -4,23 + 1087: -4,24 + 1088: -4,24 + 1089: -4,25 + 1108: -3,36 + 1109: -3,37 + 1110: -3,38 + 1181: 0,45 + 1182: 0,46 + 1183: 0,47 + 1194: 0,48 + 1354: 56,-35 + 1361: 58,-35 + 1778: 69,-30 + 1779: 69,-29 + 1830: 22,-39 + 1831: 22,-38 + 1832: 22,-37 + 1873: 27,-47 + 1874: 27,-46 + 1875: 27,-45 + 1876: 27,-44 + 1877: 27,-43 + 1878: 27,-42 + 1962: 15,-58 + 1963: 15,-57 + 1964: 15,-55 + 1965: 15,-54 + 1988: 16,-60 + 6080: 53,12 + 6081: 53,11 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -1307,98 +1307,98 @@ entities: 126: 0,-21 134: -10,-27 135: -5,-27 - 226: -2,-22 - 227: -1,-22 - 241: 5,-29 - 242: 6,-29 - 243: 7,-29 - 244: 8,-29 - 245: 9,-29 - 246: 23,-22 - 546: -38,-16 - 547: -37,-16 - 548: -36,-16 - 549: -35,-16 - 550: -34,-16 - 551: -32,-16 - 552: -33,-16 - 553: -31,-16 - 554: -29,-16 - 555: -30,-16 - 556: -28,-16 - 741: -32,-36 - 926: 35,-38 - 927: 36,-38 - 928: 37,-38 - 929: 38,-38 - 930: 39,-38 - 931: 40,-38 - 932: 41,-38 - 933: 42,-38 - 934: 43,-38 - 935: 44,-38 - 959: 46,-38 - 964: 31,-35 - 965: 32,-35 - 966: 33,-35 - 967: 47,-35 - 968: 48,-35 - 969: 49,-35 - 1007: 25,-29 - 1008: 26,-29 - 1009: 27,-29 - 1026: 30,-2 - 1027: 31,-2 - 1028: 32,-2 - 1043: -46,-16 - 1044: -45,-16 - 1045: -44,-16 - 1098: -2,21 - 1099: -3,21 - 1190: -3,51 - 1191: -2,51 - 1192: 1,51 - 1193: 2,51 - 1362: 57,-36 - 1369: 57,-34 - 1420: -52,-49 - 1421: -51,-49 - 1422: -50,-49 - 1423: -48,-49 - 1424: -49,-49 - 1425: -48,-49 - 1426: -48,-49 - 1427: -47,-49 - 1428: -46,-49 - 1429: -45,-49 - 1430: -44,-49 - 1710: 67,-11 - 1711: 71,-11 - 1794: 71,-29 - 1795: 68,-29 - 1893: 28,-43 - 1894: 29,-43 - 1962: 16,-60 - 1963: 21,-60 - 1990: 15,-57 - 1991: 22,-57 - 5807: -14,-23 - 5808: -15,-23 - 5809: -16,-23 - 6264: 87,-20 - 6265: 88,-20 - 6266: 89,-20 - 6267: 90,-20 - 6268: 91,-20 - 6269: 92,-20 - 6524: 33,-2 - 6525: 34,-2 - 6532: 7,-48 - 6533: 8,-48 - 6534: 9,-48 - 6970: -32,-3 - 6971: -31,-3 - 6972: -33,-3 + 220: -2,-22 + 221: -1,-22 + 235: 5,-29 + 236: 6,-29 + 237: 7,-29 + 238: 8,-29 + 239: 9,-29 + 240: 23,-22 + 540: -38,-16 + 541: -37,-16 + 542: -36,-16 + 543: -35,-16 + 544: -34,-16 + 545: -32,-16 + 546: -33,-16 + 547: -31,-16 + 548: -29,-16 + 549: -30,-16 + 550: -28,-16 + 735: -32,-36 + 920: 35,-38 + 921: 36,-38 + 922: 37,-38 + 923: 38,-38 + 924: 39,-38 + 925: 40,-38 + 926: 41,-38 + 927: 42,-38 + 928: 43,-38 + 929: 44,-38 + 953: 46,-38 + 958: 31,-35 + 959: 32,-35 + 960: 33,-35 + 961: 47,-35 + 962: 48,-35 + 963: 49,-35 + 1001: 25,-29 + 1002: 26,-29 + 1003: 27,-29 + 1020: 30,-2 + 1021: 31,-2 + 1022: 32,-2 + 1037: -46,-16 + 1038: -45,-16 + 1039: -44,-16 + 1092: -2,21 + 1093: -3,21 + 1184: -3,51 + 1185: -2,51 + 1186: 1,51 + 1187: 2,51 + 1356: 57,-36 + 1363: 57,-34 + 1414: -52,-49 + 1415: -51,-49 + 1416: -50,-49 + 1417: -48,-49 + 1418: -49,-49 + 1419: -48,-49 + 1420: -48,-49 + 1421: -47,-49 + 1422: -46,-49 + 1423: -45,-49 + 1424: -44,-49 + 1704: 67,-11 + 1705: 71,-11 + 1788: 71,-29 + 1789: 68,-29 + 1887: 28,-43 + 1888: 29,-43 + 1956: 16,-60 + 1957: 21,-60 + 1984: 15,-57 + 1985: 22,-57 + 5796: -14,-23 + 5797: -15,-23 + 5798: -16,-23 + 6253: 87,-20 + 6254: 88,-20 + 6255: 89,-20 + 6256: 90,-20 + 6257: 91,-20 + 6258: 92,-20 + 6490: 33,-2 + 6491: 34,-2 + 6498: 7,-48 + 6499: 8,-48 + 6500: 9,-48 + 6936: -32,-3 + 6937: -31,-3 + 6938: -33,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -1413,111 +1413,111 @@ entities: 77: -4,-19 90: -10,-19 91: -4,-19 - 439: -40,-1 - 440: -39,-1 - 441: -38,-1 - 442: -36,-1 - 443: -34,-1 - 444: -33,-1 - 445: -32,-1 - 446: -31,-1 - 447: -28,-1 - 448: -27,-1 - 449: -26,-1 - 458: -37,-1 - 543: -29,-18 - 544: -30,-18 - 545: -28,-18 - 559: -38,-13 - 560: -37,-13 - 561: -35,-13 - 562: -36,-13 - 563: -35,-13 - 564: -34,-13 - 565: -33,-13 - 566: -32,-13 - 567: -31,-13 - 568: -31,-13 - 569: -30,-13 - 570: -28,-13 - 571: -28,-13 - 572: -29,-13 - 742: -32,-38 - 917: 31,-25 - 918: 32,-25 - 919: 33,-25 - 920: 47,-25 - 921: 49,-25 - 922: 48,-25 - 936: 35,-34 - 937: 45,-34 - 949: 39,-35 - 1004: 25,-34 - 1005: 26,-34 - 1006: 27,-34 - 1063: -57,-27 - 1064: -56,-27 - 1065: -55,-27 - 1066: -54,-27 - 1100: -3,27 - 1101: -2,27 - 1361: 57,-34 - 1370: 57,-36 - 1431: -56,-54 - 1432: -55,-54 - 1433: -54,-54 - 1434: -41,-54 - 1435: -40,-54 - 1792: 68,-30 - 1793: 71,-30 - 1895: 28,-46 - 1896: 29,-46 - 1960: 16,-53 - 1961: 21,-53 - 1992: 22,-55 - 1993: 15,-55 - 2017: 10,-40 - 2018: 11,-40 - 2080: -42,-54 - 5804: -14,-25 - 5805: -15,-25 - 5806: -16,-25 - 5889: -3,43 - 5890: -2,43 - 5891: -1,43 - 6065: 49,-11 - 6066: 52,-11 - 6228: -29,-17 - 6270: 87,-21 - 6271: 89,-21 - 6272: 88,-21 - 6273: 90,-21 - 6274: 91,-21 - 6275: 92,-21 - 6529: 7,-49 - 6530: 8,-49 - 6531: 9,-49 - 6955: -29,-1 - 6956: -35,-1 - 6957: -30,-1 - 6973: -34,-5 - 6974: -32,-5 - 6975: -33,-5 - 6976: -31,-5 + 433: -40,-1 + 434: -39,-1 + 435: -38,-1 + 436: -36,-1 + 437: -34,-1 + 438: -33,-1 + 439: -32,-1 + 440: -31,-1 + 441: -28,-1 + 442: -27,-1 + 443: -26,-1 + 452: -37,-1 + 537: -29,-18 + 538: -30,-18 + 539: -28,-18 + 553: -38,-13 + 554: -37,-13 + 555: -35,-13 + 556: -36,-13 + 557: -35,-13 + 558: -34,-13 + 559: -33,-13 + 560: -32,-13 + 561: -31,-13 + 562: -31,-13 + 563: -30,-13 + 564: -28,-13 + 565: -28,-13 + 566: -29,-13 + 736: -32,-38 + 911: 31,-25 + 912: 32,-25 + 913: 33,-25 + 914: 47,-25 + 915: 49,-25 + 916: 48,-25 + 930: 35,-34 + 931: 45,-34 + 943: 39,-35 + 998: 25,-34 + 999: 26,-34 + 1000: 27,-34 + 1057: -57,-27 + 1058: -56,-27 + 1059: -55,-27 + 1060: -54,-27 + 1094: -3,27 + 1095: -2,27 + 1355: 57,-34 + 1364: 57,-36 + 1425: -56,-54 + 1426: -55,-54 + 1427: -54,-54 + 1428: -41,-54 + 1429: -40,-54 + 1786: 68,-30 + 1787: 71,-30 + 1889: 28,-46 + 1890: 29,-46 + 1954: 16,-53 + 1955: 21,-53 + 1986: 22,-55 + 1987: 15,-55 + 2011: 10,-40 + 2012: 11,-40 + 2074: -42,-54 + 5793: -14,-25 + 5794: -15,-25 + 5795: -16,-25 + 5878: -3,43 + 5879: -2,43 + 5880: -1,43 + 6054: 49,-11 + 6055: 52,-11 + 6217: -29,-17 + 6259: 87,-21 + 6260: 89,-21 + 6261: 88,-21 + 6262: 90,-21 + 6263: 91,-21 + 6264: 92,-21 + 6495: 7,-49 + 6496: 8,-49 + 6497: 9,-49 + 6921: -29,-1 + 6922: -35,-1 + 6923: -30,-1 + 6939: -34,-5 + 6940: -32,-5 + 6941: -33,-5 + 6942: -31,-5 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2809: -30,36 - 2810: -29,36 - 2811: -28,36 - 2812: -27,36 - 2813: -26,36 - 2833: -30,36 - 2852: 77,-25 - 2853: 78,-25 - 2854: 79,-25 + 2803: -30,36 + 2804: -29,36 + 2805: -28,36 + 2806: -27,36 + 2807: -26,36 + 2827: -30,36 + 2846: 77,-25 + 2847: 78,-25 + 2848: 79,-25 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -1528,475 +1528,475 @@ entities: 43: -12,-15 56: -5,-14 57: -5,-14 - 325: -17,6 - 326: -17,7 - 327: -17,5 - 328: -17,6 - 329: -17,7 - 335: 42,-26 - 336: 42,-24 - 337: 42,-25 - 388: -24,17 - 389: -24,21 - 391: -18,-11 - 392: -18,-10 - 393: -18,-9 - 412: -16,-28 - 413: -16,-27 - 414: -16,-26 - 464: -38,1 - 465: -38,2 - 466: -34,1 - 467: -34,2 - 468: -30,1 - 469: -30,2 - 659: -28,-34 - 660: -28,-33 - 661: -28,-32 - 662: -28,-31 - 663: -28,-30 - 664: -28,-29 - 665: -28,-28 - 666: -28,-28 - 667: -28,-28 - 668: -28,-27 - 669: -28,-26 - 670: -28,-25 - 671: -35,-15 - 672: -35,-14 - 673: -32,-15 - 674: -32,-14 - 675: -29,-15 - 676: -29,-14 - 685: -38,-15 - 686: -38,-14 - 733: -33,-40 - 734: -33,-39 - 743: -33,-37 - 753: -43,3 - 754: -43,4 - 755: -43,5 - 756: -43,-1 - 757: -43,-2 - 758: -43,-3 - 862: -48,10 - 863: -48,12 - 864: -48,13 - 912: -48,9 - 916: -50,11 - 991: 38,-34 - 999: 24,-33 - 1000: 24,-32 - 1001: 24,-31 - 1002: 24,-30 - 1089: -1,23 - 1090: -1,24 - 1091: -1,25 - 1111: -1,36 - 1112: -1,37 - 1113: -1,38 - 1184: -4,45 - 1185: -4,46 - 1186: -4,47 - 1230: 26,6 - 1231: 26,7 - 1232: 26,8 - 1359: 58,-35 - 1368: 56,-35 - 1786: 70,-30 - 1787: 70,-29 - 1964: 22,-58 - 1965: 22,-57 - 1966: 22,-55 - 1967: 22,-54 - 1995: 21,-60 + 319: -17,6 + 320: -17,7 + 321: -17,5 + 322: -17,6 + 323: -17,7 + 329: 42,-26 + 330: 42,-24 + 331: 42,-25 + 382: -24,17 + 383: -24,21 + 385: -18,-11 + 386: -18,-10 + 387: -18,-9 + 406: -16,-28 + 407: -16,-27 + 408: -16,-26 + 458: -38,1 + 459: -38,2 + 460: -34,1 + 461: -34,2 + 462: -30,1 + 463: -30,2 + 653: -28,-34 + 654: -28,-33 + 655: -28,-32 + 656: -28,-31 + 657: -28,-30 + 658: -28,-29 + 659: -28,-28 + 660: -28,-28 + 661: -28,-28 + 662: -28,-27 + 663: -28,-26 + 664: -28,-25 + 665: -35,-15 + 666: -35,-14 + 667: -32,-15 + 668: -32,-14 + 669: -29,-15 + 670: -29,-14 + 679: -38,-15 + 680: -38,-14 + 727: -33,-40 + 728: -33,-39 + 737: -33,-37 + 747: -43,3 + 748: -43,4 + 749: -43,5 + 750: -43,-1 + 751: -43,-2 + 752: -43,-3 + 856: -48,10 + 857: -48,12 + 858: -48,13 + 906: -48,9 + 910: -50,11 + 985: 38,-34 + 993: 24,-33 + 994: 24,-32 + 995: 24,-31 + 996: 24,-30 + 1083: -1,23 + 1084: -1,24 + 1085: -1,25 + 1105: -1,36 + 1106: -1,37 + 1107: -1,38 + 1178: -4,45 + 1179: -4,46 + 1180: -4,47 + 1224: 26,6 + 1225: 26,7 + 1226: 26,8 + 1353: 58,-35 + 1362: 56,-35 + 1780: 70,-30 + 1781: 70,-29 + 1958: 22,-58 + 1959: 22,-57 + 1960: 22,-55 + 1961: 22,-54 + 1989: 21,-60 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 211: 7,-19 - 1103: -6,28 + 205: 7,-19 + 1097: -6,28 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 6669: -29,12 + 6635: -29,12 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 648: -39,-34 - 6368: -33,-12 + 642: -39,-34 + 6334: -33,-12 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 647: -30,-34 - 6367: -33,-12 + 641: -30,-34 + 6333: -33,-12 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 646: -39,-25 + 640: -39,-25 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 645: -30,-25 - 1358: 44,5 + 639: -30,-25 + 1352: 44,5 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 205: 7,-25 - 206: 7,-24 - 207: 7,-23 - 208: 7,-22 - 209: 7,-21 - 210: 7,-20 - 535: -34,-21 - 607: -39,-33 - 608: -39,-32 - 609: -39,-31 - 610: -39,-30 - 611: -39,-29 - 612: -39,-29 - 613: -39,-28 - 614: -39,-27 - 615: -39,-26 - 698: -39,-33 - 699: -39,-26 - 749: -52,0 - 750: -52,2 - 1109: -6,27 - 1110: -6,26 - 1763: 74,-15 - 1764: 74,-14 - 1765: 74,-17 - 1766: 74,-18 - 1767: 74,-19 - 6666: -29,13 - 6667: -29,14 - 6812: -34,-18 - 6813: -34,-21 - 6814: -34,-20 - 6815: -34,-19 - 6816: -34,-18 - 6817: -34,-19 - 6818: -34,-20 - 6819: -34,-21 + 199: 7,-25 + 200: 7,-24 + 201: 7,-23 + 202: 7,-22 + 203: 7,-21 + 204: 7,-20 + 529: -34,-21 + 601: -39,-33 + 602: -39,-32 + 603: -39,-31 + 604: -39,-30 + 605: -39,-29 + 606: -39,-29 + 607: -39,-28 + 608: -39,-27 + 609: -39,-26 + 692: -39,-33 + 693: -39,-26 + 743: -52,0 + 744: -52,2 + 1103: -6,27 + 1104: -6,26 + 1757: 74,-15 + 1758: 74,-14 + 1759: 74,-17 + 1760: 74,-18 + 1761: 74,-19 + 6632: -29,13 + 6633: -29,14 + 6778: -34,-18 + 6779: -34,-21 + 6780: -34,-20 + 6781: -34,-19 + 6782: -34,-18 + 6783: -34,-19 + 6784: -34,-20 + 6785: -34,-21 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 212: 6,-19 - 213: 4,-19 - 382: -22,12 - 383: -21,12 - 384: -20,12 - 385: -19,12 - 638: -35,-34 - 639: -35,-34 - 640: -34,-34 - 641: -33,-34 - 642: -32,-34 - 643: -31,-34 - 644: -31,-34 - 888: -50,-26 - 889: -46,-26 - 906: -50,-26 - 907: -46,-26 - 1019: 37,-4 - 1020: 38,-4 - 1021: 39,-4 - 1022: 36,-4 - 1104: -7,28 - 1105: -8,28 - 1106: -9,28 - 1107: -10,28 - 1108: -11,28 - 1782: 69,-28 - 1783: 70,-28 - 1996: 0,-37 - 1997: 1,-37 - 2002: 2,-37 - 2722: -27,27 - 2723: -26,27 - 2724: -25,27 - 6365: -34,-12 - 6366: -32,-12 - 6663: -32,16 - 6664: -31,16 - 6665: -30,16 - 6810: -22,10 - 6811: -21,10 + 206: 6,-19 + 207: 4,-19 + 376: -22,12 + 377: -21,12 + 378: -20,12 + 379: -19,12 + 632: -35,-34 + 633: -35,-34 + 634: -34,-34 + 635: -33,-34 + 636: -32,-34 + 637: -31,-34 + 638: -31,-34 + 882: -50,-26 + 883: -46,-26 + 900: -50,-26 + 901: -46,-26 + 1013: 37,-4 + 1014: 38,-4 + 1015: 39,-4 + 1016: 36,-4 + 1098: -7,28 + 1099: -8,28 + 1100: -9,28 + 1101: -10,28 + 1102: -11,28 + 1776: 69,-28 + 1777: 70,-28 + 1990: 0,-37 + 1991: 1,-37 + 1996: 2,-37 + 2716: -27,27 + 2717: -26,27 + 2718: -25,27 + 6331: -34,-12 + 6332: -32,-12 + 6629: -32,16 + 6630: -31,16 + 6631: -30,16 + 6776: -22,10 + 6777: -21,10 - node: cleanable: True color: '#FFFFFF35' id: BrickTileSteelLineS decals: - 5825: 83,-35 + 5814: 83,-35 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 628: -38,-25 - 629: -36,-25 - 630: -36,-25 - 631: -37,-25 - 632: -36,-25 - 633: -35,-25 - 634: -34,-25 - 635: -33,-25 - 636: -31,-25 - 637: -32,-25 - 890: -50,-31 - 891: -46,-31 - 904: -50,-31 - 905: -46,-31 - 1016: 36,-1 - 1017: 37,-1 - 1018: 39,-1 - 1023: 38,-1 - 1046: -48,-16 - 1047: -49,-16 - 1048: -50,-16 - 1049: -51,-16 - 1355: 40,5 - 1356: 42,5 - 1357: 43,5 - 1396: 41,5 - 2887: 51,22 - 2888: 50,22 - 2889: 52,22 - 6226: -34,-17 - 6227: -33,-17 - 6668: -32,12 - 6808: -22,10 - 6809: -21,10 + 622: -38,-25 + 623: -36,-25 + 624: -36,-25 + 625: -37,-25 + 626: -36,-25 + 627: -35,-25 + 628: -34,-25 + 629: -33,-25 + 630: -31,-25 + 631: -32,-25 + 884: -50,-31 + 885: -46,-31 + 898: -50,-31 + 899: -46,-31 + 1010: 36,-1 + 1011: 37,-1 + 1012: 39,-1 + 1017: 38,-1 + 1040: -48,-16 + 1041: -49,-16 + 1042: -50,-16 + 1043: -51,-16 + 1349: 40,5 + 1350: 42,5 + 1351: 43,5 + 1390: 41,5 + 2881: 51,22 + 2882: 50,22 + 2883: 52,22 + 6215: -34,-17 + 6216: -33,-17 + 6634: -32,12 + 6774: -22,10 + 6775: -21,10 - node: cleanable: True color: '#FFFFFF35' id: BrickTileSteelLineW decals: - 5824: 81,-34 + 5813: 81,-34 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 616: -30,-33 - 617: -30,-32 - 618: -30,-31 - 619: -30,-31 - 620: -30,-30 - 621: -30,-30 - 622: -30,-29 - 623: -30,-29 - 624: -30,-28 - 625: -30,-27 - 626: -30,-27 - 627: -30,-26 - 700: -30,-26 - 701: -30,-33 - 751: -43,0 - 752: -43,2 - 1067: 3,23 - 1068: 3,24 - 1069: 3,25 - 1074: -6,33 - 1075: -6,34 - 1352: 44,1 - 1353: 44,2 - 1354: 44,3 - 1390: 44,4 - 6659: -35,13 - 6660: -35,14 - 6661: -35,14 - 6662: -35,15 + 610: -30,-33 + 611: -30,-32 + 612: -30,-31 + 613: -30,-31 + 614: -30,-30 + 615: -30,-30 + 616: -30,-29 + 617: -30,-29 + 618: -30,-28 + 619: -30,-27 + 620: -30,-27 + 621: -30,-26 + 694: -30,-26 + 695: -30,-33 + 745: -43,0 + 746: -43,2 + 1061: 3,23 + 1062: 3,24 + 1063: 3,25 + 1068: -6,33 + 1069: -6,34 + 1346: 44,1 + 1347: 44,2 + 1348: 44,3 + 1384: 44,4 + 6625: -35,13 + 6626: -35,14 + 6627: -35,14 + 6628: -35,15 - node: color: '#A4610696' id: BrickTileWhiteCornerNe decals: - 1293: 28,15 - 1326: 28,8 - 1343: 36,22 - 1344: 27,14 + 1287: 28,15 + 1320: 28,8 + 1337: 36,22 + 1338: 27,14 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 1698: 60,-13 - 1720: 70,-12 - 6941: 54,-23 + 1692: 60,-13 + 1714: 70,-12 + 6907: 54,-23 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 6357: 52,-26 + 6323: 52,-26 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 2699: -4,14 + 2693: -4,14 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 2818: -25,38 + 2812: -25,38 - node: color: '#A4610696' id: BrickTileWhiteCornerNw decals: - 1342: 33,22 - 1347: 26,14 + 1336: 33,22 + 1341: 26,14 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 1699: 58,-13 - 1723: 68,-12 - 6940: 52,-23 + 1693: 58,-13 + 1717: 68,-12 + 6906: 52,-23 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 6356: 51,-26 + 6322: 51,-26 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 2060: -54,9 - 2698: -2,14 + 2054: -54,9 + 2692: -2,14 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 2817: -30,38 + 2811: -30,38 - node: color: '#A4610696' id: BrickTileWhiteCornerSe decals: - 1292: 28,10 - 1325: 28,6 - 1341: 36,17 - 1345: 27,11 + 1286: 28,10 + 1319: 28,6 + 1335: 36,17 + 1339: 27,11 - node: color: '#D381C996' id: BrickTileWhiteCornerSe decals: - 1700: 60,-14 - 1721: 70,-14 + 1694: 60,-14 + 1715: 70,-14 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 6355: 52,-27 + 6321: 52,-27 - node: color: '#A4610696' id: BrickTileWhiteCornerSw decals: - 1346: 26,11 + 1340: 26,11 - node: color: '#D381C996' id: BrickTileWhiteCornerSw decals: - 1701: 58,-14 - 1722: 68,-14 + 1695: 58,-14 + 1716: 68,-14 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 6358: 51,-27 + 6324: 51,-27 - node: color: '#EFB34196' id: BrickTileWhiteEndE decals: - 2721: 63,9 + 2715: 63,9 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 958: 46,-38 - 960: 46,-38 - 995: 37,-34 + 952: 46,-38 + 954: 46,-38 + 989: 37,-34 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 1398: 41,5 - 6039: 48,-1 - 6056: 49,-7 + 1392: 41,5 + 6028: 48,-1 + 6045: 49,-7 - node: color: '#A4610696' id: BrickTileWhiteInnerNe decals: - 1328: 26,8 + 1322: 26,8 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 1269: -18,27 + 1263: -18,27 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 990: 43,-34 + 984: 43,-34 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 1397: 45,5 - 6038: 52,-1 - 6055: 51,-7 + 1391: 45,5 + 6027: 52,-1 + 6044: 51,-7 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 953: 46,-37 + 947: 46,-37 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 1400: 45,4 - 6037: 48,-8 - 6054: 49,-2 - 6058: 50,-8 + 1394: 45,4 + 6026: 48,-8 + 6043: 49,-2 + 6047: 50,-8 - node: color: '#A4610696' id: BrickTileWhiteInnerSe decals: - 1323: 31,23 - 1327: 26,6 + 1317: 31,23 + 1321: 26,6 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 1156: -15,26 - 1157: -11,26 - 1158: -7,26 - 1199: -4,45 - 1268: -18,29 + 1150: -15,26 + 1151: -11,26 + 1152: -7,26 + 1193: -4,45 + 1262: -18,29 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 6036: 52,-8 - 6053: 51,-2 - 6057: 50,-8 + 6025: 52,-8 + 6042: 51,-2 + 6046: 50,-8 - node: color: '#A4610696' id: BrickTileWhiteInnerSw decals: - 1324: 30,17 + 1318: 30,17 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 1154: -13,26 - 1155: -9,26 - 1198: 0,45 + 1148: -13,26 + 1149: -9,26 + 1192: 0,45 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw @@ -2006,248 +2006,248 @@ entities: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 954: 46,-37 - 955: 46,-36 - 956: 46,-35 - 957: 46,-34 + 948: 46,-37 + 949: 46,-36 + 950: 46,-35 + 951: 46,-34 - node: color: '#52B4E93E' id: BrickTileWhiteLineE decals: - 6506: 51,6 - 6507: 51,6 - 6508: 51,6 + 6472: 51,6 + 6473: 51,6 + 6474: 51,6 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 5943: 42,9 - 5944: 42,7 - 5950: 47,9 - 5951: 47,8 - 5952: 47,7 - 5968: 51,1 - 5969: 51,2 - 5970: 51,3 - 5971: 51,4 - 5972: 51,7 - 5973: 51,8 - 5974: 51,9 - 5975: 51,10 - 5976: 51,11 - 5977: 51,12 - 5978: 51,13 - 5979: 51,14 - 5980: 51,15 - 5985: 56,10 - 5986: 56,11 - 5987: 56,12 - 5991: 56,6 - 5992: 56,7 - 5993: 56,8 - 6028: 52,-1 - 6029: 52,-2 - 6030: 52,-3 - 6031: 52,-4 - 6032: 52,-5 - 6033: 52,-6 - 6034: 52,-7 - 6035: 52,-8 - 6049: 49,-6 - 6050: 49,-5 - 6051: 49,-4 - 6052: 49,-3 - 6835: 61,-7 - 6836: 61,-6 - 6837: 61,-5 - 6838: 61,-4 + 5932: 42,9 + 5933: 42,7 + 5939: 47,9 + 5940: 47,8 + 5941: 47,7 + 5957: 51,1 + 5958: 51,2 + 5959: 51,3 + 5960: 51,4 + 5961: 51,7 + 5962: 51,8 + 5963: 51,9 + 5964: 51,10 + 5965: 51,11 + 5966: 51,12 + 5967: 51,13 + 5968: 51,14 + 5969: 51,15 + 5974: 56,10 + 5975: 56,11 + 5976: 56,12 + 5980: 56,6 + 5981: 56,7 + 5982: 56,8 + 6017: 52,-1 + 6018: 52,-2 + 6019: 52,-3 + 6020: 52,-4 + 6021: 52,-5 + 6022: 52,-6 + 6023: 52,-7 + 6024: 52,-8 + 6038: 49,-6 + 6039: 49,-5 + 6040: 49,-4 + 6041: 49,-3 + 6801: 61,-7 + 6802: 61,-6 + 6803: 61,-5 + 6804: 61,-4 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 1655: 61,17 - 1656: 61,16 - 1657: 61,15 - 1658: 61,14 + 1649: 61,17 + 1650: 61,16 + 1651: 61,15 + 1652: 61,14 - node: color: '#A4610696' id: BrickTileWhiteLineE decals: - 1276: 28,7 - 1285: 28,14 - 1286: 28,13 - 1287: 28,12 - 1288: 28,11 - 1305: 31,22 - 1306: 31,21 - 1307: 31,20 - 1308: 31,19 - 1309: 31,18 - 1310: 31,17 - 1311: 31,16 - 1312: 31,15 - 1313: 31,14 - 1314: 31,13 - 1315: 31,12 - 1331: 36,19 - 1332: 36,20 - 1333: 36,21 - 1338: 36,18 - 1348: 27,13 - 1349: 27,12 + 1270: 28,7 + 1279: 28,14 + 1280: 28,13 + 1281: 28,12 + 1282: 28,11 + 1299: 31,22 + 1300: 31,21 + 1301: 31,20 + 1302: 31,19 + 1303: 31,18 + 1304: 31,17 + 1305: 31,16 + 1306: 31,15 + 1307: 31,14 + 1308: 31,13 + 1309: 31,12 + 1325: 36,19 + 1326: 36,20 + 1327: 36,21 + 1332: 36,18 + 1342: 27,13 + 1343: 27,12 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 1724: 70,-13 - 1728: 65,-21 - 1729: 65,-20 - 1730: 65,-19 - 1731: 65,-18 - 1732: 65,-17 - 1733: 65,-16 - 1734: 65,-15 - 1735: 65,-14 - 1736: 65,-13 - 1737: 65,-12 - 1811: 71,-27 - 1812: 71,-26 + 1718: 70,-13 + 1722: 65,-21 + 1723: 65,-20 + 1724: 65,-19 + 1725: 65,-18 + 1726: 65,-17 + 1727: 65,-16 + 1728: 65,-15 + 1729: 65,-14 + 1730: 65,-13 + 1731: 65,-12 + 1805: 71,-27 + 1806: 71,-26 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 1079: -1,23 - 1080: -1,24 - 1087: -1,25 - 1267: -18,28 - 6295: -37,-44 - 6296: -37,-45 - 6309: -37,-46 + 1073: -1,23 + 1074: -1,24 + 1081: -1,25 + 1261: -18,28 + 6284: -37,-44 + 6285: -37,-45 + 6298: -37,-46 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: 175: 2,-22 - 232: 10,-23 - 233: 10,-22 - 2037: -4,-37 - 2038: -4,-35 - 2736: -39,-38 + 226: 10,-23 + 227: 10,-22 + 2031: -4,-37 + 2032: -4,-35 + 2730: -39,-38 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteLineE decals: - 2816: -25,37 - 2823: -32,38 - 2824: -32,37 - 2825: -32,36 - 2826: -32,35 - 2827: -32,34 + 2810: -25,37 + 2817: -32,38 + 2818: -32,37 + 2819: -32,36 + 2820: -32,35 + 2821: -32,34 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 1209: 2,40 + 1203: 2,40 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 961: 39,-34 - 962: 40,-34 - 963: 41,-34 - 993: 38,-34 - 994: 42,-34 - 1852: 19,-36 - 1853: 20,-36 - 1857: 21,-36 - 1887: 24,-46 + 955: 39,-34 + 956: 40,-34 + 957: 41,-34 + 987: 38,-34 + 988: 42,-34 + 1846: 19,-36 + 1847: 20,-36 + 1851: 21,-36 + 1881: 24,-46 - node: color: '#474F52A7' id: BrickTileWhiteLineN decals: - 1159: -16,24 - 1160: -15,24 - 1161: -14,24 - 1162: -12,24 - 1163: -11,24 - 1164: -10,24 - 1165: -8,24 - 1166: -7,24 - 1167: -6,24 + 1153: -16,24 + 1154: -15,24 + 1155: -14,24 + 1156: -12,24 + 1157: -11,24 + 1158: -10,24 + 1159: -8,24 + 1160: -7,24 + 1161: -6,24 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 1393: 43,5 - 1394: 42,5 - 1395: 44,5 - 1639: 59,4 - 1640: 60,4 - 6002: 53,3 - 6003: 54,3 - 6004: 55,3 - 6005: 57,3 - 6040: 51,-1 - 6041: 50,-1 - 6042: 49,-1 - 6062: 49,-10 - 6063: 50,-10 - 6064: 51,-10 - 6948: 56,3 + 1387: 43,5 + 1388: 42,5 + 1389: 44,5 + 1633: 59,4 + 1634: 60,4 + 5991: 53,3 + 5992: 54,3 + 5993: 55,3 + 5994: 57,3 + 6029: 51,-1 + 6030: 50,-1 + 6031: 49,-1 + 6051: 49,-10 + 6052: 50,-10 + 6053: 51,-10 + 6914: 56,3 - node: color: '#79150096' id: BrickTileWhiteLineN decals: - 296: -15,-2 + 290: -15,-2 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 1207: -1,53 - 1208: 0,53 - 1885: 24,-43 + 1201: -1,53 + 1202: 0,53 + 1879: 24,-43 - node: color: '#A4610696' id: BrickTileWhiteLineN decals: - 1274: 27,8 - 1282: 25,15 - 1283: 26,15 - 1284: 27,15 - 1339: 34,22 - 1340: 35,22 + 1268: 27,8 + 1276: 25,15 + 1277: 26,15 + 1278: 27,15 + 1333: 34,22 + 1334: 35,22 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 1682: 63,-23 - 1683: 64,-23 - 1684: 65,-23 - 1689: 61,-23 - 1690: 62,-23 - 1702: 59,-13 - 1726: 69,-12 - 1749: 77,-13 - 1750: 75,-13 - 1751: 77,-17 - 1752: 75,-17 - 3001: 76,-13 - 3004: 76,-17 - 6942: 53,-23 + 1676: 63,-23 + 1677: 64,-23 + 1678: 65,-23 + 1683: 61,-23 + 1684: 62,-23 + 1696: 59,-13 + 1720: 69,-12 + 1743: 77,-13 + 1744: 75,-13 + 1745: 77,-17 + 1746: 75,-17 + 2995: 76,-13 + 2998: 76,-17 + 6908: 53,-23 - node: color: '#D4D4D496' id: BrickTileWhiteLineN decals: - 1886: 25,-43 + 1880: 25,-43 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1148: -3,32 - 1149: -2,32 - 1150: -1,32 - 1888: 25,-46 + 1142: -3,32 + 1143: -2,32 + 1144: -1,32 + 1882: 25,-46 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -2256,149 +2256,149 @@ entities: 140: -8,-26 141: -6,-26 164: -7,-26 - 236: 5,-27 - 237: 6,-27 - 238: 7,-27 - 239: 8,-27 - 240: 9,-27 - 281: 19,-21 - 282: 20,-21 - 283: 21,-21 - 2034: 0,-35 - 2035: 1,-35 - 2061: -53,9 - 2734: -62,-21 - 2735: -61,-21 - 6753: 43,13 - 6754: 44,13 - 6755: 45,13 - 6782: 47,13 + 230: 5,-27 + 231: 6,-27 + 232: 7,-27 + 233: 8,-27 + 234: 9,-27 + 275: 19,-21 + 276: 20,-21 + 277: 21,-21 + 2028: 0,-35 + 2029: 1,-35 + 2055: -53,9 + 2728: -62,-21 + 2729: -61,-21 + 6719: 43,13 + 6720: 44,13 + 6721: 45,13 + 6748: 47,13 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteLineN decals: - 2819: -29,38 - 2820: -28,38 - 2821: -27,38 - 2822: -26,38 + 2813: -29,38 + 2814: -28,38 + 2815: -27,38 + 2816: -26,38 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 2091: 13,25 - 2092: 14,25 - 2093: 15,25 - 5870: 14,22 + 2085: 13,25 + 2086: 14,25 + 2087: 15,25 + 5859: 14,22 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 332: 31,-22 - 333: 32,-22 - 334: 33,-22 - 353: 47,-22 - 354: 48,-22 - 355: 49,-22 - 1854: 19,-39 - 1855: 20,-39 - 1856: 21,-39 - 6336: 52,-37 - 6337: 51,-37 + 326: 31,-22 + 327: 32,-22 + 328: 33,-22 + 347: 47,-22 + 348: 48,-22 + 349: 49,-22 + 1848: 19,-39 + 1849: 20,-39 + 1850: 21,-39 + 6302: 52,-37 + 6303: 51,-37 - node: color: '#474F52A7' id: BrickTileWhiteLineS decals: - 1168: -12,23 - 1169: -11,23 - 1170: -10,23 - 1171: -14,23 - 1172: -15,23 - 1173: -16,23 - 1174: -8,23 - 1175: -6,23 - 1176: -7,23 + 1162: -12,23 + 1163: -11,23 + 1164: -10,23 + 1165: -14,23 + 1166: -15,23 + 1167: -16,23 + 1168: -8,23 + 1169: -6,23 + 1170: -7,23 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 1399: 46,4 - 1637: 60,0 - 1638: 59,0 - 1891: 24,-46 - 6006: 56,2 - 6007: 55,2 - 6008: 54,2 - 6009: 53,2 - 6043: 49,-8 - 6044: 51,-8 - 6059: 48,-11 - 6060: 51,-11 - 6061: 53,-11 - 6067: 50,-11 - 6947: 57,2 + 1393: 46,4 + 1631: 60,0 + 1632: 59,0 + 1885: 24,-46 + 5995: 56,2 + 5996: 55,2 + 5997: 54,2 + 5998: 53,2 + 6032: 49,-8 + 6033: 51,-8 + 6048: 48,-11 + 6049: 51,-11 + 6050: 53,-11 + 6056: 50,-11 + 6913: 57,2 - node: color: '#79150096' id: BrickTileWhiteLineS decals: - 295: -15,4 + 289: -15,4 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 1201: -3,50 - 1202: -1,50 - 1203: -2,50 - 1204: 0,50 - 1205: 1,50 - 1206: 2,50 + 1195: -3,50 + 1196: -1,50 + 1197: -2,50 + 1198: 0,50 + 1199: 1,50 + 1200: 2,50 - node: color: '#A4610696' id: BrickTileWhiteLineS decals: - 1275: 27,6 - 1289: 25,10 - 1290: 26,10 - 1291: 27,10 - 1294: 23,17 - 1295: 24,17 - 1296: 25,17 - 1297: 26,17 - 1298: 27,17 - 1299: 28,17 - 1329: 34,17 - 1330: 35,17 - 1889: 24,-43 + 1269: 27,6 + 1283: 25,10 + 1284: 26,10 + 1285: 27,10 + 1288: 23,17 + 1289: 24,17 + 1290: 25,17 + 1291: 26,17 + 1292: 27,17 + 1293: 28,17 + 1323: 34,17 + 1324: 35,17 + 1883: 24,-43 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 1685: 63,-27 - 1686: 64,-27 - 1687: 65,-27 - 1688: 66,-27 - 1703: 59,-14 - 1704: 58,-15 - 1705: 59,-15 - 1706: 60,-15 - 1725: 69,-14 - 1753: 75,-19 - 1754: 77,-19 - 1755: 75,-15 - 1756: 77,-15 - 1892: 25,-43 - 3002: 76,-15 - 3003: 76,-19 + 1679: 63,-27 + 1680: 64,-27 + 1681: 65,-27 + 1682: 66,-27 + 1697: 59,-14 + 1698: 58,-15 + 1699: 59,-15 + 1700: 60,-15 + 1719: 69,-14 + 1747: 75,-19 + 1748: 77,-19 + 1749: 75,-15 + 1750: 77,-15 + 1886: 25,-43 + 2996: 76,-15 + 2997: 76,-19 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1151: -10,26 - 1152: -14,26 - 1153: -6,26 - 1195: -3,45 - 1196: -2,45 - 1197: -1,45 + 1145: -10,26 + 1146: -14,26 + 1147: -6,26 + 1189: -3,45 + 1190: -2,45 + 1191: -1,45 - node: color: '#EFB34196' id: BrickTileWhiteLineS @@ -2415,145 +2415,145 @@ entities: 138: -6,-28 139: -5,-28 142: -10,-28 - 234: 7,-25 - 279: 21,-23 - 280: 20,-23 - 1890: 25,-46 - 2009: 9,-41 - 2710: 61,-31 - 2711: 62,-31 - 2712: 63,-31 - 6750: 43,13 - 6751: 44,13 - 6752: 45,13 - 6781: 47,13 + 228: 7,-25 + 273: 21,-23 + 274: 20,-23 + 1884: 25,-46 + 2003: 9,-41 + 2704: 61,-31 + 2705: 62,-31 + 2706: 63,-31 + 6716: 43,13 + 6717: 44,13 + 6718: 45,13 + 6747: 47,13 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 1387: 45,4 - 1388: 46,4 - 1389: 44,4 + 1381: 45,4 + 1382: 46,4 + 1383: 44,4 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 950: 34,-34 - 951: 34,-35 - 952: 34,-36 - 1383: 54,-36 - 1384: 54,-35 - 1385: 54,-34 - 1386: 54,-33 + 944: 34,-34 + 945: 34,-35 + 946: 34,-36 + 1377: 54,-36 + 1378: 54,-35 + 1379: 54,-34 + 1380: 54,-33 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 5945: 46,7 - 5946: 46,9 - 5947: 41,9 - 5948: 41,8 - 5949: 41,7 - 5953: 49,1 - 5954: 49,2 - 5955: 49,3 - 5956: 49,4 - 5957: 49,5 - 5958: 49,6 - 5959: 49,7 - 5960: 49,8 - 5961: 49,9 - 5962: 49,10 - 5963: 49,11 - 5964: 49,12 - 5965: 49,13 - 5966: 49,14 - 5967: 49,15 - 5988: 53,6 - 5989: 53,7 - 5990: 53,8 - 6020: 48,-8 - 6021: 48,-7 - 6022: 48,-6 - 6023: 48,-5 - 6024: 48,-4 - 6025: 48,-3 - 6026: 48,-2 - 6027: 48,-1 - 6045: 51,-6 - 6046: 51,-5 - 6047: 51,-4 - 6048: 51,-3 - 6834: 57,-7 - 6842: 57,-6 - 6843: 57,-5 - 6844: 57,-4 + 5934: 46,7 + 5935: 46,9 + 5936: 41,9 + 5937: 41,8 + 5938: 41,7 + 5942: 49,1 + 5943: 49,2 + 5944: 49,3 + 5945: 49,4 + 5946: 49,5 + 5947: 49,6 + 5948: 49,7 + 5949: 49,8 + 5950: 49,9 + 5951: 49,10 + 5952: 49,11 + 5953: 49,12 + 5954: 49,13 + 5955: 49,14 + 5956: 49,15 + 5977: 53,6 + 5978: 53,7 + 5979: 53,8 + 6009: 48,-8 + 6010: 48,-7 + 6011: 48,-6 + 6012: 48,-5 + 6013: 48,-4 + 6014: 48,-3 + 6015: 48,-2 + 6016: 48,-1 + 6034: 51,-6 + 6035: 51,-5 + 6036: 51,-4 + 6037: 51,-3 + 6800: 57,-7 + 6808: 57,-6 + 6809: 57,-5 + 6810: 57,-4 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 1659: 57,16 - 1660: 57,17 + 1653: 57,16 + 1654: 57,17 - node: color: '#A4610696' id: BrickTileWhiteLineW decals: - 1277: 30,7 - 1278: 30,8 - 1279: 30,9 - 1280: 30,10 - 1281: 30,6 - 1300: 30,16 - 1301: 30,15 - 1302: 30,14 - 1303: 30,13 - 1304: 30,12 - 1316: 33,15 - 1317: 33,14 - 1318: 33,13 - 1319: 33,12 - 1334: 33,18 - 1335: 33,19 - 1336: 33,20 - 1337: 33,21 - 1350: 26,12 - 1351: 26,13 + 1271: 30,7 + 1272: 30,8 + 1273: 30,9 + 1274: 30,10 + 1275: 30,6 + 1294: 30,16 + 1295: 30,15 + 1296: 30,14 + 1297: 30,13 + 1298: 30,12 + 1310: 33,15 + 1311: 33,14 + 1312: 33,13 + 1313: 33,12 + 1328: 33,18 + 1329: 33,19 + 1330: 33,20 + 1331: 33,21 + 1344: 26,12 + 1345: 26,13 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 1727: 68,-13 - 1738: 63,-21 - 1739: 63,-20 - 1740: 63,-19 - 1741: 63,-17 - 1742: 63,-18 - 1743: 63,-16 - 1744: 63,-15 - 1745: 63,-14 - 1746: 63,-13 - 1747: 63,-12 - 1806: 68,-23 - 1807: 68,-22 - 1808: 68,-21 - 1809: 68,-24 - 1813: 68,-27 - 1814: 68,-26 + 1721: 68,-13 + 1732: 63,-21 + 1733: 63,-20 + 1734: 63,-19 + 1735: 63,-17 + 1736: 63,-18 + 1737: 63,-16 + 1738: 63,-15 + 1739: 63,-14 + 1740: 63,-13 + 1741: 63,-12 + 1800: 68,-23 + 1801: 68,-22 + 1802: 68,-21 + 1803: 68,-24 + 1807: 68,-27 + 1808: 68,-26 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 1077: -4,23 - 1078: -4,24 - 1088: -4,25 + 1071: -4,23 + 1072: -4,24 + 1082: -4,25 - node: color: '#EFB34131' id: BrickTileWhiteLineW decals: - 6479: 14,39 - 6480: 14,40 - 6481: 14,41 - 6482: 14,42 + 6445: 14,39 + 6446: 14,40 + 6447: 14,41 + 6448: 14,42 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -2565,328 +2565,328 @@ entities: 178: 4,-18 179: 4,-23 180: 5,-25 - 214: 4,-19 - 217: 4,-22 - 2007: 8,-40 - 2008: 8,-39 - 2036: -2,-36 - 2039: -6,-37 - 2040: -6,-36 - 2041: -6,-35 - 2050: 39,-15 - 2051: 39,-17 - 2052: 39,-16 - 2728: -22,34 - 2729: -22,35 + 208: 4,-19 + 211: 4,-22 + 2001: 8,-40 + 2002: 8,-39 + 2030: -2,-36 + 2033: -6,-37 + 2034: -6,-36 + 2035: -6,-35 + 2044: 39,-15 + 2045: 39,-17 + 2046: 39,-16 + 2722: -22,34 + 2723: -22,35 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteLineW decals: - 2814: -30,36 - 2815: -30,37 - 2828: -34,34 - 2829: -34,35 - 2830: -34,36 - 2831: -34,37 - 2832: -34,38 + 2808: -30,36 + 2809: -30,37 + 2822: -34,34 + 2823: -34,35 + 2824: -34,36 + 2825: -34,37 + 2826: -34,38 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 1210: -6,40 + 1204: -6,40 - node: color: '#FFFFFFFF' id: BushAOne decals: - 529: -24,5 - 809: -48,4 - 815: -51,-2 - 1406: -52,-49 - 1645: 59,19 - 1663: 57,18 + 523: -24,5 + 803: -48,4 + 809: -51,-2 + 1400: -52,-49 + 1639: 59,19 + 1657: 57,18 - node: color: '#FFFFFFFF' id: BushAThree decals: - 496: -39,7 - 810: -50,-2 - 873: -49,-30 + 490: -39,7 + 804: -50,-2 + 867: -49,-30 - node: color: '#FFFFFFFF' id: BushCOne decals: - 807: -45,4 + 801: -45,4 - node: color: '#FFFFFFFF' id: BushCThree decals: - 317: 26,-24 - 497: -40,6 - 811: -48,-2 - 1050: 42,-30 - 1402: -49,-49 - 2105: 24,1 + 311: 26,-24 + 491: -40,6 + 805: -48,-2 + 1044: 42,-30 + 1396: -49,-49 + 2099: 24,1 - node: color: '#FFFFFFFF' id: BushCTwo decals: 35: -4,-12 - 318: 26,-23 - 495: -38,6 - 1403: -46,-49 + 312: 26,-23 + 489: -38,6 + 1397: -46,-49 - node: cleanable: True color: '#FFFFFFFF' id: BushCTwo decals: - 2858: 81,-8 + 2852: 81,-8 - node: color: '#FFFFFFFF' id: BushDTwo decals: - 816: -49,4 + 810: -49,4 - node: color: '#FFFFFFFF' id: Busha1 decals: - 493: -39,5 - 870: -48,-28 + 487: -39,5 + 864: -48,-28 - node: cleanable: True color: '#FFFFFFFF' id: Busha1 decals: - 2859: 82,-6 + 2853: 82,-6 - node: color: '#FFFFFFFF' id: Busha2 decals: - 501: -30,7 - 871: -47,-29 - 1644: 58,19 + 495: -30,7 + 865: -47,-29 + 1638: 58,19 - node: color: '#FFFFFFFF' id: Busha3 decals: - 316: 25,-24 - 499: -30,5 - 808: -47,4 - 1405: -44,-49 + 310: 25,-24 + 493: -30,5 + 802: -47,4 + 1399: -44,-49 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 313: 25,-21 - 813: -46,-2 - 814: -44,-2 + 307: 25,-21 + 807: -46,-2 + 808: -44,-2 - node: cleanable: True color: '#FFFFFFFF' id: Bushb1 decals: - 2856: 81,-7 + 2850: 81,-7 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 528: -24,7 - 861: -47,-8 - 1662: 57,19 + 522: -24,7 + 855: -47,-8 + 1656: 57,19 - node: color: '#FFFFFFFF' id: Bushb3 decals: - 314: 26,-22 - 806: -50,4 - 872: -48,-30 + 308: 26,-22 + 800: -50,4 + 866: -48,-30 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 315: 25,-23 - 494: -39,6 - 500: -29,6 - 812: -45,-2 - 874: -49,-27 + 309: 25,-23 + 488: -39,6 + 494: -29,6 + 806: -45,-2 + 868: -49,-27 - node: cleanable: True color: '#FFFFFFFF' id: Bushc1 decals: - 2857: 82,-7 + 2851: 82,-7 - node: color: '#FFFFFFFF' id: Bushc2 decals: - 498: -28,6 - 1404: -47,-49 - 2107: 25,1 + 492: -28,6 + 1398: -47,-49 + 2101: 25,1 - node: color: '#FFFFFFFF' id: Bushc3 decals: 34: -5,-12 - 1401: -51,-49 - 2106: 26,1 + 1395: -51,-49 + 2100: 26,1 - node: color: '#FFFFFFFF' id: Bushd2 decals: - 818: -49,-2 + 812: -49,-2 - node: color: '#FFFFFFFF' id: Bushd4 decals: - 817: -44,4 + 811: -44,4 - node: color: '#FFFFFFFF' id: Bushh1 decals: - 506: -28,7 + 500: -28,7 - node: color: '#FFFFFFFF' id: Bushh3 decals: - 505: -40,5 - 507: -28,5 + 499: -40,5 + 501: -28,5 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 504: -29,5 - 530: -24,4 - 820: -47,-2 - 875: -48,-29 - 1408: -48,-49 - 1646: 60,19 + 498: -29,5 + 524: -24,4 + 814: -47,-2 + 869: -48,-29 + 1402: -48,-49 + 1640: 60,19 - node: cleanable: True color: '#FFFFFFFF' id: Bushi1 decals: - 2862: 80,-7 + 2856: 80,-7 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 319: 25,-22 - 821: -51,4 - 858: -48,-8 - 859: -51,-9 - 2108: 24,1 + 313: 25,-22 + 815: -51,4 + 852: -48,-8 + 853: -51,-9 + 2102: 24,1 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 502: -38,5 - 876: -47,-27 - 1407: -50,-49 + 496: -38,5 + 870: -47,-27 + 1401: -50,-49 - node: cleanable: True color: '#FFFFFFFF' id: Bushi3 decals: - 2860: 82,-8 + 2854: 82,-8 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 503: -40,7 - 819: -46,4 - 860: -46,-7 - 1051: 42,-31 - 1409: -45,-49 + 497: -40,7 + 813: -46,4 + 854: -46,-7 + 1045: 42,-31 + 1403: -45,-49 - node: cleanable: True color: '#FFFFFFFF' id: Bushi4 decals: - 2861: 81,-6 + 2855: 81,-6 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 321: 25,-23 + 315: 25,-23 - node: color: '#FFFFFFFF' id: Bushk3 decals: - 320: 26,-21 + 314: 26,-21 - node: color: '#FFFFFFFF' id: Bushm4 decals: - 508: -38,7 + 502: -38,7 - node: color: '#FFFFFFFF' id: Caution decals: - 1865: 24,-37 - 1869: 23,-37 - 1870: 25,-37 + 1859: 24,-37 + 1863: 23,-37 + 1864: 25,-37 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Caution decals: - 1866: 24,-38 - 1867: 23,-38 - 1868: 25,-38 + 1860: 24,-38 + 1861: 23,-38 + 1862: 25,-38 - node: color: '#334E6DC8' id: CheckerNWSE decals: - 1861: 20,-37 - 1862: 21,-37 - 1863: 21,-38 - 1864: 20,-38 + 1855: 20,-37 + 1856: 21,-37 + 1857: 21,-38 + 1858: 20,-38 - node: color: '#474F528F' id: CheckerNWSE decals: - 2083: -17,11 - 2084: -16,11 - 2085: -16,12 - 2086: -17,12 - 2087: -17,13 - 2088: -16,13 - 2089: -16,14 - 2090: -17,14 + 2077: -17,11 + 2078: -16,11 + 2079: -16,12 + 2080: -17,12 + 2081: -17,13 + 2082: -16,13 + 2083: -16,14 + 2084: -17,14 - node: color: '#52B4E996' id: CheckerNWSE decals: - 1668: 55,-5 - 1669: 55,-4 - 1670: 56,-4 - 1671: 56,-5 - 1672: 53,-5 - 1673: 53,-4 + 1662: 55,-5 + 1663: 55,-4 + 1664: 56,-4 + 1665: 56,-5 + 1666: 53,-5 + 1667: 53,-4 - node: color: '#D381C996' id: CheckerNWSE decals: - 1748: 66,-21 + 1742: 66,-21 - node: color: '#DE3A3A41' id: CheckerNWSE decals: - 6297: -36,-46 - 6298: -36,-45 - 6299: -36,-44 - 6300: -35,-44 - 6301: -35,-45 - 6302: -35,-46 + 6286: -36,-46 + 6287: -36,-45 + 6288: -36,-44 + 6289: -35,-44 + 6290: -35,-45 + 6291: -35,-46 - node: color: '#EFB34131' id: CheckerNWSE decals: - 6430: 13,40 - 6431: 13,39 - 6432: 13,41 - 6433: 13,42 - 6478: 15,40 + 6396: 13,40 + 6397: 13,39 + 6398: 13,41 + 6399: 13,42 + 6444: 15,40 - node: color: '#EFB34196' id: CheckerNWSE @@ -2897,83 +2897,83 @@ entities: 148: -2,-27 149: -3,-27 150: -3,-28 - 2045: 37,-15 - 2046: 37,-16 - 2047: 37,-17 - 2048: 38,-16 - 2049: 38,-15 - 2053: 38,-17 - 2054: 38,6 - 2055: 38,7 - 2056: -54,10 - 2057: -53,10 - 2058: -55,10 - 2059: -55,9 - 2694: -4,15 - 2695: -3,15 - 2696: -2,15 - 2697: -3,14 - 2700: -38,-54 - 2701: -38,-53 - 2702: -37,-53 - 2703: -37,-54 - 2704: 61,-32 - 2705: 62,-32 - 2706: 63,-32 - 2707: 63,-33 - 2708: 62,-33 - 2709: 61,-33 - 2713: 63,10 - 2714: 64,10 - 2715: 65,10 - 2716: 65,9 - 2717: 65,8 - 2718: 64,8 - 2719: 63,8 - 2720: 64,9 - 2726: -23,34 - 2727: -23,35 - 2730: 14,-39 - 2731: 15,-39 - 2732: -61,-20 - 2733: -62,-20 - 2737: -38,-38 - 6347: 51,-30 - 6348: 51,-29 - 6349: 52,-29 - 6350: 52,-30 + 2039: 37,-15 + 2040: 37,-16 + 2041: 37,-17 + 2042: 38,-16 + 2043: 38,-15 + 2047: 38,-17 + 2048: 38,6 + 2049: 38,7 + 2050: -54,10 + 2051: -53,10 + 2052: -55,10 + 2053: -55,9 + 2688: -4,15 + 2689: -3,15 + 2690: -2,15 + 2691: -3,14 + 2694: -38,-54 + 2695: -38,-53 + 2696: -37,-53 + 2697: -37,-54 + 2698: 61,-32 + 2699: 62,-32 + 2700: 63,-32 + 2701: 63,-33 + 2702: 62,-33 + 2703: 61,-33 + 2707: 63,10 + 2708: 64,10 + 2709: 65,10 + 2710: 65,9 + 2711: 65,8 + 2712: 64,8 + 2713: 63,8 + 2714: 64,9 + 2720: -23,34 + 2721: -23,35 + 2724: 14,-39 + 2725: 15,-39 + 2726: -61,-20 + 2727: -62,-20 + 2731: -38,-38 + 6313: 51,-30 + 6314: 51,-29 + 6315: 52,-29 + 6316: 52,-30 - node: color: '#D4D4D496' id: Delivery decals: - 6233: 0,30 - 6234: 0,31 + 6222: 0,30 + 6223: 0,31 - node: color: '#DE3A3A41' id: Delivery decals: - 6305: -38,-46 - 6306: -38,-46 - 6307: -38,-44 - 6308: -38,-44 + 6294: -38,-46 + 6295: -38,-46 + 6296: -38,-44 + 6297: -38,-44 - node: color: '#DE3A3A96' id: Delivery decals: - 1081: -3,25 - 1082: -2,25 - 1144: 4,31 - 1145: 5,31 - 1146: 2,31 - 1147: 2,30 + 1075: -3,25 + 1076: -2,25 + 1138: 4,31 + 1139: 5,31 + 1140: 2,31 + 1141: 2,30 - node: color: '#EFB34131' id: Delivery decals: - 6474: 15,41 - 6475: 15,41 - 6476: 15,41 - 6477: 15,41 + 6440: 15,41 + 6441: 15,41 + 6442: 15,41 + 6443: 15,41 - node: color: '#EFB34196' id: Delivery @@ -2995,10 +2995,10 @@ entities: 162: -9,-27 163: -10,-29 165: -8,-29 - 220: 15,-19 - 221: 15,-18 - 222: 15,-17 - 223: 15,-16 + 214: 15,-19 + 215: 15,-18 + 216: 15,-17 + 217: 15,-16 - node: angle: 3.141592653589793 rad color: '#EFB341FF' @@ -3011,3829 +3011,3829 @@ entities: color: '#FFFFFFFF' id: Delivery decals: - 346: 43,-22 - 406: -23,-28 - 407: -23,-27 - 408: -23,-26 - 1213: 23,14 - 1215: 24,12 - 1227: 25,6 - 1228: 24,6 - 1229: 23,6 - 1246: 24,21 - 1247: 25,21 - 1248: 26,21 - 1249: 28,21 - 1250: 29,21 - 1251: 30,21 - 1391: 46,3 - 1392: 46,3 - 1677: 60,-12 - 1871: 26,-37 - 1872: 26,-38 - 1875: 31,-37 - 1876: 31,-38 - 2019: 8,-41 - 2895: 3,20 - 2896: -9,19 - 2897: -9,20 - 2898: -9,21 - 2899: -17,21 - 2900: -17,20 - 2901: -17,19 - 2902: 3,21 - 2903: 3,19 - 2904: 17,19 - 2905: 17,20 - 2906: 17,21 - 2907: 19,17 - 2908: 21,17 - 2909: 20,17 - 2910: 21,6 - 2911: 20,6 - 2912: 19,6 - 2913: 29,2 - 2914: 29,4 - 2915: 29,3 - 2916: 39,2 - 2917: 39,3 - 2918: 39,4 - 2919: 43,0 - 2920: 42,0 - 2921: 41,0 - 2922: 43,-14 - 2923: 42,-14 - 2924: 41,-14 - 2925: 46,-21 - 2926: 46,-19 - 2927: 46,-20 - 2928: 38,-19 - 2929: 38,-21 - 2930: 38,-20 - 2931: 30,-21 - 2932: 30,-20 - 2933: 30,-19 - 2934: 30,-20 - 2935: 21,-28 - 2936: 20,-28 - 2937: 19,-28 - 2938: 18,-32 - 2939: 18,-33 - 2940: 18,-34 - 2941: 10,-34 - 2942: 10,-33 - 2943: 10,-32 - 2944: 4,-32 - 2945: 4,-31 - 2946: 4,-30 - 2947: -9,-32 - 2948: -9,-31 - 2949: -9,-30 - 2950: -20,-32 - 2951: -20,-30 - 2952: -20,-31 - 2953: -24,-22 - 2954: -25,-22 - 2955: -26,-22 - 2956: -42,-29 - 2957: -42,-28 - 2958: -27,-29 - 2959: -27,-28 - 2960: -26,-12 - 2961: -25,-12 - 2962: -24,-12 - 2963: -23,-6 - 2964: -24,-6 - 2965: -25,-6 - 2966: -25,10 - 2967: -26,10 - 2968: -27,10 - 2969: -42,0 - 2970: -42,1 - 2971: -42,2 - 2972: -53,-5 - 2973: -54,-5 - 2974: -55,-5 - 2975: -55,-19 - 2976: -54,-19 - 2977: -53,-19 - 2978: -49,-34 - 2979: -47,-34 - 2980: -48,-34 - 2981: -47,-45 - 2982: -48,-45 - 2983: -49,-45 - 2984: -41,-49 - 2985: -42,-49 - 2986: -40,-49 - 2987: -54,-49 - 2988: -55,-49 - 2989: -56,-49 - 2990: -56,-55 - 2991: -55,-55 - 2992: -54,-55 - 2993: -42,-55 - 2994: -41,-55 - 2995: -40,-55 - 6235: 60,-24 - 6236: 60,-23 - 6335: 32,21 + 340: 43,-22 + 400: -23,-28 + 401: -23,-27 + 402: -23,-26 + 1207: 23,14 + 1209: 24,12 + 1221: 25,6 + 1222: 24,6 + 1223: 23,6 + 1240: 24,21 + 1241: 25,21 + 1242: 26,21 + 1243: 28,21 + 1244: 29,21 + 1245: 30,21 + 1385: 46,3 + 1386: 46,3 + 1671: 60,-12 + 1865: 26,-37 + 1866: 26,-38 + 1869: 31,-37 + 1870: 31,-38 + 2013: 8,-41 + 2889: 3,20 + 2890: -9,19 + 2891: -9,20 + 2892: -9,21 + 2893: -17,21 + 2894: -17,20 + 2895: -17,19 + 2896: 3,21 + 2897: 3,19 + 2898: 17,19 + 2899: 17,20 + 2900: 17,21 + 2901: 19,17 + 2902: 21,17 + 2903: 20,17 + 2904: 21,6 + 2905: 20,6 + 2906: 19,6 + 2907: 29,2 + 2908: 29,4 + 2909: 29,3 + 2910: 39,2 + 2911: 39,3 + 2912: 39,4 + 2913: 43,0 + 2914: 42,0 + 2915: 41,0 + 2916: 43,-14 + 2917: 42,-14 + 2918: 41,-14 + 2919: 46,-21 + 2920: 46,-19 + 2921: 46,-20 + 2922: 38,-19 + 2923: 38,-21 + 2924: 38,-20 + 2925: 30,-21 + 2926: 30,-20 + 2927: 30,-19 + 2928: 30,-20 + 2929: 21,-28 + 2930: 20,-28 + 2931: 19,-28 + 2932: 18,-32 + 2933: 18,-33 + 2934: 18,-34 + 2935: 10,-34 + 2936: 10,-33 + 2937: 10,-32 + 2938: 4,-32 + 2939: 4,-31 + 2940: 4,-30 + 2941: -9,-32 + 2942: -9,-31 + 2943: -9,-30 + 2944: -20,-32 + 2945: -20,-30 + 2946: -20,-31 + 2947: -24,-22 + 2948: -25,-22 + 2949: -26,-22 + 2950: -42,-29 + 2951: -42,-28 + 2952: -27,-29 + 2953: -27,-28 + 2954: -26,-12 + 2955: -25,-12 + 2956: -24,-12 + 2957: -23,-6 + 2958: -24,-6 + 2959: -25,-6 + 2960: -25,10 + 2961: -26,10 + 2962: -27,10 + 2963: -42,0 + 2964: -42,1 + 2965: -42,2 + 2966: -53,-5 + 2967: -54,-5 + 2968: -55,-5 + 2969: -55,-19 + 2970: -54,-19 + 2971: -53,-19 + 2972: -49,-34 + 2973: -47,-34 + 2974: -48,-34 + 2975: -47,-45 + 2976: -48,-45 + 2977: -49,-45 + 2978: -41,-49 + 2979: -42,-49 + 2980: -40,-49 + 2981: -54,-49 + 2982: -55,-49 + 2983: -56,-49 + 2984: -56,-55 + 2985: -55,-55 + 2986: -54,-55 + 2987: -42,-55 + 2988: -41,-55 + 2989: -40,-55 + 6224: 60,-24 + 6225: 60,-23 + 6301: 32,21 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Delivery decals: - 2838: 24,5 - 2839: 25,5 - 2840: 26,5 - 2841: 14,1 - 2842: 14,-12 - 2843: 0,14 - 2844: -6,14 + 2832: 24,5 + 2833: 25,5 + 2834: 26,5 + 2835: 14,1 + 2836: 14,-12 + 2837: 0,14 + 2838: -6,14 - node: color: '#52B4E996' id: DeliveryGreyscale decals: - 5998: 48,2 - 5999: 48,2 - 6000: 48,1 - 6001: 48,1 - 6229: 50,-5 - 6230: 50,-5 + 5987: 48,2 + 5988: 48,2 + 5989: 48,1 + 5990: 48,1 + 6218: 50,-5 + 6219: 50,-5 - node: color: '#DE3A3A96' id: DeliveryGreyscale decals: - 1142: 4,31 - 1143: 5,31 + 1136: 4,31 + 1137: 5,31 - node: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 2094: 9,23 - 2095: 9,24 + 2088: 9,23 + 2089: 9,24 - node: cleanable: True color: '#835432FF' id: Dirt decals: - 2740: -37,28 - 2741: -36,27 - 2742: -37,27 - 2743: -37,25 - 2744: -37,24 - 2745: -36,25 - 2746: -36,24 - 2747: -36,25 - 2748: -38,28 - 2749: -39,29 - 2750: -40,28 - 2751: -38,28 - 2752: -37,27 - 2753: -37,28 - 2754: -37,27 - 2755: -36,25 + 2734: -37,28 + 2735: -36,27 + 2736: -37,27 + 2737: -37,25 + 2738: -37,24 + 2739: -36,25 + 2740: -36,24 + 2741: -36,25 + 2742: -38,28 + 2743: -39,29 + 2744: -40,28 + 2745: -38,28 + 2746: -37,27 + 2747: -37,28 + 2748: -37,27 + 2749: -36,25 + 2750: -36,24 + 2751: -34,24 + 2752: -34,23 + 2753: -34,22 + 2754: -36,22 + 2755: -37,22 2756: -36,24 - 2757: -34,24 - 2758: -34,23 - 2759: -34,22 - 2760: -36,22 - 2761: -37,22 - 2762: -36,24 - 2763: -37,24 - 2764: -36,23 - 2765: -37,25 - 2766: -36,25 - 2767: -37,26 - 2768: -38,27 - 2769: -38,28 - 2770: -39,27 - 2771: -39,26 - 2772: -39,26 + 2757: -37,24 + 2758: -36,23 + 2759: -37,25 + 2760: -36,25 + 2761: -37,26 + 2762: -38,27 + 2763: -38,28 + 2764: -39,27 + 2765: -39,26 + 2766: -39,26 - node: cleanable: True color: '#A4610696' id: Dirt decals: - 5180: -34,-26 - 5181: -37,-25 - 5182: -39,-28 - 5183: -40,-28 - 5184: -40,-31 - 5185: -39,-33 - 5186: -37,-33 - 5187: -32,-33 - 5188: -29,-33 - 5189: -29,-31 - 5190: -30,-28 - 5191: -29,-27 - 5192: -25,-30 - 5193: -25,-27 - 5194: -25,-26 - 5195: -25,-23 - 5196: -24,-21 - 5197: -25,-18 - 5198: -29,-20 - 5199: -29,-19 - 5200: -33,-19 - 5201: -33,-20 - 5202: -31,-14 - 5203: -29,-15 - 5204: -33,-16 - 5205: -29,-13 - 5206: -29,-11 - 5207: -38,-11 - 5208: -37,-15 - 5209: -36,-16 - 5210: -40,-10 - 5211: -38,-17 - 5212: -47,-8 - 5213: -45,0 - 5214: -47,0 - 5215: -44,2 - 5216: -48,-2 - 5217: -47,-1 - 5218: -49,3 - 5219: -50,-1 - 5220: -45,1 - 5221: -53,4 - 5222: -48,5 - 5223: -50,6 - 5224: -47,1 - 5225: -38,-1 - 5226: -36,1 - 5227: -32,-1 - 5228: -33,0 - 5229: -24,-2 - 5230: -28,3 - 5231: -26,3 - 5232: -26,8 - 5233: -27,13 - 5234: -26,14 - 5235: -26,18 - 5236: -22,13 - 5237: -20,12 - 5238: -22,13 - 5239: -24,19 - 5240: -20,20 - 5241: -18,19 - 5242: -16,20 - 5243: -13,19 - 5244: -15,24 - 5245: -14,24 - 5246: -13,27 - 5247: -14,28 - 5248: -13,27 - 5249: -5,28 - 5250: -20,28 - 5251: -18,25 - 5252: -13,31 - 5253: -15,32 - 5254: -14,34 - 5255: -17,32 - 5256: -8,32 - 5257: -8,32 - 5258: -6,33 - 5259: -6,27 - 5260: -3,28 - 5261: -1,30 - 5262: -2,33 - 5263: -2,33 - 5264: -2,36 - 5265: -2,43 - 5266: -7,42 - 5267: -5,45 - 5268: -3,47 - 5269: 0,45 - 5270: -2,47 - 5271: -1,47 - 5272: -2,51 - 5273: 1,51 - 5274: -1,52 - 5275: 1,52 - 5276: 2,45 - 5277: 2,47 - 5278: 2,42 - 5279: 1,40 - 5280: 6,41 - 5281: 8,39 - 5282: 6,41 - 5283: 5,31 - 5284: 3,31 - 5285: 5,30 - 5286: 4,30 - 5287: 3,26 - 5288: 2,27 - 5289: 4,25 - 5290: 3,23 - 5291: 2,24 - 5292: 1,23 - 5293: -2,24 - 5294: 1,21 - 5295: -1,19 - 5296: 4,20 - 5297: 9,20 - 5298: 9,20 - 5299: 15,19 - 5300: 11,24 - 5301: 14,23 - 5302: 14,25 - 5303: 15,24 - 5304: 14,29 - 5305: 14,31 - 5306: 17,25 - 5307: 17,23 - 5308: 16,20 - 5309: 20,20 - 5310: 20,18 - 5311: 20,15 - 5312: 21,15 - 5313: 20,12 - 5314: 22,12 - 5315: 20,11 - 5316: 27,12 - 5317: 27,11 - 5318: 26,14 - 5319: 25,19 - 5320: 30,19 - 5321: 31,16 - 5322: 31,12 - 5323: 35,14 - 5324: 35,14 - 5325: 35,14 - 5326: 32,8 - 5327: 34,9 - 5328: 32,7 - 5329: 26,7 - 5330: 24,7 - 5331: 24,3 - 5332: 24,2 - 5333: 23,2 - 5334: 20,6 - 5335: 20,9 - 5336: 23,3 - 5337: 32,3 - 5338: 34,2 - 5339: 32,-2 - 5340: 32,-2 - 5341: 32,-4 - 5342: 37,-4 - 5343: 36,3 - 5344: 42,2 - 5345: 38,-2 - 5346: 42,-5 - 5347: 42,-2 - 5348: 42,-4 - 5349: 43,6 - 5350: 52,12 - 5351: 50,14 - 5352: 50,7 - 5353: 53,14 - 5354: 59,15 - 5355: 60,17 - 5356: 55,7 - 5357: 54,7 - 5358: 50,7 - 5359: 49,0 - 5360: 45,-1 - 5361: 46,-5 - 5362: 46,-8 - 5363: 50,-4 - 5364: 50,-7 - 5365: 55,-5 - 5366: 53,-5 - 5367: 59,-14 - 5368: 60,-14 - 5369: 59,-14 - 5370: 59,-18 - 5371: 59,-20 - 5372: 60,-18 - 5373: 60,-17 - 5374: 64,-13 - 5375: 64,-17 - 5376: 65,-19 - 5377: 64,-19 - 5378: 64,-25 - 5379: 65,-24 - 5380: 63,-26 - 5381: 63,-24 - 5382: 62,-26 - 5383: 64,-26 - 5384: 70,-28 - 5385: 71,-26 - 5386: 69,-27 - 5387: 69,-23 - 5388: 70,-24 - 5389: 69,-22 - 5390: 66,-18 - 5391: 70,-18 - 5392: 71,-17 - 5393: 69,-13 - 5394: 71,-14 - 5395: 69,-12 - 5396: 70,-14 - 5397: 76,-17 - 5398: 77,-18 - 5399: 74,-15 - 5400: 76,-14 - 5401: 74,-14 - 5402: 68,-8 - 5403: 70,-10 - 5404: 76,-6 - 5405: 48,-25 - 5406: 48,-26 - 5407: 48,-27 - 5408: 48,-30 - 5409: 48,-31 - 5410: 47,-31 - 5411: 49,-34 - 5412: 47,-36 - 5413: 46,-36 - 5414: 44,-37 - 5415: 42,-35 - 5416: 42,-36 - 5417: 38,-36 - 5418: 38,-35 - 5419: 37,-37 - 5420: 32,-35 - 5421: 32,-36 - 5422: 32,-33 - 5423: 33,-31 - 5424: 32,-31 - 5425: 33,-27 - 5426: 32,-25 - 5427: 33,-24 - 5428: 35,-26 - 5429: 37,-26 - 5430: 41,-25 - 5431: 40,-26 - 5432: 41,-29 - 5433: 40,-29 - 5434: 40,-31 - 5435: 43,-29 - 5436: 44,-31 - 5437: 45,-30 - 5438: 27,-34 - 5439: 25,-34 - 5440: 24,-32 - 5441: 26,-29 - 5442: 23,-29 - 5443: 23,-31 - 5444: 25,-38 - 5445: 24,-37 - 5446: 22,-38 - 5447: 21,-37 - 5448: 21,-38 - 5449: 29,-39 - 5450: 28,-41 - 5451: 29,-44 - 5452: 28,-42 - 5453: 28,-45 - 5454: 26,-45 - 5455: 27,-44 - 5456: 24,-43 - 5457: 25,-46 - 5458: 27,-45 - 5459: 25,-46 - 5460: 32,-30 - 5461: 33,-28 - 5462: 36,-26 - 5463: 35,-26 - 5464: 36,-23 - 5465: 36,-30 - 5466: 42,-28 - 5467: 43,-29 - 5468: 52,-31 - 5469: 52,-35 - 5470: 55,-29 - 5471: 55,-30 - 5472: 57,-30 - 5473: 55,-34 - 5474: 55,-34 - 5475: 55,-36 - 5476: 57,-34 - 5477: 20,-45 - 5478: 17,-44 - 5479: 18,-45 - 5480: 19,-46 - 5481: 18,-48 - 5482: 19,-49 - 5483: 18,-50 - 5484: 20,-53 - 5485: 18,-54 - 5486: 17,-54 - 5487: 16,-54 - 5488: 16,-58 - 5489: 16,-59 - 5490: 19,-58 - 5491: 21,-58 - 5492: 21,-59 - 5493: 13,-47 - 5494: 14,-47 - 5495: 13,-48 - 5496: 13,-45 - 5497: 12,-45 - 5498: 10,-39 - 5499: 11,-39 - 5500: 0,-37 - 5501: 0,-36 - 5502: 1,-36 - 5503: 2,-38 - 5504: 0,-36 - 5505: -1,-37 - 5506: -2,-36 - 5507: -5,-36 - 5508: -4,-36 - 5509: -6,-36 - 5510: -7,-32 - 5511: -8,-32 - 5512: -7,-30 - 5513: -11,-31 - 5514: -12,-32 - 5515: -15,-32 - 5516: -16,-32 - 5517: -13,-30 - 5518: -16,-30 - 5519: -17,-30 - 5520: -22,-30 - 5521: -23,-30 - 5522: -24,-30 - 5523: -24,-29 - 5524: -24,-28 - 5525: -22,-32 - 5526: -24,-32 - 5527: -25,-32 - 5528: -26,-30 - 5529: -26,-28 - 5530: -26,-26 - 5531: -26,-24 - 5532: -24,-24 - 5533: -24,-22 - 5534: -24,-19 - 5535: -26,-21 - 5536: -26,-18 - 5537: -26,-17 - 5538: -24,-14 - 5539: -25,-15 - 5540: -27,-15 - 5541: -30,-15 - 5542: -30,-15 - 5543: -34,-15 - 5544: -35,-14 - 5545: -37,-15 - 5546: -38,-14 - 5547: -35,-15 - 5548: -34,-14 - 5549: -37,-10 - 5550: -38,-10 - 5551: -36,-9 - 5552: -29,-10 - 5553: -29,-11 - 5554: -33,-20 - 5555: -33,-18 - 5556: -32,-20 - 5557: -33,-18 - 5558: -29,-19 - 5559: -30,-21 - 5560: -29,-19 - 5561: -30,-20 - 5562: -37,-18 - 5563: -40,-18 - 5564: -39,-20 - 5565: -37,-19 - 5566: -39,-19 - 5567: -32,-26 - 5568: -35,-25 - 5569: -39,-26 - 5570: -39,-26 - 5571: -39,-27 - 5572: -40,-28 - 5573: -38,-30 - 5574: -39,-32 - 5575: -39,-33 - 5576: -37,-33 - 5577: -34,-33 - 5578: -31,-33 - 5579: -34,-34 - 5580: -30,-33 - 5581: -30,-31 - 5582: -31,-28 - 5583: -29,-27 - 5584: -29,-30 - 5585: -43,-30 - 5586: -44,-28 - 5587: -45,-31 - 5588: -46,-27 - 5589: -45,-25 - 5590: -45,-25 - 5591: -47,-25 - 5592: -49,-25 - 5593: -51,-26 - 5594: -50,-29 - 5595: -51,-30 - 5596: -51,-30 - 5597: -50,-32 - 5598: -47,-32 - 5599: -48,-33 - 5600: -44,-31 - 5601: -44,-29 - 5602: -55,-25 - 5603: -56,-25 - 5604: -55,-29 - 5605: -56,-29 - 5606: -55,-29 - 5607: -60,-27 - 5608: -60,-29 - 5609: -62,-27 - 5610: -61,-21 - 5611: -61,-21 - 5612: -54,-21 - 5613: -54,-21 - 5614: -55,-16 - 5615: -53,-14 - 5616: -54,-13 - 5617: -53,-10 - 5618: -54,-7 - 5619: -53,-5 - 5620: -55,-2 - 5621: -54,0 - 5622: -53,1 - 5623: -53,-4 - 5624: -54,-3 - 5625: -54,-4 - 5626: -54,-9 - 5627: -46,-4 - 5628: -47,-4 - 5629: -48,-3 - 5630: -50,0 - 5631: -45,1 - 5632: -47,1 - 5633: -44,1 - 5634: -47,1 - 5635: -46,7 - 5636: -49,7 - 5637: -49,11 - 5638: -46,11 - 5639: -49,10 - 5640: -48,13 - 5641: -45,11 - 5642: -54,10 - 5643: -54,9 - 5644: -53,10 - 5645: -39,1 - 5646: -37,0 - 5647: -39,-1 - 5648: -34,-1 - 5649: -37,-1 - 5650: -36,0 - 5651: -35,2 - 5652: -31,2 - 5653: -31,2 - 5654: -28,0 - 5655: -27,-1 - 5656: -27,-5 - 5657: -24,-3 - 5658: -24,1 - 5659: -22,3 - 5660: -23,-2 - 5661: -22,-3 - 5662: -17,-3 - 5663: -19,-3 - 5664: -17,-3 - 5665: -18,-4 - 5666: -14,-4 - 5667: -18,-4 - 5668: -17,-4 - 5669: -17,-4 - 5670: -19,-4 - 5671: -19,-2 - 5672: -19,-2 - 5673: -20,-3 - 5674: -20,-5 - 5675: -16,0 - 5676: -16,1 - 5677: -16,3 - 5678: -15,0 - 5679: -15,6 - 5680: -17,5 - 5681: -15,7 - 5682: -21,5 - 5683: -21,6 - 5684: -20,7 - 5685: -22,8 - 5686: -24,9 - 5687: -21,9 - 5688: -23,8 - 5689: -22,8 - 5690: -23,8 - 5691: -21,13 - 5692: -22,11 - 5693: -20,13 - 5694: -22,14 - 5695: -26,12 - 5696: -26,16 - 5697: -26,17 - 5698: -26,20 - 5699: -19,20 - 5700: -25,20 - 5701: -22,19 - 5702: -24,26 - 5703: -25,26 - 5704: -26,26 - 5705: -25,29 - 5706: -26,29 - 5707: -26,26 - 5708: -26,27 - 5709: -25,29 - 5710: -29,26 - 5711: -29,26 - 5712: -19,26 - 5713: -21,26 - 5714: -19,28 - 5715: -18,26 - 5716: -14,28 - 5717: -14,26 - 5718: -13,28 - 5719: -11,23 - 5720: -7,32 - 5721: -9,32 - 5722: -14,32 - 5723: -15,33 - 5724: -18,32 - 5725: -3,28 - 5726: -4,27 - 5727: -1,29 - 5728: -2,23 - 5729: -1,19 - 5730: -3,14 - 5731: -3,14 - 5732: -2,15 - 5733: -4,15 - 5734: -3,15 - 5735: 2,-14 - 5736: 2,-16 - 5737: -1,-17 - 5738: -2,-14 - 5739: -7,-17 - 5740: -6,-16 - 5741: -7,-19 - 5742: -7,-19 - 5743: -7,-23 - 5744: -1,-24 - 5745: 4,-20 - 5746: 6,-23 - 5747: 6,-20 - 5748: 7,-22 - 5749: 7,-20 - 5750: 11,-18 - 5751: 13,-18 - 5752: 13,-22 - 5753: 13,-22 - 5754: 12,-22 - 5755: 15,-26 - 5756: 12,-26 - 5758: 7,-30 - 5759: 8,-32 - 5760: 7,-32 - 5761: 10,-34 - 5762: 13,-33 - 5763: 16,-32 - 5764: 21,-37 - 5765: 20,-38 - 5766: 24,-38 - 5767: 25,-37 - 5768: 28,-34 - 5769: 25,-34 - 5770: 27,-29 - 5771: 24,-29 - 5772: 33,-34 - 5773: 32,-37 - 5774: 35,-37 - 5775: 38,-36 - 5776: 40,-36 - 5777: 39,-30 - 5778: 44,-25 - 5779: 43,-25 - 5780: 42,-20 - 5781: 42,-18 - 5782: 41,-16 - 5783: 38,-16 - 5784: 37,-17 - 5785: 37,-15 - 5786: 37,-17 - 5787: 37,-16 - 5788: 37,-16 - 5789: 37,-16 - 5790: 38,-4 - 5791: 33,-3 - 5792: 33,-3 - 5793: 38,7 - 5794: 36,13 - 5795: 37,13 - 5796: 35,13 - 5797: 34,13 - 5798: 34,14 - 5799: 36,13 - 5800: 36,13 - 5801: 34,14 - 5802: 35,18 - 5803: 36,18 + 5170: -34,-26 + 5171: -37,-25 + 5172: -39,-28 + 5173: -40,-28 + 5174: -40,-31 + 5175: -39,-33 + 5176: -37,-33 + 5177: -32,-33 + 5178: -29,-33 + 5179: -29,-31 + 5180: -30,-28 + 5181: -29,-27 + 5182: -25,-30 + 5183: -25,-27 + 5184: -25,-26 + 5185: -25,-23 + 5186: -24,-21 + 5187: -25,-18 + 5188: -29,-20 + 5189: -29,-19 + 5190: -33,-19 + 5191: -33,-20 + 5192: -31,-14 + 5193: -29,-15 + 5194: -33,-16 + 5195: -29,-13 + 5196: -29,-11 + 5197: -38,-11 + 5198: -37,-15 + 5199: -36,-16 + 5200: -40,-10 + 5201: -38,-17 + 5202: -47,-8 + 5203: -45,0 + 5204: -47,0 + 5205: -44,2 + 5206: -48,-2 + 5207: -47,-1 + 5208: -49,3 + 5209: -50,-1 + 5210: -45,1 + 5211: -53,4 + 5212: -48,5 + 5213: -50,6 + 5214: -47,1 + 5215: -38,-1 + 5216: -36,1 + 5217: -32,-1 + 5218: -33,0 + 5219: -24,-2 + 5220: -28,3 + 5221: -26,3 + 5222: -26,8 + 5223: -27,13 + 5224: -26,14 + 5225: -26,18 + 5226: -22,13 + 5227: -20,12 + 5228: -22,13 + 5229: -24,19 + 5230: -20,20 + 5231: -18,19 + 5232: -16,20 + 5233: -13,19 + 5234: -15,24 + 5235: -14,24 + 5236: -13,27 + 5237: -14,28 + 5238: -13,27 + 5239: -5,28 + 5240: -20,28 + 5241: -18,25 + 5242: -13,31 + 5243: -15,32 + 5244: -14,34 + 5245: -17,32 + 5246: -8,32 + 5247: -8,32 + 5248: -6,33 + 5249: -6,27 + 5250: -3,28 + 5251: -1,30 + 5252: -2,33 + 5253: -2,33 + 5254: -2,36 + 5255: -2,43 + 5256: -7,42 + 5257: -5,45 + 5258: -3,47 + 5259: 0,45 + 5260: -2,47 + 5261: -1,47 + 5262: -2,51 + 5263: 1,51 + 5264: -1,52 + 5265: 1,52 + 5266: 2,45 + 5267: 2,47 + 5268: 2,42 + 5269: 1,40 + 5270: 6,41 + 5271: 8,39 + 5272: 6,41 + 5273: 5,31 + 5274: 3,31 + 5275: 5,30 + 5276: 4,30 + 5277: 3,26 + 5278: 2,27 + 5279: 4,25 + 5280: 3,23 + 5281: 2,24 + 5282: 1,23 + 5283: -2,24 + 5284: 1,21 + 5285: -1,19 + 5286: 4,20 + 5287: 9,20 + 5288: 9,20 + 5289: 15,19 + 5290: 11,24 + 5291: 14,23 + 5292: 14,25 + 5293: 15,24 + 5294: 14,29 + 5295: 14,31 + 5296: 17,25 + 5297: 17,23 + 5298: 16,20 + 5299: 20,20 + 5300: 20,18 + 5301: 20,15 + 5302: 21,15 + 5303: 20,12 + 5304: 22,12 + 5305: 20,11 + 5306: 27,12 + 5307: 27,11 + 5308: 26,14 + 5309: 25,19 + 5310: 30,19 + 5311: 31,16 + 5312: 31,12 + 5313: 35,14 + 5314: 35,14 + 5315: 35,14 + 5316: 32,8 + 5317: 34,9 + 5318: 32,7 + 5319: 26,7 + 5320: 24,7 + 5321: 24,3 + 5322: 24,2 + 5323: 23,2 + 5324: 20,6 + 5325: 20,9 + 5326: 23,3 + 5327: 32,3 + 5328: 34,2 + 5329: 32,-2 + 5330: 32,-2 + 5331: 32,-4 + 5332: 37,-4 + 5333: 36,3 + 5334: 42,2 + 5335: 38,-2 + 5336: 42,-5 + 5337: 42,-2 + 5338: 42,-4 + 5339: 43,6 + 5340: 52,12 + 5341: 50,14 + 5342: 50,7 + 5343: 53,14 + 5344: 59,15 + 5345: 60,17 + 5346: 55,7 + 5347: 54,7 + 5348: 50,7 + 5349: 49,0 + 5350: 45,-1 + 5351: 46,-5 + 5352: 46,-8 + 5353: 50,-4 + 5354: 50,-7 + 5355: 55,-5 + 5356: 53,-5 + 5357: 59,-14 + 5358: 60,-14 + 5359: 59,-14 + 5360: 59,-18 + 5361: 59,-20 + 5362: 60,-18 + 5363: 60,-17 + 5364: 64,-13 + 5365: 64,-17 + 5366: 65,-19 + 5367: 64,-19 + 5368: 64,-25 + 5369: 65,-24 + 5370: 63,-26 + 5371: 63,-24 + 5372: 62,-26 + 5373: 64,-26 + 5374: 70,-28 + 5375: 71,-26 + 5376: 69,-27 + 5377: 69,-23 + 5378: 70,-24 + 5379: 69,-22 + 5380: 66,-18 + 5381: 70,-18 + 5382: 71,-17 + 5383: 69,-13 + 5384: 71,-14 + 5385: 69,-12 + 5386: 70,-14 + 5387: 76,-17 + 5388: 77,-18 + 5389: 74,-15 + 5390: 76,-14 + 5391: 74,-14 + 5392: 68,-8 + 5393: 70,-10 + 5394: 76,-6 + 5395: 48,-25 + 5396: 48,-26 + 5397: 48,-27 + 5398: 48,-30 + 5399: 48,-31 + 5400: 47,-31 + 5401: 49,-34 + 5402: 47,-36 + 5403: 46,-36 + 5404: 44,-37 + 5405: 42,-35 + 5406: 42,-36 + 5407: 38,-36 + 5408: 38,-35 + 5409: 37,-37 + 5410: 32,-35 + 5411: 32,-36 + 5412: 32,-33 + 5413: 33,-31 + 5414: 32,-31 + 5415: 33,-27 + 5416: 32,-25 + 5417: 33,-24 + 5418: 35,-26 + 5419: 37,-26 + 5420: 41,-25 + 5421: 40,-26 + 5422: 41,-29 + 5423: 40,-29 + 5424: 40,-31 + 5425: 43,-29 + 5426: 44,-31 + 5427: 45,-30 + 5428: 27,-34 + 5429: 25,-34 + 5430: 24,-32 + 5431: 26,-29 + 5432: 23,-29 + 5433: 23,-31 + 5434: 25,-38 + 5435: 24,-37 + 5436: 22,-38 + 5437: 21,-37 + 5438: 21,-38 + 5439: 29,-39 + 5440: 28,-41 + 5441: 29,-44 + 5442: 28,-42 + 5443: 28,-45 + 5444: 26,-45 + 5445: 27,-44 + 5446: 24,-43 + 5447: 25,-46 + 5448: 27,-45 + 5449: 25,-46 + 5450: 32,-30 + 5451: 33,-28 + 5452: 36,-26 + 5453: 35,-26 + 5454: 36,-23 + 5455: 36,-30 + 5456: 42,-28 + 5457: 43,-29 + 5458: 52,-31 + 5459: 52,-35 + 5460: 55,-29 + 5461: 55,-30 + 5462: 57,-30 + 5463: 55,-34 + 5464: 55,-34 + 5465: 55,-36 + 5466: 57,-34 + 5467: 20,-45 + 5468: 17,-44 + 5469: 18,-45 + 5470: 19,-46 + 5471: 18,-48 + 5472: 19,-49 + 5473: 18,-50 + 5474: 20,-53 + 5475: 18,-54 + 5476: 17,-54 + 5477: 16,-54 + 5478: 16,-58 + 5479: 16,-59 + 5480: 19,-58 + 5481: 21,-58 + 5482: 21,-59 + 5483: 13,-47 + 5484: 14,-47 + 5485: 13,-48 + 5486: 13,-45 + 5487: 12,-45 + 5488: 10,-39 + 5489: 11,-39 + 5490: 0,-37 + 5491: 0,-36 + 5492: 1,-36 + 5493: 2,-38 + 5494: 0,-36 + 5495: -1,-37 + 5496: -2,-36 + 5497: -5,-36 + 5498: -4,-36 + 5499: -6,-36 + 5500: -7,-32 + 5501: -8,-32 + 5502: -7,-30 + 5503: -11,-31 + 5504: -12,-32 + 5505: -15,-32 + 5506: -16,-32 + 5507: -13,-30 + 5508: -16,-30 + 5509: -17,-30 + 5510: -22,-30 + 5511: -23,-30 + 5512: -24,-30 + 5513: -24,-29 + 5514: -24,-28 + 5515: -22,-32 + 5516: -24,-32 + 5517: -25,-32 + 5518: -26,-30 + 5519: -26,-28 + 5520: -26,-26 + 5521: -26,-24 + 5522: -24,-24 + 5523: -24,-22 + 5524: -24,-19 + 5525: -26,-21 + 5526: -26,-18 + 5527: -26,-17 + 5528: -24,-14 + 5529: -25,-15 + 5530: -27,-15 + 5531: -30,-15 + 5532: -30,-15 + 5533: -34,-15 + 5534: -35,-14 + 5535: -37,-15 + 5536: -38,-14 + 5537: -35,-15 + 5538: -34,-14 + 5539: -37,-10 + 5540: -38,-10 + 5541: -36,-9 + 5542: -29,-10 + 5543: -29,-11 + 5544: -33,-20 + 5545: -33,-18 + 5546: -32,-20 + 5547: -33,-18 + 5548: -29,-19 + 5549: -30,-21 + 5550: -29,-19 + 5551: -30,-20 + 5552: -37,-18 + 5553: -40,-18 + 5554: -39,-20 + 5555: -37,-19 + 5556: -39,-19 + 5557: -32,-26 + 5558: -35,-25 + 5559: -39,-26 + 5560: -39,-26 + 5561: -39,-27 + 5562: -40,-28 + 5563: -38,-30 + 5564: -39,-32 + 5565: -39,-33 + 5566: -37,-33 + 5567: -34,-33 + 5568: -31,-33 + 5569: -34,-34 + 5570: -30,-33 + 5571: -30,-31 + 5572: -31,-28 + 5573: -29,-27 + 5574: -29,-30 + 5575: -43,-30 + 5576: -44,-28 + 5577: -45,-31 + 5578: -46,-27 + 5579: -45,-25 + 5580: -45,-25 + 5581: -47,-25 + 5582: -49,-25 + 5583: -51,-26 + 5584: -50,-29 + 5585: -51,-30 + 5586: -51,-30 + 5587: -50,-32 + 5588: -47,-32 + 5589: -48,-33 + 5590: -44,-31 + 5591: -44,-29 + 5592: -55,-25 + 5593: -56,-25 + 5594: -55,-29 + 5595: -56,-29 + 5596: -55,-29 + 5597: -60,-27 + 5598: -60,-29 + 5599: -62,-27 + 5600: -61,-21 + 5601: -61,-21 + 5602: -54,-21 + 5603: -54,-21 + 5604: -55,-16 + 5605: -53,-14 + 5606: -54,-13 + 5607: -53,-10 + 5608: -54,-7 + 5609: -53,-5 + 5610: -55,-2 + 5611: -54,0 + 5612: -53,1 + 5613: -53,-4 + 5614: -54,-3 + 5615: -54,-4 + 5616: -54,-9 + 5617: -46,-4 + 5618: -47,-4 + 5619: -48,-3 + 5620: -50,0 + 5621: -45,1 + 5622: -47,1 + 5623: -44,1 + 5624: -47,1 + 5625: -46,7 + 5626: -49,7 + 5627: -49,11 + 5628: -46,11 + 5629: -49,10 + 5630: -48,13 + 5631: -45,11 + 5632: -54,10 + 5633: -54,9 + 5634: -53,10 + 5635: -39,1 + 5636: -37,0 + 5637: -39,-1 + 5638: -34,-1 + 5639: -37,-1 + 5640: -36,0 + 5641: -35,2 + 5642: -31,2 + 5643: -31,2 + 5644: -28,0 + 5645: -27,-1 + 5646: -27,-5 + 5647: -24,-3 + 5648: -24,1 + 5649: -22,3 + 5650: -23,-2 + 5651: -22,-3 + 5652: -17,-3 + 5653: -19,-3 + 5654: -17,-3 + 5655: -18,-4 + 5656: -14,-4 + 5657: -18,-4 + 5658: -17,-4 + 5659: -17,-4 + 5660: -19,-4 + 5661: -19,-2 + 5662: -19,-2 + 5663: -20,-3 + 5664: -20,-5 + 5665: -16,0 + 5666: -16,1 + 5667: -16,3 + 5668: -15,0 + 5669: -15,6 + 5670: -17,5 + 5671: -15,7 + 5672: -21,5 + 5673: -21,6 + 5674: -20,7 + 5675: -22,8 + 5676: -24,9 + 5677: -21,9 + 5678: -23,8 + 5679: -22,8 + 5680: -23,8 + 5681: -21,13 + 5682: -22,11 + 5683: -20,13 + 5684: -22,14 + 5685: -26,12 + 5686: -26,16 + 5687: -26,17 + 5688: -26,20 + 5689: -19,20 + 5690: -25,20 + 5691: -22,19 + 5692: -24,26 + 5693: -25,26 + 5694: -26,26 + 5695: -25,29 + 5696: -26,29 + 5697: -26,26 + 5698: -26,27 + 5699: -25,29 + 5700: -29,26 + 5701: -29,26 + 5702: -19,26 + 5703: -21,26 + 5704: -19,28 + 5705: -18,26 + 5706: -14,28 + 5707: -14,26 + 5708: -13,28 + 5709: -11,23 + 5710: -7,32 + 5711: -9,32 + 5712: -14,32 + 5713: -15,33 + 5714: -18,32 + 5715: -3,28 + 5716: -4,27 + 5717: -1,29 + 5718: -2,23 + 5719: -1,19 + 5720: -3,14 + 5721: -3,14 + 5722: -2,15 + 5723: -4,15 + 5724: -3,15 + 5725: 2,-14 + 5726: 2,-16 + 5727: -1,-17 + 5728: -2,-14 + 5729: -7,-17 + 5730: -6,-16 + 5731: -7,-19 + 5732: -7,-19 + 5733: -7,-23 + 5734: -1,-24 + 5735: 4,-20 + 5736: 6,-23 + 5737: 6,-20 + 5738: 7,-22 + 5739: 7,-20 + 5740: 11,-18 + 5741: 13,-18 + 5742: 13,-22 + 5743: 13,-22 + 5744: 12,-22 + 5745: 15,-26 + 5746: 12,-26 + 5747: 7,-30 + 5748: 8,-32 + 5749: 7,-32 + 5750: 10,-34 + 5751: 13,-33 + 5752: 16,-32 + 5753: 21,-37 + 5754: 20,-38 + 5755: 24,-38 + 5756: 25,-37 + 5757: 28,-34 + 5758: 25,-34 + 5759: 27,-29 + 5760: 24,-29 + 5761: 33,-34 + 5762: 32,-37 + 5763: 35,-37 + 5764: 38,-36 + 5765: 40,-36 + 5766: 39,-30 + 5767: 44,-25 + 5768: 43,-25 + 5769: 42,-20 + 5770: 42,-18 + 5771: 41,-16 + 5772: 38,-16 + 5773: 37,-17 + 5774: 37,-15 + 5775: 37,-17 + 5776: 37,-16 + 5777: 37,-16 + 5778: 37,-16 + 5779: 38,-4 + 5780: 33,-3 + 5781: 33,-3 + 5782: 38,7 + 5783: 36,13 + 5784: 37,13 + 5785: 35,13 + 5786: 34,13 + 5787: 34,14 + 5788: 36,13 + 5789: 36,13 + 5790: 34,14 + 5791: 35,18 + 5792: 36,18 - node: cleanable: True color: '#D4D4D447' id: Dirt decals: - 6405: 37,-3 - 6406: 37,-2 - 6407: 37,-2 - 6408: 38,-3 - 6409: 39,-2 - 6410: 39,-2 - 6411: 38,-3 - 6412: 38,-2 - 6413: 36,-3 - 6414: 36,-3 - 6415: 36,-2 - 6416: 36,-2 - 6417: 39,-3 - 6418: 37,-3 - 6419: 37,-3 + 6371: 37,-3 + 6372: 37,-2 + 6373: 37,-2 + 6374: 38,-3 + 6375: 39,-2 + 6376: 39,-2 + 6377: 38,-3 + 6378: 38,-2 + 6379: 36,-3 + 6380: 36,-3 + 6381: 36,-2 + 6382: 36,-2 + 6383: 39,-3 + 6384: 37,-3 + 6385: 37,-3 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 5815: 51,20 - 5816: 50,21 - 5853: 81,-34 - 5854: 83,-35 - 5855: 81,-34 - 5856: 81,-34 - 5857: 83,-35 - 5858: 81,-35 - 5859: 82,-35 - 5860: 82,-35 - 5861: 80,-35 - 5862: 83,-36 - 5867: 82,-34 - 6386: -25,-42 + 5804: 51,20 + 5805: 50,21 + 5842: 81,-34 + 5843: 83,-35 + 5844: 81,-34 + 5845: 81,-34 + 5846: 83,-35 + 5847: 81,-35 + 5848: 82,-35 + 5849: 82,-35 + 5850: 80,-35 + 5851: 83,-36 + 5856: 82,-34 + 6352: -25,-42 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Dirt decals: - 2849: -44,16 - 2850: -43,17 - 2851: -41,14 + 2843: -44,16 + 2844: -43,17 + 2845: -41,14 - node: cleanable: True color: '#1D1D21FF' id: DirtHeavy decals: - 2791: -39,26 - 2792: -40,29 - 2793: -38,28 - 2794: -36,29 - 2795: -35,27 - 2796: -35,26 - 2797: -35,26 - 2798: -37,26 - 2799: -37,26 - 2800: -37,25 - 2801: -39,26 - 2802: -34,25 - 2803: -34,25 - 2804: -36,24 + 2785: -39,26 + 2786: -40,29 + 2787: -38,28 + 2788: -36,29 + 2789: -35,27 + 2790: -35,26 + 2791: -35,26 + 2792: -37,26 + 2793: -37,26 + 2794: -37,25 + 2795: -39,26 + 2796: -34,25 + 2797: -34,25 + 2798: -36,24 - node: cleanable: True color: '#835432FF' id: DirtHeavy decals: - 2783: -36,26 - 2784: -35,27 - 2785: -37,26 - 2786: -37,27 - 2787: -37,25 - 2788: -39,26 - 2789: -38,27 - 2790: -38,28 + 2777: -36,26 + 2778: -35,27 + 2779: -37,26 + 2780: -37,27 + 2781: -37,25 + 2782: -39,26 + 2783: -38,27 + 2784: -38,28 - node: cleanable: True angle: -6.283185307179586 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 6279: 89,-20 - 6280: 87,-21 - 6281: 92,-21 + 6268: 89,-20 + 6269: 87,-21 + 6270: 92,-21 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 3457: -60,-66 - 3458: -59,-65 - 3459: -59,-63 - 3460: -59,-61 - 3461: -59,-59 - 3462: -59,-57 - 3463: -60,-57 - 3464: -57,-57 - 3465: -58,-58 - 3466: -56,-57 - 3467: -56,-58 - 3468: -56,-60 - 3469: -56,-62 - 3470: -56,-64 - 3471: -56,-66 - 3472: -58,-66 - 3473: -55,-56 - 3474: -54,-54 - 3475: -54,-52 - 3476: -54,-50 - 3477: -56,-53 - 3478: -56,-52 - 3479: -56,-47 - 3480: -53,-48 - 3481: -52,-46 - 3482: -54,-46 - 3483: -51,-46 - 3484: -50,-48 - 3485: -47,-48 - 3486: -45,-48 - 3487: -43,-46 - 3488: -45,-46 - 3489: -43,-48 - 3490: -42,-48 - 3491: -40,-48 - 3492: -40,-50 - 3493: -40,-52 - 3494: -40,-54 - 3495: -42,-51 - 3496: -42,-53 - 3497: -42,-54 - 3498: -41,-56 - 3499: -39,-57 - 3500: -40,-58 - 3501: -37,-57 - 3502: -37,-58 - 3503: -37,-61 - 3504: -37,-64 - 3505: -37,-65 - 3506: -36,-65 - 3507: -36,-66 - 3508: -39,-66 - 3509: -40,-65 - 3510: -40,-63 - 3511: -40,-60 - 3512: -47,-44 - 3513: -47,-42 - 3514: -47,-39 - 3515: -47,-35 - 3516: -47,-33 - 3517: -49,-33 - 3518: -49,-37 - 3519: -49,-39 - 3520: -49,-41 - 3521: -49,-44 - 3522: -49,-44 - 3523: -49,-43 - 3524: -44,-32 - 3525: -44,-30 - 3526: -43,-31 - 3527: -43,-27 - 3528: -44,-26 - 3529: -43,-26 - 3530: -44,-25 - 3531: -52,-32 - 3532: -52,-30 - 3533: -52,-29 - 3534: -52,-25 - 3535: -52,-22 - 3536: -54,-22 - 3537: -55,-22 - 3538: -52,-20 - 3539: -50,-20 - 3540: -47,-20 - 3541: -46,-20 - 3542: -45,-20 - 3543: -44,-20 - 3544: -44,-22 - 3545: -51,-18 - 3546: -51,-17 - 3547: -49,-17 - 3548: -48,-15 - 3549: -48,-13 - 3550: -50,-13 - 3551: -51,-14 - 3552: -51,-15 - 3553: -44,-15 - 3554: -46,-15 - 3555: -46,-14 - 3556: -54,-24 - 3557: -56,-24 - 3558: -54,-30 - 3559: -56,-29 - 3560: -57,-28 - 3561: -54,-28 - 3562: -61,-29 - 3563: -59,-29 - 3564: -59,-27 - 3565: -59,-25 - 3566: -61,-25 - 3567: -55,-17 - 3568: -55,-15 - 3569: -55,-13 - 3570: -55,-10 - 3571: -53,-17 - 3572: -53,-14 - 3573: -53,-12 - 3574: -53,-11 - 3575: -53,-9 - 3576: -53,-7 - 3577: -53,-6 - 3578: -53,-4 - 3579: -55,-3 - 3580: -55,-7 - 3581: -55,-8 - 3582: -53,0 - 3583: -53,-2 - 3584: -51,-4 - 3585: -49,-4 - 3586: -50,-5 - 3587: -48,-5 - 3596: -53,2 - 3597: -53,4 - 3598: -53,6 - 3599: -53,7 - 3600: -55,7 - 3601: -55,5 - 3602: -55,-1 - 3603: -51,6 - 3604: -50,7 - 3605: -47,7 - 3606: -48,6 - 3607: -46,6 - 3608: -45,7 - 3609: -47,9 - 3610: -45,9 - 3611: -44,9 - 3612: -50,9 - 3613: -50,9 - 3614: -51,11 - 3615: -51,13 - 3616: -50,13 - 3617: -48,13 - 3618: -46,13 - 3619: -48,12 - 3620: -43,11 - 3621: -44,12 - 3622: -43,13 - 3623: -43,12 - 3624: -54,10 - 3625: -53,9 - 3626: -54,9 - 3649: -40,2 - 3650: -39,1 - 3651: -39,1 - 3652: -40,-1 - 3653: -38,-1 - 3654: -40,-2 - 3655: -39,-2 - 3656: -40,-4 - 3657: -39,-5 - 3658: -38,-5 - 3659: -37,-5 - 3660: -38,-4 - 3661: -36,-3 - 3662: -36,-2 - 3663: -36,-4 - 3664: -34,-1 - 3665: -32,0 - 3666: -35,0 - 3667: -39,3 - 3668: -40,4 - 3669: -38,4 - 3670: -31,2 - 3671: -31,-1 - 3672: -29,0 - 3673: -28,-3 - 3674: -28,-4 - 3675: -26,-5 - 3676: -27,-2 - 3677: -27,-3 - 3678: -29,0 - 3679: -27,0 - 3680: -27,2 - 3681: -28,3 - 3682: -27,3 - 3683: -27,1 - 3684: -26,-1 - 3685: -32,-1 - 3686: -28,4 - 3687: -26,5 - 3688: -26,6 - 3689: -26,3 - 3690: -26,3 - 3691: -24,2 - 3692: -23,1 - 3693: -25,0 - 3694: -23,-2 - 3695: -25,-3 - 3696: -23,-3 - 3697: -25,-4 - 3698: -23,-5 - 3699: -25,-5 - 3700: -24,-1 - 3701: -25,-1 - 3702: -23,3 - 3703: -15,-1 - 3704: -16,-1 - 3705: -15,0 - 3706: -16,1 - 3707: -16,3 - 3708: -15,3 - 3709: -15,2 - 3710: -15,1 - 3711: -15,1 - 3712: -27,6 - 3713: -27,7 - 3714: -27,9 - 3715: -20,5 - 3716: -21,5 - 3721: -17,5 - 3722: -16,5 - 3723: -16,5 - 3724: -22,11 - 3725: -21,11 - 3726: -22,13 - 3727: -20,14 - 3728: -22,13 - 3729: -22,15 - 3730: -20,14 - 3731: -20,13 - 3732: -20,12 - 3733: -19,11 - 3734: -22,14 - 3735: -23,14 - 3736: -17,11 + 3448: -60,-66 + 3449: -59,-65 + 3450: -59,-63 + 3451: -59,-61 + 3452: -59,-59 + 3453: -59,-57 + 3454: -60,-57 + 3455: -57,-57 + 3456: -58,-58 + 3457: -56,-57 + 3458: -56,-58 + 3459: -56,-60 + 3460: -56,-62 + 3461: -56,-64 + 3462: -56,-66 + 3463: -58,-66 + 3464: -55,-56 + 3465: -54,-54 + 3466: -54,-52 + 3467: -54,-50 + 3468: -56,-53 + 3469: -56,-52 + 3470: -56,-47 + 3471: -53,-48 + 3472: -52,-46 + 3473: -54,-46 + 3474: -51,-46 + 3475: -50,-48 + 3476: -47,-48 + 3477: -45,-48 + 3478: -43,-46 + 3479: -45,-46 + 3480: -43,-48 + 3481: -42,-48 + 3482: -40,-48 + 3483: -40,-50 + 3484: -40,-52 + 3485: -40,-54 + 3486: -42,-51 + 3487: -42,-53 + 3488: -42,-54 + 3489: -41,-56 + 3490: -39,-57 + 3491: -40,-58 + 3492: -37,-57 + 3493: -37,-58 + 3494: -37,-61 + 3495: -37,-64 + 3496: -37,-65 + 3497: -36,-65 + 3498: -36,-66 + 3499: -39,-66 + 3500: -40,-65 + 3501: -40,-63 + 3502: -40,-60 + 3503: -47,-44 + 3504: -47,-42 + 3505: -47,-39 + 3506: -47,-35 + 3507: -47,-33 + 3508: -49,-33 + 3509: -49,-37 + 3510: -49,-39 + 3511: -49,-41 + 3512: -49,-44 + 3513: -49,-44 + 3514: -49,-43 + 3515: -44,-32 + 3516: -44,-30 + 3517: -43,-31 + 3518: -43,-27 + 3519: -44,-26 + 3520: -43,-26 + 3521: -44,-25 + 3522: -52,-32 + 3523: -52,-30 + 3524: -52,-29 + 3525: -52,-25 + 3526: -52,-22 + 3527: -54,-22 + 3528: -55,-22 + 3529: -52,-20 + 3530: -50,-20 + 3531: -47,-20 + 3532: -46,-20 + 3533: -45,-20 + 3534: -44,-20 + 3535: -44,-22 + 3536: -51,-18 + 3537: -51,-17 + 3538: -49,-17 + 3539: -48,-15 + 3540: -48,-13 + 3541: -50,-13 + 3542: -51,-14 + 3543: -51,-15 + 3544: -44,-15 + 3545: -46,-15 + 3546: -46,-14 + 3547: -54,-24 + 3548: -56,-24 + 3549: -54,-30 + 3550: -56,-29 + 3551: -57,-28 + 3552: -54,-28 + 3553: -61,-29 + 3554: -59,-29 + 3555: -59,-27 + 3556: -59,-25 + 3557: -61,-25 + 3558: -55,-17 + 3559: -55,-15 + 3560: -55,-13 + 3561: -55,-10 + 3562: -53,-17 + 3563: -53,-14 + 3564: -53,-12 + 3565: -53,-11 + 3566: -53,-9 + 3567: -53,-7 + 3568: -53,-6 + 3569: -53,-4 + 3570: -55,-3 + 3571: -55,-7 + 3572: -55,-8 + 3573: -53,0 + 3574: -53,-2 + 3575: -51,-4 + 3576: -49,-4 + 3577: -50,-5 + 3578: -48,-5 + 3587: -53,2 + 3588: -53,4 + 3589: -53,6 + 3590: -53,7 + 3591: -55,7 + 3592: -55,5 + 3593: -55,-1 + 3594: -51,6 + 3595: -50,7 + 3596: -47,7 + 3597: -48,6 + 3598: -46,6 + 3599: -45,7 + 3600: -47,9 + 3601: -45,9 + 3602: -44,9 + 3603: -50,9 + 3604: -50,9 + 3605: -51,11 + 3606: -51,13 + 3607: -50,13 + 3608: -48,13 + 3609: -46,13 + 3610: -48,12 + 3611: -43,11 + 3612: -44,12 + 3613: -43,13 + 3614: -43,12 + 3615: -54,10 + 3616: -53,9 + 3617: -54,9 + 3640: -40,2 + 3641: -39,1 + 3642: -39,1 + 3643: -40,-1 + 3644: -38,-1 + 3645: -40,-2 + 3646: -39,-2 + 3647: -40,-4 + 3648: -39,-5 + 3649: -38,-5 + 3650: -37,-5 + 3651: -38,-4 + 3652: -36,-3 + 3653: -36,-2 + 3654: -36,-4 + 3655: -34,-1 + 3656: -32,0 + 3657: -35,0 + 3658: -39,3 + 3659: -40,4 + 3660: -38,4 + 3661: -31,2 + 3662: -31,-1 + 3663: -29,0 + 3664: -28,-3 + 3665: -28,-4 + 3666: -26,-5 + 3667: -27,-2 + 3668: -27,-3 + 3669: -29,0 + 3670: -27,0 + 3671: -27,2 + 3672: -28,3 + 3673: -27,3 + 3674: -27,1 + 3675: -26,-1 + 3676: -32,-1 + 3677: -28,4 + 3678: -26,5 + 3679: -26,6 + 3680: -26,3 + 3681: -26,3 + 3682: -24,2 + 3683: -23,1 + 3684: -25,0 + 3685: -23,-2 + 3686: -25,-3 + 3687: -23,-3 + 3688: -25,-4 + 3689: -23,-5 + 3690: -25,-5 + 3691: -24,-1 + 3692: -25,-1 + 3693: -23,3 + 3694: -15,-1 + 3695: -16,-1 + 3696: -15,0 + 3697: -16,1 + 3698: -16,3 + 3699: -15,3 + 3700: -15,2 + 3701: -15,1 + 3702: -15,1 + 3703: -27,6 + 3704: -27,7 + 3705: -27,9 + 3706: -20,5 + 3707: -21,5 + 3712: -17,5 + 3713: -16,5 + 3714: -16,5 + 3715: -22,11 + 3716: -21,11 + 3717: -22,13 + 3718: -20,14 + 3719: -22,13 + 3720: -22,15 + 3721: -20,14 + 3722: -20,13 + 3723: -20,12 + 3724: -19,11 + 3725: -22,14 + 3726: -23,14 + 3727: -17,11 + 3728: -17,11 + 3729: -17,12 + 3730: -16,11 + 3731: -16,12 + 3732: -17,13 + 3733: -16,14 + 3734: -17,14 + 3735: -16,12 + 3736: -17,12 3737: -17,11 - 3738: -17,12 - 3739: -16,11 - 3740: -16,12 - 3741: -17,13 - 3742: -16,14 - 3743: -17,14 - 3744: -16,12 - 3745: -17,12 - 3746: -17,11 - 3749: -39,11 - 3750: -27,11 - 3751: -27,13 - 3752: -27,16 - 3753: -27,17 - 3754: -27,19 - 3755: -27,20 - 3756: -27,21 - 3757: -25,18 - 3758: -25,16 - 3759: -25,14 - 3760: -25,12 - 3761: -25,11 - 3762: -24,18 - 3763: -22,18 - 3764: -23,17 - 3765: -21,17 - 3766: -20,18 - 3767: -19,17 - 3768: -20,20 - 3769: -22,20 - 3770: -24,20 - 3771: -20,21 - 3772: -17,19 - 3773: -16,19 - 3774: -14,19 - 3775: -17,21 - 3776: -15,21 - 3777: -13,21 - 3778: -11,21 - 3779: -13,19 - 3780: -10,19 - 3781: -8,19 - 3782: -6,19 - 3783: -9,21 - 3784: -7,21 - 3785: -5,21 - 3786: -3,21 - 3787: 0,21 - 3788: -5,19 - 3789: -2,19 - 3790: 0,19 - 3791: 0,21 - 3792: 2,21 - 3793: 5,21 - 3794: 6,21 - 3795: 2,19 - 3796: 4,19 - 3797: 7,19 - 3798: 10,19 - 3799: 8,21 - 3800: 10,21 - 3801: 11,21 - 3802: 13,21 - 3803: 12,19 - 3804: 14,19 - 3805: 15,19 - 3806: 17,19 - 3807: 15,23 - 3808: 14,23 - 3809: 13,24 - 3810: 15,25 - 3811: 15,24 - 3812: 11,23 - 3813: 10,23 - 3814: 11,24 - 3815: 17,23 - 3816: 17,25 - 3817: 17,25 - 3818: 18,19 - 3819: 19,19 - 3820: 19,21 - 3821: 17,21 - 3822: 16,21 - 3823: 21,20 - 3824: 21,18 - 3825: 21,17 - 3826: 19,18 - 3827: 19,15 - 3828: 19,12 - 3829: 19,11 - 3830: 21,16 - 3831: 21,13 - 3832: 21,12 - 3833: 21,10 - 3834: 21,8 - 3835: 21,7 - 3836: 19,9 - 3837: 19,7 - 3838: 19,6 - 3839: 23,10 - 3840: 24,10 - 3841: 26,10 - 3842: 27,10 - 3843: 28,7 - 3844: 27,8 - 3845: 27,6 - 3846: 28,6 - 3847: 30,6 - 3848: 30,8 - 3849: 30,9 - 3850: 30,10 - 3851: 33,10 - 3852: 34,10 - 3853: 31,12 - 3854: 31,13 - 3855: 30,14 - 3856: 31,17 - 3857: 30,17 - 3858: 31,19 - 3859: 31,20 - 3860: 31,22 - 3861: 30,22 - 3862: 28,22 - 3863: 29,23 - 3864: 26,22 - 3865: 24,22 - 3866: 23,22 - 3867: 23,23 - 3868: 23,20 - 3869: 23,18 - 3870: 25,18 - 3871: 25,17 - 3872: 26,18 - 3873: 27,17 - 3874: 27,20 - 3875: 29,18 - 3876: 27,18 - 3877: 30,17 - 3878: 33,22 - 3879: 35,22 - 3880: 33,19 - 3881: 33,18 - 3882: 35,18 - 3883: 36,17 - 3884: 34,17 - 3885: 35,17 - 3886: 33,13 - 3887: 33,15 - 3888: 33,15 - 3889: 32,13 - 3890: 26,7 - 3891: 23,2 - 3892: 26,2 - 3893: 20,2 - 3894: 21,2 - 3895: 19,4 - 3901: 31,2 - 3902: 33,2 - 3903: 33,4 - 3904: 32,4 - 3905: 35,4 - 3906: 37,4 - 3907: 37,2 - 3908: 40,2 - 3909: 41,2 - 3910: 41,1 - 3911: 38,2 - 3912: 39,-4 - 3913: 37,-4 - 3914: 39,-5 - 3915: 33,-1 - 3916: 31,-1 - 3917: 31,0 - 3918: 33,0 - 3919: 32,1 - 3920: 38,7 - 3921: 54,14 - 3922: 58,14 - 3923: 59,14 - 3924: 60,14 - 3925: 58,16 - 3926: 55,10 - 3927: 55,12 - 3928: 54,12 - 3929: 54,6 - 3930: 59,3 - 3931: 60,4 - 3932: 59,0 - 3933: 55,-5 - 3934: 56,-4 - 3935: 41,-1 - 3936: 41,-3 - 3937: 41,-5 - 3938: 41,-7 - 3939: 41,-10 - 3940: 41,-11 - 3941: 43,-12 - 3942: 43,-14 - 3943: 43,-16 - 3944: 43,-17 - 3945: 41,-15 - 3946: 41,-16 - 3947: 41,-17 - 3948: 41,-19 - 3949: 40,-19 - 3950: 40,-21 - 3951: 42,-21 - 3952: 43,-21 - 3953: 45,-21 - 3958: 45,-19 - 3959: 47,-19 - 3960: 48,-19 - 3961: 51,-19 - 3962: 47,-21 - 3963: 49,-21 - 3964: 47,-22 - 3965: 51,-21 - 3966: 59,-21 - 3967: 60,-21 - 3968: 61,-20 - 3969: 59,-19 - 3970: 61,-19 - 3971: 60,-17 - 3972: 60,-17 - 3973: 58,-18 - 3974: 58,-19 - 3975: 56,-19 - 3976: 55,-19 - 3977: 53,-19 - 3978: 60,-15 - 3979: 58,-15 - 3980: 59,-14 - 3981: 57,-13 - 3982: 57,-12 - 3983: 60,-13 - 3984: 60,-12 - 3985: 60,-14 - 3986: 61,-13 - 3987: 63,-13 - 3988: 64,-12 - 3989: 65,-14 - 3990: 63,-14 - 3991: 63,-16 - 3992: 65,-16 - 3993: 65,-18 - 3994: 65,-20 - 3995: 63,-18 - 3996: 63,-20 - 3997: 63,-21 - 3998: 65,-21 - 3999: 62,-23 - 4000: 61,-24 - 4001: 64,-24 - 4002: 63,-25 - 4003: 64,-26 - 4004: 65,-27 - 4005: 66,-26 - 4006: 65,-24 - 4007: 65,-23 - 4008: 65,-23 - 4012: 68,-21 - 4013: 69,-21 - 4014: 69,-23 - 4015: 69,-24 - 4017: 69,-27 - 4018: 70,-26 - 4019: 70,-26 - 4020: 71,-27 - 4021: 71,-28 - 4022: 70,-28 - 4023: 68,-28 - 4024: 69,-29 - 4025: 70,-30 - 4026: 69,-30 - 4027: 70,-29 - 4028: 70,-29 - 4029: 70,-29 - 4030: 71,-30 - 4031: 71,-17 - 4032: 68,-17 - 4033: 67,-19 - 4034: 70,-17 - 4035: 70,-19 - 4036: 71,-18 - 4037: 68,-18 - 4038: 69,-19 - 4058: 69,-9 - 4059: 68,-9 - 4060: 67,-9 - 4061: 70,-10 - 4062: 77,-18 - 4063: 75,-18 - 4064: 76,-19 - 4065: 77,-18 - 4066: 76,-17 - 4067: 76,-15 - 4068: 75,-15 - 4069: 76,-13 - 4070: 77,-14 - 4071: 74,-14 + 3740: -39,11 + 3741: -27,11 + 3742: -27,13 + 3743: -27,16 + 3744: -27,17 + 3745: -27,19 + 3746: -27,20 + 3747: -27,21 + 3748: -25,18 + 3749: -25,16 + 3750: -25,14 + 3751: -25,12 + 3752: -25,11 + 3753: -24,18 + 3754: -22,18 + 3755: -23,17 + 3756: -21,17 + 3757: -20,18 + 3758: -19,17 + 3759: -20,20 + 3760: -22,20 + 3761: -24,20 + 3762: -20,21 + 3763: -17,19 + 3764: -16,19 + 3765: -14,19 + 3766: -17,21 + 3767: -15,21 + 3768: -13,21 + 3769: -11,21 + 3770: -13,19 + 3771: -10,19 + 3772: -8,19 + 3773: -6,19 + 3774: -9,21 + 3775: -7,21 + 3776: -5,21 + 3777: -3,21 + 3778: 0,21 + 3779: -5,19 + 3780: -2,19 + 3781: 0,19 + 3782: 0,21 + 3783: 2,21 + 3784: 5,21 + 3785: 6,21 + 3786: 2,19 + 3787: 4,19 + 3788: 7,19 + 3789: 10,19 + 3790: 8,21 + 3791: 10,21 + 3792: 11,21 + 3793: 13,21 + 3794: 12,19 + 3795: 14,19 + 3796: 15,19 + 3797: 17,19 + 3798: 15,23 + 3799: 14,23 + 3800: 13,24 + 3801: 15,25 + 3802: 15,24 + 3803: 11,23 + 3804: 10,23 + 3805: 11,24 + 3806: 17,23 + 3807: 17,25 + 3808: 17,25 + 3809: 18,19 + 3810: 19,19 + 3811: 19,21 + 3812: 17,21 + 3813: 16,21 + 3814: 21,20 + 3815: 21,18 + 3816: 21,17 + 3817: 19,18 + 3818: 19,15 + 3819: 19,12 + 3820: 19,11 + 3821: 21,16 + 3822: 21,13 + 3823: 21,12 + 3824: 21,10 + 3825: 21,8 + 3826: 21,7 + 3827: 19,9 + 3828: 19,7 + 3829: 19,6 + 3830: 23,10 + 3831: 24,10 + 3832: 26,10 + 3833: 27,10 + 3834: 28,7 + 3835: 27,8 + 3836: 27,6 + 3837: 28,6 + 3838: 30,6 + 3839: 30,8 + 3840: 30,9 + 3841: 30,10 + 3842: 33,10 + 3843: 34,10 + 3844: 31,12 + 3845: 31,13 + 3846: 30,14 + 3847: 31,17 + 3848: 30,17 + 3849: 31,19 + 3850: 31,20 + 3851: 31,22 + 3852: 30,22 + 3853: 28,22 + 3854: 29,23 + 3855: 26,22 + 3856: 24,22 + 3857: 23,22 + 3858: 23,23 + 3859: 23,20 + 3860: 23,18 + 3861: 25,18 + 3862: 25,17 + 3863: 26,18 + 3864: 27,17 + 3865: 27,20 + 3866: 29,18 + 3867: 27,18 + 3868: 30,17 + 3869: 33,22 + 3870: 35,22 + 3871: 33,19 + 3872: 33,18 + 3873: 35,18 + 3874: 36,17 + 3875: 34,17 + 3876: 35,17 + 3877: 33,13 + 3878: 33,15 + 3879: 33,15 + 3880: 32,13 + 3881: 26,7 + 3882: 23,2 + 3883: 26,2 + 3884: 20,2 + 3885: 21,2 + 3886: 19,4 + 3892: 31,2 + 3893: 33,2 + 3894: 33,4 + 3895: 32,4 + 3896: 35,4 + 3897: 37,4 + 3898: 37,2 + 3899: 40,2 + 3900: 41,2 + 3901: 41,1 + 3902: 38,2 + 3903: 39,-4 + 3904: 37,-4 + 3905: 39,-5 + 3906: 33,-1 + 3907: 31,-1 + 3908: 31,0 + 3909: 33,0 + 3910: 32,1 + 3911: 38,7 + 3912: 54,14 + 3913: 58,14 + 3914: 59,14 + 3915: 60,14 + 3916: 58,16 + 3917: 55,10 + 3918: 55,12 + 3919: 54,12 + 3920: 54,6 + 3921: 59,3 + 3922: 60,4 + 3923: 59,0 + 3924: 55,-5 + 3925: 56,-4 + 3926: 41,-1 + 3927: 41,-3 + 3928: 41,-5 + 3929: 41,-7 + 3930: 41,-10 + 3931: 41,-11 + 3932: 43,-12 + 3933: 43,-14 + 3934: 43,-16 + 3935: 43,-17 + 3936: 41,-15 + 3937: 41,-16 + 3938: 41,-17 + 3939: 41,-19 + 3940: 40,-19 + 3941: 40,-21 + 3942: 42,-21 + 3943: 43,-21 + 3944: 45,-21 + 3949: 45,-19 + 3950: 47,-19 + 3951: 48,-19 + 3952: 51,-19 + 3953: 47,-21 + 3954: 49,-21 + 3955: 47,-22 + 3956: 51,-21 + 3957: 59,-21 + 3958: 60,-21 + 3959: 61,-20 + 3960: 59,-19 + 3961: 61,-19 + 3962: 60,-17 + 3963: 60,-17 + 3964: 58,-18 + 3965: 58,-19 + 3966: 56,-19 + 3967: 55,-19 + 3968: 53,-19 + 3969: 60,-15 + 3970: 58,-15 + 3971: 59,-14 + 3972: 57,-13 + 3973: 57,-12 + 3974: 60,-13 + 3975: 60,-12 + 3976: 60,-14 + 3977: 61,-13 + 3978: 63,-13 + 3979: 64,-12 + 3980: 65,-14 + 3981: 63,-14 + 3982: 63,-16 + 3983: 65,-16 + 3984: 65,-18 + 3985: 65,-20 + 3986: 63,-18 + 3987: 63,-20 + 3988: 63,-21 + 3989: 65,-21 + 3990: 62,-23 + 3991: 61,-24 + 3992: 64,-24 + 3993: 63,-25 + 3994: 64,-26 + 3995: 65,-27 + 3996: 66,-26 + 3997: 65,-24 + 3998: 65,-23 + 3999: 65,-23 + 4003: 68,-21 + 4004: 69,-21 + 4005: 69,-23 + 4006: 69,-24 + 4008: 69,-27 + 4009: 70,-26 + 4010: 70,-26 + 4011: 71,-27 + 4012: 71,-28 + 4013: 70,-28 + 4014: 68,-28 + 4015: 69,-29 + 4016: 70,-30 + 4017: 69,-30 + 4018: 70,-29 + 4019: 70,-29 + 4020: 70,-29 + 4021: 71,-30 + 4022: 71,-17 + 4023: 68,-17 + 4024: 67,-19 + 4025: 70,-17 + 4026: 70,-19 + 4027: 71,-18 + 4028: 68,-18 + 4029: 69,-19 + 4049: 69,-9 + 4050: 68,-9 + 4051: 67,-9 + 4052: 70,-10 + 4053: 77,-18 + 4054: 75,-18 + 4055: 76,-19 + 4056: 77,-18 + 4057: 76,-17 + 4058: 76,-15 + 4059: 75,-15 + 4060: 76,-13 + 4061: 77,-14 + 4062: 74,-14 + 4063: 74,-16 + 4064: 73,-14 + 4065: 74,-17 + 4066: 74,-18 + 4067: 72,-17 + 4068: 73,-19 + 4069: 73,-17 + 4070: 74,-16 + 4071: 73,-15 4072: 74,-16 - 4073: 73,-14 - 4074: 74,-17 - 4075: 74,-18 - 4076: 72,-17 - 4077: 73,-19 - 4078: 73,-17 - 4079: 74,-16 - 4080: 73,-15 - 4081: 74,-16 - 4082: 74,-15 - 4083: 76,-18 - 4084: 79,-14 - 4085: 80,-13 - 4086: 81,-14 - 4087: 79,-14 - 4088: 80,-15 - 4089: 81,-13 - 4090: 80,-19 - 4091: 79,-18 - 4092: 80,-18 - 4093: 80,-19 - 4094: 79,-19 - 4095: 80,-19 - 4096: 81,-19 - 4097: 80,-17 - 4098: 80,-18 - 4099: 79,-19 - 4100: 50,-13 - 4101: 51,-14 - 4102: 50,-13 - 4103: 51,-13 - 4104: 50,-14 - 4105: 50,-14 - 4106: 48,-13 - 4107: 48,-14 - 4108: 48,-13 - 4109: 53,-13 - 4110: 53,-14 - 4111: 53,-12 - 4112: 53,-14 - 4113: 53,-13 - 4114: 53,-14 - 4115: 50,-15 - 4116: 51,-15 - 4117: 50,-14 - 4118: 51,-13 - 4119: 50,-12 - 4120: 50,-12 - 4121: 48,-12 - 4122: 50,-12 - 4123: 51,-13 - 4124: 47,-24 - 4125: 49,-25 - 4126: 48,-26 - 4127: 47,-25 - 4128: 49,-25 - 4129: 48,-23 - 4130: 47,-28 - 4131: 49,-29 - 4132: 47,-30 - 4133: 48,-32 - 4134: 49,-31 - 4135: 48,-33 - 4136: 47,-33 - 4137: 49,-33 - 4138: 48,-34 - 4139: 47,-34 - 4140: 43,-36 - 4141: 40,-36 - 4142: 37,-35 - 4143: 36,-35 - 4144: 37,-36 - 4145: 40,-36 - 4146: 43,-35 - 4147: 43,-35 - 4148: 41,-35 - 4149: 43,-35 - 4150: 43,-34 - 4176: 33,-34 - 4177: 31,-34 - 4178: 33,-32 - 4179: 32,-32 - 4180: 32,-31 - 4181: 32,-30 - 4182: 33,-28 - 4183: 31,-29 - 4184: 33,-31 - 4185: 33,-31 - 4186: 35,-30 - 4187: 36,-30 - 4188: 36,-29 - 4189: 33,-25 - 4190: 31,-25 - 4191: 33,-25 - 4192: 31,-25 - 4193: 33,-25 - 4194: 32,-26 - 4195: 31,-25 - 4196: 32,-24 - 4197: 32,-25 - 4198: 31,-24 - 4199: 40,-25 - 4200: 39,-24 - 4201: 40,-26 - 4202: 42,-25 - 4203: 42,-25 - 4204: 44,-24 - 4205: 42,-25 - 4206: 44,-25 - 4207: 45,-25 - 4208: 42,-26 - 4209: 43,-25 - 4210: 43,-25 - 4211: 41,-25 - 4212: 40,-25 - 4213: 40,-25 - 4214: 40,-24 - 4215: 35,-23 - 4216: 37,-23 - 4217: 36,-23 - 4218: 35,-23 - 4219: 38,-21 - 4220: 35,-21 - 4221: 33,-21 - 4222: 33,-22 - 4223: 32,-22 - 4224: 32,-21 - 4225: 37,-19 - 4226: 34,-19 - 4227: 32,-19 - 4228: 31,-19 - 4229: 28,-19 - 4230: 27,-19 - 4231: 27,-20 - 4232: 27,-21 - 4233: 30,-21 - 4234: 29,-21 - 4235: 29,-23 - 4236: 29,-24 - 4237: 29,-25 - 4238: 29,-26 - 4239: 27,-22 - 4240: 27,-24 - 4241: 27,-25 - 4242: 26,-25 - 4243: 25,-25 - 4244: 29,-27 - 4245: 27,-27 - 4246: 25,-27 - 4247: 24,-27 - 4248: 21,-27 - 4249: 21,-25 - 4250: 20,-25 - 4251: 19,-25 - 4252: 19,-26 - 4253: 19,-28 - 4254: 19,-28 - 4255: 19,-30 - 4256: 19,-31 - 4257: 19,-32 - 4258: 21,-30 - 4259: 21,-33 - 4260: 21,-34 - 4261: 21,-34 - 4262: 19,-34 - 4263: 20,-36 - 4264: 20,-37 - 4265: 19,-37 - 4266: 20,-39 - 4267: 21,-38 - 4268: 22,-39 - 4269: 21,-37 - 4270: 24,-37 - 4271: 23,-38 - 4272: 25,-37 - 4273: 25,-38 - 4274: 24,-38 - 4275: 25,-38 - 4276: 17,-34 - 4277: 17,-35 - 4278: 16,-34 - 4279: 14,-34 - 4280: 17,-32 - 4281: 15,-32 - 4282: 13,-32 - 4283: 11,-32 - 4284: 10,-32 - 4285: 12,-34 - 4286: 9,-34 - 4287: 8,-34 - 4288: 7,-34 - 4289: 7,-32 - 4290: 7,-32 - 4291: 6,-32 - 4292: 9,-30 - 4293: 8,-29 - 4294: 7,-29 - 4295: 7,-29 - 4296: 6,-28 - 4297: 8,-27 - 4298: 9,-27 - 4299: 7,-28 - 4300: 6,-27 - 4301: 5,-29 - 4302: 7,-30 - 4303: 9,-30 - 4304: 3,-30 - 4305: 1,-30 - 4306: 3,-32 - 4307: 2,-32 - 4308: 2,-33 - 4309: 0,-33 - 4310: -1,-33 - 4311: -1,-32 - 4312: 0,-30 - 4313: -3,-30 - 4314: -4,-30 - 4315: -6,-30 - 4316: -7,-30 - 4317: -9,-30 - 4318: -6,-32 - 4319: -5,-32 - 4320: -3,-32 - 4321: -8,-32 - 4322: -8,-33 - 4323: -9,-32 - 4324: -10,-32 - 4325: -11,-32 - 4326: -13,-32 - 4327: -10,-30 - 4328: -11,-30 - 4329: -13,-30 - 4330: -15,-30 - 4331: -16,-30 - 4332: -12,-29 - 4333: -12,-30 - 4334: -16,-32 - 4335: -17,-33 - 4336: -17,-32 - 4337: -19,-32 - 4338: -18,-30 - 4339: -20,-30 - 4340: -22,-30 - 4341: -23,-30 - 4342: -23,-29 - 4343: -22,-32 - 4344: -24,-32 - 4345: -24,-32 - 4346: -26,-30 - 4347: -26,-29 - 4348: -26,-27 - 4349: -26,-25 - 4350: -24,-27 - 4351: -24,-26 - 4352: -24,-25 - 4353: -24,-24 - 4354: -26,-23 - 4355: -26,-22 - 4356: -26,-20 - 4357: -24,-21 - 4358: -24,-19 - 4359: -24,-18 - 4360: -24,-16 - 4361: -26,-17 - 4362: -26,-16 - 4363: -26,-14 - 4364: -26,-13 - 4365: -26,-12 - 4366: -26,-10 - 4367: -26,-9 - 4368: -25,-9 - 4369: -24,-11 - 4370: -23,-11 - 4371: -23,-10 - 4372: -23,-9 - 4373: -24,-5 - 4374: -24,-4 - 4375: -24,-2 - 4376: -19,-11 - 4377: -19,-10 - 4378: -20,-10 - 4379: -20,-9 - 4380: -19,-9 - 4381: -30,-21 - 4382: -30,-19 - 4383: -29,-19 - 4384: -30,-18 - 4385: -32,-21 - 4386: -32,-19 - 4387: -33,-18 - 4388: -36,-15 - 4389: -36,-14 - 4390: -33,-14 - 4391: -33,-14 - 4392: -33,-15 - 4393: -30,-14 - 4394: -36,-10 - 4395: -37,-9 - 4396: -37,-10 - 4397: -29,-10 - 4398: -30,-11 - 4399: -30,-9 - 4400: -28,-10 - 4401: -40,-11 - 4402: -41,-10 - 4403: -41,-9 - 4404: -40,-9 - 4405: -41,-10 - 4406: -41,-10 - 4407: -49,-18 - 4408: -38,-33 - 4409: -36,-33 - 4410: -33,-33 - 4411: -32,-33 - 4412: -31,-33 - 4413: -31,-31 - 4414: -31,-29 - 4415: -31,-28 - 4416: -31,-26 - 4417: -33,-26 - 4418: -35,-26 - 4419: -36,-26 - 4420: -37,-26 - 4421: -38,-26 - 4422: -38,-27 - 4423: -38,-29 - 4424: -38,-30 - 4425: -38,-31 - 4426: -38,-29 - 4427: -38,-26 - 4428: -40,-26 - 4429: -40,-25 - 4430: -41,-25 - 4431: -41,-26 - 4432: -41,-28 - 4433: -41,-29 - 4434: -41,-30 - 4435: -41,-32 - 4436: -41,-33 - 4437: -41,-34 - 4438: -39,-33 - 4439: -40,-34 - 4440: -35,-34 - 4441: -34,-34 - 4442: -32,-34 - 4443: -31,-34 - 4444: -30,-34 - 4445: -30,-33 - 4446: -28,-34 - 4447: -28,-32 - 4448: -28,-31 - 4449: -28,-29 - 4450: -28,-27 - 4451: -28,-26 - 4452: -29,-25 - 4453: -30,-25 - 4454: -30,-26 - 4455: -32,-25 - 4456: -33,-26 - 4457: -35,-25 - 4458: -32,6 - 4459: -32,7 - 4460: -32,6 - 4461: -36,6 - 4462: -36,5 - 4463: -36,7 - 4464: -34,6 - 4465: -34,5 - 4466: -35,6 - 4467: -33,6 - 4479: -25,28 - 4480: -26,28 - 4481: -18,32 - 4482: -17,31 - 4483: -17,33 - 4484: -18,32 - 4485: -15,34 - 4486: -15,32 - 4487: -15,31 - 4488: -13,31 - 4489: -12,31 - 4490: -15,34 - 4491: -15,34 - 4492: -12,39 - 4493: -13,40 - 4494: -14,40 - 4495: -15,40 - 4496: -16,40 - 4497: -16,40 - 4498: -13,40 - 4499: -12,40 - 4500: -12,38 - 4501: -12,40 - 4507: -5,40 - 4508: -6,40 - 4509: -6,42 - 4510: -6,43 - 4511: -5,42 - 4512: -6,43 - 4513: -6,45 - 4514: -6,46 - 4515: -6,47 - 4516: -5,46 - 4517: -4,48 - 4518: -5,46 - 4519: -2,48 - 4520: -4,46 - 4521: -1,47 - 4522: -3,45 - 4523: 0,46 - 4524: -3,47 - 4525: -1,45 - 4526: -3,46 - 4527: 1,45 - 4528: 1,47 - 4529: 0,46 - 4530: 1,48 - 4531: 2,48 - 4532: 3,47 - 4533: 2,45 - 4534: 2,44 - 4535: 2,43 - 4536: 2,42 - 4537: 1,42 - 4538: 3,42 - 4539: -2,43 - 4540: -1,41 - 4541: -3,40 - 4542: -3,40 - 4543: 1,51 - 4544: -2,50 - 4545: -3,50 - 4546: -2,51 - 4547: 0,51 - 4548: -1,52 - 4549: -2,51 - 4550: -2,53 - 4551: 1,53 - 4552: 2,51 - 4553: 2,50 - 4554: 0,50 - 4555: -4,45 - 4556: -4,47 - 4583: 6,42 - 4584: 5,41 - 4585: 5,39 - 4586: 7,39 - 4587: 8,39 - 4588: 9,41 - 4589: 9,40 - 4590: 8,42 - 4591: 8,41 - 4592: 15,37 - 4593: 14,37 - 4594: 14,35 - 4595: 14,34 - 4596: 13,35 - 4597: 13,36 - 4598: 15,34 - 4599: 16,35 - 4600: 15,36 - 4601: 15,34 - 4602: 15,35 - 4603: 15,37 - 4604: 14,37 - 4605: 15,30 - 4606: 14,29 - 4607: 14,29 - 4608: 15,28 - 4609: 14,29 - 4610: 14,32 - 4611: 13,32 - 4612: 15,24 - 4636: 2,24 - 4637: 1,24 - 4638: 1,24 - 4639: 2,23 - 4640: 4,23 - 4641: 4,24 - 4642: 3,26 - 4643: 4,28 - 4644: 2,27 - 4645: 2,27 - 4646: 3,27 - 4647: -2,25 - 4648: -3,25 - 4649: -3,23 - 4650: -2,24 - 4651: -4,23 - 4652: -4,25 - 4688: -14,28 - 4689: -15,28 - 4690: -14,29 - 4691: -13,26 - 4692: -10,26 - 4693: -9,27 - 4694: -10,28 - 4695: -7,28 - 4696: -8,26 - 4697: -5,28 - 4698: -7,24 - 4699: -8,24 - 4700: -7,23 - 4701: -6,24 - 4702: -6,23 - 4703: -7,23 - 4704: -8,23 - 4705: -8,23 - 4706: -12,23 - 4707: -11,24 - 4708: -10,23 - 4709: -10,24 - 4710: -10,24 - 4711: -12,24 - 4712: -12,24 - 4713: -14,24 - 4714: -14,23 - 4715: -16,24 - 4716: -14,24 - 4717: -15,23 - 4718: -16,24 - 4719: -14,25 - 4720: -10,25 - 4721: -7,25 - 4722: -1,28 - 4723: -3,27 - 4724: -1,30 - 4725: -1,33 - 4726: -1,34 - 4727: -1,37 - 4728: -3,37 - 4729: -3,38 - 4730: -1,37 - 4731: -2,37 - 4732: -1,40 - 4733: -3,41 - 4734: -3,43 - 4735: -2,43 - 4736: -20,25 - 4737: -21,25 - 4738: -19,25 - 4739: -21,25 - 4740: -22,17 - 4741: -23,17 - 4742: -22,5 - 4743: -22,5 - 4744: -22,5 - 4745: -19,-28 - 4746: -16,-28 - 4747: -16,-27 - 4748: -15,-28 - 4749: -16,-26 - 4750: -15,-27 - 4751: -15,-28 - 4752: -15,-26 - 4753: -15,-26 - 4754: -14,-26 - 4765: -25,-34 - 4766: -23,-34 - 4767: -22,-34 - 4768: -21,-34 - 4769: -20,-34 - 4770: -20,-37 - 4771: -20,-36 - 4772: -19,-38 - 4773: -19,-36 - 4774: -22,-37 - 4775: -23,-37 - 4776: -23,-38 - 4777: -23,-36 - 4778: -24,-37 - 4779: -26,-37 - 4780: -26,-36 - 4781: -26,-37 - 4782: -28,-40 - 4783: -27,-40 - 4784: -25,-40 - 4785: -24,-40 - 4786: -23,-40 - 4787: -21,-40 - 4788: -19,-40 - 4789: -21,-40 - 4790: -24,-40 - 4791: -26,-40 - 4792: -32,-40 - 4793: -31,-40 - 4794: -33,-39 - 4795: -33,-40 - 4796: -32,-39 - 4797: -31,-39 - 4798: -34,-39 - 4799: -33,-40 - 4800: -39,-38 - 4801: -38,-38 - 4802: -38,-53 - 4803: -38,-54 - 4804: -37,-53 - 4805: -37,-54 - 4806: -5,-36 - 4807: -6,-36 - 4808: -4,-35 - 4809: -4,-36 - 4810: 0,-36 - 4811: -2,-36 - 4812: 1,-35 - 4813: 1,-37 - 4814: 1,-38 - 4815: 2,-37 - 4816: 2,-38 - 4817: 0,-37 - 4818: 3,-37 - 4819: -1,-36 - 4823: -6,-28 - 4824: -6,-27 - 4825: -5,-27 - 4826: -6,-26 - 4827: -2,-27 - 4828: -3,-26 - 4829: -2,-28 - 4830: -1,-27 - 4831: 0,-27 - 4832: 0,-27 - 4833: -2,-27 - 4834: -2,-27 - 4835: 0,-24 - 4836: -2,-24 - 4837: -2,-23 - 4838: 0,-22 - 4839: 1,-22 - 4840: 1,-21 - 4841: -4,-19 - 4842: -5,-19 - 4843: -7,-19 - 4844: -9,-19 - 4845: -6,-19 - 4846: -7,-17 - 4847: -8,-17 - 4848: -9,-16 - 4849: -9,-16 - 4850: -5,-16 - 4851: -4,-14 - 4852: -5,-15 - 4853: -8,-16 - 4854: -8,-15 - 4855: -14,-14 - 4856: -12,-14 - 4857: -12,-16 - 4858: -13,-18 - 4859: -14,-16 - 4860: -13,-16 - 4861: -13,-19 - 4862: -14,-19 - 4863: -2,-17 - 4864: -2,-15 - 4865: -2,-13 - 4866: -2,-12 - 4867: -1,-15 - 4868: -1,-16 - 4869: -1,-17 - 4870: 1,-17 - 4871: -1,-18 - 4872: 2,-18 - 4873: 2,-16 - 4874: 2,-15 - 4875: 2,-13 - 4876: 1,-12 - 4877: 1,-14 - 4878: -1,-13 - 4879: 0,-14 - 4880: 2,-16 - 4881: -4,-14 - 4882: -7,-24 - 4883: -7,-22 - 4884: -8,-23 - 4885: -10,-23 - 4886: -9,-23 - 4887: -1,-24 - 4888: 8,-23 - 4889: 8,-22 - 4890: 10,-22 - 4891: 9,-23 - 4892: 8,-25 - 4893: 8,-21 - 4894: 8,-19 - 4895: 8,-18 - 4896: 6,-18 - 4897: 5,-18 - 4898: 0,-27 - 4899: 2,-27 - 4900: 10,-23 - 4901: 13,-23 - 4902: 12,-23 - 4903: 13,-21 - 4904: 14,-22 - 4905: 13,-18 - 4906: 14,-18 - 4907: 14,-17 - 4908: 12,-18 - 4909: 11,-18 - 4910: 11,-16 - 4911: 13,-17 - 4912: 11,-30 - 4913: 11,-28 - 4915: 11,-26 - 4916: 17,-26 - 4917: 17,-28 - 4918: 17,-28 - 4919: 17,-30 - 4920: 17,-30 - 4921: 18,-23 - 4922: 20,-22 - 4923: 21,-23 - 4924: 19,-22 - 4925: 21,-22 - 4926: 20,-21 - 4927: 24,-22 - 4928: 23,-23 - 4929: 23,-21 - 4930: 23,-23 - 4931: 17,-16 - 4932: 19,-14 - 4933: 18,-13 - 4934: 20,-13 - 4935: 19,-12 - 4936: 22,-11 - 4937: 22,-13 - 4938: 20,-11 - 4939: 24,-13 - 4940: 26,-11 - 4941: 21,-11 - 4942: 20,-11 - 4943: 25,-13 - 4944: 22,-13 - 4945: 23,-12 - 4946: 26,-12 - 4947: 19,-12 - 4948: 23,-13 - 4949: 23,-11 - 4950: 19,-10 - 4951: 26,-11 - 4952: 28,-12 - 4953: 25,-12 - 4954: 23,-16 - 4955: 23,-16 - 4956: 13,-19 - 4957: 23,-34 - 4958: 23,-31 - 4959: 23,-30 - 4960: 23,-29 - 4961: 23,-32 - 4962: 29,-34 - 4963: 29,-33 - 4964: 29,-32 - 4965: 29,-30 - 4966: 29,-29 - 4967: 32,-34 - 4968: 32,-31 - 4969: 32,-30 - 4970: 36,-30 - 4971: 35,-29 - 4972: 33,-26 - 4973: 36,-21 - 4974: 38,-16 - 4975: 37,-15 - 4976: 39,-16 - 4977: 38,-17 - 4978: 38,-15 - 4979: 37,-15 - 4980: 62,-31 - 4981: 62,-33 - 4982: 61,-31 - 4983: 63,-33 - 4984: 63,-33 - 4985: 63,-32 - 4986: 62,-32 - 4987: 62,-32 - 4988: 64,8 - 4989: 63,9 - 4990: 65,9 - 4991: 64,8 - 4992: 64,9 - 4993: 64,10 - 4994: 67,6 - 4995: 68,4 - 4996: 68,6 - 4997: 67,5 - 4998: 68,0 - 4999: 68,1 - 5000: 68,2 - 5001: 67,0 - 5002: 68,-2 - 5003: 67,-3 - 5004: 68,-4 - 5005: 68,-3 - 5006: 68,-3 - 5007: 76,-6 - 5013: 54,-30 - 5014: 52,-31 - 5015: 51,-31 - 5016: 52,-33 - 5017: 52,-34 - 5018: 51,-33 - 5019: 51,-32 - 5020: 52,-35 - 5021: 51,-33 - 5022: 51,-31 - 5023: 52,-35 - 5024: 52,-35 - 5025: 55,-35 - 5026: 54,-34 - 5027: 56,-33 - 5028: 57,-33 - 5029: 55,-34 - 5030: 55,-36 - 5031: 54,-35 - 5032: 55,-34 - 5033: 54,-35 - 5034: 55,-35 - 5035: 55,-34 - 5036: 40,-31 - 5037: 40,-30 - 5038: 40,-30 - 5039: 41,-31 - 5040: 41,-29 - 5041: 42,-29 - 5042: 43,-29 - 5043: 44,-29 - 5044: 44,-31 - 5045: 43,-30 - 5046: 33,-29 - 5047: 15,-39 - 5048: 14,-39 - 5049: 14,-39 - 5050: 9,-40 - 5051: 9,-39 - 5052: 9,-41 - 5053: 8,-40 - 5054: 19,-45 - 5055: 17,-45 - 5056: 16,-44 - 5057: 16,-45 - 5058: 16,-43 - 5059: 19,-45 - 5060: 20,-44 - 5061: 20,-45 - 5062: 18,-44 - 5063: 21,-45 - 5064: 21,-43 - 5065: 15,-48 - 5066: 14,-48 - 5067: 12,-47 - 5068: 12,-48 - 5069: 14,-48 - 5070: 16,-47 - 5071: 14,-48 - 5072: 13,-48 - 5073: 15,-47 - 5080: 21,-54 - 5081: 20,-54 - 5082: 18,-54 - 5083: 16,-54 - 5084: 16,-55 - 5085: 18,-53 - 5086: 19,-53 - 5087: 21,-55 - 5088: 21,-58 - 5089: 21,-59 - 5090: 20,-58 - 5091: 18,-58 - 5092: 17,-58 - 5093: 16,-58 - 5094: 16,-59 - 5095: 19,-59 - 5096: 19,-59 - 5097: 18,-59 - 5098: 27,-46 - 5099: 26,-45 - 5100: 26,-44 - 5101: 27,-45 - 5102: 27,-45 - 5103: 28,-42 - 5104: 29,-42 - 5105: 29,-40 - 5106: 28,-39 - 5107: 28,-39 - 5108: 28,-40 - 5109: 29,-47 - 5110: 28,-47 - 5111: 66,-52 - 5112: 65,-51 - 5113: 66,-52 - 5114: 66,-51 - 5115: 65,-52 - 5116: 66,-51 - 5117: 27,15 - 5118: 28,15 - 5119: 27,14 - 5120: 27,12 - 5121: -23,34 - 5122: -23,35 - 5123: -22,34 - 5124: -27,36 - 5125: -27,34 - 5126: -28,35 - 5127: -27,35 - 5128: -29,36 - 5129: -30,37 - 5130: -30,38 - 5131: -28,35 - 5132: -28,34 - 5133: -29,35 - 5134: -26,36 - 5135: -25,38 - 5136: -26,37 - 5137: -32,36 - 5138: -33,35 - 5139: -33,37 - 5140: -33,35 - 5141: -34,36 - 5142: -33,38 - 5143: -33,35 - 5144: -36,5 - 5145: -42,6 - 5146: -43,4 - 5147: -43,6 - 5148: -42,7 - 5149: -51,9 - 5150: -49,13 - 5151: -42,-5 - 5152: -43,-5 - 5153: -42,-3 - 5154: -45,-4 - 5155: -45,-5 - 5156: -46,-4 - 5157: -43,-3 - 5158: -43,-2 - 5159: -42,-2 - 5160: -60,-29 - 5161: -60,-29 - 5162: -57,-36 - 5163: -58,-36 - 5164: -59,-36 - 5165: -57,-37 - 5166: -58,-35 - 5167: -58,-34 - 5168: -57,-35 - 5169: -59,-34 - 5170: -58,-34 - 5171: -59,-34 - 5172: -60,-34 - 5173: -60,-35 - 5174: -61,-21 - 5175: -62,-21 - 5176: -62,-20 - 5177: -61,-20 - 5178: -61,-20 - 5179: 13,35 - 5811: 52,20 - 5812: 51,21 - 5813: 53,20 - 5814: 53,21 - 6093: 49,-7 - 6094: 48,-6 - 6095: 48,-4 - 6096: 49,-4 - 6097: 52,-7 - 6098: 52,-5 - 6099: 51,-6 - 6100: 52,-2 - 6101: 52,-3 - 6102: 48,-1 - 6103: 48,-2 - 6123: 49,-12 - 6124: 49,-14 - 6125: 49,-15 - 6126: 49,-13 - 6127: 52,-14 - 6128: 52,-13 - 6129: 52,-12 - 6130: 52,-15 - 6131: 52,-15 - 6132: 52,-10 - 6133: 51,1 - 6134: 51,3 - 6135: 51,4 - 6136: 51,8 - 6137: 51,9 - 6138: 51,11 - 6139: 51,13 - 6140: 49,13 - 6141: 49,11 - 6142: 49,9 - 6143: 49,7 - 6144: 49,5 - 6145: 49,3 - 6146: 49,1 - 6159: 42,9 - 6160: 43,9 - 6161: 42,7 - 6162: 43,7 - 6163: 45,7 - 6164: 45,9 - 6165: 46,7 - 6166: 40,4 - 6167: 42,4 - 6168: 43,4 - 6169: 43,2 - 6170: 43,1 - 6171: 43,-2 - 6172: 43,-4 - 6173: 43,-7 - 6174: 43,-6 - 6175: 43,-10 - 6176: 43,-11 - 6177: 45,5 - 6178: 42,5 - 6179: 41,5 - 6257: 90,-18 - 6258: 89,-18 - 6338: 51,-39 - 6339: 52,-39 - 6340: 54,-39 - 6341: 52,-37 - 6351: 51,-30 - 6352: 52,-29 - 6374: -33,-12 - 6375: -33,-10 - 6391: -36,-45 - 6392: -35,-44 - 6393: -35,-46 - 6483: 14,39 - 6484: 13,40 - 6485: 15,42 - 6486: 15,41 - 6487: 16,39 - 6547: 8,-47 - 6693: -34,14 - 6694: -33,15 - 6695: -30,15 - 6696: -31,16 - 6697: -30,17 - 6698: -29,14 - 6699: -29,12 - 6700: -32,12 - 6701: -35,14 - 6702: -37,14 - 6703: -38,13 - 6795: 43,13 - 6796: 42,11 - 6863: 59,-8 - 6864: 57,-5 - 6865: 61,-4 - 6871: -14,-38 - 6872: -13,-37 - 6882: -12,-37 - 6883: -12,-37 - 6884: -11,-40 - 6900: 53,-21 - 6901: 54,-21 - 6902: 57,-21 - 6903: 56,-23 - 6904: 58,-24 - 6935: 78,-7 - 6943: 52,-23 - 6995: -34,-5 - 6996: -32,-3 - 6997: -34,-2 + 4073: 74,-15 + 4074: 76,-18 + 4075: 79,-14 + 4076: 80,-13 + 4077: 81,-14 + 4078: 79,-14 + 4079: 80,-15 + 4080: 81,-13 + 4081: 80,-19 + 4082: 79,-18 + 4083: 80,-18 + 4084: 80,-19 + 4085: 79,-19 + 4086: 80,-19 + 4087: 81,-19 + 4088: 80,-17 + 4089: 80,-18 + 4090: 79,-19 + 4091: 50,-13 + 4092: 51,-14 + 4093: 50,-13 + 4094: 51,-13 + 4095: 50,-14 + 4096: 50,-14 + 4097: 48,-13 + 4098: 48,-14 + 4099: 48,-13 + 4100: 53,-13 + 4101: 53,-14 + 4102: 53,-12 + 4103: 53,-14 + 4104: 53,-13 + 4105: 53,-14 + 4106: 50,-15 + 4107: 51,-15 + 4108: 50,-14 + 4109: 51,-13 + 4110: 50,-12 + 4111: 50,-12 + 4112: 48,-12 + 4113: 50,-12 + 4114: 51,-13 + 4115: 47,-24 + 4116: 49,-25 + 4117: 48,-26 + 4118: 47,-25 + 4119: 49,-25 + 4120: 48,-23 + 4121: 47,-28 + 4122: 49,-29 + 4123: 47,-30 + 4124: 48,-32 + 4125: 49,-31 + 4126: 48,-33 + 4127: 47,-33 + 4128: 49,-33 + 4129: 48,-34 + 4130: 47,-34 + 4131: 43,-36 + 4132: 40,-36 + 4133: 37,-35 + 4134: 36,-35 + 4135: 37,-36 + 4136: 40,-36 + 4137: 43,-35 + 4138: 43,-35 + 4139: 41,-35 + 4140: 43,-35 + 4141: 43,-34 + 4167: 33,-34 + 4168: 31,-34 + 4169: 33,-32 + 4170: 32,-32 + 4171: 32,-31 + 4172: 32,-30 + 4173: 33,-28 + 4174: 31,-29 + 4175: 33,-31 + 4176: 33,-31 + 4177: 35,-30 + 4178: 36,-30 + 4179: 36,-29 + 4180: 33,-25 + 4181: 31,-25 + 4182: 33,-25 + 4183: 31,-25 + 4184: 33,-25 + 4185: 32,-26 + 4186: 31,-25 + 4187: 32,-24 + 4188: 32,-25 + 4189: 31,-24 + 4190: 40,-25 + 4191: 39,-24 + 4192: 40,-26 + 4193: 42,-25 + 4194: 42,-25 + 4195: 44,-24 + 4196: 42,-25 + 4197: 44,-25 + 4198: 45,-25 + 4199: 42,-26 + 4200: 43,-25 + 4201: 43,-25 + 4202: 41,-25 + 4203: 40,-25 + 4204: 40,-25 + 4205: 40,-24 + 4206: 35,-23 + 4207: 37,-23 + 4208: 36,-23 + 4209: 35,-23 + 4210: 38,-21 + 4211: 35,-21 + 4212: 33,-21 + 4213: 33,-22 + 4214: 32,-22 + 4215: 32,-21 + 4216: 37,-19 + 4217: 34,-19 + 4218: 32,-19 + 4219: 31,-19 + 4220: 28,-19 + 4221: 27,-19 + 4222: 27,-20 + 4223: 27,-21 + 4224: 30,-21 + 4225: 29,-21 + 4226: 29,-23 + 4227: 29,-24 + 4228: 29,-25 + 4229: 29,-26 + 4230: 27,-22 + 4231: 27,-24 + 4232: 27,-25 + 4233: 26,-25 + 4234: 25,-25 + 4235: 29,-27 + 4236: 27,-27 + 4237: 25,-27 + 4238: 24,-27 + 4239: 21,-27 + 4240: 21,-25 + 4241: 20,-25 + 4242: 19,-25 + 4243: 19,-26 + 4244: 19,-28 + 4245: 19,-28 + 4246: 19,-30 + 4247: 19,-31 + 4248: 19,-32 + 4249: 21,-30 + 4250: 21,-33 + 4251: 21,-34 + 4252: 21,-34 + 4253: 19,-34 + 4254: 20,-36 + 4255: 20,-37 + 4256: 19,-37 + 4257: 20,-39 + 4258: 21,-38 + 4259: 22,-39 + 4260: 21,-37 + 4261: 24,-37 + 4262: 23,-38 + 4263: 25,-37 + 4264: 25,-38 + 4265: 24,-38 + 4266: 25,-38 + 4267: 17,-34 + 4268: 17,-35 + 4269: 16,-34 + 4270: 14,-34 + 4271: 17,-32 + 4272: 15,-32 + 4273: 13,-32 + 4274: 11,-32 + 4275: 10,-32 + 4276: 12,-34 + 4277: 9,-34 + 4278: 8,-34 + 4279: 7,-34 + 4280: 7,-32 + 4281: 7,-32 + 4282: 6,-32 + 4283: 9,-30 + 4284: 8,-29 + 4285: 7,-29 + 4286: 7,-29 + 4287: 6,-28 + 4288: 8,-27 + 4289: 9,-27 + 4290: 7,-28 + 4291: 6,-27 + 4292: 5,-29 + 4293: 7,-30 + 4294: 9,-30 + 4295: 3,-30 + 4296: 1,-30 + 4297: 3,-32 + 4298: 2,-32 + 4299: 2,-33 + 4300: 0,-33 + 4301: -1,-33 + 4302: -1,-32 + 4303: 0,-30 + 4304: -3,-30 + 4305: -4,-30 + 4306: -6,-30 + 4307: -7,-30 + 4308: -9,-30 + 4309: -6,-32 + 4310: -5,-32 + 4311: -3,-32 + 4312: -8,-32 + 4313: -8,-33 + 4314: -9,-32 + 4315: -10,-32 + 4316: -11,-32 + 4317: -13,-32 + 4318: -10,-30 + 4319: -11,-30 + 4320: -13,-30 + 4321: -15,-30 + 4322: -16,-30 + 4323: -12,-29 + 4324: -12,-30 + 4325: -16,-32 + 4326: -17,-33 + 4327: -17,-32 + 4328: -19,-32 + 4329: -18,-30 + 4330: -20,-30 + 4331: -22,-30 + 4332: -23,-30 + 4333: -23,-29 + 4334: -22,-32 + 4335: -24,-32 + 4336: -24,-32 + 4337: -26,-30 + 4338: -26,-29 + 4339: -26,-27 + 4340: -26,-25 + 4341: -24,-27 + 4342: -24,-26 + 4343: -24,-25 + 4344: -24,-24 + 4345: -26,-23 + 4346: -26,-22 + 4347: -26,-20 + 4348: -24,-21 + 4349: -24,-19 + 4350: -24,-18 + 4351: -24,-16 + 4352: -26,-17 + 4353: -26,-16 + 4354: -26,-14 + 4355: -26,-13 + 4356: -26,-12 + 4357: -26,-10 + 4358: -26,-9 + 4359: -25,-9 + 4360: -24,-11 + 4361: -23,-11 + 4362: -23,-10 + 4363: -23,-9 + 4364: -24,-5 + 4365: -24,-4 + 4366: -24,-2 + 4367: -19,-11 + 4368: -19,-10 + 4369: -20,-10 + 4370: -20,-9 + 4371: -19,-9 + 4372: -30,-21 + 4373: -30,-19 + 4374: -29,-19 + 4375: -30,-18 + 4376: -32,-21 + 4377: -32,-19 + 4378: -33,-18 + 4379: -36,-15 + 4380: -36,-14 + 4381: -33,-14 + 4382: -33,-14 + 4383: -33,-15 + 4384: -30,-14 + 4385: -36,-10 + 4386: -37,-9 + 4387: -37,-10 + 4388: -29,-10 + 4389: -30,-11 + 4390: -30,-9 + 4391: -28,-10 + 4392: -40,-11 + 4393: -41,-10 + 4394: -41,-9 + 4395: -40,-9 + 4396: -41,-10 + 4397: -41,-10 + 4398: -49,-18 + 4399: -38,-33 + 4400: -36,-33 + 4401: -33,-33 + 4402: -32,-33 + 4403: -31,-33 + 4404: -31,-31 + 4405: -31,-29 + 4406: -31,-28 + 4407: -31,-26 + 4408: -33,-26 + 4409: -35,-26 + 4410: -36,-26 + 4411: -37,-26 + 4412: -38,-26 + 4413: -38,-27 + 4414: -38,-29 + 4415: -38,-30 + 4416: -38,-31 + 4417: -38,-29 + 4418: -38,-26 + 4419: -40,-26 + 4420: -40,-25 + 4421: -41,-25 + 4422: -41,-26 + 4423: -41,-28 + 4424: -41,-29 + 4425: -41,-30 + 4426: -41,-32 + 4427: -41,-33 + 4428: -41,-34 + 4429: -39,-33 + 4430: -40,-34 + 4431: -35,-34 + 4432: -34,-34 + 4433: -32,-34 + 4434: -31,-34 + 4435: -30,-34 + 4436: -30,-33 + 4437: -28,-34 + 4438: -28,-32 + 4439: -28,-31 + 4440: -28,-29 + 4441: -28,-27 + 4442: -28,-26 + 4443: -29,-25 + 4444: -30,-25 + 4445: -30,-26 + 4446: -32,-25 + 4447: -33,-26 + 4448: -35,-25 + 4449: -32,6 + 4450: -32,7 + 4451: -32,6 + 4452: -36,6 + 4453: -36,5 + 4454: -36,7 + 4455: -34,6 + 4456: -34,5 + 4457: -35,6 + 4458: -33,6 + 4470: -25,28 + 4471: -26,28 + 4472: -18,32 + 4473: -17,31 + 4474: -17,33 + 4475: -18,32 + 4476: -15,34 + 4477: -15,32 + 4478: -15,31 + 4479: -13,31 + 4480: -12,31 + 4481: -15,34 + 4482: -15,34 + 4483: -12,39 + 4484: -13,40 + 4485: -14,40 + 4486: -15,40 + 4487: -16,40 + 4488: -16,40 + 4489: -13,40 + 4490: -12,40 + 4491: -12,38 + 4492: -12,40 + 4498: -5,40 + 4499: -6,40 + 4500: -6,42 + 4501: -6,43 + 4502: -5,42 + 4503: -6,43 + 4504: -6,45 + 4505: -6,46 + 4506: -6,47 + 4507: -5,46 + 4508: -4,48 + 4509: -5,46 + 4510: -2,48 + 4511: -4,46 + 4512: -1,47 + 4513: -3,45 + 4514: 0,46 + 4515: -3,47 + 4516: -1,45 + 4517: -3,46 + 4518: 1,45 + 4519: 1,47 + 4520: 0,46 + 4521: 1,48 + 4522: 2,48 + 4523: 3,47 + 4524: 2,45 + 4525: 2,44 + 4526: 2,43 + 4527: 2,42 + 4528: 1,42 + 4529: 3,42 + 4530: -2,43 + 4531: -1,41 + 4532: -3,40 + 4533: -3,40 + 4534: 1,51 + 4535: -2,50 + 4536: -3,50 + 4537: -2,51 + 4538: 0,51 + 4539: -1,52 + 4540: -2,51 + 4541: -2,53 + 4542: 1,53 + 4543: 2,51 + 4544: 2,50 + 4545: 0,50 + 4546: -4,45 + 4547: -4,47 + 4574: 6,42 + 4575: 5,41 + 4576: 5,39 + 4577: 7,39 + 4578: 8,39 + 4579: 9,41 + 4580: 9,40 + 4581: 8,42 + 4582: 8,41 + 4583: 15,37 + 4584: 14,37 + 4585: 14,35 + 4586: 14,34 + 4587: 13,35 + 4588: 13,36 + 4589: 15,34 + 4590: 16,35 + 4591: 15,36 + 4592: 15,34 + 4593: 15,35 + 4594: 15,37 + 4595: 14,37 + 4596: 15,30 + 4597: 14,29 + 4598: 14,29 + 4599: 15,28 + 4600: 14,29 + 4601: 14,32 + 4602: 13,32 + 4603: 15,24 + 4627: 2,24 + 4628: 1,24 + 4629: 1,24 + 4630: 2,23 + 4631: 4,23 + 4632: 4,24 + 4633: 3,26 + 4634: 4,28 + 4635: 2,27 + 4636: 2,27 + 4637: 3,27 + 4638: -2,25 + 4639: -3,25 + 4640: -3,23 + 4641: -2,24 + 4642: -4,23 + 4643: -4,25 + 4679: -14,28 + 4680: -15,28 + 4681: -14,29 + 4682: -13,26 + 4683: -10,26 + 4684: -9,27 + 4685: -10,28 + 4686: -7,28 + 4687: -8,26 + 4688: -5,28 + 4689: -7,24 + 4690: -8,24 + 4691: -7,23 + 4692: -6,24 + 4693: -6,23 + 4694: -7,23 + 4695: -8,23 + 4696: -8,23 + 4697: -12,23 + 4698: -11,24 + 4699: -10,23 + 4700: -10,24 + 4701: -10,24 + 4702: -12,24 + 4703: -12,24 + 4704: -14,24 + 4705: -14,23 + 4706: -16,24 + 4707: -14,24 + 4708: -15,23 + 4709: -16,24 + 4710: -14,25 + 4711: -10,25 + 4712: -7,25 + 4713: -1,28 + 4714: -3,27 + 4715: -1,30 + 4716: -1,33 + 4717: -1,34 + 4718: -1,37 + 4719: -3,37 + 4720: -3,38 + 4721: -1,37 + 4722: -2,37 + 4723: -1,40 + 4724: -3,41 + 4725: -3,43 + 4726: -2,43 + 4727: -20,25 + 4728: -21,25 + 4729: -19,25 + 4730: -21,25 + 4731: -22,17 + 4732: -23,17 + 4733: -22,5 + 4734: -22,5 + 4735: -22,5 + 4736: -19,-28 + 4737: -16,-28 + 4738: -16,-27 + 4739: -15,-28 + 4740: -16,-26 + 4741: -15,-27 + 4742: -15,-28 + 4743: -15,-26 + 4744: -15,-26 + 4745: -14,-26 + 4756: -25,-34 + 4757: -23,-34 + 4758: -22,-34 + 4759: -21,-34 + 4760: -20,-34 + 4761: -20,-37 + 4762: -20,-36 + 4763: -19,-38 + 4764: -19,-36 + 4765: -22,-37 + 4766: -23,-37 + 4767: -23,-38 + 4768: -23,-36 + 4769: -24,-37 + 4770: -26,-37 + 4771: -26,-36 + 4772: -26,-37 + 4773: -28,-40 + 4774: -27,-40 + 4775: -25,-40 + 4776: -24,-40 + 4777: -23,-40 + 4778: -21,-40 + 4779: -19,-40 + 4780: -21,-40 + 4781: -24,-40 + 4782: -26,-40 + 4783: -32,-40 + 4784: -31,-40 + 4785: -33,-39 + 4786: -33,-40 + 4787: -32,-39 + 4788: -31,-39 + 4789: -34,-39 + 4790: -33,-40 + 4791: -39,-38 + 4792: -38,-38 + 4793: -38,-53 + 4794: -38,-54 + 4795: -37,-53 + 4796: -37,-54 + 4797: -5,-36 + 4798: -6,-36 + 4799: -4,-35 + 4800: -4,-36 + 4801: 0,-36 + 4802: -2,-36 + 4803: 1,-35 + 4804: 1,-37 + 4805: 1,-38 + 4806: 2,-37 + 4807: 2,-38 + 4808: 0,-37 + 4809: 3,-37 + 4810: -1,-36 + 4814: -6,-28 + 4815: -6,-27 + 4816: -5,-27 + 4817: -6,-26 + 4818: -2,-27 + 4819: -3,-26 + 4820: -2,-28 + 4821: -1,-27 + 4822: 0,-27 + 4823: 0,-27 + 4824: -2,-27 + 4825: -2,-27 + 4826: 0,-24 + 4827: -2,-24 + 4828: -2,-23 + 4829: 0,-22 + 4830: 1,-22 + 4831: 1,-21 + 4832: -4,-19 + 4833: -5,-19 + 4834: -7,-19 + 4835: -9,-19 + 4836: -6,-19 + 4837: -7,-17 + 4838: -8,-17 + 4839: -9,-16 + 4840: -9,-16 + 4841: -5,-16 + 4842: -4,-14 + 4843: -5,-15 + 4844: -8,-16 + 4845: -8,-15 + 4846: -14,-14 + 4847: -12,-14 + 4848: -12,-16 + 4849: -13,-18 + 4850: -14,-16 + 4851: -13,-16 + 4852: -13,-19 + 4853: -14,-19 + 4854: -2,-17 + 4855: -2,-15 + 4856: -2,-13 + 4857: -2,-12 + 4858: -1,-15 + 4859: -1,-16 + 4860: -1,-17 + 4861: 1,-17 + 4862: -1,-18 + 4863: 2,-18 + 4864: 2,-16 + 4865: 2,-15 + 4866: 2,-13 + 4867: 1,-12 + 4868: 1,-14 + 4869: -1,-13 + 4870: 0,-14 + 4871: 2,-16 + 4872: -4,-14 + 4873: -7,-24 + 4874: -7,-22 + 4875: -8,-23 + 4876: -10,-23 + 4877: -9,-23 + 4878: -1,-24 + 4879: 8,-23 + 4880: 8,-22 + 4881: 10,-22 + 4882: 9,-23 + 4883: 8,-25 + 4884: 8,-21 + 4885: 8,-19 + 4886: 8,-18 + 4887: 6,-18 + 4888: 5,-18 + 4889: 0,-27 + 4890: 2,-27 + 4891: 10,-23 + 4892: 13,-23 + 4893: 12,-23 + 4894: 13,-21 + 4895: 14,-22 + 4896: 13,-18 + 4897: 14,-18 + 4898: 14,-17 + 4899: 12,-18 + 4900: 11,-18 + 4901: 11,-16 + 4902: 13,-17 + 4903: 11,-30 + 4904: 11,-28 + 4905: 11,-26 + 4906: 17,-26 + 4907: 17,-28 + 4908: 17,-28 + 4909: 17,-30 + 4910: 17,-30 + 4911: 18,-23 + 4912: 20,-22 + 4913: 21,-23 + 4914: 19,-22 + 4915: 21,-22 + 4916: 20,-21 + 4917: 24,-22 + 4918: 23,-23 + 4919: 23,-21 + 4920: 23,-23 + 4921: 17,-16 + 4922: 19,-14 + 4923: 18,-13 + 4924: 20,-13 + 4925: 19,-12 + 4926: 22,-11 + 4927: 22,-13 + 4928: 20,-11 + 4929: 24,-13 + 4930: 26,-11 + 4931: 21,-11 + 4932: 20,-11 + 4933: 25,-13 + 4934: 22,-13 + 4935: 23,-12 + 4936: 26,-12 + 4937: 19,-12 + 4938: 23,-13 + 4939: 23,-11 + 4940: 19,-10 + 4941: 26,-11 + 4942: 28,-12 + 4943: 25,-12 + 4944: 23,-16 + 4945: 23,-16 + 4946: 13,-19 + 4947: 23,-34 + 4948: 23,-31 + 4949: 23,-30 + 4950: 23,-29 + 4951: 23,-32 + 4952: 29,-34 + 4953: 29,-33 + 4954: 29,-32 + 4955: 29,-30 + 4956: 29,-29 + 4957: 32,-34 + 4958: 32,-31 + 4959: 32,-30 + 4960: 36,-30 + 4961: 35,-29 + 4962: 33,-26 + 4963: 36,-21 + 4964: 38,-16 + 4965: 37,-15 + 4966: 39,-16 + 4967: 38,-17 + 4968: 38,-15 + 4969: 37,-15 + 4970: 62,-31 + 4971: 62,-33 + 4972: 61,-31 + 4973: 63,-33 + 4974: 63,-33 + 4975: 63,-32 + 4976: 62,-32 + 4977: 62,-32 + 4978: 64,8 + 4979: 63,9 + 4980: 65,9 + 4981: 64,8 + 4982: 64,9 + 4983: 64,10 + 4984: 67,6 + 4985: 68,4 + 4986: 68,6 + 4987: 67,5 + 4988: 68,0 + 4989: 68,1 + 4990: 68,2 + 4991: 67,0 + 4992: 68,-2 + 4993: 67,-3 + 4994: 68,-4 + 4995: 68,-3 + 4996: 68,-3 + 4997: 76,-6 + 5003: 54,-30 + 5004: 52,-31 + 5005: 51,-31 + 5006: 52,-33 + 5007: 52,-34 + 5008: 51,-33 + 5009: 51,-32 + 5010: 52,-35 + 5011: 51,-33 + 5012: 51,-31 + 5013: 52,-35 + 5014: 52,-35 + 5015: 55,-35 + 5016: 54,-34 + 5017: 56,-33 + 5018: 57,-33 + 5019: 55,-34 + 5020: 55,-36 + 5021: 54,-35 + 5022: 55,-34 + 5023: 54,-35 + 5024: 55,-35 + 5025: 55,-34 + 5026: 40,-31 + 5027: 40,-30 + 5028: 40,-30 + 5029: 41,-31 + 5030: 41,-29 + 5031: 42,-29 + 5032: 43,-29 + 5033: 44,-29 + 5034: 44,-31 + 5035: 43,-30 + 5036: 33,-29 + 5037: 15,-39 + 5038: 14,-39 + 5039: 14,-39 + 5040: 9,-40 + 5041: 9,-39 + 5042: 9,-41 + 5043: 8,-40 + 5044: 19,-45 + 5045: 17,-45 + 5046: 16,-44 + 5047: 16,-45 + 5048: 16,-43 + 5049: 19,-45 + 5050: 20,-44 + 5051: 20,-45 + 5052: 18,-44 + 5053: 21,-45 + 5054: 21,-43 + 5055: 15,-48 + 5056: 14,-48 + 5057: 12,-47 + 5058: 12,-48 + 5059: 14,-48 + 5060: 16,-47 + 5061: 14,-48 + 5062: 13,-48 + 5063: 15,-47 + 5070: 21,-54 + 5071: 20,-54 + 5072: 18,-54 + 5073: 16,-54 + 5074: 16,-55 + 5075: 18,-53 + 5076: 19,-53 + 5077: 21,-55 + 5078: 21,-58 + 5079: 21,-59 + 5080: 20,-58 + 5081: 18,-58 + 5082: 17,-58 + 5083: 16,-58 + 5084: 16,-59 + 5085: 19,-59 + 5086: 19,-59 + 5087: 18,-59 + 5088: 27,-46 + 5089: 26,-45 + 5090: 26,-44 + 5091: 27,-45 + 5092: 27,-45 + 5093: 28,-42 + 5094: 29,-42 + 5095: 29,-40 + 5096: 28,-39 + 5097: 28,-39 + 5098: 28,-40 + 5099: 29,-47 + 5100: 28,-47 + 5101: 66,-52 + 5102: 65,-51 + 5103: 66,-52 + 5104: 66,-51 + 5105: 65,-52 + 5106: 66,-51 + 5107: 27,15 + 5108: 28,15 + 5109: 27,14 + 5110: 27,12 + 5111: -23,34 + 5112: -23,35 + 5113: -22,34 + 5114: -27,36 + 5115: -27,34 + 5116: -28,35 + 5117: -27,35 + 5118: -29,36 + 5119: -30,37 + 5120: -30,38 + 5121: -28,35 + 5122: -28,34 + 5123: -29,35 + 5124: -26,36 + 5125: -25,38 + 5126: -26,37 + 5127: -32,36 + 5128: -33,35 + 5129: -33,37 + 5130: -33,35 + 5131: -34,36 + 5132: -33,38 + 5133: -33,35 + 5134: -36,5 + 5135: -42,6 + 5136: -43,4 + 5137: -43,6 + 5138: -42,7 + 5139: -51,9 + 5140: -49,13 + 5141: -42,-5 + 5142: -43,-5 + 5143: -42,-3 + 5144: -45,-4 + 5145: -45,-5 + 5146: -46,-4 + 5147: -43,-3 + 5148: -43,-2 + 5149: -42,-2 + 5150: -60,-29 + 5151: -60,-29 + 5152: -57,-36 + 5153: -58,-36 + 5154: -59,-36 + 5155: -57,-37 + 5156: -58,-35 + 5157: -58,-34 + 5158: -57,-35 + 5159: -59,-34 + 5160: -58,-34 + 5161: -59,-34 + 5162: -60,-34 + 5163: -60,-35 + 5164: -61,-21 + 5165: -62,-21 + 5166: -62,-20 + 5167: -61,-20 + 5168: -61,-20 + 5169: 13,35 + 5800: 52,20 + 5801: 51,21 + 5802: 53,20 + 5803: 53,21 + 6082: 49,-7 + 6083: 48,-6 + 6084: 48,-4 + 6085: 49,-4 + 6086: 52,-7 + 6087: 52,-5 + 6088: 51,-6 + 6089: 52,-2 + 6090: 52,-3 + 6091: 48,-1 + 6092: 48,-2 + 6112: 49,-12 + 6113: 49,-14 + 6114: 49,-15 + 6115: 49,-13 + 6116: 52,-14 + 6117: 52,-13 + 6118: 52,-12 + 6119: 52,-15 + 6120: 52,-15 + 6121: 52,-10 + 6122: 51,1 + 6123: 51,3 + 6124: 51,4 + 6125: 51,8 + 6126: 51,9 + 6127: 51,11 + 6128: 51,13 + 6129: 49,13 + 6130: 49,11 + 6131: 49,9 + 6132: 49,7 + 6133: 49,5 + 6134: 49,3 + 6135: 49,1 + 6148: 42,9 + 6149: 43,9 + 6150: 42,7 + 6151: 43,7 + 6152: 45,7 + 6153: 45,9 + 6154: 46,7 + 6155: 40,4 + 6156: 42,4 + 6157: 43,4 + 6158: 43,2 + 6159: 43,1 + 6160: 43,-2 + 6161: 43,-4 + 6162: 43,-7 + 6163: 43,-6 + 6164: 43,-10 + 6165: 43,-11 + 6166: 45,5 + 6167: 42,5 + 6168: 41,5 + 6246: 90,-18 + 6247: 89,-18 + 6304: 51,-39 + 6305: 52,-39 + 6306: 54,-39 + 6307: 52,-37 + 6317: 51,-30 + 6318: 52,-29 + 6340: -33,-12 + 6341: -33,-10 + 6357: -36,-45 + 6358: -35,-44 + 6359: -35,-46 + 6449: 14,39 + 6450: 13,40 + 6451: 15,42 + 6452: 15,41 + 6453: 16,39 + 6513: 8,-47 + 6659: -34,14 + 6660: -33,15 + 6661: -30,15 + 6662: -31,16 + 6663: -30,17 + 6664: -29,14 + 6665: -29,12 + 6666: -32,12 + 6667: -35,14 + 6668: -37,14 + 6669: -38,13 + 6761: 43,13 + 6762: 42,11 + 6829: 59,-8 + 6830: 57,-5 + 6831: 61,-4 + 6837: -14,-38 + 6838: -13,-37 + 6848: -12,-37 + 6849: -12,-37 + 6850: -11,-40 + 6866: 53,-21 + 6867: 54,-21 + 6868: 57,-21 + 6869: 56,-23 + 6870: 58,-24 + 6901: 78,-7 + 6909: 52,-23 + 6961: -34,-5 + 6962: -32,-3 + 6963: -34,-2 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 2848: -43,17 + 2842: -43,17 - node: cleanable: True color: '#835432FF' id: DirtHeavyMonotile decals: - 2773: -38,29 - 2774: -36,28 - 2775: -34,26 - 2776: -34,24 - 2777: -36,22 - 2778: -37,25 - 2779: -37,26 - 2780: -37,27 - 2781: -38,27 - 2782: -36,26 + 2767: -38,29 + 2768: -36,28 + 2769: -34,26 + 2770: -34,24 + 2771: -36,22 + 2772: -37,25 + 2773: -37,26 + 2774: -37,27 + 2775: -38,27 + 2776: -36,26 - node: cleanable: True angle: -6.283185307179586 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 6282: 88,-21 - 6283: 88,-20 - 6284: 91,-20 - 6287: 87,-20 - 6290: 88,-19 + 6271: 88,-21 + 6272: 88,-20 + 6273: 91,-20 + 6276: 87,-20 + 6279: 88,-19 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 3007: 4,-31 - 3008: 0,-31 - 3009: -4,-31 - 3010: -8,-31 - 3011: -10,-31 - 3012: -13,-31 - 3013: -17,-31 - 3014: -18,-31 - 3015: -21,-31 - 3016: -25,-31 - 3017: -25,-27 - 3018: -25,-24 - 3019: -25,-22 - 3020: -25,-19 - 3021: -25,-18 - 3022: -25,-13 - 3023: -25,-11 - 3024: -24,-10 - 3025: -24,-8 - 3026: -22,-2 - 3027: -22,0 - 3028: -22,3 - 3029: -20,8 - 3030: -22,9 - 3031: -24,8 - 3032: -25,9 - 3033: -26,8 - 3034: -26,12 - 3035: -26,15 - 3036: -26,17 - 3037: -25,20 - 3038: -23,19 - 3039: -20,19 - 3040: -18,20 - 3041: -15,20 - 3042: -12,20 - 3043: -7,20 - 3044: -3,20 - 3045: -1,20 - 3046: 2,20 - 3047: 6,20 - 3048: 9,20 - 3049: 11,20 - 3050: 14,20 - 3051: 17,20 - 3052: 20,19 - 3053: 20,17 - 3054: 20,15 - 3055: 20,11 - 3056: 20,9 - 3057: 20,6 - 3058: 20,3 - 3059: 22,3 - 3060: 25,3 - 3061: 27,3 - 3062: 30,3 - 3063: 33,3 - 3064: 36,3 - 3065: 41,3 - 3066: 42,2 - 3067: 42,0 - 3068: 42,-3 - 3069: 42,-6 - 3070: 42,-9 - 3071: 42,-11 - 3072: 42,-15 - 3073: 42,-18 - 3074: 42,-20 - 3075: 44,-20 - 3076: 42,-13 - 3077: 42,-10 - 3078: 42,-7 - 3079: 42,-5 - 3080: 42,-2 - 3081: 42,1 - 3082: 39,3 - 3083: 37,3 - 3084: 35,3 - 3085: 32,3 - 3086: 31,3 - 3087: 26,3 - 3088: 22,3 - 3089: 20,6 - 3090: 20,9 - 3091: 20,12 - 3092: 20,15 - 3093: 20,19 - 3094: 19,20 - 3095: 12,20 - 3096: 8,20 - 3097: 5,20 - 3098: 2,20 - 3099: -1,20 - 3100: -5,20 - 3101: -9,20 - 3102: -12,20 - 3103: -16,20 - 3105: -19,19 - 3106: -26,20 - 3107: -26,16 - 3108: -26,11 - 3109: -26,8 - 3110: -23,8 - 3111: -22,9 - 3112: -21,8 - 3113: -20,9 - 3114: -22,3 - 3115: -22,0 - 3116: -22,-3 - 3117: -22,-5 - 3118: -23,-7 - 3119: -25,-7 - 3120: -23,-8 - 3121: -25,-10 - 3122: -25,-10 - 3123: -25,-14 - 3124: -25,-18 - 3125: -25,-21 - 3126: -25,-25 - 3127: -25,-28 - 3128: -23,-31 - 3129: -20,-31 - 3130: -15,-31 - 3131: -9,-31 - 3132: -5,-31 - 3133: 1,-31 - 3134: 1,-32 - 3135: 7,-31 - 3136: 5,-31 - 3137: 8,-32 - 3138: 9,-33 - 3139: 12,-33 - 3140: 15,-33 - 3141: 18,-33 - 3142: 19,-33 - 3143: 20,-29 - 3144: 20,-27 - 3145: 21,-26 - 3146: 24,-26 - 3147: 27,-26 - 3148: 28,-26 - 3149: 28,-22 - 3150: 28,-21 - 3151: 28,-20 - 3152: 32,-20 - 3153: 35,-20 - 3154: 39,-20 - 3155: 42,-20 - 3156: 40,-20 - 3157: 42,-17 - 3158: 42,-19 - 3159: 49,-20 - 3160: 52,-20 - 3161: 47,-20 - 3162: 53,-20 - 3163: 54,-20 - 3164: 56,-20 - 3165: 58,-20 - 3166: 58,-20 - 3167: 58,-22 - 3168: 58,-22 - 3169: 49,-20 - 3170: 50,-20 - 3171: 44,-13 - 3172: 41,-13 - 3173: 39,-1 - 3174: 37,-1 - 3175: 36,-1 - 3176: 50,6 - 3177: 50,2 - 3178: 50,14 - 3179: 46,-7 - 3180: 45,-8 - 3181: 46,-4 - 3182: 46,-5 - 3183: 45,-1 - 3184: 46,-2 - 3185: 54,-1 - 3186: 55,-1 - 3187: 55,-7 - 3188: 62,-6 - 3189: 61,-6 - 3190: 55,7 - 3191: 54,7 - 3192: 59,15 - 3193: 58,15 - 3194: 60,16 - 3195: 60,3 - 3196: 60,1 - 3197: 63,1 - 3198: 62,1 - 3199: 62,0 - 3200: 62,3 - 3201: 62,4 - 3202: 28,3 - 3203: 28,3 - 3204: 24,8 - 3205: 24,6 - 3206: 23,8 - 3207: 25,7 - 3208: 24,7 - 3209: 24,6 - 3210: 25,11 - 3211: 25,13 - 3212: 25,14 - 3213: 23,15 - 3214: 22,12 - 3215: 23,12 - 3216: 23,14 - 3217: 23,11 - 3218: 24,20 - 3219: 25,21 - 3220: 25,20 - 3221: 29,20 - 3222: 29,19 - 3223: 30,19 - 3224: 29,21 - 3225: -19,26 - 3226: -21,28 - 3227: -20,26 - 3228: -20,28 - 3229: -7,40 - 3230: 3,40 - 3231: -26,19 - 3232: -17,11 - 3233: -16,11 - 3234: -16,13 - 3235: -17,13 - 3236: -30,3 - 3237: -32,3 - 3238: -37,3 - 3239: -36,2 - 3240: -35,2 - 3241: -37,1 - 3242: -32,2 - 3243: -32,1 - 3244: -31,2 - 3245: -33,2 - 3246: -38,0 - 3247: -37,0 - 3248: -34,0 - 3249: -33,0 - 3250: -31,0 - 3251: -30,0 - 3252: -55,6 - 3253: -54,6 - 3254: -54,4 - 3255: -54,2 - 3256: -56,5 - 3257: -55,4 - 3258: -53,1 - 3259: -51,1 - 3260: -49,1 - 3261: -47,1 - 3262: -45,1 - 3263: -44,1 - 3264: -54,1 - 3265: -54,-4 - 3266: -55,-4 - 3267: -54,-8 - 3268: -54,-10 - 3269: -54,-12 - 3270: -54,-14 - 3271: -54,-16 - 3272: -54,-19 - 3273: -53,-21 - 3274: -51,-21 - 3275: -54,-21 - 3276: -54,-20 - 3277: -54,-18 - 3278: -48,-21 - 3279: -48,-23 - 3280: -48,-24 - 3281: -50,-25 - 3282: -47,-25 - 3283: -45,-25 - 3284: -45,-26 - 3285: -45,-29 - 3286: -44,-28 - 3287: -43,-28 - 3288: -45,-31 - 3289: -48,-32 - 3290: -49,-32 - 3291: -51,-32 - 3292: -51,-30 - 3293: -51,-28 - 3294: -51,-26 - 3295: -48,-33 - 3296: -54,-26 - 3297: -56,-25 - 3298: -55,-25 - 3299: -56,-26 - 3300: -57,-26 - 3301: -55,-26 - 3302: -56,-25 - 3303: -48,-36 - 3304: -48,-38 - 3305: -48,-40 - 3306: -48,-42 - 3307: -48,-44 - 3308: -48,-47 - 3309: -49,-47 - 3310: -51,-47 - 3311: -53,-47 - 3312: -54,-47 - 3313: -45,-47 - 3314: -45,-47 - 3315: -43,-47 - 3316: -41,-47 - 3317: -41,-47 - 3318: -41,-50 - 3319: -41,-51 - 3320: -41,-54 - 3321: -36,-58 - 3322: -36,-60 - 3323: -36,-63 - 3324: -36,-64 - 3325: -36,-56 - 3326: -37,-56 - 3327: -41,-61 - 3328: -42,-62 - 3329: -41,-64 - 3330: -41,-64 - 3331: -42,-62 - 3332: -41,-48 - 3333: -53,-47 - 3334: -55,-47 - 3335: -55,-49 - 3336: -55,-52 - 3337: -55,-54 - 3338: -60,-58 - 3339: -60,-60 - 3340: -60,-62 - 3341: -60,-63 - 3342: -60,-64 - 3343: -58,-56 - 3344: -60,-56 - 3345: -55,-64 - 3346: -55,-62 - 3347: -54,-61 - 3348: -54,-63 - 3349: -54,-64 - 3350: -8,-28 - 3351: -7,-26 - 3352: -8,-27 - 3353: -8,-27 - 3354: 7,-22 - 3355: 5,-22 - 3356: 4,-23 - 3357: 4,-20 - 3358: 4,-19 - 3359: 7,-20 - 3360: 7,-21 - 3361: 7,-24 - 3362: 7,-25 - 3363: 10,-16 - 3364: 10,-18 - 3365: 10,-18 - 3368: 12,-26 - 3369: 13,-25 - 3370: 14,-25 - 3371: 14,-26 - 3372: 15,-25 - 3373: 16,-26 - 3375: -4,-36 - 3376: -4,-37 - 3377: -6,-37 - 3378: 34,-3 - 3379: 32,-2 - 3380: 32,-3 - 3381: 31,-2 - 3382: 31,-3 - 3383: 31,-35 - 3384: 33,-35 - 3385: 32,-37 - 3386: 33,-36 - 3387: 33,-38 - 3388: 32,-36 - 3389: 31,-38 - 3390: 47,-36 - 3391: 47,-35 - 3392: 49,-35 - 3393: 49,-37 - 3394: 47,-37 - 3395: 47,-38 - 3396: 49,-38 - 3397: 47,-39 - 3398: 24,-29 - 3399: 26,-29 - 3400: 27,-29 - 3401: 28,-29 - 3402: 25,-34 - 3403: 27,-34 - 3404: 28,-34 - 3405: 26,-34 - 3406: 28,-43 - 3407: 29,-43 - 3408: 28,-45 - 3409: 29,-45 - 3410: 28,-46 - 3411: 29,-46 - 3412: 19,-46 - 3413: 18,-46 - 3414: 18,-47 - 3415: 19,-49 - 3416: 19,-49 - 3417: 18,-50 - 3418: 19,-50 - 3419: 18,-48 - 3420: 16,-48 - 3421: 14,-48 - 3422: 12,-47 - 3423: 10,-40 - 3424: 11,-39 - 3425: 11,-40 - 3426: 11,-40 - 3427: 8,-31 - 3428: 8,-31 - 3429: 5,-14 - 3430: 6,-14 - 3431: 6,-15 - 3432: 5,-15 - 3433: 4,-15 - 3434: 4,-15 - 3435: 25,7 - 3436: 20,16 - 3437: 20,18 - 3438: 15,26 - 3439: 14,26 - 3440: 13,26 - 3441: 13,26 - 3442: -44,10 - 3443: -45,10 - 3444: -46,10 - 3445: -47,10 - 3446: -49,10 - 3447: -50,10 - 3448: -50,12 - 3449: -47,12 - 3450: -48,1 - 3451: -47,1 - 3452: -48,-41 - 3453: -38,-56 - 3454: -38,-56 - 3455: -42,-57 - 3456: -55,-57 - 3588: -50,0 - 3589: -50,2 - 3590: -48,2 - 3591: -46,2 - 3592: -45,2 - 3593: -44,0 - 3594: -46,0 - 3595: -48,0 - 3627: -51,3 - 3628: -49,3 - 3629: -47,3 - 3630: -45,3 - 3631: -44,5 - 3632: -46,5 - 3633: -48,5 - 3634: -50,5 - 3635: -50,-1 - 3636: -49,-1 - 3637: -47,-1 - 3638: -46,-1 - 3639: -44,-1 - 3640: -44,-3 - 3641: -46,-3 - 3642: -47,-3 - 3643: -49,-3 - 3644: -50,-3 - 3645: -48,-3 - 3646: -46,-3 - 3647: -48,3 - 3648: -46,3 - 3717: -21,6 - 3718: -21,7 - 3719: -22,6 - 3720: -21,7 - 3896: 19,1 - 3897: 21,1 - 3898: 22,1 - 3899: 23,1 - 3900: 23,1 - 3954: 40,-22 - 3955: 41,-22 - 3956: 43,-22 - 3957: 44,-22 - 4009: 61,-25 - 4010: 62,-25 - 4011: 62,-26 - 4016: 68,-23 - 4039: 68,-15 - 4040: 68,-13 - 4041: 68,-14 - 4042: 67,-12 - 4043: 70,-12 - 4044: 70,-14 - 4045: 68,-11 - 4046: 71,-12 - 4047: 70,-14 - 4048: 70,-15 - 4049: 71,-13 - 4050: 69,-13 - 4051: 69,-12 - 4052: 68,-10 - 4053: 67,-10 - 4054: 68,-8 - 4055: 69,-8 - 4056: 70,-9 - 4057: 70,-10 - 4151: 39,-34 - 4152: 40,-34 - 4153: 39,-34 - 4154: 42,-34 - 4155: 40,-34 - 4156: 41,-33 - 4157: 34,-36 - 4158: 34,-35 - 4159: 35,-36 - 4160: 38,-37 - 4161: 43,-37 - 4162: 43,-37 - 4163: 46,-37 - 4164: 46,-35 - 4165: 46,-37 - 4166: 47,-37 - 4167: 48,-36 - 4168: 48,-37 - 4169: 46,-39 - 4170: 44,-39 - 4171: 41,-39 - 4172: 37,-39 - 4173: 35,-39 - 4174: 39,-38 - 4175: 33,-38 - 4468: -20,6 - 4469: -20,7 - 4470: -21,6 - 4471: -20,7 - 4472: -20,6 - 4473: -21,12 - 4474: -25,29 - 4475: -25,28 - 4476: -26,30 - 4477: -26,28 - 4478: -26,29 - 4502: -16,40 - 4503: -17,41 - 4504: -15,39 - 4505: -13,41 - 4506: -12,39 - 4557: -2,46 - 4558: -4,46 - 4559: -1,48 - 4560: 0,47 - 4561: -3,50 - 4562: 0,51 - 4563: 2,47 - 4564: 2,45 - 4565: 2,43 - 4566: 2,40 - 4567: -6,40 - 4568: -7,40 - 4569: -7,40 - 4570: -4,46 - 4571: -5,45 - 4572: -6,46 - 4573: 7,41 - 4574: 6,42 - 4575: 9,40 - 4576: 6,39 - 4577: 8,40 - 4578: 6,39 - 4579: 8,39 - 4580: 7,42 - 4581: 7,41 - 4582: 5,41 - 4613: 14,34 - 4614: 13,36 - 4615: 14,37 - 4616: 16,37 - 4617: 14,36 - 4618: 5,30 - 4619: 4,30 - 4620: 3,32 - 4621: 5,32 - 4622: 5,32 - 4623: 4,31 - 4624: 4,31 - 4625: 3,32 - 4626: 3,28 - 4627: 2,27 - 4628: 1,28 - 4629: 3,27 - 4630: 4,26 - 4631: 3,25 - 4632: 4,24 - 4633: 3,23 - 4634: 1,24 - 4635: 2,23 - 4653: -3,25 - 4654: -4,23 - 4655: -2,23 - 4656: -3,24 - 4657: 0,24 - 4658: 0,23 - 4659: -16,29 - 4660: -15,26 - 4661: -15,28 - 4662: -13,28 - 4663: -13,29 - 4664: -9,28 - 4665: -10,26 - 4666: -9,27 - 4667: -11,28 - 4668: -8,29 - 4669: -9,26 - 4670: -6,27 - 4671: -6,26 - 4672: -6,28 - 4673: -3,29 - 4674: -4,27 - 4675: -1,28 - 4676: -3,29 - 4677: -2,30 - 4678: -3,32 - 4679: -2,33 - 4680: -2,34 - 4681: -8,33 - 4682: -7,32 - 4683: -8,32 - 4684: -9,33 - 4685: -6,34 - 4686: -6,33 - 4687: -13,34 - 4755: -17,-28 - 4756: -19,-28 - 4757: -20,-27 - 4758: -20,-26 - 4759: -20,-27 - 4760: -15,-28 - 4761: -14,-28 - 4762: -14,-27 - 4763: -14,-29 - 4764: -17,-29 - 4820: -6,-37 - 4821: -5,-37 - 4822: -4,-37 - 5008: 78,-28 - 5009: 79,-28 - 5010: 78,-28 - 5011: 78,-27 - 5012: 78,-29 - 5074: 13,-45 - 5075: 12,-45 - 5076: 12,-50 - 5077: 12,-49 - 5078: 16,-49 - 5079: 15,-49 - 5863: 81,-34 - 5864: 82,-35 - 5865: 81,-35 - 5866: 81,-35 - 5892: -2,41 - 5893: -2,42 - 5894: -3,42 - 5895: -3,42 - 5896: -1,43 - 6104: 49,-1 - 6105: 51,-1 - 6106: 50,-2 - 6107: 49,-3 - 6108: 49,-5 - 6109: 51,-5 - 6110: 51,-3 - 6111: 50,-8 - 6112: 49,-8 - 6113: 48,-7 - 6114: 52,-8 - 6115: 54,-7 - 6116: 49,-10 - 6117: 50,-11 - 6118: 48,-11 - 6119: 51,-10 - 6120: 51,-11 - 6121: 52,-11 - 6122: 53,-11 - 6147: 50,2 - 6148: 50,4 - 6149: 50,9 - 6150: 50,12 - 6151: 50,13 - 6152: 47,9 - 6153: 47,7 - 6154: 41,8 - 6155: 41,7 - 6156: 40,8 - 6157: 40,7 - 6158: 44,8 - 6180: 46,4 - 6181: 45,4 - 6182: 46,2 - 6183: 45,2 - 6184: 45,1 - 6185: 46,5 - 6186: 40,5 - 6187: 44,4 - 6188: 44,7 - 6189: 55,3 - 6190: 54,2 - 6191: 53,3 - 6192: 55,4 - 6193: 57,4 - 6194: 56,2 - 6195: 55,1 - 6196: 55,6 - 6197: 53,7 - 6198: 53,6 - 6199: 55,8 - 6200: 56,10 - 6201: 55,10 - 6202: 53,12 - 6203: 53,11 - 6204: 57,14 - 6213: -1,-23 - 6214: 0,-23 - 6215: -4,-23 - 6216: -5,-23 - 6217: 35,19 - 6218: 34,19 - 6219: 35,20 - 6220: -8,27 - 6221: -12,27 - 6222: -10,27 - 6223: -14,27 - 6224: -15,27 - 6225: -15,27 - 6259: 88,-18 - 6260: 87,-18 - 6261: 91,-19 - 6262: 91,-18 - 6263: 92,-19 - 6342: 51,-36 - 6343: 51,-37 - 6344: 53,-39 - 6345: 54,-40 - 6346: 51,-35 - 6353: 51,-29 - 6359: 51,-26 - 6360: 52,-27 - 6376: -32,-12 - 6377: -34,-11 - 6378: -32,-10 - 6379: -33,-9 - 6380: -34,-9 - 6384: 61,-21 - 6385: -24,-42 - 6387: -25,-42 - 6388: -22,-42 - 6389: -22,-42 - 6396: -37,-45 - 6397: -38,-44 - 6398: -38,-46 - 6399: -37,-46 - 6488: 13,41 - 6489: 15,39 - 6490: 16,41 - 6526: 33,-2 - 6527: 34,-2 - 6528: 34,-2 - 6546: 7,-47 - 6639: -20,10 - 6640: -24,13 - 6704: -35,12 - 6705: -33,11 - 6706: -32,13 - 6707: -31,13 - 6708: -32,16 - 6709: -34,16 - 6710: -34,17 - 6711: -32,17 - 6712: -30,17 - 6713: -29,16 - 6714: -29,13 - 6715: -29,11 - 6716: -32,12 - 6717: -37,14 - 6718: -38,13 - 6719: -39,14 - 6729: -35,17 - 6730: -35,11 - 6731: -34,11 - 6732: -31,11 - 6733: -30,11 - 6734: -33,16 - 6735: -38,10 - 6736: -29,15 - 6737: -29,15 - 6738: -29,16 - 6739: -29,17 - 6740: -32,17 - 6783: 44,11 - 6784: 45,12 - 6785: 44,14 - 6786: 43,15 - 6787: 44,16 - 6788: 47,14 - 6789: 41,12 - 6790: 41,13 - 6791: 41,11 - 6792: 41,11 - 6793: 47,11 - 6794: 47,12 - 6806: 44,15 - 6807: 44,15 - 6847: 58,-7 - 6848: 59,-6 - 6849: 58,-5 - 6850: 60,-5 - 6851: 60,-6 - 6852: 60,-7 - 6853: 60,-6 - 6866: 59,-4 - 6867: 58,-4 - 6868: 58,-4 - 6873: -15,-37 - 6874: -14,-37 - 6880: -11,-37 - 6881: -11,-38 - 6885: -33,1 - 6886: -33,1 - 6888: -43,1 - 6889: -46,1 - 6905: 52,-21 - 6906: 56,-21 - 6907: 57,-23 - 6908: 56,-24 - 6909: 57,-24 - 6910: 57,-22 - 6918: 53,-22 - 6926: 66,-25 - 6927: 66,-24 - 6928: 66,-24 - 6929: 54,-24 - 6930: 53,-24 - 6931: 52,-24 - 6932: 52,-24 - 6936: 79,-7 - 6944: 53,-23 - 6949: 57,2 - 6950: 57,3 - 6951: 48,3 - 6952: 3,-22 - 6953: 16,23 - 6954: 16,25 - 6960: -36,3 - 6961: -33,3 - 6962: -35,-1 - 6963: -36,-5 - 6964: -29,-5 - 6965: -34,3 - 6966: -34,2 - 6967: -34,1 - 6968: -30,1 - 6969: -38,2 - 6977: -33,-4 - 6978: -34,-4 - 6979: -32,-3 - 6980: -31,-3 - 6981: -34,-3 - 6982: -34,-2 - 6983: -31,-5 - 6984: -32,-5 + 3001: 4,-31 + 3002: 0,-31 + 3003: -4,-31 + 3004: -8,-31 + 3005: -10,-31 + 3006: -13,-31 + 3007: -17,-31 + 3008: -18,-31 + 3009: -21,-31 + 3010: -25,-31 + 3011: -25,-27 + 3012: -25,-24 + 3013: -25,-22 + 3014: -25,-19 + 3015: -25,-18 + 3016: -25,-13 + 3017: -25,-11 + 3018: -24,-10 + 3019: -24,-8 + 3020: -22,-2 + 3021: -22,0 + 3022: -22,3 + 3023: -20,8 + 3024: -22,9 + 3025: -24,8 + 3026: -25,9 + 3027: -26,8 + 3028: -26,12 + 3029: -26,15 + 3030: -26,17 + 3031: -25,20 + 3032: -23,19 + 3033: -20,19 + 3034: -18,20 + 3035: -15,20 + 3036: -12,20 + 3037: -7,20 + 3038: -3,20 + 3039: -1,20 + 3040: 2,20 + 3041: 6,20 + 3042: 9,20 + 3043: 11,20 + 3044: 14,20 + 3045: 17,20 + 3046: 20,19 + 3047: 20,17 + 3048: 20,15 + 3049: 20,11 + 3050: 20,9 + 3051: 20,6 + 3052: 20,3 + 3053: 22,3 + 3054: 25,3 + 3055: 27,3 + 3056: 30,3 + 3057: 33,3 + 3058: 36,3 + 3059: 41,3 + 3060: 42,2 + 3061: 42,0 + 3062: 42,-3 + 3063: 42,-6 + 3064: 42,-9 + 3065: 42,-11 + 3066: 42,-15 + 3067: 42,-18 + 3068: 42,-20 + 3069: 44,-20 + 3070: 42,-13 + 3071: 42,-10 + 3072: 42,-7 + 3073: 42,-5 + 3074: 42,-2 + 3075: 42,1 + 3076: 39,3 + 3077: 37,3 + 3078: 35,3 + 3079: 32,3 + 3080: 31,3 + 3081: 26,3 + 3082: 22,3 + 3083: 20,6 + 3084: 20,9 + 3085: 20,12 + 3086: 20,15 + 3087: 20,19 + 3088: 19,20 + 3089: 12,20 + 3090: 8,20 + 3091: 5,20 + 3092: 2,20 + 3093: -1,20 + 3094: -5,20 + 3095: -9,20 + 3096: -12,20 + 3097: -16,20 + 3099: -19,19 + 3100: -26,20 + 3101: -26,16 + 3102: -26,11 + 3103: -26,8 + 3104: -23,8 + 3105: -22,9 + 3106: -21,8 + 3107: -20,9 + 3108: -22,3 + 3109: -22,0 + 3110: -22,-3 + 3111: -22,-5 + 3112: -23,-7 + 3113: -25,-7 + 3114: -23,-8 + 3115: -25,-10 + 3116: -25,-10 + 3117: -25,-14 + 3118: -25,-18 + 3119: -25,-21 + 3120: -25,-25 + 3121: -25,-28 + 3122: -23,-31 + 3123: -20,-31 + 3124: -15,-31 + 3125: -9,-31 + 3126: -5,-31 + 3127: 1,-31 + 3128: 1,-32 + 3129: 7,-31 + 3130: 5,-31 + 3131: 8,-32 + 3132: 9,-33 + 3133: 12,-33 + 3134: 15,-33 + 3135: 18,-33 + 3136: 19,-33 + 3137: 20,-29 + 3138: 20,-27 + 3139: 21,-26 + 3140: 24,-26 + 3141: 27,-26 + 3142: 28,-26 + 3143: 28,-22 + 3144: 28,-21 + 3145: 28,-20 + 3146: 32,-20 + 3147: 35,-20 + 3148: 39,-20 + 3149: 42,-20 + 3150: 40,-20 + 3151: 42,-17 + 3152: 42,-19 + 3153: 49,-20 + 3154: 52,-20 + 3155: 47,-20 + 3156: 53,-20 + 3157: 54,-20 + 3158: 56,-20 + 3159: 58,-20 + 3160: 58,-20 + 3161: 58,-22 + 3162: 58,-22 + 3163: 49,-20 + 3164: 50,-20 + 3165: 44,-13 + 3166: 41,-13 + 3167: 39,-1 + 3168: 37,-1 + 3169: 36,-1 + 3170: 50,6 + 3171: 50,2 + 3172: 50,14 + 3173: 46,-7 + 3174: 45,-8 + 3175: 46,-4 + 3176: 46,-5 + 3177: 45,-1 + 3178: 46,-2 + 3179: 54,-1 + 3180: 55,-1 + 3181: 55,-7 + 3182: 62,-6 + 3183: 61,-6 + 3184: 55,7 + 3185: 54,7 + 3186: 59,15 + 3187: 58,15 + 3188: 60,16 + 3189: 60,3 + 3190: 60,1 + 3191: 63,1 + 3192: 62,1 + 3193: 62,0 + 3194: 62,3 + 3195: 62,4 + 3196: 28,3 + 3197: 28,3 + 3198: 24,8 + 3199: 24,6 + 3200: 23,8 + 3201: 25,7 + 3202: 24,7 + 3203: 24,6 + 3204: 25,11 + 3205: 25,13 + 3206: 25,14 + 3207: 23,15 + 3208: 22,12 + 3209: 23,12 + 3210: 23,14 + 3211: 23,11 + 3212: 24,20 + 3213: 25,21 + 3214: 25,20 + 3215: 29,20 + 3216: 29,19 + 3217: 30,19 + 3218: 29,21 + 3219: -19,26 + 3220: -21,28 + 3221: -20,26 + 3222: -20,28 + 3223: -7,40 + 3224: 3,40 + 3225: -26,19 + 3226: -17,11 + 3227: -16,11 + 3228: -16,13 + 3229: -17,13 + 3230: -30,3 + 3231: -32,3 + 3232: -37,3 + 3233: -36,2 + 3234: -35,2 + 3235: -37,1 + 3236: -32,2 + 3237: -32,1 + 3238: -31,2 + 3239: -33,2 + 3240: -38,0 + 3241: -37,0 + 3242: -34,0 + 3243: -33,0 + 3244: -31,0 + 3245: -30,0 + 3246: -55,6 + 3247: -54,6 + 3248: -54,4 + 3249: -54,2 + 3250: -56,5 + 3251: -55,4 + 3252: -53,1 + 3253: -51,1 + 3254: -49,1 + 3255: -47,1 + 3256: -45,1 + 3257: -44,1 + 3258: -54,1 + 3259: -54,-4 + 3260: -55,-4 + 3261: -54,-8 + 3262: -54,-10 + 3263: -54,-12 + 3264: -54,-14 + 3265: -54,-16 + 3266: -54,-19 + 3267: -53,-21 + 3268: -51,-21 + 3269: -54,-21 + 3270: -54,-20 + 3271: -54,-18 + 3272: -48,-21 + 3273: -48,-23 + 3274: -48,-24 + 3275: -50,-25 + 3276: -47,-25 + 3277: -45,-25 + 3278: -45,-26 + 3279: -45,-29 + 3280: -44,-28 + 3281: -43,-28 + 3282: -45,-31 + 3283: -48,-32 + 3284: -49,-32 + 3285: -51,-32 + 3286: -51,-30 + 3287: -51,-28 + 3288: -51,-26 + 3289: -48,-33 + 3290: -54,-26 + 3291: -56,-25 + 3292: -55,-25 + 3293: -56,-26 + 3294: -57,-26 + 3295: -55,-26 + 3296: -56,-25 + 3297: -48,-36 + 3298: -48,-38 + 3299: -48,-40 + 3300: -48,-42 + 3301: -48,-44 + 3302: -48,-47 + 3303: -49,-47 + 3304: -51,-47 + 3305: -53,-47 + 3306: -54,-47 + 3307: -45,-47 + 3308: -45,-47 + 3309: -43,-47 + 3310: -41,-47 + 3311: -41,-47 + 3312: -41,-50 + 3313: -41,-51 + 3314: -41,-54 + 3315: -36,-58 + 3316: -36,-60 + 3317: -36,-63 + 3318: -36,-64 + 3319: -36,-56 + 3320: -37,-56 + 3321: -41,-61 + 3322: -42,-62 + 3323: -41,-64 + 3324: -41,-64 + 3325: -42,-62 + 3326: -41,-48 + 3327: -53,-47 + 3328: -55,-47 + 3329: -55,-49 + 3330: -55,-52 + 3331: -55,-54 + 3332: -60,-58 + 3333: -60,-60 + 3334: -60,-62 + 3335: -60,-63 + 3336: -60,-64 + 3337: -58,-56 + 3338: -60,-56 + 3339: -55,-64 + 3340: -55,-62 + 3341: -54,-61 + 3342: -54,-63 + 3343: -54,-64 + 3344: -8,-28 + 3345: -7,-26 + 3346: -8,-27 + 3347: -8,-27 + 3348: 7,-22 + 3349: 5,-22 + 3350: 4,-23 + 3351: 4,-20 + 3352: 4,-19 + 3353: 7,-20 + 3354: 7,-21 + 3355: 7,-24 + 3356: 7,-25 + 3357: 10,-16 + 3358: 10,-18 + 3359: 10,-18 + 3360: 12,-26 + 3361: 13,-25 + 3362: 14,-25 + 3363: 14,-26 + 3364: 15,-25 + 3365: 16,-26 + 3366: -4,-36 + 3367: -4,-37 + 3368: -6,-37 + 3369: 34,-3 + 3370: 32,-2 + 3371: 32,-3 + 3372: 31,-2 + 3373: 31,-3 + 3374: 31,-35 + 3375: 33,-35 + 3376: 32,-37 + 3377: 33,-36 + 3378: 33,-38 + 3379: 32,-36 + 3380: 31,-38 + 3381: 47,-36 + 3382: 47,-35 + 3383: 49,-35 + 3384: 49,-37 + 3385: 47,-37 + 3386: 47,-38 + 3387: 49,-38 + 3388: 47,-39 + 3389: 24,-29 + 3390: 26,-29 + 3391: 27,-29 + 3392: 28,-29 + 3393: 25,-34 + 3394: 27,-34 + 3395: 28,-34 + 3396: 26,-34 + 3397: 28,-43 + 3398: 29,-43 + 3399: 28,-45 + 3400: 29,-45 + 3401: 28,-46 + 3402: 29,-46 + 3403: 19,-46 + 3404: 18,-46 + 3405: 18,-47 + 3406: 19,-49 + 3407: 19,-49 + 3408: 18,-50 + 3409: 19,-50 + 3410: 18,-48 + 3411: 16,-48 + 3412: 14,-48 + 3413: 12,-47 + 3414: 10,-40 + 3415: 11,-39 + 3416: 11,-40 + 3417: 11,-40 + 3418: 8,-31 + 3419: 8,-31 + 3420: 5,-14 + 3421: 6,-14 + 3422: 6,-15 + 3423: 5,-15 + 3424: 4,-15 + 3425: 4,-15 + 3426: 25,7 + 3427: 20,16 + 3428: 20,18 + 3429: 15,26 + 3430: 14,26 + 3431: 13,26 + 3432: 13,26 + 3433: -44,10 + 3434: -45,10 + 3435: -46,10 + 3436: -47,10 + 3437: -49,10 + 3438: -50,10 + 3439: -50,12 + 3440: -47,12 + 3441: -48,1 + 3442: -47,1 + 3443: -48,-41 + 3444: -38,-56 + 3445: -38,-56 + 3446: -42,-57 + 3447: -55,-57 + 3579: -50,0 + 3580: -50,2 + 3581: -48,2 + 3582: -46,2 + 3583: -45,2 + 3584: -44,0 + 3585: -46,0 + 3586: -48,0 + 3618: -51,3 + 3619: -49,3 + 3620: -47,3 + 3621: -45,3 + 3622: -44,5 + 3623: -46,5 + 3624: -48,5 + 3625: -50,5 + 3626: -50,-1 + 3627: -49,-1 + 3628: -47,-1 + 3629: -46,-1 + 3630: -44,-1 + 3631: -44,-3 + 3632: -46,-3 + 3633: -47,-3 + 3634: -49,-3 + 3635: -50,-3 + 3636: -48,-3 + 3637: -46,-3 + 3638: -48,3 + 3639: -46,3 + 3708: -21,6 + 3709: -21,7 + 3710: -22,6 + 3711: -21,7 + 3887: 19,1 + 3888: 21,1 + 3889: 22,1 + 3890: 23,1 + 3891: 23,1 + 3945: 40,-22 + 3946: 41,-22 + 3947: 43,-22 + 3948: 44,-22 + 4000: 61,-25 + 4001: 62,-25 + 4002: 62,-26 + 4007: 68,-23 + 4030: 68,-15 + 4031: 68,-13 + 4032: 68,-14 + 4033: 67,-12 + 4034: 70,-12 + 4035: 70,-14 + 4036: 68,-11 + 4037: 71,-12 + 4038: 70,-14 + 4039: 70,-15 + 4040: 71,-13 + 4041: 69,-13 + 4042: 69,-12 + 4043: 68,-10 + 4044: 67,-10 + 4045: 68,-8 + 4046: 69,-8 + 4047: 70,-9 + 4048: 70,-10 + 4142: 39,-34 + 4143: 40,-34 + 4144: 39,-34 + 4145: 42,-34 + 4146: 40,-34 + 4147: 41,-33 + 4148: 34,-36 + 4149: 34,-35 + 4150: 35,-36 + 4151: 38,-37 + 4152: 43,-37 + 4153: 43,-37 + 4154: 46,-37 + 4155: 46,-35 + 4156: 46,-37 + 4157: 47,-37 + 4158: 48,-36 + 4159: 48,-37 + 4160: 46,-39 + 4161: 44,-39 + 4162: 41,-39 + 4163: 37,-39 + 4164: 35,-39 + 4165: 39,-38 + 4166: 33,-38 + 4459: -20,6 + 4460: -20,7 + 4461: -21,6 + 4462: -20,7 + 4463: -20,6 + 4464: -21,12 + 4465: -25,29 + 4466: -25,28 + 4467: -26,30 + 4468: -26,28 + 4469: -26,29 + 4493: -16,40 + 4494: -17,41 + 4495: -15,39 + 4496: -13,41 + 4497: -12,39 + 4548: -2,46 + 4549: -4,46 + 4550: -1,48 + 4551: 0,47 + 4552: -3,50 + 4553: 0,51 + 4554: 2,47 + 4555: 2,45 + 4556: 2,43 + 4557: 2,40 + 4558: -6,40 + 4559: -7,40 + 4560: -7,40 + 4561: -4,46 + 4562: -5,45 + 4563: -6,46 + 4564: 7,41 + 4565: 6,42 + 4566: 9,40 + 4567: 6,39 + 4568: 8,40 + 4569: 6,39 + 4570: 8,39 + 4571: 7,42 + 4572: 7,41 + 4573: 5,41 + 4604: 14,34 + 4605: 13,36 + 4606: 14,37 + 4607: 16,37 + 4608: 14,36 + 4609: 5,30 + 4610: 4,30 + 4611: 3,32 + 4612: 5,32 + 4613: 5,32 + 4614: 4,31 + 4615: 4,31 + 4616: 3,32 + 4617: 3,28 + 4618: 2,27 + 4619: 1,28 + 4620: 3,27 + 4621: 4,26 + 4622: 3,25 + 4623: 4,24 + 4624: 3,23 + 4625: 1,24 + 4626: 2,23 + 4644: -3,25 + 4645: -4,23 + 4646: -2,23 + 4647: -3,24 + 4648: 0,24 + 4649: 0,23 + 4650: -16,29 + 4651: -15,26 + 4652: -15,28 + 4653: -13,28 + 4654: -13,29 + 4655: -9,28 + 4656: -10,26 + 4657: -9,27 + 4658: -11,28 + 4659: -8,29 + 4660: -9,26 + 4661: -6,27 + 4662: -6,26 + 4663: -6,28 + 4664: -3,29 + 4665: -4,27 + 4666: -1,28 + 4667: -3,29 + 4668: -2,30 + 4669: -3,32 + 4670: -2,33 + 4671: -2,34 + 4672: -8,33 + 4673: -7,32 + 4674: -8,32 + 4675: -9,33 + 4676: -6,34 + 4677: -6,33 + 4678: -13,34 + 4746: -17,-28 + 4747: -19,-28 + 4748: -20,-27 + 4749: -20,-26 + 4750: -20,-27 + 4751: -15,-28 + 4752: -14,-28 + 4753: -14,-27 + 4754: -14,-29 + 4755: -17,-29 + 4811: -6,-37 + 4812: -5,-37 + 4813: -4,-37 + 4998: 78,-28 + 4999: 79,-28 + 5000: 78,-28 + 5001: 78,-27 + 5002: 78,-29 + 5064: 13,-45 + 5065: 12,-45 + 5066: 12,-50 + 5067: 12,-49 + 5068: 16,-49 + 5069: 15,-49 + 5852: 81,-34 + 5853: 82,-35 + 5854: 81,-35 + 5855: 81,-35 + 5881: -2,41 + 5882: -2,42 + 5883: -3,42 + 5884: -3,42 + 5885: -1,43 + 6093: 49,-1 + 6094: 51,-1 + 6095: 50,-2 + 6096: 49,-3 + 6097: 49,-5 + 6098: 51,-5 + 6099: 51,-3 + 6100: 50,-8 + 6101: 49,-8 + 6102: 48,-7 + 6103: 52,-8 + 6104: 54,-7 + 6105: 49,-10 + 6106: 50,-11 + 6107: 48,-11 + 6108: 51,-10 + 6109: 51,-11 + 6110: 52,-11 + 6111: 53,-11 + 6136: 50,2 + 6137: 50,4 + 6138: 50,9 + 6139: 50,12 + 6140: 50,13 + 6141: 47,9 + 6142: 47,7 + 6143: 41,8 + 6144: 41,7 + 6145: 40,8 + 6146: 40,7 + 6147: 44,8 + 6169: 46,4 + 6170: 45,4 + 6171: 46,2 + 6172: 45,2 + 6173: 45,1 + 6174: 46,5 + 6175: 40,5 + 6176: 44,4 + 6177: 44,7 + 6178: 55,3 + 6179: 54,2 + 6180: 53,3 + 6181: 55,4 + 6182: 57,4 + 6183: 56,2 + 6184: 55,1 + 6185: 55,6 + 6186: 53,7 + 6187: 53,6 + 6188: 55,8 + 6189: 56,10 + 6190: 55,10 + 6191: 53,12 + 6192: 53,11 + 6193: 57,14 + 6202: -1,-23 + 6203: 0,-23 + 6204: -4,-23 + 6205: -5,-23 + 6206: 35,19 + 6207: 34,19 + 6208: 35,20 + 6209: -8,27 + 6210: -12,27 + 6211: -10,27 + 6212: -14,27 + 6213: -15,27 + 6214: -15,27 + 6248: 88,-18 + 6249: 87,-18 + 6250: 91,-19 + 6251: 91,-18 + 6252: 92,-19 + 6308: 51,-36 + 6309: 51,-37 + 6310: 53,-39 + 6311: 54,-40 + 6312: 51,-35 + 6319: 51,-29 + 6325: 51,-26 + 6326: 52,-27 + 6342: -32,-12 + 6343: -34,-11 + 6344: -32,-10 + 6345: -33,-9 + 6346: -34,-9 + 6350: 61,-21 + 6351: -24,-42 + 6353: -25,-42 + 6354: -22,-42 + 6355: -22,-42 + 6362: -37,-45 + 6363: -38,-44 + 6364: -38,-46 + 6365: -37,-46 + 6454: 13,41 + 6455: 15,39 + 6456: 16,41 + 6492: 33,-2 + 6493: 34,-2 + 6494: 34,-2 + 6512: 7,-47 + 6605: -20,10 + 6606: -24,13 + 6670: -35,12 + 6671: -33,11 + 6672: -32,13 + 6673: -31,13 + 6674: -32,16 + 6675: -34,16 + 6676: -34,17 + 6677: -32,17 + 6678: -30,17 + 6679: -29,16 + 6680: -29,13 + 6681: -29,11 + 6682: -32,12 + 6683: -37,14 + 6684: -38,13 + 6685: -39,14 + 6695: -35,17 + 6696: -35,11 + 6697: -34,11 + 6698: -31,11 + 6699: -30,11 + 6700: -33,16 + 6701: -38,10 + 6702: -29,15 + 6703: -29,15 + 6704: -29,16 + 6705: -29,17 + 6706: -32,17 + 6749: 44,11 + 6750: 45,12 + 6751: 44,14 + 6752: 43,15 + 6753: 44,16 + 6754: 47,14 + 6755: 41,12 + 6756: 41,13 + 6757: 41,11 + 6758: 41,11 + 6759: 47,11 + 6760: 47,12 + 6772: 44,15 + 6773: 44,15 + 6813: 58,-7 + 6814: 59,-6 + 6815: 58,-5 + 6816: 60,-5 + 6817: 60,-6 + 6818: 60,-7 + 6819: 60,-6 + 6832: 59,-4 + 6833: 58,-4 + 6834: 58,-4 + 6839: -15,-37 + 6840: -14,-37 + 6846: -11,-37 + 6847: -11,-38 + 6851: -33,1 + 6852: -33,1 + 6854: -43,1 + 6855: -46,1 + 6871: 52,-21 + 6872: 56,-21 + 6873: 57,-23 + 6874: 56,-24 + 6875: 57,-24 + 6876: 57,-22 + 6884: 53,-22 + 6892: 66,-25 + 6893: 66,-24 + 6894: 66,-24 + 6895: 54,-24 + 6896: 53,-24 + 6897: 52,-24 + 6898: 52,-24 + 6902: 79,-7 + 6910: 53,-23 + 6915: 57,2 + 6916: 57,3 + 6917: 48,3 + 6918: 3,-22 + 6919: 16,23 + 6920: 16,25 + 6926: -36,3 + 6927: -33,3 + 6928: -35,-1 + 6929: -36,-5 + 6930: -29,-5 + 6931: -34,3 + 6932: -34,2 + 6933: -34,1 + 6934: -30,1 + 6935: -38,2 + 6943: -33,-4 + 6944: -34,-4 + 6945: -32,-3 + 6946: -31,-3 + 6947: -34,-3 + 6948: -34,-2 + 6949: -31,-5 + 6950: -32,-5 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2847: -44,17 + 2841: -44,17 - node: cleanable: True angle: -6.283185307179586 rad color: '#FFFFFFFF' id: DirtLight decals: - 6285: 89,-21 - 6286: 90,-20 + 6274: 89,-21 + 6275: 90,-20 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 6205: 57,4 - 6206: 54,3 - 6207: 56,1 - 6208: 49,-15 - 6209: 52,-15 - 6210: 43,4 - 6395: -36,-44 - 6491: 14,42 - 6492: 14,40 - 6493: 16,42 - 6720: -34,13 - 6721: -32,13 - 6722: -31,15 - 6723: -30,16 - 6724: -29,11 - 6725: -35,13 - 6726: -33,13 - 6802: 44,13 - 6803: 46,13 - 6804: 46,12 - 6805: 42,11 - 6854: 57,-4 - 6855: 57,-6 - 6856: 61,-7 - 6857: 61,-5 - 6875: -15,-38 - 6876: -13,-37 - 6877: -13,-38 - 6911: 54,-21 - 6912: 56,-21 - 6913: 58,-21 - 6914: 58,-23 - 6915: 57,-24 - 6945: 54,-23 - 6985: -33,-5 - 6986: -34,-3 - 6987: -32,-3 - 6988: -33,-4 - 6989: -32,-4 - 6990: -34,-5 + 6194: 57,4 + 6195: 54,3 + 6196: 56,1 + 6197: 49,-15 + 6198: 52,-15 + 6199: 43,4 + 6361: -36,-44 + 6457: 14,42 + 6458: 14,40 + 6459: 16,42 + 6686: -34,13 + 6687: -32,13 + 6688: -31,15 + 6689: -30,16 + 6690: -29,11 + 6691: -35,13 + 6692: -33,13 + 6768: 44,13 + 6769: 46,13 + 6770: 46,12 + 6771: 42,11 + 6820: 57,-4 + 6821: 57,-6 + 6822: 61,-7 + 6823: 61,-5 + 6841: -15,-38 + 6842: -13,-37 + 6843: -13,-38 + 6877: 54,-21 + 6878: 56,-21 + 6879: 58,-21 + 6880: 58,-23 + 6881: 57,-24 + 6911: 54,-23 + 6951: -33,-5 + 6952: -34,-3 + 6953: -32,-3 + 6954: -33,-4 + 6955: -32,-4 + 6956: -34,-5 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtLight decals: - 2846: -44,16 + 2840: -44,16 - node: cleanable: True color: '#FFFFFF47' id: DirtMedium decals: - 6318: 11,-29 - 6319: 11,-29 + 6299: 11,-29 + 6300: 11,-29 - node: cleanable: True angle: -6.283185307179586 rad color: '#FFFFFFFF' id: DirtMedium decals: - 6288: 91,-21 - 6289: 90,-21 + 6277: 91,-21 + 6278: 90,-21 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 3747: -16,11 - 3748: -17,12 - 6354: 52,-30 - 6381: -32,-9 - 6382: -34,-12 - 6394: -36,-46 - 6494: 13,39 - 6495: 13,42 - 6496: 16,40 - 6497: 13,38 - 6498: 13,38 - 6548: 9,-47 - 6638: -33,15 - 6727: -30,13 - 6728: -38,14 - 6797: 42,12 - 6798: 42,13 - 6799: 46,11 - 6800: 47,13 - 6801: 46,14 - 6858: 60,-8 - 6859: 61,-8 - 6860: 61,-8 - 6861: 57,-8 - 6862: 58,-8 - 6878: -14,-38 - 6879: -12,-39 - 6916: 52,-21 - 6917: 57,-22 - 6991: -31,-5 - 6992: -33,-3 - 6993: -34,-3 - 6994: -34,-4 + 3738: -16,11 + 3739: -17,12 + 6320: 52,-30 + 6347: -32,-9 + 6348: -34,-12 + 6360: -36,-46 + 6460: 13,39 + 6461: 13,42 + 6462: 16,40 + 6463: 13,38 + 6464: 13,38 + 6514: 9,-47 + 6604: -33,15 + 6693: -30,13 + 6694: -38,14 + 6763: 42,12 + 6764: 42,13 + 6765: 46,11 + 6766: 47,13 + 6767: 46,14 + 6824: 60,-8 + 6825: 61,-8 + 6826: 61,-8 + 6827: 57,-8 + 6828: 58,-8 + 6844: -14,-38 + 6845: -12,-39 + 6882: 52,-21 + 6883: 57,-22 + 6957: -31,-5 + 6958: -33,-3 + 6959: -34,-3 + 6960: -34,-4 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtMedium decals: - 2845: -44,15 + 2839: -44,15 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 825: -47,-2 - 852: -50,-7 + 819: -47,-2 + 846: -50,-7 - node: color: '#FFFFFFFF' id: FlowersBRThree decals: - 511: -30,5 + 505: -30,5 - node: cleanable: True color: '#FFFFFFFF' id: FlowersBRThree decals: - 2874: 80.70172,-6.173584 + 2868: 80.70172,-6.173584 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 532: -24,6 - 823: -45,4 + 526: -24,6 + 817: -45,4 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 856: -45,-7 - 877: -49,-29 - 1417: -51,-49 + 850: -45,-7 + 871: -49,-29 + 1411: -51,-49 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 1053: 42,-31 + 1047: 42,-31 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 824: -49,-2 - 857: -51,-7 - 1418: -49,-49 + 818: -49,-2 + 851: -51,-7 + 1412: -49,-49 - node: cleanable: True color: '#FFFFFFFF' id: Flowerspv1 decals: - 2875: 80.04127,-7.0725327 + 2869: 80.04127,-7.0725327 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 510: -39,6 - 531: -24,4 - 854: -48,-9 - 1052: 42,-30 - 1664: 57,18 + 504: -39,6 + 525: -24,4 + 848: -48,-9 + 1046: 42,-30 + 1658: 57,18 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 509: -38,5 - 855: -45,-9 - 878: -48,-30 - 1419: -46,-49 + 503: -38,5 + 849: -45,-9 + 872: -48,-30 + 1413: -46,-49 - node: cleanable: True color: '#FFFFFFFF' id: Flowersy2 decals: - 2876: 81.08699,-7.6962934 + 2870: 81.08699,-7.6962934 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 822: -50,4 - 853: -47,-7 - 2111: 25,1 + 816: -50,4 + 847: -47,-7 + 2105: 25,1 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 512: -28,7 - 1647: 59,19 + 506: -28,7 + 1641: 59,19 - node: cleanable: True color: '#FFFFFFFF' id: Grassa2 decals: - 2864: 80,-6 + 2858: 80,-6 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 844: -51,-7 + 838: -51,-7 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 1411: -47,-49 + 1405: -47,-49 - node: cleanable: True color: '#FFFFFFFF' id: Grassa4 decals: - 2863: 80,-8 + 2857: 80,-8 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 843: -49,-7 - 1412: -45,-49 + 837: -49,-7 + 1406: -45,-49 - node: color: '#FFFFFFFF' id: Grassb1 decals: - 847: -45,-8 + 841: -45,-8 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 882: -49,-28 - 1648: 60,19 + 876: -49,-28 + 1642: 60,19 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 845: -51,-8 - 846: -45,-7 + 839: -51,-8 + 840: -45,-7 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 842: -48,-9 - 1410: -50,-49 + 836: -48,-9 + 1404: -50,-49 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 848: -50,-9 + 842: -50,-9 - node: color: '#FFFFFFFF' id: Grassc1 decals: - 841: -46,-8 + 835: -46,-8 - node: cleanable: True color: '#FFFFFFFF' id: Grassc1 decals: - 2866: 79.637665,-6.118546 + 2860: 79.637665,-6.118546 - node: color: '#FFFFFFFF' id: Grassc2 decals: - 840: -47,-7 + 834: -47,-7 - node: cleanable: True color: '#FFFFFFFF' id: Grassc2 decals: - 2867: 81.362175,-7.1642623 + 2861: 81.362175,-7.1642623 - node: color: '#FFFFFFFF' id: Grassc4 decals: - 838: -51,-9 - 839: -49,-8 + 832: -51,-9 + 833: -49,-8 - node: cleanable: True color: '#FFFFFFFF' id: Grassc4 decals: - 2865: 79.56428,-7.366067 + 2859: 79.56428,-7.366067 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 834: -50,-8 - 837: -47,-9 + 828: -50,-8 + 831: -47,-9 - node: cleanable: True color: '#FFFFFFFF' id: Grassd1 decals: - 2868: 79.14232,-8.063211 + 2862: 79.14232,-8.063211 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 836: -45,-9 + 830: -45,-9 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 835: -48,-7 - 880: -48,-27 + 829: -48,-7 + 874: -48,-27 - node: cleanable: True color: '#FFFFFFFF' id: Grassd3 decals: - 2869: 79.05059,-6.320351 - 2870: 80.53661,-6.6872687 + 2863: 79.05059,-6.320351 + 2864: 80.53661,-6.6872687 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 833: -46,-7 - 881: -47,-28 + 827: -46,-7 + 875: -47,-28 - node: cleanable: True color: '#FFFFFFFF' id: Grasse1 decals: - 2873: 81.784134,-6.4304266 + 2867: 81.784134,-6.4304266 - node: cleanable: True color: '#FFFFFFFF' id: Grasse2 decals: - 2871: 80.518265,-8.02652 + 2865: 80.518265,-8.02652 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 832: -50,-7 - 879: -47,-30 - 1665: 57,19 + 826: -50,-7 + 873: -47,-30 + 1659: 57,19 - node: cleanable: True color: '#FFFFFFFF' id: Grasse3 decals: - 2872: 80.72007,-6.0451627 + 2866: 80.72007,-6.0451627 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 5939: 44,7 + 5928: 44,7 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 1132: 4,30 - 1133: 5,30 + 1126: 4,30 + 1127: 5,30 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale @@ -6845,35 +6845,35 @@ entities: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 970: 39,-35 - 971: 36,-36 - 972: 37,-36 - 973: 38,-36 - 974: 39,-36 - 975: 40,-36 - 976: 42,-36 - 977: 41,-36 - 978: 43,-36 - 979: 44,-36 - 982: 38,-35 - 983: 37,-35 - 984: 36,-35 - 985: 41,-35 - 986: 40,-35 - 987: 42,-35 - 988: 43,-35 - 989: 44,-35 + 964: 39,-35 + 965: 36,-36 + 966: 37,-36 + 967: 38,-36 + 968: 39,-36 + 969: 40,-36 + 970: 42,-36 + 971: 41,-36 + 972: 43,-36 + 973: 44,-36 + 976: 38,-35 + 977: 37,-35 + 978: 36,-35 + 979: 41,-35 + 980: 40,-35 + 981: 42,-35 + 982: 43,-35 + 983: 44,-35 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 5940: 44,9 + 5929: 44,9 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 1134: 4,32 - 1135: 5,32 + 1128: 4,32 + 1129: 5,32 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 @@ -6885,12 +6885,12 @@ entities: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 5941: 45,8 + 5930: 45,8 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 1131: 6,31 + 1125: 6,31 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 @@ -6900,12 +6900,12 @@ entities: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 5942: 43,8 + 5931: 43,8 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 1130: 3,31 + 1124: 3,31 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 @@ -6923,7 +6923,7 @@ entities: id: LoadingArea decals: 166: -8,-28 - 284: 19,-23 + 278: 19,-23 - node: angle: 1.5707963267948966 rad color: '#EFB341FF' @@ -6936,1285 +6936,1285 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 6277: 89,-20 - 6278: 90,-20 + 6266: 89,-20 + 6267: 90,-20 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 2044: -4,-36 - 2062: -56,-59 - 2063: -56,-66 - 6898: 58,-24 - 6899: 58,-23 + 2038: -4,-36 + 2056: -56,-59 + 2057: -56,-66 + 6864: 58,-24 + 6865: 58,-23 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 349: 39,-22 - 2997: 25,22 - 2998: 29,22 - 5876: -44,24 - 6741: 44,11 + 343: 39,-22 + 2991: 25,22 + 2992: 29,22 + 5865: -44,24 + 6707: 44,11 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 2078: -40,-59 - 2079: -40,-66 - 5877: -45,23 + 2072: -40,-59 + 2073: -40,-66 + 5866: -45,23 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 348: 45,-22 - 1679: 63,-26 - 5878: -44,22 + 342: 45,-22 + 1673: 63,-26 + 5867: -44,22 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1216: 23,12 - 5879: -43,23 + 1210: 23,12 + 5868: -43,23 - node: color: '#52B4E996' id: MiniTileCheckerAOverlay decals: - 2096: 13,25 - 2097: 14,25 - 2098: 15,25 - 2099: 15,24 - 2100: 15,23 - 2101: 14,23 - 2102: 14,24 - 2103: 13,24 - 2104: 13,23 + 2090: 13,25 + 2091: 14,25 + 2092: 15,25 + 2093: 15,24 + 2094: 15,23 + 2095: 14,23 + 2096: 14,24 + 2097: 13,24 + 2098: 13,23 - node: color: '#EFB34196' id: MiniTileCheckerBOverlay decals: - 6760: 42,11 - 6761: 42,12 - 6762: 46,11 - 6763: 46,12 + 6726: 42,11 + 6727: 42,12 + 6728: 46,11 + 6729: 46,12 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 6422: 9,39 - 6423: 9,40 - 6424: 9,41 - 6425: 9,42 + 6388: 9,39 + 6389: 9,40 + 6390: 9,41 + 6391: 9,42 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 517: -24,20 - 518: -23,20 - 519: -22,20 - 520: -21,20 - 521: -20,20 + 511: -24,20 + 512: -23,20 + 513: -22,20 + 514: -21,20 + 515: -20,20 - node: cleanable: True color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 3104: -19,20 + 3098: -19,20 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 522: -24,18 - 523: -23,18 - 524: -22,18 - 525: -20,18 - 526: -21,18 - 527: -19,18 + 516: -24,18 + 517: -23,18 + 518: -22,18 + 519: -20,18 + 520: -21,18 + 521: -19,18 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 6426: 5,39 - 6427: 5,40 - 6428: 5,41 - 6429: 5,42 + 6392: 5,39 + 6393: 5,40 + 6394: 5,41 + 6395: 5,42 - node: color: '#C6FF917F' id: MiniTileInnerOverlayNW decals: - 6650: -29,12 + 6616: -29,12 - node: color: '#C6FF917F' id: MiniTileLineOverlayE decals: - 6642: -35,13 - 6643: -35,14 - 6644: -35,15 + 6608: -35,13 + 6609: -35,14 + 6610: -35,15 - node: color: '#C6FF917F' id: MiniTileLineOverlayN decals: - 6641: -32,12 + 6607: -32,12 - node: color: '#C6FF917F' id: MiniTileLineOverlayS decals: - 6645: -32,16 - 6646: -31,16 - 6647: -30,16 + 6611: -32,16 + 6612: -31,16 + 6613: -30,16 - node: color: '#C6FF917F' id: MiniTileLineOverlayW decals: - 6648: -29,13 - 6649: -29,14 + 6614: -29,13 + 6615: -29,14 - node: color: '#9D9D97FF' id: MiniTileWhiteCornerNe decals: - 2281: -43,-25 - 2367: -40,-46 + 2275: -43,-25 + 2361: -40,-46 - node: color: '#9D9D97FF' id: MiniTileWhiteCornerNw decals: - 2182: -26,-9 - 2225: -55,7 - 2366: -56,-46 - 2467: 27,-19 - 2673: -27,21 + 2176: -26,-9 + 2219: -55,7 + 2360: -56,-46 + 2461: 27,-19 + 2667: -27,21 - node: color: '#9D9D97FF' id: MiniTileWhiteCornerSe decals: - 2170: -23,-11 - 2293: -46,-33 - 2297: -43,-32 + 2164: -23,-11 + 2287: -46,-33 + 2291: -43,-32 - node: color: '#9D9D97FF' id: MiniTileWhiteCornerSw decals: - 2289: -52,-32 - 2292: -50,-33 - 2443: 7,-34 - 2543: 40,1 - 2572: 19,2 + 2283: -52,-32 + 2286: -50,-33 + 2437: 7,-34 + 2537: 40,1 + 2566: 19,2 - node: color: '#9D9D97FF' id: MiniTileWhiteInnerNe decals: - 2145: -23,-30 - 2194: -25,9 - 2282: -44,-25 - 2412: -28,-30 - 2691: 77,-19 - 2692: 77,-15 + 2139: -23,-30 + 2188: -25,9 + 2276: -44,-25 + 2406: -28,-30 + 2685: 77,-19 + 2686: 77,-15 - node: color: '#9D9D97FF' id: MiniTileWhiteInnerNw decals: - 2183: -25,-9 - 2411: -41,-30 - 2459: 27,-25 - 2511: 57,-19 + 2177: -25,-9 + 2405: -41,-30 + 2453: 27,-25 + 2505: 57,-19 - node: color: '#9D9D97FF' id: MiniTileWhiteInnerSe decals: - 2169: -24,-11 - 2294: -46,-32 - 2300: -47,-33 - 2365: -54,-48 - 2410: -28,-27 - 2515: 59,-21 - 2689: 77,-13 - 2690: 77,-17 + 2163: -24,-11 + 2288: -46,-32 + 2294: -47,-33 + 2359: -54,-48 + 2404: -28,-27 + 2509: 59,-21 + 2683: 77,-13 + 2684: 77,-17 - node: color: '#9D9D97FF' id: MiniTileWhiteInnerSw decals: - 2291: -50,-32 - 2301: -49,-33 - 2364: -42,-48 - 2409: -41,-27 - 2441: 7,-32 - 2542: 41,1 - 2544: 40,2 - 2612: 19,19 - 6892: 56,-21 + 2285: -50,-32 + 2295: -49,-33 + 2358: -42,-48 + 2403: -41,-27 + 2435: 7,-32 + 2536: 41,1 + 2538: 40,2 + 2606: 19,19 + 6858: 56,-21 - node: color: '#9D9D97FF' id: MiniTileWhiteLineE decals: - 2146: -23,-29 - 2147: -24,-25 - 2148: -24,-24 - 2149: -24,-23 - 2150: -24,-23 - 2151: -24,-20 - 2152: -24,-20 - 2153: -24,-20 - 2154: -24,-21 - 2155: -24,-21 - 2156: -24,-20 - 2157: -24,-19 - 2158: -24,-19 - 2159: -24,-19 - 2160: -24,-17 - 2161: -24,-17 - 2162: -24,-16 - 2163: -24,-16 - 2164: -24,-16 - 2165: -24,-15 - 2166: -24,-14 - 2167: -24,-14 - 2168: -24,-13 - 2171: -23,-10 - 2172: -23,-9 - 2173: -23,-8 - 2184: -25,4 - 2185: -25,5 - 2186: -25,6 - 2187: -25,7 - 2199: -43,0 - 2200: -43,2 - 2201: -43,3 - 2202: -43,-1 - 2241: -53,-6 - 2242: -53,-7 - 2243: -53,-7 - 2244: -53,-8 - 2245: -53,-9 - 2246: -53,-9 - 2247: -53,-10 - 2248: -53,-12 - 2256: -53,-13 - 2257: -53,-13 - 2258: -53,-15 - 2259: -53,-15 - 2260: -53,-15 - 2262: -53,-14 - 2263: -53,-16 - 2264: -53,-17 - 2265: -53,-18 - 2271: -44,-20 - 2272: -44,-21 - 2273: -44,-22 - 2274: -44,-22 - 2275: -44,-23 - 2276: -44,-23 - 2277: -44,-24 - 2278: -43,-25 - 2279: -43,-26 - 2280: -43,-27 - 2298: -43,-31 - 2299: -43,-30 - 2304: -47,-35 - 2305: -47,-36 - 2306: -47,-36 - 2307: -47,-38 - 2308: -47,-39 - 2309: -47,-40 - 2320: -47,-41 - 2321: -47,-42 - 2322: -47,-42 - 2323: -47,-43 - 2324: -47,-44 - 2325: -47,-44 - 2376: -40,-47 - 2377: -40,-48 - 2378: -40,-50 - 2379: -40,-50 - 2380: -40,-51 - 2381: -40,-51 - 2382: -40,-51 - 2383: -40,-52 - 2384: -40,-53 - 2385: -40,-53 - 2386: -40,-53 - 2387: -40,-54 - 2388: -54,-51 - 2389: -54,-51 - 2390: -54,-52 - 2391: -54,-52 - 2392: -54,-53 - 2393: -54,-53 - 2394: -54,-54 - 2405: -28,-29 - 2406: -28,-28 - 2516: 59,-22 - 2517: 43,-17 - 2518: 43,-16 - 2519: 43,-15 - 2520: 43,-15 - 2526: 43,-12 - 2527: 43,-11 - 2592: 21,10 - 2593: 21,11 - 2594: 21,11 - 2595: 21,12 - 2596: 21,12 - 2597: 21,12 - 2598: 21,13 - 2599: 21,14 - 2600: 21,15 - 2687: 77,-14 - 2688: 77,-18 - 2996: -54,-50 - 6511: -24,-18 - 6887: -43,1 + 2140: -23,-29 + 2141: -24,-25 + 2142: -24,-24 + 2143: -24,-23 + 2144: -24,-23 + 2145: -24,-20 + 2146: -24,-20 + 2147: -24,-20 + 2148: -24,-21 + 2149: -24,-21 + 2150: -24,-20 + 2151: -24,-19 + 2152: -24,-19 + 2153: -24,-19 + 2154: -24,-17 + 2155: -24,-17 + 2156: -24,-16 + 2157: -24,-16 + 2158: -24,-16 + 2159: -24,-15 + 2160: -24,-14 + 2161: -24,-14 + 2162: -24,-13 + 2165: -23,-10 + 2166: -23,-9 + 2167: -23,-8 + 2178: -25,4 + 2179: -25,5 + 2180: -25,6 + 2181: -25,7 + 2193: -43,0 + 2194: -43,2 + 2195: -43,3 + 2196: -43,-1 + 2235: -53,-6 + 2236: -53,-7 + 2237: -53,-7 + 2238: -53,-8 + 2239: -53,-9 + 2240: -53,-9 + 2241: -53,-10 + 2242: -53,-12 + 2250: -53,-13 + 2251: -53,-13 + 2252: -53,-15 + 2253: -53,-15 + 2254: -53,-15 + 2256: -53,-14 + 2257: -53,-16 + 2258: -53,-17 + 2259: -53,-18 + 2265: -44,-20 + 2266: -44,-21 + 2267: -44,-22 + 2268: -44,-22 + 2269: -44,-23 + 2270: -44,-23 + 2271: -44,-24 + 2272: -43,-25 + 2273: -43,-26 + 2274: -43,-27 + 2292: -43,-31 + 2293: -43,-30 + 2298: -47,-35 + 2299: -47,-36 + 2300: -47,-36 + 2301: -47,-38 + 2302: -47,-39 + 2303: -47,-40 + 2314: -47,-41 + 2315: -47,-42 + 2316: -47,-42 + 2317: -47,-43 + 2318: -47,-44 + 2319: -47,-44 + 2370: -40,-47 + 2371: -40,-48 + 2372: -40,-50 + 2373: -40,-50 + 2374: -40,-51 + 2375: -40,-51 + 2376: -40,-51 + 2377: -40,-52 + 2378: -40,-53 + 2379: -40,-53 + 2380: -40,-53 + 2381: -40,-54 + 2382: -54,-51 + 2383: -54,-51 + 2384: -54,-52 + 2385: -54,-52 + 2386: -54,-53 + 2387: -54,-53 + 2388: -54,-54 + 2399: -28,-29 + 2400: -28,-28 + 2510: 59,-22 + 2511: 43,-17 + 2512: 43,-16 + 2513: 43,-15 + 2514: 43,-15 + 2520: 43,-12 + 2521: 43,-11 + 2586: 21,10 + 2587: 21,11 + 2588: 21,11 + 2589: 21,12 + 2590: 21,12 + 2591: 21,12 + 2592: 21,13 + 2593: 21,14 + 2594: 21,15 + 2681: 77,-14 + 2682: 77,-18 + 2990: -54,-50 + 6477: -24,-18 + 6853: -43,1 - node: color: '#9D9D97FF' id: MiniTileWhiteLineN decals: - 2139: -22,-30 - 2140: -21,-30 - 2141: -20,-30 - 2142: -20,-30 - 2143: -18,-30 - 2144: -19,-30 - 2188: -19,9 - 2189: -20,9 - 2190: -21,9 - 2191: -22,9 - 2192: -24,9 - 2193: -23,9 - 2212: -51,7 - 2213: -50,7 - 2214: -49,7 - 2215: -48,7 - 2216: -47,7 - 2217: -47,7 - 2218: -46,7 - 2219: -45,7 - 2220: -42,7 - 2221: -43,7 - 2222: -54,7 - 2223: -55,7 - 2224: -53,7 + 2133: -22,-30 + 2134: -21,-30 + 2135: -20,-30 + 2136: -20,-30 + 2137: -18,-30 + 2138: -19,-30 + 2182: -19,9 + 2183: -20,9 + 2184: -21,9 + 2185: -22,9 + 2186: -24,9 + 2187: -23,9 + 2206: -51,7 + 2207: -50,7 + 2208: -49,7 + 2209: -48,7 + 2210: -47,7 + 2211: -47,7 + 2212: -46,7 + 2213: -45,7 + 2214: -42,7 + 2215: -43,7 + 2216: -54,7 + 2217: -55,7 + 2218: -53,7 + 2320: -54,-46 + 2321: -51,-46 + 2322: -50,-46 + 2323: -50,-46 + 2324: -51,-46 + 2325: -53,-46 2326: -54,-46 - 2327: -51,-46 - 2328: -50,-46 - 2329: -50,-46 - 2330: -51,-46 - 2331: -53,-46 - 2332: -54,-46 - 2333: -54,-46 - 2334: -53,-46 - 2335: -52,-46 - 2336: -54,-46 - 2337: -55,-46 - 2338: -46,-46 - 2339: -45,-46 - 2340: -45,-46 - 2341: -44,-46 - 2342: -44,-46 - 2343: -43,-46 - 2344: -43,-46 - 2345: -42,-46 - 2346: -42,-46 - 2347: -41,-46 - 2431: -11,-30 - 2432: -10,-30 - 2433: -10,-30 - 2457: 25,-25 - 2458: 26,-25 - 2468: 28,-19 - 2469: 29,-19 - 2470: 29,-19 - 2471: 31,-19 - 2472: 31,-19 - 2473: 32,-19 - 2474: 32,-19 - 2475: 32,-19 - 2476: 34,-19 - 2477: 34,-19 - 2478: 34,-19 - 2479: 33,-19 - 2480: 35,-19 - 2481: 35,-19 - 2482: 36,-19 - 2483: 36,-19 - 2484: 37,-19 - 2485: 37,-19 - 2486: 39,-19 - 2487: 39,-19 - 2488: 40,-19 - 2489: 40,-19 - 2490: 40,-19 - 2491: 41,-19 - 2492: 42,-19 - 2493: 42,-19 - 2494: 43,-19 - 2495: 44,-19 - 2496: 44,-19 - 2497: 45,-19 - 2498: 47,-19 - 2499: 47,-19 - 2500: 48,-19 - 2501: 49,-19 - 2502: 49,-19 - 2503: 50,-19 - 2504: 51,-19 - 2505: 52,-19 - 2506: 52,-19 - 2507: 54,-19 - 2508: 55,-19 - 2509: 56,-19 - 2510: 53,-19 - 2549: 37,4 - 2550: 35,4 - 2551: 34,4 - 2552: 33,4 - 2553: 32,4 - 2554: 32,4 - 2555: 31,4 - 2615: 20,21 - 2616: 19,21 - 2617: 19,21 - 2618: 18,21 - 2619: 16,21 - 2620: 16,21 - 2621: 16,21 - 2622: 16,21 - 2623: 15,21 - 2624: 13,21 - 2625: 13,21 - 2626: 12,21 - 2627: 11,21 - 2628: 10,21 - 2629: 10,21 - 2630: 9,21 - 2631: 8,21 - 2670: -26,21 - 2680: 66,-17 - 2681: 68,-17 - 2682: 67,-17 - 2683: 69,-17 - 2684: 70,-17 - 2685: 70,-17 - 2686: 71,-17 + 2327: -54,-46 + 2328: -53,-46 + 2329: -52,-46 + 2330: -54,-46 + 2331: -55,-46 + 2332: -46,-46 + 2333: -45,-46 + 2334: -45,-46 + 2335: -44,-46 + 2336: -44,-46 + 2337: -43,-46 + 2338: -43,-46 + 2339: -42,-46 + 2340: -42,-46 + 2341: -41,-46 + 2425: -11,-30 + 2426: -10,-30 + 2427: -10,-30 + 2451: 25,-25 + 2452: 26,-25 + 2462: 28,-19 + 2463: 29,-19 + 2464: 29,-19 + 2465: 31,-19 + 2466: 31,-19 + 2467: 32,-19 + 2468: 32,-19 + 2469: 32,-19 + 2470: 34,-19 + 2471: 34,-19 + 2472: 34,-19 + 2473: 33,-19 + 2474: 35,-19 + 2475: 35,-19 + 2476: 36,-19 + 2477: 36,-19 + 2478: 37,-19 + 2479: 37,-19 + 2480: 39,-19 + 2481: 39,-19 + 2482: 40,-19 + 2483: 40,-19 + 2484: 40,-19 + 2485: 41,-19 + 2486: 42,-19 + 2487: 42,-19 + 2488: 43,-19 + 2489: 44,-19 + 2490: 44,-19 + 2491: 45,-19 + 2492: 47,-19 + 2493: 47,-19 + 2494: 48,-19 + 2495: 49,-19 + 2496: 49,-19 + 2497: 50,-19 + 2498: 51,-19 + 2499: 52,-19 + 2500: 52,-19 + 2501: 54,-19 + 2502: 55,-19 + 2503: 56,-19 + 2504: 53,-19 + 2543: 37,4 + 2544: 35,4 + 2545: 34,4 + 2546: 33,4 + 2547: 32,4 + 2548: 32,4 + 2549: 31,4 + 2609: 20,21 + 2610: 19,21 + 2611: 19,21 + 2612: 18,21 + 2613: 16,21 + 2614: 16,21 + 2615: 16,21 + 2616: 16,21 + 2617: 15,21 + 2618: 13,21 + 2619: 13,21 + 2620: 12,21 + 2621: 11,21 + 2622: 10,21 + 2623: 10,21 + 2624: 9,21 + 2625: 8,21 + 2664: -26,21 + 2674: 66,-17 + 2675: 68,-17 + 2676: 67,-17 + 2677: 69,-17 + 2678: 70,-17 + 2679: 70,-17 + 2680: 71,-17 - node: color: '#9D9D97FF' id: MiniTileWhiteLineS decals: - 2129: -25,-32 - 2130: -23,-32 - 2131: -24,-32 - 2132: -22,-32 - 2133: -22,-32 - 2134: -21,-32 - 2135: -19,-32 - 2136: -19,-32 - 2137: -18,-32 - 2138: -18,-32 - 2203: -45,-5 - 2204: -46,-5 - 2205: -47,-5 - 2206: -48,-5 - 2207: -48,-5 - 2208: -50,-5 - 2209: -50,-5 - 2210: -49,-5 - 2211: -51,-5 - 2290: -51,-32 - 2295: -45,-32 - 2296: -44,-32 - 2348: -53,-48 - 2349: -52,-48 - 2350: -51,-48 - 2351: -50,-48 - 2352: -50,-48 - 2353: -49,-48 - 2354: -50,-48 - 2355: -50,-48 - 2356: -48,-48 - 2357: -48,-48 - 2358: -47,-48 - 2359: -47,-48 - 2360: -46,-48 - 2361: -45,-48 - 2362: -44,-48 - 2363: -43,-48 - 2413: -16,-32 - 2414: -14,-32 - 2415: -14,-32 - 2416: -14,-32 - 2417: -15,-32 - 2418: -14,-32 - 2419: -14,-32 - 2420: -13,-32 - 2421: -12,-32 - 2422: -12,-32 - 2423: -11,-32 - 2424: -11,-32 - 2425: -10,-32 - 2426: -10,-32 - 2427: -7,-32 - 2428: -6,-32 - 2429: -5,-32 - 2430: -5,-32 - 2434: -4,-32 - 2435: -3,-32 - 2436: -3,-32 - 2437: -3,-32 - 2438: -2,-32 - 2439: 3,-32 - 2440: 6,-32 - 2444: 8,-34 - 2445: 9,-34 - 2446: 9,-34 - 2447: 11,-34 - 2448: 11,-34 - 2449: 12,-34 - 2450: 12,-34 - 2451: 13,-34 - 2452: 13,-34 - 2453: 14,-34 - 2454: 15,-34 - 2455: 15,-34 - 2456: 16,-34 - 2514: 60,-21 - 2545: 38,2 - 2546: 36,2 - 2547: 37,2 - 2548: 38,2 - 2556: 34,2 - 2557: 33,2 - 2558: 32,2 - 2559: 31,2 - 2560: 31,2 - 2561: 27,2 - 2562: 26,2 - 2563: 26,2 - 2564: 25,2 - 2565: 24,2 - 2566: 23,2 - 2567: 23,2 - 2568: 21,2 - 2569: 21,2 - 2570: 22,2 - 2571: 20,2 - 2613: 18,19 - 2614: 16,19 - 2632: 14,19 - 2633: 13,19 - 2634: 12,19 - 2635: 11,19 - 2636: 10,19 - 2637: 10,19 - 2638: 9,19 - 2639: 9,19 - 2640: 8,19 - 2641: 6,19 - 2642: 6,19 - 2643: 7,19 - 2644: 5,19 - 2645: 0,19 - 2646: 0,19 - 2647: -1,19 - 2648: -1,19 - 2649: -2,19 - 2650: -3,19 - 2651: -3,19 - 2652: -4,19 - 2653: -5,19 - 2654: -6,19 - 2655: -6,19 - 2656: -7,19 - 2657: -7,19 - 2658: -8,19 - 2659: -8,19 - 2660: -8,19 - 2661: -11,19 - 2662: -11,19 - 2663: -13,19 - 2664: -13,19 - 2665: -14,19 - 2666: -12,19 - 2667: -16,19 - 2668: -16,19 - 2669: -18,19 - 2674: 66,-19 - 2675: 67,-19 - 2676: 68,-19 - 2677: 69,-19 - 2678: 70,-19 - 2679: 71,-19 - 2893: 1,19 - 2894: 2,19 - 6893: 54,-21 - 6894: 55,-21 - 6895: 53,-21 - 6896: 52,-21 + 2123: -25,-32 + 2124: -23,-32 + 2125: -24,-32 + 2126: -22,-32 + 2127: -22,-32 + 2128: -21,-32 + 2129: -19,-32 + 2130: -19,-32 + 2131: -18,-32 + 2132: -18,-32 + 2197: -45,-5 + 2198: -46,-5 + 2199: -47,-5 + 2200: -48,-5 + 2201: -48,-5 + 2202: -50,-5 + 2203: -50,-5 + 2204: -49,-5 + 2205: -51,-5 + 2284: -51,-32 + 2289: -45,-32 + 2290: -44,-32 + 2342: -53,-48 + 2343: -52,-48 + 2344: -51,-48 + 2345: -50,-48 + 2346: -50,-48 + 2347: -49,-48 + 2348: -50,-48 + 2349: -50,-48 + 2350: -48,-48 + 2351: -48,-48 + 2352: -47,-48 + 2353: -47,-48 + 2354: -46,-48 + 2355: -45,-48 + 2356: -44,-48 + 2357: -43,-48 + 2407: -16,-32 + 2408: -14,-32 + 2409: -14,-32 + 2410: -14,-32 + 2411: -15,-32 + 2412: -14,-32 + 2413: -14,-32 + 2414: -13,-32 + 2415: -12,-32 + 2416: -12,-32 + 2417: -11,-32 + 2418: -11,-32 + 2419: -10,-32 + 2420: -10,-32 + 2421: -7,-32 + 2422: -6,-32 + 2423: -5,-32 + 2424: -5,-32 + 2428: -4,-32 + 2429: -3,-32 + 2430: -3,-32 + 2431: -3,-32 + 2432: -2,-32 + 2433: 3,-32 + 2434: 6,-32 + 2438: 8,-34 + 2439: 9,-34 + 2440: 9,-34 + 2441: 11,-34 + 2442: 11,-34 + 2443: 12,-34 + 2444: 12,-34 + 2445: 13,-34 + 2446: 13,-34 + 2447: 14,-34 + 2448: 15,-34 + 2449: 15,-34 + 2450: 16,-34 + 2508: 60,-21 + 2539: 38,2 + 2540: 36,2 + 2541: 37,2 + 2542: 38,2 + 2550: 34,2 + 2551: 33,2 + 2552: 32,2 + 2553: 31,2 + 2554: 31,2 + 2555: 27,2 + 2556: 26,2 + 2557: 26,2 + 2558: 25,2 + 2559: 24,2 + 2560: 23,2 + 2561: 23,2 + 2562: 21,2 + 2563: 21,2 + 2564: 22,2 + 2565: 20,2 + 2607: 18,19 + 2608: 16,19 + 2626: 14,19 + 2627: 13,19 + 2628: 12,19 + 2629: 11,19 + 2630: 10,19 + 2631: 10,19 + 2632: 9,19 + 2633: 9,19 + 2634: 8,19 + 2635: 6,19 + 2636: 6,19 + 2637: 7,19 + 2638: 5,19 + 2639: 0,19 + 2640: 0,19 + 2641: -1,19 + 2642: -1,19 + 2643: -2,19 + 2644: -3,19 + 2645: -3,19 + 2646: -4,19 + 2647: -5,19 + 2648: -6,19 + 2649: -6,19 + 2650: -7,19 + 2651: -7,19 + 2652: -8,19 + 2653: -8,19 + 2654: -8,19 + 2655: -11,19 + 2656: -11,19 + 2657: -13,19 + 2658: -13,19 + 2659: -14,19 + 2660: -12,19 + 2661: -16,19 + 2662: -16,19 + 2663: -18,19 + 2668: 66,-19 + 2669: 67,-19 + 2670: 68,-19 + 2671: 69,-19 + 2672: 70,-19 + 2673: 71,-19 + 2887: 1,19 + 2888: 2,19 + 6859: 54,-21 + 6860: 55,-21 + 6861: 53,-21 + 6862: 52,-21 - node: color: '#9D9D97FF' id: MiniTileWhiteLineW decals: - 2112: -26,-21 - 2113: -26,-20 - 2114: -26,-18 - 2115: -26,-19 - 2116: -26,-17 - 2121: -26,-25 - 2122: -26,-24 - 2123: -26,-27 - 2124: -26,-26 - 2125: -26,-28 - 2126: -26,-29 - 2127: -26,-30 - 2128: -26,-31 - 2174: -25,-8 - 2175: -26,-10 - 2176: -26,-11 - 2177: -26,-16 - 2178: -26,-15 - 2179: -26,-15 - 2180: -26,-14 - 2181: -26,-13 - 2195: -27,7 - 2196: -27,8 - 2197: -27,6 - 2198: -27,5 - 2226: -55,5 - 2227: -55,3 - 2228: -55,2 - 2229: -55,1 - 2230: -55,0 - 2231: -55,-1 - 2232: -55,-3 - 2233: -55,-6 - 2234: -55,-6 - 2235: -55,-7 - 2236: -55,-7 - 2237: -55,-8 - 2238: -55,-9 - 2239: -55,-9 - 2240: -55,-11 - 2249: -55,-10 - 2250: -55,-11 - 2251: -55,-12 - 2252: -55,-13 - 2253: -55,-13 - 2254: -55,-15 - 2255: -55,-15 - 2261: -55,-14 - 2266: -55,-16 - 2267: -55,-17 - 2268: -55,-18 - 2269: -55,-20 - 2270: -55,-21 - 2283: -52,-28 - 2284: -52,-29 - 2285: -52,-30 - 2286: -52,-30 - 2287: -52,-31 - 2288: -52,-32 - 2302: -49,-35 - 2303: -49,-36 - 2310: -49,-38 - 2311: -49,-38 - 2312: -49,-39 - 2313: -49,-40 - 2314: -49,-40 - 2315: -49,-41 - 2316: -49,-42 - 2317: -49,-43 - 2318: -49,-43 - 2319: -49,-44 - 2368: -42,-50 - 2369: -42,-50 - 2370: -42,-51 - 2371: -42,-51 - 2372: -42,-52 - 2373: -42,-52 - 2374: -42,-53 - 2375: -42,-54 - 2395: -56,-54 - 2396: -56,-53 - 2397: -56,-52 - 2398: -56,-52 - 2399: -56,-51 - 2400: -56,-51 - 2401: -56,-48 - 2402: -56,-48 - 2403: -56,-47 - 2404: -56,-50 - 2407: -41,-29 - 2408: -41,-28 - 2442: 7,-33 - 2460: 27,-23 - 2461: 27,-23 - 2462: 27,-23 - 2463: 27,-22 - 2464: 27,-24 - 2465: 27,-21 - 2466: 27,-20 - 2512: 57,-18 - 2513: 57,-17 - 2521: 41,-17 - 2522: 41,-16 - 2523: 41,-15 - 2524: 41,-12 - 2525: 41,-11 - 2528: 41,-9 - 2529: 41,-8 - 2530: 41,-7 - 2531: 41,-7 - 2532: 41,-6 - 2533: 41,-5 - 2534: 41,-5 - 2535: 41,-4 - 2536: 41,-3 - 2537: 41,-3 - 2538: 41,-1 - 2539: 41,-1 - 2540: 41,-1 - 2541: 41,-2 - 2573: 19,3 - 2574: 19,4 - 2575: 19,4 - 2576: 19,4 - 2577: 19,5 - 2578: 19,5 - 2579: 19,7 - 2580: 19,8 - 2581: 19,8 - 2582: 19,8 + 2106: -26,-21 + 2107: -26,-20 + 2108: -26,-18 + 2109: -26,-19 + 2110: -26,-17 + 2115: -26,-25 + 2116: -26,-24 + 2117: -26,-27 + 2118: -26,-26 + 2119: -26,-28 + 2120: -26,-29 + 2121: -26,-30 + 2122: -26,-31 + 2168: -25,-8 + 2169: -26,-10 + 2170: -26,-11 + 2171: -26,-16 + 2172: -26,-15 + 2173: -26,-15 + 2174: -26,-14 + 2175: -26,-13 + 2189: -27,7 + 2190: -27,8 + 2191: -27,6 + 2192: -27,5 + 2220: -55,5 + 2221: -55,3 + 2222: -55,2 + 2223: -55,1 + 2224: -55,0 + 2225: -55,-1 + 2226: -55,-3 + 2227: -55,-6 + 2228: -55,-6 + 2229: -55,-7 + 2230: -55,-7 + 2231: -55,-8 + 2232: -55,-9 + 2233: -55,-9 + 2234: -55,-11 + 2243: -55,-10 + 2244: -55,-11 + 2245: -55,-12 + 2246: -55,-13 + 2247: -55,-13 + 2248: -55,-15 + 2249: -55,-15 + 2255: -55,-14 + 2260: -55,-16 + 2261: -55,-17 + 2262: -55,-18 + 2263: -55,-20 + 2264: -55,-21 + 2277: -52,-28 + 2278: -52,-29 + 2279: -52,-30 + 2280: -52,-30 + 2281: -52,-31 + 2282: -52,-32 + 2296: -49,-35 + 2297: -49,-36 + 2304: -49,-38 + 2305: -49,-38 + 2306: -49,-39 + 2307: -49,-40 + 2308: -49,-40 + 2309: -49,-41 + 2310: -49,-42 + 2311: -49,-43 + 2312: -49,-43 + 2313: -49,-44 + 2362: -42,-50 + 2363: -42,-50 + 2364: -42,-51 + 2365: -42,-51 + 2366: -42,-52 + 2367: -42,-52 + 2368: -42,-53 + 2369: -42,-54 + 2389: -56,-54 + 2390: -56,-53 + 2391: -56,-52 + 2392: -56,-52 + 2393: -56,-51 + 2394: -56,-51 + 2395: -56,-48 + 2396: -56,-48 + 2397: -56,-47 + 2398: -56,-50 + 2401: -41,-29 + 2402: -41,-28 + 2436: 7,-33 + 2454: 27,-23 + 2455: 27,-23 + 2456: 27,-23 + 2457: 27,-22 + 2458: 27,-24 + 2459: 27,-21 + 2460: 27,-20 + 2506: 57,-18 + 2507: 57,-17 + 2515: 41,-17 + 2516: 41,-16 + 2517: 41,-15 + 2518: 41,-12 + 2519: 41,-11 + 2522: 41,-9 + 2523: 41,-8 + 2524: 41,-7 + 2525: 41,-7 + 2526: 41,-6 + 2527: 41,-5 + 2528: 41,-5 + 2529: 41,-4 + 2530: 41,-3 + 2531: 41,-3 + 2532: 41,-1 + 2533: 41,-1 + 2534: 41,-1 + 2535: 41,-2 + 2567: 19,3 + 2568: 19,4 + 2569: 19,4 + 2570: 19,4 + 2571: 19,5 + 2572: 19,5 + 2573: 19,7 + 2574: 19,8 + 2575: 19,8 + 2576: 19,8 + 2577: 19,10 + 2578: 19,10 + 2579: 19,11 + 2580: 19,10 + 2581: 19,10 + 2582: 19,12 2583: 19,10 - 2584: 19,10 - 2585: 19,11 - 2586: 19,10 - 2587: 19,10 - 2588: 19,12 - 2589: 19,10 - 2590: 19,9 - 2591: 19,9 - 2601: 19,13 - 2602: 19,14 - 2603: 19,14 - 2604: 19,14 - 2605: 19,15 - 2606: 19,15 - 2607: 19,15 - 2608: 19,16 - 2609: 19,16 - 2610: 19,18 - 2611: 19,18 - 2671: -27,20 - 2672: -27,18 - 6890: 56,-23 - 6891: 56,-22 - 6897: 56,-24 + 2584: 19,9 + 2585: 19,9 + 2595: 19,13 + 2596: 19,14 + 2597: 19,14 + 2598: 19,14 + 2599: 19,15 + 2600: 19,15 + 2601: 19,15 + 2602: 19,16 + 2603: 19,16 + 2604: 19,18 + 2605: 19,18 + 2665: -27,20 + 2666: -27,18 + 6856: 56,-23 + 6857: 56,-22 + 6863: 56,-24 - node: color: '#52B4E996' id: MonoOverlay decals: - 5934: 44,8 + 5923: 44,8 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 980: 36,-36 + 974: 36,-36 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 5936: 43,9 + 5925: 43,9 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 1442: -27,11 - 1443: -27,15 - 1444: -27,16 - 1445: -27,12 - 1446: -27,13 - 1447: -27,14 - 1553: -52,-26 - 1554: -52,-27 - 1555: -52,-25 - 1556: -52,-24 + 1436: -27,11 + 1437: -27,15 + 1438: -27,16 + 1439: -27,12 + 1440: -27,13 + 1441: -27,14 + 1547: -52,-26 + 1548: -52,-27 + 1549: -52,-25 + 1550: -52,-24 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 1467: -17,-30 - 1468: -16,-30 - 1469: -15,-30 - 1470: -14,-30 - 1471: -13,-30 - 1533: 5,-27 - 1534: 5,-28 - 1535: 5,-29 - 1536: 5,-30 - 1537: 3,-30 - 1538: 2,-30 - 1539: 1,-30 - 1540: 0,-30 - 1541: -1,-30 - 1542: -3,-30 - 1543: -2,-30 - 1544: -4,-30 - 1545: -5,-30 - 1546: -6,-30 - 1547: -7,-30 - 1548: -8,-30 - 1585: 6,21 - 1586: 5,21 - 1587: 2,21 - 1588: 1,21 - 1589: 0,21 - 1590: -1,21 - 1591: -4,21 - 1592: -5,21 - 1593: -6,21 - 1594: -7,21 - 1595: -8,21 - 1596: -11,21 - 1597: -12,21 - 1598: -13,21 - 1599: -14,21 - 1600: -15,21 - 1601: -16,21 - 1615: 28,4 - 1616: 27,4 - 1617: 23,4 - 1618: 22,4 - 1822: 57,-17 - 1823: 58,-17 - 1824: 59,-17 - 1825: 60,-17 - 1826: 61,-17 - 2029: -1,-33 - 5915: 38,4 - 5916: 40,4 - 5917: 41,4 - 5918: 42,4 - 5919: 43,4 + 1461: -17,-30 + 1462: -16,-30 + 1463: -15,-30 + 1464: -14,-30 + 1465: -13,-30 + 1527: 5,-27 + 1528: 5,-28 + 1529: 5,-29 + 1530: 5,-30 + 1531: 3,-30 + 1532: 2,-30 + 1533: 1,-30 + 1534: 0,-30 + 1535: -1,-30 + 1536: -3,-30 + 1537: -2,-30 + 1538: -4,-30 + 1539: -5,-30 + 1540: -6,-30 + 1541: -7,-30 + 1542: -8,-30 + 1579: 6,21 + 1580: 5,21 + 1581: 2,21 + 1582: 1,21 + 1583: 0,21 + 1584: -1,21 + 1585: -4,21 + 1586: -5,21 + 1587: -6,21 + 1588: -7,21 + 1589: -8,21 + 1590: -11,21 + 1591: -12,21 + 1592: -13,21 + 1593: -14,21 + 1594: -15,21 + 1595: -16,21 + 1609: 28,4 + 1610: 27,4 + 1611: 23,4 + 1612: 22,4 + 1816: 57,-17 + 1817: 58,-17 + 1818: 59,-17 + 1819: 60,-17 + 1820: 61,-17 + 2023: -1,-33 + 5904: 38,4 + 5905: 40,4 + 5906: 41,4 + 5907: 42,4 + 5908: 43,4 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 1138: 6,30 - 1549: -51,-20 - 1550: -50,-20 - 1551: -49,-20 - 1552: -48,-20 + 1132: 6,30 + 1543: -51,-20 + 1544: -50,-20 + 1545: -49,-20 + 1546: -48,-20 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 1491: 12,-32 - 1492: 11,-32 - 1493: 13,-32 - 1494: 14,-32 - 1495: 15,-32 - 1496: 16,-32 - 1497: 17,-32 - 1498: 19,-32 - 1499: 19,-30 - 1500: 19,-29 - 1501: 19,-27 - 1502: 19,-26 - 1503: 19,-25 - 1504: 20,-25 - 1505: 21,-25 - 1506: 22,-25 - 1507: 23,-25 - 1508: 24,-25 - 1520: 19,-31 + 1485: 12,-32 + 1486: 11,-32 + 1487: 13,-32 + 1488: 14,-32 + 1489: 15,-32 + 1490: 16,-32 + 1491: 17,-32 + 1492: 19,-32 + 1493: 19,-30 + 1494: 19,-29 + 1495: 19,-27 + 1496: 19,-26 + 1497: 19,-25 + 1498: 20,-25 + 1499: 21,-25 + 1500: 22,-25 + 1501: 23,-25 + 1502: 24,-25 + 1514: 19,-31 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 1627: 37,-21 - 1628: 50,-21 - 1629: 34,-21 - 1630: 36,-21 - 1631: 35,-21 - 1832: 51,-21 - 1902: 29,-21 - 1903: 29,-22 - 1904: 29,-23 - 1905: 29,-24 - 1906: 29,-25 - 1907: 29,-26 - 1908: 29,-27 - 1909: 28,-27 - 1910: 27,-27 - 1911: 26,-27 - 1912: 25,-27 - 1913: 24,-27 - 1914: 23,-27 - 1915: 21,-27 - 1916: 21,-29 - 1917: 21,-30 - 1918: 21,-31 - 1919: 21,-32 - 1920: 21,-33 - 1921: 21,-34 - 1922: 20,-34 - 1923: 19,-34 + 1621: 37,-21 + 1622: 50,-21 + 1623: 34,-21 + 1624: 36,-21 + 1625: 35,-21 + 1826: 51,-21 + 1896: 29,-21 + 1897: 29,-22 + 1898: 29,-23 + 1899: 29,-24 + 1900: 29,-25 + 1901: 29,-26 + 1902: 29,-27 + 1903: 28,-27 + 1904: 27,-27 + 1905: 26,-27 + 1906: 25,-27 + 1907: 24,-27 + 1908: 23,-27 + 1909: 21,-27 + 1910: 21,-29 + 1911: 21,-30 + 1912: 21,-31 + 1913: 21,-32 + 1914: 21,-33 + 1915: 21,-34 + 1916: 20,-34 + 1917: 19,-34 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 5937: 45,7 + 5926: 45,7 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1455: -25,11 - 1456: -25,12 - 1457: -25,13 - 1458: -25,14 - 1459: -25,15 - 1460: -25,16 - 1461: -25,17 - 1619: 21,5 - 1620: 21,7 - 1621: 21,8 - 1622: 21,9 - 1623: 21,16 - 1624: 21,18 - 1625: 21,19 - 1626: 21,20 - 1827: 61,-17 - 1828: 61,-18 - 1829: 61,-19 - 1830: 61,-20 - 2025: -1,-33 - 2026: 0,-33 - 2027: 1,-33 - 2028: 2,-33 - 5920: 43,4 - 5921: 43,3 - 5922: 43,2 - 5923: 43,1 - 5924: 43,-1 - 5925: 43,-2 - 5926: 43,-3 - 5927: 43,-4 - 5928: 43,-5 - 5929: 43,-6 - 5930: 43,-7 - 5931: 43,-8 - 5932: 43,-9 - 5933: 43,-10 + 1449: -25,11 + 1450: -25,12 + 1451: -25,13 + 1452: -25,14 + 1453: -25,15 + 1454: -25,16 + 1455: -25,17 + 1613: 21,5 + 1614: 21,7 + 1615: 21,8 + 1616: 21,9 + 1617: 21,16 + 1618: 21,18 + 1619: 21,19 + 1620: 21,20 + 1821: 61,-17 + 1822: 61,-18 + 1823: 61,-19 + 1824: 61,-20 + 2019: -1,-33 + 2020: 0,-33 + 2021: 1,-33 + 2022: 2,-33 + 5909: 43,4 + 5910: 43,3 + 5911: 43,2 + 5912: 43,1 + 5913: 43,-1 + 5914: 43,-2 + 5915: 43,-3 + 5916: 43,-4 + 5917: 43,-5 + 5918: 43,-6 + 5919: 43,-7 + 5920: 43,-8 + 5921: 43,-9 + 5922: 43,-10 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 1139: 3,32 + 1133: 3,32 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 decals: - 1487: 9,-27 - 1488: 9,-29 - 1489: 9,-30 - 1490: 9,-31 + 1481: 9,-27 + 1482: 9,-29 + 1483: 9,-30 + 1484: 9,-31 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 1514: 19,-25 - 1515: 19,-26 - 1516: 19,-27 - 1517: 19,-29 - 1518: 19,-30 - 5938: 43,7 + 1508: 19,-25 + 1509: 19,-26 + 1510: 19,-27 + 1511: 19,-29 + 1512: 19,-30 + 5927: 43,7 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 decals: - 1448: -27,11 - 1449: -27,12 - 1450: -27,13 - 1451: -27,14 - 1452: -27,15 - 1453: -27,16 - 1454: -27,17 - 1519: 19,-31 - 1557: -52,-27 - 1558: -52,-26 - 1559: -52,-25 - 1560: -52,-24 - 1561: -52,-23 - 1632: 34,-21 - 1633: 35,-21 - 1634: 36,-21 - 1635: 37,-21 - 1636: 50,-21 - 1833: 51,-21 - 1924: 19,-34 - 1925: 20,-34 - 1926: 21,-34 - 1933: 23,-27 - 1934: 24,-27 - 1935: 25,-27 - 1936: 26,-27 - 1937: 27,-27 - 1938: 28,-27 - 1939: 29,-27 + 1442: -27,11 + 1443: -27,12 + 1444: -27,13 + 1445: -27,14 + 1446: -27,15 + 1447: -27,16 + 1448: -27,17 + 1513: 19,-31 + 1551: -52,-27 + 1552: -52,-26 + 1553: -52,-25 + 1554: -52,-24 + 1555: -52,-23 + 1626: 34,-21 + 1627: 35,-21 + 1628: 36,-21 + 1629: 37,-21 + 1630: 50,-21 + 1827: 51,-21 + 1918: 19,-34 + 1919: 20,-34 + 1920: 21,-34 + 1927: 23,-27 + 1928: 24,-27 + 1929: 25,-27 + 1930: 26,-27 + 1931: 27,-27 + 1932: 28,-27 + 1933: 29,-27 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 1136: 6,32 + 1130: 6,32 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 1484: 5,-29 - 1485: 5,-28 - 1486: 5,-27 - 2020: -1,-33 - 2021: 1,-33 - 2022: 0,-33 - 2023: 2,-33 + 1478: 5,-29 + 1479: 5,-28 + 1480: 5,-27 + 2014: -1,-33 + 2015: 1,-33 + 2016: 0,-33 + 2017: 2,-33 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 981: 44,-36 + 975: 44,-36 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 1509: 19,-25 - 1510: 20,-25 - 1511: 21,-25 - 1512: 22,-25 - 1513: 23,-25 - 5897: 40,4 - 5898: 38,4 - 5899: 41,4 - 5900: 42,4 - 5901: 43,4 - 5902: 43,3 - 5903: 43,2 - 5904: 43,1 - 5905: 43,-1 - 5906: 43,-2 - 5907: 43,-3 - 5908: 43,-4 - 5909: 43,-5 - 5910: 43,-6 - 5911: 43,-7 - 5912: 43,-10 - 5913: 43,-9 - 5914: 43,-8 - 5935: 45,9 + 1503: 19,-25 + 1504: 20,-25 + 1505: 21,-25 + 1506: 22,-25 + 1507: 23,-25 + 5886: 40,4 + 5887: 38,4 + 5888: 41,4 + 5889: 42,4 + 5890: 43,4 + 5891: 43,3 + 5892: 43,2 + 5893: 43,1 + 5894: 43,-1 + 5895: 43,-2 + 5896: 43,-3 + 5897: 43,-4 + 5898: 43,-5 + 5899: 43,-6 + 5900: 43,-7 + 5901: 43,-10 + 5902: 43,-9 + 5903: 43,-8 + 5924: 45,9 - node: color: '#79150096' id: QuarterTileOverlayGreyscale90 decals: - 1436: -25,11 - 1437: -25,12 - 1438: -25,13 - 1439: -25,15 - 1440: -25,14 - 1441: -25,16 + 1430: -25,11 + 1431: -25,12 + 1432: -25,13 + 1433: -25,15 + 1434: -25,14 + 1435: -25,16 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 1462: -16,-30 - 1463: -15,-30 - 1464: -14,-30 - 1465: -13,-30 - 1466: -17,-30 + 1456: -16,-30 + 1457: -15,-30 + 1458: -14,-30 + 1459: -13,-30 + 1460: -17,-30 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 1602: 21,20 - 1603: 21,19 - 1604: 21,18 - 1605: 21,16 - 1606: 21,9 - 1607: 21,8 - 1608: 21,7 - 1609: 21,5 - 1610: 21,4 - 1611: 22,4 - 1612: 23,4 - 1613: 27,4 - 1614: 28,4 + 1596: 21,20 + 1597: 21,19 + 1598: 21,18 + 1599: 21,16 + 1600: 21,9 + 1601: 21,8 + 1602: 21,7 + 1603: 21,5 + 1604: 21,4 + 1605: 22,4 + 1606: 23,4 + 1607: 27,4 + 1608: 28,4 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 1815: 61,-17 - 1816: 60,-17 - 1817: 59,-17 - 1818: 58,-17 - 1819: 61,-18 - 1820: 61,-19 - 1821: 61,-20 - 1831: 57,-17 + 1809: 61,-17 + 1810: 60,-17 + 1811: 59,-17 + 1812: 58,-17 + 1813: 61,-18 + 1814: 61,-19 + 1815: 61,-20 + 1825: 57,-17 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 1521: 17,-32 - 1522: 16,-32 - 1523: 15,-32 - 1524: 14,-32 - 1525: 13,-32 - 1526: 12,-32 - 1527: 11,-32 - 1528: 9,-32 - 1529: 9,-31 - 1530: 9,-30 - 1531: 9,-29 - 1532: 9,-27 - 1562: -51,-20 - 1563: -50,-20 - 1564: -49,-20 - 1565: -48,-20 - 1566: -52,-20 - 1567: -62,-22 - 1927: 21,-34 - 1928: 21,-33 - 1929: 21,-32 - 1930: 21,-31 - 1931: 21,-30 - 1932: 21,-29 - 1940: 29,-27 - 1941: 29,-26 - 1942: 29,-25 - 1943: 29,-24 - 1944: 29,-23 - 1945: 29,-22 + 1515: 17,-32 + 1516: 16,-32 + 1517: 15,-32 + 1518: 14,-32 + 1519: 13,-32 + 1520: 12,-32 + 1521: 11,-32 + 1522: 9,-32 + 1523: 9,-31 + 1524: 9,-30 + 1525: 9,-29 + 1526: 9,-27 + 1556: -51,-20 + 1557: -50,-20 + 1558: -49,-20 + 1559: -48,-20 + 1560: -52,-20 + 1561: -62,-22 + 1921: 21,-34 + 1922: 21,-33 + 1923: 21,-32 + 1924: 21,-31 + 1925: 21,-30 + 1926: 21,-29 + 1934: 29,-27 + 1935: 29,-26 + 1936: 29,-25 + 1937: 29,-24 + 1938: 29,-23 + 1939: 29,-22 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 1137: 3,30 - 1568: -16,21 - 1569: -15,21 - 1570: -14,21 - 1571: -13,21 - 1572: -12,21 - 1573: -11,21 - 1574: -8,21 - 1575: -7,21 - 1576: -6,21 - 1577: -5,21 - 1578: -4,21 - 1579: -1,21 - 1580: 0,21 - 1581: 1,21 - 1582: 2,21 - 1583: 5,21 - 1584: 6,21 + 1131: 3,30 + 1562: -16,21 + 1563: -15,21 + 1564: -14,21 + 1565: -13,21 + 1566: -12,21 + 1567: -11,21 + 1568: -8,21 + 1569: -7,21 + 1570: -6,21 + 1571: -5,21 + 1572: -4,21 + 1573: -1,21 + 1574: 0,21 + 1575: 1,21 + 1576: 2,21 + 1577: 5,21 + 1578: 6,21 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 1472: -8,-30 - 1473: -7,-30 - 1474: -6,-30 - 1475: -5,-30 - 1476: -4,-30 - 1477: -3,-30 - 1478: -2,-30 - 1479: 0,-30 - 1480: -1,-30 - 1481: 1,-30 - 1482: 2,-30 - 1483: 3,-30 - 2024: 2,-33 + 1466: -8,-30 + 1467: -7,-30 + 1468: -6,-30 + 1469: -5,-30 + 1470: -4,-30 + 1471: -3,-30 + 1472: -2,-30 + 1473: 0,-30 + 1474: -1,-30 + 1475: 1,-30 + 1476: 2,-30 + 1477: 3,-30 + 2018: 2,-33 - node: color: '#FFFFFFFF' id: Rock01 decals: - 1413: -52,-49 + 1407: -52,-49 - node: color: '#FFFFFFFF' id: Rock03 decals: - 849: -49,-9 - 1414: -47,-49 + 843: -49,-9 + 1408: -47,-49 - node: color: '#FFFFFFFF' id: Rock04 decals: - 827: -47,4 + 821: -47,4 - node: color: '#FFFFFFFF' id: Rock05 decals: - 826: -49,-2 + 820: -49,-2 - node: color: '#FFFFFFFF' id: Rock06 decals: - 829: -51,4 - 851: -46,-7 - 1416: -46,-49 - 1649: 58,19 + 823: -51,4 + 845: -46,-7 + 1410: -46,-49 + 1643: 58,19 - node: color: '#FFFFFFFF' id: Rock07 decals: - 828: -46,-2 - 850: -50,-8 - 1415: -51,-49 - 1650: 61,19 + 822: -46,-2 + 844: -50,-8 + 1409: -51,-49 + 1644: 61,19 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 451: -37,0 + 445: -37,0 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 452: -36,0 + 446: -36,0 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 453: -35,0 + 447: -35,0 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 454: -34,0 + 448: -34,0 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 455: -33,0 + 449: -33,0 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 456: -32,0 + 450: -32,0 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 457: -31,0 + 451: -31,0 - node: color: '#FFFFFFFF' id: StandClear decals: - 6821: 57.998478,-4.7559896 - 6822: 60.004295,-4.7682204 + 6787: 57.998478,-4.7559896 + 6788: 60.004295,-4.7682204 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 1086: -3,24 + 1080: -3,24 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale @@ -8224,7 +8224,7 @@ entities: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1085: -2,23 + 1079: -2,23 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 @@ -8234,7 +8234,7 @@ entities: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1084: -3,23 + 1078: -3,23 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 @@ -8244,7 +8244,7 @@ entities: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1083: -2,24 + 1077: -2,24 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 @@ -8254,75 +8254,75 @@ entities: color: '#FFFFFFB1' id: VentSmall decals: - 2739: -36,22 + 2733: -36,22 - node: color: '#FFFFFFFF' id: WarnBox decals: - 7034: -7,-12 + 7000: -7,-12 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 1127: 6,32 - 6247: 91,-13 + 1121: 6,32 + 6236: 91,-13 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 1126: 3,32 - 6248: 88,-13 + 1120: 3,32 + 6237: 88,-13 - node: color: '#EFB34196' id: WarnCornerSE decals: - 275: 29,-14 + 269: 29,-14 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 6246: 91,-16 + 6235: 91,-16 - node: color: '#EFB34196' id: WarnCornerSW decals: - 215: 13,-22 + 209: 13,-22 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 6245: 88,-16 - 6745: 46,15 + 6234: 88,-16 + 6711: 46,15 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE decals: - 6658: -35,12 + 6624: -35,12 - node: color: '#52B4E996' id: WarnCornerSmallGreyscaleSE decals: - 6403: 49,-11 - 6404: 52,-11 + 6369: 49,-11 + 6370: 52,-11 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSE decals: - 6657: -35,16 + 6623: -35,16 - node: color: '#52B4E996' id: WarnCornerSmallGreyscaleSW decals: - 6401: 49,-11 - 6402: 52,-11 + 6367: 49,-11 + 6368: 52,-11 - node: color: '#EFB34131' id: WarnCornerSmallNE decals: - 6470: 14,39 - 6471: 14,39 - 6472: 14,39 - 6473: 14,39 + 6436: 14,39 + 6437: 14,39 + 6438: 14,39 + 6439: 14,39 - node: color: '#EFB34196' id: WarnCornerSmallNE @@ -8332,84 +8332,84 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 1259: 25,23 - 1260: 29,23 - 1954: 11,-47 - 5984: 51,13 - 6071: 51,-11 - 6748: 46,15 - 6846: 57,-5 + 1253: 25,23 + 1254: 29,23 + 1948: 11,-47 + 5973: 51,13 + 6060: 51,-11 + 6714: 46,15 + 6812: 57,-5 - node: color: '#EFB34131' id: WarnCornerSmallNW decals: - 6466: 16,39 - 6467: 16,39 - 6468: 16,39 - 6469: 16,39 + 6432: 16,39 + 6433: 16,39 + 6434: 16,39 + 6435: 16,39 - node: color: '#EFB34196' id: WarnCornerSmallNW decals: 12: 2,-17 - 231: 0,-22 + 225: 0,-22 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 1025: 39,-1 - 1261: 25,23 - 1262: 29,23 - 1955: 14,-47 - 6825: 61,-5 + 1019: 39,-1 + 1255: 25,23 + 1256: 29,23 + 1949: 14,-47 + 6791: 61,-5 - node: color: '#EFB34131' id: WarnCornerSmallSE decals: - 6462: 14,42 - 6463: 14,42 - 6464: 14,42 - 6465: 14,42 + 6428: 14,42 + 6429: 14,42 + 6430: 14,42 + 6431: 14,42 - node: color: '#EFB34196' id: WarnCornerSmallSE decals: 28: -2,-12 54: -4,-13 - 193: 12,-26 - 267: 25,-14 + 187: 12,-26 + 261: 25,-14 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1381: 55,-33 - 5983: 51,15 + 1375: 55,-33 + 5972: 51,15 - node: color: '#EFB34131' id: WarnCornerSmallSW decals: - 6458: 16,42 - 6459: 16,42 - 6460: 16,42 - 6461: 16,42 + 6424: 16,42 + 6425: 16,42 + 6426: 16,42 + 6427: 16,42 - node: color: '#EFB34196' id: WarnCornerSmallSW decals: 10: 2,-12 - 192: 16,-26 + 186: 16,-26 - node: color: '#EFB34131' id: WarnLineE decals: - 6434: 14,40 - 6435: 14,40 - 6436: 14,41 - 6437: 14,41 - 6446: 14,40 - 6447: 14,40 - 6448: 14,41 - 6449: 14,41 + 6400: 14,40 + 6401: 14,40 + 6402: 14,41 + 6403: 14,41 + 6412: 14,40 + 6413: 14,40 + 6414: 14,41 + 6415: 14,41 - node: color: '#EFB34196' id: WarnLineE @@ -8429,105 +8429,105 @@ entities: 85: -4,-19 116: -4,-16 119: -2,-15 - 265: 25,-16 - 266: 25,-15 - 276: 29,-13 - 277: 29,-12 - 278: 29,-11 + 259: 25,-16 + 260: 25,-15 + 270: 29,-13 + 271: 29,-12 + 272: 29,-11 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 1128: 6,31 - 1129: 6,30 - 1376: 55,-36 - 1377: 55,-34 - 1378: 55,-35 - 1757: 73,-14 - 1758: 73,-15 - 1759: 73,-17 - 1760: 73,-16 - 1761: 73,-18 - 1762: 73,-19 - 5875: -45,23 - 5981: 51,14 - 6070: 51,-10 - 6243: 91,-15 - 6244: 91,-14 - 6371: -33,-11 - 6372: -33,-10 - 6746: 46,16 - 6845: 57,-4 + 1122: 6,31 + 1123: 6,30 + 1370: 55,-36 + 1371: 55,-34 + 1372: 55,-35 + 1751: 73,-14 + 1752: 73,-15 + 1753: 73,-17 + 1754: 73,-16 + 1755: 73,-18 + 1756: 73,-19 + 5864: -45,23 + 5970: 51,14 + 6059: 51,-10 + 6232: 91,-15 + 6233: 91,-14 + 6337: -33,-11 + 6338: -33,-10 + 6712: 46,16 + 6811: 57,-4 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 6072: 52,-12 - 6073: 52,-13 - 6074: 52,-14 - 6075: 52,-15 - 6076: 49,-12 - 6077: 49,-13 - 6078: 49,-14 - 6079: 49,-15 + 6061: 52,-12 + 6062: 52,-13 + 6063: 52,-14 + 6064: 52,-15 + 6065: 49,-12 + 6066: 49,-13 + 6067: 49,-14 + 6068: 49,-15 - node: color: '#EFB34196' id: WarnLineGreyscaleN decals: - 6758: 42,13 - 6759: 46,13 + 6724: 42,13 + 6725: 46,13 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 6651: -34,12 - 6652: -33,12 - 6653: -31,12 - 6654: -30,12 + 6617: -34,12 + 6618: -33,12 + 6619: -31,12 + 6620: -30,12 - node: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 6841: 59,-8 + 6807: 59,-8 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 6937: 54,-23 - 6938: 52,-23 - 6939: 53,-23 + 6903: 54,-23 + 6904: 52,-23 + 6905: 53,-23 - node: color: '#EFB34196' id: WarnLineGreyscaleS decals: - 6756: 42,13 - 6757: 46,13 + 6722: 42,13 + 6723: 46,13 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 6655: -34,16 - 6656: -33,16 + 6621: -34,16 + 6622: -33,16 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 6080: 49,-15 - 6081: 49,-14 - 6082: 49,-13 - 6083: 49,-12 - 6084: 52,-12 - 6085: 52,-13 - 6086: 52,-14 - 6087: 52,-15 + 6069: 49,-15 + 6070: 49,-14 + 6071: 49,-13 + 6072: 49,-12 + 6073: 52,-12 + 6074: 52,-13 + 6075: 52,-14 + 6076: 52,-15 - node: color: '#EFB34131' id: WarnLineN decals: - 6454: 15,42 - 6455: 15,42 - 6456: 15,42 - 6457: 15,42 + 6420: 15,42 + 6421: 15,42 + 6422: 15,42 + 6423: 15,42 - node: color: '#EFB34196' id: WarnLineN @@ -8540,57 +8540,57 @@ entities: 115: -8,-23 184: 13,-26 185: 15,-26 - 216: 14,-22 - 268: 26,-14 - 269: 27,-14 - 270: 28,-14 + 210: 14,-22 + 262: 26,-14 + 263: 27,-14 + 264: 28,-14 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 1379: 56,-33 - 1380: 57,-33 - 1802: 69,-30 - 1803: 68,-30 - 1804: 70,-30 - 1805: 71,-30 - 1849: 23,-38 - 1850: 24,-38 - 1851: 25,-38 - 1946: 11,-48 - 1947: 12,-48 - 1948: 14,-48 - 1949: 13,-48 - 1950: 15,-48 - 1951: 16,-48 - 2003: 0,-38 - 2004: 1,-38 - 2005: 2,-38 - 5872: -44,24 - 6237: 89,-16 - 6238: 90,-16 - 6499: 33,-14 - 6500: 34,-14 - 6501: 35,-14 - 6543: 7,-47 - 6544: 8,-47 - 6545: 9,-47 - 6744: 47,15 - 7035: -7,-10 - 7036: -8,-10 - 7037: -6,-10 + 1373: 56,-33 + 1374: 57,-33 + 1796: 69,-30 + 1797: 68,-30 + 1798: 70,-30 + 1799: 71,-30 + 1843: 23,-38 + 1844: 24,-38 + 1845: 25,-38 + 1940: 11,-48 + 1941: 12,-48 + 1942: 14,-48 + 1943: 13,-48 + 1944: 15,-48 + 1945: 16,-48 + 1997: 0,-38 + 1998: 1,-38 + 1999: 2,-38 + 5861: -44,24 + 6226: 89,-16 + 6227: 90,-16 + 6465: 33,-14 + 6466: 34,-14 + 6467: 35,-14 + 6509: 7,-47 + 6510: 8,-47 + 6511: 9,-47 + 6710: 47,15 + 7001: -7,-10 + 7002: -8,-10 + 7003: -6,-10 - node: color: '#EFB34131' id: WarnLineS decals: - 6438: 16,40 - 6439: 16,40 - 6440: 16,41 - 6441: 16,41 - 6442: 16,41 - 6443: 16,40 - 6444: 16,41 - 6445: 16,40 + 6404: 16,40 + 6405: 16,40 + 6406: 16,41 + 6407: 16,41 + 6408: 16,41 + 6409: 16,40 + 6410: 16,41 + 6411: 16,40 - node: color: '#EFB34196' id: WarnLineS @@ -8605,40 +8605,40 @@ entities: 88: -10,-17 89: -10,-16 128: 0,-21 - 194: 13,-21 - 195: 13,-20 - 196: 13,-19 - 197: 13,-18 - 198: 13,-17 - 199: 13,-16 - 271: 16,-12 - 272: 16,-11 - 273: 16,-10 - 274: 16,-9 + 188: 13,-21 + 189: 13,-20 + 190: 13,-19 + 191: 13,-18 + 192: 13,-17 + 193: 13,-16 + 265: 16,-12 + 266: 16,-11 + 267: 16,-10 + 268: 16,-9 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 1678: 61,-24 - 1691: 61,-23 - 1877: 26,-43 - 1878: 26,-46 - 5873: -43,23 - 5982: 57,14 - 6241: 88,-15 - 6242: 88,-14 - 6369: -33,-10 - 6370: -33,-11 - 6743: 46,16 - 6824: 61,-4 + 1672: 61,-24 + 1685: 61,-23 + 1871: 26,-43 + 1872: 26,-46 + 5862: -43,23 + 5971: 57,14 + 6230: 88,-15 + 6231: 88,-14 + 6335: -33,-10 + 6336: -33,-11 + 6709: 46,16 + 6790: 61,-4 - node: color: '#EFB34131' id: WarnLineW decals: - 6450: 15,39 - 6451: 15,39 - 6452: 15,39 - 6453: 15,39 + 6416: 15,39 + 6417: 15,39 + 6418: 15,39 + 6419: 15,39 - node: color: '#EFB34196' id: WarnLineW @@ -8649,635 +8649,635 @@ entities: 25: 4,-14 26: 5,-14 27: 6,-14 - 229: -2,-22 - 230: -1,-22 + 223: -2,-22 + 224: -1,-22 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 1014: 36,-1 - 1015: 37,-1 - 1024: 38,-1 - 1124: 4,32 - 1125: 5,32 - 1253: 30,23 - 1254: 31,23 - 1255: 23,23 - 1256: 24,23 - 1257: 26,23 - 1258: 28,23 - 1707: 68,-11 - 1708: 69,-11 - 1709: 70,-11 - 1798: 68,-29 - 1799: 70,-29 - 1800: 69,-29 - 1801: 71,-29 - 1846: 23,-37 - 1847: 25,-37 - 1848: 24,-37 - 1897: 28,-38 - 1898: 29,-38 - 1952: 12,-47 - 1953: 13,-47 - 2013: 9,-39 - 2014: 10,-39 - 2015: 8,-39 - 2016: 11,-39 - 2030: -5,-35 - 2042: -6,-35 - 2043: -4,-35 - 5874: -44,22 - 6068: 52,-11 - 6069: 53,-11 - 6239: 89,-13 - 6240: 90,-13 - 6502: 33,-11 - 6503: 34,-11 - 6504: 35,-11 - 6747: 47,15 - 6823: 59,-5 - 7032: -7,-14 - 7033: -7,-12 + 1008: 36,-1 + 1009: 37,-1 + 1018: 38,-1 + 1118: 4,32 + 1119: 5,32 + 1247: 30,23 + 1248: 31,23 + 1249: 23,23 + 1250: 24,23 + 1251: 26,23 + 1252: 28,23 + 1701: 68,-11 + 1702: 69,-11 + 1703: 70,-11 + 1792: 68,-29 + 1793: 70,-29 + 1794: 69,-29 + 1795: 71,-29 + 1840: 23,-37 + 1841: 25,-37 + 1842: 24,-37 + 1891: 28,-38 + 1892: 29,-38 + 1946: 12,-47 + 1947: 13,-47 + 2007: 9,-39 + 2008: 10,-39 + 2009: 8,-39 + 2010: 11,-39 + 2024: -5,-35 + 2036: -6,-35 + 2037: -4,-35 + 5863: -44,22 + 6057: 52,-11 + 6058: 53,-11 + 6228: 89,-13 + 6229: 90,-13 + 6468: 33,-11 + 6469: 34,-11 + 6470: 35,-11 + 6713: 47,15 + 6789: 59,-5 + 6998: -7,-14 + 6999: -7,-12 - node: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 5871: -44,23 + 5860: -44,23 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 399: -18,-13 - 941: 44,-29 + 393: -18,-13 + 935: 44,-29 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 376: -22,7 - 940: 40,-29 - 6512: -19,-13 + 370: -22,7 + 934: 40,-29 + 6478: -19,-13 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 398: -18,-16 - 471: -32,5 + 392: -18,-16 + 465: -32,5 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 375: -22,5 - 397: -19,-16 - 472: -36,5 + 369: -22,5 + 391: -19,-16 + 466: -36,5 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 369: -24,3 - 425: -38,5 - 438: -40,-5 - 491: -38,3 - 600: -39,-16 - 803: -52,5 - 1123: -15,31 - 1652: 60,18 - 6565: 76,-25 + 363: -24,3 + 419: -38,5 + 432: -40,-5 + 485: -38,3 + 594: -39,-16 + 797: -52,5 + 1117: -15,31 + 1646: 60,18 + 6531: 76,-25 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 424: -30,5 - 490: -30,3 - 492: -25,-5 - 801: -43,-1 - 802: -43,5 - 1042: -59,-29 - 6564: 80,-25 + 418: -30,5 + 484: -30,3 + 486: -25,-5 + 795: -43,-1 + 796: -43,5 + 1036: -59,-29 + 6530: 80,-25 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 341: 43,-25 - 360: -24,8 - 381: -22,-1 - 599: -39,-13 - 800: -52,-3 - 6522: -22,-20 - 6523: -20,-20 + 335: 43,-25 + 354: -24,8 + 375: -22,-1 + 593: -39,-13 + 794: -52,-3 + 6488: -22,-20 + 6489: -20,-20 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 534: -28,14 - 542: -37,-18 - 798: -43,3 - 799: -43,-3 - 908: -50.00212,-30.877844 - 909: -45.158802,-30.877844 - 910: -45.158802,-25.282345 - 911: -50.020466,-25.282345 - 1041: -59,-25 - 6520: -20,-20 - 6521: -18,-20 + 528: -28,14 + 536: -37,-18 + 792: -43,3 + 793: -43,-3 + 902: -50.00212,-30.877844 + 903: -45.158802,-30.877844 + 904: -45.158802,-25.282345 + 905: -50.020466,-25.282345 + 1035: -59,-25 + 6486: -20,-20 + 6487: -18,-20 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 340: 43,-26 - 356: -22,-2 - 357: -22,-3 - 358: -22,-4 - 359: -22,-5 - 361: -24,4 - 362: -24,5 - 363: -24,7 - 400: -18,-15 - 401: -18,-14 - 422: -38,6 - 423: -38,7 - 426: -40,-2 - 427: -40,-3 - 428: -40,-4 - 478: -32,6 - 479: -32,7 - 482: -38,5 - 483: -38,4 - 514: -19,17 - 515: -19,21 - 586: -39,-15 - 587: -39,-14 - 898: -46,-26 - 899: -46,-27 - 900: -46,-28 - 901: -46,-29 - 902: -46,-30 - 903: -46,-31 - 923: 36,-31 - 924: 36,-30 - 925: 36,-29 - 947: 44,-31 - 948: 44,-30 - 1117: -15,32 - 1118: -15,33 - 1119: -15,34 - 1272: 33,15 - 1320: 33,12 - 1321: 33,13 - 1322: 33,14 - 1651: 60,19 - 1777: 69,-24 - 1778: 69,-23 - 1779: 69,-22 - 1780: 69,-21 - 6514: -20,-21 - 6516: -22,-21 - 6560: 76,-24 - 6561: 76,-23 + 334: 43,-26 + 350: -22,-2 + 351: -22,-3 + 352: -22,-4 + 353: -22,-5 + 355: -24,4 + 356: -24,5 + 357: -24,7 + 394: -18,-15 + 395: -18,-14 + 416: -38,6 + 417: -38,7 + 420: -40,-2 + 421: -40,-3 + 422: -40,-4 + 472: -32,6 + 473: -32,7 + 476: -38,5 + 477: -38,4 + 508: -19,17 + 509: -19,21 + 580: -39,-15 + 581: -39,-14 + 892: -46,-26 + 893: -46,-27 + 894: -46,-28 + 895: -46,-29 + 896: -46,-30 + 897: -46,-31 + 917: 36,-31 + 918: 36,-30 + 919: 36,-29 + 941: 44,-31 + 942: 44,-30 + 1111: -15,32 + 1112: -15,33 + 1113: -15,34 + 1266: 33,15 + 1314: 33,12 + 1315: 33,13 + 1316: 33,14 + 1645: 60,19 + 1771: 69,-24 + 1772: 69,-23 + 1773: 69,-22 + 1774: 69,-21 + 6480: -20,-21 + 6482: -22,-21 + 6526: 76,-24 + 6527: 76,-23 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 298: -15,4 - 350: 35,-26 - 351: 36,-26 - 352: 37,-26 - 368: -23,3 - 372: -21,7 - 373: -20,7 - 378: -22,3 - 379: -21,3 - 402: -22,-23 - 403: -21,-23 - 404: -19,-23 - 405: -18,-23 - 418: -37,5 - 419: -31,5 - 432: -28,-5 - 433: -27,-5 - 434: -26,-5 - 435: -37,-5 - 436: -38,-5 - 437: -39,-5 - 484: -37,3 - 485: -36,3 - 486: -33,3 - 487: -34,3 - 488: -32,3 - 489: -31,3 - 575: -38,-16 - 576: -37,-16 - 577: -36,-16 - 578: -35,-16 - 579: -34,-16 - 580: -33,-16 - 581: -32,-16 - 582: -31,-16 - 583: -29,-16 - 584: -30,-16 - 585: -28,-16 - 694: -40,-33 - 695: -39,-33 - 696: -30,-33 - 697: -29,-33 - 702: -26,-40 - 703: -25,-40 - 704: -24,-40 - 705: -23,-40 - 706: -21,-40 - 707: -22,-40 - 708: -20,-40 - 709: -20,-40 - 718: -19,-40 - 719: -26,-36 - 720: -23,-36 - 721: -20,-36 - 722: -19,-36 - 729: -27,-40 - 730: -28,-40 - 731: -29,-40 - 759: -51,-1 - 760: -50,-1 - 761: -49,-1 - 762: -48,-1 - 763: -47,-1 - 764: -45,-1 - 765: -45,-1 - 766: -46,-1 - 767: -44,-1 - 768: -44,5 - 769: -46,5 - 770: -46,5 - 771: -45,5 - 772: -45,5 - 773: -47,5 - 774: -48,5 - 775: -48,5 - 776: -49,5 - 777: -50,5 - 778: -50,5 - 779: -51,5 - 942: 41,-29 - 943: 42,-29 - 944: 43,-29 - 1036: -61,-29 - 1037: -60,-29 - 1120: -14,31 - 1121: -13,31 - 1122: -12,31 - 5810: -35,3 - 5869: 36,-24 + 292: -15,4 + 344: 35,-26 + 345: 36,-26 + 346: 37,-26 + 362: -23,3 + 366: -21,7 + 367: -20,7 + 372: -22,3 + 373: -21,3 + 396: -22,-23 + 397: -21,-23 + 398: -19,-23 + 399: -18,-23 + 412: -37,5 + 413: -31,5 + 426: -28,-5 + 427: -27,-5 + 428: -26,-5 + 429: -37,-5 + 430: -38,-5 + 431: -39,-5 + 478: -37,3 + 479: -36,3 + 480: -33,3 + 481: -34,3 + 482: -32,3 + 483: -31,3 + 569: -38,-16 + 570: -37,-16 + 571: -36,-16 + 572: -35,-16 + 573: -34,-16 + 574: -33,-16 + 575: -32,-16 + 576: -31,-16 + 577: -29,-16 + 578: -30,-16 + 579: -28,-16 + 688: -40,-33 + 689: -39,-33 + 690: -30,-33 + 691: -29,-33 + 696: -26,-40 + 697: -25,-40 + 698: -24,-40 + 699: -23,-40 + 700: -21,-40 + 701: -22,-40 + 702: -20,-40 + 703: -20,-40 + 712: -19,-40 + 713: -26,-36 + 714: -23,-36 + 715: -20,-36 + 716: -19,-36 + 723: -27,-40 + 724: -28,-40 + 725: -29,-40 + 753: -51,-1 + 754: -50,-1 + 755: -49,-1 + 756: -48,-1 + 757: -47,-1 + 758: -45,-1 + 759: -45,-1 + 760: -46,-1 + 761: -44,-1 + 762: -44,5 + 763: -46,5 + 764: -46,5 + 765: -45,5 + 766: -45,5 + 767: -47,5 + 768: -48,5 + 769: -48,5 + 770: -49,5 + 771: -50,5 + 772: -50,5 + 773: -51,5 + 936: 41,-29 + 937: 42,-29 + 938: 43,-29 + 1030: -61,-29 + 1031: -60,-29 + 1114: -14,31 + 1115: -13,31 + 1116: -12,31 + 5799: -35,3 + 5858: 36,-24 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 297: -15,-2 - 338: 44,-25 - 339: 45,-25 - 364: -23,8 - 365: -22,8 - 366: -21,8 - 367: -20,8 - 370: -21,5 - 371: -20,5 - 380: -21,-1 - 473: -35,5 - 474: -34,5 - 475: -33,5 - 539: -40,-18 - 540: -39,-18 - 541: -38,-18 - 588: -38,-13 - 589: -37,-13 - 590: -36,-13 - 591: -35,-13 - 592: -34,-13 - 593: -33,-13 - 594: -32,-13 - 595: -31,-13 - 596: -29,-13 - 597: -28,-13 - 598: -30,-13 - 601: -38,-10 - 602: -37,-10 - 603: -36,-10 - 604: -30,-10 - 605: -29,-10 - 606: -28,-10 - 690: -40,-26 - 691: -39,-26 - 692: -30,-26 - 693: -29,-26 - 710: -26,-34 - 711: -25,-34 - 712: -24,-34 - 713: -22,-34 - 714: -21,-34 - 715: -20,-34 - 716: -19,-34 - 717: -23,-34 - 723: -26,-38 - 724: -23,-38 - 725: -20,-38 - 726: -19,-38 - 780: -51,3 - 781: -50,3 - 782: -50,3 - 783: -49,3 - 784: -48,3 - 785: -47,3 - 786: -46,3 - 787: -45,3 - 788: -44,3 - 789: -44,-3 - 790: -45,-3 - 791: -46,-3 - 792: -46,-3 - 793: -47,-3 - 794: -49,-3 - 795: -49,-3 - 796: -51,-3 - 797: -51,-3 - 804: -50,-3 - 805: -48,-3 - 1038: -62,-25 - 1039: -61,-25 - 1040: -60,-25 - 1641: 58,19 - 1642: 59,19 - 1643: 60,19 - 2890: 65,-52 - 2891: 66,-52 - 2892: 67,-52 - 5868: 36,-24 - 5888: -38,-17 - 6518: -21,-20 - 6519: -19,-20 - 6670: -37,13 - 6671: -38,13 - 6672: -39,13 + 291: -15,-2 + 332: 44,-25 + 333: 45,-25 + 358: -23,8 + 359: -22,8 + 360: -21,8 + 361: -20,8 + 364: -21,5 + 365: -20,5 + 374: -21,-1 + 467: -35,5 + 468: -34,5 + 469: -33,5 + 533: -40,-18 + 534: -39,-18 + 535: -38,-18 + 582: -38,-13 + 583: -37,-13 + 584: -36,-13 + 585: -35,-13 + 586: -34,-13 + 587: -33,-13 + 588: -32,-13 + 589: -31,-13 + 590: -29,-13 + 591: -28,-13 + 592: -30,-13 + 595: -38,-10 + 596: -37,-10 + 597: -36,-10 + 598: -30,-10 + 599: -29,-10 + 600: -28,-10 + 684: -40,-26 + 685: -39,-26 + 686: -30,-26 + 687: -29,-26 + 704: -26,-34 + 705: -25,-34 + 706: -24,-34 + 707: -22,-34 + 708: -21,-34 + 709: -20,-34 + 710: -19,-34 + 711: -23,-34 + 717: -26,-38 + 718: -23,-38 + 719: -20,-38 + 720: -19,-38 + 774: -51,3 + 775: -50,3 + 776: -50,3 + 777: -49,3 + 778: -48,3 + 779: -47,3 + 780: -46,3 + 781: -45,3 + 782: -44,3 + 783: -44,-3 + 784: -45,-3 + 785: -46,-3 + 786: -46,-3 + 787: -47,-3 + 788: -49,-3 + 789: -49,-3 + 790: -51,-3 + 791: -51,-3 + 798: -50,-3 + 799: -48,-3 + 1032: -62,-25 + 1033: -61,-25 + 1034: -60,-25 + 1635: 58,19 + 1636: 59,19 + 1637: 60,19 + 2884: 65,-52 + 2885: 66,-52 + 2886: 67,-52 + 5857: 36,-24 + 5877: -38,-17 + 6484: -21,-20 + 6485: -19,-20 + 6636: -37,13 + 6637: -38,13 + 6638: -39,13 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 290: -17,-1 - 291: -17,0 - 292: -17,1 - 293: -17,3 - 294: -17,2 - 322: -15,7 - 323: -15,6 - 324: -15,5 - 374: -22,6 - 394: -19,-15 - 395: -19,-14 - 396: -19,-13 - 420: -30,6 - 421: -30,7 - 429: -25,-2 - 430: -25,-3 - 431: -25,-4 - 476: -36,6 - 477: -36,7 - 480: -30,5 - 481: -30,4 - 513: -24,17 - 516: -24,21 - 533: -28,13 - 536: -37,-21 - 537: -37,-20 - 538: -37,-19 - 892: -50,-27 - 893: -50,-28 - 894: -50,-29 - 895: -50,-30 - 896: -50,-31 - 897: -50,-26 - 945: 40,-31 - 946: 40,-30 - 1033: -59,-28 - 1034: -59,-27 - 1035: -59,-26 - 1661: 58,19 - 2117: -27,-16 - 2118: -27,-15 - 2119: -27,-14 - 2120: -27,-13 - 6515: -20,-21 - 6517: -18,-21 - 6562: 80,-24 - 6563: 80,-23 + 284: -17,-1 + 285: -17,0 + 286: -17,1 + 287: -17,3 + 288: -17,2 + 316: -15,7 + 317: -15,6 + 318: -15,5 + 368: -22,6 + 388: -19,-15 + 389: -19,-14 + 390: -19,-13 + 414: -30,6 + 415: -30,7 + 423: -25,-2 + 424: -25,-3 + 425: -25,-4 + 470: -36,6 + 471: -36,7 + 474: -30,5 + 475: -30,4 + 507: -24,17 + 510: -24,21 + 527: -28,13 + 530: -37,-21 + 531: -37,-20 + 532: -37,-19 + 886: -50,-27 + 887: -50,-28 + 888: -50,-29 + 889: -50,-30 + 890: -50,-31 + 891: -50,-26 + 939: 40,-31 + 940: 40,-30 + 1027: -59,-28 + 1028: -59,-27 + 1029: -59,-26 + 1655: 58,19 + 2111: -27,-16 + 2112: -27,-15 + 2113: -27,-14 + 2114: -27,-13 + 6481: -20,-21 + 6483: -18,-21 + 6528: 80,-24 + 6529: 80,-23 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowa1 decals: - 5826: 80.134224,-34.739353 + 5815: 80.134224,-34.739353 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowa2 decals: - 5827: 81.98104,-35.791183 + 5816: 81.98104,-35.791183 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowa3 decals: - 5828: 80.43999,-36.158104 + 5817: 80.43999,-36.158104 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowb1 decals: - 5829: 83.2041,-35.583263 + 5818: 83.2041,-35.583263 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowb3 decals: - 5830: 83.020645,-36.060257 + 5819: 83.020645,-36.060257 - node: color: '#FFFFFFFF' id: e decals: - 868: -40.4296,-9.97279 + 862: -40.4296,-9.97279 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow01 decals: - 5843: 83.460945,-36.10918 - 5844: 80.01192,-34.201206 + 5832: 83.460945,-36.10918 + 5833: 80.01192,-34.201206 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow03 decals: - 5840: 81.7242,-35.840107 + 5829: 81.7242,-35.840107 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow05 decals: - 5845: 81.07172,-34.84943 + 5834: 81.07172,-34.84943 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow06 decals: - 5849: 80.39903,-34.335743 + 5838: 80.39903,-34.335743 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow07 decals: - 5838: 80.04861,-36.219257 + 5827: 80.04861,-36.219257 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow08 decals: - 5839: 80.8436,-35.974644 + 5828: 80.8436,-35.974644 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow09 decals: - 5841: 82.201195,-35.974644 - 5848: 81.98901,-35.155193 + 5830: 82.201195,-35.974644 + 5837: 81.98901,-35.155193 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow10 decals: - 5836: 80.02415,-34.922813 + 5825: 80.02415,-34.922813 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow11 decals: - 5837: 80.42776,-35.546574 - 5842: 83.24079,-35.7178 + 5826: 80.42776,-35.546574 + 5831: 83.24079,-35.7178 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow12 decals: - 5846: 82.99192,-34.910583 + 5835: 82.99192,-34.910583 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow13 decals: - 5847: 82.56385,-34.88612 + 5836: 82.56385,-34.88612 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowa1 decals: - 5833: 82.82495,-35.571033 + 5822: 82.82495,-35.571033 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowa2 decals: - 5852: 83.059845,-34.91084 + 5841: 83.059845,-34.91084 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowa3 decals: - 5831: 79.9263,-35.46096 + 5820: 79.9263,-35.46096 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowb2 decals: - 5832: 81.369514,-35.70557 - 5850: 80.8828,-34.87415 + 5821: 81.369514,-35.70557 + 5839: 80.8828,-34.87415 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowb3 decals: - 5851: 79.87989,-33.993546 + 5840: 79.87989,-33.993546 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowc2 decals: - 5835: 79.79176,-36.060257 + 5824: 79.79176,-36.060257 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowc3 decals: - 5834: 81.10044,-36.13364 + 5823: 81.10044,-36.13364 - node: color: '#FFFFFFFF' id: h decals: - 869: -40.486675,-10.812624 + 863: -40.486675,-10.812624 - node: color: '#FFFF00FF' id: radiation decals: - 7031: -7.010425,-13.95713 + 6997: -7.010425,-13.95713 - node: color: '#FFFF0066' id: shop decals: - 2884: 50.31763,23.128677 - 2885: 51.239506,23.738052 - 2886: 52.00513,23.034927 + 2878: 50.31763,23.128677 + 2879: 51.239506,23.738052 + 2880: 52.00513,23.034927 - node: cleanable: True color: '#60161514' id: splatter decals: - 7019: -16.023512,12.641541 - 7020: -15.84643,13.047791 - 7021: -15.679762,13.131124 - 7022: -16.65893,11.193624 - 7023: -16.12768,11.193624 - 7024: -16.09643,11.672791 - 7025: -16.72143,13.422791 - 7026: -16.294346,13.766541 - 7027: -16.62768,13.912374 - 7028: -16.513096,13.5894575 - 7029: -16.544346,13.360291 - 7030: 4.268362,-21.183928 + 6985: -16.023512,12.641541 + 6986: -15.84643,13.047791 + 6987: -15.679762,13.131124 + 6988: -16.65893,11.193624 + 6989: -16.12768,11.193624 + 6990: -16.09643,11.672791 + 6991: -16.72143,13.422791 + 6992: -16.294346,13.766541 + 6993: -16.62768,13.912374 + 6994: -16.513096,13.5894575 + 6995: -16.544346,13.360291 + 6996: 4.268362,-21.183928 - node: cleanable: True color: '#6F16151F' id: splatter decals: - 7004: -16.450596,11.5894575 - 7005: -16.836012,11.099874 - 7006: -16.606846,11.537374 - 7007: -16.356846,11.4019575 - 7008: -17.023512,12.287374 - 7009: -16.12768,12.912374 - 7010: -16.31518,13.360291 - 7011: -16.325596,12.9644575 - 7012: -16.65893,13.329041 - 7013: -16.34643,12.881124 - 7014: -16.388096,12.0582075 - 7015: -16.25268,11.8082075 + 6970: -16.450596,11.5894575 + 6971: -16.836012,11.099874 + 6972: -16.606846,11.537374 + 6973: -16.356846,11.4019575 + 6974: -17.023512,12.287374 + 6975: -16.12768,12.912374 + 6976: -16.31518,13.360291 + 6977: -16.325596,12.9644575 + 6978: -16.65893,13.329041 + 6979: -16.34643,12.881124 + 6980: -16.388096,12.0582075 + 6981: -16.25268,11.8082075 - node: cleanable: True color: '#9B16154C' id: splatter decals: - 7016: -16.50268,11.829041 - 7017: -16.78393,13.3082075 - 7018: -15.867262,12.443624 + 6982: -16.50268,11.829041 + 6983: -16.78393,13.3082075 + 6984: -15.867262,12.443624 - node: color: '#FFFFFFFF' id: w decals: - 867: -40.502983,-9.132956 + 861: -40.502983,-9.132956 - type: GridAtmosphere version: 2 data: @@ -58969,18 +58969,6 @@ entities: - type: Transform pos: 31.515789,-24.396605 parent: 2 -- proto: chem_master - entities: - - uid: 6017 - components: - - type: Transform - pos: 47.5,11.5 - parent: 2 - - uid: 6019 - components: - - type: Transform - pos: 41.5,11.5 - parent: 2 - proto: ChemDispenser entities: - uid: 6021 @@ -59000,6 +58988,18 @@ entities: - type: Transform pos: 43.5,12.5 parent: 2 +- proto: ChemMaster + entities: + - uid: 6017 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 6019 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 - proto: ChessBoard entities: - uid: 864 @@ -70096,120 +70096,120 @@ entities: pos: -4.5,-26.5 parent: 2 - type: FaxMachine - destinationAddress: Engineering name: Engineering + destinationAddress: Engineering - uid: 998 components: - type: Transform pos: 17.5,-20.5 parent: 2 - type: FaxMachine - destinationAddress: Atmospherics name: Atmospherics + destinationAddress: Atmospherics - uid: 4498 components: - type: Transform pos: -50.5,-15.5 parent: 2 - type: FaxMachine - destinationAddress: Lawyer name: Lawyer + destinationAddress: Lawyer - uid: 4655 components: - type: Transform pos: -54.5,-29.5 parent: 2 - type: FaxMachine - destinationAddress: Reporter name: Reporter + destinationAddress: Reporter - uid: 5155 components: - type: Transform pos: -9.5,29.5 parent: 2 - type: FaxMachine - destinationAddress: Security name: Security + destinationAddress: Security - uid: 5422 components: - type: Transform pos: -26.5,-36.5 parent: 2 - type: FaxMachine - destinationAddress: Chapel name: Chapel + destinationAddress: Chapel - uid: 5568 components: - type: Transform pos: 28.5,11.5 parent: 2 - type: FaxMachine - destinationAddress: Cargo name: Cargo + destinationAddress: Cargo - uid: 5699 components: - type: Transform pos: 33.5,15.5 parent: 2 - type: FaxMachine - destinationAddress: Quartermaster name: Quartermaster + destinationAddress: Quartermaster - uid: 7155 components: - type: Transform pos: 57.5,-11.5 parent: 2 - type: FaxMachine - destinationAddress: Science name: Science + destinationAddress: Science - uid: 7442 components: - type: Transform pos: 70.5,-20.5 parent: 2 - type: FaxMachine - destinationAddress: Research Director name: Research Director + destinationAddress: Research Director - uid: 8346 components: - type: Transform pos: -17.5,-17.5 parent: 2 - type: FaxMachine - destinationAddress: Library name: Library + destinationAddress: Library - uid: 9182 components: - type: Transform pos: -25.5,25.5 parent: 2 - type: FaxMachine - destinationAddress: Detective name: Detective + destinationAddress: Detective - uid: 16527 components: - type: Transform pos: 44.5,-32.5 parent: 2 - type: FaxMachine - destinationAddress: Bridge name: Bridge + destinationAddress: Bridge - uid: 20485 components: - type: Transform pos: 50.5,-5.5 parent: 2 - type: FaxMachine - destinationAddress: Medical name: Medical + destinationAddress: Medical - uid: 20494 components: - type: Transform pos: 41.5,-23.5 parent: 2 - type: FaxMachine - destinationAddress: Head of Personnel name: Head of Personel + destinationAddress: Head of Personnel - proto: FaxMachineCaptain entities: - uid: 4581 @@ -70218,8 +70218,8 @@ entities: pos: 41.5,-29.5 parent: 2 - type: FaxMachine - destinationAddress: Captain name: Captain + destinationAddress: Captain - proto: filingCabinetDrawerRandom entities: - uid: 1000 @@ -104591,6 +104591,13 @@ entities: - type: Transform pos: 40.59389,-23.47827 parent: 2 +- proto: MaterialSilo + entities: + - uid: 8047 + components: + - type: Transform + pos: 12.5,-49.5 + parent: 2 - proto: MaterialWoodPlank entities: - uid: 15031 @@ -106018,11 +106025,6 @@ entities: - type: Transform pos: 36.516296,-28.475197 parent: 2 - - uid: 8047 - components: - - type: Transform - pos: 19.503874,-55.494072 - parent: 2 - uid: 15934 components: - type: Transform @@ -106291,6 +106293,20 @@ entities: - type: Transform pos: 29.5,27.5 parent: 2 +- proto: PlayerStationAi + entities: + - uid: 8048 + components: + - type: Transform + pos: 18.5,-55.5 + parent: 2 +- proto: PlayerStationAiEmpty + entities: + - uid: 5081 + components: + - type: Transform + pos: 19.5,-55.5 + parent: 2 - proto: PlushieAtmosian entities: - uid: 1553 @@ -120844,7 +120860,7 @@ entities: - type: Transform pos: 88.5,-22.5 parent: 2 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 2102 components: @@ -121558,6 +121574,23 @@ entities: - type: Transform pos: 68.5,-22.5 parent: 2 +- proto: SpawnPointAdminAssistant + entities: + - uid: 22542 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 2 + - uid: 22543 + components: + - type: Transform + pos: 39.5,-36.5 + parent: 2 + - uid: 22544 + components: + - type: Transform + pos: 41.5,-36.5 + parent: 2 - proto: SpawnPointAtmos entities: - uid: 2110 @@ -121587,6 +121620,13 @@ entities: - type: Transform pos: -14.5,6.5 parent: 2 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 22541 + components: + - type: Transform + pos: 43.5,-36.5 + parent: 2 - proto: SpawnPointBorg entities: - uid: 13722 @@ -121843,6 +121883,13 @@ entities: - type: Transform pos: -38.5,-19.5 parent: 2 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 22540 + components: + - type: Transform + pos: 44.5,-36.5 + parent: 2 - proto: SpawnPointObserver entities: - uid: 21965 @@ -127739,13 +127786,6 @@ entities: - type: Transform pos: 28.502048,12.539796 parent: 2 -- proto: ToyAi - entities: - - uid: 8048 - components: - - type: Transform - pos: 18.488733,-55.347305 - parent: 2 - proto: ToyFigurineClown entities: - uid: 2324 diff --git a/Resources/Maps/edge.yml b/Resources/Maps/edge.yml index 601cb7dd17cba1..b50006a7cb9213 100644 --- a/Resources/Maps/edge.yml +++ b/Resources/Maps/edge.yml @@ -66,6 +66,7 @@ entities: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: PhysicsMap - type: GridTree - type: MovedGrids @@ -6245,8 +6246,6 @@ entities: - 10561 - 10376 - 10346 - - type: AtmosDevice - joinedGrid: 2 - uid: 6 components: - type: Transform @@ -6257,8 +6256,6 @@ entities: - 10426 - 10309 - 7450 - - type: AtmosDevice - joinedGrid: 2 - uid: 7 components: - type: Transform @@ -6283,8 +6280,6 @@ entities: - 7418 - 7472 - 7483 - - type: AtmosDevice - joinedGrid: 2 - uid: 8 components: - type: Transform @@ -6301,8 +6296,6 @@ entities: - 7363 - 7364 - 10582 - - type: AtmosDevice - joinedGrid: 2 - uid: 9 components: - type: Transform @@ -6322,8 +6315,6 @@ entities: - 10530 - 7502 - 7368 - - type: AtmosDevice - joinedGrid: 2 - uid: 10 components: - type: Transform @@ -6348,8 +6339,6 @@ entities: - 10484 - 10476 - 10283 - - type: AtmosDevice - joinedGrid: 2 - uid: 11 components: - type: Transform @@ -6363,8 +6352,6 @@ entities: - 10411 - 10410 - 10228 - - type: AtmosDevice - joinedGrid: 2 - uid: 12 components: - type: Transform @@ -6387,8 +6374,6 @@ entities: - 10392 - 10469 - 10280 - - type: AtmosDevice - joinedGrid: 2 - uid: 13 components: - type: Transform @@ -6401,8 +6386,6 @@ entities: - 10539 - 10335 - 7510 - - type: AtmosDevice - joinedGrid: 2 - uid: 14 components: - type: Transform @@ -6421,8 +6404,6 @@ entities: - 10464 - 7396 - 7397 - - type: AtmosDevice - joinedGrid: 2 - uid: 15 components: - type: Transform @@ -6444,8 +6425,6 @@ entities: - 7427 - 7428 - 10578 - - type: AtmosDevice - joinedGrid: 2 - uid: 16 components: - type: Transform @@ -6472,8 +6451,6 @@ entities: - 10529 - 10300 - 10496 - - type: AtmosDevice - joinedGrid: 2 - uid: 17 components: - type: Transform @@ -6488,8 +6465,6 @@ entities: - 7436 - 7437 - 7442 - - type: AtmosDevice - joinedGrid: 2 - uid: 18 components: - type: Transform @@ -6505,8 +6480,6 @@ entities: - 10310 - 10427 - 10242 - - type: AtmosDevice - joinedGrid: 2 - uid: 19 components: - type: Transform @@ -6524,8 +6497,6 @@ entities: - 7497 - 7499 - 7494 - - type: AtmosDevice - joinedGrid: 2 - uid: 20 components: - type: Transform @@ -6550,8 +6521,6 @@ entities: - 10384 - 10356 - 434 - - type: AtmosDevice - joinedGrid: 2 - uid: 21 components: - type: Transform @@ -6570,8 +6539,6 @@ entities: - 7542 - 7560 - 7561 - - type: AtmosDevice - joinedGrid: 2 - uid: 22 components: - type: Transform @@ -6590,8 +6557,6 @@ entities: - 10284 - 10422 - 10239 - - type: AtmosDevice - joinedGrid: 2 - uid: 23 components: - type: Transform @@ -6605,8 +6570,6 @@ entities: - 10550 - 10339 - 7369 - - type: AtmosDevice - joinedGrid: 2 - uid: 24 components: - type: Transform @@ -6622,8 +6585,6 @@ entities: - 7501 - 7500 - 7365 - - type: AtmosDevice - joinedGrid: 2 - uid: 25 components: - type: Transform @@ -6639,16 +6600,12 @@ entities: - 7553 - 7552 - 7551 - - type: AtmosDevice - joinedGrid: 2 - uid: 26 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 27 components: - type: Transform @@ -6667,8 +6624,6 @@ entities: - 10365 - 10527 - 10377 - - type: AtmosDevice - joinedGrid: 2 - uid: 28 components: - type: Transform @@ -6687,8 +6642,6 @@ entities: - 10281 - 7389 - 7395 - - type: AtmosDevice - joinedGrid: 2 - uid: 29 components: - type: Transform @@ -6706,8 +6659,6 @@ entities: - 7378 - 7493 - 7492 - - type: AtmosDevice - joinedGrid: 2 - uid: 30 components: - type: Transform @@ -6725,8 +6676,6 @@ entities: - 10438 - 10439 - 10226 - - type: AtmosDevice - joinedGrid: 2 - uid: 31 components: - type: Transform @@ -6745,8 +6694,6 @@ entities: - 10487 - 7391 - 7394 - - type: AtmosDevice - joinedGrid: 2 - uid: 32 components: - type: Transform @@ -6770,8 +6717,6 @@ entities: - 10273 - 10254 - 10448 - - type: AtmosDevice - joinedGrid: 2 - uid: 33 components: - type: Transform @@ -6790,8 +6735,6 @@ entities: - 10225 - 10288 - 10466 - - type: AtmosDevice - joinedGrid: 2 - uid: 34 components: - type: Transform @@ -6808,8 +6751,6 @@ entities: - 10258 - 10447 - 10247 - - type: AtmosDevice - joinedGrid: 2 - uid: 35 components: - type: Transform @@ -6825,8 +6766,6 @@ entities: - 7460 - 7534 - 7535 - - type: AtmosDevice - joinedGrid: 2 - uid: 36 components: - type: Transform @@ -6839,8 +6778,6 @@ entities: - 10333 - 10546 - 7511 - - type: AtmosDevice - joinedGrid: 2 - uid: 37 components: - type: Transform @@ -6858,15 +6795,11 @@ entities: - 10246 - 10434 - 7359 - - type: AtmosDevice - joinedGrid: 2 - uid: 38 components: - type: Transform pos: -10.5,40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 39 components: - type: Transform @@ -6879,8 +6812,6 @@ entities: - 7381 - 10461 - 10278 - - type: AtmosDevice - joinedGrid: 2 - uid: 40 components: - type: Transform @@ -6902,8 +6833,6 @@ entities: - 7519 - 7518 - 10382 - - type: AtmosDevice - joinedGrid: 2 - uid: 41 components: - type: Transform @@ -6931,8 +6860,6 @@ entities: - 7437 - 7393 - 7392 - - type: AtmosDevice - joinedGrid: 2 - uid: 42 components: - type: Transform @@ -6947,8 +6874,6 @@ entities: - 10479 - 10289 - 7357 - - type: AtmosDevice - joinedGrid: 2 - uid: 43 components: - type: Transform @@ -6966,8 +6891,6 @@ entities: - 7518 - 7519 - 7383 - - type: AtmosDevice - joinedGrid: 2 - uid: 44 components: - type: Transform @@ -6991,8 +6914,6 @@ entities: - 10307 - 10517 - 10308 - - type: AtmosDevice - joinedGrid: 2 - uid: 45 components: - type: Transform @@ -7011,8 +6932,6 @@ entities: - 7470 - 10317 - 10429 - - type: AtmosDevice - joinedGrid: 2 - uid: 46 components: - type: Transform @@ -7030,8 +6949,6 @@ entities: - 7536 - 7537 - 433 - - type: AtmosDevice - joinedGrid: 2 - uid: 47 components: - type: Transform @@ -7046,8 +6963,6 @@ entities: - 7540 - 10440 - 10245 - - type: AtmosDevice - joinedGrid: 2 - uid: 48 components: - type: Transform @@ -7061,8 +6976,6 @@ entities: - 10252 - 10413 - 10241 - - type: AtmosDevice - joinedGrid: 2 - uid: 49 components: - type: Transform @@ -7080,8 +6993,6 @@ entities: - 7522 - 10372 - 10499 - - type: AtmosDevice - joinedGrid: 2 - uid: 50 components: - type: Transform @@ -7099,8 +7010,6 @@ entities: - 7386 - 7388 - 7387 - - type: AtmosDevice - joinedGrid: 2 - uid: 51 components: - type: Transform @@ -7125,8 +7034,6 @@ entities: - 7409 - 7398 - 7404 - - type: AtmosDevice - joinedGrid: 2 - uid: 52 components: - type: MetaData @@ -7138,8 +7045,6 @@ entities: - type: DeviceList devices: - 10583 - - type: AtmosDevice - joinedGrid: 2 - uid: 53 components: - type: Transform @@ -7160,8 +7065,6 @@ entities: - 441 - 442 - 7364 - - type: AtmosDevice - joinedGrid: 2 - proto: AirCanister entities: - uid: 54 @@ -7169,64 +7072,46 @@ entities: - type: Transform pos: -22.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 55 components: - type: Transform pos: -5.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 56 components: - type: Transform pos: -5.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 57 components: - type: Transform pos: -23.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 58 components: - type: Transform pos: 19.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 59 components: - type: Transform pos: -14.5,-83.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 60 components: - type: Transform pos: 18.9538,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 62 components: - type: Transform pos: -2.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 63 components: - type: Transform pos: -3.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: Airlock entities: - uid: 64 @@ -7820,6 +7705,58 @@ entities: - DoorStatus: DoorBolt 170: - DoorStatus: DoorBolt +- proto: AirlockExternalGlass + entities: + - uid: 179 + components: + - type: Transform + pos: -51.5,19.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: -51.5,13.5 + parent: 2 + - uid: 182 + components: + - type: Transform + pos: -51.5,21.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: 41.5,-17.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: 41.5,-19.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 2 - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 172 @@ -7897,58 +7834,6 @@ entities: - type: Transform pos: 19.5,-33.5 parent: 2 -- proto: AirlockExternalGlassEasyPry - entities: - - uid: 179 - components: - - type: Transform - pos: -51.5,19.5 - parent: 2 - - uid: 180 - components: - - type: Transform - pos: -51.5,11.5 - parent: 2 - - uid: 181 - components: - - type: Transform - pos: -51.5,13.5 - parent: 2 - - uid: 182 - components: - - type: Transform - pos: -51.5,21.5 - parent: 2 - - uid: 183 - components: - - type: Transform - pos: 41.5,-3.5 - parent: 2 - - uid: 184 - components: - - type: Transform - pos: 41.5,-9.5 - parent: 2 - - uid: 185 - components: - - type: Transform - pos: 41.5,-17.5 - parent: 2 - - uid: 186 - components: - - type: Transform - pos: 41.5,-19.5 - parent: 2 - - uid: 187 - components: - - type: Transform - pos: 41.5,-11.5 - parent: 2 - - uid: 188 - components: - - type: Transform - pos: 41.5,-1.5 - parent: 2 - proto: AirlockExternalGlassLocked entities: - uid: 189 @@ -10626,7 +10511,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 50 name: null @@ -11200,7 +11084,7 @@ entities: - type: Transform pos: -58.5,-3.5 parent: 2 -- proto: BodyBag_Container +- proto: BodyBag entities: - uid: 699 components: @@ -33123,8 +33007,6 @@ entities: - type: Transform pos: 0.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: CargoRequestComputerCircuitboard entities: - uid: 5015 @@ -38244,23 +38126,6 @@ entities: - type: Transform pos: 15.2492895,28.416422 parent: 2 -- proto: chem_master - entities: - - uid: 5937 - components: - - type: Transform - pos: -20.5,7.5 - parent: 2 - - uid: 5938 - components: - - type: Transform - pos: -27.5,3.5 - parent: 2 - - uid: 5939 - components: - - type: Transform - pos: 17.5,10.5 - parent: 2 - proto: ChemDispenser entities: - uid: 5935 @@ -38294,6 +38159,23 @@ entities: - type: Transform pos: 16.5,10.5 parent: 2 +- proto: ChemMaster + entities: + - uid: 5937 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 5938 + components: + - type: Transform + pos: -27.5,3.5 + parent: 2 + - uid: 5939 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 - proto: Cigar entities: - uid: 5945 @@ -40460,15 +40342,11 @@ entities: - type: Transform pos: 16.5,21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6283 components: - type: Transform pos: 18.5,21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: CyborgEndoskeleton entities: - uid: 6284 @@ -45830,7 +45708,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -45842,24 +45719,21 @@ entities: transformed: True currentReagent: metamorphicChangeColor: True - id: GinTonic + metamorphicFillBaseName: null flavor: gintonic flavorMinimum: 0.1 slippery: False + fizziness: 0 viscosity: 0 worksOnTheDead: False metabolisms: Drink: effects: - !type:SatiateThirst - shouldLog: False - logImpact: Low factor: 2 probability: 1 conditions: null - !type:AdjustReagent - shouldLog: False - logImpact: Low probability: 1 conditions: null amount: 0.15 @@ -45870,10 +45744,9 @@ entities: Flammable: effects: - !type:FlammableReaction - logImpact: Medium - shouldLog: True probability: 1 conditions: null + multiplierOnExisting: 1 multiplier: 0.05 methods: - Touch @@ -45882,17 +45755,15 @@ entities: temperatureMultiplier: 1.35 plantMetabolism: - !type:PlantAdjustNutrition - shouldLog: False - logImpact: Low - prob: 1 + guidebookIsAttributePositive: True amount: 0.25 + guidebookAttributeName: plant-attribute-nutrition probability: 1 conditions: null - !type:PlantAdjustWater - shouldLog: False - logImpact: Low - prob: 1 + guidebookIsAttributePositive: True amount: 0.7 + guidebookAttributeName: plant-attribute-water probability: 1 conditions: null pricePerUnit: 0 @@ -45904,13 +45775,11 @@ entities: referenceDistance: 1 rolloffFactor: 1 maxDistance: 20 - busName: Master pitch: 1 volume: 0 - attenuation: LinearDistanceClamped collection: FootstepWater + id: GinTonic name: reagent-name-gin-tonic - metamorphicFillBaseName: null group: Drinks parent: - BaseAlcohol @@ -45938,7 +45807,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -45950,24 +45818,21 @@ entities: transformed: True currentReagent: metamorphicChangeColor: True - id: WhiskeyCola + metamorphicFillBaseName: null flavor: whiskeycola flavorMinimum: 0.1 slippery: False + fizziness: 0 viscosity: 0 worksOnTheDead: False metabolisms: Drink: effects: - !type:SatiateThirst - shouldLog: False - logImpact: Low factor: 2 probability: 1 conditions: null - !type:AdjustReagent - shouldLog: False - logImpact: Low probability: 1 conditions: null amount: 0.15 @@ -45978,10 +45843,9 @@ entities: Flammable: effects: - !type:FlammableReaction - logImpact: Medium - shouldLog: True probability: 1 conditions: null + multiplierOnExisting: 1 multiplier: 0.05 methods: - Touch @@ -45990,17 +45854,15 @@ entities: temperatureMultiplier: 1.35 plantMetabolism: - !type:PlantAdjustNutrition - shouldLog: False - logImpact: Low - prob: 1 + guidebookIsAttributePositive: True amount: 0.25 + guidebookAttributeName: plant-attribute-nutrition probability: 1 conditions: null - !type:PlantAdjustWater - shouldLog: False - logImpact: Low - prob: 1 + guidebookIsAttributePositive: True amount: 0.7 + guidebookAttributeName: plant-attribute-water probability: 1 conditions: null pricePerUnit: 0 @@ -46012,13 +45874,11 @@ entities: referenceDistance: 1 rolloffFactor: 1 maxDistance: 20 - busName: Master pitch: 1 volume: 0 - attenuation: LinearDistanceClamped collection: FootstepWater + id: WhiskeyCola name: reagent-name-whiskey-cola - metamorphicFillBaseName: null group: Drinks parent: - BaseAlcohol @@ -46083,7 +45943,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -46102,7 +45961,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -46121,7 +45979,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -46165,7 +46022,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -46184,7 +46040,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -46206,7 +46061,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -46225,7 +46079,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -47295,8 +47148,6 @@ entities: - 7454 - 7455 - 7450 - - type: AtmosDevice - joinedGrid: 2 - uid: 7337 components: - type: Transform @@ -47309,8 +47160,6 @@ entities: - 7464 - 7462 - 7463 - - type: AtmosDevice - joinedGrid: 2 - uid: 7338 components: - type: Transform @@ -47325,8 +47174,6 @@ entities: - 7542 - 7561 - 7560 - - type: AtmosDevice - joinedGrid: 2 - uid: 7339 components: - type: Transform @@ -47337,8 +47184,6 @@ entities: - 7487 - 7488 - 7489 - - type: AtmosDevice - joinedGrid: 2 - uid: 7340 components: - type: Transform @@ -47352,8 +47197,6 @@ entities: - 7467 - 7435 - 7379 - - type: AtmosDevice - joinedGrid: 2 - uid: 7341 components: - type: Transform @@ -47372,8 +47215,6 @@ entities: - 7410 - 7524 - 7523 - - type: AtmosDevice - joinedGrid: 2 - uid: 7342 components: - type: Transform @@ -47385,8 +47226,6 @@ entities: - 7382 - 7525 - 7526 - - type: AtmosDevice - joinedGrid: 2 - uid: 7343 components: - type: Transform @@ -47400,8 +47239,6 @@ entities: - 7384 - 7475 - 7476 - - type: AtmosDevice - joinedGrid: 2 - uid: 7344 components: - type: Transform @@ -47414,8 +47251,6 @@ entities: - 7552 - 7553 - 7554 - - type: AtmosDevice - joinedGrid: 2 - uid: 7345 components: - type: Transform @@ -47434,8 +47269,6 @@ entities: - 7459 - 7458 - 7358 - - type: AtmosDevice - joinedGrid: 2 - uid: 7346 components: - type: Transform @@ -47450,8 +47283,6 @@ entities: - 7371 - 7531 - 7530 - - type: AtmosDevice - joinedGrid: 2 - uid: 7347 components: - type: Transform @@ -47466,8 +47297,6 @@ entities: - 7436 - 7393 - 7392 - - type: AtmosDevice - joinedGrid: 2 - uid: 7349 components: - type: Transform @@ -47480,8 +47309,6 @@ entities: - 7529 - 7533 - 7532 - - type: AtmosDevice - joinedGrid: 2 - uid: 7350 components: - type: Transform @@ -47499,8 +47326,6 @@ entities: - 7468 - 7473 - 7474 - - type: AtmosDevice - joinedGrid: 2 - uid: 7351 components: - type: Transform @@ -47511,8 +47336,6 @@ entities: - 7371 - 7372 - 7381 - - type: AtmosDevice - joinedGrid: 2 - uid: 7352 components: - type: Transform @@ -47526,8 +47349,6 @@ entities: - 7456 - 7459 - 7458 - - type: AtmosDevice - joinedGrid: 2 - uid: 7353 components: - type: Transform @@ -47544,8 +47365,6 @@ entities: - 7416 - 441 - 442 - - type: AtmosDevice - joinedGrid: 2 - proto: FireAxeCabinetFilled entities: - uid: 7354 @@ -49160,7 +48979,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 10 name: null @@ -49449,8 +49267,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 7684 @@ -49461,8 +49277,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 7685 @@ -49470,15 +49284,11 @@ entities: - type: Transform pos: -56.5,36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7686 components: - type: Transform pos: -56.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasFilterFlipped entities: - uid: 7687 @@ -49489,8 +49299,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7688 @@ -49501,8 +49309,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7689 @@ -49513,8 +49319,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7690 @@ -49525,8 +49329,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7691 @@ -49537,8 +49339,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - proto: GasMinerCarbonDioxide @@ -49548,8 +49348,6 @@ entities: - type: Transform pos: 6.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerNitrogenStation entities: - uid: 7692 @@ -49557,8 +49355,6 @@ entities: - type: Transform pos: 6.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerOxygen entities: - uid: 7693 @@ -49566,8 +49362,6 @@ entities: - type: Transform pos: 6.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMixer entities: - uid: 7696 @@ -49581,8 +49375,6 @@ entities: - type: GasMixer inletTwoConcentration: 0.79 inletOneConcentration: 0.21 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 7697 @@ -49591,8 +49383,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMixerFlipped entities: - uid: 7698 @@ -49603,8 +49393,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 7699 @@ -49615,8 +49403,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - proto: GasOutletInjector @@ -49626,31 +49412,23 @@ entities: - type: Transform pos: -61.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7701 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7702 components: - type: Transform pos: -54.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7703 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 7707 @@ -49659,8 +49437,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7709 @@ -49669,8 +49445,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7710 @@ -49679,8 +49453,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7711 @@ -49689,8 +49461,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7716 @@ -49699,8 +49469,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 17426 @@ -49709,8 +49477,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - proto: GasPassiveGate @@ -49721,8 +49487,6 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 7705 @@ -49731,8 +49495,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 7706 @@ -49741,8 +49503,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - proto: GasPassiveVent @@ -49753,8 +49513,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - uid: 7712 @@ -49763,38 +49521,28 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7713 components: - type: Transform pos: -55.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7714 components: - type: Transform pos: -62.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7715 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7717 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7719 @@ -49803,8 +49551,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7720 @@ -49813,8 +49559,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#CB00F5FF' - uid: 7721 @@ -49823,8 +49567,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#808080FF' - uid: 7722 @@ -49833,8 +49575,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7723 @@ -49843,8 +49583,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7724 @@ -49853,8 +49591,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-53.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 7725 @@ -49863,8 +49599,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-53.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - proto: GasPipeBend @@ -68636,16 +68370,12 @@ entities: - type: Transform pos: -2.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10175 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10177 @@ -68654,24 +68384,18 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10178 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10179 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10180 @@ -68680,8 +68404,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10181 @@ -68690,8 +68412,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10182 @@ -68699,16 +68419,12 @@ entities: - type: Transform pos: -3.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10183 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10184 @@ -68717,24 +68433,18 @@ entities: rot: 3.141592653589793 rad pos: 19.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10185 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10186 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10187 @@ -68743,8 +68453,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10188 @@ -68752,8 +68460,6 @@ entities: - type: Transform pos: -4.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10189 @@ -68761,8 +68467,6 @@ entities: - type: Transform pos: -5.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10190 @@ -68771,8 +68475,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - proto: GasPressurePump @@ -68785,8 +68487,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - uid: 10192 @@ -68797,8 +68497,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#CB00F5FF' - uid: 10193 @@ -68809,8 +68507,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 10194 @@ -68821,8 +68517,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 10195 @@ -68833,8 +68527,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 10196 @@ -68843,8 +68535,6 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10197 @@ -68856,8 +68546,6 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10198 @@ -68870,8 +68558,6 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 200 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - uid: 10199 @@ -68884,8 +68570,6 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 80 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 10200 @@ -68896,8 +68580,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 10201 @@ -68906,8 +68588,6 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10202 @@ -68918,8 +68598,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#EE4B2BFF' - uid: 10203 @@ -68930,8 +68608,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#808080FF' - uid: 10204 @@ -68942,8 +68618,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 10205 @@ -68953,8 +68627,6 @@ entities: - type: Transform pos: -6.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10206 @@ -68965,8 +68637,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10207 @@ -68977,8 +68647,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - uid: 10208 @@ -68989,8 +68657,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 10209 @@ -69001,8 +68667,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - proto: GasRecycler @@ -69012,8 +68676,6 @@ entities: - type: Transform pos: 2.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasRecyclerMachineCircuitboard entities: - uid: 10211 @@ -69031,15 +68693,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - type: AtmosDevice - joinedGrid: 2 - uid: 10213 components: - type: Transform pos: -8.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasThermoMachineFreezerEnabled entities: - uid: 10214 @@ -69050,8 +68708,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00AABBFF' - - type: AtmosDevice - joinedGrid: 2 - proto: GasThermoMachineHeater entities: - uid: 10215 @@ -69059,8 +68715,6 @@ entities: - type: Transform pos: -7.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasValve entities: - uid: 10216 @@ -69071,8 +68725,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10217 @@ -69083,8 +68735,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10218 @@ -69096,8 +68746,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 10219 @@ -69110,8 +68758,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 10220 @@ -69122,8 +68768,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - uid: 10221 components: - type: Transform @@ -69132,16 +68776,12 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - uid: 10222 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - proto: GasVentPump @@ -69152,8 +68792,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10224 @@ -69162,8 +68800,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10225 @@ -69172,8 +68808,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10226 @@ -69181,8 +68815,6 @@ entities: - type: Transform pos: 39.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10227 @@ -69190,8 +68822,6 @@ entities: - type: Transform pos: 9.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10228 @@ -69200,8 +68830,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10229 @@ -69210,8 +68838,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10230 @@ -69220,8 +68846,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10231 @@ -69230,8 +68854,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10232 @@ -69240,8 +68862,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10233 @@ -69249,8 +68869,6 @@ entities: - type: Transform pos: 16.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10234 @@ -69259,8 +68877,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10235 @@ -69268,8 +68884,6 @@ entities: - type: Transform pos: 18.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10236 @@ -69278,8 +68892,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10237 @@ -69288,8 +68900,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10238 @@ -69298,8 +68908,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10239 @@ -69308,8 +68916,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10240 @@ -69317,8 +68923,6 @@ entities: - type: Transform pos: -46.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10241 @@ -69326,8 +68930,6 @@ entities: - type: Transform pos: 5.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10242 @@ -69336,16 +68938,12 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10243 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10244 @@ -69354,8 +68952,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-75.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10245 @@ -69364,8 +68960,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10246 @@ -69373,8 +68967,6 @@ entities: - type: Transform pos: -10.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10247 @@ -69383,8 +68975,6 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10248 @@ -69393,8 +68983,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10249 @@ -69403,8 +68991,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10250 @@ -69413,8 +68999,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10251 @@ -69423,8 +69007,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10252 @@ -69433,8 +69015,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10253 @@ -69443,8 +69023,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10254 @@ -69452,8 +69030,6 @@ entities: - type: Transform pos: 26.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10255 @@ -69461,8 +69037,6 @@ entities: - type: Transform pos: 26.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10256 @@ -69471,8 +69045,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10257 @@ -69480,8 +69052,6 @@ entities: - type: Transform pos: 31.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10258 @@ -69490,8 +69060,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10259 @@ -69500,8 +69068,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10260 @@ -69509,8 +69075,6 @@ entities: - type: Transform pos: -7.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10261 @@ -69518,8 +69082,6 @@ entities: - type: Transform pos: -3.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10262 @@ -69527,8 +69089,6 @@ entities: - type: Transform pos: 35.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10263 @@ -69537,8 +69097,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10264 @@ -69547,8 +69105,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10265 @@ -69557,8 +69113,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10266 @@ -69567,8 +69121,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10267 @@ -69577,8 +69129,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10268 @@ -69587,8 +69137,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10269 @@ -69597,8 +69145,6 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10270 @@ -69607,8 +69153,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10271 @@ -69616,8 +69160,6 @@ entities: - type: Transform pos: 21.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10272 @@ -69625,8 +69167,6 @@ entities: - type: Transform pos: 18.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10273 @@ -69635,8 +69175,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10274 @@ -69645,8 +69183,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10275 @@ -69655,8 +69191,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10276 @@ -69664,8 +69198,6 @@ entities: - type: Transform pos: 8.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10277 @@ -69674,8 +69206,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10278 @@ -69684,8 +69214,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10279 @@ -69694,8 +69222,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10280 @@ -69704,8 +69230,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10281 @@ -69714,8 +69238,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10282 @@ -69724,8 +69246,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10283 @@ -69734,8 +69254,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10284 @@ -69744,8 +69262,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10285 @@ -69754,8 +69270,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10286 @@ -69764,8 +69278,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10287 @@ -69774,8 +69286,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10288 @@ -69784,8 +69294,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10289 @@ -69794,8 +69302,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10290 @@ -69804,8 +69310,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10291 @@ -69814,8 +69318,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10292 @@ -69824,8 +69326,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10293 @@ -69834,8 +69334,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10294 @@ -69844,8 +69342,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10295 @@ -69853,8 +69349,6 @@ entities: - type: Transform pos: -7.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10296 @@ -69863,8 +69357,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00AABBFF' - uid: 10297 @@ -69873,8 +69365,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10298 @@ -69882,8 +69372,6 @@ entities: - type: Transform pos: -42.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10299 @@ -69892,8 +69380,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10300 @@ -69901,8 +69387,6 @@ entities: - type: Transform pos: -24.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10301 @@ -69911,8 +69395,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10302 @@ -69921,8 +69403,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10303 @@ -69930,8 +69410,6 @@ entities: - type: Transform pos: -37.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10304 @@ -69940,8 +69418,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10305 @@ -69950,8 +69426,6 @@ entities: rot: 3.141592653589793 rad pos: -56.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10306 @@ -69960,8 +69434,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10307 @@ -69970,8 +69442,6 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10308 @@ -69980,8 +69450,6 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10309 @@ -69990,8 +69458,6 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10310 @@ -70000,8 +69466,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10311 @@ -70010,8 +69474,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10312 @@ -70020,8 +69482,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10313 @@ -70030,8 +69490,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10314 @@ -70040,8 +69498,6 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10315 @@ -70050,8 +69506,6 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10316 @@ -70060,8 +69514,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10317 @@ -70070,8 +69522,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10318 @@ -70079,8 +69529,6 @@ entities: - type: Transform pos: -20.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10319 @@ -70089,8 +69537,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10320 @@ -70099,8 +69545,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10321 @@ -70108,8 +69552,6 @@ entities: - type: Transform pos: -28.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10322 @@ -70117,8 +69559,6 @@ entities: - type: Transform pos: -44.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10323 @@ -70127,8 +69567,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10324 @@ -70137,8 +69575,6 @@ entities: rot: 3.141592653589793 rad pos: -36.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10325 @@ -70146,8 +69582,6 @@ entities: - type: Transform pos: -20.5,-74.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10326 @@ -70156,8 +69590,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10327 @@ -70166,8 +69598,6 @@ entities: rot: 3.141592653589793 rad pos: -32.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10328 @@ -70175,8 +69605,6 @@ entities: - type: Transform pos: -52.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10329 @@ -70184,8 +69612,6 @@ entities: - type: Transform pos: -19.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10330 @@ -70194,8 +69620,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10331 @@ -70203,8 +69627,6 @@ entities: - type: Transform pos: -22.5,40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10332 @@ -70213,8 +69635,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10333 @@ -70223,8 +69643,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10334 @@ -70232,8 +69650,6 @@ entities: - type: Transform pos: -11.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10335 @@ -70242,8 +69658,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10336 @@ -70252,8 +69666,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10337 @@ -70262,8 +69674,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10338 @@ -70272,8 +69682,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10339 @@ -70281,8 +69689,6 @@ entities: - type: Transform pos: -41.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10340 @@ -70291,8 +69697,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10341 @@ -70301,8 +69705,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10342 @@ -70311,8 +69713,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10343 @@ -70321,8 +69721,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10344 @@ -70331,8 +69729,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10345 @@ -70341,8 +69737,6 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10346 @@ -70351,8 +69745,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10347 @@ -70360,8 +69752,6 @@ entities: - type: Transform pos: -42.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10348 @@ -70370,8 +69760,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10349 @@ -70380,8 +69768,6 @@ entities: rot: 3.141592653589793 rad pos: -36.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10350 @@ -70389,8 +69775,6 @@ entities: - type: Transform pos: -19.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10351 @@ -70399,8 +69783,6 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10352 @@ -70409,8 +69791,6 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10353 @@ -70419,8 +69799,6 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10354 @@ -70429,8 +69807,6 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10355 @@ -70439,8 +69815,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10356 @@ -70449,8 +69823,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10357 @@ -70459,8 +69831,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10358 @@ -70469,8 +69839,6 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10359 @@ -70479,8 +69847,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10360 @@ -70489,8 +69855,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10361 @@ -70498,8 +69862,6 @@ entities: - type: Transform pos: -38.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10362 @@ -70508,8 +69870,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10363 @@ -70518,8 +69878,6 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10364 @@ -70527,8 +69885,6 @@ entities: - type: Transform pos: 27.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10365 @@ -70537,8 +69893,6 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10366 @@ -70547,8 +69901,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10367 @@ -70557,8 +69909,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10368 @@ -70567,8 +69917,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10369 @@ -70576,8 +69924,6 @@ entities: - type: Transform pos: -20.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10370 @@ -70586,8 +69932,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10371 @@ -70596,8 +69940,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10372 @@ -70606,8 +69948,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10373 @@ -70616,8 +69956,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10374 @@ -70625,8 +69963,6 @@ entities: - type: Transform pos: -34.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10376 @@ -70634,8 +69970,6 @@ entities: - type: Transform pos: -33.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10377 @@ -70644,8 +69978,6 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10378 @@ -70654,8 +69986,6 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10379 @@ -70663,8 +69993,6 @@ entities: - type: Transform pos: -46.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10380 @@ -70672,8 +70000,6 @@ entities: - type: Transform pos: -45.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10381 @@ -70682,8 +70008,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10382 @@ -70692,8 +70016,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10383 @@ -70702,8 +70024,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10384 @@ -70712,8 +70032,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10385 @@ -70721,8 +70039,6 @@ entities: - type: Transform pos: -0.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10386 @@ -70730,8 +70046,6 @@ entities: - type: Transform pos: -36.5,17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10387 @@ -70740,8 +70054,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10388 @@ -70749,8 +70061,6 @@ entities: - type: Transform pos: -14.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10389 @@ -70759,8 +70069,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10390 @@ -70769,8 +70077,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10391 @@ -70779,8 +70085,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10392 @@ -70789,8 +70093,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10393 @@ -70799,8 +70101,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10394 @@ -70808,8 +70108,6 @@ entities: - type: Transform pos: -43.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10395 @@ -70818,8 +70116,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10396 @@ -70828,8 +70124,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10397 @@ -70838,8 +70132,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-81.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10398 @@ -70848,8 +70140,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-72.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10399 @@ -70857,8 +70147,6 @@ entities: - type: Transform pos: -17.5,-74.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10400 @@ -70866,8 +70154,6 @@ entities: - type: Transform pos: -11.5,-74.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10401 @@ -70876,8 +70162,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10402 @@ -70886,8 +70170,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10403 @@ -70896,8 +70178,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10404 @@ -70906,8 +70186,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10405 @@ -70916,8 +70194,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10406 @@ -70926,8 +70202,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10407 @@ -70935,8 +70209,6 @@ entities: - type: Transform pos: -1.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - uid: 10408 @@ -70944,8 +70216,6 @@ entities: - type: Transform pos: -5.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - proto: GasVentScrubber @@ -70956,8 +70226,6 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10410 @@ -70966,8 +70234,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10411 @@ -70976,8 +70242,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10412 @@ -70986,8 +70250,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10413 @@ -70996,8 +70258,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10414 @@ -71006,8 +70266,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10415 @@ -71016,8 +70274,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10416 @@ -71026,8 +70282,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10417 @@ -71036,8 +70290,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10418 @@ -71046,8 +70298,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10419 @@ -71056,8 +70306,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10420 @@ -71065,8 +70313,6 @@ entities: - type: Transform pos: -3.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10421 @@ -71075,8 +70321,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10422 @@ -71085,8 +70329,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10423 @@ -71094,8 +70336,6 @@ entities: - type: Transform pos: -33.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10424 @@ -71103,8 +70343,6 @@ entities: - type: Transform pos: -40.5,42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10425 @@ -71113,8 +70351,6 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10426 @@ -71123,8 +70359,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10427 @@ -71132,8 +70366,6 @@ entities: - type: Transform pos: -55.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10428 @@ -71142,8 +70374,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10429 @@ -71152,8 +70382,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10430 @@ -71161,8 +70389,6 @@ entities: - type: Transform pos: -7.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10431 @@ -71171,8 +70397,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10432 @@ -71181,8 +70405,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10433 @@ -71191,8 +70413,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10434 @@ -71200,8 +70420,6 @@ entities: - type: Transform pos: -11.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10435 @@ -71210,8 +70428,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10436 @@ -71220,8 +70436,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10437 @@ -71230,8 +70444,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10438 @@ -71240,8 +70452,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10439 @@ -71250,8 +70460,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10440 @@ -71260,8 +70468,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10441 @@ -71270,8 +70476,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10442 @@ -71279,8 +70483,6 @@ entities: - type: Transform pos: 26.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10443 @@ -71289,8 +70491,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10444 @@ -71299,8 +70499,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10445 @@ -71309,8 +70507,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10446 @@ -71318,8 +70514,6 @@ entities: - type: Transform pos: 20.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10447 @@ -71328,8 +70522,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10448 @@ -71337,8 +70529,6 @@ entities: - type: Transform pos: 32.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10449 @@ -71346,8 +70536,6 @@ entities: - type: Transform pos: 27.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10450 @@ -71356,8 +70544,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10451 @@ -71366,8 +70552,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10452 @@ -71376,8 +70560,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10453 @@ -71385,8 +70567,6 @@ entities: - type: Transform pos: 33.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10454 @@ -71395,8 +70575,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10455 @@ -71404,8 +70582,6 @@ entities: - type: Transform pos: 21.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10456 @@ -71414,8 +70590,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10457 @@ -71423,8 +70597,6 @@ entities: - type: Transform pos: 40.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10458 @@ -71432,8 +70604,6 @@ entities: - type: Transform pos: 32.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10459 @@ -71442,8 +70612,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10460 @@ -71452,8 +70620,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10461 @@ -71462,8 +70628,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10462 @@ -71472,8 +70636,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10463 @@ -71482,8 +70644,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10464 @@ -71492,8 +70652,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10465 @@ -71501,8 +70659,6 @@ entities: - type: Transform pos: 7.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10466 @@ -71511,8 +70667,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10467 @@ -71521,8 +70675,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10468 @@ -71530,8 +70682,6 @@ entities: - type: Transform pos: 21.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10469 @@ -71540,8 +70690,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10470 @@ -71549,8 +70697,6 @@ entities: - type: Transform pos: 13.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10471 @@ -71558,8 +70704,6 @@ entities: - type: Transform pos: 6.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10472 @@ -71568,8 +70712,6 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10473 @@ -71578,8 +70720,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10474 @@ -71588,8 +70728,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10475 @@ -71598,8 +70736,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10476 @@ -71607,8 +70743,6 @@ entities: - type: Transform pos: 13.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10477 @@ -71617,8 +70751,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10478 @@ -71627,8 +70759,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10479 @@ -71636,8 +70766,6 @@ entities: - type: Transform pos: 0.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10480 @@ -71646,8 +70774,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10481 @@ -71656,8 +70782,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10482 @@ -71665,8 +70789,6 @@ entities: - type: Transform pos: 0.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10483 @@ -71675,8 +70797,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10484 @@ -71684,8 +70804,6 @@ entities: - type: Transform pos: 20.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10485 @@ -71693,8 +70811,6 @@ entities: - type: Transform pos: -5.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10486 @@ -71703,8 +70819,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10487 @@ -71713,8 +70827,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10488 @@ -71723,8 +70835,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10489 @@ -71733,8 +70843,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10490 @@ -71742,8 +70850,6 @@ entities: - type: Transform pos: -14.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10491 @@ -71752,8 +70858,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10492 @@ -71762,8 +70866,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10493 @@ -71771,8 +70873,6 @@ entities: - type: Transform pos: -14.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10494 @@ -71781,8 +70881,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10495 @@ -71790,8 +70888,6 @@ entities: - type: Transform pos: -22.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10496 @@ -71800,8 +70896,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10497 @@ -71810,8 +70904,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10498 @@ -71820,8 +70912,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10499 @@ -71830,8 +70920,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10500 @@ -71840,8 +70928,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10501 @@ -71850,8 +70936,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10502 @@ -71860,8 +70944,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10503 @@ -71870,8 +70952,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10504 @@ -71880,8 +70960,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10505 @@ -71889,8 +70967,6 @@ entities: - type: Transform pos: -32.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10506 @@ -71898,8 +70974,6 @@ entities: - type: Transform pos: -36.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10507 @@ -71908,8 +70982,6 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10508 @@ -71917,8 +70989,6 @@ entities: - type: Transform pos: -42.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10509 @@ -71927,8 +70997,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10510 @@ -71937,8 +71005,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10511 @@ -71947,8 +71013,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10512 @@ -71957,8 +71021,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10513 @@ -71967,8 +71029,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10514 @@ -71977,8 +71037,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10515 @@ -71986,8 +71044,6 @@ entities: - type: Transform pos: -58.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10516 @@ -71996,8 +71052,6 @@ entities: rot: 3.141592653589793 rad pos: -55.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10517 @@ -72005,8 +71059,6 @@ entities: - type: Transform pos: -52.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10518 @@ -72014,8 +71066,6 @@ entities: - type: Transform pos: -47.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10519 @@ -72023,8 +71073,6 @@ entities: - type: Transform pos: -52.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10520 @@ -72033,8 +71081,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10521 @@ -72043,8 +71089,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10522 @@ -72053,8 +71097,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10523 @@ -72063,8 +71105,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10524 @@ -72073,8 +71113,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10525 @@ -72083,8 +71121,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10526 @@ -72093,8 +71129,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10527 @@ -72102,8 +71136,6 @@ entities: - type: Transform pos: -28.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10528 @@ -72112,8 +71144,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10529 @@ -72122,8 +71152,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10530 @@ -72132,8 +71160,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10531 @@ -72142,8 +71168,6 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10532 @@ -72152,8 +71176,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10533 @@ -72162,8 +71184,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10534 @@ -72171,8 +71191,6 @@ entities: - type: Transform pos: -42.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10535 @@ -72180,8 +71198,6 @@ entities: - type: Transform pos: -35.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10536 @@ -72190,8 +71206,6 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10537 @@ -72199,8 +71213,6 @@ entities: - type: Transform pos: -49.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10538 @@ -72209,8 +71221,6 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10539 @@ -72219,8 +71229,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10540 @@ -72228,8 +71236,6 @@ entities: - type: Transform pos: -16.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10541 @@ -72238,8 +71244,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10542 @@ -72247,8 +71251,6 @@ entities: - type: Transform pos: -24.5,40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10543 @@ -72256,8 +71258,6 @@ entities: - type: Transform pos: -26.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10544 @@ -72265,8 +71265,6 @@ entities: - type: Transform pos: -15.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10545 @@ -72274,8 +71272,6 @@ entities: - type: Transform pos: -19.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10546 @@ -72284,8 +71280,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10547 @@ -72293,8 +71287,6 @@ entities: - type: Transform pos: -8.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10548 @@ -72302,8 +71294,6 @@ entities: - type: Transform pos: 0.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10549 @@ -72311,8 +71301,6 @@ entities: - type: Transform pos: 3.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10550 @@ -72320,8 +71308,6 @@ entities: - type: Transform pos: -40.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10551 @@ -72329,8 +71315,6 @@ entities: - type: Transform pos: -7.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10552 @@ -72339,8 +71323,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10553 @@ -72349,8 +71331,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10554 @@ -72358,8 +71338,6 @@ entities: - type: Transform pos: -9.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10555 @@ -72368,8 +71346,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10556 @@ -72377,8 +71353,6 @@ entities: - type: Transform pos: -46.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10557 @@ -72387,8 +71361,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10558 @@ -72396,8 +71368,6 @@ entities: - type: Transform pos: -37.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10559 @@ -72406,8 +71376,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10561 @@ -72415,8 +71383,6 @@ entities: - type: Transform pos: -31.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10562 @@ -72425,8 +71391,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10563 @@ -72435,8 +71399,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10564 @@ -72445,8 +71407,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10565 @@ -72455,8 +71415,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10566 @@ -72465,8 +71423,6 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10567 @@ -72475,8 +71431,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10568 @@ -72485,8 +71439,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10569 @@ -72495,8 +71447,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10570 @@ -72505,8 +71455,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10571 @@ -72515,8 +71463,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10572 @@ -72524,8 +71470,6 @@ entities: - type: Transform pos: 17.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10573 @@ -72533,8 +71477,6 @@ entities: - type: Transform pos: -12.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10574 @@ -72543,8 +71485,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10575 @@ -72553,8 +71493,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10576 @@ -72563,8 +71501,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10577 @@ -72573,8 +71509,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10578 @@ -72583,8 +71517,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10579 @@ -72592,8 +71524,6 @@ entities: - type: Transform pos: 10.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10580 @@ -72602,8 +71532,6 @@ entities: rot: 3.141592653589793 rad pos: 31.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10581 @@ -72612,8 +71540,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10582 @@ -72622,8 +71548,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10583 @@ -72632,8 +71556,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10584 @@ -72642,8 +71564,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 10585 @@ -72652,8 +71572,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - proto: GasVolumePump @@ -72664,8 +71582,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10587 @@ -72676,8 +71592,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10588 @@ -72688,8 +71602,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - uid: 10589 @@ -72700,8 +71612,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - uid: 10590 @@ -72710,8 +71620,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - proto: Gauze @@ -78769,7 +77677,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -78788,7 +77695,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -79571,7 +78477,9 @@ entities: pos: 5.5,3.5 parent: 2 - type: RandomSpawner - chance: 1 + prototypes: [] + rarePrototypes: [] + gameRules: [] - uid: 11866 components: - type: Transform @@ -79621,6 +78529,9 @@ entities: parent: 2 - type: RandomSpawner chance: 0.33 + prototypes: [] + rarePrototypes: [] + gameRules: [] - uid: 11875 components: - type: Transform @@ -79628,6 +78539,9 @@ entities: parent: 2 - type: RandomSpawner chance: 0.33 + prototypes: [] + rarePrototypes: [] + gameRules: [] - uid: 11876 components: - type: Transform @@ -79691,6 +78605,13 @@ entities: - type: Transform pos: 1.5,9.5 parent: 2 +- proto: MaterialSilo + entities: + - uid: 17474 + components: + - type: Transform + pos: -13.5,-24.5 + parent: 2 - proto: Mattress entities: - uid: 11886 @@ -80039,8 +78960,6 @@ entities: - type: Transform pos: -0.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: NitrousOxideCanister entities: - uid: 11950 @@ -80048,15 +78967,11 @@ entities: - type: Transform pos: 1.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 11951 components: - type: Transform pos: -40.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: NoticeBoard entities: - uid: 12888 @@ -80095,7 +79010,7 @@ entities: - type: Transform pos: -39.5,-24.5 parent: 2 -- proto: Oracle +- proto: OracleSpawner entities: - uid: 11957 components: @@ -80137,29 +79052,21 @@ entities: - type: Transform pos: -36.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 11963 components: - type: Transform pos: 4.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 11964 components: - type: Transform pos: -28.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 11965 components: - type: Transform pos: -0.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: PaintingAmogusTriptych entities: - uid: 11966 @@ -80811,8 +79718,6 @@ entities: - type: Transform pos: 1.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 12075 @@ -84251,7 +83156,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -84270,7 +83174,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -84289,7 +83192,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -84308,7 +83210,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -84327,7 +83228,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -84346,7 +83246,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -90421,13 +89320,6 @@ entities: - type: Transform pos: 35.5,2.5 parent: 2 -- proto: SignDrones - entities: - - uid: 13686 - components: - - type: Transform - pos: -9.5,-24.5 - parent: 2 - proto: SignElectrical entities: - uid: 13687 @@ -90612,7 +89504,7 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-2.5 parent: 2 -- proto: SignHydro3 +- proto: SignHydro1 entities: - uid: 13719 components: @@ -90640,6 +89532,13 @@ entities: - type: Transform pos: 5.5,-1.5 parent: 2 +- proto: SignMaterials + entities: + - uid: 13686 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 2 - proto: SignMedical entities: - uid: 13723 @@ -91033,7 +89932,7 @@ entities: - type: Transform pos: -34.66471,32.488693 parent: 2 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 13785 components: @@ -91598,7 +90497,7 @@ entities: - type: Transform pos: -42.5,68.5 parent: 2 -- proto: SophicScribe +- proto: SophicScribeSpawner entities: - uid: 13887 components: @@ -91779,6 +90678,28 @@ entities: - type: Transform pos: 7.5,-7.5 parent: 2 +- proto: SpawnPointAdminAssistant + entities: + - uid: 17475 + components: + - type: Transform + pos: -12.5,34.5 + parent: 2 + - uid: 17476 + components: + - type: Transform + pos: -12.5,32.5 + parent: 2 + - uid: 17477 + components: + - type: Transform + pos: -7.5,32.5 + parent: 2 + - uid: 17478 + components: + - type: Transform + pos: -7.5,34.5 + parent: 2 - proto: SpawnPointAtmos entities: - uid: 13933 @@ -91838,6 +90759,13 @@ entities: - type: Transform pos: -12.5,-4.5 parent: 2 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 17480 + components: + - type: Transform + pos: -11.5,35.5 + parent: 2 - proto: SpawnPointBorg entities: - uid: 13944 @@ -92216,6 +91144,13 @@ entities: - type: Transform pos: -13.5,-8.5 parent: 2 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 17479 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 - proto: SpawnPointObserver entities: - uid: 14010 @@ -93117,43 +92052,31 @@ entities: - type: Transform pos: -3.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5714 components: - type: Transform pos: -3.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 14153 components: - type: Transform pos: 2.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 14154 components: - type: Transform pos: -54.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 14155 components: - type: Transform pos: -55.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 14156 components: - type: Transform pos: -56.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: SubstationBasic entities: - uid: 14158 @@ -108494,8 +107417,6 @@ entities: - type: Transform pos: 0.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: WeaponCapacitorRecharger entities: - uid: 16890 diff --git a/Resources/Maps/europa.yml b/Resources/Maps/europa.yml index 21403bfb316452..165934fe330e9a 100644 --- a/Resources/Maps/europa.yml +++ b/Resources/Maps/europa.yml @@ -36072,18 +36072,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,22.5 parent: 1 -- proto: chem_master - entities: - - uid: 5934 - components: - - type: Transform - pos: 20.5,41.5 - parent: 1 - - uid: 6006 - components: - - type: Transform - pos: 17.5,41.5 - parent: 1 - proto: ChemDispenser entities: - uid: 3759 @@ -36103,6 +36091,18 @@ entities: - type: Transform pos: 17.5,44.5 parent: 1 +- proto: ChemMaster + entities: + - uid: 5934 + components: + - type: Transform + pos: 20.5,41.5 + parent: 1 + - uid: 6006 + components: + - type: Transform + pos: 17.5,41.5 + parent: 1 - proto: ChessBoard entities: - uid: 1386 @@ -65764,7 +65764,7 @@ entities: pos: -11.5,11.5 parent: 1 - type: Door - secondsUntilStateChange: -26341.395 + secondsUntilStateChange: -26472.29 state: Opening - type: Occluder enabled: True @@ -67543,6 +67543,13 @@ entities: - type: Transform pos: -6.3909945,13.581151 parent: 1 +- proto: MaterialSilo + entities: + - uid: 2285 + components: + - type: Transform + pos: 21.5,27.5 + parent: 1 - proto: MaterialWoodPlank entities: - uid: 10301 @@ -68694,6 +68701,13 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,56.5 parent: 1 +- proto: PlayerStationAi + entities: + - uid: 1933 + components: + - type: Transform + pos: 26.5,16.5 + parent: 1 - proto: PlushieArachne entities: - uid: 16381 @@ -71486,11 +71500,6 @@ entities: - type: Transform pos: 12.5,15.5 parent: 1 - - uid: 1933 - components: - - type: Transform - pos: 26.5,16.5 - parent: 1 - uid: 2236 components: - type: Transform @@ -76486,13 +76495,6 @@ entities: pos: -25.5,6.5 parent: 1 - proto: SignAtmos - entities: - - uid: 5791 - components: - - type: Transform - pos: -13.5,-12.5 - parent: 1 -- proto: SignAtmosMinsky entities: - uid: 3217 components: @@ -76500,6 +76502,11 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-10.5 parent: 1 + - uid: 5791 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 1 - proto: SignBar entities: - uid: 470 @@ -77203,7 +77210,7 @@ entities: - type: Transform pos: -11.5,15.5 parent: 1 -- proto: SignHydro3 +- proto: SignHydro1 entities: - uid: 610 components: @@ -77422,7 +77429,7 @@ entities: rot: 3.141592653589793 rad pos: 8.5,15.5 parent: 1 -- proto: SignScience2 +- proto: SignScience entities: - uid: 1682 components: @@ -78358,6 +78365,28 @@ entities: - type: Transform pos: 19.5,44.5 parent: 1 +- proto: SpawnPointAdminAssistant + entities: + - uid: 8205 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1 + - uid: 16617 + components: + - type: Transform + pos: -9.5,7.5 + parent: 1 + - uid: 16618 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 16619 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 - proto: SpawnPointAtmos entities: - uid: 4537 @@ -78377,6 +78406,13 @@ entities: - type: Transform pos: -11.5,29.5 parent: 1 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 8169 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 - proto: SpawnPointBorg entities: - uid: 5751 @@ -78712,6 +78748,13 @@ entities: - type: Transform pos: -38.5,13.5 parent: 1 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 8168 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 - proto: SpawnPointObserver entities: - uid: 4455 @@ -81930,11 +81973,6 @@ entities: parent: 1 - proto: ToyAi entities: - - uid: 2285 - components: - - type: Transform - pos: 26.502884,16.651182 - parent: 1 - uid: 5360 components: - type: Transform diff --git a/Resources/Maps/gaxstation.yml b/Resources/Maps/gaxstation.yml index 5681fe3b18b911..94d5f4da2d8701 100644 --- a/Resources/Maps/gaxstation.yml +++ b/Resources/Maps/gaxstation.yml @@ -96043,6 +96043,13 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 +- proto: MaterialSilo + entities: + - uid: 20260 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 - proto: MechEquipmentGrabber entities: - uid: 12860 @@ -110221,6 +110228,23 @@ entities: - type: Transform pos: 13.5,26.5 parent: 2 +- proto: SpawnPointAdminAssistant + entities: + - uid: 20421 + components: + - type: Transform + pos: 85.5,35.5 + parent: 2 + - uid: 20422 + components: + - type: Transform + pos: 85.5,34.5 + parent: 2 + - uid: 20423 + components: + - type: Transform + pos: 85.5,33.5 + parent: 2 - proto: SpawnPointAtmos entities: - uid: 14771 @@ -110250,6 +110274,13 @@ entities: - type: Transform pos: 61.5,43.5 parent: 2 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 20352 + components: + - type: Transform + pos: 86.5,34.5 + parent: 2 - proto: SpawnPointBorg entities: - uid: 14776 @@ -110599,6 +110630,13 @@ entities: - type: Transform pos: 39.5,40.5 parent: 2 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 20420 + components: + - type: Transform + pos: 86.5,33.5 + parent: 2 - proto: SpawnPointParamedic entities: - uid: 14814 @@ -114991,11 +115029,6 @@ entities: - Middle: Off - proto: UnfinishedMachineFrame entities: - - uid: 20260 - components: - - type: Transform - pos: 31.5,-14.5 - parent: 2 - uid: 20261 components: - type: Transform @@ -130138,7 +130171,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -87228.59 + secondsUntilStateChange: -87350.95 state: Opening - uid: 18112 components: diff --git a/Resources/Maps/glacier.yml b/Resources/Maps/glacier.yml index c4756e4c258948..d1ed95ead202fd 100644 --- a/Resources/Maps/glacier.yml +++ b/Resources/Maps/glacier.yml @@ -74,8 +74,10 @@ entities: - type: Parallax parallax: Snow - type: Gravity - enabled: true - inherent: true + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + inherent: True + enabled: True - type: MapAtmosphere space: False mixture: @@ -104,8 +106,8 @@ entities: - type: Transform parent: 1 - type: PassiveDampening - linearDampening: 1 angularDampening: 1 + linearDampening: 1 - type: MapGrid chunks: -1,-1: @@ -441,988 +443,988 @@ entities: color: '#DE3A3ACF' id: Arrows decals: - 2478: 42.801052,27.020344 - 2479: 43.801548,27.030762 - 2480: 44.802044,27.030762 + 2472: 42.801052,27.020344 + 2473: 43.801548,27.030762 + 2474: 44.802044,27.030762 - node: angle: 4.71238898038469 rad color: '#DE3A3ACF' id: Arrows decals: - 2476: 45.201157,29.002563 - 2477: 43.17932,28.99215 + 2470: 45.201157,29.002563 + 2471: 43.17932,28.99215 - node: color: '#FFFFFF6C' id: Arrows decals: - 5773: -4,-11 + 5767: -4,-11 - node: color: '#FFFFFF7A' id: Arrows decals: - 4880: -3,-11 - 4881: -2,-11 + 4874: -3,-11 + 4875: -2,-11 - node: zIndex: 1 angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 2089: 28,26 - 2090: 29,26 - 2091: 30,26 + 2084: 28,26 + 2085: 29,26 + 2086: 30,26 - node: color: '#FFFFFFFF' id: Arrows decals: - 2437: 29.992805,27.266853 + 2431: 29.992805,27.266853 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 2438: 26.967182,26.833557 - 5888: 47,16 - 5889: 49,16 + 2432: 26.967182,26.833557 + 5882: 47,16 + 5883: 49,16 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Arrows decals: - 2312: 11.499357,12.994037 - 2313: 27,5 - 3580: 48.213615,5.000246 - 3581: 48.218826,3.9982872 - 3582: 48.218826,2.9951496 - 4750: -50,-12 - 4751: -51,-12 + 2306: 11.499357,12.994037 + 2307: 27,5 + 3574: 48.213615,5.000246 + 3575: 48.218826,3.9982872 + 3576: 48.218826,2.9951496 + 4744: -50,-12 + 4745: -51,-12 - node: angle: 1.5707963267948966 rad color: '#DE3A3ACF' id: ArrowsGreyscale decals: - 2487: 45.789375,27.016865 - 2488: 41.771595,27.027283 + 2481: 45.789375,27.016865 + 2482: 41.771595,27.027283 - node: angle: 4.71238898038469 rad color: '#DE3A3ACF' id: ArrowsGreyscale decals: - 2489: 42.16762,28.996033 - 2490: 46.196106,28.996033 + 2483: 42.16762,28.996033 + 2484: 46.196106,28.996033 - node: angle: 3.141592653589793 rad color: '#DE3A3AD8' id: ArrowsGreyscale decals: - 2541: 50.96727,25.814297 - 2542: 57.967346,25.814297 + 2535: 50.96727,25.814297 + 2536: 57.967346,25.814297 - node: angle: 3.141592653589793 rad color: '#DE3A3AE6' id: ArrowsGreyscale decals: - 2543: 50.963417,26.20792 - 2544: 57.961735,26.20792 - 2545: 50.960808,26.59542 - 2546: 57.958538,26.59542 + 2537: 50.963417,26.20792 + 2538: 57.961735,26.20792 + 2539: 50.960808,26.59542 + 2540: 57.958538,26.59542 - node: angle: 3.9269908169872414 rad color: '#DE3A3AE6' id: ArrowsGreyscale decals: - 2517: 47.333954,28.671577 - 2547: 57.95541,26.998547 - 2548: 57.677147,27.274994 - 2549: 57.39576,27.543747 - 2550: 50.95753,27.006245 - 2551: 50.682396,27.274994 - 2552: 50.403828,27.54892 - 2558: 57.21902,27.720795 - 2559: 47.61683,28.398838 - 2560: 47.88884,28.126934 - 2563: 47.977776,28.039436 + 2511: 47.333954,28.671577 + 2541: 57.95541,26.998547 + 2542: 57.677147,27.274994 + 2543: 57.39576,27.543747 + 2544: 50.95753,27.006245 + 2545: 50.682396,27.274994 + 2546: 50.403828,27.54892 + 2552: 57.21902,27.720795 + 2553: 47.61683,28.398838 + 2554: 47.88884,28.126934 + 2557: 47.977776,28.039436 - node: angle: 4.71238898038469 rad color: '#DE3A3AE6' id: ArrowsGreyscale decals: - 2518: 46.58358,28.994492 - 2519: 46.990032,28.994492 - 2520: 54.94725,27.984077 - 2521: 54.540802,27.984077 - 2522: 54.13435,27.984077 - 2523: 53.707985,27.984077 - 2524: 53.311954,27.984077 - 2525: 52.897194,27.984077 - 2526: 52.48032,27.984077 - 2527: 52.065075,27.984077 - 2528: 51.639763,27.984077 - 2529: 51.203247,27.984077 - 2530: 50.77595,27.984077 - 2531: 50.369728,27.984077 - 2532: 49.95182,27.984077 - 2533: 49.537476,27.984077 - 2534: 49.141445,27.984077 - 2553: 55.346222,27.983292 - 2554: 55.755802,27.98642 - 2555: 56.149494,27.983292 - 2556: 56.53118,27.983292 - 2557: 56.915745,27.983292 - 2561: 48.737526,27.98631 - 2562: 48.487404,27.989437 - 2564: 48.36234,27.989437 + 2512: 46.58358,28.994492 + 2513: 46.990032,28.994492 + 2514: 54.94725,27.984077 + 2515: 54.540802,27.984077 + 2516: 54.13435,27.984077 + 2517: 53.707985,27.984077 + 2518: 53.311954,27.984077 + 2519: 52.897194,27.984077 + 2520: 52.48032,27.984077 + 2521: 52.065075,27.984077 + 2522: 51.639763,27.984077 + 2523: 51.203247,27.984077 + 2524: 50.77595,27.984077 + 2525: 50.369728,27.984077 + 2526: 49.95182,27.984077 + 2527: 49.537476,27.984077 + 2528: 49.141445,27.984077 + 2547: 55.346222,27.983292 + 2548: 55.755802,27.98642 + 2549: 56.149494,27.983292 + 2550: 56.53118,27.983292 + 2551: 56.915745,27.983292 + 2555: 48.737526,27.98631 + 2556: 48.487404,27.989437 + 2558: 48.36234,27.989437 - node: color: '#FFFFFFFF' id: ArrowsGreyscale decals: - 5883: 49,7 - 5884: 48,7 - 5885: 47,7 + 5877: 49,7 + 5878: 48,7 + 5879: 47,7 - node: color: '#FFFFFFFF' id: Basalt1 decals: - 2178: 39,34 - 2179: -6,-29 - 4902: -51.384583,6.8291245 - 4903: -51.134583,6.7822495 - 4904: -51.009583,6.8134995 - 4905: -50.884583,6.8447495 - 5124: -8.039601,-33.988808 + 2173: 39,34 + 2174: -6,-29 + 4896: -51.384583,6.8291245 + 4897: -51.134583,6.7822495 + 4898: -51.009583,6.8134995 + 4899: -50.884583,6.8447495 + 5118: -8.039601,-33.988808 - node: zIndex: 1 color: '#FFFFFFFF' id: Basalt1 decals: - 2122: -35,39 - 2123: -35,30 - 2130: 25,-9 - 2155: 58,-33 - 2169: 16,-32 + 2117: -35,39 + 2118: -35,30 + 2125: 25,-9 + 2150: 58,-33 + 2164: 16,-32 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Basalt1 decals: - 4906: -50.900208,6.7666245 + 4900: -50.900208,6.7666245 - node: color: '#FFFFFF15' id: Basalt2 decals: - 5013: -52.85344,1.6933317 + 5007: -52.85344,1.6933317 - node: color: '#FFFFFF28' id: Basalt2 decals: - 4919: -43.087807,-0.82527924 - 4920: -44.39965,0.09138727 - 4921: -47.144707,0.90542793 + 4913: -43.087807,-0.82527924 + 4914: -44.39965,0.09138727 + 4915: -47.144707,0.90542793 - node: color: '#FFFFFF33' id: Basalt2 decals: - 5006: -48.462406,-0.71114683 + 5000: -48.462406,-0.71114683 - node: color: '#FFFFFFFF' id: Basalt2 decals: - 2642: -26,11 - 2669: -29,16 - 3964: -54,-4 - 5121: -17.12024,-35.113808 - 5125: -6.1802263,-33.973183 + 2636: -26,11 + 2663: -29,16 + 3958: -54,-4 + 5115: -17.12024,-35.113808 + 5119: -6.1802263,-33.973183 - node: zIndex: 1 color: '#FFFFFFFF' id: Basalt2 decals: - 2121: -31,39 - 2128: 17,-17 - 2131: 28,-6 - 2134: 46,-1 - 2149: 55,-38 - 2167: 23,-40 - 2170: 20,-25 + 2116: -31,39 + 2123: 17,-17 + 2126: 28,-6 + 2129: 46,-1 + 2144: 55,-38 + 2162: 23,-40 + 2165: 20,-25 - node: color: '#FFFFFF09' id: Basalt3 decals: - 5252: -48.98841,-4.0531874 + 5246: -48.98841,-4.0531874 - node: color: '#FFFFFF15' id: Basalt3 decals: - 5009: -50.251453,-3.7628045 - 5010: -50.251453,-3.7784295 + 5003: -50.251453,-3.7628045 + 5004: -50.251453,-3.7784295 - node: color: '#FFFFFFFF' id: Basalt3 decals: - 2647: -32,10 - 5120: -19.93274,-32.738808 + 2641: -32,10 + 5114: -19.93274,-32.738808 - node: zIndex: 1 color: '#FFFFFFFF' id: Basalt3 decals: - 2127: 11,-12 - 2142: 70,-32 - 2143: 59,-20 - 2153: 59,-47 - 2154: 58,-24 + 2122: 11,-12 + 2137: 70,-32 + 2138: 59,-20 + 2148: 59,-47 + 2149: 58,-24 - node: color: '#FFFFFF28' id: Basalt4 decals: - 4922: -49.13545,0.678576 - 4923: -49.848656,-1.307303 - 4924: -53.105335,0.7531047 - 4925: -53.23751,3.2846308 - 4926: -51.101612,5.3000317 - 4927: -48.895813,6.199521 - 4928: -51.668278,7.881562 - 4929: -51.82437,-5.0627775 - 4930: -48.188362,-5.4007406 - 4931: -44.726257,-6.2106113 + 4916: -49.13545,0.678576 + 4917: -49.848656,-1.307303 + 4918: -53.105335,0.7531047 + 4919: -53.23751,3.2846308 + 4920: -51.101612,5.3000317 + 4921: -48.895813,6.199521 + 4922: -51.668278,7.881562 + 4923: -51.82437,-5.0627775 + 4924: -48.188362,-5.4007406 + 4925: -44.726257,-6.2106113 - node: color: '#FFFFFF34' id: Basalt4 decals: - 4887: -22,-6 - 4888: -21,-6 + 4881: -22,-6 + 4882: -21,-6 - node: color: '#FFFFFF5D' id: Basalt4 decals: - 4889: -16,-10 + 4883: -16,-10 - node: zIndex: 1 color: '#FFFFFFFF' id: Basalt4 decals: - 2119: -32,34 + 2114: -32,34 - node: color: '#FFFFFF11' id: Basalt5 decals: - 5768: -8.139847,-10.173541 - 5769: -8.139847,-10.173541 + 5762: -8.139847,-10.173541 + 5763: -8.139847,-10.173541 - node: color: '#FFFFFF1E' id: Basalt5 decals: - 5262: -54.267406,-2.7114277 - 5263: -52.1701,-3.8208027 - 5267: -50.31168,4.9749107 - 5268: -52.12418,5.3186607 - 5269: -52.858555,2.622692 - 5270: -50.65543,0.3570671 + 5256: -54.267406,-2.7114277 + 5257: -52.1701,-3.8208027 + 5261: -50.31168,4.9749107 + 5262: -52.12418,5.3186607 + 5263: -52.858555,2.622692 + 5264: -50.65543,0.3570671 - node: color: '#FFFFFF33' id: Basalt5 decals: - 5004: -52.35595,-3.7732134 + 4998: -52.35595,-3.7732134 - node: color: '#FFFFFFFF' id: Basalt5 decals: - 2180: 37,17 - 2347: 57,-14 - 2361: 61,-26 - 2430: 27,-12 - 2618: -16,6 - 2641: -26,16 + 2175: 37,17 + 2341: 57,-14 + 2355: 61,-26 + 2424: 27,-12 + 2612: -16,6 + 2635: -26,16 - node: zIndex: 1 color: '#FFFFFFFF' id: Basalt5 decals: - 2125: -5,-19 - 2126: 14,-12 - 2132: 29,-2 - 2133: 52,-3 - 2140: 77,-29 - 2141: 64,-32 - 2151: 63,-43 - 2164: 43,3 - 2165: 14,-38 - 2168: 28,-40 + 2120: -5,-19 + 2121: 14,-12 + 2127: 29,-2 + 2128: 52,-3 + 2135: 77,-29 + 2136: 64,-32 + 2146: 63,-43 + 2159: 43,3 + 2160: 14,-38 + 2163: 28,-40 - node: color: '#6F39317C' id: Basalt6 decals: - 5230: -43.84706,7.0012035 - 5231: -42.47206,6.3762035 - 5232: -42.44081,6.4387035 - 5233: -42.34706,6.7824535 + 5224: -43.84706,7.0012035 + 5225: -42.47206,6.3762035 + 5226: -42.44081,6.4387035 + 5227: -42.34706,6.7824535 - node: color: '#FFFFFF1E' id: Basalt6 decals: - 5256: -53.01131,-1.0551777 - 5257: -53.214436,-1.0551777 - 5264: -52.1701,-4.199877 - 5265: -51.68668,4.9905357 + 5250: -53.01131,-1.0551777 + 5251: -53.214436,-1.0551777 + 5258: -52.1701,-4.199877 + 5259: -51.68668,4.9905357 - node: color: '#FFFFFFFF' id: Basalt6 decals: - 2643: -33,11 - 2644: -31,18 - 2645: -29,28 - 2648: -28,10 - 3965: -43,-2 - 5119: -18.52649,-34.457558 - 5126: -8.164601,-36.145058 - 5127: -5.7114763,-33.098183 - 5128: -14.867726,-34.863808 + 2637: -33,11 + 2638: -31,18 + 2639: -29,28 + 2642: -28,10 + 3959: -43,-2 + 5113: -18.52649,-34.457558 + 5120: -8.164601,-36.145058 + 5121: -5.7114763,-33.098183 + 5122: -14.867726,-34.863808 - node: zIndex: 1 color: '#FFFFFFFF' id: Basalt6 decals: - 2118: -38,22 - 2150: 59,-42 - 2174: 24,-46 - 2175: 21,-42 + 2113: -38,22 + 2145: 59,-42 + 2169: 24,-46 + 2170: 21,-42 - node: color: '#6F39317C' id: Basalt7 decals: - 5234: -42.987686,7.8605785 + 5228: -42.987686,7.8605785 - node: color: '#FFFFFF11' id: Basalt7 decals: - 5765: -8.778736,-10.055485 - 5766: -8.785681,-10.055485 - 5767: -8.785681,-10.055485 + 5759: -8.778736,-10.055485 + 5760: -8.785681,-10.055485 + 5761: -8.785681,-10.055485 - node: color: '#FFFFFF1E' id: Basalt7 decals: - 5258: -51.370686,-0.6020527 - 5259: -52.85506,-0.9301777 - 5260: -53.861156,-2.7583027 - 5261: -54.329906,-2.4614277 + 5252: -51.370686,-0.6020527 + 5253: -52.85506,-0.9301777 + 5254: -53.861156,-2.7583027 + 5255: -54.329906,-2.4614277 - node: color: '#FFFFFFFF' id: Basalt7 decals: - 2348: 60,-17 - 2646: -26,23 - 2683: -36,26 - 5123: -10.042113,-37.082558 - 5129: -15.992726,-33.098183 - 5130: -19.617725,-34.957558 + 2342: 60,-17 + 2640: -26,23 + 2677: -36,26 + 5117: -10.042113,-37.082558 + 5123: -15.992726,-33.098183 + 5124: -19.617725,-34.957558 - node: zIndex: 1 color: '#FFFFFFFF' id: Basalt7 decals: - 2137: 42,-1 - 2138: 77,-23 - 2152: 61,-50 - 2166: 18,-41 - 2176: 26,-44 + 2132: 42,-1 + 2133: 77,-23 + 2147: 61,-50 + 2161: 18,-41 + 2171: 26,-44 - node: color: '#FFFFFF15' id: Basalt8 decals: - 5007: -47.26708,0.20594549 - 5008: -47.26708,0.19032049 + 5001: -47.26708,0.20594549 + 5002: -47.26708,0.19032049 - node: color: '#FFFFFFFF' id: Basalt8 decals: - 2362: 63,-28 - 5122: -12.995238,-37.988808 + 2356: 63,-28 + 5116: -12.995238,-37.988808 - node: zIndex: 1 color: '#FFFFFFFF' id: Basalt8 decals: - 2124: -8,-18 - 2129: 23,-15 - 2135: 53,-6 - 2139: 75,-25 - 2145: 54,-23 - 2171: 20,-20 - 2172: 13,-34 - 2173: 19,-46 + 2119: -8,-18 + 2124: 23,-15 + 2130: 53,-6 + 2134: 75,-25 + 2140: 54,-23 + 2166: 20,-20 + 2167: 13,-34 + 2168: 19,-46 - node: color: '#FFFFFF15' id: Basalt9 decals: - 5011: -52.869064,2.2714567 - 5012: -53.00969,1.7870817 + 5005: -52.869064,2.2714567 + 5006: -53.00969,1.7870817 - node: color: '#FFFFFF1E' id: Basalt9 decals: - 5253: -48.86825,-4.2094374 - 5254: -49.3995,-2.3656874 - 5255: -51.401936,-1.6333027 - 5266: -52.796055,3.2249107 + 5247: -48.86825,-4.2094374 + 5248: -49.3995,-2.3656874 + 5249: -51.401936,-1.6333027 + 5260: -52.796055,3.2249107 - node: color: '#FFFFFF21' id: Basalt9 decals: - 4934: -51.016304,-3.606382 + 4928: -51.016304,-3.606382 - node: color: '#FFFFFF28' id: Basalt9 decals: - 4932: -48.76727,-5.8329706 - 4933: -52.011673,-3.1110115 + 4926: -48.76727,-5.8329706 + 4927: -52.011673,-3.1110115 - node: color: '#FFFFFF33' id: Basalt9 decals: - 5005: -51.996574,-4.7732134 + 4999: -51.996574,-4.7732134 - node: color: '#FFFFFF35' id: Basalt9 decals: - 5772: -6.6676245,-9.999941 + 5766: -6.6676245,-9.999941 - node: color: '#FFFFFFAE' id: Basalt9 decals: - 5229: -43.69081,8.813704 + 5223: -43.69081,8.813704 - node: zIndex: 1 color: '#FFFFFFFF' id: Basalt9 decals: - 2120: -31,33 - 2136: 44,5 - 2144: 59,-29 + 2115: -31,33 + 2131: 44,5 + 2139: 59,-29 - node: color: '#FFFFFF84' id: Bot decals: - 5798: -5,-10 - 5799: -5,-9 + 5792: -5,-10 + 5793: -5,-9 - node: zIndex: 1 angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 2088: 27,26 + 2083: 27,26 - node: color: '#FFFFFFFF' id: Bot decals: - 2303: 12,13 - 2304: 26,5 - 2358: -20,32 - 2359: -21,32 - 2360: -22,32 - 2668: -26,15 - 2685: -23,18 - 5157: -52,-12 + 2297: 12,13 + 2298: 26,5 + 2352: -20,32 + 2353: -21,32 + 2354: -22,32 + 2662: -26,15 + 2679: -23,18 + 5151: -52,-12 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Bot decals: - 2395: 40,7 + 2389: 40,7 - node: color: '#DE3A3A96' id: BotGreyscale decals: - 2475: 44,29 + 2469: 44,29 - node: color: '#FFFFFFFF' id: Box decals: - 5877: 46,5 - 5878: 47,5 - 5879: 47,4 - 5880: 46,4 - 5881: 46,3 - 5882: 47,3 + 5871: 46,5 + 5872: 47,5 + 5873: 47,4 + 5874: 46,4 + 5875: 46,3 + 5876: 47,3 - node: color: '#0083FFFF' id: BoxGreyscale decals: - 2344: -13,-19 + 2338: -13,-19 - node: color: '#FF0000FF' id: BoxGreyscale decals: - 2345: -16,-22 + 2339: -16,-22 - node: zIndex: 1 color: '#FFFFFF42' id: BoxGreyscale decals: - 2105: -15,24 - 2106: -14,24 - 2107: -16,24 + 2100: -15,24 + 2101: -14,24 + 2102: -16,24 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 1433: 29,-13 - 2429: 28,-12 + 1428: 29,-13 + 2423: 28,-12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 1429: 32,-12 - 1430: 31,-13 + 1424: 32,-12 + 1425: 31,-13 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 1434: 28,-10 + 1429: 28,-10 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 2109: 29,-9 + 2104: 29,-9 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 1431: 32,-10 - 1432: 31,-9 + 1426: 32,-10 + 1427: 31,-9 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 1441: 28,-13 - 1442: 29,-14 + 1436: 28,-13 + 1437: 29,-14 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 1437: 31,-14 - 1964: 32,-13 + 1432: 31,-14 + 1959: 32,-13 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 1438: 28,-9 + 1433: 28,-9 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 2111: 29,-8 + 2106: 29,-8 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 1439: 31,-8 - 1440: 32,-9 + 1434: 31,-8 + 1435: 32,-9 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 1436: 30,-14 - 2428: 27,-12 + 1431: 30,-14 + 2422: 27,-12 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 1435: 30,-8 - 2426: 27,-10 + 1430: 30,-8 + 2420: 27,-10 - node: color: '#00000030' id: BrickTileSteelLineN decals: - 4873: -1,-12 - 4874: -2,-12 - 4875: -3,-12 + 4867: -1,-12 + 4868: -2,-12 + 4869: -3,-12 - node: color: '#2223282B' id: BrickTileSteelLineN decals: - 5840: -2,-12 - 5841: -3,-12 - 5842: -4,-12 - 5843: -5,-12 - 5844: -5,-12 - 5845: -4,-12 - 5846: -3,-12 - 5847: -5,-12 - 5848: -5,-12 - 5849: -1,-12 - 5850: -1,-12 - 5851: -2,-12 - 5852: -2,-12 - 5853: -3,-12 - 5854: -3,-12 - 5855: -4,-12 - 5856: -4,-12 - 5857: -4,-12 + 5834: -2,-12 + 5835: -3,-12 + 5836: -4,-12 + 5837: -5,-12 + 5838: -5,-12 + 5839: -4,-12 + 5840: -3,-12 + 5841: -5,-12 + 5842: -5,-12 + 5843: -1,-12 + 5844: -1,-12 + 5845: -2,-12 + 5846: -2,-12 + 5847: -3,-12 + 5848: -3,-12 + 5849: -4,-12 + 5850: -4,-12 + 5851: -4,-12 - node: color: '#CD753BF5' id: BrickTileWhiteBox decals: - 1929: 19,0 + 1924: 19,0 - node: color: '#CD753BF5' id: BrickTileWhiteCornerNe decals: - 1918: 26,0 - 1919: 21,1 + 1913: 26,0 + 1914: 21,1 - node: color: '#DE3A3AC9' id: BrickTileWhiteCornerNe decals: - 5970: -2,21 + 5964: -2,21 - node: color: '#CD753BF5' id: BrickTileWhiteCornerNw decals: - 1917: 20,1 + 1912: 20,1 - node: color: '#DE3A3AC9' id: BrickTileWhiteCornerNw decals: - 5969: -1,21 + 5963: -1,21 - node: color: '#CD753BF5' id: BrickTileWhiteCornerSe decals: - 1911: 21,-5 - 1914: 23,-4 - 1915: 24,-3 - 1916: 26,-2 + 1906: 21,-5 + 1909: 23,-4 + 1910: 24,-3 + 1911: 26,-2 - node: color: '#DE3A3AC9' id: BrickTileWhiteCornerSe decals: - 5972: -2,22 + 5966: -2,22 - node: color: '#CD753BF5' id: BrickTileWhiteCornerSw decals: - 1912: 20,-5 + 1907: 20,-5 - node: color: '#DE3A3AC9' id: BrickTileWhiteCornerSw decals: - 5971: -1,22 + 5965: -1,22 - node: color: '#CD753BF5' id: BrickTileWhiteInnerNe decals: - 1935: 21,0 + 1930: 21,0 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 2392: 30,32 + 2386: 30,32 - node: color: '#CD753BF5' id: BrickTileWhiteInnerSe decals: - 1932: 24,-2 - 1933: 23,-3 - 1934: 21,-4 + 1927: 24,-2 + 1928: 23,-3 + 1929: 21,-4 - node: color: '#474F52FF' id: BrickTileWhiteInnerSw decals: - 3990: -43,-2 + 3984: -43,-2 - node: color: '#CD753BF5' id: BrickTileWhiteLineE decals: - 1930: 26,-1 - 1937: 22,-2 - 1938: 21,-2 + 1925: 26,-1 + 1932: 22,-2 + 1933: 21,-2 - node: color: '#282C31FF' id: BrickTileWhiteLineN decals: - 4848: -3,-12 - 4849: -2,-12 - 4850: -1,-12 + 4842: -3,-12 + 4843: -2,-12 + 4844: -1,-12 - node: color: '#3E3E3D3F' id: BrickTileWhiteLineN decals: - 4854: -1,-12 - 4855: -2,-12 - 4856: -3,-12 - 4857: -3,-12 - 4858: -2,-12 - 4859: -1,-12 + 4848: -1,-12 + 4849: -2,-12 + 4850: -3,-12 + 4851: -3,-12 + 4852: -2,-12 + 4853: -1,-12 - node: color: '#50434149' id: BrickTileWhiteLineN decals: - 4851: -3,-12 - 4852: -2,-12 - 4853: -1,-12 + 4845: -3,-12 + 4846: -2,-12 + 4847: -1,-12 - node: color: '#79150034' id: BrickTileWhiteLineN decals: - 3678: 29,-18 - 3679: 30,-18 - 3680: 31,-18 - 3681: 32,-18 - 3682: 33,-18 + 3672: 29,-18 + 3673: 30,-18 + 3674: 31,-18 + 3675: 32,-18 + 3676: 33,-18 - node: color: '#CD753BF5' id: BrickTileWhiteLineN decals: - 1920: 25,0 - 1921: 24,0 - 1922: 23,0 - 1923: 22,0 + 1915: 25,0 + 1916: 24,0 + 1917: 23,0 + 1918: 22,0 - node: color: '#474F52FF' id: BrickTileWhiteLineS decals: - 3989: -43,-2 + 3983: -43,-2 - node: color: '#79150034' id: BrickTileWhiteLineS decals: - 3673: 29,-18 - 3674: 30,-18 - 3675: 31,-18 - 3676: 32,-18 - 3677: 33,-18 + 3667: 29,-18 + 3668: 30,-18 + 3669: 31,-18 + 3670: 32,-18 + 3671: 33,-18 - node: color: '#CD753BF5' id: BrickTileWhiteLineS decals: - 1913: 22,-4 - 1931: 25,-2 + 1908: 22,-4 + 1926: 25,-2 - node: color: '#0C2637FF' id: BrickTileWhiteLineW decals: - 3985: -43,-2 + 3979: -43,-2 - node: color: '#0C465DFF' id: BrickTileWhiteLineW decals: - 3986: -43,-2 + 3980: -43,-2 - node: color: '#121C25FF' id: BrickTileWhiteLineW decals: - 3983: -43,-2 + 3977: -43,-2 - node: color: '#25333BFF' id: BrickTileWhiteLineW decals: - 3982: -43,-2 + 3976: -43,-2 - node: color: '#312637FF' id: BrickTileWhiteLineW decals: - 3984: -43,-2 + 3978: -43,-2 - node: color: '#474F52FF' id: BrickTileWhiteLineW decals: - 3987: -43,-2 + 3981: -43,-2 - node: color: '#CD753BF5' id: BrickTileWhiteLineW decals: - 1924: 20,-4 - 1925: 20,-3 - 1926: 20,-2 - 1927: 20,-1 - 1928: 20,0 - 1936: 23,-2 - 1939: 22,-2 + 1919: 20,-4 + 1920: 20,-3 + 1921: 20,-2 + 1922: 20,-1 + 1923: 20,0 + 1931: 23,-2 + 1934: 22,-2 - node: color: '#FFFFFFFF' id: BushCTwo decals: - 2181: -17,44 - 2507: -35.99511,45.06213 + 2176: -17,44 + 2501: -35.99511,45.06213 - node: color: '#FFFFFFEC' id: Busha3 decals: - 5081: -14.720105,-27.340508 + 5075: -14.720105,-27.340508 - node: color: '#FFFFFFEC' id: Bushc1 decals: - 5082: -13.98627,-27.927578 + 5076: -13.98627,-27.927578 - node: color: '#FFFFFFEC' id: Bushc3 decals: - 5083: -13.876195,-27.01028 + 5077: -13.876195,-27.01028 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 2508: -36.56831,45.15588 + 2502: -36.56831,45.15588 - node: color: '#FFFFFFEC' id: Bushg2 decals: - 5080: -12.895457,-27.829731 + 5074: -12.895457,-27.829731 - node: color: '#FFFFFFFF' id: Bushh3 decals: - 2509: -37.13109,45.135048 + 2503: -37.13109,45.135048 - node: color: '#DCFFD960' id: Bushi2 decals: - 1419: -17.471615,41.879406 - 1420: -17.45599,42.36378 - 1421: -17.440365,42.98878 - 1422: -17.440365,43.566906 - 1423: -17.51849,44.160656 - 1424: -16.784115,44.160656 - 1425: -16.73724,43.64503 - 1426: -16.70599,43.11378 - 1427: -16.752865,42.42628 - 1428: -16.784115,41.77003 + 1414: -17.471615,41.879406 + 1415: -17.45599,42.36378 + 1416: -17.440365,42.98878 + 1417: -17.440365,43.566906 + 1418: -17.51849,44.160656 + 1419: -16.784115,44.160656 + 1420: -16.73724,43.64503 + 1421: -16.70599,43.11378 + 1422: -16.752865,42.42628 + 1423: -16.784115,41.77003 - node: color: '#FFFFFFFF' id: Bushk3 decals: - 2182: -17,42 + 2177: -17,42 - node: color: '#FFFFFF7A' id: Caution decals: - 4885: -2,-12 - 4886: -3,-12 + 4879: -2,-12 + 4880: -3,-12 - node: color: '#FFFFFF87' id: Caution decals: - 5775: -4,-12 + 5769: -4,-12 - node: color: '#52B4E996' id: CheckerNESW decals: - 1484: 3,0 - 1485: 4,0 - 1486: 5,0 - 1487: 6,0 - 1488: 7,0 - 1489: 8,0 - 1490: 9,0 - 1499: 2,-1 + 1479: 3,0 + 1480: 4,0 + 1481: 5,0 + 1482: 6,0 + 1483: 7,0 + 1484: 8,0 + 1485: 9,0 + 1494: 2,-1 - node: color: '#DE3A3AC9' id: CheckerNESW decals: - 5973: -3,19 - 5974: -2,19 - 5975: -1,19 - 5976: 0,19 + 5967: -3,19 + 5968: -2,19 + 5969: -1,19 + 5970: 0,19 - node: color: '#52B4E996' id: CheckerNWSE decals: - 1491: 9,3 - 1492: 8,3 - 1493: 7,3 - 1494: 6,3 - 1495: 5,3 - 1496: 4,3 - 1497: 3,3 - 1498: 2,3 + 1486: 9,3 + 1487: 8,3 + 1488: 7,3 + 1489: 6,3 + 1490: 5,3 + 1491: 4,3 + 1492: 3,3 + 1493: 2,3 - node: color: '#D4D4D428' id: Damaged decals: - 3811: -44.313168,-6.8127093 + 3805: -44.313168,-6.8127093 - node: color: '#FFFFFF31' id: Damaged decals: - 3795: -39.77158,3.441761 - 3796: -39.95504,3.4967985 - 3797: -39.95504,3.6986036 - 3798: -39.38632,2.5244656 - 3799: -39.129475,1.827322 - 3800: -38.450676,2.5244656 - 3801: -37.973682,2.90973 - 3802: -37.918644,3.8086786 - 3803: -38.285564,3.441761 - 3804: -38.74421,2.6345415 - 3805: -37.12905,3.1948223 - 3806: -37.36755,3.87362 - 3807: -42.210865,-5.515338 - 3808: -40.04605,-5.350225 - 3809: -40.743195,-4.6897726 - 3810: -39.807552,-6.3042116 + 3789: -39.77158,3.441761 + 3790: -39.95504,3.4967985 + 3791: -39.95504,3.6986036 + 3792: -39.38632,2.5244656 + 3793: -39.129475,1.827322 + 3794: -38.450676,2.5244656 + 3795: -37.973682,2.90973 + 3796: -37.918644,3.8086786 + 3797: -38.285564,3.441761 + 3798: -38.74421,2.6345415 + 3799: -37.12905,3.1948223 + 3800: -37.36755,3.87362 + 3801: -42.210865,-5.515338 + 3802: -40.04605,-5.350225 + 3803: -40.743195,-4.6897726 + 3804: -39.807552,-6.3042116 - node: color: '#FFFFFF34' id: Damaged decals: - 3952: -54,1 - 3953: -53,4 - 3954: -52,3 - 3955: -52,2 - 3956: -52,2 + 3946: -54,1 + 3947: -53,4 + 3948: -52,3 + 3949: -52,2 + 3950: -52,2 - node: color: '#FFFFFF49' id: Damaged decals: - 4739: -52.442825,6.6293564 - 4740: -52.953243,5.9395084 - 4741: -52.68241,6.3665915 + 4733: -52.442825,6.6293564 + 4734: -52.953243,5.9395084 + 4735: -52.68241,6.3665915 - node: color: '#FFFFFF6C' id: Damaged decals: - 3762: -44.693043,6.1454487 - 3763: -44.83981,6.3655996 - 3764: -44.729733,6.3839455 - 3765: -44.986576,7.0260515 - 3766: -44.986576,7.0260515 - 3767: -44.949883,6.769209 - 3768: -44.949883,6.5123663 - 3769: -44.766426,6.200486 - 3770: -44.638004,6.4940205 - 3771: -44.638004,6.5857506 - 3772: -44.693043,6.7325172 - 3773: -44.693043,6.769209 - 3774: -44.674694,6.9343224 - 3775: -44.674694,6.9159765 - 3776: -44.61966,6.3839455 - 3777: -44.61966,6.1637945 - 3778: -44.61966,6.090411 - 3779: -44.693043,6.6958256 - 3780: -44.674694,6.7325172 - 3781: -44.61966,6.4940205 - 3782: -44.60131,6.2922163 - 3783: -44.4362,5.5400343 - 3784: -44.4362,5.5033426 - 3785: -44.638004,6.237178 - 3786: -43.94086,5.998682 - 3787: -43.867477,5.686801 - 3788: -43.62898,5.448305 - 3789: -40.65723,5.113962 - 3790: -40.71227,4.728698 - 3791: -40.327003,4.8754654 - 3792: -39.776627,4.7653904 - 3793: -39.59317,5.0956163 - 3794: -40.87738,4.0132084 + 3756: -44.693043,6.1454487 + 3757: -44.83981,6.3655996 + 3758: -44.729733,6.3839455 + 3759: -44.986576,7.0260515 + 3760: -44.986576,7.0260515 + 3761: -44.949883,6.769209 + 3762: -44.949883,6.5123663 + 3763: -44.766426,6.200486 + 3764: -44.638004,6.4940205 + 3765: -44.638004,6.5857506 + 3766: -44.693043,6.7325172 + 3767: -44.693043,6.769209 + 3768: -44.674694,6.9343224 + 3769: -44.674694,6.9159765 + 3770: -44.61966,6.3839455 + 3771: -44.61966,6.1637945 + 3772: -44.61966,6.090411 + 3773: -44.693043,6.6958256 + 3774: -44.674694,6.7325172 + 3775: -44.61966,6.4940205 + 3776: -44.60131,6.2922163 + 3777: -44.4362,5.5400343 + 3778: -44.4362,5.5033426 + 3779: -44.638004,6.237178 + 3780: -43.94086,5.998682 + 3781: -43.867477,5.686801 + 3782: -43.62898,5.448305 + 3783: -40.65723,5.113962 + 3784: -40.71227,4.728698 + 3785: -40.327003,4.8754654 + 3786: -39.776627,4.7653904 + 3787: -39.59317,5.0956163 + 3788: -40.87738,4.0132084 - node: color: '#FFFFFF7A' id: Damaged decals: - 5244: -49,35 + 5238: -49,35 - node: color: '#FFFFFFFF' id: Delivery @@ -1441,21 +1443,21 @@ entities: 146: -67,-16 147: -67,-15 148: -67,-14 - 5940: 69,4 + 5934: 69,4 - node: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 3571: 47,8 - 3572: 47,9 - 3573: 47,10 - 3574: 48,10 - 3575: 49,10 - 3576: 49,9 - 3577: 49,8 - 3578: 48,8 - 3579: 48,9 - 5941: 70,4 + 3565: 47,8 + 3566: 47,9 + 3567: 47,10 + 3568: 48,10 + 3569: 49,10 + 3570: 49,9 + 3571: 49,8 + 3572: 48,8 + 3573: 48,9 + 5935: 70,4 - node: color: '#2B69D4C0' id: Dirt @@ -1579,68 +1581,68 @@ entities: color: '#5E7C16FF' id: Dirt decals: - 1450: 26,3 - 1451: 27,3 - 1452: 27,4 - 1453: 26,4 - 1454: 26,5 - 1455: 27,5 - 1456: 27,6 - 1457: 28,6 - 1458: 26,6 - 1459: 26,7 - 1460: 25,7 - 1461: 25,3 - 1462: 25,2 - 1463: 25,1 - 1464: 26,1 - 1465: 26,2 - 1466: 27,2 - 1467: 27,7 - 1468: 26,8 - 1469: 27,8 - 1470: 28,8 - 1471: 28,7 - 1472: 29,7 - 1473: 29,8 - 1474: 30,8 - 1475: 29,2 - 1476: 30,2 - 1477: 31,2 - 1478: 31,1 - 1479: 30,1 - 1480: 29,1 - 1481: 29,0 - 1482: 30,0 - 1483: 31,0 + 1445: 26,3 + 1446: 27,3 + 1447: 27,4 + 1448: 26,4 + 1449: 26,5 + 1450: 27,5 + 1451: 27,6 + 1452: 28,6 + 1453: 26,6 + 1454: 26,7 + 1455: 25,7 + 1456: 25,3 + 1457: 25,2 + 1458: 25,1 + 1459: 26,1 + 1460: 26,2 + 1461: 27,2 + 1462: 27,7 + 1463: 26,8 + 1464: 27,8 + 1465: 28,8 + 1466: 28,7 + 1467: 29,7 + 1468: 29,8 + 1469: 30,8 + 1470: 29,2 + 1471: 30,2 + 1472: 31,2 + 1473: 31,1 + 1474: 30,1 + 1475: 29,1 + 1476: 29,0 + 1477: 30,0 + 1478: 31,0 - node: color: '#5E7C5FFF' id: Dirt decals: - 2315: 29,9 - 2316: 28,9 - 2317: 27,9 - 2318: 26,10 - 2319: 26,11 - 2320: 27,10 - 2321: 27,11 - 2322: 28,10 - 2323: 28,11 - 2324: 29,11 - 2325: 29,10 - 2326: 30,10 - 2327: 30,11 - 2328: 30,12 - 2329: 29,12 - 2330: 28,12 - 2331: 27,12 - 2332: 26,12 + 2309: 29,9 + 2310: 28,9 + 2311: 27,9 + 2312: 26,10 + 2313: 26,11 + 2314: 27,10 + 2315: 27,11 + 2316: 28,10 + 2317: 28,11 + 2318: 29,11 + 2319: 29,10 + 2320: 30,10 + 2321: 30,11 + 2322: 30,12 + 2323: 29,12 + 2324: 28,12 + 2325: 27,12 + 2326: 26,12 - node: cleanable: True color: '#80544DE2' id: Dirt decals: - 2629: -26,11 + 2623: -26,11 - node: color: '#B1B5C0AB' id: Dirt @@ -1803,437 +1805,437 @@ entities: color: '#F38BAAFF' id: Dirt decals: - 1545: -34,43 - 1546: -35,43 - 1547: -35,42 - 1548: -34,42 - 1549: -34,41 - 1550: -35,41 - 1551: -36,41 - 1552: -37,41 - 1553: -38,41 - 1554: -38,42 - 1555: -37,42 - 1556: -36,42 - 1557: -36,43 - 1558: -37,43 - 1559: -37,44 - 1560: -36,44 - 1561: -34,44 - 1562: -33,44 - 1563: -33,43 - 1564: -33,42 - 1565: -33,41 - 1566: -32,41 - 1567: -32,42 - 1568: -32,43 - 1569: -31,41 - 1570: -30,41 - 1571: -30,42 - 1572: -31,42 - 1573: -31,43 - 1574: -30,43 - 1575: -32,44 - 1576: -31,44 - 1577: -30,44 - 1578: -30,45 - 1579: -31,45 - 1580: -31,46 - 1581: -30,46 + 1540: -34,43 + 1541: -35,43 + 1542: -35,42 + 1543: -34,42 + 1544: -34,41 + 1545: -35,41 + 1546: -36,41 + 1547: -37,41 + 1548: -38,41 + 1549: -38,42 + 1550: -37,42 + 1551: -36,42 + 1552: -36,43 + 1553: -37,43 + 1554: -37,44 + 1555: -36,44 + 1556: -34,44 + 1557: -33,44 + 1558: -33,43 + 1559: -33,42 + 1560: -33,41 + 1561: -32,41 + 1562: -32,42 + 1563: -32,43 + 1564: -31,41 + 1565: -30,41 + 1566: -30,42 + 1567: -31,42 + 1568: -31,43 + 1569: -30,43 + 1570: -32,44 + 1571: -31,44 + 1572: -30,44 + 1573: -30,45 + 1574: -31,45 + 1575: -31,46 + 1576: -30,46 - node: cleanable: True color: '#FF8587CF' id: Dirt decals: - 2510: -35,44 + 2504: -35,44 - node: color: '#FFFFFF29' id: Dirt decals: - 2184: -20,42 - 2185: -19,43 - 2186: -18,42 + 2179: -20,42 + 2180: -19,43 + 2181: -18,42 - node: color: '#FFFFFF40' id: Dirt decals: - 2187: -19,44 + 2182: -19,44 - node: zIndex: 1 color: '#FFFFFF42' id: Dirt decals: - 2108: -15,24 + 2103: -15,24 - node: angle: 4.71238898038469 rad color: '#FFFFFF50' id: Dirt decals: - 4084: -27,47 - 4085: -26,47 - 4086: -27,46 - 4087: -43,6 - 4088: -42,6 + 4078: -27,47 + 4079: -26,47 + 4080: -27,46 + 4081: -43,6 + 4082: -42,6 - node: color: '#FFFFFF7A' id: Dirt decals: - 5235: -51,23 - 5236: -51,23 - 5237: -55,27 - 5238: -55,27 - 5239: -51,31 - 5240: -51,31 - 5241: -51,31 - 5242: -51,35 - 5243: -51,35 + 5229: -51,23 + 5230: -51,23 + 5231: -55,27 + 5232: -55,27 + 5233: -51,31 + 5234: -51,31 + 5235: -51,31 + 5236: -51,35 + 5237: -51,35 - node: zIndex: 1 color: '#FFFFFF85' id: Dirt decals: - 2100: -18,27 + 2095: -18,27 - node: zIndex: 1 color: '#FFFFFF95' id: Dirt decals: - 2101: -18,24 + 2096: -18,24 - node: zIndex: 1 color: '#FFFFFFDC' id: Dirt decals: - 2099: -19,25 + 2094: -19,25 - node: color: '#FFFFFFE3' id: Dirt decals: - 5245: -51,35 - 5246: -51,35 + 5239: -51,35 + 5240: -51,35 - node: color: '#FFFFFFEC' id: Dirt decals: - 5077: -14.020673,-28.049881 - 5078: -14.546588,-27.475044 - 5079: -13.678216,-27.42612 + 5071: -14.020673,-28.049881 + 5072: -14.546588,-27.475044 + 5073: -13.678216,-27.42612 - node: color: '#FFFFFFFF' id: Dirt decals: - 3760: -43.959206,8.071768 - 3761: -44.931538,7.961693 - 3818: -49.02495,9.058941 - 3819: -48.492916,8.61864 - 3820: -48.401188,7.738036 - 3821: -47.53893,8.141646 - 3822: -47.777428,7.7013445 - 3823: -46.768402,7.627961 - 3824: -47.31878,7.774729 - 3825: -54.125107,4.747656 - 3826: -48.783947,2.5302687 - 3827: -50.196583,1.8698158 - 3962: -43,-2 - 5131: -18,-34 - 5132: -20,-33 - 5133: -20,-32 - 5134: -19,-33 - 5135: -16,-33 - 5136: -19,-34 - 5137: -20,-35 - 5138: -19,-35 - 5139: -18,-32 - 5140: -19,-32 - 5141: -18,-31 - 5142: -10,-34 - 5143: -11,-35 - 5144: -12,-36 - 5158: -33,-21 - 5159: -33,-21 - 5160: -35,-21 - 5161: -37,-21 - 5162: -37,-20 - 5163: -37,-21 - 5164: -35,-21 - 5165: -28,-21 - 5166: -28,-21 - 5167: -25,-21 - 5168: -25,-38 - 5169: -25,-38 - 5170: -27,-40 - 5171: -27,-40 - 5172: -25,-38 - 5173: -20,-38 - 5174: -20,-41 + 3754: -43.959206,8.071768 + 3755: -44.931538,7.961693 + 3812: -49.02495,9.058941 + 3813: -48.492916,8.61864 + 3814: -48.401188,7.738036 + 3815: -47.53893,8.141646 + 3816: -47.777428,7.7013445 + 3817: -46.768402,7.627961 + 3818: -47.31878,7.774729 + 3819: -54.125107,4.747656 + 3820: -48.783947,2.5302687 + 3821: -50.196583,1.8698158 + 3956: -43,-2 + 5125: -18,-34 + 5126: -20,-33 + 5127: -20,-32 + 5128: -19,-33 + 5129: -16,-33 + 5130: -19,-34 + 5131: -20,-35 + 5132: -19,-35 + 5133: -18,-32 + 5134: -19,-32 + 5135: -18,-31 + 5136: -10,-34 + 5137: -11,-35 + 5138: -12,-36 + 5152: -33,-21 + 5153: -33,-21 + 5154: -35,-21 + 5155: -37,-21 + 5156: -37,-20 + 5157: -37,-21 + 5158: -35,-21 + 5159: -28,-21 + 5160: -28,-21 + 5161: -25,-21 + 5162: -25,-38 + 5163: -25,-38 + 5164: -27,-40 + 5165: -27,-40 + 5166: -25,-38 + 5167: -20,-38 + 5168: -20,-41 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Dirt decals: - 4078: -27,45 - 4079: -28,47 - 4080: -26,48 - 4081: -27,48 - 4082: -25,48 - 4089: -43,6 + 4072: -27,45 + 4073: -28,47 + 4074: -26,48 + 4075: -27,48 + 4076: -25,48 + 4083: -43,6 - node: color: '#1D1D215D' id: DirtHeavy decals: - 5344: -16,10 - 5345: -17,11 - 5346: -18,11 - 5347: -19,10 - 5348: -20,10 - 5349: -20,11 - 5350: -20,9 - 5351: -21,9 - 5352: -21,10 - 5353: -22,11 - 5354: -17,12 - 5355: -16,12 - 5356: -20,11 - 5357: -19,13 - 5358: -20,13 - 5359: -19,15 - 5360: -19,14 + 5338: -16,10 + 5339: -17,11 + 5340: -18,11 + 5341: -19,10 + 5342: -20,10 + 5343: -20,11 + 5344: -20,9 + 5345: -21,9 + 5346: -21,10 + 5347: -22,11 + 5348: -17,12 + 5349: -16,12 + 5350: -20,11 + 5351: -19,13 + 5352: -20,13 + 5353: -19,15 + 5354: -19,14 + 5355: -18,14 + 5356: -17,14 + 5357: -16,15 + 5358: -16,14 + 5359: -17,14 + 5360: -18,15 5361: -18,14 - 5362: -17,14 + 5362: -19,14 5363: -16,15 5364: -16,14 - 5365: -17,14 - 5366: -18,15 - 5367: -18,14 - 5368: -19,14 - 5369: -16,15 - 5370: -16,14 - 5371: -19,15 - 5372: -19,14 - 5373: -20,14 - 5374: -19,18 - 5375: -19,17 - 5376: -20,17 - 5377: -20,18 - 5378: -20,17 - 5379: -19,18 - 5380: -15,17 - 5381: -15,18 - 5382: -15,17 - 5383: -17,17 - 5384: -18,17 - 5385: -14,18 - 5386: -13,18 - 5387: -12,17 - 5388: -11,17 - 5389: -15,18 - 5390: -14,18 - 5391: -12,17 - 5392: -12,16 - 5393: -12,16 - 5394: -11,18 - 5395: -11,16 - 5396: -11,15 - 5397: -13,17 - 5398: -10,19 - 5399: -9,19 - 5400: -8,18 - 5401: -8,18 - 5402: -9,18 - 5403: -9,19 - 5404: -9,20 - 5405: -10,21 - 5406: -10,21 - 5407: -9,19 - 5408: -5,21 - 5409: -6,20 - 5410: -7,19 - 5411: -7,19 - 5412: -7,21 - 5413: -7,21 - 5414: -8,19 - 5415: -6,21 - 5416: -6,21 - 5417: -5,22 - 5418: -6,21 - 5419: -7,20 - 5420: -9,24 - 5421: -7,24 - 5422: -6,24 - 5423: -5,26 - 5424: -6,26 - 5425: -8,26 + 5365: -19,15 + 5366: -19,14 + 5367: -20,14 + 5368: -19,18 + 5369: -19,17 + 5370: -20,17 + 5371: -20,18 + 5372: -20,17 + 5373: -19,18 + 5374: -15,17 + 5375: -15,18 + 5376: -15,17 + 5377: -17,17 + 5378: -18,17 + 5379: -14,18 + 5380: -13,18 + 5381: -12,17 + 5382: -11,17 + 5383: -15,18 + 5384: -14,18 + 5385: -12,17 + 5386: -12,16 + 5387: -12,16 + 5388: -11,18 + 5389: -11,16 + 5390: -11,15 + 5391: -13,17 + 5392: -10,19 + 5393: -9,19 + 5394: -8,18 + 5395: -8,18 + 5396: -9,18 + 5397: -9,19 + 5398: -9,20 + 5399: -10,21 + 5400: -10,21 + 5401: -9,19 + 5402: -5,21 + 5403: -6,20 + 5404: -7,19 + 5405: -7,19 + 5406: -7,21 + 5407: -7,21 + 5408: -8,19 + 5409: -6,21 + 5410: -6,21 + 5411: -5,22 + 5412: -6,21 + 5413: -7,20 + 5414: -9,24 + 5415: -7,24 + 5416: -6,24 + 5417: -5,26 + 5418: -6,26 + 5419: -8,26 + 5420: -9,28 + 5421: -9,26 + 5422: -6,27 + 5423: -6,26 + 5424: -9,27 + 5425: -9,27 5426: -9,28 - 5427: -9,26 - 5428: -6,27 - 5429: -6,26 - 5430: -9,27 - 5431: -9,27 - 5432: -9,28 - 5433: -9,28 - 5434: -7,29 - 5435: -6,29 - 5436: -5,26 + 5427: -9,28 + 5428: -7,29 + 5429: -6,29 + 5430: -5,26 + 5431: -3,27 + 5432: -3,25 + 5433: -2,26 + 5434: -2,27 + 5435: -4,26 + 5436: -4,27 5437: -3,27 - 5438: -3,25 - 5439: -2,26 - 5440: -2,27 - 5441: -4,26 - 5442: -4,27 - 5443: -3,27 - 5444: -5,27 - 5445: -3,29 - 5446: -6,28 - 5447: -6,30 - 5448: -8,29 - 5449: -7,30 - 5450: -9,29 - 5451: -10,28 - 5452: -11,30 - 5453: -11,31 + 5438: -5,27 + 5439: -3,29 + 5440: -6,28 + 5441: -6,30 + 5442: -8,29 + 5443: -7,30 + 5444: -9,29 + 5445: -10,28 + 5446: -11,30 + 5447: -11,31 + 5448: -11,33 + 5449: -10,34 + 5450: -10,31 + 5451: -10,30 + 5452: -13,31 + 5453: -13,30 5454: -11,33 5455: -10,34 - 5456: -10,31 - 5457: -10,30 - 5458: -13,31 - 5459: -13,30 - 5460: -11,33 - 5461: -10,34 - 5462: -10,34 - 5463: -11,32 - 5464: -8,33 - 5465: -9,34 - 5466: -9,33 - 5467: -9,32 - 5468: -14,30 - 5469: -13,31 - 5470: -14,30 - 5471: -16,30 - 5472: -16,31 - 5473: -17,30 - 5474: -19,31 - 5475: -18,30 - 5476: -19,30 - 5477: -20,31 - 5478: -20,30 - 5479: -23,32 - 5480: -23,31 - 5481: -25,32 - 5482: -25,32 - 5483: -26,33 - 5484: -25,32 - 5485: -24,33 - 5486: -24,32 - 5487: -24,36 - 5488: -23,35 - 5489: -25,37 - 5490: -25,38 - 5491: -24,38 - 5492: -23,36 - 5493: -24,37 - 5494: -21,34 - 5495: -20,35 - 5496: -20,35 - 5497: -18,37 - 5498: -19,38 - 5499: -20,38 - 5500: -20,36 - 5501: -20,36 - 5502: -19,38 - 5503: -18,35 - 5504: -17,35 - 5505: -17,33 - 5506: -18,33 - 5507: -17,34 - 5508: -18,34 - 5509: -19,30 - 5510: -19,31 - 5511: -16,30 - 5512: -16,30 - 5513: -18,31 - 5514: -19,31 - 5515: -23,22 - 5516: -23,23 - 5517: -23,23 - 5518: -23,23 - 5519: -23,23 - 5520: -24,22 - 5521: -23,20 - 5522: -22,20 - 5523: -20,22 - 5524: -21,20 - 5525: -23,20 - 5526: -23,20 - 5527: -21,20 - 5528: -19,19 - 5529: -19,19 - 5530: -19,18 - 5531: -24,23 - 5532: -24,23 - 5533: -24,23 - 5534: -22,23 - 5535: -22,22 - 5536: -22,22 + 5456: -10,34 + 5457: -11,32 + 5458: -8,33 + 5459: -9,34 + 5460: -9,33 + 5461: -9,32 + 5462: -14,30 + 5463: -13,31 + 5464: -14,30 + 5465: -16,30 + 5466: -16,31 + 5467: -17,30 + 5468: -19,31 + 5469: -18,30 + 5470: -19,30 + 5471: -20,31 + 5472: -20,30 + 5473: -23,32 + 5474: -23,31 + 5475: -25,32 + 5476: -25,32 + 5477: -26,33 + 5478: -25,32 + 5479: -24,33 + 5480: -24,32 + 5481: -24,36 + 5482: -23,35 + 5483: -25,37 + 5484: -25,38 + 5485: -24,38 + 5486: -23,36 + 5487: -24,37 + 5488: -21,34 + 5489: -20,35 + 5490: -20,35 + 5491: -18,37 + 5492: -19,38 + 5493: -20,38 + 5494: -20,36 + 5495: -20,36 + 5496: -19,38 + 5497: -18,35 + 5498: -17,35 + 5499: -17,33 + 5500: -18,33 + 5501: -17,34 + 5502: -18,34 + 5503: -19,30 + 5504: -19,31 + 5505: -16,30 + 5506: -16,30 + 5507: -18,31 + 5508: -19,31 + 5509: -23,22 + 5510: -23,23 + 5511: -23,23 + 5512: -23,23 + 5513: -23,23 + 5514: -24,22 + 5515: -23,20 + 5516: -22,20 + 5517: -20,22 + 5518: -21,20 + 5519: -23,20 + 5520: -23,20 + 5521: -21,20 + 5522: -19,19 + 5523: -19,19 + 5524: -19,18 + 5525: -24,23 + 5526: -24,23 + 5527: -24,23 + 5528: -22,23 + 5529: -22,22 + 5530: -22,22 + 5531: -10,25 + 5532: -10,26 + 5533: -10,27 + 5534: -10,28 + 5535: -10,27 + 5536: -10,25 5537: -10,25 - 5538: -10,26 - 5539: -10,27 - 5540: -10,28 - 5541: -10,27 - 5542: -10,25 - 5543: -10,25 - 5544: -4,27 - 5545: -3,29 - 5546: -2,27 - 5547: -1,26 - 5548: -3,26 - 5549: -6,29 - 5550: -6,29 - 5551: -6,29 - 5552: -6,27 - 5553: -3,29 - 5554: -1,26 + 5538: -4,27 + 5539: -3,29 + 5540: -2,27 + 5541: -1,26 + 5542: -3,26 + 5543: -6,29 + 5544: -6,29 + 5545: -6,29 + 5546: -6,27 + 5547: -3,29 + 5548: -1,26 - node: color: '#1D1D21A1' id: DirtHeavy decals: - 5335: -22,10 - 5336: -19,11 - 5337: -16,11 - 5338: -18,10 - 5339: -21,11 - 5340: -22,11 + 5329: -22,10 + 5330: -19,11 + 5331: -16,11 + 5332: -18,10 + 5333: -21,11 + 5334: -22,11 - node: color: '#1D1D21FF' id: DirtHeavy decals: - 5334: -22,9 + 5328: -22,9 - node: angle: 4.71238898038469 rad color: '#474F52FF' id: DirtHeavy decals: - 3992: -43,-2 + 3986: -43,-2 - node: color: '#4F4C4BCA' id: DirtHeavy decals: - 4864: -3,-12 - 4867: -3,-13 - 4868: -2,-11 - 4869: -1,-11 - 4870: -3,-11 + 4858: -3,-12 + 4861: -3,-13 + 4862: -2,-11 + 4863: -1,-11 + 4864: -3,-11 - node: angle: 3.141592653589793 rad color: '#4F4C4BCA' id: DirtHeavy decals: - 4866: -1,-12 + 4860: -1,-12 - node: angle: 4.71238898038469 rad color: '#4F4C4BCA' id: DirtHeavy decals: - 4865: -2,-12 + 4859: -2,-12 - node: color: '#88566079' id: DirtHeavy @@ -2274,58 +2276,58 @@ entities: color: '#9D9D97FF' id: DirtHeavy decals: - 3959: -43,-2 - 3960: -43,-2 + 3953: -43,-2 + 3954: -43,-2 - node: color: '#FFFFFF44' id: DirtHeavy decals: - 5824: -9,-6 - 5825: -9,-5 + 5818: -9,-6 + 5819: -9,-5 - node: angle: 1.5707963267948966 rad color: '#FFFFFF44' id: DirtHeavy decals: - 5832: -7,-7 - 5833: -8,-7 - 5834: -8,-7 - 5835: -9,-6 - 5836: -8,-4 + 5826: -7,-7 + 5827: -8,-7 + 5828: -8,-7 + 5829: -9,-6 + 5830: -8,-4 - node: angle: 3.141592653589793 rad color: '#FFFFFF44' id: DirtHeavy decals: - 5826: -9,-6 - 5827: -9,-6 - 5828: -9,-5 - 5829: -9,-5 - 5830: -8,-7 - 5831: -7,-7 + 5820: -9,-6 + 5821: -9,-6 + 5822: -9,-5 + 5823: -9,-5 + 5824: -8,-7 + 5825: -7,-7 - node: angle: 1.5707963267948966 rad color: '#FFFFFF7F' id: DirtHeavy decals: - 5837: -4,-12 - 5838: -4,-12 + 5831: -4,-12 + 5832: -4,-12 - node: color: '#FFFFFF84' id: DirtHeavy decals: - 5822: -9,-4 - 5823: -8,-5 + 5816: -9,-4 + 5817: -8,-5 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 3961: -43,-2 - 4756: -54,-12 - 4757: -55,-13 - 4758: -55,-10 - 5820: -6,-5 - 5821: -7,-5 + 3955: -43,-2 + 4750: -54,-12 + 4751: -55,-13 + 4752: -55,-10 + 5814: -6,-5 + 5815: -7,-5 - node: cleanable: True color: '#FFFFFFFF' @@ -2361,70 +2363,70 @@ entities: 1074: 18,35 1078: -2,41 1079: -8,40 - 2410: 21,13 - 2412: -1,27 - 2421: 37,-17 - 2443: 33,25 - 2625: -30,28 - 2626: -28,10 - 2632: -32,10 - 2650: -23,22 - 2654: -18,30 - 2657: -19,39 - 2658: -18,39 - 2663: -11,15 - 2672: -26,27 - 2673: -27,25 - 2675: -24,27 - 2676: -24,25 - 2680: -26,25 - 2691: 73,-33 - 2696: 66,-10 - 2822: -20,-15 - 3168: 50,-12 - 3501: -21,-18 - 3502: -19,-17 - 3515: -3,11 - 3516: -23,-10 - 3520: -24,15 - 3533: 9,14 - 3728: 12,4 + 2404: 21,13 + 2406: -1,27 + 2415: 37,-17 + 2437: 33,25 + 2619: -30,28 + 2620: -28,10 + 2626: -32,10 + 2644: -23,22 + 2648: -18,30 + 2651: -19,39 + 2652: -18,39 + 2657: -11,15 + 2666: -26,27 + 2667: -27,25 + 2669: -24,27 + 2670: -24,25 + 2674: -26,25 + 2685: 73,-33 + 2690: 66,-10 + 2816: -20,-15 + 3162: 50,-12 + 3495: -21,-18 + 3496: -19,-17 + 3509: -3,11 + 3510: -23,-10 + 3514: -24,15 + 3527: 9,14 + 3722: 12,4 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 4759: -50,-13 + 4753: -50,-13 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 4076: -28,45 - 4077: -27,45 - 4760: -51,-13 + 4070: -28,45 + 4071: -27,45 + 4754: -51,-13 - node: color: '#1D1D21A1' id: DirtLight decals: - 5341: -20,10 - 5342: -21,9 + 5335: -20,10 + 5336: -21,9 - node: color: '#4F4C4BCA' id: DirtLight decals: - 4871: -3,-11 - 4872: -2,-12 + 4865: -3,-11 + 4866: -2,-12 - node: color: '#4F6D5766' id: DirtLight decals: - 2457: 37,32 + 2451: 37,32 - node: color: '#FFFFFFFF' id: DirtLight decals: - 2456: 44,32 + 2450: 44,32 - node: cleanable: True color: '#FFFFFFFF' @@ -2496,136 +2498,136 @@ entities: 1138: 44,8 1139: 39,8 1230: 41,9 - 2308: 53,-12 - 2309: 56,-13 - 2407: 12,-2 - 2408: 1,0 - 2409: 7,2 - 2415: 0,-1 - 2418: -2,-7 - 2419: -6,-4 - 2422: 36,-17 - 2423: 44,-21 - 2424: 76,-12 - 2439: 33,23 - 2440: 35,25 - 2511: -18,15 - 2512: -33,23 - 2623: -31,24 - 2624: -30,27 - 2627: -27,10 - 2628: -26,11 - 2630: -28,11 - 2631: -32,11 - 2633: -29,21 - 2634: -32,20 - 2635: -33,18 - 2636: -27,18 - 2637: -27,22 - 2638: -27,21 - 2639: -29,28 - 2649: -22,21 - 2653: -20,22 - 2655: -18,31 - 2656: -19,39 - 2659: -24,36 - 2660: -26,32 - 2661: -26,33 - 2662: -11,16 - 2664: -21,10 - 2665: -19,11 - 2666: -23,15 - 2670: -26,26 - 2671: -27,27 - 2677: -25,25 - 2678: -25,27 - 2681: -29,13 - 2682: -28,12 - 2693: 73,-32 - 2694: 68,-9 - 2695: 82,-12 - 2823: -13,-15 - 3496: -11,-19 - 3497: -16,-19 - 3498: -19,-18 - 3503: -15,-23 - 3504: -17,-22 - 3505: -25,-4 - 3506: -20,0 - 3507: -18,-1 - 3512: 20,4 - 3513: 7,21 - 3514: -4,11 - 3517: 37,9 - 3518: 41,14 - 3519: 34,31 - 3536: 14,17 - 3537: 44,27 - 3538: 44,29 - 3539: -7,15 - 3540: 7,-8 - 3584: 48,2 - 3585: 47,6 - 3586: 35,-26 - 3588: 34,-32 - 3589: 39,-28 - 3590: 50,-24 - 3645: 30,-25 - 3646: 23,-25 - 3683: 29,-18 - 3684: 32,-18 - 3729: 13,4 - 3730: 11,-3 - 3731: 17,-2 - 3734: 18,4 - 3735: 11,2 - 3736: 15,3 - 3737: 13,1 - 3738: 15,0 + 2302: 53,-12 + 2303: 56,-13 + 2401: 12,-2 + 2402: 1,0 + 2403: 7,2 + 2409: 0,-1 + 2412: -2,-7 + 2413: -6,-4 + 2416: 36,-17 + 2417: 44,-21 + 2418: 76,-12 + 2433: 33,23 + 2434: 35,25 + 2505: -18,15 + 2506: -33,23 + 2617: -31,24 + 2618: -30,27 + 2621: -27,10 + 2622: -26,11 + 2624: -28,11 + 2625: -32,11 + 2627: -29,21 + 2628: -32,20 + 2629: -33,18 + 2630: -27,18 + 2631: -27,22 + 2632: -27,21 + 2633: -29,28 + 2643: -22,21 + 2647: -20,22 + 2649: -18,31 + 2650: -19,39 + 2653: -24,36 + 2654: -26,32 + 2655: -26,33 + 2656: -11,16 + 2658: -21,10 + 2659: -19,11 + 2660: -23,15 + 2664: -26,26 + 2665: -27,27 + 2671: -25,25 + 2672: -25,27 + 2675: -29,13 + 2676: -28,12 + 2687: 73,-32 + 2688: 68,-9 + 2689: 82,-12 + 2817: -13,-15 + 3490: -11,-19 + 3491: -16,-19 + 3492: -19,-18 + 3497: -15,-23 + 3498: -17,-22 + 3499: -25,-4 + 3500: -20,0 + 3501: -18,-1 + 3506: 20,4 + 3507: 7,21 + 3508: -4,11 + 3511: 37,9 + 3512: 41,14 + 3513: 34,31 + 3530: 14,17 + 3531: 44,27 + 3532: 44,29 + 3533: -7,15 + 3534: 7,-8 + 3578: 48,2 + 3579: 47,6 + 3580: 35,-26 + 3582: 34,-32 + 3583: 39,-28 + 3584: 50,-24 + 3639: 30,-25 + 3640: 23,-25 + 3677: 29,-18 + 3678: 32,-18 + 3723: 13,4 + 3724: 11,-3 + 3725: 17,-2 + 3728: 18,4 + 3729: 11,2 + 3730: 15,3 + 3731: 13,1 + 3732: 15,0 - node: zIndex: 1 color: '#FFFFFFFF' id: DirtLight decals: - 2092: 28,27 + 2087: 28,27 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtLight decals: - 3167: 59,-12 + 3161: 59,-12 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: DirtLight decals: - 4764: -50,-10 - 4765: -51,-10 - 4766: -51,-10 - 4767: -52,-10 - 4768: -53,-10 - 4769: -55,-12 - 4770: -55,-12 - 4771: -55,-12 - 4772: -55,-12 + 4758: -50,-10 + 4759: -51,-10 + 4760: -51,-10 + 4761: -52,-10 + 4762: -53,-10 + 4763: -55,-12 + 4764: -55,-12 + 4765: -55,-12 + 4766: -55,-12 - node: color: '#1D1D21A1' id: DirtMedium decals: - 5343: -17,10 + 5337: -17,10 - node: color: '#474F52FF' id: DirtMedium decals: - 3988: -43,-2 - 3991: -43,-2 + 3982: -43,-2 + 3985: -43,-2 - node: angle: 1.5707963267948966 rad color: '#FFFFFF7F' id: DirtMedium decals: - 5839: -5,-12 + 5833: -5,-12 - node: cleanable: True color: '#FFFFFFFF' @@ -2671,51 +2673,51 @@ entities: 1054: 16,20 1140: 54,8 1231: 48,9 - 2310: 54,-13 - 2311: 49,-13 - 2411: 21,11 - 2413: -1,26 - 2414: 13,37 - 2416: 1,-1 - 2417: -1,-7 - 2425: 76,-13 - 2441: 35,24 - 2442: 34,22 - 2651: -24,18 - 2652: -19,22 - 2674: -27,29 - 2679: -27,26 - 2692: 74,-32 - 3499: -21,-19 - 3500: -21,-17 - 3508: -23,-4 - 3509: -17,1 - 3510: -8,2 - 3511: 9,2 - 3534: 10,18 - 3535: 13,16 - 3541: 6,-8 - 3583: 49,6 - 3587: 28,-22 - 3591: 52,-23 - 3647: 39,-23 - 3732: 11,-4 - 3733: 18,3 - 3739: 16,-3 + 2304: 54,-13 + 2305: 49,-13 + 2405: 21,11 + 2407: -1,26 + 2408: 13,37 + 2410: 1,-1 + 2411: -1,-7 + 2419: 76,-13 + 2435: 35,24 + 2436: 34,22 + 2645: -24,18 + 2646: -19,22 + 2668: -27,29 + 2673: -27,26 + 2686: 74,-32 + 3493: -21,-19 + 3494: -21,-17 + 3502: -23,-4 + 3503: -17,1 + 3504: -8,2 + 3505: 9,2 + 3528: 10,18 + 3529: 13,16 + 3535: 6,-8 + 3577: 49,6 + 3581: 28,-22 + 3585: 52,-23 + 3641: 39,-23 + 3726: 11,-4 + 3727: 18,3 + 3733: 16,-3 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: DirtMedium decals: - 4083: -26,48 - 4761: -52,-13 - 4762: -50,-12 - 4763: -51,-12 + 4077: -26,48 + 4755: -52,-13 + 4756: -50,-12 + 4757: -51,-12 - node: color: '#52B4E9FF' id: FlowersBRThree decals: - 5958: 73.99595,-10.910887 + 5952: 73.99595,-10.910887 - node: color: '#00A8FFD0' id: Flowersbr1 @@ -2747,16 +2749,16 @@ entities: color: '#18FFFE44' id: Flowersbr1 decals: - 3812: -43.584656,1.3080931 + 3806: -43.584656,1.3080931 - node: color: '#18FFFE53' id: Flowersbr1 decals: - 3813: -48.541496,1.9135075 - 3814: -43.50808,-7.345209 - 3815: -39.85408,-7.657089 - 3816: -38.037838,-6.831524 - 3817: -40.293243,-5.1342893 + 3807: -48.541496,1.9135075 + 3808: -43.50808,-7.345209 + 3809: -39.85408,-7.657089 + 3810: -38.037838,-6.831524 + 3811: -40.293243,-5.1342893 - node: color: '#2B72B4BD' id: Flowersbr1 @@ -2768,39 +2770,39 @@ entities: color: '#3A9CC79B' id: Flowersbr1 decals: - 2053: 19,-35 + 2048: 19,-35 - node: color: '#3AB3DA85' id: Flowersbr1 decals: - 1965: 35,-14 - 1988: -20,3 - 1989: -10,4 + 1960: 35,-14 + 1983: -20,3 + 1984: -10,4 - node: color: '#3AB3DAA1' id: Flowersbr1 decals: - 1942: 54,-33 - 1943: 53,-35 - 1953: 56,-42 - 1954: 53,-46 + 1937: 54,-33 + 1938: 53,-35 + 1948: 56,-42 + 1949: 53,-46 - node: color: '#3AB3DAA7' id: Flowersbr1 decals: - 2010: -24,54 - 2011: 29,50 - 2012: 41,59 - 2013: 47,61 + 2005: -24,54 + 2006: 29,50 + 2007: 41,59 + 2008: 47,61 - node: color: '#3AB3DABA' id: Flowersbr1 decals: - 1990: -9,8 - 1991: -4,3 - 1992: 0,5 - 1993: -1,9 - 1994: 6,9 + 1985: -9,8 + 1986: -4,3 + 1987: 0,5 + 1988: -1,9 + 1989: 6,9 - node: color: '#6C79C3CD' id: Flowersbr1 @@ -2811,24 +2813,24 @@ entities: color: '#7CC8FF98' id: Flowersbr1 decals: - 5560: -26.89146,54.917316 + 5554: -26.89146,54.917316 - node: color: '#7CF2FF47' id: Flowersbr1 decals: - 4093: -40.496662,-2.5425842 - 4094: -49.98192,-0.07383442 - 4095: -50.810043,-0.8550844 - 4096: -50.997543,-2.2769594 - 4097: -49.903793,-4.7457094 - 4098: -51.95067,-5.6832094 + 4087: -40.496662,-2.5425842 + 4088: -49.98192,-0.07383442 + 4089: -50.810043,-0.8550844 + 4090: -50.997543,-2.2769594 + 4091: -49.903793,-4.7457094 + 4092: -51.95067,-5.6832094 - node: color: '#98FFFF35' id: Flowersbr1 decals: - 5271: -53.8003,1.0914421 - 5272: -54.33155,1.8414421 - 5273: -54.26905,2.794567 + 5265: -53.8003,1.0914421 + 5266: -54.33155,1.8414421 + 5267: -54.26905,2.794567 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -2884,24 +2886,24 @@ entities: color: '#3AB3DA7F' id: Flowersbr2 decals: - 1998: 15,7 - 1999: -23,-6 + 1993: 15,7 + 1994: -23,-6 - node: color: '#3AB3DA85' id: Flowersbr2 decals: - 1966: 38,-14 - 1967: 37,-10 - 1968: 12,-24 + 1961: 38,-14 + 1962: 37,-10 + 1963: 12,-24 - node: color: '#3AB3DAA1' id: Flowersbr2 decals: - 1952: 50,-44 - 1957: 66,-53 - 1958: 69,-49 - 1961: 39,-15 - 1962: 28,-14 + 1947: 50,-44 + 1952: 66,-53 + 1953: 69,-49 + 1956: 39,-15 + 1957: 28,-14 - node: color: '#6C79C3CD' id: Flowersbr2 @@ -2924,108 +2926,108 @@ entities: color: '#3AB3DA79' id: Flowersbr3 decals: - 2017: 39,60 + 2012: 39,60 - node: color: '#3AB3DA85' id: Flowersbr3 decals: - 1981: -2,-25 + 1976: -2,-25 - node: color: '#3AB3DAA7' id: Flowersbr3 decals: - 1985: -20,-11 + 1980: -20,-11 - node: color: '#3AB3DAD9' id: Flowersbr3 decals: - 1984: -4,-24 + 1979: -4,-24 - node: color: '#47B2D99B' id: Flowersbr3 decals: - 2054: 24,-35 - 2055: 20,-32 - 2056: 14,-23 + 2049: 24,-35 + 2050: 20,-32 + 2051: 14,-23 - node: color: '#3AB3DA85' id: Flowerspv1 decals: - 1979: 0,-25 - 1980: -6,-26 + 1974: 0,-25 + 1975: -6,-26 - node: color: '#3AB3DAA1' id: Flowerspv1 decals: - 1944: 53,-43 - 1945: 51,-48 - 1946: 30,-47 - 1947: 32,-44 - 1963: 32,-13 + 1939: 53,-43 + 1940: 51,-48 + 1941: 30,-47 + 1942: 32,-44 + 1958: 32,-13 - node: color: '#3AB3DABA' id: Flowerspv1 decals: - 1997: 17,6 + 1992: 17,6 - node: color: '#52B4E9FF' id: Flowerspv1 decals: - 5957: 71.25636,-9.805952 + 5951: 71.25636,-9.805952 - node: color: '#3375A4BD' id: Flowerspv2 decals: - 2085: 7,-2 + 2080: 7,-2 - node: color: '#3AB3DA79' id: Flowerspv2 decals: - 2018: 44,60 - 2019: 51,66 + 2013: 44,60 + 2014: 51,66 - node: color: '#3AB3DA7F' id: Flowerspv2 decals: - 2002: -40,45 - 2003: -31,49 - 2004: -29,51 + 1997: -40,45 + 1998: -31,49 + 1999: -29,51 - node: color: '#3AB3DA85' id: Flowerspv2 decals: - 1969: 13,-26 - 1970: 10,-16 - 1971: 6,-16 - 1975: 3,-16 - 1976: -2,-28 - 1977: -5,-24 - 1978: -1,-22 + 1964: 13,-26 + 1965: 10,-16 + 1966: 6,-16 + 1970: 3,-16 + 1971: -2,-28 + 1972: -5,-24 + 1973: -1,-22 - node: color: '#3AB3DAA1' id: Flowerspv2 decals: - 1959: 69,-52 - 1960: 78,-33 + 1954: 69,-52 + 1955: 78,-33 - node: color: '#3AB3DA79' id: Flowerspv3 decals: - 2014: 41,61 - 2015: 33,59 + 2009: 41,61 + 2010: 33,59 - node: color: '#3AB3DAA1' id: Flowerspv3 decals: - 1948: 30,-45 - 1949: 32,-48 - 1950: 52,-41 - 1951: 55,-46 + 1943: 30,-45 + 1944: 32,-48 + 1945: 52,-41 + 1946: 55,-46 - node: color: '#3AB3DAA7' id: Flowerspv3 decals: - 1986: -15,-1 + 1981: -15,-1 - node: color: '#FFFFFFFF' id: Flowerspv3 @@ -3040,44 +3042,44 @@ entities: color: '#3375A4BD' id: Flowersy1 decals: - 2084: 4,-2 + 2079: 4,-2 - node: color: '#3A9CC79B' id: Flowersy1 decals: - 2052: 22,-36 + 2047: 22,-36 - node: color: '#3AB3DA7F' id: Flowersy1 decals: - 2000: -41,46 - 2008: -21,53 - 2009: -19,55 + 1995: -41,46 + 2003: -21,53 + 2004: -19,55 - node: color: '#3AB3DA85' id: Flowersy1 decals: - 1972: 2,-16 - 1973: 1,-18 - 1974: 7,-16 - 1982: -4,-26 - 1983: -3,-22 + 1967: 2,-16 + 1968: 1,-18 + 1969: 7,-16 + 1977: -4,-26 + 1978: -3,-22 - node: color: '#3AB3DAA7' id: Flowersy1 decals: - 1987: -12,1 + 1982: -12,1 - node: color: '#3AB3DABA' id: Flowersy1 decals: - 1995: 5,12 - 1996: 11,7 + 1990: 5,12 + 1991: 11,7 - node: color: '#52B4E9FF' id: Flowersy1 decals: - 5959: 74.01678,-8.91992 + 5953: 74.01678,-8.91992 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -3143,51 +3145,51 @@ entities: color: '#3AB3DA7F' id: Flowersy3 decals: - 2005: -34,49 - 2006: -23,52 - 2007: -23,57 + 2000: -34,49 + 2001: -23,52 + 2002: -23,57 - node: color: '#334EA498' id: Flowersy4 decals: - 2083: 8,-2 + 2078: 8,-2 - node: color: '#3AB3DA79' id: Flowersy4 decals: - 2016: 34,59 + 2011: 34,59 - node: color: '#3AB3DA7F' id: Flowersy4 decals: - 2001: -41,42 + 1996: -41,42 - node: color: '#3AB3DAA1' id: Flowersy4 decals: - 1955: 31,-46 - 1956: 29,-49 + 1950: 31,-46 + 1951: 29,-49 - node: color: '#00000030' id: FullTileOverlayGreyscale decals: - 4876: -3,-12 - 4877: -2,-12 - 4878: -1,-12 - 4879: -3,-13 + 4870: -3,-12 + 4871: -2,-12 + 4872: -1,-12 + 4873: -3,-13 - node: color: '#33564447' id: FullTileOverlayGreyscale decals: - 2241: 26,27 - 2242: 25,27 - 2243: 26,26 - 2244: 27,26 - 2245: 28,26 - 2246: 28,27 - 2247: 29,26 - 2248: 30,26 - 2249: 30,27 + 2236: 26,27 + 2237: 25,27 + 2238: 26,26 + 2239: 27,26 + 2240: 28,26 + 2241: 28,27 + 2242: 29,26 + 2243: 30,26 + 2244: 30,27 - node: color: '#373CAE12' id: FullTileOverlayGreyscale @@ -3246,42 +3248,42 @@ entities: color: '#4F4C4B3F' id: FullTileOverlayGreyscale decals: - 4860: -3,-13 - 4861: -1,-12 - 4862: -2,-12 - 4863: -3,-12 + 4854: -3,-13 + 4855: -1,-12 + 4856: -2,-12 + 4857: -3,-12 - node: color: '#4F6D5766' id: FullTileOverlayGreyscale decals: - 2444: 51,27 - 2445: 51,28 - 2446: 51,29 - 2458: 31,33 - 2459: 35,13 - 2460: 35,12 - 2461: 35,10 - 2462: 34,30 - 2463: 34,31 - 2464: 34,32 - 2465: 35,31 - 2466: 35,30 - 2467: 36,30 - 2468: 36,31 - 2469: 36,32 - 2470: 35,32 - 2471: 36,33 - 2472: 35,33 - 2473: 34,33 - 2474: 44,29 - 2504: 34,11 - 2505: 35,11 - 2535: 51,26 - 2536: 49,27 - 2537: 48,28 - 2538: 56,27 - 2539: 56,28 - 2540: 58,26 + 2438: 51,27 + 2439: 51,28 + 2440: 51,29 + 2452: 31,33 + 2453: 35,13 + 2454: 35,12 + 2455: 35,10 + 2456: 34,30 + 2457: 34,31 + 2458: 34,32 + 2459: 35,31 + 2460: 35,30 + 2461: 36,30 + 2462: 36,31 + 2463: 36,32 + 2464: 35,32 + 2465: 36,33 + 2466: 35,33 + 2467: 34,33 + 2468: 44,29 + 2498: 34,11 + 2499: 35,11 + 2529: 51,26 + 2530: 49,27 + 2531: 48,28 + 2532: 56,27 + 2533: 56,28 + 2534: 58,26 - node: color: '#502F157C' id: FullTileOverlayGreyscale @@ -3344,17 +3346,17 @@ entities: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 3690: 13,2 - 3691: 13,3 - 3692: 13,1 + 3684: 13,2 + 3685: 13,3 + 3686: 13,1 - node: color: '#5A3A3A7F' id: FullTileOverlayGreyscale decals: - 2401: -9,33 - 2402: -8,33 - 2403: -9,34 - 2404: -9,32 + 2395: -9,33 + 2396: -8,33 + 2397: -9,34 + 2398: -9,32 - node: color: '#5A6C6085' id: FullTileOverlayGreyscale @@ -3765,270 +3767,270 @@ entities: 589: 33,-3 807: 25,39 1170: 24,34 - 1620: 20,3 - 1621: 20,4 - 1622: 21,3 - 1623: 22,3 - 1624: 21,4 - 1625: 22,4 - 1626: 22,5 - 1627: 21,5 - 1628: 20,5 - 1629: 23,5 - 1630: 23,6 - 1631: 22,6 - 1632: 21,6 - 1633: 21,7 - 1634: 22,7 - 1635: 22,8 - 1636: 23,7 - 1637: 36,3 - 1638: 36,4 - 1639: 36,5 + 1615: 20,3 + 1616: 20,4 + 1617: 21,3 + 1618: 22,3 + 1619: 21,4 + 1620: 22,4 + 1621: 22,5 + 1622: 21,5 + 1623: 20,5 + 1624: 23,5 + 1625: 23,6 + 1626: 22,6 + 1627: 21,6 + 1628: 21,7 + 1629: 22,7 + 1630: 22,8 + 1631: 23,7 + 1632: 36,3 + 1633: 36,4 + 1634: 36,5 - node: color: '#5E7C5F59' id: FullTileOverlayGreyscale decals: - 2314: 23,4 + 2308: 23,4 - node: color: '#5E7C6E72' id: FullTileOverlayGreyscale decals: - 2393: 30,33 + 2387: 30,33 - node: color: '#7915002D' id: FullTileOverlayGreyscale decals: - 5555: -4,28 + 5549: -4,28 - node: angle: 1.5707963267948966 rad color: '#79150030' id: FullTileOverlayGreyscale decals: - 2188: 40,8 + 2183: 40,8 - node: color: '#791B144C' id: FullTileOverlayGreyscale decals: - 2447: 44,32 - 2448: 45,32 - 2449: 45,33 - 2450: 44,33 - 2451: 43,33 - 2452: 43,32 - 2453: 44,31 - 2454: 45,31 - 2455: 43,31 + 2441: 44,32 + 2442: 45,32 + 2443: 45,33 + 2444: 44,33 + 2445: 43,33 + 2446: 43,32 + 2447: 44,31 + 2448: 45,31 + 2449: 43,31 - node: color: '#7F3A3A31' id: FullTileOverlayGreyscale decals: - 1640: -8,29 - 1641: -7,29 - 1642: -6,29 - 1643: -5,29 - 1644: -4,29 - 1645: -3,29 - 1646: -2,29 - 1647: -2,30 - 1648: -3,30 - 1649: -4,30 - 1650: -5,30 - 1651: -6,30 - 1652: -7,30 - 1653: -8,30 - 1654: -8,32 - 1655: -7,32 - 1656: -7,33 - 1657: -8,34 - 1658: -7,34 - 1659: -11,34 - 1660: -10,34 - 1661: -10,33 - 1662: -11,33 - 1663: -11,32 - 1664: -10,32 - 1665: -10,31 - 1666: -11,31 - 1667: -11,30 - 1668: -10,30 - 1669: -12,30 - 1670: -12,31 - 1671: -13,31 - 1672: -13,30 - 1673: -14,30 - 1674: -14,31 - 1675: -15,31 - 1676: -15,30 - 1677: -16,30 - 1678: -16,31 - 1679: -17,31 - 1680: -17,30 - 1681: -18,30 - 1682: -18,31 - 1683: -19,31 - 1684: -19,30 - 1685: -20,30 - 1686: -21,30 - 1687: -21,31 - 1688: -20,31 - 1689: -20,32 - 1690: -21,32 - 1691: -22,32 - 1692: -22,31 - 1693: -23,31 - 1694: -24,31 - 1695: -24,32 - 1696: -23,32 - 1697: -23,33 - 1698: -24,33 - 1699: -25,33 - 1700: -25,32 - 1701: -26,32 - 1702: -26,33 - 1703: -25,35 - 1704: -25,36 - 1705: -25,37 - 1706: -25,38 - 1707: -25,39 - 1708: -25,40 - 1709: -24,40 - 1710: -24,39 - 1711: -23,39 - 1712: -24,38 - 1713: -23,38 - 1714: -23,37 - 1715: -24,37 - 1716: -24,36 - 1717: -23,36 - 1718: -24,35 - 1719: -23,35 - 1720: -22,36 - 1721: -22,35 - 1722: -21,34 - 1723: -20,34 - 1724: -19,34 - 1725: -21,35 - 1726: -20,35 - 1727: -19,35 - 1728: -21,36 - 1729: -20,36 - 1730: -19,36 - 1731: -21,37 - 1732: -20,37 - 1733: -19,37 - 1734: -21,38 - 1735: -20,38 - 1736: -19,38 - 1737: -21,39 - 1738: -20,39 - 1739: -19,39 - 1740: -18,39 - 1741: -18,38 - 1742: -18,37 - 1743: -18,36 - 1744: -18,35 - 1745: -18,34 - 1746: -18,33 - 1747: -17,33 - 1748: -17,34 - 1749: -17,35 - 1750: -5,22 - 1751: -6,22 - 1752: -7,22 - 1753: -8,22 - 1754: -8,21 - 1755: -7,21 - 1756: -6,21 - 1757: -5,21 - 1758: -6,20 - 1759: -5,20 - 1760: -5,19 - 1761: -6,19 - 1762: -7,19 - 1763: -7,20 - 1764: -8,20 - 1765: -8,19 - 1766: -8,18 - 1767: -11,21 - 1768: -11,22 - 1769: -12,19 - 1770: -12,18 - 1771: -13,18 - 1772: -14,18 - 1773: -14,17 - 1774: -13,17 - 1775: -12,17 - 1776: -12,16 - 1777: -13,16 - 1778: -14,16 - 1779: -14,15 - 1780: -13,15 - 1781: -12,15 - 1782: -11,15 - 1783: -9,16 - 1784: -8,16 - 1785: -7,16 - 1786: -6,16 - 1787: -6,17 - 1788: -5,17 - 1789: -5,16 - 1790: -5,15 - 1791: -6,15 - 1792: -6,14 - 1793: -7,15 - 1794: -8,15 - 1795: -8,14 - 1796: -7,14 - 1797: -9,15 - 1798: -15,18 - 1799: -16,18 - 1800: -17,18 - 1801: -18,18 - 1802: -19,18 - 1803: -20,18 - 1804: -20,19 - 1805: -19,19 - 1806: -18,19 - 1807: -19,20 - 1808: -20,20 - 1809: -20,21 - 1810: -19,21 - 1811: -19,22 - 1812: -20,22 - 1813: -21,22 - 1814: -21,21 - 1815: -22,21 - 1816: -22,20 - 1817: -22,19 - 1818: -23,19 - 1819: -23,20 - 1820: -23,21 - 1821: -23,22 - 1822: -22,22 - 1823: -22,23 - 1824: -23,23 - 1825: -24,23 - 1826: -24,22 - 1827: -14,20 - 1828: -16,20 - 1829: -15,20 - 1830: -15,21 - 1831: -16,21 - 1832: -17,21 - 1833: -17,22 - 1834: -16,22 - 1835: -15,22 - 1836: -14,22 - 1837: -14,21 - 1838: -13,21 - 1839: -13,22 + 1635: -8,29 + 1636: -7,29 + 1637: -6,29 + 1638: -5,29 + 1639: -4,29 + 1640: -3,29 + 1641: -2,29 + 1642: -2,30 + 1643: -3,30 + 1644: -4,30 + 1645: -5,30 + 1646: -6,30 + 1647: -7,30 + 1648: -8,30 + 1649: -8,32 + 1650: -7,32 + 1651: -7,33 + 1652: -8,34 + 1653: -7,34 + 1654: -11,34 + 1655: -10,34 + 1656: -10,33 + 1657: -11,33 + 1658: -11,32 + 1659: -10,32 + 1660: -10,31 + 1661: -11,31 + 1662: -11,30 + 1663: -10,30 + 1664: -12,30 + 1665: -12,31 + 1666: -13,31 + 1667: -13,30 + 1668: -14,30 + 1669: -14,31 + 1670: -15,31 + 1671: -15,30 + 1672: -16,30 + 1673: -16,31 + 1674: -17,31 + 1675: -17,30 + 1676: -18,30 + 1677: -18,31 + 1678: -19,31 + 1679: -19,30 + 1680: -20,30 + 1681: -21,30 + 1682: -21,31 + 1683: -20,31 + 1684: -20,32 + 1685: -21,32 + 1686: -22,32 + 1687: -22,31 + 1688: -23,31 + 1689: -24,31 + 1690: -24,32 + 1691: -23,32 + 1692: -23,33 + 1693: -24,33 + 1694: -25,33 + 1695: -25,32 + 1696: -26,32 + 1697: -26,33 + 1698: -25,35 + 1699: -25,36 + 1700: -25,37 + 1701: -25,38 + 1702: -25,39 + 1703: -25,40 + 1704: -24,40 + 1705: -24,39 + 1706: -23,39 + 1707: -24,38 + 1708: -23,38 + 1709: -23,37 + 1710: -24,37 + 1711: -24,36 + 1712: -23,36 + 1713: -24,35 + 1714: -23,35 + 1715: -22,36 + 1716: -22,35 + 1717: -21,34 + 1718: -20,34 + 1719: -19,34 + 1720: -21,35 + 1721: -20,35 + 1722: -19,35 + 1723: -21,36 + 1724: -20,36 + 1725: -19,36 + 1726: -21,37 + 1727: -20,37 + 1728: -19,37 + 1729: -21,38 + 1730: -20,38 + 1731: -19,38 + 1732: -21,39 + 1733: -20,39 + 1734: -19,39 + 1735: -18,39 + 1736: -18,38 + 1737: -18,37 + 1738: -18,36 + 1739: -18,35 + 1740: -18,34 + 1741: -18,33 + 1742: -17,33 + 1743: -17,34 + 1744: -17,35 + 1745: -5,22 + 1746: -6,22 + 1747: -7,22 + 1748: -8,22 + 1749: -8,21 + 1750: -7,21 + 1751: -6,21 + 1752: -5,21 + 1753: -6,20 + 1754: -5,20 + 1755: -5,19 + 1756: -6,19 + 1757: -7,19 + 1758: -7,20 + 1759: -8,20 + 1760: -8,19 + 1761: -8,18 + 1762: -11,21 + 1763: -11,22 + 1764: -12,19 + 1765: -12,18 + 1766: -13,18 + 1767: -14,18 + 1768: -14,17 + 1769: -13,17 + 1770: -12,17 + 1771: -12,16 + 1772: -13,16 + 1773: -14,16 + 1774: -14,15 + 1775: -13,15 + 1776: -12,15 + 1777: -11,15 + 1778: -9,16 + 1779: -8,16 + 1780: -7,16 + 1781: -6,16 + 1782: -6,17 + 1783: -5,17 + 1784: -5,16 + 1785: -5,15 + 1786: -6,15 + 1787: -6,14 + 1788: -7,15 + 1789: -8,15 + 1790: -8,14 + 1791: -7,14 + 1792: -9,15 + 1793: -15,18 + 1794: -16,18 + 1795: -17,18 + 1796: -18,18 + 1797: -19,18 + 1798: -20,18 + 1799: -20,19 + 1800: -19,19 + 1801: -18,19 + 1802: -19,20 + 1803: -20,20 + 1804: -20,21 + 1805: -19,21 + 1806: -19,22 + 1807: -20,22 + 1808: -21,22 + 1809: -21,21 + 1810: -22,21 + 1811: -22,20 + 1812: -22,19 + 1813: -23,19 + 1814: -23,20 + 1815: -23,21 + 1816: -23,22 + 1817: -22,22 + 1818: -22,23 + 1819: -23,23 + 1820: -24,23 + 1821: -24,22 + 1822: -14,20 + 1823: -16,20 + 1824: -15,20 + 1825: -15,21 + 1826: -16,21 + 1827: -17,21 + 1828: -17,22 + 1829: -16,22 + 1830: -15,22 + 1831: -14,22 + 1832: -14,21 + 1833: -13,21 + 1834: -13,22 - node: color: '#83543233' id: FullTileOverlayGreyscale decals: - 3560: 45,7 - 3561: 46,7 + 3554: 45,7 + 3555: 46,7 - node: color: '#8F3A3A2E' id: FullTileOverlayGreyscale @@ -4129,23 +4131,23 @@ entities: color: '#A0521226' id: FullTileOverlayGreyscale decals: - 3543: 46,6 - 3544: 47,6 - 3545: 48,6 - 3546: 49,6 - 3547: 50,6 - 3548: 50,5 - 3549: 49,5 - 3550: 48,5 - 3551: 48,4 - 3552: 50,4 - 3553: 50,3 - 3554: 48,3 - 3555: 46,2 - 3556: 47,2 - 3557: 48,2 - 3558: 49,2 - 3559: 50,2 + 3537: 46,6 + 3538: 47,6 + 3539: 48,6 + 3540: 49,6 + 3541: 50,6 + 3542: 50,5 + 3543: 49,5 + 3544: 48,5 + 3545: 48,4 + 3546: 50,4 + 3547: 50,3 + 3548: 48,3 + 3549: 46,2 + 3550: 47,2 + 3551: 48,2 + 3552: 49,2 + 3553: 50,2 - node: color: '#A461061B' id: FullTileOverlayGreyscale @@ -4223,117 +4225,117 @@ entities: color: '#D381C966' id: FullTileOverlayGreyscale decals: - 3599: 32,-21 + 3593: 32,-21 - node: color: '#DE3A3A0C' id: FullTileOverlayGreyscale decals: 1155: -11,20 - 2571: -24,21 - 2572: -21,20 - 2573: -21,19 - 2574: -21,18 - 2575: -22,18 - 2576: -24,18 - 2577: -24,19 - 2578: -24,20 - 2579: -23,16 - 2580: -24,16 - 2581: -24,15 - 2582: -23,15 - 2596: -19,17 - 2597: -18,17 - 2598: -17,17 - 2599: -16,17 - 2600: -15,17 - 2601: -20,17 - 2602: -19,16 - 2603: -18,16 - 2604: -18,15 - 2605: -19,15 - 2606: -20,15 - 2607: -20,14 - 2608: -19,14 - 2609: -18,14 - 2610: -17,14 - 2611: -16,14 - 2612: -16,15 - 2613: -17,15 - 2614: -20,13 - 2615: -19,13 - 2684: -23,18 + 2565: -24,21 + 2566: -21,20 + 2567: -21,19 + 2568: -21,18 + 2569: -22,18 + 2570: -24,18 + 2571: -24,19 + 2572: -24,20 + 2573: -23,16 + 2574: -24,16 + 2575: -24,15 + 2576: -23,15 + 2590: -19,17 + 2591: -18,17 + 2592: -17,17 + 2593: -16,17 + 2594: -15,17 + 2595: -20,17 + 2596: -19,16 + 2597: -18,16 + 2598: -18,15 + 2599: -19,15 + 2600: -20,15 + 2601: -20,14 + 2602: -19,14 + 2603: -18,14 + 2604: -17,14 + 2605: -16,14 + 2606: -16,15 + 2607: -17,15 + 2608: -20,13 + 2609: -19,13 + 2678: -23,18 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 5145: -20,-32 + 5139: -20,-32 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 2341: -22,-18 - 2593: -28,9 + 2335: -22,-18 + 2587: -28,9 - node: zIndex: 1 color: '#FFFFFFE8' id: Grassc1 decals: - 2095: -20.00444,27.358131 + 2090: -20.00444,27.358131 - node: color: '#FFFFFFA6' id: Grassc4 decals: - 2282: 41.895245,-9.942874 + 2277: 41.895245,-9.942874 - node: color: '#FFFFFFB0' id: Grassc4 decals: - 2277: 32.592815,-13.743864 + 2272: 32.592815,-13.743864 - node: zIndex: 1 color: '#FFFFFFE8' id: Grassd1 decals: - 2097: -20.739388,25.150806 + 2092: -20.739388,25.150806 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 2183: -18,45 - 2342: -22,-16 + 2178: -18,45 + 2336: -22,-16 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 2306: 28,3 - 2339: 31,7 - 2343: -22,-19 - 2592: -26,10 - 2640: -33,18 + 2300: 28,3 + 2333: 31,7 + 2337: -22,-19 + 2586: -26,10 + 2634: -33,18 - node: zIndex: 1 color: '#FFFFFFFF' id: Grassd2 decals: - 2177: 20,-43 + 2172: 20,-43 - node: color: '#FFFFFFB0' id: Grassd3 decals: - 2275: 47.653053,-15.22965 - 2276: 31.751957,-13.712614 + 2270: 47.653053,-15.22965 + 2271: 31.751957,-13.712614 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 2305: 30,6 - 2594: -25,11 - 2689: 73,-34 + 2299: 30,6 + 2588: -25,11 + 2683: 73,-34 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 2690: 74,-33 + 2684: 74,-33 - node: color: '#FFFFFFFF' id: Grasse3 @@ -4345,606 +4347,606 @@ entities: color: '#282C31B4' id: HalfTileOverlayGreyscale decals: - 4840: -3,-12 - 4841: -2,-12 - 4845: -3,-13 - 4846: -1,-12 + 4834: -3,-12 + 4835: -2,-12 + 4839: -3,-13 + 4840: -1,-12 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 1503: 9,1 - 1504: 8,1 - 1505: 7,1 - 1506: 6,1 - 1507: 5,1 - 1508: 4,1 - 1509: 3,1 - 1510: 2,1 - 3687: 12,2 - 3688: 14,2 - 3716: 12,4 - 3717: 13,4 - 3718: 14,4 - 3719: 15,4 - 3720: 16,4 - 3721: 17,4 - 3722: 17,0 - 3723: 16,0 + 1498: 9,1 + 1499: 8,1 + 1500: 7,1 + 1501: 6,1 + 1502: 5,1 + 1503: 4,1 + 1504: 3,1 + 1505: 2,1 + 3681: 12,2 + 3682: 14,2 + 3710: 12,4 + 3711: 13,4 + 3712: 14,4 + 3713: 15,4 + 3714: 16,4 + 3715: 17,4 + 3716: 17,0 + 3717: 16,0 - node: color: '#D381C966' id: HalfTileOverlayGreyscale decals: - 3597: 32,-22 - 3598: 33,-22 - 3602: 34,-22 - 3603: 35,-22 - 3604: 36,-22 - 3605: 37,-22 - 3606: 38,-22 - 3607: 30,-24 - 3613: 24,-25 - 3614: 25,-25 - 3615: 26,-25 + 3591: 32,-22 + 3592: 33,-22 + 3596: 34,-22 + 3597: 35,-22 + 3598: 36,-22 + 3599: 37,-22 + 3600: 38,-22 + 3601: 30,-24 + 3607: 24,-25 + 3608: 25,-25 + 3609: 26,-25 - node: color: '#0E7F1BA3' id: HalfTileOverlayGreyscale180 decals: - 1536: 7,-14 - 1537: 6,-14 + 1531: 7,-14 + 1532: 6,-14 - node: color: '#282C31B4' id: HalfTileOverlayGreyscale180 decals: - 4842: -3,-12 - 4843: -2,-12 - 4844: -3,-13 - 4847: -1,-12 + 4836: -3,-12 + 4837: -2,-12 + 4838: -3,-13 + 4841: -1,-12 - node: color: '#474F52FF' id: HalfTileOverlayGreyscale180 decals: - 3958: -43,-2 + 3952: -43,-2 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 1511: 9,2 - 1512: 8,2 - 1513: 7,2 - 1514: 6,2 - 1515: 5,2 - 1516: 4,2 - 1517: 3,2 - 1518: 2,2 - 3686: 12,2 - 3689: 14,2 - 3693: 14,-3 - 3694: 15,-3 - 3695: 16,-3 - 3696: 17,-3 - 3697: 12,-4 + 1506: 9,2 + 1507: 8,2 + 1508: 7,2 + 1509: 6,2 + 1510: 5,2 + 1511: 4,2 + 1512: 3,2 + 1513: 2,2 + 3680: 12,2 + 3683: 14,2 + 3687: 14,-3 + 3688: 15,-3 + 3689: 16,-3 + 3690: 17,-3 + 3691: 12,-4 - node: color: '#52B4E9D9' id: HalfTileOverlayGreyscale180 decals: - 1602: 15,1 - 1603: 16,1 - 1604: 17,1 + 1597: 15,1 + 1598: 16,1 + 1599: 17,1 - node: color: '#D381C966' id: HalfTileOverlayGreyscale180 decals: - 3616: 24,-26 - 3617: 25,-26 - 3618: 26,-26 - 3619: 30,-26 - 3620: 31,-26 - 3621: 32,-26 - 3622: 33,-26 - 3623: 34,-33 - 3624: 35,-33 - 3625: 36,-33 - 3635: 37,-23 - 3636: 38,-23 + 3610: 24,-26 + 3611: 25,-26 + 3612: 26,-26 + 3613: 30,-26 + 3614: 31,-26 + 3615: 32,-26 + 3616: 33,-26 + 3617: 34,-33 + 3618: 35,-33 + 3619: 36,-33 + 3629: 37,-23 + 3630: 38,-23 - node: color: '#0E7F1BA3' id: HalfTileOverlayGreyscale270 decals: - 1538: 5,-9 - 1539: 5,-10 - 1540: 5,-11 - 1541: 5,-12 - 1542: 5,-13 + 1533: 5,-9 + 1534: 5,-10 + 1535: 5,-11 + 1536: 5,-12 + 1537: 5,-13 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 1500: -1,-1 - 1501: -1,0 - 1502: -1,1 - 1521: 1,0 - 2420: 1,-1 - 3709: 11,-3 - 3710: 11,-2 - 3711: 11,-1 - 3712: 11,0 - 3713: 11,1 - 3714: 11,2 - 3715: 11,3 - 3724: 15,-1 + 1495: -1,-1 + 1496: -1,0 + 1497: -1,1 + 1516: 1,0 + 2414: 1,-1 + 3703: 11,-3 + 3704: 11,-2 + 3705: 11,-1 + 3706: 11,0 + 3707: 11,1 + 3708: 11,2 + 3709: 11,3 + 3718: 15,-1 - node: color: '#D381C960' id: HalfTileOverlayGreyscale270 decals: - 5886: 34,-28 - 5887: 34,-30 + 5880: 34,-28 + 5881: 34,-30 - node: color: '#D381C966' id: HalfTileOverlayGreyscale270 decals: - 3609: 31,-23 - 3637: 34,-27 - 3638: 33,-32 + 3603: 31,-23 + 3631: 34,-27 + 3632: 33,-32 - node: color: '#0E7F1BA3' id: HalfTileOverlayGreyscale90 decals: - 1526: 3,-14 - 1527: 3,-13 - 1528: 3,-12 - 1529: 8,-10 - 1530: 8,-9 - 1531: 9,-12 + 1521: 3,-14 + 1522: 3,-13 + 1523: 3,-12 + 1524: 8,-10 + 1525: 8,-9 + 1526: 9,-12 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 1522: 0,0 - 1523: 0,-1 - 3702: 18,-2 - 3703: 18,-1 - 3704: 18,2 - 3705: 18,1 - 3706: 18,3 - 3726: 14,0 - 3727: 14,-1 + 1517: 0,0 + 1518: 0,-1 + 3696: 18,-2 + 3697: 18,-1 + 3698: 18,2 + 3699: 18,1 + 3700: 18,3 + 3720: 14,0 + 3721: 14,-1 - node: color: '#D381C966' id: HalfTileOverlayGreyscale90 decals: - 3626: 37,-32 - 3627: 36,-25 - 3628: 36,-26 - 3629: 36,-27 - 3630: 36,-28 - 3631: 36,-29 - 3632: 36,-30 - 3633: 36,-24 + 3620: 37,-32 + 3621: 36,-25 + 3622: 36,-26 + 3623: 36,-27 + 3624: 36,-28 + 3625: 36,-29 + 3626: 36,-30 + 3627: 36,-24 - node: color: '#52B4E996' id: MiniTileCheckerAOverlay decals: - 5785: -1,-10 - 5786: -1,-10 - 5789: -3,-10 - 5790: -3,-10 + 5779: -1,-10 + 5780: -1,-10 + 5783: -3,-10 + 5784: -3,-10 - node: color: '#52B4E9D9' id: MiniTileCheckerAOverlay decals: - 1589: -4,-7 - 1592: -3,-8 - 1593: -4,-9 - 1594: -2,-7 - 1595: -2,-9 - 1596: -1,-8 - 1601: 0,-7 + 1584: -4,-7 + 1587: -3,-8 + 1588: -4,-9 + 1589: -2,-7 + 1590: -2,-9 + 1591: -1,-8 + 1596: 0,-7 - node: color: '#52B4E996' id: MiniTileCheckerBOverlay decals: - 5787: -2,-10 - 5788: -2,-10 - 5791: -4,-10 - 5792: -4,-10 + 5781: -2,-10 + 5782: -2,-10 + 5785: -4,-10 + 5786: -4,-10 - node: angle: 4.71238898038469 rad color: '#52B4E996' id: MiniTileCheckerBOverlay decals: - 5779: -5,-7 - 5780: -5,-7 - 5781: -5,-7 - 5782: -5,-8 - 5783: -5,-8 - 5784: -5,-8 + 5773: -5,-7 + 5774: -5,-7 + 5775: -5,-7 + 5776: -5,-8 + 5777: -5,-8 + 5778: -5,-8 - node: color: '#52B4E9D9' id: MiniTileCheckerBOverlay decals: - 1590: -3,-7 - 1591: -4,-8 - 1597: -3,-9 - 1598: -2,-8 - 1599: -1,-7 - 1600: -1,-9 + 1585: -3,-7 + 1586: -4,-8 + 1592: -3,-9 + 1593: -2,-8 + 1594: -1,-7 + 1595: -1,-9 - node: color: '#FFFFFFFF' id: MiniTileDarkBox decals: - 2192: 30,-11 + 2187: 30,-11 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNe decals: - 2373: 32,39 + 2367: 32,39 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNw decals: - 2374: 30,39 + 2368: 30,39 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerNw decals: - 5806: -9,-4 + 5800: -9,-4 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerSe decals: - 5811: -7,-8 - 5816: -6,-5 + 5805: -7,-8 + 5810: -6,-5 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerSw decals: - 5804: -9,-8 + 5798: -9,-8 - node: color: '#334E6DC8' id: MiniTileWhiteInnerNe decals: - 2376: 32,38 + 2370: 32,38 - node: color: '#9FED5896' id: MiniTileWhiteInnerNe decals: - 2385: 23,5 + 2379: 23,5 - node: color: '#A4610696' id: MiniTileWhiteInnerNe decals: - 2366: 35,6 + 2360: 35,6 - node: color: '#334E6DC8' id: MiniTileWhiteInnerNw decals: - 2377: 30,38 + 2371: 30,38 - node: color: '#52B4E9B7' id: MiniTileWhiteInnerNw decals: - 5807: -9,-4 + 5801: -9,-4 - node: color: '#52B4E9B7' id: MiniTileWhiteInnerSe decals: - 5812: -7,-8 - 5817: -6,-5 - 5818: -7,-5 - 5819: -7,-5 + 5806: -7,-8 + 5811: -6,-5 + 5812: -7,-5 + 5813: -7,-5 - node: color: '#9FED5896' id: MiniTileWhiteInnerSe decals: - 2384: 23,9 + 2378: 23,9 - node: color: '#A4610696' id: MiniTileWhiteInnerSe decals: - 2367: 35,14 + 2361: 35,14 - node: color: '#52B4E996' id: MiniTileWhiteInnerSw decals: - 2379: 20,5 + 2373: 20,5 - node: color: '#EFB34196' id: MiniTileWhiteInnerSw decals: - 2372: 30,38 + 2366: 30,38 - node: color: '#52B4E996' id: MiniTileWhiteLineE decals: - 1584: -6,-4 + 1579: -6,-4 - node: color: '#52B4E9B7' id: MiniTileWhiteLineE decals: - 5813: -7,-7 - 5814: -7,-7 - 5815: -7,-6 + 5807: -7,-7 + 5808: -7,-7 + 5809: -7,-6 - node: color: '#9FED5896' id: MiniTileWhiteLineE decals: - 2381: 23,7 - 2382: 23,6 - 2383: 23,8 + 2375: 23,7 + 2376: 23,6 + 2377: 23,8 - node: color: '#A4610696' id: MiniTileWhiteLineE decals: - 2363: 35,9 - 2364: 35,8 - 2365: 35,7 - 2501: 35,10 - 2502: 35,12 - 2503: 35,13 - 2506: 35,11 + 2357: 35,9 + 2358: 35,8 + 2359: 35,7 + 2495: 35,10 + 2496: 35,12 + 2497: 35,13 + 2500: 35,11 - node: color: '#334E6DC8' id: MiniTileWhiteLineN decals: - 2375: 31,39 + 2369: 31,39 - node: color: '#52B4E996' id: MiniTileWhiteLineN decals: - 1586: -7,-4 - 1587: -6,-4 + 1581: -7,-4 + 1582: -6,-4 - node: color: '#52B4E9B7' id: MiniTileWhiteLineN decals: - 5809: -8,-4 - 5810: -8,-4 + 5803: -8,-4 + 5804: -8,-4 - node: color: '#52B4E9D9' id: MiniTileWhiteLineN decals: - 1588: -7,-4 + 1583: -7,-4 - node: color: '#52B4E996' id: MiniTileWhiteLineS decals: - 1583: -8,-8 + 1578: -8,-8 - node: color: '#52B4E9B7' id: MiniTileWhiteLineS decals: - 5808: -8,-8 + 5802: -8,-8 - node: color: '#52B4E996' id: MiniTileWhiteLineW decals: - 1585: -8,-8 - 2378: 20,4 - 2380: 20,3 + 1580: -8,-8 + 2372: 20,4 + 2374: 20,3 - node: color: '#52B4E9B7' id: MiniTileWhiteLineW decals: - 5800: -9,-5 - 5801: -9,-5 - 5802: -9,-7 - 5803: -9,-7 - 5805: -9,-6 + 5794: -9,-5 + 5795: -9,-5 + 5796: -9,-7 + 5797: -9,-7 + 5799: -9,-6 - node: color: '#EFB34196' id: MiniTileWhiteLineW decals: - 2368: 30,36 - 2369: 30,37 - 2370: 30,35 - 2371: 30,34 - 2394: 30,33 + 2362: 30,36 + 2363: 30,37 + 2364: 30,35 + 2365: 30,34 + 2388: 30,33 - node: color: '#474F52FF' id: PavementOverlay decals: - 3957: -43,-2 + 3951: -43,-2 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 1524: 0,2 + 1519: 0,2 - node: color: '#D381C966' id: QuarterTileOverlayGreyscale decals: - 3608: 31,-24 - 3644: 34,-31 + 3602: 31,-24 + 3638: 34,-31 - node: color: '#0E7F1B99' id: QuarterTileOverlayGreyscale180 decals: - 2687: 8,-14 + 2681: 8,-14 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 1520: 0,1 - 3685: 13,-3 + 1515: 0,1 + 3679: 13,-3 - node: color: '#D381C966' id: QuarterTileOverlayGreyscale180 decals: - 3634: 36,-23 + 3628: 36,-23 - node: color: '#0E7F1B99' id: QuarterTileOverlayGreyscale270 decals: - 2686: 8,-14 + 2680: 8,-14 - node: color: '#D381C966' id: QuarterTileOverlayGreyscale270 decals: - 3643: 34,-26 + 3637: 34,-26 - node: color: '#0E7F1BA3' id: QuarterTileOverlayGreyscale90 decals: - 1532: 8,-11 + 1527: 8,-11 - node: color: '#D381C966' id: QuarterTileOverlayGreyscale90 decals: - 3648: 36,-31 + 3642: 36,-31 - node: color: '#D97C3BDF' id: Remains decals: - 1582: -24.491482,-10.53944 + 1577: -24.491482,-10.53944 - node: angle: -0.12217304763960307 rad color: '#FFFFFF6C' id: Remains decals: - 5658: -27.128235,51.78845 + 5652: -27.128235,51.78845 - node: color: '#FFFFFF98' id: Remains decals: - 5156: -6.942913,-33.950912 + 5150: -6.942913,-33.950912 - node: color: '#FFFFFFFF' id: Remains decals: - 2340: -6,-29 - 2406: 59.034653,-15.257176 + 2334: -6,-29 + 2400: 59.034653,-15.257176 - node: color: '#FFFFFFEC' id: Rock01 decals: - 5062: -13.042224,-28.049881 - 5068: -15.231502,-26.7779 - 5069: -15.659572,-27.279354 - 5072: -12.895457,-26.521057 - 5073: -13.140069,-26.38652 - 5074: -13.641522,-26.313137 - 5089: -11.442306,-36.651104 - 5090: -15.314063,-36.56529 - 5097: -15.632058,-37.262432 - 5098: -12.239348,-33.60317 + 5056: -13.042224,-28.049881 + 5062: -15.231502,-26.7779 + 5063: -15.659572,-27.279354 + 5066: -12.895457,-26.521057 + 5067: -13.140069,-26.38652 + 5068: -13.641522,-26.313137 + 5083: -11.442306,-36.651104 + 5084: -15.314063,-36.56529 + 5091: -15.632058,-37.262432 + 5092: -12.239348,-33.60317 - node: color: '#FFFFFFEC' id: Rock02 decals: - 5065: -13.800521,-29.456402 - 5086: -13.58266,-35.574814 - 5087: -12.176142,-36.72449 - 5088: -12.041605,-37.519478 - 5096: -16.268047,-37.335815 - 5099: -11.44436,-33.49309 + 5059: -13.800521,-29.456402 + 5080: -13.58266,-35.574814 + 5081: -12.176142,-36.72449 + 5082: -12.041605,-37.519478 + 5090: -16.268047,-37.335815 + 5093: -11.44436,-33.49309 - node: color: '#FFFFFFEC' id: Rock03 decals: - 5070: -15.41496,-28.123264 - 5071: -14.950196,-28.404572 - 5101: -18.352764,-31.509178 - 5102: -5.9824686,-30.127121 + 5064: -15.41496,-28.123264 + 5065: -14.950196,-28.404572 + 5095: -18.352764,-31.509178 + 5096: -5.9824686,-30.127121 - node: color: '#FFFFFFFF' id: Rock03 decals: - 1418: -17,44 - 5155: -13.995324,-34.11341 + 1413: -17,44 + 5149: -13.995324,-34.11341 - node: color: '#FFFFFFEC' id: Rock04 decals: - 5066: -14.045133,-29.896702 - 5067: -13.849444,-28.844872 - 5091: -14.519074,-37.01782 - 5094: -17.760181,-36.56529 - 5095: -17.283188,-36.956665 - 5100: -19.343441,-31.753792 + 5060: -14.045133,-29.896702 + 5061: -13.849444,-28.844872 + 5085: -14.519074,-37.01782 + 5088: -17.760181,-36.56529 + 5089: -17.283188,-36.956665 + 5094: -19.343441,-31.753792 - node: color: '#FFFFFFFF' id: Rock04 decals: - 1416: -17,43 + 1411: -17,43 - node: color: '#FFFFFFEC' id: Rock05 decals: - 5063: -14.057364,-30.006779 - 5064: -14.253053,-28.942715 - 5075: -14.473205,-26.410984 - 5076: -14.937966,-28.588028 - 5084: -14.255343,-35.856117 - 5085: -13.863963,-36.308647 - 5103: -6.141466,-28.89183 - 5104: -5.4443216,-28.65945 + 5057: -14.057364,-30.006779 + 5058: -14.253053,-28.942715 + 5069: -14.473205,-26.410984 + 5070: -14.937966,-28.588028 + 5078: -14.255343,-35.856117 + 5079: -13.863963,-36.308647 + 5097: -6.141466,-28.89183 + 5098: -5.4443216,-28.65945 - node: color: '#FFFFFFFF' id: Rock05 decals: - 1417: -17,42 - 5150: -16.51746,-37.86341 - 5151: -14.923709,-37.722786 - 5152: -14.423709,-37.910286 - 5153: -19.07996,-30.98841 - 5154: -12.033084,-34.42591 + 1412: -17,42 + 5144: -16.51746,-37.86341 + 5145: -14.923709,-37.722786 + 5146: -14.423709,-37.910286 + 5147: -19.07996,-30.98841 + 5148: -12.033084,-34.42591 - node: color: '#FFFFFFEC' id: Rock06 decals: - 5092: -16.879578,-37.984035 + 5086: -16.879578,-37.984035 - node: color: '#FFFFFFFF' id: Rock06 decals: - 2307: 18,15 - 2346: 55,-11 - 2595: -26,9 - 2667: -26,18 - 4743: -51.26623,6.8475866 - 4744: -51.125607,6.6757116 - 4745: -50.89123,6.7225866 - 4746: -50.76623,6.9569616 + 2301: 18,15 + 2340: 55,-11 + 2589: -26,9 + 2661: -26,18 + 4737: -51.26623,6.8475866 + 4738: -51.125607,6.6757116 + 4739: -50.89123,6.7225866 + 4740: -50.76623,6.9569616 - node: zIndex: 1 color: '#FFFFFFFF' id: Rock06 decals: - 2110: 28,-13 - 2112: -38,26 - 2113: -31,35 - 2114: -39,38 - 2117: 31,16 - 2146: 56,-20 + 2105: 28,-13 + 2107: -38,26 + 2108: -31,35 + 2109: -39,38 + 2112: 31,16 + 2141: 56,-20 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Rock06 decals: - 4747: -51.14123,6.7538366 - 4748: -51.29748,6.6913366 - 4749: -50.79748,6.8163366 + 4741: -51.14123,6.7538366 + 4742: -51.29748,6.6913366 + 4743: -50.79748,6.8163366 - node: color: '#FFFFFF34' id: Rock07 decals: - 4742: -37.106182,2.9214773 + 4736: -37.106182,2.9214773 - node: color: '#FFFFFFEC' id: Rock07 decals: - 5093: -18.885395,-35.94153 + 5087: -18.885395,-35.94153 - node: zIndex: 1 color: '#FFFFFFFF' id: Rock07 decals: - 2093: -21.066616,27.065254 - 2115: -20,-19 - 2116: 26,16 - 2147: 51,-20 - 2148: 57,-38 + 2088: -21.066616,27.065254 + 2110: -20,-19 + 2111: 26,16 + 2142: 51,-20 + 2143: 57,-38 - node: color: '#000000EF' id: Rust @@ -4989,21 +4991,21 @@ entities: color: '#2533316C' id: Rust decals: - 1605: 36,-16 - 1606: 37,-16 - 1607: 37,-16 - 1608: 36,-16 - 1609: 28,-21 - 1610: 28,-21 - 1611: 26,-20 - 1612: 26,-20 - 1613: 26,-28 - 1614: 26,-28 - 1615: 26,-31 - 1616: 26,-31 - 1617: 28,-33 - 1618: 28,-33 - 1619: 28,-35 + 1600: 36,-16 + 1601: 37,-16 + 1602: 37,-16 + 1603: 36,-16 + 1604: 28,-21 + 1605: 28,-21 + 1606: 26,-20 + 1607: 26,-20 + 1608: 26,-28 + 1609: 26,-28 + 1610: 26,-31 + 1611: 26,-31 + 1612: 28,-33 + 1613: 28,-33 + 1614: 28,-35 - node: color: '#373F47FF' id: Rust @@ -5014,77 +5016,77 @@ entities: color: '#3B3A3ABD' id: Rust decals: - 1840: -1,-6 - 1841: -2,-6 - 1842: -5,-5 - 1843: -5,-4 - 1844: 12,-5 - 1845: 10,-4 - 1846: 10,-3 - 1847: 12,-10 - 1848: 10,2 - 1849: 0,-2 - 1850: 1,-2 - 1851: 12,5 - 1852: 13,5 - 1853: 19,4 - 1854: 19,3 - 1855: 19,-3 - 1856: 16,-4 - 1857: 16,-10 - 1858: 15,-26 - 1859: 22,-21 - 1860: 26,-20 - 1861: 28,-21 - 1862: 34,-19 - 1863: 34,-18 - 1864: 36,-16 - 1865: 37,-16 - 1866: 37,-27 - 1867: 40,-23 - 1868: 38,-31 - 1869: 32,-32 - 1870: 26,-31 - 1871: 26,-28 - 1872: 28,-33 - 1873: 30,-38 - 1874: 29,-39 - 1875: 24,7 - 1876: 30,-1 - 1877: 32,-2 - 1878: 38,-3 - 1879: 38,0 - 1880: 37,3 - 1881: 41,0 - 1882: -6,-21 - 1883: -11,-12 - 1884: -13,-14 - 1885: -20,-14 - 1886: -22,-4 - 1887: -16,1 - 1888: -8,3 - 1889: -4,10 - 1890: -1,14 - 1891: -11,14 - 1892: -8,17 - 1893: -14,19 - 1894: -5,23 - 1895: -6,23 - 1896: -10,29 - 1897: -8,31 - 1898: -12,33 - 1899: -17,32 - 1900: -18,29 - 1901: -19,40 - 1902: -18,40 - 1903: -19,23 - 1904: -27,32 - 1905: 55,-40 + 1835: -1,-6 + 1836: -2,-6 + 1837: -5,-5 + 1838: -5,-4 + 1839: 12,-5 + 1840: 10,-4 + 1841: 10,-3 + 1842: 12,-10 + 1843: 10,2 + 1844: 0,-2 + 1845: 1,-2 + 1846: 12,5 + 1847: 13,5 + 1848: 19,4 + 1849: 19,3 + 1850: 19,-3 + 1851: 16,-4 + 1852: 16,-10 + 1853: 15,-26 + 1854: 22,-21 + 1855: 26,-20 + 1856: 28,-21 + 1857: 34,-19 + 1858: 34,-18 + 1859: 36,-16 + 1860: 37,-16 + 1861: 37,-27 + 1862: 40,-23 + 1863: 38,-31 + 1864: 32,-32 + 1865: 26,-31 + 1866: 26,-28 + 1867: 28,-33 + 1868: 30,-38 + 1869: 29,-39 + 1870: 24,7 + 1871: 30,-1 + 1872: 32,-2 + 1873: 38,-3 + 1874: 38,0 + 1875: 37,3 + 1876: 41,0 + 1877: -6,-21 + 1878: -11,-12 + 1879: -13,-14 + 1880: -20,-14 + 1881: -22,-4 + 1882: -16,1 + 1883: -8,3 + 1884: -4,10 + 1885: -1,14 + 1886: -11,14 + 1887: -8,17 + 1888: -14,19 + 1889: -5,23 + 1890: -6,23 + 1891: -10,29 + 1892: -8,31 + 1893: -12,33 + 1894: -17,32 + 1895: -18,29 + 1896: -19,40 + 1897: -18,40 + 1898: -19,23 + 1899: -27,32 + 1900: 55,-40 - node: color: '#575263FF' id: Rust decals: - 1910: 27,-47 + 1905: 27,-47 - node: color: '#5A5C60FF' id: Rust @@ -5191,8 +5193,8 @@ entities: color: '#7F7585BA' id: Rust decals: - 1940: 54,39 - 1941: 53,39 + 1935: 54,39 + 1936: 53,39 - node: color: '#B74C73D3' id: Rust @@ -5203,7 +5205,7 @@ entities: color: '#D6610693' id: Rust decals: - 2400: 14,25 + 2394: 14,25 - node: color: '#FFFF5A82' id: Rust @@ -5224,221 +5226,221 @@ entities: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 4752: -55,-9 - 4753: -55,-9 + 4746: -55,-9 + 4747: -55,-9 - node: color: '#FFFFFFFF' id: StandClear decals: - 5875: 46,-21 - 5876: 45,-21 + 5869: 46,-21 + 5870: 45,-21 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 4754: -55,-11 - 4774: -55,-12 + 4748: -55,-11 + 4768: -55,-12 - node: color: '#0E7F1BA3' id: ThreeQuarterTileOverlayGreyscale decals: - 1543: 5,-8 + 1538: 5,-8 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 1519: 1,1 - 1525: -1,2 - 3707: 11,4 - 3725: 15,0 + 1514: 1,1 + 1520: -1,2 + 3701: 11,4 + 3719: 15,0 - node: color: '#D381C966' id: ThreeQuarterTileOverlayGreyscale decals: - 3610: 31,-22 - 3611: 23,-25 - 3639: 33,-31 + 3604: 31,-22 + 3605: 23,-25 + 3633: 33,-31 - node: color: '#0E7F1B99' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2688: 9,-14 + 2682: 9,-14 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3698: 13,-4 - 3699: 18,-3 + 3692: 13,-4 + 3693: 18,-3 - node: color: '#D381C966' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3601: 39,-23 - 3640: 37,-33 + 3595: 39,-23 + 3634: 37,-33 - node: color: '#0E7F1BA3' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1535: 5,-14 + 1530: 5,-14 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3708: 11,-4 + 3702: 11,-4 - node: color: '#D381C966' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3612: 23,-26 - 3641: 33,-33 + 3606: 23,-26 + 3635: 33,-33 - node: color: '#0E7F1BA3' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1533: 9,-11 - 1534: 8,-8 + 1528: 9,-11 + 1529: 8,-8 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3700: 18,4 - 3701: 18,0 + 3694: 18,4 + 3695: 18,0 - node: color: '#D381C966' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3600: 39,-22 - 3642: 37,-31 + 3594: 39,-22 + 3636: 37,-31 - node: color: '#FFFFFFFF' id: WarnBoxGreyscale decals: - 5960: 75,-1 - 5961: 75,0 - 5962: 75,1 + 5954: 75,-1 + 5955: 75,0 + 5956: 75,1 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE decals: - 5965: 76,2 + 5959: 76,2 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNW decals: - 1446: -18,26 - 5963: 74,2 + 1441: -18,26 + 5957: 74,2 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSW decals: - 1445: -18,25 - 5964: 74,-2 + 1440: -18,25 + 5958: 74,-2 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 2388: 28,54 + 2382: 28,54 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 2387: 26,54 + 2381: 26,54 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 2386: 28,53 - 5873: 47,-23 + 2380: 28,53 + 5867: 47,-23 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 2389: 26,53 - 5874: 43,-23 + 2383: 26,53 + 5868: 43,-23 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW decals: - 1447: -17,26 + 1442: -17,26 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSW decals: - 1449: -13,25 + 1444: -13,25 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 5947: 67,4 + 5941: 67,4 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 3570: 48,2 + 3564: 48,2 - node: color: '#FFFFFF89' id: WarnCornerSmallSE decals: - 5774: -5,-12 + 5768: -5,-12 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 5948: 67,4 + 5942: 67,4 - node: color: '#FFFFFF7A' id: WarnCornerSmallSW decals: - 4884: -1,-12 + 4878: -1,-12 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 3569: 48,6 + 3563: 48,6 - node: color: '#FFFFFFFF' id: WarnEndE decals: - 5946: 68,4 + 5940: 68,4 - node: angle: 1.5707963267948966 rad color: '#79150033' id: WarnFullGreyscale decals: - 3671: 29,-17 + 3665: 29,-17 - node: color: '#79150034' id: WarnFullGreyscale decals: - 3649: 29,-16 - 3650: 30,-16 - 3651: 31,-16 - 3652: 32,-16 - 3653: 33,-16 - 3661: 31,-19 - 3662: 33,-19 - 3663: 30,-17 - 3664: 32,-17 - 3669: 27,-16 - 3670: 28,-16 - 3672: 29,-19 + 3643: 29,-16 + 3644: 30,-16 + 3645: 31,-16 + 3646: 32,-16 + 3647: 33,-16 + 3655: 31,-19 + 3656: 33,-19 + 3657: 30,-17 + 3658: 32,-17 + 3663: 27,-16 + 3664: 28,-16 + 3666: 29,-19 - node: angle: 1.5707963267948966 rad color: '#79150034' id: WarnFullGreyscale decals: - 3654: 29,-20 - 3655: 30,-20 - 3656: 31,-20 - 3657: 32,-20 - 3658: 33,-20 - 3659: 31,-17 - 3660: 33,-17 - 3665: 30,-19 - 3666: 32,-19 - 3667: 28,-20 - 3668: 27,-20 + 3648: 29,-20 + 3649: 30,-20 + 3650: 31,-20 + 3651: 32,-20 + 3652: 33,-20 + 3653: 31,-17 + 3654: 33,-17 + 3659: 30,-19 + 3660: 32,-19 + 3661: 28,-20 + 3662: 27,-20 - node: color: '#FFFFFFFF' id: WarnLineE @@ -5446,80 +5448,80 @@ entities: 149: -59,-11 153: -59,-12 154: -59,-10 - 5869: 47,-22 - 5870: 47,-21 - 5942: 67,2 - 5943: 67,3 - 5944: 67,5 - 5945: 67,6 + 5863: 47,-22 + 5864: 47,-21 + 5936: 67,2 + 5937: 67,3 + 5938: 67,5 + 5939: 67,6 - node: color: '#DE3A3ACF' id: WarnLineGreyscaleE decals: - 2481: 45,29 - 2482: 45,28 - 2483: 45,27 + 2475: 45,29 + 2476: 45,28 + 2477: 45,27 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 1443: -14,25 - 1448: -17,25 + 1438: -14,25 + 1443: -17,25 - node: zIndex: 1 color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 2102: -16,25 - 2103: -15,25 + 2097: -16,25 + 2098: -15,25 - node: color: '#DE3A3ACF' id: WarnLineGreyscaleW decals: - 2484: 43,29 - 2485: 43,28 - 2486: 43,27 + 2478: 43,29 + 2479: 43,28 + 2480: 43,27 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 1444: -17,27 - 2298: -17,28 + 1439: -17,27 + 2292: -17,28 - node: zIndex: 1 color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 2104: -13,24 + 2099: -13,24 - node: color: '#FFFFFF7A' id: WarnLineN decals: - 4882: -3,-12 - 4883: -2,-12 + 4876: -3,-12 + 4877: -2,-12 - node: color: '#FFFFFF87' id: WarnLineN decals: - 5776: -4,-12 - 5777: -5,-12 - 5778: -1,-12 + 5770: -4,-12 + 5771: -5,-12 + 5772: -1,-12 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 2391: 27,53 - 2565: -16,12 - 2566: -17,12 - 3564: 46,6 - 3565: 47,6 - 5866: 44,-23 - 5867: 45,-23 - 5868: 46,-23 - 5949: 70,2 - 5950: 71,2 - 5951: 70,5 - 5952: 71,5 + 2385: 27,53 + 2559: -16,12 + 2560: -17,12 + 3558: 46,6 + 3559: 47,6 + 5860: 44,-23 + 5861: 45,-23 + 5862: 46,-23 + 5943: 70,2 + 5944: 71,2 + 5945: 70,5 + 5946: 71,5 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5527,2710 +5529,2710 @@ entities: 150: -67,-11 151: -67,-12 152: -67,-10 - 2583: -24,18 - 2584: -24,19 - 2585: -24,20 - 2586: -24,21 - 2587: -24,22 - 2588: -24,23 - 2589: -24,16 - 2590: -24,15 - 3566: 48,3 - 3567: 48,4 - 3568: 48,5 - 4755: -55,-11 - 4773: -55,-12 - 5863: 51,-8 - 5864: 51,-9 - 5865: 51,-10 - 5871: 43,-22 - 5872: 43,-21 + 2577: -24,18 + 2578: -24,19 + 2579: -24,20 + 2580: -24,21 + 2581: -24,22 + 2582: -24,23 + 2583: -24,16 + 2584: -24,15 + 3560: 48,3 + 3561: 48,4 + 3562: 48,5 + 4749: -55,-11 + 4767: -55,-12 + 5857: 51,-8 + 5858: 51,-9 + 5859: 51,-10 + 5865: 43,-22 + 5866: 43,-21 - node: color: '#FFFFFF84' id: WarnLineW decals: - 5793: -5,-11 - 5794: -4,-11 - 5795: -3,-11 - 5796: -2,-11 - 5797: -1,-11 + 5787: -5,-11 + 5788: -4,-11 + 5789: -3,-11 + 5790: -2,-11 + 5791: -1,-11 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 2390: 27,54 - 2396: 43,7 - 2397: 42,7 - 2398: 41,7 - 2399: 44,7 - 2567: -17,9 - 2568: -16,9 - 2569: -20,8 - 2570: -21,8 - 3562: 46,2 - 3563: 47,2 - 5953: 70,6 - 5954: 71,6 - 5955: 70,3 - 5956: 71,3 + 2384: 27,54 + 2390: 43,7 + 2391: 42,7 + 2392: 41,7 + 2393: 44,7 + 2561: -17,9 + 2562: -16,9 + 2563: -20,8 + 2564: -21,8 + 3556: 46,2 + 3557: 47,2 + 5947: 70,6 + 5948: 71,6 + 5949: 70,3 + 5950: 71,3 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 3837: -52.39272,-0.6897087 - 5891: -67,12 - 5894: -63,12 + 3831: -52.39272,-0.6897087 + 5885: -67,12 + 5888: -63,12 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 3828: -53.39496,-0.6914034 - 5890: -69,12 - 5895: -65,12 + 3822: -53.39496,-0.6914034 + 5884: -69,12 + 5889: -65,12 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 2349: -20,43 - 5900: -67,14 - 5901: -62,14 + 2343: -20,43 + 5894: -67,14 + 5895: -62,14 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 5899: -69,14 - 5939: -64,14 + 5893: -69,14 + 5933: -64,14 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 5896: -61,12 + 5890: -61,12 - node: color: '#8FA2BAFF' id: WoodTrimThinInnerNe decals: - 1908: 61,-47 + 1903: 61,-47 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 2355: -23,42 - 5933: -70,19 + 2349: -23,42 + 5927: -70,19 - node: color: '#8FA2BAFF' id: WoodTrimThinInnerNw decals: - 1909: 64,-47 + 1904: 64,-47 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 2356: -19,42 - 5934: -61,19 + 2350: -19,42 + 5928: -61,19 - node: angle: 0.08726646259971647 rad color: '#4D4D4DFF' id: WoodTrimThinInnerSe decals: - 3841: -52.772884,0.073935986 - 3842: -54.004364,0.08782482 + 3835: -52.772884,0.073935986 + 3836: -54.004364,0.08782482 - node: color: '#8FA2BAFF' id: WoodTrimThinInnerSe decals: - 1906: 61,-44 + 1901: 61,-44 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 5920: -72,9 + 5914: -72,9 - node: color: '#8FA2BAFF' id: WoodTrimThinInnerSw decals: - 1907: 64,-44 + 1902: 64,-44 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 2357: -19,45 + 2351: -19,45 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 2333: 30,12 - 2334: 30,11 - 2335: 30,10 - 3833: -54.240826,-1.3910046 - 3973: -52.388416,-1.4159346 + 2327: 30,12 + 2328: 30,11 + 2329: 30,10 + 3827: -54.240826,-1.3910046 + 3967: -52.388416,-1.4159346 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 2158: 61,-45 - 2159: 61,-46 + 2153: 61,-45 + 2154: 61,-46 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 2352: -20,42 - 2353: -21,42 - 2354: -22,42 - 5892: -68,12 - 5893: -64,12 - 5902: -69,8 - 5903: -70,8 - 5904: -71,8 - 5905: -67,9 - 5906: -66,9 - 5907: -65,9 - 5908: -63,8 - 5909: -62,8 - 5910: -61,8 - 5921: -69,19 - 5922: -68,19 - 5923: -67,19 - 5924: -66,19 - 5925: -65,19 - 5926: -64,19 - 5927: -63,19 - 5928: -62,19 + 2346: -20,42 + 2347: -21,42 + 2348: -22,42 + 5886: -68,12 + 5887: -64,12 + 5896: -69,8 + 5897: -70,8 + 5898: -71,8 + 5899: -67,9 + 5900: -66,9 + 5901: -65,9 + 5902: -63,8 + 5903: -62,8 + 5904: -61,8 + 5915: -69,19 + 5916: -68,19 + 5917: -67,19 + 5918: -66,19 + 5919: -65,19 + 5920: -64,19 + 5921: -63,19 + 5922: -62,19 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 2162: 62,-47 - 2163: 63,-47 + 2157: 62,-47 + 2158: 63,-47 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1544: 20,-10 - 3852: -52.924053,0.14759588 - 5897: -68,14 - 5898: -63,14 - 5911: -71,9 - 5912: -70,9 - 5913: -69,9 - 5914: -63,9 - 5915: -62,9 - 5916: -61,9 - 5917: -65,10 - 5918: -66,10 - 5919: -67,10 - 5929: -69,20 - 5930: -66,20 - 5931: -65,20 - 5932: -62,20 - 5935: -68,20 - 5936: -67,20 - 5937: -64,20 - 5938: -63,20 + 1539: 20,-10 + 3846: -52.924053,0.14759588 + 5891: -68,14 + 5892: -63,14 + 5905: -71,9 + 5906: -70,9 + 5907: -69,9 + 5908: -63,9 + 5909: -62,9 + 5910: -61,9 + 5911: -65,10 + 5912: -66,10 + 5913: -67,10 + 5923: -69,20 + 5924: -66,20 + 5925: -65,20 + 5926: -62,20 + 5929: -68,20 + 5930: -67,20 + 5931: -64,20 + 5932: -63,20 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 2156: 63,-44 - 2157: 62,-44 + 2151: 63,-44 + 2152: 62,-44 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 2336: 26,10 - 2337: 26,11 - 2338: 26,12 - 2350: -19,43 - 2351: -19,44 - 3838: -51.550125,-1.4211898 - 5556: -25.565586,53.633453 + 2330: 26,10 + 2331: 26,11 + 2332: 26,12 + 2344: -19,43 + 2345: -19,44 + 3832: -51.550125,-1.4211898 + 5550: -25.565586,53.633453 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 2160: 64,-46 - 2161: 64,-45 + 2155: 64,-46 + 2156: 64,-45 - node: angle: 1.5707963267948966 rad color: '#000000FF' id: body decals: - 4129: -43.121334,1.9994812 + 4123: -43.121334,1.9994812 - node: color: '#FFFFFF2E' id: body decals: - 4817: -32.818913,33.227715 + 4811: -32.818913,33.227715 - node: color: '#FFFFFFFF' id: body decals: - 4793: -32.815956,33.217693 + 4787: -32.815956,33.217693 - node: cleanable: True color: '#FFFFFFFF' id: body decals: - 5966: 82.91327,-29.477484 - 5968: 82.91327,-29.487907 + 5960: 82.91327,-29.477484 + 5962: 82.91327,-29.487907 - node: color: '#FFFFFFFF' id: bushsnowa1 decals: - 2427: 27.798096,-9.806068 - 3754: -40.035866,-6.403754 - 3963: -44,-7 + 2421: 27.798096,-9.806068 + 3748: -40.035866,-6.403754 + 3957: -44,-7 - node: color: '#FFFFFFFF' id: bushsnowa2 decals: 17: 0,-5 - 3753: -47.52618,-6.440446 + 3747: -47.52618,-6.440446 - node: color: '#FFFFFFFF' id: bushsnowb1 decals: - 3966: -37,4 + 3960: -37,4 - node: color: '#FFFFFFFF' id: bushsnowb2 decals: - 3747: -41.928917,2.2770224 + 3741: -41.928917,2.2770224 - node: color: '#FFFFFFFF' id: bushsnowb3 decals: - 4091: -41.040012,4.0173035 - 4092: -54.053715,-3.393745 + 4085: -41.040012,4.0173035 + 4086: -54.053715,-3.393745 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: bushsnowb3 decals: - 4090: -41.016575,4.0641785 + 4084: -41.016575,4.0641785 - node: cleanable: True color: '#DE3A3AFF' id: cyka decals: - 2591: -25.968113,21.137112 + 2585: -25.968113,21.137112 - node: angle: 1.5707963267948966 rad color: '#00000026' id: dot decals: - 4476: -42.946205,2.3657932 - 4477: -42.953148,2.3588486 - 4478: -42.994816,2.331071 - 4479: -43.015648,2.310238 - 4480: -42.87676,2.2824602 - 4481: -43.05037,2.268571 - 4482: -42.835094,2.2407932 + 4470: -42.946205,2.3657932 + 4471: -42.953148,2.3588486 + 4472: -42.994816,2.331071 + 4473: -43.015648,2.310238 + 4474: -42.87676,2.2824602 + 4475: -43.05037,2.268571 + 4476: -42.835094,2.2407932 - node: color: '#00000049' id: dot decals: - 4675: -43.09212,1.7062588 - 4676: -43.07129,1.5916753 - 4677: -43.07129,1.5708418 - 4678: -43.050453,1.6854248 - 4679: -42.800453,1.6541753 + 4669: -43.09212,1.7062588 + 4670: -43.07129,1.5916753 + 4671: -43.07129,1.5708418 + 4672: -43.050453,1.6854248 + 4673: -42.800453,1.6541753 - node: color: '#0000006C' id: dot decals: - 4617: -43.114697,1.7375088 - 4618: -43.16678,1.6645918 - 4619: -43.208447,1.6125083 - 4620: -43.125114,1.7375088 - 4621: -43.093864,1.8208418 - 4622: -42.802197,1.7895918 - 4623: -42.718864,1.6645918 - 4624: -42.781364,1.7375088 - 4625: -42.69803,1.6020918 + 4611: -43.114697,1.7375088 + 4612: -43.16678,1.6645918 + 4613: -43.208447,1.6125083 + 4614: -43.125114,1.7375088 + 4615: -43.093864,1.8208418 + 4616: -42.802197,1.7895918 + 4617: -42.718864,1.6645918 + 4618: -42.781364,1.7375088 + 4619: -42.69803,1.6020918 - node: angle: -0.6981317007977318 rad color: '#000000FF' id: dot decals: - 3910: -51.08697,-4.5925584 + 3904: -51.08697,-4.5925584 - node: angle: 1.5707963267948966 rad color: '#000000FF' id: dot decals: - 4130: -43.135223,2.2110615 - 4131: -43.197723,2.2735615 - 4132: -43.294945,2.3360615 - 4133: -43.176888,2.197173 - 4134: -43.274113,2.1763391 - 4135: -42.781055,2.2110615 - 4136: -42.7255,2.2735615 - 4137: -42.663,2.322173 - 4138: -42.621334,2.3152285 - 4139: -42.676888,2.1832838 - 4140: -42.774113,2.2318945 - 4141: -42.815777,2.2110615 - 4142: -43.079666,2.197173 - 4173: -42.996334,2.322173 - 4174: -42.9755,2.2527285 - 4175: -42.919945,2.3152285 - 4176: -42.892166,2.3013391 - 4177: -42.961613,2.3499508 - 4178: -42.940777,2.2249508 - 4179: -42.954666,2.1624508 - 4180: -42.954666,2.0930061 - 4181: -42.947723,2.0235615 - 4182: -42.982445,1.9193945 - 4183: -42.982445,1.8985615 - 4184: -43.156055,1.9263391 - 4185: -43.163,2.0443945 - 4186: -43.093555,2.0999508 - 4187: -42.9755,2.1207838 - 4188: -43.010223,2.0235615 - 4189: -43.003277,1.9818945 - 4190: -43.024113,2.0582838 - 4191: -42.864388,2.1555061 - 4192: -42.864388,2.0791168 - 4193: -42.878277,2.0096722 - 4194: -42.885223,1.9332838 - 4195: -42.892166,1.8916168 - 4196: -42.899113,1.8777285 - 4197: -42.919945,1.9818945 - 4198: -42.919945,1.9610615 - 4199: -42.794945,2.0930061 - 4200: -42.753277,1.9332838 - 4201: -42.732445,2.0235615 - 4202: -42.989388,1.9610615 - 4203: -42.996334,1.9263391 - 4204: -43.003277,1.8846722 - 4205: -43.003277,1.8568945 - 4206: -43.031055,1.8082838 - 4207: -43.024113,1.7249508 - 4208: -43.031055,1.6624508 - 4209: -43.058834,1.5860615 - 4210: -42.892166,1.8360615 - 4211: -42.878277,1.7874508 - 4212: -42.878277,1.7249508 - 4213: -42.871334,1.6346726 - 4214: -42.871334,1.606895 - 4215: -42.843555,1.5860615 + 4124: -43.135223,2.2110615 + 4125: -43.197723,2.2735615 + 4126: -43.294945,2.3360615 + 4127: -43.176888,2.197173 + 4128: -43.274113,2.1763391 + 4129: -42.781055,2.2110615 + 4130: -42.7255,2.2735615 + 4131: -42.663,2.322173 + 4132: -42.621334,2.3152285 + 4133: -42.676888,2.1832838 + 4134: -42.774113,2.2318945 + 4135: -42.815777,2.2110615 + 4136: -43.079666,2.197173 + 4167: -42.996334,2.322173 + 4168: -42.9755,2.2527285 + 4169: -42.919945,2.3152285 + 4170: -42.892166,2.3013391 + 4171: -42.961613,2.3499508 + 4172: -42.940777,2.2249508 + 4173: -42.954666,2.1624508 + 4174: -42.954666,2.0930061 + 4175: -42.947723,2.0235615 + 4176: -42.982445,1.9193945 + 4177: -42.982445,1.8985615 + 4178: -43.156055,1.9263391 + 4179: -43.163,2.0443945 + 4180: -43.093555,2.0999508 + 4181: -42.9755,2.1207838 + 4182: -43.010223,2.0235615 + 4183: -43.003277,1.9818945 + 4184: -43.024113,2.0582838 + 4185: -42.864388,2.1555061 + 4186: -42.864388,2.0791168 + 4187: -42.878277,2.0096722 + 4188: -42.885223,1.9332838 + 4189: -42.892166,1.8916168 + 4190: -42.899113,1.8777285 + 4191: -42.919945,1.9818945 + 4192: -42.919945,1.9610615 + 4193: -42.794945,2.0930061 + 4194: -42.753277,1.9332838 + 4195: -42.732445,2.0235615 + 4196: -42.989388,1.9610615 + 4197: -42.996334,1.9263391 + 4198: -43.003277,1.8846722 + 4199: -43.003277,1.8568945 + 4200: -43.031055,1.8082838 + 4201: -43.024113,1.7249508 + 4202: -43.031055,1.6624508 + 4203: -43.058834,1.5860615 + 4204: -42.892166,1.8360615 + 4205: -42.878277,1.7874508 + 4206: -42.878277,1.7249508 + 4207: -42.871334,1.6346726 + 4208: -42.871334,1.606895 + 4209: -42.843555,1.5860615 - node: color: '#090909FF' id: dot decals: - 3914: -51.056507,-4.9675584 - 3915: -51.070396,-4.7800584 - 3916: -51.090878,-4.5925584 + 3908: -51.056507,-4.9675584 + 3909: -51.070396,-4.7800584 + 3910: -51.090878,-4.5925584 - node: color: '#0A0A0AFF' id: dot decals: - 3918: -51.084545,-4.5717254 + 3912: -51.084545,-4.5717254 - node: angle: 1.5707963267948966 rad color: '#2C2C2CFF' id: dot decals: - 3921: -51.101936,-4.603647 - 3922: -51.07879,-4.807351 - 3923: -51.088047,-5.0017953 + 3915: -51.101936,-4.603647 + 3916: -51.07879,-4.807351 + 3917: -51.088047,-5.0017953 - node: angle: -0.6981317007977318 rad color: '#414141FF' id: dot decals: - 3911: -51.069855,-4.606447 + 3905: -51.069855,-4.606447 - node: color: '#414141FF' id: dot decals: - 3912: -51.078026,-4.800892 - 3913: -51.056507,-5.0022807 + 3906: -51.078026,-4.800892 + 3907: -51.056507,-5.0022807 - node: color: '#424242FF' id: dot decals: - 3917: -51.077602,-4.585614 + 3911: -51.077602,-4.585614 - node: color: '#6372791F' id: dot decals: - 4626: -43.145947,1.6229253 - 4627: -43.10428,1.7062588 - 4628: -43.10428,1.7375088 - 4629: -43.10428,1.7479248 - 4630: -43.145947,1.6958418 - 4631: -43.156364,1.6750088 - 4632: -43.156364,1.6645918 - 4633: -43.083447,1.8416748 - 4634: -43.07303,1.8520918 - 4635: -42.82303,1.7166748 - 4636: -42.718864,1.6958418 - 4637: -42.645947,1.6541753 + 4620: -43.145947,1.6229253 + 4621: -43.10428,1.7062588 + 4622: -43.10428,1.7375088 + 4623: -43.10428,1.7479248 + 4624: -43.145947,1.6958418 + 4625: -43.156364,1.6750088 + 4626: -43.156364,1.6645918 + 4627: -43.083447,1.8416748 + 4628: -43.07303,1.8520918 + 4629: -42.82303,1.7166748 + 4630: -42.718864,1.6958418 + 4631: -42.645947,1.6541753 - node: color: '#6C9CFF49' id: dot decals: - 4686: -43.07129,1.7583418 - 4687: -43.15462,1.6854248 - 4688: -42.99837,1.8729248 - 4689: -43.050453,1.6854248 - 4690: -42.82129,1.7062588 - 4691: -42.769203,1.8104248 + 4680: -43.07129,1.7583418 + 4681: -43.15462,1.6854248 + 4682: -42.99837,1.8729248 + 4683: -43.050453,1.6854248 + 4684: -42.82129,1.7062588 + 4685: -42.769203,1.8104248 - node: color: '#95BFFF15' id: dot decals: - 4512: -42.928593,2.2396889 - 4513: -42.92165,2.2396889 - 4514: -42.93554,2.0660772 - 4515: -42.963318,2.2882996 - 4516: -42.93554,2.2674665 - 4517: -42.94943,2.0174665 - 4518: -42.94943,2.0035772 - 4519: -42.942482,2.1771889 - 4520: -43.01887,2.135522 - 4521: -43.053593,2.0869112 - 4522: -43.102203,2.073022 - 4523: -43.13693,2.0660772 - 4524: -43.07443,2.2396889 - 4525: -42.963318,2.1007996 - 4526: -42.93554,1.9688559 - 4527: -42.942482,1.9410772 - 4528: -42.99804,1.9132996 - 4529: -43.03276,1.8577442 - 4530: -43.053593,1.8021889 - 4531: -43.03276,1.7744112 - 4532: -43.06054,2.0591335 - 4533: -43.004982,2.1077442 + 4506: -42.928593,2.2396889 + 4507: -42.92165,2.2396889 + 4508: -42.93554,2.0660772 + 4509: -42.963318,2.2882996 + 4510: -42.93554,2.2674665 + 4511: -42.94943,2.0174665 + 4512: -42.94943,2.0035772 + 4513: -42.942482,2.1771889 + 4514: -43.01887,2.135522 + 4515: -43.053593,2.0869112 + 4516: -43.102203,2.073022 + 4517: -43.13693,2.0660772 + 4518: -43.07443,2.2396889 + 4519: -42.963318,2.1007996 + 4520: -42.93554,1.9688559 + 4521: -42.942482,1.9410772 + 4522: -42.99804,1.9132996 + 4523: -43.03276,1.8577442 + 4524: -43.053593,1.8021889 + 4525: -43.03276,1.7744112 + 4526: -43.06054,2.0591335 + 4527: -43.004982,2.1077442 - node: color: '#95BFFF41' id: dot decals: - 4507: -42.95637,2.260522 - 4508: -42.93554,2.2744112 - 4509: -42.93554,2.2882996 - 4510: -42.93554,2.2119112 - 4511: -42.928593,2.1077442 + 4501: -42.95637,2.260522 + 4502: -42.93554,2.2744112 + 4503: -42.93554,2.2882996 + 4504: -42.93554,2.2119112 + 4505: -42.928593,2.1077442 - node: color: '#B1D5FF14' id: dot decals: - 4562: -42.82443,1.8369112 - 4563: -42.838318,1.8160772 - 4564: -42.866093,1.7744112 - 4565: -42.87304,1.7327442 - 4566: -42.87304,1.7188559 - 4567: -42.866093,1.6563554 - 4568: -42.85915,1.6285777 - 4569: -42.852203,1.621633 + 4556: -42.82443,1.8369112 + 4557: -42.838318,1.8160772 + 4558: -42.866093,1.7744112 + 4559: -42.87304,1.7327442 + 4560: -42.87304,1.7188559 + 4561: -42.866093,1.6563554 + 4562: -42.85915,1.6285777 + 4563: -42.852203,1.621633 - node: angle: 1.5707963267948966 rad color: '#B7CFF226' id: dot decals: - 4430: -42.979504,2.2967358 - 4431: -42.979504,2.3175688 - 4432: -42.979504,2.3175688 - 4433: -42.917004,2.2446518 - 4434: -42.906586,2.2446518 - 4435: -42.906586,2.2446518 - 4436: -42.906586,2.2029858 - 4437: -43.175297,2.222661 - 4438: -43.115112,2.143958 - 4439: -43.129,2.0698833 - 4440: -43.14289,1.9958096 - 4441: -43.11048,2.139328 - 4442: -43.059555,2.1624765 - 4443: -42.939186,2.1624765 - 4444: -43.01789,2.1624765 - 4445: -43.00863,2.1717358 - 4446: -42.953075,2.055995 - 4447: -42.976223,1.9634018 - 4448: -42.990112,1.9865503 - 4449: -43.01789,2.1532173 - 4450: -42.962334,2.0791426 - 4451: -42.962334,2.0374765 - 4452: -42.91604,2.1856241 - 4453: -42.906776,2.1254396 - 4454: -42.79104,2.222661 - 4455: -42.781776,2.227291 - 4456: -42.809555,2.1532173 - 4457: -42.716965,2.2041426 - 4458: -42.684555,2.259698 - 4459: -42.703075,2.2782173 - 4460: -42.814186,2.1902542 - 4461: -42.990112,1.9495134 - 4462: -43.01789,1.847661 - 4463: -43.02252,1.6717358 - 4464: -43.02252,1.9171057 - 4465: -43.004,2.055995 - 4466: -43.004,1.9263649 - 4467: -42.88363,2.0421057 - 4468: -42.911407,1.8661795 - 4469: -42.90215,1.8198833 - 4470: -42.88826,1.7041426 - 4471: -42.88826,1.9263649 - 4472: -42.85585,2.0421057 - 4473: -42.804928,2.1254396 - 4474: -42.87437,1.9680319 - 4475: -42.89752,1.9495134 + 4424: -42.979504,2.2967358 + 4425: -42.979504,2.3175688 + 4426: -42.979504,2.3175688 + 4427: -42.917004,2.2446518 + 4428: -42.906586,2.2446518 + 4429: -42.906586,2.2446518 + 4430: -42.906586,2.2029858 + 4431: -43.175297,2.222661 + 4432: -43.115112,2.143958 + 4433: -43.129,2.0698833 + 4434: -43.14289,1.9958096 + 4435: -43.11048,2.139328 + 4436: -43.059555,2.1624765 + 4437: -42.939186,2.1624765 + 4438: -43.01789,2.1624765 + 4439: -43.00863,2.1717358 + 4440: -42.953075,2.055995 + 4441: -42.976223,1.9634018 + 4442: -42.990112,1.9865503 + 4443: -43.01789,2.1532173 + 4444: -42.962334,2.0791426 + 4445: -42.962334,2.0374765 + 4446: -42.91604,2.1856241 + 4447: -42.906776,2.1254396 + 4448: -42.79104,2.222661 + 4449: -42.781776,2.227291 + 4450: -42.809555,2.1532173 + 4451: -42.716965,2.2041426 + 4452: -42.684555,2.259698 + 4453: -42.703075,2.2782173 + 4454: -42.814186,2.1902542 + 4455: -42.990112,1.9495134 + 4456: -43.01789,1.847661 + 4457: -43.02252,1.6717358 + 4458: -43.02252,1.9171057 + 4459: -43.004,2.055995 + 4460: -43.004,1.9263649 + 4461: -42.88363,2.0421057 + 4462: -42.911407,1.8661795 + 4463: -42.90215,1.8198833 + 4464: -42.88826,1.7041426 + 4465: -42.88826,1.9263649 + 4466: -42.85585,2.0421057 + 4467: -42.804928,2.1254396 + 4468: -42.87437,1.9680319 + 4469: -42.89752,1.9495134 - node: color: '#CDC5FF14' id: dot decals: - 4534: -42.942482,2.2119112 - 4535: -42.93554,2.2952442 - 4536: -42.942482,2.2188559 - 4537: -42.93554,2.1563559 - 4538: -42.88693,2.0591335 - 4539: -42.88693,2.0035772 - 4540: -42.914703,1.9271889 - 4541: -42.977203,2.1007996 - 4542: -42.95637,2.073022 - 4543: -42.95637,1.9341335 - 4544: -43.039703,1.8646889 - 4545: -42.99804,1.8160772 - 4546: -42.98415,1.7605219 - 4547: -42.98415,1.6910772 - 4548: -42.98415,1.6910772 - 4549: -42.98415,1.6632996 - 4550: -42.942482,2.0244112 - 4551: -42.89387,1.8646889 - 4552: -42.89387,1.7813559 - 4553: -42.87304,1.7119112 - 4554: -42.87304,1.7119112 - 4555: -42.87304,1.7119112 - 4556: -42.852203,1.8369112 - 4557: -42.84526,1.8438559 - 4558: -42.852203,1.9549665 - 4559: -42.85915,1.8924665 - 4560: -42.85915,1.7952442 - 4561: -42.85915,1.6702442 + 4528: -42.942482,2.2119112 + 4529: -42.93554,2.2952442 + 4530: -42.942482,2.2188559 + 4531: -42.93554,2.1563559 + 4532: -42.88693,2.0591335 + 4533: -42.88693,2.0035772 + 4534: -42.914703,1.9271889 + 4535: -42.977203,2.1007996 + 4536: -42.95637,2.073022 + 4537: -42.95637,1.9341335 + 4538: -43.039703,1.8646889 + 4539: -42.99804,1.8160772 + 4540: -42.98415,1.7605219 + 4541: -42.98415,1.6910772 + 4542: -42.98415,1.6910772 + 4543: -42.98415,1.6632996 + 4544: -42.942482,2.0244112 + 4545: -42.89387,1.8646889 + 4546: -42.89387,1.7813559 + 4547: -42.87304,1.7119112 + 4548: -42.87304,1.7119112 + 4549: -42.87304,1.7119112 + 4550: -42.852203,1.8369112 + 4551: -42.84526,1.8438559 + 4552: -42.852203,1.9549665 + 4553: -42.85915,1.8924665 + 4554: -42.85915,1.7952442 + 4555: -42.85915,1.6702442 - node: color: '#FFFFFF21' id: dot decals: - 4935: -52.354267,-2.4555287 - 4936: -52.608894,-2.3305287 - 4937: -51.747784,-2.6592324 - 4938: -51.669083,-2.802751 + 4929: -52.354267,-2.4555287 + 4930: -52.608894,-2.3305287 + 4931: -51.747784,-2.6592324 + 4932: -51.669083,-2.802751 - node: color: '#FFFFFF25' id: dot decals: - 4570: -42.974182,2.2396889 - 4571: -42.960293,2.2952442 - 4572: -42.897793,2.260522 - 4573: -42.86307,2.2396889 - 4574: -42.85613,2.1771889 - 4575: -42.85613,2.1424665 - 4576: -42.98807,2.2813559 - 4577: -43.070843,2.198022 - 4578: -43.063896,2.0313559 - 4579: -43.029175,1.9410772 - 4580: -43.029175,1.8299665 - 4581: -43.008343,2.0244112 - 4582: -42.834732,2.0660772 - 4583: -42.793064,2.1841335 - 4584: -43.008343,2.1702442 - 4585: -43.168064,2.1494112 - 4586: -42.938896,1.8716335 - 4587: -42.84862,2.19458 - 4588: -43.09515,1.7335815 - 4589: -43.12987,1.6641378 - 4590: -43.122925,1.6849709 - 4591: -43.115982,1.7127485 - 4592: -43.115982,1.7127485 - 4593: -43.12987,1.6710815 - 4594: -43.10904,1.7544155 - 4595: -43.10904,1.7544155 - 4596: -43.10904,1.7891378 - 4597: -43.150703,1.6641378 - 4598: -42.761814,1.6780262 - 4599: -42.761814,1.6780262 - 4600: -42.76876,1.6988602 - 4601: -42.727093,1.8099709 - 4602: -42.75487,1.9002485 - 4603: -42.70626,2.0599709 - 4604: -42.699314,2.0738602 - 4605: -42.69237,2.0113602 - 4606: -43.20626,2.0530262 - 4607: -43.20626,2.0530262 - 4608: -43.20626,2.0530262 - 4609: -43.09515,2.3724709 - 4610: -43.060425,2.2613602 - 4611: -43.04654,2.2127485 - 4612: -43.06737,2.2544155 - 4613: -43.039593,2.3030262 - 4614: -43.04654,2.3030262 - 4615: -43.053482,2.3030262 - 4616: -43.06737,2.2683039 + 4564: -42.974182,2.2396889 + 4565: -42.960293,2.2952442 + 4566: -42.897793,2.260522 + 4567: -42.86307,2.2396889 + 4568: -42.85613,2.1771889 + 4569: -42.85613,2.1424665 + 4570: -42.98807,2.2813559 + 4571: -43.070843,2.198022 + 4572: -43.063896,2.0313559 + 4573: -43.029175,1.9410772 + 4574: -43.029175,1.8299665 + 4575: -43.008343,2.0244112 + 4576: -42.834732,2.0660772 + 4577: -42.793064,2.1841335 + 4578: -43.008343,2.1702442 + 4579: -43.168064,2.1494112 + 4580: -42.938896,1.8716335 + 4581: -42.84862,2.19458 + 4582: -43.09515,1.7335815 + 4583: -43.12987,1.6641378 + 4584: -43.122925,1.6849709 + 4585: -43.115982,1.7127485 + 4586: -43.115982,1.7127485 + 4587: -43.12987,1.6710815 + 4588: -43.10904,1.7544155 + 4589: -43.10904,1.7544155 + 4590: -43.10904,1.7891378 + 4591: -43.150703,1.6641378 + 4592: -42.761814,1.6780262 + 4593: -42.761814,1.6780262 + 4594: -42.76876,1.6988602 + 4595: -42.727093,1.8099709 + 4596: -42.75487,1.9002485 + 4597: -42.70626,2.0599709 + 4598: -42.699314,2.0738602 + 4599: -42.69237,2.0113602 + 4600: -43.20626,2.0530262 + 4601: -43.20626,2.0530262 + 4602: -43.20626,2.0530262 + 4603: -43.09515,2.3724709 + 4604: -43.060425,2.2613602 + 4605: -43.04654,2.2127485 + 4606: -43.06737,2.2544155 + 4607: -43.039593,2.3030262 + 4608: -43.04654,2.3030262 + 4609: -43.053482,2.3030262 + 4610: -43.06737,2.2683039 - node: angle: 1.5707963267948966 rad color: '#FFFFFF26' id: dot decals: - 4483: -43.376507,2.1713486 - 4484: -43.369564,2.310238 - 4485: -43.369564,2.4005156 - 4486: -43.28623,2.4074602 + 4477: -43.376507,2.1713486 + 4478: -43.369564,2.310238 + 4479: -43.369564,2.4005156 + 4480: -43.28623,2.4074602 - node: angle: 1.5707963267948966 rad color: '#FFFFFF28' id: dot decals: - 4143: -43.288,2.3430061 - 4144: -43.183834,2.2527285 - 4145: -43.169945,2.2388391 - 4146: -43.149113,2.2110615 - 4147: -43.176888,2.259673 - 4148: -43.197723,2.2735615 - 4149: -43.246334,2.3082838 - 4150: -43.260223,2.3152285 - 4151: -43.288,2.3291168 - 4152: -43.239388,2.3152285 - 4153: -43.176888,2.2666168 - 4154: -43.128277,2.2041168 - 4155: -43.121334,2.1693945 - 4156: -43.121334,2.1485615 - 4157: -43.260223,2.1485615 - 4158: -43.281055,2.1693945 - 4159: -43.260223,2.1763391 - 4160: -43.176888,2.1902285 - 4161: -43.149113,2.197173 - 4162: -43.1005,2.1763391 - 4163: -43.1005,2.1693945 - 4164: -43.024113,2.1693945 - 4165: -43.017166,2.1555061 - 4166: -42.9755,2.1555061 - 4167: -42.940777,2.2249508 - 4168: -42.968555,2.259673 - 4169: -43.024113,2.2943945 - 4170: -43.031055,2.2318945 - 4171: -43.038,2.1693945 - 4172: -43.038,2.1555061 - 4216: -42.926888,2.1624508 - 4217: -42.940777,2.1207838 - 4218: -42.961613,2.0860615 - 4219: -42.961613,2.1555061 - 4220: -42.961613,2.1555061 - 4221: -42.961613,2.2110615 - 4222: -42.961613,2.2318945 - 4223: -42.961613,2.2527285 - 4224: -42.996334,2.2805061 - 4225: -42.996334,2.2805061 - 4226: -42.996334,2.3082838 - 4227: -42.996334,2.322173 - 4228: -42.9755,2.3430061 - 4229: -42.961613,2.3499508 - 4230: -42.906055,2.3291168 - 4231: -42.899113,2.2735615 - 4232: -42.906055,2.259673 - 4233: -42.919945,2.2318945 - 4234: -42.926888,2.2180061 - 4235: -42.954666,2.1207838 - 4236: -42.961613,2.0860615 - 4237: -42.885223,2.1207838 - 4238: -42.919945,2.1555061 - 4239: -42.982445,2.2041168 - 4240: -43.010223,2.1277285 - 4241: -42.996334,2.0652285 - 4242: -42.913,2.0999508 - 4243: -42.843555,2.1485615 - 4244: -42.808834,2.1902285 - 4245: -42.794945,2.197173 - 4246: -42.746334,2.2318945 - 4247: -42.711613,2.2735615 - 4248: -42.683834,2.2943945 - 4249: -42.621334,2.3291168 - 4250: -42.6005,2.3152285 - 4251: -42.621334,2.3082838 - 4252: -42.656055,2.3013391 - 4253: -42.739388,2.2666168 - 4254: -42.788,2.2318945 - 4255: -42.801888,2.2041168 - 4256: -42.788,2.1902285 - 4257: -42.711613,2.2527285 - 4258: -42.697723,2.197173 - 4259: -42.690777,2.1832838 - 4260: -42.718555,2.1763391 - 4261: -42.808834,2.197173 - 4262: -42.871334,2.1693945 - 4263: -42.885223,2.1624508 - 4264: -42.892166,2.2388391 - 4265: -42.899113,2.2527285 - 4266: -42.961613,2.1207838 - 4267: -42.9755,2.3169756 - 4268: -42.9755,2.351698 - 4269: -42.9755,2.351698 - 4270: -42.961613,2.372531 - 4271: -42.933834,2.351698 - 4272: -42.913,2.3239202 - 4273: -42.899113,2.310031 - 4274: -42.892166,2.2822533 - 4275: -42.933834,2.226698 - 4276: -42.864388,2.2822533 - 4277: -42.878277,2.226698 - 4278: -42.9755,2.1364202 - 4279: -43.051888,2.1294756 - 4280: -43.093555,2.1294756 - 4281: -43.1005,2.1155863 - 4282: -43.114388,2.101698 - 4283: -43.135223,2.0739202 - 4284: -43.142166,2.0530863 - 4285: -43.169945,1.9975309 - 4286: -43.190777,1.9697533 - 4287: -43.183834,1.9141979 - 4288: -43.176888,1.9003086 - 4289: -43.197723,2.0253086 - 4290: -43.149113,2.0947533 - 4291: -43.128277,2.101698 - 4292: -43.135223,2.080865 - 4293: -43.163,2.0322533 - 4294: -42.996334,2.185031 - 4295: -42.982445,2.0322533 - 4296: -42.989388,1.9766979 - 4297: -43.024113,2.0114202 - 4298: -42.885223,2.019249 - 4299: -42.857445,2.102582 - 4300: -42.822723,2.123415 - 4301: -42.767166,2.081749 - 4302: -42.760223,2.0470266 - 4303: -42.767166,2.0123043 - 4304: -42.760223,1.9636927 - 4305: -42.746334,1.9289713 - 4306: -42.753277,1.9011927 - 4307: -42.753277,1.894249 - 4308: -42.746334,2.0331373 - 4309: -42.746334,2.0331373 - 4310: -42.767166,2.060915 - 4311: -42.794945,2.0956373 - 4312: -42.794945,2.040082 - 4313: -42.760223,2.019249 - 4314: -42.788,2.102582 - 4315: -42.878277,2.0678596 - 4316: -42.954666,1.9914713 - 4317: -42.982445,1.894249 - 4318: -42.982445,1.8803596 - 4319: -42.885223,1.977582 - 4320: -42.940777,1.915082 - 4321: -42.954666,1.9011927 - 4322: -43.003277,1.9914713 - 4323: -42.996334,2.0539713 - 4324: -43.065777,1.8803596 - 4325: -43.044945,2.0123043 - 4326: -43.058834,1.956749 - 4327: -43.031055,1.9220266 - 4328: -43.044945,1.873415 - 4329: -43.038,1.831749 - 4330: -43.044945,1.790082 - 4331: -43.031055,1.7761927 - 4332: -43.017166,1.706749 - 4333: -43.024113,1.685915 - 4334: -43.024113,1.6720266 - 4335: -43.031055,1.6442485 - 4336: -43.044945,1.6234155 - 4337: -43.093555,1.5609155 - 4338: -43.038,1.5817485 - 4339: -43.038,1.5817485 - 4340: -43.031055,1.5632062 - 4341: -43.086613,1.556262 - 4342: -43.142166,1.5632062 - 4343: -43.156055,1.6048727 - 4344: -43.197723,1.493762 - 4345: -43.142166,1.4868174 - 4346: -43.086613,1.4659839 - 4347: -43.107445,1.4868174 - 4348: -43.163,1.5354285 - 4349: -43.218555,1.5840397 - 4350: -43.093555,1.4729285 - 4351: -42.822723,1.5007062 - 4352: -42.794945,1.514595 - 4353: -42.885223,1.577095 - 4354: -42.899113,1.6673727 - 4355: -42.892166,1.7576504 - 4356: -42.892166,1.847928 - 4357: -42.913,1.931262 - 4358: -42.906055,1.9659843 - 4359: -42.919945,1.7923727 - 4360: -42.885223,1.7368174 - 4361: -42.871334,1.785428 - 4362: -42.871334,1.9034843 - 4363: -42.871334,1.9034843 - 4364: -42.892166,1.743762 - 4365: -42.885223,1.6743174 - 4366: -42.864388,1.6118174 - 4367: -42.857445,1.577095 - 4368: -42.801888,1.577095 - 4369: -42.808834,1.5701504 - 4370: -42.885223,1.7159843 - 4371: -42.864388,1.8548727 - 4372: -42.864388,1.8826504 - 4373: -42.906055,1.6465397 - 4374: -42.885223,1.6326504 - 4375: -42.878277,1.6673727 - 4376: -42.878277,1.7715397 - 4377: -42.864388,1.910428 - 4378: -42.857445,1.952095 - 4379: -42.864388,1.827095 - 4380: -42.857445,1.7715397 - 4381: -42.878277,1.6534839 - 4382: -42.878277,1.639595 - 4383: -42.857445,1.8201504 - 4384: -42.836613,1.9243174 - 4385: -42.794945,1.9659843 - 4386: -42.718555,2.0284843 - 4387: -42.718555,2.0007067 - 4388: -42.718555,2.0007067 - 4389: -42.683834,2.160428 - 4390: -42.676888,2.160428 - 4391: -42.663,2.202095 - 4392: -42.669945,2.2090397 - 4393: -42.711613,2.1465397 - 4394: -42.669945,2.3548727 - 4395: -42.669945,2.3548727 - 4396: -42.739388,2.2715397 - 4397: -42.753277,2.2159843 - 4398: -43.010223,2.3340397 - 4399: -43.010223,2.3340397 - 4400: -43.024113,2.3201504 - 4401: -43.024113,2.306262 - 4402: -43.024113,2.306262 - 4403: -43.051888,1.7368174 - 4404: -43.024113,1.702095 - 4405: -43.044945,1.6673727 - 4406: -43.038,1.7298727 - 4407: -42.8505,1.764595 - 4408: -42.8505,1.7368174 - 4409: -42.857445,1.722928 - 4410: -42.871334,1.6951504 - 4411: -43.281055,2.181262 - 4412: -43.315777,2.347928 - 4413: -42.864388,1.5726867 - 4414: -43.149593,1.8800688 - 4415: -43.149593,1.8800688 - 4416: -43.10793,1.8800688 - 4417: -43.12876,1.9529858 - 4418: -42.72251,1.9217358 - 4419: -42.72251,1.8592358 - 4420: -42.680843,1.9113188 - 4421: -43.024593,1.5467353 - 4422: -43.024593,1.6404853 - 4423: -43.024593,1.5675688 - 4424: -42.837093,1.5779853 - 4425: -42.868343,2.2863188 - 4426: -42.95168,2.3904858 - 4427: -42.95168,2.3800688 - 4428: -42.962093,2.3696518 - 4429: -42.962093,2.3696518 + 4137: -43.288,2.3430061 + 4138: -43.183834,2.2527285 + 4139: -43.169945,2.2388391 + 4140: -43.149113,2.2110615 + 4141: -43.176888,2.259673 + 4142: -43.197723,2.2735615 + 4143: -43.246334,2.3082838 + 4144: -43.260223,2.3152285 + 4145: -43.288,2.3291168 + 4146: -43.239388,2.3152285 + 4147: -43.176888,2.2666168 + 4148: -43.128277,2.2041168 + 4149: -43.121334,2.1693945 + 4150: -43.121334,2.1485615 + 4151: -43.260223,2.1485615 + 4152: -43.281055,2.1693945 + 4153: -43.260223,2.1763391 + 4154: -43.176888,2.1902285 + 4155: -43.149113,2.197173 + 4156: -43.1005,2.1763391 + 4157: -43.1005,2.1693945 + 4158: -43.024113,2.1693945 + 4159: -43.017166,2.1555061 + 4160: -42.9755,2.1555061 + 4161: -42.940777,2.2249508 + 4162: -42.968555,2.259673 + 4163: -43.024113,2.2943945 + 4164: -43.031055,2.2318945 + 4165: -43.038,2.1693945 + 4166: -43.038,2.1555061 + 4210: -42.926888,2.1624508 + 4211: -42.940777,2.1207838 + 4212: -42.961613,2.0860615 + 4213: -42.961613,2.1555061 + 4214: -42.961613,2.1555061 + 4215: -42.961613,2.2110615 + 4216: -42.961613,2.2318945 + 4217: -42.961613,2.2527285 + 4218: -42.996334,2.2805061 + 4219: -42.996334,2.2805061 + 4220: -42.996334,2.3082838 + 4221: -42.996334,2.322173 + 4222: -42.9755,2.3430061 + 4223: -42.961613,2.3499508 + 4224: -42.906055,2.3291168 + 4225: -42.899113,2.2735615 + 4226: -42.906055,2.259673 + 4227: -42.919945,2.2318945 + 4228: -42.926888,2.2180061 + 4229: -42.954666,2.1207838 + 4230: -42.961613,2.0860615 + 4231: -42.885223,2.1207838 + 4232: -42.919945,2.1555061 + 4233: -42.982445,2.2041168 + 4234: -43.010223,2.1277285 + 4235: -42.996334,2.0652285 + 4236: -42.913,2.0999508 + 4237: -42.843555,2.1485615 + 4238: -42.808834,2.1902285 + 4239: -42.794945,2.197173 + 4240: -42.746334,2.2318945 + 4241: -42.711613,2.2735615 + 4242: -42.683834,2.2943945 + 4243: -42.621334,2.3291168 + 4244: -42.6005,2.3152285 + 4245: -42.621334,2.3082838 + 4246: -42.656055,2.3013391 + 4247: -42.739388,2.2666168 + 4248: -42.788,2.2318945 + 4249: -42.801888,2.2041168 + 4250: -42.788,2.1902285 + 4251: -42.711613,2.2527285 + 4252: -42.697723,2.197173 + 4253: -42.690777,2.1832838 + 4254: -42.718555,2.1763391 + 4255: -42.808834,2.197173 + 4256: -42.871334,2.1693945 + 4257: -42.885223,2.1624508 + 4258: -42.892166,2.2388391 + 4259: -42.899113,2.2527285 + 4260: -42.961613,2.1207838 + 4261: -42.9755,2.3169756 + 4262: -42.9755,2.351698 + 4263: -42.9755,2.351698 + 4264: -42.961613,2.372531 + 4265: -42.933834,2.351698 + 4266: -42.913,2.3239202 + 4267: -42.899113,2.310031 + 4268: -42.892166,2.2822533 + 4269: -42.933834,2.226698 + 4270: -42.864388,2.2822533 + 4271: -42.878277,2.226698 + 4272: -42.9755,2.1364202 + 4273: -43.051888,2.1294756 + 4274: -43.093555,2.1294756 + 4275: -43.1005,2.1155863 + 4276: -43.114388,2.101698 + 4277: -43.135223,2.0739202 + 4278: -43.142166,2.0530863 + 4279: -43.169945,1.9975309 + 4280: -43.190777,1.9697533 + 4281: -43.183834,1.9141979 + 4282: -43.176888,1.9003086 + 4283: -43.197723,2.0253086 + 4284: -43.149113,2.0947533 + 4285: -43.128277,2.101698 + 4286: -43.135223,2.080865 + 4287: -43.163,2.0322533 + 4288: -42.996334,2.185031 + 4289: -42.982445,2.0322533 + 4290: -42.989388,1.9766979 + 4291: -43.024113,2.0114202 + 4292: -42.885223,2.019249 + 4293: -42.857445,2.102582 + 4294: -42.822723,2.123415 + 4295: -42.767166,2.081749 + 4296: -42.760223,2.0470266 + 4297: -42.767166,2.0123043 + 4298: -42.760223,1.9636927 + 4299: -42.746334,1.9289713 + 4300: -42.753277,1.9011927 + 4301: -42.753277,1.894249 + 4302: -42.746334,2.0331373 + 4303: -42.746334,2.0331373 + 4304: -42.767166,2.060915 + 4305: -42.794945,2.0956373 + 4306: -42.794945,2.040082 + 4307: -42.760223,2.019249 + 4308: -42.788,2.102582 + 4309: -42.878277,2.0678596 + 4310: -42.954666,1.9914713 + 4311: -42.982445,1.894249 + 4312: -42.982445,1.8803596 + 4313: -42.885223,1.977582 + 4314: -42.940777,1.915082 + 4315: -42.954666,1.9011927 + 4316: -43.003277,1.9914713 + 4317: -42.996334,2.0539713 + 4318: -43.065777,1.8803596 + 4319: -43.044945,2.0123043 + 4320: -43.058834,1.956749 + 4321: -43.031055,1.9220266 + 4322: -43.044945,1.873415 + 4323: -43.038,1.831749 + 4324: -43.044945,1.790082 + 4325: -43.031055,1.7761927 + 4326: -43.017166,1.706749 + 4327: -43.024113,1.685915 + 4328: -43.024113,1.6720266 + 4329: -43.031055,1.6442485 + 4330: -43.044945,1.6234155 + 4331: -43.093555,1.5609155 + 4332: -43.038,1.5817485 + 4333: -43.038,1.5817485 + 4334: -43.031055,1.5632062 + 4335: -43.086613,1.556262 + 4336: -43.142166,1.5632062 + 4337: -43.156055,1.6048727 + 4338: -43.197723,1.493762 + 4339: -43.142166,1.4868174 + 4340: -43.086613,1.4659839 + 4341: -43.107445,1.4868174 + 4342: -43.163,1.5354285 + 4343: -43.218555,1.5840397 + 4344: -43.093555,1.4729285 + 4345: -42.822723,1.5007062 + 4346: -42.794945,1.514595 + 4347: -42.885223,1.577095 + 4348: -42.899113,1.6673727 + 4349: -42.892166,1.7576504 + 4350: -42.892166,1.847928 + 4351: -42.913,1.931262 + 4352: -42.906055,1.9659843 + 4353: -42.919945,1.7923727 + 4354: -42.885223,1.7368174 + 4355: -42.871334,1.785428 + 4356: -42.871334,1.9034843 + 4357: -42.871334,1.9034843 + 4358: -42.892166,1.743762 + 4359: -42.885223,1.6743174 + 4360: -42.864388,1.6118174 + 4361: -42.857445,1.577095 + 4362: -42.801888,1.577095 + 4363: -42.808834,1.5701504 + 4364: -42.885223,1.7159843 + 4365: -42.864388,1.8548727 + 4366: -42.864388,1.8826504 + 4367: -42.906055,1.6465397 + 4368: -42.885223,1.6326504 + 4369: -42.878277,1.6673727 + 4370: -42.878277,1.7715397 + 4371: -42.864388,1.910428 + 4372: -42.857445,1.952095 + 4373: -42.864388,1.827095 + 4374: -42.857445,1.7715397 + 4375: -42.878277,1.6534839 + 4376: -42.878277,1.639595 + 4377: -42.857445,1.8201504 + 4378: -42.836613,1.9243174 + 4379: -42.794945,1.9659843 + 4380: -42.718555,2.0284843 + 4381: -42.718555,2.0007067 + 4382: -42.718555,2.0007067 + 4383: -42.683834,2.160428 + 4384: -42.676888,2.160428 + 4385: -42.663,2.202095 + 4386: -42.669945,2.2090397 + 4387: -42.711613,2.1465397 + 4388: -42.669945,2.3548727 + 4389: -42.669945,2.3548727 + 4390: -42.739388,2.2715397 + 4391: -42.753277,2.2159843 + 4392: -43.010223,2.3340397 + 4393: -43.010223,2.3340397 + 4394: -43.024113,2.3201504 + 4395: -43.024113,2.306262 + 4396: -43.024113,2.306262 + 4397: -43.051888,1.7368174 + 4398: -43.024113,1.702095 + 4399: -43.044945,1.6673727 + 4400: -43.038,1.7298727 + 4401: -42.8505,1.764595 + 4402: -42.8505,1.7368174 + 4403: -42.857445,1.722928 + 4404: -42.871334,1.6951504 + 4405: -43.281055,2.181262 + 4406: -43.315777,2.347928 + 4407: -42.864388,1.5726867 + 4408: -43.149593,1.8800688 + 4409: -43.149593,1.8800688 + 4410: -43.10793,1.8800688 + 4411: -43.12876,1.9529858 + 4412: -42.72251,1.9217358 + 4413: -42.72251,1.8592358 + 4414: -42.680843,1.9113188 + 4415: -43.024593,1.5467353 + 4416: -43.024593,1.6404853 + 4417: -43.024593,1.5675688 + 4418: -42.837093,1.5779853 + 4419: -42.868343,2.2863188 + 4420: -42.95168,2.3904858 + 4421: -42.95168,2.3800688 + 4422: -42.962093,2.3696518 + 4423: -42.962093,2.3696518 - node: angle: 1.5707963267948966 rad color: '#FFFFFF2E' id: dot decals: - 4488: -42.914894,2.3171825 - 4489: -42.873226,2.310238 - 4490: -42.887115,2.3449602 - 4491: -42.89406,2.2338486 - 4492: -42.880173,1.5602379 - 4493: -42.866283,1.5671825 - 4494: -42.914894,1.5810714 - 4495: -42.914894,1.5810714 - 4496: -42.866283,1.6227379 - 4497: -42.838505,1.6157932 - 4498: -42.83156,1.6157932 + 4482: -42.914894,2.3171825 + 4483: -42.873226,2.310238 + 4484: -42.887115,2.3449602 + 4485: -42.89406,2.2338486 + 4486: -42.880173,1.5602379 + 4487: -42.866283,1.5671825 + 4488: -42.914894,1.5810714 + 4489: -42.914894,1.5810714 + 4490: -42.866283,1.6227379 + 4491: -42.838505,1.6157932 + 4492: -42.83156,1.6157932 - node: color: '#FFFFFF49' id: dot decals: - 4680: -43.02962,1.7583418 - 4681: -43.06087,1.6333418 - 4682: -43.06087,1.6333418 - 4683: -43.06087,1.5291753 - 4684: -42.82129,1.5812583 - 4685: -42.800453,1.8104248 - 4692: -43.16504,1.7062588 - 4693: -43.09212,1.8208418 - 4694: -43.112953,1.6541753 - 4695: -42.75879,1.7166748 - 4696: -42.85254,1.6229253 - 4697: -43.09212,1.7375088 - 4698: -42.737953,1.7895918 - 4699: -43.06087,2.1541748 - 4700: -43.050453,1.9354248 - 4701: -43.00879,2.0187588 - 4702: -42.831703,2.0083418 - 4703: -42.81087,1.8625088 - 4704: -42.81087,2.2687588 - 4705: -42.95066,2.3625088 - 4706: -42.95066,2.3625088 - 4707: -43.002743,2.3520918 - 4708: -42.96108,2.3520918 - 4709: -42.92983,2.3416748 - 4710: -42.908993,2.2895918 - 4711: -42.940243,2.2791748 - 4712: -43.033993,2.1229248 - 4713: -43.30483,2.3208418 - 4714: -43.29441,2.3000088 - 4715: -43.35691,2.3625088 - 4716: -42.60691,2.2062588 - 4717: -42.64858,2.4041748 - 4718: -42.71108,2.3833418 - 4719: -42.73191,2.3208418 - 4720: -42.74233,2.3000088 - 4721: -42.64858,2.2895918 - 4722: -42.721493,1.9041748 - 4723: -43.29441,1.6125083 - 4724: -43.033993,1.5291753 - 4725: -43.21108,1.6229253 - 4726: -43.10691,1.5812583 - 4727: -43.065243,1.5812583 - 4728: -43.04441,1.8416748 - 4729: -43.08608,1.7375088 - 4730: -43.096493,1.7166748 - 4731: -43.05483,1.6333418 - 4732: -43.04441,1.6333418 - 4733: -43.002743,1.7375088 - 4734: -42.971493,1.8729248 - 4735: -42.971493,2.0916748 - 4736: -42.908993,1.7375088 - 4737: -42.86733,1.6333418 - 4738: -42.752743,1.9562588 + 4674: -43.02962,1.7583418 + 4675: -43.06087,1.6333418 + 4676: -43.06087,1.6333418 + 4677: -43.06087,1.5291753 + 4678: -42.82129,1.5812583 + 4679: -42.800453,1.8104248 + 4686: -43.16504,1.7062588 + 4687: -43.09212,1.8208418 + 4688: -43.112953,1.6541753 + 4689: -42.75879,1.7166748 + 4690: -42.85254,1.6229253 + 4691: -43.09212,1.7375088 + 4692: -42.737953,1.7895918 + 4693: -43.06087,2.1541748 + 4694: -43.050453,1.9354248 + 4695: -43.00879,2.0187588 + 4696: -42.831703,2.0083418 + 4697: -42.81087,1.8625088 + 4698: -42.81087,2.2687588 + 4699: -42.95066,2.3625088 + 4700: -42.95066,2.3625088 + 4701: -43.002743,2.3520918 + 4702: -42.96108,2.3520918 + 4703: -42.92983,2.3416748 + 4704: -42.908993,2.2895918 + 4705: -42.940243,2.2791748 + 4706: -43.033993,2.1229248 + 4707: -43.30483,2.3208418 + 4708: -43.29441,2.3000088 + 4709: -43.35691,2.3625088 + 4710: -42.60691,2.2062588 + 4711: -42.64858,2.4041748 + 4712: -42.71108,2.3833418 + 4713: -42.73191,2.3208418 + 4714: -42.74233,2.3000088 + 4715: -42.64858,2.2895918 + 4716: -42.721493,1.9041748 + 4717: -43.29441,1.6125083 + 4718: -43.033993,1.5291753 + 4719: -43.21108,1.6229253 + 4720: -43.10691,1.5812583 + 4721: -43.065243,1.5812583 + 4722: -43.04441,1.8416748 + 4723: -43.08608,1.7375088 + 4724: -43.096493,1.7166748 + 4725: -43.05483,1.6333418 + 4726: -43.04441,1.6333418 + 4727: -43.002743,1.7375088 + 4728: -42.971493,1.8729248 + 4729: -42.971493,2.0916748 + 4730: -42.908993,1.7375088 + 4731: -42.86733,1.6333418 + 4732: -42.752743,1.9562588 - node: color: '#FFFFFF4A' id: dot decals: - 4638: -43.10428,1.7791748 - 4639: -43.125114,1.7166748 - 4640: -43.145947,1.6854248 - 4641: -43.145947,1.6229253 - 4642: -43.145947,1.6125083 - 4643: -42.72928,1.7687588 - 4644: -42.69803,1.6854248 - 4645: -42.66678,1.6541753 - 4646: -42.718864,1.8208418 - 4647: -42.843864,1.7479248 - 4648: -43.26053,1.7166748 - 4649: -43.10428,1.6020918 - 4650: -43.093864,1.5916753 - 4651: -43.10428,1.5395918 - 4652: -43.10428,1.5187583 - 4653: -43.10428,1.5916753 - 4654: -43.13553,1.5187583 - 4655: -43.145947,1.5083418 - 4656: -43.145947,1.4250083 - 4657: -43.10428,1.6854248 - 4658: -43.093864,1.6541753 - 4659: -43.145947,1.5083418 - 4660: -43.093864,1.6125083 - 4661: -43.10428,1.6437583 - 4662: -42.750114,1.6437583 - 4663: -42.750114,1.5916753 - 4664: -42.718864,1.5395918 - 4665: -42.76053,1.6437583 - 4666: -42.770947,1.6541753 - 4667: -42.72928,1.5187583 - 4668: -42.72928,1.5187583 - 4669: -42.718864,1.5083418 - 4670: -42.833447,1.7583418 - 4671: -42.79178,1.6750088 - 4672: -42.79178,1.6750088 - 4673: -42.79178,1.6750088 - 4674: -42.802197,1.6854248 + 4632: -43.10428,1.7791748 + 4633: -43.125114,1.7166748 + 4634: -43.145947,1.6854248 + 4635: -43.145947,1.6229253 + 4636: -43.145947,1.6125083 + 4637: -42.72928,1.7687588 + 4638: -42.69803,1.6854248 + 4639: -42.66678,1.6541753 + 4640: -42.718864,1.8208418 + 4641: -42.843864,1.7479248 + 4642: -43.26053,1.7166748 + 4643: -43.10428,1.6020918 + 4644: -43.093864,1.5916753 + 4645: -43.10428,1.5395918 + 4646: -43.10428,1.5187583 + 4647: -43.10428,1.5916753 + 4648: -43.13553,1.5187583 + 4649: -43.145947,1.5083418 + 4650: -43.145947,1.4250083 + 4651: -43.10428,1.6854248 + 4652: -43.093864,1.6541753 + 4653: -43.145947,1.5083418 + 4654: -43.093864,1.6125083 + 4655: -43.10428,1.6437583 + 4656: -42.750114,1.6437583 + 4657: -42.750114,1.5916753 + 4658: -42.718864,1.5395918 + 4659: -42.76053,1.6437583 + 4660: -42.770947,1.6541753 + 4661: -42.72928,1.5187583 + 4662: -42.72928,1.5187583 + 4663: -42.718864,1.5083418 + 4664: -42.833447,1.7583418 + 4665: -42.79178,1.6750088 + 4666: -42.79178,1.6750088 + 4667: -42.79178,1.6750088 + 4668: -42.802197,1.6854248 - node: color: '#FFFFFF7F' id: dot decals: - 4939: -52.127415,-2.515714 - 4940: -50.113525,-1.1091104 - 4941: -50.011673,-1.0813327 - 4942: -49.67371,-1.3405919 - 4943: -49.64593,-1.4239254 - 4944: -53.372158,1.5700731 - 4945: -53.71012,3.701847 - 4946: -52.830494,3.6046247 - 4947: -53.182346,3.0861063 - 4948: -53.839752,2.9703655 - 4949: -52.214752,4.442588 - 4950: -51.433643,5.2423697 - 4951: -49.813274,5.746999 - 4952: -50.26235,4.834962 - 4953: -51.188274,5.6544065 - 4954: -49.01235,6.950715 - 4955: -48.98457,6.774789 - 4956: -49.336422,7.0942335 - 4957: -46.456295,0.8503432 - 4958: -46.632217,1.9151583 - 4959: -46.26185,0.33182478 - 4960: -44.312363,0.017009735 - 4961: -43.747547,0.52163935 - 4962: -40.90641,-1.1276984 - 4963: -41.684185,-2.4702911 - 4964: -41.929558,-1.1786242 - 4965: -39.832336,-1.6276984 - 4966: -42.719593,-4.016184 - 4967: -42.75962,-4.988406 - 4968: -43.528137,-5.580999 - 4969: -43.833694,-5.2198877 - 4970: -42.685547,-7.373399 - 4971: -42.37485,-7.790066 - 4972: -39.92514,-7.6141396 - 4973: -38.013103,-7.590992 - 4974: -37.721436,-7.1696954 - 4975: -37.790882,-8.169695 - 4976: -39.67514,-5.791623 - 4977: -39.4344,-5.383818 - 4978: -40.65919,-2.264267 - 4979: -39.881413,-1.6022301 - 4980: -41.487892,-2.4077857 - 4981: -39.78419,-1.6948228 - 4982: -40.983265,0.17944765 - 4983: -41.40456,-0.96472836 - 4984: -41.04808,1.891676 - 4985: -41.108265,1.1485705 - 4986: -40.325855,2.8846817 - 4987: -40.92308,3.3396664 + 4933: -52.127415,-2.515714 + 4934: -50.113525,-1.1091104 + 4935: -50.011673,-1.0813327 + 4936: -49.67371,-1.3405919 + 4937: -49.64593,-1.4239254 + 4938: -53.372158,1.5700731 + 4939: -53.71012,3.701847 + 4940: -52.830494,3.6046247 + 4941: -53.182346,3.0861063 + 4942: -53.839752,2.9703655 + 4943: -52.214752,4.442588 + 4944: -51.433643,5.2423697 + 4945: -49.813274,5.746999 + 4946: -50.26235,4.834962 + 4947: -51.188274,5.6544065 + 4948: -49.01235,6.950715 + 4949: -48.98457,6.774789 + 4950: -49.336422,7.0942335 + 4951: -46.456295,0.8503432 + 4952: -46.632217,1.9151583 + 4953: -46.26185,0.33182478 + 4954: -44.312363,0.017009735 + 4955: -43.747547,0.52163935 + 4956: -40.90641,-1.1276984 + 4957: -41.684185,-2.4702911 + 4958: -41.929558,-1.1786242 + 4959: -39.832336,-1.6276984 + 4960: -42.719593,-4.016184 + 4961: -42.75962,-4.988406 + 4962: -43.528137,-5.580999 + 4963: -43.833694,-5.2198877 + 4964: -42.685547,-7.373399 + 4965: -42.37485,-7.790066 + 4966: -39.92514,-7.6141396 + 4967: -38.013103,-7.590992 + 4968: -37.721436,-7.1696954 + 4969: -37.790882,-8.169695 + 4970: -39.67514,-5.791623 + 4971: -39.4344,-5.383818 + 4972: -40.65919,-2.264267 + 4973: -39.881413,-1.6022301 + 4974: -41.487892,-2.4077857 + 4975: -39.78419,-1.6948228 + 4976: -40.983265,0.17944765 + 4977: -41.40456,-0.96472836 + 4978: -41.04808,1.891676 + 4979: -41.108265,1.1485705 + 4980: -40.325855,2.8846817 + 4981: -40.92308,3.3396664 - node: angle: 1.5707963267948966 rad color: '#FFFFFFD3' id: dot decals: - 4487: -42.637115,1.6644049 + 4481: -42.637115,1.6644049 - node: color: '#FFFFFFFF' id: dot decals: - 4918: 9.058873,-15.7610655 + 4912: 9.058873,-15.7610655 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: dot decals: - 3996: -41.941578,-1.8322244 + 3990: -41.941578,-1.8322244 - node: color: '#00000026' id: footprint decals: - 3360: -11.098538,9.7046175 - 3361: -10.981814,10.154618 - 3362: -11.131888,10.61295 - 3363: -10.981814,11.229617 - 3364: -11.123551,11.63795 - 3365: -11.031839,12.196284 - 3366: -11.123551,12.587951 - 3367: -10.973476,13.246284 + 3354: -11.098538,9.7046175 + 3355: -10.981814,10.154618 + 3356: -11.131888,10.61295 + 3357: -10.981814,11.229617 + 3358: -11.123551,11.63795 + 3359: -11.031839,12.196284 + 3360: -11.123551,12.587951 + 3361: -10.973476,13.246284 - node: angle: 3.141592653589793 rad color: '#0000003F' id: footprint decals: - 3349: -10.755599,9.845897 - 3350: -10.588849,10.270898 - 3351: -10.797286,10.87923 - 3352: -10.605525,11.162564 - 3353: -10.713911,11.695897 - 3354: -10.5555,12.037564 - 3355: -10.738924,12.470897 - 3356: -10.597187,12.845897 - 3357: -10.713911,13.3375635 - 3358: -11.28086,13.35423 - 3359: -11.25695,9.644487 + 3343: -10.755599,9.845897 + 3344: -10.588849,10.270898 + 3345: -10.797286,10.87923 + 3346: -10.605525,11.162564 + 3347: -10.713911,11.695897 + 3348: -10.5555,12.037564 + 3349: -10.738924,12.470897 + 3350: -10.597187,12.845897 + 3351: -10.713911,13.3375635 + 3352: -11.28086,13.35423 + 3353: -11.25695,9.644487 - node: angle: -0.3490658503988659 rad color: '#00000049' id: footprint decals: - 3180: 4.1039333,27.617561 + 3174: 4.1039333,27.617561 - node: color: '#0000004C' id: footprint decals: - 3446: -20.982452,-3.519151 - 3447: -11.206538,-5.6867604 - 3448: -10.981426,-5.853427 + 3440: -20.982452,-3.519151 + 3441: -11.206538,-5.6867604 + 3442: -10.981426,-5.853427 - node: angle: 3.141592653589793 rad color: '#0000004C' id: footprint decals: - 3425: 34.93062,-4.670577 - 3426: 35.164066,-5.070577 - 3427: 34.834934,-5.5122437 - 3440: -4.1286335,9.290139 - 3441: -3.8368225,9.048472 - 3442: -4.045259,8.731806 - 3443: -10.830892,8.1907835 - 3444: -11.172728,8.340783 - 3445: -10.939279,7.8074503 + 3419: 34.93062,-4.670577 + 3420: 35.164066,-5.070577 + 3421: 34.834934,-5.5122437 + 3434: -4.1286335,9.290139 + 3435: -3.8368225,9.048472 + 3436: -4.045259,8.731806 + 3437: -10.830892,8.1907835 + 3438: -11.172728,8.340783 + 3439: -10.939279,7.8074503 - node: angle: 4.1887902047863905 rad color: '#0000004C' id: footprint decals: - 3414: 31.0494,-10.740388 - 3415: 31.574657,-10.698721 - 3416: 31.60801,-11.2237215 + 3408: 31.0494,-10.740388 + 3409: 31.574657,-10.698721 + 3410: 31.60801,-11.2237215 - node: angle: 4.71238898038469 rad color: '#0000004C' id: footprint decals: - 3417: 32.132362,-10.957054 - 3418: 32.56591,-11.165388 - 3419: 32.816036,-10.657055 - 3438: 40.02964,-12.205917 - 3439: 44.868904,-11.955917 + 3411: 32.132362,-10.957054 + 3412: 32.56591,-11.165388 + 3413: 32.816036,-10.657055 + 3432: 40.02964,-12.205917 + 3433: 44.868904,-11.955917 - node: angle: 5.061454830783556 rad color: '#0000004C' id: footprint decals: - 3420: 30.390522,-11.958366 - 3421: 30.548935,-12.308367 - 3422: 30.707344,-11.750033 - 3423: 31.21593,-11.658367 - 3424: 31.149231,-11.233366 + 3414: 30.390522,-11.958366 + 3415: 30.548935,-12.308367 + 3416: 30.707344,-11.750033 + 3417: 31.21593,-11.658367 + 3418: 31.149231,-11.233366 - node: angle: -0.6981317007977318 rad color: '#00000059' id: footprint decals: - 3316: -13.792624,4.26464 - 3317: -12.433617,5.656307 - 3318: -20.022747,-13.218853 - 3319: -19.597534,-13.135519 + 3310: -13.792624,4.26464 + 3311: -12.433617,5.656307 + 3312: -20.022747,-13.218853 + 3313: -19.597534,-13.135519 - node: angle: -0.5235987755982988 rad color: '#00000059' id: footprint decals: - 3466: 18.386501,11.985915 - 3467: 18.561588,12.485915 - 3468: 18.795038,12.319249 + 3460: 18.386501,11.985915 + 3461: 18.561588,12.485915 + 3462: 18.795038,12.319249 - node: color: '#00000059' id: footprint decals: - 3173: 32.876743,-6.954507 - 3219: -8.184889,4.6175995 - 3227: -14.013898,-5.863302 - 3228: -13.938861,-2.9133024 - 3255: 33.164364,-6.318264 - 3260: 35.873547,-13.903692 - 3301: 33.833355,-9.669671 - 3309: 3.6990843,8.759963 - 3310: 3.4989855,11.455241 - 3325: -13.020837,-11.373639 - 3375: 3.2576,20.580204 - 3376: 3.1825628,23.538536 - 3377: 9.584553,9.969136 - 3378: 9.909714,10.169137 - 3379: 9.851352,9.652471 - 3531: 5.542844,35.811058 - 3532: 6.2306848,35.998558 + 3167: 32.876743,-6.954507 + 3213: -8.184889,4.6175995 + 3221: -14.013898,-5.863302 + 3222: -13.938861,-2.9133024 + 3249: 33.164364,-6.318264 + 3254: 35.873547,-13.903692 + 3295: 33.833355,-9.669671 + 3303: 3.6990843,8.759963 + 3304: 3.4989855,11.455241 + 3319: -13.020837,-11.373639 + 3369: 3.2576,20.580204 + 3370: 3.1825628,23.538536 + 3371: 9.584553,9.969136 + 3372: 9.909714,10.169137 + 3373: 9.851352,9.652471 + 3525: 5.542844,35.811058 + 3526: 6.2306848,35.998558 - node: angle: 0.6981317007977318 rad color: '#00000059' id: footprint decals: - 3300: 34.925564,-12.353004 + 3294: 34.925564,-12.353004 - node: angle: 1.5707963267948966 rad color: '#00000059' id: footprint decals: - 3186: 0.75554395,27.168877 - 3187: 2.721216,27.083786 - 3234: -16.786346,5.0384912 - 3235: -19.448627,5.0551577 - 3236: 1.7211871,16.141106 - 3237: 2.0129988,15.816105 - 3245: 7.567274,-2.9306998 - 3246: 3.9627361,-2.8473666 - 3336: -19.790333,-2.978176 - 3337: -14.984727,-3.228176 - 3338: -15.251525,0.8099718 - 3339: -14.74294,1.0933056 - 3390: 0.9419985,-3.8593335 - 3391: -0.42534685,-3.667667 - 3399: 67.28892,-12.998103 - 3400: 64.02204,-12.798103 - 3459: -5.581503,5.1776495 - 3460: -10.188821,5.8443165 - 3461: 19.290333,12.719249 - 3462: 19.006859,13.052581 - 3463: 19.33202,10.919248 - 3464: 19.256983,11.194249 - 3465: 18.815098,11.002582 - 3529: 8.250923,36.808163 - 3530: 4.509483,37.22483 + 3180: 0.75554395,27.168877 + 3181: 2.721216,27.083786 + 3228: -16.786346,5.0384912 + 3229: -19.448627,5.0551577 + 3230: 1.7211871,16.141106 + 3231: 2.0129988,15.816105 + 3239: 7.567274,-2.9306998 + 3240: 3.9627361,-2.8473666 + 3330: -19.790333,-2.978176 + 3331: -14.984727,-3.228176 + 3332: -15.251525,0.8099718 + 3333: -14.74294,1.0933056 + 3384: 0.9419985,-3.8593335 + 3385: -0.42534685,-3.667667 + 3393: 67.28892,-12.998103 + 3394: 64.02204,-12.798103 + 3453: -5.581503,5.1776495 + 3454: -10.188821,5.8443165 + 3455: 19.290333,12.719249 + 3456: 19.006859,13.052581 + 3457: 19.33202,10.919248 + 3458: 19.256983,11.194249 + 3459: 18.815098,11.002582 + 3523: 8.250923,36.808163 + 3524: 4.509483,37.22483 - node: angle: 3.141592653589793 rad color: '#00000059' id: footprint decals: - 3188: 3.8467746,18.600864 - 3192: 3.8300972,17.067532 - 3205: 11.846925,5.606223 - 3206: 12.230448,6.056223 - 3266: 44.162716,-17.520412 - 3290: 69.04013,-16.812275 - 3291: 69.09016,-14.628942 - 3340: -11.255847,11.25423 - 3341: -10.905673,11.654231 - 3342: -11.289197,11.995896 - 3343: -10.922349,12.362563 - 3344: -11.239173,12.720897 - 3345: -10.905673,13.162564 - 3346: -10.997386,10.787564 - 3347: -11.205822,10.320897 - 3348: -10.955698,9.929231 + 3182: 3.8467746,18.600864 + 3186: 3.8300972,17.067532 + 3199: 11.846925,5.606223 + 3200: 12.230448,6.056223 + 3260: 44.162716,-17.520412 + 3284: 69.04013,-16.812275 + 3285: 69.09016,-14.628942 + 3334: -11.255847,11.25423 + 3335: -10.905673,11.654231 + 3336: -11.289197,11.995896 + 3337: -10.922349,12.362563 + 3338: -11.239173,12.720897 + 3339: -10.905673,13.162564 + 3340: -10.997386,10.787564 + 3341: -11.205822,10.320897 + 3342: -10.955698,9.929231 - node: cleanable: True angle: 3.141592653589793 rad color: '#00000059' id: footprint decals: - 3741: 11.77309,3.9220514 + 3735: 11.77309,3.9220514 - node: angle: 4.71238898038469 rad color: '#00000059' id: footprint decals: - 3193: 4.544463,21.13601 - 3194: 4.8612876,20.869343 - 3195: 5.136424,21.111008 - 3203: 2.438377,7.2145567 - 3204: -1.2134347,7.1145563 - 3250: -3.1255393,-4.918768 - 3267: 48.256664,-11.792674 - 3268: 48.648525,-12.026008 - 3269: 49.09041,-11.776008 - 3270: 47.89815,-12.076008 - 3271: 47.24783,-11.809341 - 3272: 60.153637,-11.851007 - 3273: 60.770607,-12.067675 - 3274: 61.312546,-11.834341 - 3275: 61.896168,-12.117674 - 3283: 72.88692,-12.124117 - 3284: 69.66032,-12.190783 - 3436: 44.439587,-12.261619 - 3437: 40.370266,-11.894952 + 3187: 4.544463,21.13601 + 3188: 4.8612876,20.869343 + 3189: 5.136424,21.111008 + 3197: 2.438377,7.2145567 + 3198: -1.2134347,7.1145563 + 3244: -3.1255393,-4.918768 + 3261: 48.256664,-11.792674 + 3262: 48.648525,-12.026008 + 3263: 49.09041,-11.776008 + 3264: 47.89815,-12.076008 + 3265: 47.24783,-11.809341 + 3266: 60.153637,-11.851007 + 3267: 60.770607,-12.067675 + 3268: 61.312546,-11.834341 + 3269: 61.896168,-12.117674 + 3277: 72.88692,-12.124117 + 3278: 69.66032,-12.190783 + 3430: 44.439587,-12.261619 + 3431: 40.370266,-11.894952 - node: angle: 5.1487212933832724 rad color: '#00000059' id: footprint decals: - 3214: 14.55651,8.946036 - 3215: 17.05508,10.843181 + 3208: 14.55651,8.946036 + 3209: 17.05508,10.843181 - node: angle: -0.6981317007977318 rad color: '#00000066' id: footprint decals: - 3314: -12.416942,5.147974 - 3315: -13.300714,4.397974 + 3308: -12.416942,5.147974 + 3309: -13.300714,4.397974 - node: color: '#00000066' id: footprint decals: - 3169: 32.91843,-8.17948 - 3170: 33.135204,-7.87948 - 3171: 32.876743,-7.5878134 - 3172: 33.143543,-7.2461467 - 3216: -8.11819,4.040328 - 3217: -7.843053,4.340328 - 3218: -7.876403,3.7403278 - 3225: -13.655387,-5.483936 - 3226: -13.638711,-3.239821 - 3254: 32.830864,-5.959931 - 3259: 36.182034,-14.245358 - 3307: 3.9241962,9.134963 - 3308: 3.8491583,11.159963 - 3324: -13.279298,-11.752127 - 3373: 3.5160618,20.921871 - 3374: 3.4993868,23.14687 + 3163: 32.91843,-8.17948 + 3164: 33.135204,-7.87948 + 3165: 32.876743,-7.5878134 + 3166: 33.143543,-7.2461467 + 3210: -8.11819,4.040328 + 3211: -7.843053,4.340328 + 3212: -7.876403,3.7403278 + 3219: -13.655387,-5.483936 + 3220: -13.638711,-3.239821 + 3248: 32.830864,-5.959931 + 3253: 36.182034,-14.245358 + 3301: 3.9241962,9.134963 + 3302: 3.8491583,11.159963 + 3318: -13.279298,-11.752127 + 3367: 3.5160618,20.921871 + 3368: 3.4993868,23.14687 - node: angle: 0.17453292519943295 rad color: '#00000066' id: footprint decals: - 3298: 33.516533,-10.053005 + 3292: 33.516533,-10.053005 - node: angle: 0.6981317007977318 rad color: '#00000066' id: footprint decals: - 3299: 34.95891,-11.878004 + 3293: 34.95891,-11.878004 - node: angle: 0.8726646259971648 rad color: '#00000066' id: footprint decals: - 3402: 30.221973,-9.887358 - 3403: 29.93016,-9.870691 - 3404: 31.08073,-10.120691 - 3405: 30.980682,-10.395691 - 3406: 31.572643,-10.637325 - 3407: 31.731052,-11.087325 + 3396: 30.221973,-9.887358 + 3397: 29.93016,-9.870691 + 3398: 31.08073,-10.120691 + 3399: 30.980682,-10.395691 + 3400: 31.572643,-10.637325 + 3401: 31.731052,-11.087325 - node: angle: 1.5707963267948966 rad color: '#00000066' id: footprint decals: - 3184: 2.4230378,26.852211 - 3185: 1.0640304,26.90221 - 3232: -19.112503,4.7468243 - 3233: -17.294933,4.7468243 - 3243: 7.0086646,-3.2140331 - 3244: 4.4657364,-3.1723666 - 3334: -15.33533,-2.969843 - 3335: -19.32898,-3.228176 - 3385: 11.941216,8.399758 - 3386: 9.114815,8.533092 - 3387: -0.15368462,-3.969049 - 3388: 0.28820133,-3.7773824 - 3389: 0.5633378,-4.0857153 - 3397: 66.9314,-12.677427 - 3398: 64.51524,-12.523103 - 3401: 30.55547,-10.095692 - 3408: 32.214626,-10.820658 - 3409: 32.33969,-11.1456585 - 3410: 32.8983,-10.912325 - 3457: -5.9631176,5.4693165 - 3458: -9.873694,5.494316 - 3527: 8.0320635,37.183163 - 3528: 4.915935,36.933163 + 3178: 2.4230378,26.852211 + 3179: 1.0640304,26.90221 + 3226: -19.112503,4.7468243 + 3227: -17.294933,4.7468243 + 3237: 7.0086646,-3.2140331 + 3238: 4.4657364,-3.1723666 + 3328: -15.33533,-2.969843 + 3329: -19.32898,-3.228176 + 3379: 11.941216,8.399758 + 3380: 9.114815,8.533092 + 3381: -0.15368462,-3.969049 + 3382: 0.28820133,-3.7773824 + 3383: 0.5633378,-4.0857153 + 3391: 66.9314,-12.677427 + 3392: 64.51524,-12.523103 + 3395: 30.55547,-10.095692 + 3402: 32.214626,-10.820658 + 3403: 32.33969,-11.1456585 + 3404: 32.8983,-10.912325 + 3451: -5.9631176,5.4693165 + 3452: -9.873694,5.494316 + 3521: 8.0320635,37.183163 + 3522: 4.915935,36.933163 - node: angle: 3.141592653589793 rad color: '#00000066' id: footprint decals: - 3189: 4.0802217,18.159199 - 3191: 4.155258,17.49253 - 3265: 43.91259,-17.92041 - 3288: 69.36529,-15.001664 - 3289: 69.35695,-16.337276 + 3183: 4.0802217,18.159199 + 3185: 4.155258,17.49253 + 3259: 43.91259,-17.92041 + 3282: 69.36529,-15.001664 + 3283: 69.35695,-16.337276 - node: cleanable: True angle: 3.141592653589793 rad color: '#00000066' id: footprint decals: - 3740: 12.132644,4.3491344 + 3734: 12.132644,4.3491344 - node: angle: 4.71238898038469 rad color: '#00000066' id: footprint decals: - 3201: 2.0131662,6.8312235 - 3202: -0.75487375,6.8645563 - 3249: -3.5507503,-5.2104344 - 3281: 72.485695,-12.432449 - 3282: 70.0204,-12.465783 - 3411: 30.026093,-10.132055 - 3412: 30.618053,-9.915388 - 3413: 30.684753,-10.448721 - 3434: 43.986233,-11.936619 - 3435: 40.69489,-12.236618 + 3195: 2.0131662,6.8312235 + 3196: -0.75487375,6.8645563 + 3243: -3.5507503,-5.2104344 + 3275: 72.485695,-12.432449 + 3276: 70.0204,-12.465783 + 3405: 30.026093,-10.132055 + 3406: 30.618053,-9.915388 + 3407: 30.684753,-10.448721 + 3428: 43.986233,-11.936619 + 3429: 40.69489,-12.236618 - node: angle: 5.1487212933832724 rad color: '#00000066' id: footprint decals: - 3212: 14.966305,8.787703 - 3213: 16.967297,10.254369 + 3206: 14.966305,8.787703 + 3207: 16.967297,10.254369 - node: angle: -0.6981317007977318 rad color: '#00000072' id: footprint decals: - 3311: -13.275701,4.8813066 - 3312: -12.900516,4.8396406 - 3313: -12.833816,5.2563066 + 3305: -13.275701,4.8813066 + 3306: -12.900516,4.8396406 + 3307: -12.833816,5.2563066 - node: angle: -0.3490658503988659 rad color: '#00000072' id: footprint decals: - 3179: 37.748882,-10.8032675 + 3173: 37.748882,-10.8032675 - node: color: '#00000072' id: footprint decals: - 3220: -13.980548,-5.2225666 - 3221: -13.722087,-4.764233 - 3222: -13.997224,-4.3392334 - 3223: -13.680398,-3.9808998 - 3224: -14.038911,-3.4833052 - 3251: 33.181038,-4.701597 - 3252: 32.830864,-5.1349306 - 3253: 33.156025,-5.609931 - 3256: 35.915234,-15.195358 - 3257: 36.173695,-14.853692 - 3258: 35.873547,-14.478692 - 3302: 3.5906968,9.3611965 - 3303: 3.8574958,9.79453 - 3304: 3.5656848,10.244531 - 3305: 3.8825092,10.51953 - 3306: 3.4989855,10.8182955 - 3320: -13.245948,-13.075383 - 3321: -13.04585,-12.833717 - 3322: -13.245948,-12.400383 - 3323: -13.004163,-11.9937935 - 3368: 3.1825628,21.155205 - 3369: 3.3576493,21.680206 - 3370: 3.1825628,22.121872 - 3371: 3.4910488,22.438538 - 3372: 3.1825628,22.938538 + 3214: -13.980548,-5.2225666 + 3215: -13.722087,-4.764233 + 3216: -13.997224,-4.3392334 + 3217: -13.680398,-3.9808998 + 3218: -14.038911,-3.4833052 + 3245: 33.181038,-4.701597 + 3246: 32.830864,-5.1349306 + 3247: 33.156025,-5.609931 + 3250: 35.915234,-15.195358 + 3251: 36.173695,-14.853692 + 3252: 35.873547,-14.478692 + 3296: 3.5906968,9.3611965 + 3297: 3.8574958,9.79453 + 3298: 3.5656848,10.244531 + 3299: 3.8825092,10.51953 + 3300: 3.4989855,10.8182955 + 3314: -13.245948,-13.075383 + 3315: -13.04585,-12.833717 + 3316: -13.245948,-12.400383 + 3317: -13.004163,-11.9937935 + 3362: 3.1825628,21.155205 + 3363: 3.3576493,21.680206 + 3364: 3.1825628,22.121872 + 3365: 3.4910488,22.438538 + 3366: 3.1825628,22.938538 - node: angle: 0.17453292519943295 rad color: '#00000072' id: footprint decals: - 3296: 33.724968,-10.661338 - 3297: 33.95008,-10.211338 + 3290: 33.724968,-10.661338 + 3291: 33.95008,-10.211338 - node: angle: 0.5235987755982988 rad color: '#00000072' id: footprint decals: - 3292: 34.483677,-11.869671 - 3293: 34.56705,-11.336338 - 3294: 33.958416,-11.219671 - 3295: 34.216877,-10.778005 + 3286: 34.483677,-11.869671 + 3287: 34.56705,-11.336338 + 3288: 33.958416,-11.219671 + 3289: 34.216877,-10.778005 - node: angle: 1.5707963267948966 rad color: '#00000072' id: footprint decals: - 3181: 1.3058171,27.160545 - 3182: 1.7143528,26.90221 - 3183: 2.0978765,27.143879 - 3229: -18.195381,4.8051577 - 3230: -17.67012,4.9968243 - 3231: -18.745655,5.030158 - 3238: 4.749211,-2.8640332 - 3239: 5.1327343,-3.1306999 - 3240: 5.6163073,-2.9140332 - 3241: 6.049856,-3.1723666 - 3242: 6.6168036,-2.9140332 - 3326: -15.852853,-3.153176 - 3327: -16.311413,-2.978176 - 3328: -16.844585,-3.2365096 - 3329: -17.052849,-2.9448428 - 3330: -17.478062,-3.1948428 - 3331: -17.97831,-2.9448428 - 3332: -18.336819,-3.278176 - 3333: -18.945454,-2.9365094 - 3380: 9.581395,8.291425 - 3381: 10.106656,8.483091 - 3382: 10.465167,8.191424 - 3383: 11.032115,8.458092 - 3384: 11.3075695,8.149758 - 3392: 64.87704,-12.787621 - 3393: 65.38562,-12.595954 - 3394: 65.64408,-12.870954 - 3395: 66.164345,-12.637621 - 3396: 66.57288,-12.929287 - 3455: -6.381278,5.1776495 - 3456: -9.382767,5.744316 - 3521: 5.311965,37.183163 - 3522: 5.687151,36.94358 - 3523: 6.260351,37.183163 - 3524: 6.604272,36.860245 - 3525: 7.2295823,37.151913 - 3526: 7.521394,36.860245 + 3175: 1.3058171,27.160545 + 3176: 1.7143528,26.90221 + 3177: 2.0978765,27.143879 + 3223: -18.195381,4.8051577 + 3224: -17.67012,4.9968243 + 3225: -18.745655,5.030158 + 3232: 4.749211,-2.8640332 + 3233: 5.1327343,-3.1306999 + 3234: 5.6163073,-2.9140332 + 3235: 6.049856,-3.1723666 + 3236: 6.6168036,-2.9140332 + 3320: -15.852853,-3.153176 + 3321: -16.311413,-2.978176 + 3322: -16.844585,-3.2365096 + 3323: -17.052849,-2.9448428 + 3324: -17.478062,-3.1948428 + 3325: -17.97831,-2.9448428 + 3326: -18.336819,-3.278176 + 3327: -18.945454,-2.9365094 + 3374: 9.581395,8.291425 + 3375: 10.106656,8.483091 + 3376: 10.465167,8.191424 + 3377: 11.032115,8.458092 + 3378: 11.3075695,8.149758 + 3386: 64.87704,-12.787621 + 3387: 65.38562,-12.595954 + 3388: 65.64408,-12.870954 + 3389: 66.164345,-12.637621 + 3390: 66.57288,-12.929287 + 3449: -6.381278,5.1776495 + 3450: -9.382767,5.744316 + 3515: 5.311965,37.183163 + 3516: 5.687151,36.94358 + 3517: 6.260351,37.183163 + 3518: 6.604272,36.860245 + 3519: 7.2295823,37.151913 + 3520: 7.521394,36.860245 - node: angle: 3.141592653589793 rad color: '#00000072' id: footprint decals: - 3190: 3.8384347,17.842533 - 3261: 43.97929,-19.233694 - 3262: 44.17105,-18.87536 - 3263: 43.92093,-18.45036 - 3264: 44.187725,-18.233694 - 3285: 69.08182,-16.074852 - 3286: 69.34028,-15.69152 - 3287: 69.09016,-15.333186 + 3184: 3.8384347,17.842533 + 3255: 43.97929,-19.233694 + 3256: 44.17105,-18.87536 + 3257: 43.92093,-18.45036 + 3258: 44.187725,-18.233694 + 3279: 69.08182,-16.074852 + 3280: 69.34028,-15.69152 + 3281: 69.09016,-15.333186 - node: angle: 4.71238898038469 rad color: '#00000072' id: footprint decals: - 3196: -0.32738662,7.1728897 - 3197: 0.064474344,6.8812237 - 3198: 0.6314218,7.1645565 - 3199: 1.0904765,6.8395567 - 3200: 1.5629425,7.1645565 - 3247: -4.2010727,-5.168768 - 3248: -3.8842487,-4.8937674 - 3276: 70.37279,-12.20745 - 3277: 70.82301,-12.465783 - 3278: 71.23989,-12.182449 - 3279: 71.763115,-12.440783 - 3280: 72.0299,-12.10745 - 3428: 41.092636,-11.919952 - 3429: 41.551197,-12.194952 - 3430: 41.959732,-11.886619 - 3431: 42.470074,-12.178286 - 3432: 42.998207,-11.878285 - 3433: 43.462997,-12.178286 + 3190: -0.32738662,7.1728897 + 3191: 0.064474344,6.8812237 + 3192: 0.6314218,7.1645565 + 3193: 1.0904765,6.8395567 + 3194: 1.5629425,7.1645565 + 3241: -4.2010727,-5.168768 + 3242: -3.8842487,-4.8937674 + 3270: 70.37279,-12.20745 + 3271: 70.82301,-12.465783 + 3272: 71.23989,-12.182449 + 3273: 71.763115,-12.440783 + 3274: 72.0299,-12.10745 + 3422: 41.092636,-11.919952 + 3423: 41.551197,-12.194952 + 3424: 41.959732,-11.886619 + 3425: 42.470074,-12.178286 + 3426: 42.998207,-11.878285 + 3427: 43.462997,-12.178286 - node: angle: 5.1487212933832724 rad color: '#00000072' id: footprint decals: - 3207: 15.099704,9.212703 - 3208: 15.599953,9.346036 - 3209: 15.80839,9.837703 - 3210: 16.341988,9.846036 - 3211: 16.458714,10.4127035 + 3201: 15.099704,9.212703 + 3202: 15.599953,9.346036 + 3203: 15.80839,9.837703 + 3204: 16.341988,9.846036 + 3205: 16.458714,10.4127035 - node: angle: -0.3490658503988659 rad color: '#0000007F' id: footprint decals: - 3178: 38.090717,-10.6366005 + 3172: 38.090717,-10.6366005 - node: color: '#0000007F' id: footprint decals: - 3177: 38.065704,-9.668319 + 3171: 38.065704,-9.668319 - node: angle: 1.5707963267948966 rad color: '#0000007F' id: footprint decals: - 3449: -9.19943,5.45265 - 3450: -8.6241455,5.6026497 - 3451: -8.449059,5.3359833 - 3452: -7.709367,5.569317 - 3453: -7.325843,5.2193165 - 3454: -6.731452,5.4693165 + 3443: -9.19943,5.45265 + 3444: -8.6241455,5.6026497 + 3445: -8.449059,5.3359833 + 3446: -7.709367,5.569317 + 3447: -7.325843,5.2193165 + 3448: -6.731452,5.4693165 - node: color: '#0000008C' id: footprint decals: - 3176: 37.832256,-9.934986 + 3170: 37.832256,-9.934986 - node: color: '#00000099' id: footprint decals: - 3174: 37.84893,-10.435874 - 3175: 38.065704,-10.135874 + 3168: 37.84893,-10.435874 + 3169: 38.065704,-10.135874 - node: cleanable: True color: '#42414936' id: footprint decals: - 2236: 33.1593,-3.062941 - 2237: 32.825806,-2.7114851 + 2231: 33.1593,-3.062941 + 2232: 32.825806,-2.7114851 - node: cleanable: True color: '#42414968' id: footprint decals: - 2233: 32.75742,-4.049373 - 2234: 33.184715,-3.5745826 - 2235: 32.809532,-3.3037493 + 2228: 32.75742,-4.049373 + 2229: 33.184715,-3.5745826 + 2230: 32.809532,-3.3037493 - node: cleanable: True angle: 1.5707963267948966 rad color: '#42414968' id: footprint decals: - 2231: 32.39423,-11.185968 - 2232: 31.886757,-10.748468 + 2226: 32.39423,-11.185968 + 2227: 31.886757,-10.748468 - node: cleanable: True angle: 3.141592653589793 rad color: '#42414968' id: footprint decals: - 2230: 11.869004,5.016307 + 2225: 11.869004,5.016307 - node: cleanable: True angle: -0.3490658503988659 rad color: '#4C484B53' id: footprint decals: - 2240: 6.09474,35.383728 + 2235: 6.09474,35.383728 - node: cleanable: True color: '#4C484B53' id: footprint decals: - 2238: 4.83913,35.217064 - 2239: 5.266424,35.467064 + 2233: 4.83913,35.217064 + 2234: 5.266424,35.467064 - node: color: '#4D4D4DFF' id: footprint decals: - 3850: -53.54211,-0.39407063 - 3851: -52.312943,-0.40795946 + 3844: -53.54211,-0.39407063 + 3845: -52.312943,-0.40795946 - node: angle: -0.3490658503988659 rad color: '#8285813C' id: footprint decals: - 2228: 5.4926143,34.46163 - 2229: 5.4821925,35.0658 + 2223: 5.4926143,34.46163 + 2224: 5.4821925,35.0658 - node: angle: -0.17453292519943295 rad color: '#8285813C' id: footprint decals: - 2215: 4.453151,27.762356 - 2216: 4.776228,28.189442 - 2217: 4.55737,28.679024 - 2218: 4.8283367,29.275196 - 2219: 4.567792,29.723114 - 2220: 4.9429774,30.271767 - 2221: 4.682431,30.84222 - 2222: 5.0765696,31.102638 - 2223: 4.9202423,31.56097 - 2224: 5.1599436,32.10762 - 2225: 4.888977,32.284702 - 2226: 5.180787,33.70502 - 2227: 4.982773,34.241306 + 2210: 4.453151,27.762356 + 2211: 4.776228,28.189442 + 2212: 4.55737,28.679024 + 2213: 4.8283367,29.275196 + 2214: 4.567792,29.723114 + 2215: 4.9429774,30.271767 + 2216: 4.682431,30.84222 + 2217: 5.0765696,31.102638 + 2218: 4.9202423,31.56097 + 2219: 5.1599436,32.10762 + 2220: 4.888977,32.284702 + 2221: 5.180787,33.70502 + 2222: 4.982773,34.241306 - node: angle: -0.17453292519943295 rad color: '#82858193' id: footprint decals: - 2212: 4.959087,28.44014 - 2213: 4.5526347,28.148472 - 2214: 4.761071,27.641556 + 2207: 4.959087,28.44014 + 2208: 4.5526347,28.148472 + 2209: 4.761071,27.641556 - node: color: '#82858193' id: footprint decals: - 2198: 4.7165256,28.89534 - 2199: 5.018759,29.245625 - 2200: 4.7582126,29.672707 - 2201: 5.112556,29.974789 - 2202: 4.841588,30.429298 - 2203: 5.1571016,30.801548 - 2204: 4.9173985,31.207798 - 2205: 5.14668,31.426548 - 2206: 4.9382434,31.924816 - 2207: 5.14668,32.310234 - 2208: 4.9278216,33.674522 - 2209: 5.230054,34.049522 - 2210: 4.9069767,34.39691 - 2211: 5.2508974,34.77191 + 2193: 4.7165256,28.89534 + 2194: 5.018759,29.245625 + 2195: 4.7582126,29.672707 + 2196: 5.112556,29.974789 + 2197: 4.841588,30.429298 + 2198: 5.1571016,30.801548 + 2199: 4.9173985,31.207798 + 2200: 5.14668,31.426548 + 2201: 4.9382434,31.924816 + 2202: 5.14668,32.310234 + 2203: 4.9278216,33.674522 + 2204: 5.230054,34.049522 + 2205: 4.9069767,34.39691 + 2206: 5.2508974,34.77191 - node: angle: 4.71238898038469 rad color: '#FFFFFF02' id: grasssnow decals: - 3998: -43,-2 - 3999: -42,-2 - 4000: -43,-1 - 4070: -51.127663,-4.838518 - 4071: -51.086,-4.817685 - 4072: -51.086,-4.817685 - 4073: -51.086,-4.817685 - 4074: -51.086,-4.817685 - 4075: -51.086,-4.817685 + 3992: -43,-2 + 3993: -42,-2 + 3994: -43,-1 + 4064: -51.127663,-4.838518 + 4065: -51.086,-4.817685 + 4066: -51.086,-4.817685 + 4067: -51.086,-4.817685 + 4068: -51.086,-4.817685 + 4069: -51.086,-4.817685 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFF04' id: grasssnow decals: - 2194: -11,-6 + 2189: -11,-6 - node: angle: 4.71238898038469 rad color: '#FFFFFF05' id: grasssnow decals: - 3997: -43,-2 + 3991: -43,-2 - node: angle: 1.5707963267948966 rad color: '#FFFFFF06' id: grasssnow decals: - 2436: 29,-12 + 2430: 29,-12 - node: color: '#FFFFFF07' id: grasssnow decals: - 5248: -51,15 - 5249: -51,15 - 5250: -45,15 - 5251: -41,15 + 5242: -51,15 + 5243: -51,15 + 5244: -45,15 + 5245: -41,15 - node: angle: 1.5707963267948966 rad color: '#FFFFFF07' id: grasssnow decals: - 2731: 36,-46 - 2732: 36,-45 - 2733: 37,-45 - 2734: 40,-46 - 2735: 41,-46 - 2736: 42,-45 - 2737: 43,-47 - 2738: 45,-45 - 2739: 47,-46 - 2740: 46,-47 - 2741: 49,-45 - 2742: 33,-47 - 2743: 34,-47 - 2767: 6,-25 - 2768: 5,-25 - 2769: 9,-24 - 2770: 8,-24 - 2771: 9,-26 - 2772: 11,-24 - 2773: 1,-25 - 2774: 2,-25 - 2775: 1,-24 - 2776: 3,-26 - 2777: 4,-24 + 2725: 36,-46 + 2726: 36,-45 + 2727: 37,-45 + 2728: 40,-46 + 2729: 41,-46 + 2730: 42,-45 + 2731: 43,-47 + 2732: 45,-45 + 2733: 47,-46 + 2734: 46,-47 + 2735: 49,-45 + 2736: 33,-47 + 2737: 34,-47 + 2761: 6,-25 + 2762: 5,-25 + 2763: 9,-24 + 2764: 8,-24 + 2765: 9,-26 + 2766: 11,-24 + 2767: 1,-25 + 2768: 2,-25 + 2769: 1,-24 + 2770: 3,-26 + 2771: 4,-24 - node: cleanable: True color: '#FFFFFF08' id: grasssnow decals: - 2189: 31,-11 - 2191: 29,-10 + 2184: 31,-11 + 2186: 29,-10 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFF08' id: grasssnow decals: - 2190: 28,-11 + 2185: 28,-11 - node: color: '#FFFFFF0A' id: grasssnow decals: - 5180: -28,-21 - 5181: -28,-21 - 5182: -33,-21 - 5183: -33,-21 - 5184: -35,-21 - 5185: -35,-21 - 5186: -37,-21 - 5187: -37,-17 - 5188: -33,-17 + 5174: -28,-21 + 5175: -28,-21 + 5176: -33,-21 + 5177: -33,-21 + 5178: -35,-21 + 5179: -35,-21 + 5180: -37,-21 + 5181: -37,-17 + 5182: -33,-17 - node: angle: 1.5707963267948966 rad color: '#FFFFFF0C' id: grasssnow decals: - 2697: 48,-45 - 2698: 50,-45 - 2699: 50,-46 - 2700: 49,-47 - 2701: 50,-47 - 2702: 48,-47 - 2703: 47,-47 - 2704: 47,-45 - 2705: 46,-46 - 2706: 46,-45 - 2707: 45,-46 - 2708: 45,-47 - 2709: 44,-47 - 2710: 44,-45 - 2711: 43,-45 - 2712: 42,-46 - 2713: 42,-47 - 2714: 41,-47 - 2715: 41,-45 - 2716: 40,-45 - 2717: 40,-47 - 2718: 39,-47 - 2719: 39,-46 - 2720: 39,-45 - 2721: 38,-47 - 2722: 38,-45 - 2723: 37,-46 - 2724: 37,-47 - 2725: 36,-47 - 2726: 35,-47 - 2727: 35,-46 - 2728: 35,-45 - 2729: 34,-45 - 2730: 33,-46 - 2751: 2,-24 - 2752: 2,-26 - 2753: 3,-25 - 2754: 3,-24 - 2755: 4,-26 - 2756: 4,-25 - 2757: 5,-24 - 2758: 7,-26 - 2759: 7,-25 - 2760: 7,-24 - 2761: 8,-26 - 2762: 10,-26 - 2763: 10,-25 - 2764: 10,-24 - 2765: 11,-26 - 2766: 11,-25 + 2691: 48,-45 + 2692: 50,-45 + 2693: 50,-46 + 2694: 49,-47 + 2695: 50,-47 + 2696: 48,-47 + 2697: 47,-47 + 2698: 47,-45 + 2699: 46,-46 + 2700: 46,-45 + 2701: 45,-46 + 2702: 45,-47 + 2703: 44,-47 + 2704: 44,-45 + 2705: 43,-45 + 2706: 42,-46 + 2707: 42,-47 + 2708: 41,-47 + 2709: 41,-45 + 2710: 40,-45 + 2711: 40,-47 + 2712: 39,-47 + 2713: 39,-46 + 2714: 39,-45 + 2715: 38,-47 + 2716: 38,-45 + 2717: 37,-46 + 2718: 37,-47 + 2719: 36,-47 + 2720: 35,-47 + 2721: 35,-46 + 2722: 35,-45 + 2723: 34,-45 + 2724: 33,-46 + 2745: 2,-24 + 2746: 2,-26 + 2747: 3,-25 + 2748: 3,-24 + 2749: 4,-26 + 2750: 4,-25 + 2751: 5,-24 + 2752: 7,-26 + 2753: 7,-25 + 2754: 7,-24 + 2755: 8,-26 + 2756: 10,-26 + 2757: 10,-25 + 2758: 10,-24 + 2759: 11,-26 + 2760: 11,-25 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFF0C' id: grasssnow decals: - 2193: -12,-6 + 2188: -12,-6 - node: color: '#FFFFFF11' id: grasssnow decals: - 5194: -48,-9 - 5195: -48,-9 - 5196: -47,-9 - 5197: -46,-9 - 5198: -52,-8 - 5199: -33,-1 - 5200: -29,-1 - 5201: -29,3 - 5202: -29,-1 - 5203: -39.978,5.752967 - 5204: -39.75925,6.002967 - 5205: -40.57175,6.081092 - 5206: -40.743626,5.534217 - 5207: -45.0405,10.112342 - 5208: -44.931126,9.502967 - 5209: -45.67262,8.480393 - 5210: -46.04762,11.027268 - 5211: -46.32887,10.246018 - 5212: -47.031994,10.964768 - 5213: -47.04762,9.917893 - 5214: -46.031994,10.871018 - 5215: -46.406994,9.652268 - 5216: -49.110054,10.980393 - 5217: -53.016304,11.011643 - 5218: -44.753372,9.09876 - 5219: -44.659622,8.28626 - 5220: -43.987747,8.13001 - 5221: -44.175247,10.071033 - 5222: -44.487747,9.211658 - 5223: -44.503372,8.555408 - 5224: -44.112747,8.367908 + 5188: -48,-9 + 5189: -48,-9 + 5190: -47,-9 + 5191: -46,-9 + 5192: -52,-8 + 5193: -33,-1 + 5194: -29,-1 + 5195: -29,3 + 5196: -29,-1 + 5197: -39.978,5.752967 + 5198: -39.75925,6.002967 + 5199: -40.57175,6.081092 + 5200: -40.743626,5.534217 + 5201: -45.0405,10.112342 + 5202: -44.931126,9.502967 + 5203: -45.67262,8.480393 + 5204: -46.04762,11.027268 + 5205: -46.32887,10.246018 + 5206: -47.031994,10.964768 + 5207: -47.04762,9.917893 + 5208: -46.031994,10.871018 + 5209: -46.406994,9.652268 + 5210: -49.110054,10.980393 + 5211: -53.016304,11.011643 + 5212: -44.753372,9.09876 + 5213: -44.659622,8.28626 + 5214: -43.987747,8.13001 + 5215: -44.175247,10.071033 + 5216: -44.487747,9.211658 + 5217: -44.503372,8.555408 + 5218: -44.112747,8.367908 - node: angle: 1.5707963267948966 rad color: '#FFFFFF11' id: grasssnow decals: - 2744: 33,-45 - 2745: 38,-46 - 2746: 34,-46 - 2747: 43,-46 - 2748: 44,-46 - 2749: 49,-46 - 2750: 48,-46 - 2778: 9,-25 - 2779: 8,-25 - 2780: 1,-26 - 2781: 6,-24 - 2782: 5,-26 - 2783: 6,-26 + 2738: 33,-45 + 2739: 38,-46 + 2740: 34,-46 + 2741: 43,-46 + 2742: 44,-46 + 2743: 49,-46 + 2744: 48,-46 + 2772: 9,-25 + 2773: 8,-25 + 2774: 1,-26 + 2775: 6,-24 + 2776: 5,-26 + 2777: 6,-26 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFF11' id: grasssnow decals: - 2195: 6,9 + 2190: 6,9 - node: color: '#FFFFFF14' id: grasssnow decals: - 5190: -33,-13 - 5191: -33,-9 - 5192: -33,-5 - 5193: -48,-13 + 5184: -33,-13 + 5185: -33,-9 + 5186: -33,-5 + 5187: -48,-13 - node: color: '#FFFFFF15' id: grasssnow decals: - 5014: -53.13469,2.4589567 - 5015: -53.087814,2.7402067 - 5016: -52.931564,2.6620817 - 5017: -52.962814,1.9120817 - 5018: -52.900314,1.6308322 - 5019: -52.69719,1.4120822 - 5020: -52.556564,1.3964572 - 5021: -52.431564,1.1308322 - 5022: -50.16594,0.7870822 - 5023: -50.025314,0.8652072 - 5024: -50.60344,0.6777072 - 5025: -50.806564,0.5370822 - 5026: -50.869064,0.2245822 - 5027: -50.88469,-0.1347928 - 5028: -50.494064,0.5995822 - 5029: -50.07219,0.9745822 - 5030: -49.75969,0.9745822 - 5031: -48.744064,0.5370822 - 5032: -51.99019,3.9568892 - 5033: -52.162064,4.113139 - 5034: -52.162064,4.113139 - 5035: -52.27144,4.113139 - 5036: -52.505814,4.175639 - 5037: -52.505814,4.175639 - 5038: -52.17769,4.175639 - 5039: -52.537064,3.8943892 - 5040: -53.162064,3.4881392 - 5041: -53.05269,3.4881392 - 5042: -52.83394,3.0350142 - 5043: -52.818314,5.613139 - 5044: -52.818314,5.097514 - 5045: -52.724564,4.425639 - 5046: -52.630814,5.019389 - 5047: -52.64644,5.019389 - 5048: -52.64644,4.910014 - 5049: -51.67769,5.816264 - 5050: -52.005814,6.097514 - 5051: -51.943314,6.128764 - 5052: -52.36519,5.238139 - 5053: -51.912064,5.894389 - 5054: -51.89644,5.894389 - 5055: -51.89644,5.363139 - 5056: -51.412064,6.410014 - 5057: -51.17769,6.597514 - 5058: -51.568314,6.191264 - 5059: -50.724564,7.956889 - 5060: -49.255814,6.628764 - 5061: -49.318314,5.878764 + 5008: -53.13469,2.4589567 + 5009: -53.087814,2.7402067 + 5010: -52.931564,2.6620817 + 5011: -52.962814,1.9120817 + 5012: -52.900314,1.6308322 + 5013: -52.69719,1.4120822 + 5014: -52.556564,1.3964572 + 5015: -52.431564,1.1308322 + 5016: -50.16594,0.7870822 + 5017: -50.025314,0.8652072 + 5018: -50.60344,0.6777072 + 5019: -50.806564,0.5370822 + 5020: -50.869064,0.2245822 + 5021: -50.88469,-0.1347928 + 5022: -50.494064,0.5995822 + 5023: -50.07219,0.9745822 + 5024: -49.75969,0.9745822 + 5025: -48.744064,0.5370822 + 5026: -51.99019,3.9568892 + 5027: -52.162064,4.113139 + 5028: -52.162064,4.113139 + 5029: -52.27144,4.113139 + 5030: -52.505814,4.175639 + 5031: -52.505814,4.175639 + 5032: -52.17769,4.175639 + 5033: -52.537064,3.8943892 + 5034: -53.162064,3.4881392 + 5035: -53.05269,3.4881392 + 5036: -52.83394,3.0350142 + 5037: -52.818314,5.613139 + 5038: -52.818314,5.097514 + 5039: -52.724564,4.425639 + 5040: -52.630814,5.019389 + 5041: -52.64644,5.019389 + 5042: -52.64644,4.910014 + 5043: -51.67769,5.816264 + 5044: -52.005814,6.097514 + 5045: -51.943314,6.128764 + 5046: -52.36519,5.238139 + 5047: -51.912064,5.894389 + 5048: -51.89644,5.894389 + 5049: -51.89644,5.363139 + 5050: -51.412064,6.410014 + 5051: -51.17769,6.597514 + 5052: -51.568314,6.191264 + 5053: -50.724564,7.956889 + 5054: -49.255814,6.628764 + 5055: -49.318314,5.878764 - node: angle: 4.71238898038469 rad color: '#FFFFFF15' id: grasssnow decals: - 4068: -51.60338,-1.9884496 - 4069: -54.150253,-1.9571996 + 4062: -51.60338,-1.9884496 + 4063: -54.150253,-1.9571996 - node: color: '#FFFFFF19' id: grasssnow decals: - 5189: -37,-13 + 5183: -37,-13 - node: angle: 1.5707963267948966 rad color: '#FFFFFF19' id: grasssnow decals: - 2947: 48,-13 - 2948: 49,-12 - 2949: 60,-12 - 2950: 61,-13 - 2953: 74,-12 - 2954: 74,-13 - 2955: 70,-18 - 2956: 69,-18 - 2957: 44,-19 - 2958: 43,-19 - 2959: 37,-15 - 2960: 36,-15 - 2961: 35,-5 - 2962: 33,-5 - 2963: 19,13 - 2964: 19,11 - 2965: 14,13 - 2966: 15,13 - 2967: 16,13 - 2968: 17,13 - 2969: 13,6 - 2970: 12,6 - 2971: -3,9 - 2972: -4,9 - 2973: -11,8 - 2974: -10,8 - 2975: -9,4 - 2976: -8,4 - 2977: -15,1 - 2978: -21,-4 - 2979: -20,5 - 2982: 2,16 - 2983: 2,15 - 2984: 5,21 - 2985: 5,20 - 2986: 1,27 - 2987: 1,26 - 3012: 9,-4 - 3013: 9,-3 - 3014: 7,-6 - 3015: 6,-6 - 3016: 1,-3 - 3017: 0,-3 - 3018: -1,-5 - 3019: -2,-5 - 3020: -4,-5 - 3021: -4,-4 - 3052: 8,10 - 3053: 9,10 - 3054: 10,10 - 3055: 12,10 - 3073: 64,-12 - 3074: 70,-12 - 3080: 33,-11 - 3469: 11,37 - 3470: 3,37 + 2941: 48,-13 + 2942: 49,-12 + 2943: 60,-12 + 2944: 61,-13 + 2947: 74,-12 + 2948: 74,-13 + 2949: 70,-18 + 2950: 69,-18 + 2951: 44,-19 + 2952: 43,-19 + 2953: 37,-15 + 2954: 36,-15 + 2955: 35,-5 + 2956: 33,-5 + 2957: 19,13 + 2958: 19,11 + 2959: 14,13 + 2960: 15,13 + 2961: 16,13 + 2962: 17,13 + 2963: 13,6 + 2964: 12,6 + 2965: -3,9 + 2966: -4,9 + 2967: -11,8 + 2968: -10,8 + 2969: -9,4 + 2970: -8,4 + 2971: -15,1 + 2972: -21,-4 + 2973: -20,5 + 2976: 2,16 + 2977: 2,15 + 2978: 5,21 + 2979: 5,20 + 2980: 1,27 + 2981: 1,26 + 3006: 9,-4 + 3007: 9,-3 + 3008: 7,-6 + 3009: 6,-6 + 3010: 1,-3 + 3011: 0,-3 + 3012: -1,-5 + 3013: -2,-5 + 3014: -4,-5 + 3015: -4,-4 + 3046: 8,10 + 3047: 9,10 + 3048: 10,10 + 3049: 12,10 + 3067: 64,-12 + 3068: 70,-12 + 3074: 33,-11 + 3463: 11,37 + 3464: 3,37 - node: color: '#FFFFFF1B' id: grasssnow decals: - 5175: -27,-40 - 5176: -25,-38 - 5177: -20,-41 - 5178: -20,-38 - 5179: -25,-21 - 5247: -51,35 + 5169: -27,-40 + 5170: -25,-38 + 5171: -20,-41 + 5172: -20,-38 + 5173: -25,-21 + 5241: -51,35 - node: angle: 4.71238898038469 rad color: '#FFFFFF1B' id: grasssnow decals: - 4001: -43,-1 - 4002: -43,0 - 4003: -43,-1 - 4004: -43,0 + 3995: -43,-1 + 3996: -43,0 + 3997: -43,-1 + 3998: -43,0 - node: angle: 1.5707963267948966 rad color: '#FFFFFF26' id: grasssnow decals: - 2945: 48,-12 - 2946: 47,-13 - 2951: 62,-13 - 2952: 61,-12 - 2980: -20,4 - 2981: -19,5 - 2988: 2,27 - 2989: 2,26 - 2990: -4,8 - 2991: -8,5 - 2992: -10,7 - 2993: -11,7 - 2994: -14,-13 - 2995: -15,-13 - 2996: -16,-13 - 2997: -17,-13 - 2998: -18,-13 - 2999: -19,-13 - 3000: 19,12 - 3001: 34,-5 - 3002: 35,-6 - 3003: 34,-6 - 3004: 33,-6 - 3005: 36,-14 - 3006: 37,-14 - 3007: 66,-12 - 3008: 70,-17 - 3009: 69,-17 - 3010: 73,-12 - 3011: 73,-13 - 3022: -3,-5 - 3023: -3,-4 - 3024: 0,-4 - 3025: 1,-4 - 3026: 8,-4 - 3027: 8,-3 - 3028: 7,-5 - 3056: 11,10 - 3081: 34,-11 - 3100: -13,-13 - 3101: -20,-13 - 3105: -5,7 - 3106: 2,8 - 3107: 4,12 - 3108: 6,7 - 3109: 10,9 - 3110: 17,11 - 3111: -5,6 - 3112: -4,5 - 3113: -11,5 - 3114: -12,6 - 3115: -15,5 - 3116: -14,-2 - 3117: -13,-1 - 3118: -13,1 - 3119: -17,-3 - 3120: -14,-7 - 3121: -13,-7 - 3122: -14,-6 - 3123: -13,-4 - 3124: -14,-11 - 3125: 3,12 - 3126: 4,17 - 3127: 3,21 - 3128: 3,20 - 3129: 5,-3 - 3130: 34,-8 - 3131: 34,-7 - 3132: 35,-7 - 3133: 37,-12 - 3134: 41,-11 - 3135: 42,-13 - 3136: 44,-15 - 3137: 43,-16 - 3138: 45,-11 - 3139: 34,-13 - 3140: 67,-13 - 3141: 69,-14 - 3142: 72,-13 - 3471: 6,36 - 3472: 5,36 - 3473: 11,38 - 3474: 11,36 - 3475: 10,37 - 3476: 3,38 - 3477: 4,37 - 3478: 3,36 + 2939: 48,-12 + 2940: 47,-13 + 2945: 62,-13 + 2946: 61,-12 + 2974: -20,4 + 2975: -19,5 + 2982: 2,27 + 2983: 2,26 + 2984: -4,8 + 2985: -8,5 + 2986: -10,7 + 2987: -11,7 + 2988: -14,-13 + 2989: -15,-13 + 2990: -16,-13 + 2991: -17,-13 + 2992: -18,-13 + 2993: -19,-13 + 2994: 19,12 + 2995: 34,-5 + 2996: 35,-6 + 2997: 34,-6 + 2998: 33,-6 + 2999: 36,-14 + 3000: 37,-14 + 3001: 66,-12 + 3002: 70,-17 + 3003: 69,-17 + 3004: 73,-12 + 3005: 73,-13 + 3016: -3,-5 + 3017: -3,-4 + 3018: 0,-4 + 3019: 1,-4 + 3020: 8,-4 + 3021: 8,-3 + 3022: 7,-5 + 3050: 11,10 + 3075: 34,-11 + 3094: -13,-13 + 3095: -20,-13 + 3099: -5,7 + 3100: 2,8 + 3101: 4,12 + 3102: 6,7 + 3103: 10,9 + 3104: 17,11 + 3105: -5,6 + 3106: -4,5 + 3107: -11,5 + 3108: -12,6 + 3109: -15,5 + 3110: -14,-2 + 3111: -13,-1 + 3112: -13,1 + 3113: -17,-3 + 3114: -14,-7 + 3115: -13,-7 + 3116: -14,-6 + 3117: -13,-4 + 3118: -14,-11 + 3119: 3,12 + 3120: 4,17 + 3121: 3,21 + 3122: 3,20 + 3123: 5,-3 + 3124: 34,-8 + 3125: 34,-7 + 3126: 35,-7 + 3127: 37,-12 + 3128: 41,-11 + 3129: 42,-13 + 3130: 44,-15 + 3131: 43,-16 + 3132: 45,-11 + 3133: 34,-13 + 3134: 67,-13 + 3135: 69,-14 + 3136: 72,-13 + 3465: 6,36 + 3466: 5,36 + 3467: 11,38 + 3468: 11,36 + 3469: 10,37 + 3470: 3,38 + 3471: 4,37 + 3472: 3,36 - node: color: '#FFFFFF2D' id: grasssnow decals: - 4099: -48.77779,-5.5738344 - 4100: -48.21529,-5.9332094 + 4093: -48.77779,-5.5738344 + 4094: -48.21529,-5.9332094 - node: angle: -0.12217304763960307 rad color: '#FFFFFF2E' id: grasssnow decals: - 5561: -26.210758,53.787533 - 5562: -26.007633,53.428158 + 5555: -26.210758,53.787533 + 5556: -26.007633,53.428158 - node: angle: 1.5707963267948966 rad color: '#FFFFFF33' id: grasssnow decals: - 2784: -9,5 - 2785: -8,6 - 2786: -7,5 - 2787: -7,6 - 2788: -6,5 - 2789: -6,6 - 2790: -4,7 - 2791: -3,5 - 2792: -3,6 - 2793: -3,7 - 2794: -3,8 - 2795: -10,5 - 2796: -10,6 - 2797: -11,6 - 2798: -13,6 - 2799: -15,6 - 2800: -13,5 - 2801: -12,5 - 2802: -13,4 - 2803: -13,3 - 2804: -13,2 - 2805: -14,1 - 2806: -14,0 - 2807: -13,0 - 2808: -14,-1 - 2809: -14,-3 - 2810: -13,-3 - 2811: -14,-4 - 2812: -14,-5 - 2813: -13,-5 - 2814: -13,-6 - 2815: -14,-8 - 2816: -13,-9 - 2817: -13,-12 - 2818: -14,-12 - 2819: -15,-12 - 2820: -16,-12 - 2821: -18,-12 - 2824: -15,-3 - 2825: -16,-3 - 2826: -18,-3 - 2827: -15,4 - 2828: -16,5 - 2829: -17,4 - 2830: -17,5 - 2831: -18,5 - 2832: -19,4 - 2833: -2,7 - 2834: -2,6 - 2835: -1,6 - 2836: 0,6 - 2837: 1,7 - 2838: 2,6 - 2839: 2,7 - 2840: 3,8 - 2841: 3,7 - 2842: 3,6 - 2843: 4,6 - 2844: 4,7 - 2845: 4,8 - 2846: 5,8 - 2847: 6,8 - 2848: 7,9 - 2849: 7,7 - 2850: 8,7 - 2851: 8,8 - 2852: 8,9 - 2853: 9,8 - 2854: 10,8 - 2855: 11,9 - 2856: 12,8 - 2857: 12,9 - 2858: 13,9 - 2859: 12,7 - 2860: 13,7 - 2861: 14,9 - 2862: 14,8 - 2863: 15,8 - 2864: 15,10 - 2865: 16,9 - 2866: 16,8 - 2867: 17,9 - 2868: 17,10 - 2869: 17,12 - 2870: 18,10 - 2871: 18,11 - 2872: 18,12 - 2873: 18,13 - 2874: 4,9 - 2875: 3,10 - 2876: 4,11 - 2877: 3,11 - 2878: 3,13 - 2879: 4,14 - 2880: 3,14 - 2881: 4,15 - 2882: 3,15 - 2883: 4,16 - 2884: 3,17 - 2885: 4,18 - 2886: 3,19 - 2887: 4,19 - 2888: 4,20 - 2889: 4,21 - 2890: 4,22 - 2891: 3,22 - 2892: 4,23 - 2893: 4,24 - 2894: 3,25 - 2895: 3,26 - 2896: 3,27 - 2897: 33,-8 - 2898: 34,-9 - 2899: 35,-10 - 2900: 34,-10 - 2901: 35,-11 - 2902: 35,-12 - 2903: 34,-12 - 2904: 35,-13 - 2905: 36,-13 - 2906: 37,-13 - 2907: 38,-10 - 2908: 39,-10 - 2909: 39,-11 - 2910: 38,-11 - 2911: 38,-12 - 2912: 39,-12 - 2913: 41,-12 - 2914: 41,-13 - 2915: 42,-12 - 2916: 43,-12 - 2917: 43,-11 - 2918: 44,-12 - 2919: 46,-11 - 2920: 46,-12 - 2921: 45,-13 - 2922: 44,-13 - 2923: 43,-14 - 2924: 44,-14 - 2925: 43,-15 - 2926: 44,-17 - 2927: 43,-17 - 2928: 43,-18 - 2929: 44,-18 - 2930: 47,-12 - 2931: 46,-13 - 2932: 62,-12 - 2933: 63,-13 - 2934: 63,-12 - 2935: 64,-13 - 2936: 65,-12 - 2937: 66,-13 - 2938: 67,-12 - 2939: 69,-13 - 2940: 69,-12 - 2941: 71,-12 - 2942: 71,-13 - 2943: 70,-13 - 2944: 70,-14 - 3029: 6,-5 - 3030: 7,-4 - 3031: 7,-3 - 3032: 6,-4 - 3033: 6,-3 - 3034: 2,-4 - 3035: 2,-3 - 3036: 3,-3 - 3037: 3,-4 - 3038: 4,-3 - 3039: 5,-4 - 3040: 4,-4 - 3041: -1,-4 - 3042: -1,-3 - 3487: 10,36 - 3488: 9,38 - 3489: 7,36 - 3490: 8,36 - 3491: 6,37 + 2778: -9,5 + 2779: -8,6 + 2780: -7,5 + 2781: -7,6 + 2782: -6,5 + 2783: -6,6 + 2784: -4,7 + 2785: -3,5 + 2786: -3,6 + 2787: -3,7 + 2788: -3,8 + 2789: -10,5 + 2790: -10,6 + 2791: -11,6 + 2792: -13,6 + 2793: -15,6 + 2794: -13,5 + 2795: -12,5 + 2796: -13,4 + 2797: -13,3 + 2798: -13,2 + 2799: -14,1 + 2800: -14,0 + 2801: -13,0 + 2802: -14,-1 + 2803: -14,-3 + 2804: -13,-3 + 2805: -14,-4 + 2806: -14,-5 + 2807: -13,-5 + 2808: -13,-6 + 2809: -14,-8 + 2810: -13,-9 + 2811: -13,-12 + 2812: -14,-12 + 2813: -15,-12 + 2814: -16,-12 + 2815: -18,-12 + 2818: -15,-3 + 2819: -16,-3 + 2820: -18,-3 + 2821: -15,4 + 2822: -16,5 + 2823: -17,4 + 2824: -17,5 + 2825: -18,5 + 2826: -19,4 + 2827: -2,7 + 2828: -2,6 + 2829: -1,6 + 2830: 0,6 + 2831: 1,7 + 2832: 2,6 + 2833: 2,7 + 2834: 3,8 + 2835: 3,7 + 2836: 3,6 + 2837: 4,6 + 2838: 4,7 + 2839: 4,8 + 2840: 5,8 + 2841: 6,8 + 2842: 7,9 + 2843: 7,7 + 2844: 8,7 + 2845: 8,8 + 2846: 8,9 + 2847: 9,8 + 2848: 10,8 + 2849: 11,9 + 2850: 12,8 + 2851: 12,9 + 2852: 13,9 + 2853: 12,7 + 2854: 13,7 + 2855: 14,9 + 2856: 14,8 + 2857: 15,8 + 2858: 15,10 + 2859: 16,9 + 2860: 16,8 + 2861: 17,9 + 2862: 17,10 + 2863: 17,12 + 2864: 18,10 + 2865: 18,11 + 2866: 18,12 + 2867: 18,13 + 2868: 4,9 + 2869: 3,10 + 2870: 4,11 + 2871: 3,11 + 2872: 3,13 + 2873: 4,14 + 2874: 3,14 + 2875: 4,15 + 2876: 3,15 + 2877: 4,16 + 2878: 3,17 + 2879: 4,18 + 2880: 3,19 + 2881: 4,19 + 2882: 4,20 + 2883: 4,21 + 2884: 4,22 + 2885: 3,22 + 2886: 4,23 + 2887: 4,24 + 2888: 3,25 + 2889: 3,26 + 2890: 3,27 + 2891: 33,-8 + 2892: 34,-9 + 2893: 35,-10 + 2894: 34,-10 + 2895: 35,-11 + 2896: 35,-12 + 2897: 34,-12 + 2898: 35,-13 + 2899: 36,-13 + 2900: 37,-13 + 2901: 38,-10 + 2902: 39,-10 + 2903: 39,-11 + 2904: 38,-11 + 2905: 38,-12 + 2906: 39,-12 + 2907: 41,-12 + 2908: 41,-13 + 2909: 42,-12 + 2910: 43,-12 + 2911: 43,-11 + 2912: 44,-12 + 2913: 46,-11 + 2914: 46,-12 + 2915: 45,-13 + 2916: 44,-13 + 2917: 43,-14 + 2918: 44,-14 + 2919: 43,-15 + 2920: 44,-17 + 2921: 43,-17 + 2922: 43,-18 + 2923: 44,-18 + 2924: 47,-12 + 2925: 46,-13 + 2926: 62,-12 + 2927: 63,-13 + 2928: 63,-12 + 2929: 64,-13 + 2930: 65,-12 + 2931: 66,-13 + 2932: 67,-12 + 2933: 69,-13 + 2934: 69,-12 + 2935: 71,-12 + 2936: 71,-13 + 2937: 70,-13 + 2938: 70,-14 + 3023: 6,-5 + 3024: 7,-4 + 3025: 7,-3 + 3026: 6,-4 + 3027: 6,-3 + 3028: 2,-4 + 3029: 2,-3 + 3030: 3,-3 + 3031: 3,-4 + 3032: 4,-3 + 3033: 5,-4 + 3034: 4,-4 + 3035: -1,-4 + 3036: -1,-3 + 3481: 10,36 + 3482: 9,38 + 3483: 7,36 + 3484: 8,36 + 3485: 6,37 - node: color: '#FFFFFF34' id: grasssnow decals: - 3971: -52,-2 - 3972: -53,-1 + 3965: -52,-2 + 3966: -53,-1 - node: color: '#FFFFFF35' id: grasssnow decals: - 5274: -51.62578,-0.9919739 - 5275: -51.53203,-1.4294739 + 5268: -51.62578,-0.9919739 + 5269: -51.53203,-1.4294739 - node: angle: 4.71238898038469 rad color: '#FFFFFF35' id: grasssnow decals: - 4005: -44,-1 - 4006: -42,0 - 4007: -42,0 - 4008: -41,0 - 4009: -43,0 - 4010: -45,0 - 4011: -45,1 - 4012: -44,2 - 4013: -44,4 - 4014: -45,3 - 4015: -45,2 - 4016: -43,4 - 4017: -45,4 - 4018: -43,3 - 4019: -42,2 - 4020: -42,1 - 4021: -43,3 - 4022: -44,3 - 4023: -44,3 - 4024: -44,4 - 4025: -46,1 - 4026: -47,2 - 4027: -46,2 - 4028: -48,1 - 4029: -48,2 - 4030: -48,1 - 4031: -49,0 - 4032: -47,1 - 4033: -49,1 - 4034: -49,0 - 4035: -47,1 - 4036: -48,-1 - 4037: -49,-1 - 4038: -50,-2 - 4039: -40,2 - 4040: -42,-2 - 4041: -41.190285,-0.84478855 - 4042: -40.42466,-0.36041355 - 4043: -39.561302,-0.79836655 - 4044: -51.3555,-3.1484427 - 4045: -52.339874,-2.8046927 - 4046: -53.589874,-3.0078177 - 4047: -54.0613,-3.2421927 - 4048: -54.733173,-2.0703177 - 4049: -54.045673,-3.3515677 - 4050: -54.2488,-2.2109427 - 4051: -54.4988,-1.7109427 - 4052: -52.795673,-4.6484427 - 4053: -50.576923,-0.86078596 - 4054: -53.576923,1.154839 - 4055: -53.420673,0.54546404 - 4056: -52.65505,0.65483904 - 4057: -52.389423,1.092339 - 4058: -51.34255,0.21733904 - 4059: -52.389423,0.20369434 - 4060: -53.3738,0.17244434 - 4061: -54.3113,0.06306934 - 4062: -51.483173,0.00056934357 - 4063: -54.21755,-1.0775557 + 3999: -44,-1 + 4000: -42,0 + 4001: -42,0 + 4002: -41,0 + 4003: -43,0 + 4004: -45,0 + 4005: -45,1 + 4006: -44,2 + 4007: -44,4 + 4008: -45,3 + 4009: -45,2 + 4010: -43,4 + 4011: -45,4 + 4012: -43,3 + 4013: -42,2 + 4014: -42,1 + 4015: -43,3 + 4016: -44,3 + 4017: -44,3 + 4018: -44,4 + 4019: -46,1 + 4020: -47,2 + 4021: -46,2 + 4022: -48,1 + 4023: -48,2 + 4024: -48,1 + 4025: -49,0 + 4026: -47,1 + 4027: -49,1 + 4028: -49,0 + 4029: -47,1 + 4030: -48,-1 + 4031: -49,-1 + 4032: -50,-2 + 4033: -40,2 + 4034: -42,-2 + 4035: -41.190285,-0.84478855 + 4036: -40.42466,-0.36041355 + 4037: -39.561302,-0.79836655 + 4038: -51.3555,-3.1484427 + 4039: -52.339874,-2.8046927 + 4040: -53.589874,-3.0078177 + 4041: -54.0613,-3.2421927 + 4042: -54.733173,-2.0703177 + 4043: -54.045673,-3.3515677 + 4044: -54.2488,-2.2109427 + 4045: -54.4988,-1.7109427 + 4046: -52.795673,-4.6484427 + 4047: -50.576923,-0.86078596 + 4048: -53.576923,1.154839 + 4049: -53.420673,0.54546404 + 4050: -52.65505,0.65483904 + 4051: -52.389423,1.092339 + 4052: -51.34255,0.21733904 + 4053: -52.389423,0.20369434 + 4054: -53.3738,0.17244434 + 4055: -54.3113,0.06306934 + 4056: -51.483173,0.00056934357 + 4057: -54.21755,-1.0775557 - node: color: '#FFFFFF37' id: grasssnow decals: - 3859: -47,-5 - 3860: -46,-5 - 3861: -45,-5 - 3862: -45,-4 - 3863: -44,-4 - 3864: -44,-3 - 3865: -43,-3 - 3866: -45,-2 - 3867: -45,-2 - 3868: -45,-1 - 3869: -46,-1 - 3870: -47,-1 - 3871: -47,-2 - 3872: -48,-2 - 3873: -48,-3 + 3853: -47,-5 + 3854: -46,-5 + 3855: -45,-5 + 3856: -45,-4 + 3857: -44,-4 + 3858: -44,-3 + 3859: -43,-3 + 3860: -45,-2 + 3861: -45,-2 + 3862: -45,-1 + 3863: -46,-1 + 3864: -47,-1 + 3865: -47,-2 + 3866: -48,-2 + 3867: -48,-3 + 3868: -49,-3 + 3869: -48,-4 + 3870: -47,-4 + 3871: -47,-3 + 3872: -48,-3 + 3873: -45,-5 3874: -49,-3 - 3875: -48,-4 - 3876: -47,-4 - 3877: -47,-3 - 3878: -48,-3 - 3879: -45,-5 - 3880: -49,-3 - 3881: -49,-3 - 3882: -49.83534,-2.179359 - 3883: -49.975964,-2.851234 - 3884: -49.882214,-3.507484 - 3885: -49.36659,-3.960609 - 3886: -50.67909,-3.023109 - 3887: -48.870003,-3.944984 - 3888: -47.52072,-1.679359 - 3889: -46,-2 - 3890: -46,-3 - 3891: -45,-3 - 3892: -46,-4 - 3893: -47,-1 - 3894: -45,-1 - 3895: -46,-1 - 3896: -48,-2 - 3897: -47,-5 - 3898: -43,-3 - 4126: -44,-5 - 4502: -43.875187,2.2871418 - 4503: -43.260605,2.3392258 - 4504: -42.396023,2.5683918 - 4505: -42.541855,1.3183923 - 4506: -42.843937,2.2454758 + 3875: -49,-3 + 3876: -49.83534,-2.179359 + 3877: -49.975964,-2.851234 + 3878: -49.882214,-3.507484 + 3879: -49.36659,-3.960609 + 3880: -50.67909,-3.023109 + 3881: -48.870003,-3.944984 + 3882: -47.52072,-1.679359 + 3883: -46,-2 + 3884: -46,-3 + 3885: -45,-3 + 3886: -46,-4 + 3887: -47,-1 + 3888: -45,-1 + 3889: -46,-1 + 3890: -48,-2 + 3891: -47,-5 + 3892: -43,-3 + 4120: -44,-5 + 4496: -43.875187,2.2871418 + 4497: -43.260605,2.3392258 + 4498: -42.396023,2.5683918 + 4499: -42.541855,1.3183923 + 4500: -42.843937,2.2454758 - node: angle: 1.5707963267948966 rad color: '#FFFFFF3F' id: grasssnow decals: - 3043: 4,27 - 3044: 3,23 - 3057: 15,9 - 3058: 0,7 - 3059: -4,6 - 3060: -14,5 - 3061: -18,4 - 3062: -14,-10 - 3063: -13,-8 - 3064: -20,-3 - 3065: 9,9 - 3066: 33,-9 - 3067: 35,-9 - 3068: 36,-12 - 3069: 38,-13 - 3070: 40,-12 - 3071: 42,-11 - 3072: 45,-12 - 3075: -2,-4 - 3076: 69,-15 - 3077: 70,-16 - 3479: 4,36 - 3480: 5,37 - 3481: 10,38 - 3482: 7,38 - 3483: 8,37 - 3484: 5,38 - 3485: 8,38 - 3486: 9,36 + 3037: 4,27 + 3038: 3,23 + 3051: 15,9 + 3052: 0,7 + 3053: -4,6 + 3054: -14,5 + 3055: -18,4 + 3056: -14,-10 + 3057: -13,-8 + 3058: -20,-3 + 3059: 9,9 + 3060: 33,-9 + 3061: 35,-9 + 3062: 36,-12 + 3063: 38,-13 + 3064: 40,-12 + 3065: 42,-11 + 3066: 45,-12 + 3069: -2,-4 + 3070: 69,-15 + 3071: 70,-16 + 3473: 4,36 + 3474: 5,37 + 3475: 10,38 + 3476: 7,38 + 3477: 8,37 + 3478: 5,38 + 3479: 8,38 + 3480: 9,36 - node: angle: 1.5707963267948966 rad color: '#FFFFFF40' id: grasssnow decals: - 3046: 3,16 - 3047: 4,13 - 3048: 4,10 - 3049: 3,9 - 3050: 6,6 - 3051: 7,8 + 3040: 3,16 + 3041: 4,13 + 3042: 4,10 + 3043: 3,9 + 3044: 6,6 + 3045: 7,8 - node: angle: 1.5707963267948966 rad color: '#FFFFFF4C' id: grasssnow decals: - 3078: 33,-10 - 3079: 33,-12 - 3082: 40,-11 - 3083: 43,-13 - 3084: 68,-13 - 3085: 72,-12 - 3086: 13,8 - 3087: -1,7 - 3088: 1,6 - 3089: 3,18 - 3090: 3,24 - 3091: 4,25 - 3092: 5,7 - 3093: -14,6 - 3094: -16,4 - 3095: -14,3 - 3096: -14,2 - 3097: -13,-11 - 3098: -17,-12 - 3099: -20,-12 - 3102: -13,-10 - 3103: -19,-3 - 3104: -14,-9 - 3492: 4,38 - 3493: 9,37 - 3494: 7,37 + 3072: 33,-10 + 3073: 33,-12 + 3076: 40,-11 + 3077: 43,-13 + 3078: 68,-13 + 3079: 72,-12 + 3080: 13,8 + 3081: -1,7 + 3082: 1,6 + 3083: 3,18 + 3084: 3,24 + 3085: 4,25 + 3086: 5,7 + 3087: -14,6 + 3088: -16,4 + 3089: -14,3 + 3090: -14,2 + 3091: -13,-11 + 3092: -17,-12 + 3093: -20,-12 + 3096: -13,-10 + 3097: -19,-3 + 3098: -14,-9 + 3486: 4,38 + 3487: 9,37 + 3488: 7,37 - node: color: '#FFFFFF4D' id: grasssnow decals: - 4101: -48.949665,-5.4175844 - 4102: -49.80904,-5.4175844 - 4103: -50.324665,-5.7144594 - 4104: -51.168415,-5.9019594 - 4105: -51.59029,-6.0738344 - 4106: -52.129196,7.358282 - 4107: -52.691696,6.702032 - 4108: -52.066696,7.998907 - 4109: -50.86357,8.608282 - 4110: -48.785446,8.467657 - 4111: -49.441696,8.655157 - 4112: -52.73857,8.202032 - 4113: -53.42607,6.858282 - 4114: -52.83232,7.639532 - 4115: -53.285446,6.717657 - 4116: -50.035446,8.514532 - 4117: -48.285446,6.905157 - 4118: -47.80107,5.764532 - 4119: -51.597946,8.327032 - 4120: -49.55107,8.155157 + 4095: -48.949665,-5.4175844 + 4096: -49.80904,-5.4175844 + 4097: -50.324665,-5.7144594 + 4098: -51.168415,-5.9019594 + 4099: -51.59029,-6.0738344 + 4100: -52.129196,7.358282 + 4101: -52.691696,6.702032 + 4102: -52.066696,7.998907 + 4103: -50.86357,8.608282 + 4104: -48.785446,8.467657 + 4105: -49.441696,8.655157 + 4106: -52.73857,8.202032 + 4107: -53.42607,6.858282 + 4108: -52.83232,7.639532 + 4109: -53.285446,6.717657 + 4110: -50.035446,8.514532 + 4111: -48.285446,6.905157 + 4112: -47.80107,5.764532 + 4113: -51.597946,8.327032 + 4114: -49.55107,8.155157 - node: angle: 4.71238898038469 rad color: '#FFFFFF50' id: grasssnow decals: - 3993: -42.043774,-2.27355 - 3994: -40.606274,-1.226675 - 3995: -42.839787,-5.151508 + 3987: -42.043774,-2.27355 + 3988: -40.606274,-1.226675 + 3989: -42.839787,-5.151508 - node: color: '#FFFFFF53' id: grasssnow decals: - 3967: -37,3 - 3968: -54,3 - 3969: -54,2 - 3970: -53,-2 + 3961: -37,3 + 3962: -54,3 + 3963: -54,2 + 3964: -53,-2 - node: color: '#FFFFFF57' id: grasssnow decals: - 3938: -44,-2 - 3939: -42,-1 + 3932: -44,-2 + 3933: -42,-1 - node: angle: 1.5707963267948966 rad color: '#FFFFFF59' id: grasssnow decals: - 3143: -13,-2 - 3144: -14,4 - 3145: -5,5 - 3146: 4,26 - 3147: 5,6 - 3148: 11,8 - 3149: 16,10 - 3150: 16,11 - 3151: -2,-3 - 3152: 33,-7 - 3153: 35,-8 - 3154: 37,-11 - 3155: 36,-11 - 3156: 39,-13 - 3157: 40,-13 - 3158: 44,-16 - 3159: 44,-11 - 3160: 65,-13 - 3161: 68,-12 - 3162: 70,-15 - 3163: 69,-16 - 3164: -9,6 - 3165: -21,-3 - 3166: -19,-12 - 3495: 6,38 + 3137: -13,-2 + 3138: -14,4 + 3139: -5,5 + 3140: 4,26 + 3141: 5,6 + 3142: 11,8 + 3143: 16,10 + 3144: 16,11 + 3145: -2,-3 + 3146: 33,-7 + 3147: 35,-8 + 3148: 37,-11 + 3149: 36,-11 + 3150: 39,-13 + 3151: 40,-13 + 3152: 44,-16 + 3153: 44,-11 + 3154: 65,-13 + 3155: 68,-12 + 3156: 70,-15 + 3157: 69,-16 + 3158: -9,6 + 3159: -21,-3 + 3160: -19,-12 + 3489: 6,38 - node: color: '#FFFFFF5D' id: grasssnow decals: - 4890: -42,-3 - 4891: -49,-2 - 4892: -49,5 - 4893: -49,4 - 4894: -50,4 - 4895: -51,4 - 4896: -50,5 - 4897: -52,5 - 4898: -51,6 - 4899: -51,5 - 4900: -50,6 - 4901: -50,8 + 4884: -42,-3 + 4885: -49,-2 + 4886: -49,5 + 4887: -49,4 + 4888: -50,4 + 4889: -51,4 + 4890: -50,5 + 4891: -52,5 + 4892: -51,6 + 4893: -51,5 + 4894: -50,6 + 4895: -50,8 - node: angle: 4.71238898038469 rad color: '#FFFFFF63' id: grasssnow decals: - 4064: -52.34255,0.21467543 - 4065: -53.4363,0.19905043 - 4066: -54.28005,-1.0509496 - 4067: -54.28005,-0.08219957 + 4058: -52.34255,0.21467543 + 4059: -53.4363,0.19905043 + 4060: -54.28005,-1.0509496 + 4061: -54.28005,-0.08219957 - node: color: '#FFFFFF76' id: grasssnow decals: - 3948: -55,4 - 3949: -54,4 - 3950: -55,3 - 3951: -55,2 + 3942: -55,4 + 3943: -54,4 + 3944: -55,3 + 3945: -55,2 - node: color: '#FFFFFF7F' id: grasssnow decals: - 4995: -42.77549,-4.0647073 - 4996: -41.900955,-4.021132 + 4989: -42.77549,-4.0647073 + 4990: -41.900955,-4.021132 - node: angle: -0.12217304763960307 rad color: '#FFFFFF8F' id: grasssnow01 decals: - 5755: -29.653206,52.80616 + 5749: -29.653206,52.80616 - node: color: '#FFFFFFDC' id: grasssnow01 decals: - 2617: -13,7 + 2611: -13,7 - node: color: '#FFFFFFFF' id: grasssnow01 decals: 1237: 45.155704,-14.553966 - 2071: -20,-10 - 2072: -12,-2 + 2066: -20,-10 + 2067: -12,-2 - node: color: '#FFFFFFE6' id: grasssnow02 decals: - 2494: 42.261192,25.013554 + 2488: 42.261192,25.013554 - node: color: '#FFFFFFFF' id: grasssnow02 decals: - 2077: 2,10 - 2078: 1,30 + 2072: 2,10 + 2073: 1,30 - node: color: '#D4D4D4EF' id: grasssnow03 @@ -8241,121 +8243,121 @@ entities: color: '#FFFFFF7F' id: grasssnow03 decals: - 4993: -43.7945,-6.1303334 - 4994: -42.604195,-4.3841515 + 4987: -43.7945,-6.1303334 + 4988: -42.604195,-4.3841515 - node: color: '#FFFFFFFF' id: grasssnow03 decals: 221: 40,-19 - 2023: 36,-8 - 2029: 55,-44 - 2032: 52,-42 - 2037: 33,-43 - 2038: 24,-52 - 2060: 5,-16 - 2068: -3,-23 - 2069: -16,-11 - 2073: -12,4 - 2086: 5,-2 + 2018: 36,-8 + 2024: 55,-44 + 2027: 52,-42 + 2032: 33,-43 + 2033: 24,-52 + 2055: 5,-16 + 2063: -3,-23 + 2064: -16,-11 + 2068: -12,4 + 2081: 5,-2 - node: color: '#FFFFFFFF' id: grasssnow04 decals: 1245: 48.303196,42.037422 1246: 47.517334,44.224922 - 2030: 53,-42 - 2035: 32,-45 - 2041: 65,-54 - 2076: -7,7 + 2025: 53,-42 + 2030: 32,-45 + 2036: 65,-54 + 2071: -7,7 - node: color: '#FFFFFF7F' id: grasssnow05 decals: - 5000: -39.219994,-6.5142093 - 5001: -37.97925,-7.979219 - 5002: -40.062584,-7.9375525 - 5003: -43.73095,-0.4763384 + 4994: -39.219994,-6.5142093 + 4995: -37.97925,-7.979219 + 4996: -40.062584,-7.9375525 + 4997: -43.73095,-0.4763384 - node: color: '#FFFFFFAE' id: grasssnow05 decals: - 2082: -3,-3 + 2077: -3,-3 - node: color: '#FFFFFFCD' id: grasssnow05 decals: - 2300: -14.158267,27.615597 + 2294: -14.158267,27.615597 - node: color: '#FFFFFFFF' id: grasssnow05 decals: - 2031: 51,-43 - 2036: 29,-46 - 2040: 67,-54 - 2048: 13,-48 - 2049: 20,-33 - 2051: 20,-36 - 2061: 10,-17 - 2062: 0,-21 - 3752: -47.627243,-6.642251 + 2026: 51,-43 + 2031: 29,-46 + 2035: 67,-54 + 2043: 13,-48 + 2044: 20,-33 + 2046: 20,-36 + 2056: 10,-17 + 2057: 0,-21 + 3746: -47.627243,-6.642251 - node: color: '#FFFFFF11' id: grasssnow07 decals: - 5225: -44.28456,7.7199535 - 5226: -43.84706,6.0168285 - 5227: -43.831436,6.0168285 - 5228: -43.831436,6.0168285 + 5219: -44.28456,7.7199535 + 5220: -43.84706,6.0168285 + 5221: -43.831436,6.0168285 + 5222: -43.831436,6.0168285 - node: angle: -0.12217304763960307 rad color: '#FFFFFF53' id: grasssnow07 decals: - 5752: -25.215706,52.83741 - 5753: -27.95008,53.853035 + 5746: -25.215706,52.83741 + 5747: -27.95008,53.853035 - node: angle: -0.12217304763960307 rad color: '#FFFFFF8F' id: grasssnow07 decals: - 5754: -28.60633,53.634285 + 5748: -28.60633,53.634285 - node: color: '#FFFFFF92' id: grasssnow07 decals: - 4499: -42.721504,0.12307358 - 4500: -42.35692,1.1334906 - 4501: -43.91977,0.7480736 + 4493: -42.721504,0.12307358 + 4494: -42.35692,1.1334906 + 4495: -43.91977,0.7480736 - node: color: '#FFFFFFDA' id: grasssnow07 decals: - 3592: 66.815735,-38.02488 + 3586: 66.815735,-38.02488 - node: color: '#FFFFFFDC' id: grasssnow07 decals: - 2616: -16,6 + 2610: -16,6 - node: angle: -0.12217304763960307 rad color: '#FFFFFFFF' id: grasssnow07 decals: - 5559: -26.862461,53.156315 + 5553: -26.862461,53.156315 - node: color: '#FFFFFFFF' id: grasssnow07 decals: 1243: 47.53757,40.928047 1244: 49.646946,40.474922 - 2024: 28,-9 - 2042: 67,-49 - 3748: -45.92832,2.2586765 - 3749: -39.31655,-4.844353 - 3759: -43.742085,-7.814941 - 3944: -51,-8 - 3945: -44,-7 + 2019: 28,-9 + 2037: 67,-49 + 3742: -45.92832,2.2586765 + 3743: -39.31655,-4.844353 + 3753: -43.742085,-7.814941 + 3938: -51,-8 + 3939: -44,-7 - node: color: '#D4D4D4EF' id: grasssnow08 @@ -8366,35 +8368,35 @@ entities: color: '#FFFFFF8F' id: grasssnow08 decals: - 5756: -23.996956,55.96241 + 5750: -23.996956,55.96241 - node: color: '#FFFFFFAE' id: grasssnow08 decals: - 2081: -5,-1 + 2076: -5,-1 - node: color: '#FFFFFFE6' id: grasssnow08 decals: - 2493: 40.953316,23.648972 + 2487: 40.953316,23.648972 - node: color: '#FFFFFFFF' id: grasssnow08 decals: - 2025: 33,-14 - 2026: 54,-35 - 2027: 53,-48 - 2043: 68,-50 + 2020: 33,-14 + 2021: 54,-35 + 2022: 53,-48 + 2038: 68,-50 - node: color: '#FFFFFFAE' id: grasssnow09 decals: - 2079: -3,-2 + 2074: -3,-2 - node: color: '#FFFFFFE6' id: grasssnow09 decals: - 2495: 42.020542,18.334164 + 2489: 42.020542,18.334164 - node: color: '#FFFFFFFF' id: grasssnow09 @@ -8404,54 +8406,54 @@ entities: 1310: 72.5668,-9.371861 1311: 72.97305,-19.034706 1312: 62.988678,-15.190956 - 2020: 40,-17 - 2028: 51,-45 - 2033: 54,-44 - 2034: 30,-49 - 2047: 13,-50 - 2058: 12,-28 - 2059: 2,-17 - 2063: -2,-24 - 2066: -3,-26 - 2067: -6,-23 + 2015: 40,-17 + 2023: 51,-45 + 2028: 54,-44 + 2029: 30,-49 + 2042: 13,-50 + 2053: 12,-28 + 2054: 2,-17 + 2058: -2,-24 + 2061: -3,-26 + 2062: -6,-23 - node: color: '#BDCCD6FF' id: grasssnow10 decals: - 3978: -49.513645,1.5935884 - 3979: -50.638645,1.4842134 - 3980: -51.49802,1.7810888 + 3972: -49.513645,1.5935884 + 3973: -50.638645,1.4842134 + 3974: -51.49802,1.7810888 - node: color: '#FFFFFF7F' id: grasssnow10 decals: - 4988: -46.953384,1.6874628 - 4989: -48.649727,0.97948074 - 4990: -49.852905,-1.1609898 - 4991: -48.503437,-5.4705815 - 4992: -45.28987,-6.3618145 + 4982: -46.953384,1.6874628 + 4983: -48.649727,0.97948074 + 4984: -49.852905,-1.1609898 + 4985: -48.503437,-5.4705815 + 4986: -45.28987,-6.3618145 - node: color: '#FFFFFF8F' id: grasssnow10 decals: - 5770: -7.466236,-10.520763 - 5771: -7.348181,-13.394617 + 5764: -7.466236,-10.520763 + 5765: -7.348181,-13.394617 - node: color: '#FFFFFF9E' id: grasssnow10 decals: - 2283: 41.963215,-13.911591 - 2284: 45.35874,-7.6013145 + 2278: 41.963215,-13.911591 + 2279: 45.35874,-7.6013145 - node: color: '#FFFFFFAE' id: grasssnow10 decals: - 2080: -4,-2 + 2075: -4,-2 - node: color: '#FFFFFFE6' id: grasssnow10 decals: - 2491: 40.249466,21.783184 + 2485: 40.249466,21.783184 - node: color: '#FFFFFFFF' id: grasssnow10 @@ -8511,1013 +8513,1013 @@ entities: 230: 46,-14 231: 47,-10 232: 47,-11 - 2021: 41,-16 - 2022: 32,-5 - 2039: 26,-50 - 2044: 67,-52 - 2045: 51,-47 - 2046: 13,-47 - 2050: 24,-37 - 2057: 12,-22 - 2064: -1,-26 - 2065: -4,-28 - 2070: -19,-11 - 2074: -19,3 - 2075: -6,4 - 2087: 9,-2 - 3743: -44.67972,4.156637 - 3744: -41.083923,2.4137774 - 3750: -40.160465,-6.6789427 - 3758: -44.365845,-7.649828 - 5328: -51.70599,-6.320621 - 5329: -51.684525,2.093442 - 5330: -44.799892,4.742799 - 5331: -42.24232,3.1256113 - 5332: -39.570446,2.6568613 - 5333: -39.101696,-4.3978267 + 2016: 41,-16 + 2017: 32,-5 + 2034: 26,-50 + 2039: 67,-52 + 2040: 51,-47 + 2041: 13,-47 + 2045: 24,-37 + 2052: 12,-22 + 2059: -1,-26 + 2060: -4,-28 + 2065: -19,-11 + 2069: -19,3 + 2070: -6,4 + 2082: 9,-2 + 3737: -44.67972,4.156637 + 3738: -41.083923,2.4137774 + 3744: -40.160465,-6.6789427 + 3752: -44.365845,-7.649828 + 5322: -51.70599,-6.320621 + 5323: -51.684525,2.093442 + 5324: -44.799892,4.742799 + 5325: -42.24232,3.1256113 + 5326: -39.570446,2.6568613 + 5327: -39.101696,-4.3978267 - node: angle: -0.12217304763960307 rad color: '#FFFFFF53' id: grasssnow11 decals: - 5750: -26.54383,52.884285 - 5751: -26.35633,53.11866 + 5744: -26.54383,52.884285 + 5745: -26.35633,53.11866 - node: color: '#FFFFFFFF' id: grasssnow11 decals: - 3751: -39.408283,-6.844056 + 3745: -39.408283,-6.844056 - node: color: '#FFFFFF7F' id: grasssnow12 decals: - 4997: -42.849224,-5.009302 + 4991: -42.849224,-5.009302 - node: color: '#FFFFFFE4' id: grasssnow12 decals: - 2621: -21.338757,3.034298 + 2615: -21.338757,3.034298 - node: color: '#FFFFFFE6' id: grasssnow12 decals: - 2492: 40.52043,20.53897 + 2486: 40.52043,20.53897 - node: color: '#FFFFFFFF' id: grasssnow12 decals: - 3745: -45.2301,1.8450546 + 3739: -45.2301,1.8450546 - node: color: '#FFFFFF7F' id: grasssnow13 decals: - 4998: -39.78481,-5.504672 - 4999: -40.807957,-5.91208 + 4992: -39.78481,-5.504672 + 4993: -40.807957,-5.91208 - node: color: '#FFFFFFCD' id: grasssnow13 decals: - 2299: -15.961246,27.65726 + 2293: -15.961246,27.65726 - node: color: '#FFFFFFFF' id: grasssnow13 decals: - 3746: -45.83659,0.7176213 - 3925: -47.03206,-7.8538666 - 3926: -46.078934,-7.8069916 - 3927: -50.49213,-6.9467845 + 3740: -45.83659,0.7176213 + 3919: -47.03206,-7.8538666 + 3920: -46.078934,-7.8069916 + 3921: -50.49213,-6.9467845 - node: color: '#BDCCD6FF' id: grasssnowa1 decals: - 3981: -51.24802,1.1404634 + 3975: -51.24802,1.1404634 - node: color: '#FFFFFDE4' id: grasssnowa1 decals: - 2513: 3.6542096,4.9553776 + 2507: 3.6542096,4.9553776 - node: color: '#FFFFFFDA' id: grasssnowa1 decals: - 3595: 69.671326,-35.64988 + 3589: 69.671326,-35.64988 - node: color: '#FFFFFFDC' id: grasssnowa1 decals: - 2281: 31.278408,-8.8065605 + 2276: 31.278408,-8.8065605 - node: color: '#FFFFFFE6' id: grasssnowa1 decals: - 2251: 8.939967,5.3986006 - 2252: -7.175704,7.1706944 - 2257: -3.5405588,32.648212 - 2258: -2.882505,33.023212 - 2265: -18.101665,-7.288715 - 2273: 71.59076,-15.04299 - 2287: -2.8685803,-1.6185937 - 2288: -4.332436,-24.071247 - 2292: 23.252407,-35.83636 - 2293: 25.082554,-51.357113 + 2246: 8.939967,5.3986006 + 2247: -7.175704,7.1706944 + 2252: -3.5405588,32.648212 + 2253: -2.882505,33.023212 + 2260: -18.101665,-7.288715 + 2268: 71.59076,-15.04299 + 2282: -2.8685803,-1.6185937 + 2283: -4.332436,-24.071247 + 2287: 23.252407,-35.83636 + 2288: 25.082554,-51.357113 - node: angle: -0.12217304763960307 rad color: '#FFFFFFEC' id: grasssnowa1 decals: - 5760: -27.926804,54.41749 + 5754: -27.926804,54.41749 - node: angle: -0.12217304763960307 rad color: '#FFFFFFFF' id: grasssnowa1 decals: - 5757: -26.103191,51.00597 - 5758: -29.962566,51.63097 + 5751: -26.103191,51.00597 + 5752: -29.962566,51.63097 - node: color: '#FFFFFFFF' id: grasssnowa1 decals: - 3755: -43.448204,-8.073231 - 3756: -42.879482,-8.091578 - 3757: -45.044296,-7.94481 - 3928: -50.851505,-6.7280345 - 3929: -49.570255,-7.4780345 - 3930: -49.986618,-7.5874095 - 3931: -49.799118,-7.9155345 - 3932: -54.32663,-2.9012048 - 3933: -55.962456,0.1267643 - 3934: -55.75933,-0.8419857 - 3935: -56.964664,1.3704872 - 3936: -56.19904,2.2611122 - 3937: -55.714664,2.9486122 - 3946: -55,5 - 3947: -56,4 - 5276: -41.620686,-7.9605336 - 5277: -41.29256,-8.023033 - 5278: -40.401936,-7.7730336 - 5279: -38.964436,-8.085533 + 3749: -43.448204,-8.073231 + 3750: -42.879482,-8.091578 + 3751: -45.044296,-7.94481 + 3922: -50.851505,-6.7280345 + 3923: -49.570255,-7.4780345 + 3924: -49.986618,-7.5874095 + 3925: -49.799118,-7.9155345 + 3926: -54.32663,-2.9012048 + 3927: -55.962456,0.1267643 + 3928: -55.75933,-0.8419857 + 3929: -56.964664,1.3704872 + 3930: -56.19904,2.2611122 + 3931: -55.714664,2.9486122 + 3940: -55,5 + 3941: -56,4 + 5270: -41.620686,-7.9605336 + 5271: -41.29256,-8.023033 + 5272: -40.401936,-7.7730336 + 5273: -38.964436,-8.085533 - node: color: '#FFFFFFE6' id: grasssnowa2 decals: - 2255: 3.5509706,28.356209 - 2256: 0.0805912,29.648384 - 2497: 40.1863,20.546928 + 2250: 3.5509706,28.356209 + 2251: 0.0805912,29.648384 + 2491: 40.1863,20.546928 - node: zIndex: 1 color: '#FFFFFFE8' id: grasssnowa2 decals: - 2096: -13.655099,26.165924 + 2091: -13.655099,26.165924 - node: angle: -0.12217304763960307 rad color: '#FFFFFFFF' id: grasssnowa2 decals: - 5759: -22.853191,55.25597 + 5753: -22.853191,55.25597 - node: color: '#FFFFFFFF' id: grasssnowa2 decals: - 3942: -54,-4 - 3943: -52,-7 + 3936: -54,-4 + 3937: -52,-7 - node: color: '#BDCCD6FF' id: grasssnowa3 decals: - 3976: -54.670742,3.678831 - 3977: -54.405117,3.194456 + 3970: -54.670742,3.678831 + 3971: -54.405117,3.194456 - node: color: '#FFFFFF37' id: grasssnowa3 decals: - 4127: -51,9 + 4121: -51,9 - node: color: '#FFFFFF79' id: grasssnowa3 decals: - 5147: -14,-38 - 5148: -13.736209,-37.33216 - 5149: -13.892459,-38.92591 + 5141: -14,-38 + 5142: -13.736209,-37.33216 + 5143: -13.892459,-38.92591 - node: color: '#FFFFFFD6' id: grasssnowa3 decals: - 2196: 10,6 + 2191: 10,6 - node: color: '#FFFFFFD8' id: grasssnowa3 decals: - 3045: 4.978605,17.02703 + 3039: 4.978605,17.02703 - node: color: '#FFFFFFDC' id: grasssnowa3 decals: - 2280: 30.452332,-7.8274813 + 2275: 30.452332,-7.8274813 - node: color: '#FFFFFFE4' id: grasssnowa3 decals: - 2622: -11.959769,-1.8334808 + 2616: -11.959769,-1.8334808 - node: color: '#FFFFFFE6' id: grasssnowa3 decals: - 2269: 45.949627,-18.130865 - 2496: 41.134686,19.213627 + 2264: 45.949627,-18.130865 + 2490: 41.134686,19.213627 - node: color: '#FFFFFFFF' id: grasssnowa3 decals: - 3924: -47.56331,-7.8382416 - 3940: -50,0 - 3941: -53,-5 - 4121: -52.941696,8.327032 - 4122: -51.92607,8.639532 - 4123: -49.222946,8.764532 - 4124: -48.20732,6.577032 - 4125: -53.191696,6.608282 - 4128: -51,9 - 5146: -20,-32 - 5280: -38.308186,-7.9292836 - 5281: -37.928417,-6.9761586 - 5282: -38.959667,-5.1792836 - 5283: -38.881542,-5.8511586 - 5284: -38.803417,-5.6011586 - 5285: -46.215157,-7.797085 - 5286: -47.027657,-7.56271 - 5287: -49.13703,-7.953335 - 5288: -45.07142,-7.359585 - 5289: -42.368294,-7.547085 - 5290: -54.931446,4.4266167 - 5291: -54.017384,4.403179 - 5292: -53.85332,6.2547417 - 5293: -53.806446,6.418804 - 5294: -49.142384,8.364117 - 5295: -48.087696,6.9109917 - 5296: -48.111134,4.8484917 - 5297: -48.462696,3.4891167 - 5298: -49.212696,2.7156792 - 5299: -50.267384,2.9500542 - 5300: -50.87676,2.4813042 - 5301: -51.34551,2.7156792 - 5302: -49.962696,2.6453667 - 5303: -48.25176,3.0203667 - 5304: -47.40801,4.0984917 - 5305: -47.267384,5.4109917 - 5306: -46.611134,5.012554 - 5307: -45.861134,5.5984917 - 5308: -46.236134,7.8016167 - 5309: -47.337696,8.692242 - 5310: -47.361134,9.512554 - 5311: -47.337696,10.168805 - 5312: -48.837696,9.582867 - 5313: -47.736134,9.184429 - 5314: -50.31426,9.325054 - 5315: -51.43926,9.723493 - 5316: -52.72832,9.371929 - 5317: -53.150196,8.692242 - 5318: -53.66582,7.825054 - 5319: -54.32207,6.5828667 - 5320: -53.87676,5.3641167 - 5321: -55.048634,3.1141167 - 5322: -55.07207,1.7781792 - 5323: -54.62676,0.58286667 - 5324: -54.837696,-0.63588333 - 5325: -56.75957,1.4266167 - 5326: -56.923634,1.0281792 - 5327: -48.51849,2.093442 - 5979: 80.11802,-21.809238 + 3918: -47.56331,-7.8382416 + 3934: -50,0 + 3935: -53,-5 + 4115: -52.941696,8.327032 + 4116: -51.92607,8.639532 + 4117: -49.222946,8.764532 + 4118: -48.20732,6.577032 + 4119: -53.191696,6.608282 + 4122: -51,9 + 5140: -20,-32 + 5274: -38.308186,-7.9292836 + 5275: -37.928417,-6.9761586 + 5276: -38.959667,-5.1792836 + 5277: -38.881542,-5.8511586 + 5278: -38.803417,-5.6011586 + 5279: -46.215157,-7.797085 + 5280: -47.027657,-7.56271 + 5281: -49.13703,-7.953335 + 5282: -45.07142,-7.359585 + 5283: -42.368294,-7.547085 + 5284: -54.931446,4.4266167 + 5285: -54.017384,4.403179 + 5286: -53.85332,6.2547417 + 5287: -53.806446,6.418804 + 5288: -49.142384,8.364117 + 5289: -48.087696,6.9109917 + 5290: -48.111134,4.8484917 + 5291: -48.462696,3.4891167 + 5292: -49.212696,2.7156792 + 5293: -50.267384,2.9500542 + 5294: -50.87676,2.4813042 + 5295: -51.34551,2.7156792 + 5296: -49.962696,2.6453667 + 5297: -48.25176,3.0203667 + 5298: -47.40801,4.0984917 + 5299: -47.267384,5.4109917 + 5300: -46.611134,5.012554 + 5301: -45.861134,5.5984917 + 5302: -46.236134,7.8016167 + 5303: -47.337696,8.692242 + 5304: -47.361134,9.512554 + 5305: -47.337696,10.168805 + 5306: -48.837696,9.582867 + 5307: -47.736134,9.184429 + 5308: -50.31426,9.325054 + 5309: -51.43926,9.723493 + 5310: -52.72832,9.371929 + 5311: -53.150196,8.692242 + 5312: -53.66582,7.825054 + 5313: -54.32207,6.5828667 + 5314: -53.87676,5.3641167 + 5315: -55.048634,3.1141167 + 5316: -55.07207,1.7781792 + 5317: -54.62676,0.58286667 + 5318: -54.837696,-0.63588333 + 5319: -56.75957,1.4266167 + 5320: -56.923634,1.0281792 + 5321: -48.51849,2.093442 + 5973: 80.11802,-21.809238 - node: color: '#FFFFFFE6' id: grasssnowb1 decals: - 2250: -1.971591,4.198429 - 2289: -1.904077,-26.515713 - 2290: 14.8647,-21.912071 + 2245: -1.971591,4.198429 + 2284: -1.904077,-26.515713 + 2285: 14.8647,-21.912071 - node: color: '#FFFFFFCF' id: grasssnowb2 decals: - 2516: 29.289902,-48.962963 + 2510: 29.289902,-48.962963 - node: color: '#FFFFFFDA' id: grasssnowb2 decals: - 3593: 65.65891,-35.96238 + 3587: 65.65891,-35.96238 - node: zIndex: 1 color: '#FFFFFFE2' id: grasssnowb2 decals: - 2098: -20.102707,24.34407 + 2093: -20.102707,24.34407 - node: color: '#FFFFFFE4' id: grasssnowb2 decals: - 2619: -17.349838,3.0157127 + 2613: -17.349838,3.0157127 - node: color: '#FFFFFFE6' id: grasssnowb2 decals: - 2260: 14.435348,6.242981 - 2263: -12.073353,2.630906 - 2264: -20.227722,-5.8720484 - 2272: 65.109116,-17.345074 - 2274: 71.924255,-18.126675 - 2296: 73.94731,-9.840138 - 2500: 42.032337,18.048 + 2255: 14.435348,6.242981 + 2258: -12.073353,2.630906 + 2259: -20.227722,-5.8720484 + 2267: 65.109116,-17.345074 + 2269: 71.924255,-18.126675 + 2290: 73.94731,-9.840138 + 2494: 42.032337,18.048 - node: color: '#FFFFFDE4' id: grasssnowb3 decals: - 2514: 2.034741,18.895817 - 2515: -5.8128595,7.7129135 + 2508: 2.034741,18.895817 + 2509: -5.8128595,7.7129135 - node: color: '#FFFFFFDA' id: grasssnowb3 decals: - 3594: 64.408295,-36.379047 + 3588: 64.408295,-36.379047 - node: color: '#FFFFFFDC' id: grasssnowb3 decals: - 2279: 29.13953,-7.9587054 + 2274: 29.13953,-7.9587054 - node: color: '#FFFFFFE4' id: grasssnowb3 decals: - 2620: -12.165959,7.0637846 + 2614: -12.165959,7.0637846 - node: color: '#FFFFFFE6' id: grasssnowb3 decals: - 2259: 8.843702,34.960712 - 2261: 18.324642,9.083934 - 2498: 41.864216,24.123943 + 2254: 8.843702,34.960712 + 2256: 18.324642,9.083934 + 2492: 41.864216,24.123943 - node: color: '#FFFFFFE8' id: grasssnowb3 decals: - 3542: -17.889027,-4.342618 + 3536: -17.889027,-4.342618 - node: color: '#FFFFFFB0' id: grasssnowc1 decals: - 2278: 28.879189,-8.819372 + 2273: 28.879189,-8.819372 - node: color: '#FFFFFFCD' id: grasssnowc1 decals: - 2302: -15.325513,26.448929 + 2296: -15.325513,26.448929 - node: color: '#FFFFFFE5' id: grasssnowc1 decals: - 2197: -15,2 + 2192: -15,2 - node: color: '#FFFFFFE6' id: grasssnowc1 decals: - 2253: 1.1367493,10.714501 - 2254: 5.779229,27.39954 - 2262: 17.142372,7.5377035 - 2268: 39.445766,-16.991703 - 2285: 3.9030752,-5.9041996 - 2291: 19.729828,-33.013443 - 2294: 45.10163,-30.335632 - 2297: 14.678892,11.182862 + 2248: 1.1367493,10.714501 + 2249: 5.779229,27.39954 + 2257: 17.142372,7.5377035 + 2263: 39.445766,-16.991703 + 2280: 3.9030752,-5.9041996 + 2286: 19.729828,-33.013443 + 2289: 45.10163,-30.335632 + 2291: 14.678892,11.182862 - node: zIndex: 1 color: '#FFFFFFE8' id: grasssnowc1 decals: - 2094: -12.942353,25.826881 + 2089: -12.942353,25.826881 - node: color: '#FFFFFFFF' id: grasssnowc1 decals: - 3742: -44.000923,5.2940826 - 5978: 81.227394,-23.777988 + 3736: -44.000923,5.2940826 + 5972: 81.227394,-23.777988 - node: color: '#FFFFFFE6' id: grasssnowc2 decals: - 2270: 45.595287,-13.74883 - 2271: 62.10621,-9.182607 - 2286: 5.9226108,-1.9519272 + 2265: 45.595287,-13.74883 + 2266: 62.10621,-9.182607 + 2281: 5.9226108,-1.9519272 - node: color: '#FFFFFFFF' id: grasssnowc2 decals: - 5977: 80.352394,-24.840488 + 5971: 80.352394,-24.840488 - node: color: '#FFFFFFCD' id: grasssnowc3 decals: - 2301: -15.721543,26.00101 + 2295: -15.721543,26.00101 - node: color: '#FFFFFFE5' id: grasssnowc3 decals: - 3596: 67.80949,-36.285896 + 3590: 67.80949,-36.285896 - node: color: '#FFFFFFE6' id: grasssnowc3 decals: - 2266: -19.638706,-9.343069 - 2267: 35.956028,-9.619087 - 2499: 41.014008,22.813168 + 2261: -19.638706,-9.343069 + 2262: 35.956028,-9.619087 + 2493: 41.014008,22.813168 - node: color: '#FFFFFFFF' id: grasssnowc3 decals: - 5980: 79.93052,-21.152988 + 5974: 79.93052,-21.152988 - node: cleanable: True color: '#FF4A3AFF' id: m decals: - 2433: -43.18579,23.38692 + 2427: -43.18579,23.38692 - node: angle: -0.12217304763960307 rad color: '#4D4D4DFF' id: minus decals: - 5558: -26.003086,53.156315 + 5552: -26.003086,53.156315 - node: angle: -0.10471975511965978 rad color: '#4D4D4DFF' id: minus decals: - 5557: -25.956211,53.133453 + 5551: -25.956211,53.133453 - node: color: '#4D4D4DFF' id: minus decals: - 3832: -51.98428,-1.9230356 - 3849: -51.9604,-1.9049902 - 3974: -51.90404,-1.9159346 + 3826: -51.98428,-1.9230356 + 3843: -51.9604,-1.9049902 + 3968: -51.90404,-1.9159346 - node: angle: 1.5707963267948966 rad color: '#4D4D4DFF' id: minus decals: - 3829: -53.538883,-0.44635725 - 3830: -53.502193,-0.6665082 - 3831: -53.4655,-0.88665867 - 3835: -53.434383,-1.0415602 - 3836: -53.406605,-1.2128568 - 3847: -53.36781,-1.4142494 - 3848: -53.302994,-1.5346198 + 3823: -53.538883,-0.44635725 + 3824: -53.502193,-0.6665082 + 3825: -53.4655,-0.88665867 + 3829: -53.434383,-1.0415602 + 3830: -53.406605,-1.2128568 + 3841: -53.36781,-1.4142494 + 3842: -53.302994,-1.5346198 - node: angle: 2.792526803190927 rad color: '#4D4D4DFF' id: minus decals: - 3834: -53.85556,-1.9046898 + 3828: -53.85556,-1.9046898 - node: color: '#585858FF' id: minus decals: - 3975: -51.919666,-1.9003096 + 3969: -51.919666,-1.9003096 - node: color: '#FF1329FF' id: rune1 decals: - 2405: 58.99663,-15.407162 + 2399: 58.99663,-15.407162 - node: cleanable: True color: '#FF4A3AFF' id: rune1 decals: - 2432: -44.021664,24.19942 + 2426: -44.021664,24.19942 - node: cleanable: True color: '#FF4A3AFF' id: rune3 decals: - 2435: -42.035877,24.125908 + 2429: -42.035877,24.125908 - node: cleanable: True color: '#FF433AFF' id: rune4 decals: - 2431: -43.039024,24.16817 + 2425: -43.039024,24.16817 - node: angle: -0.6981317007977318 rad color: '#573612FF' id: shortline decals: - 3909: -51.44114,-4.662003 + 3903: -51.44114,-4.662003 - node: angle: 0.6981317007977318 rad color: '#573612FF' id: shortline decals: - 3908: -50.74006,-4.648114 + 3902: -50.74006,-4.648114 - node: cleanable: True color: '#FF4A3AFF' id: skull decals: - 2434: -43.054165,24.99049 + 2428: -43.054165,24.99049 - node: angle: 0.08726646259971647 rad color: '#4D4D4DFF' id: slash decals: - 3839: -52.357517,-0.6920204 - 3840: -52.403812,-1.0207238 + 3833: -52.357517,-0.6920204 + 3834: -52.403812,-1.0207238 - node: angle: 0.10471975511965978 rad color: '#4D4D4DFF' id: slash decals: - 3853: -52.47975,-1.3801818 + 3847: -52.47975,-1.3801818 - node: angle: 1.8151424220741028 rad color: '#503C1FFF' id: slash decals: - 3843: -52.89044,-1.6272125 - 3844: -52.89044,-1.6584625 - 3845: -52.89044,-1.6740875 - 3846: -52.89044,-1.7053375 + 3837: -52.89044,-1.6272125 + 3838: -52.89044,-1.6584625 + 3839: -52.89044,-1.6740875 + 3840: -52.89044,-1.7053375 - node: angle: 1.7976891295541595 rad color: '#534228FF' id: slash decals: - 3857: -52.93114,-1.6713133 - 3858: -52.86864,-1.7129803 + 3851: -52.93114,-1.6713133 + 3852: -52.86864,-1.7129803 - node: angle: 1.7976891295541595 rad color: '#63421BFF' id: slash decals: - 3854: -52.889473,-1.6435356 - 3855: -52.91725,-1.7129803 + 3848: -52.889473,-1.6435356 + 3849: -52.91725,-1.7129803 - node: angle: 1.7976891295541595 rad color: '#634228FF' id: slash decals: - 3856: -52.89642,-1.6713133 + 3850: -52.89642,-1.6713133 - node: angle: 1.5707963267948966 rad color: '#D3DBF2FF' id: smallbrush decals: - 3919: -51.101936,-4.6545734 - 3920: -51.06953,-4.9045734 + 3913: -51.101936,-4.6545734 + 3914: -51.06953,-4.9045734 - node: color: '#D9DFF8FF' id: smallbrush decals: - 3899: -51.163643,-4.583882 - 3900: -51.038643,-4.569993 - 3901: -51.177532,-4.8547153 - 3902: -50.990032,-4.8547153 - 3903: -51.135868,-4.9172153 - 3904: -51.00392,-4.931104 - 3905: -51.101143,-4.9536695 - 3906: -51.1567,-4.9328365 - 3907: -51.17059,-4.918947 + 3893: -51.163643,-4.583882 + 3894: -51.038643,-4.569993 + 3895: -51.177532,-4.8547153 + 3896: -50.990032,-4.8547153 + 3897: -51.135868,-4.9172153 + 3898: -51.00392,-4.931104 + 3899: -51.101143,-4.9536695 + 3900: -51.1567,-4.9328365 + 3901: -51.17059,-4.918947 - node: angle: -0.12217304763960307 rad color: '#FFFFFF84' id: smallbrush decals: - 5718: -26.548904,52.895344 - 5719: -26.611404,52.957844 - 5720: -26.62703,52.91097 - 5721: -26.78328,52.832844 - 5722: -26.53328,53.03597 - 5723: -26.56453,53.06722 - 5724: -26.56453,53.06722 - 5725: -26.423904,53.06722 - 5726: -26.43953,53.051594 - 5727: -26.56453,52.707844 - 5728: -26.764095,52.78597 - 5729: -26.59222,52.75472 - 5730: -26.90472,52.645344 - 5731: -26.670345,52.94222 - 5732: -26.84222,52.91097 - 5733: -26.77972,52.864094 - 5734: -26.74847,52.614094 - 5735: -26.482845,52.78597 - 5736: -26.43597,53.082844 - 5737: -26.43597,52.864094 - 5738: -26.43597,52.72347 - 5739: -26.59222,52.582844 - 5740: -26.482845,52.520344 - 5741: -26.77972,52.926594 - 5742: -26.764095,52.676594 - 5743: -26.93597,52.614094 - 5744: -26.670345,53.082844 - 5745: -26.326595,52.84847 - 5746: -26.31097,52.864094 - 5747: -26.31097,52.864094 - 5748: -26.31097,52.84847 - 5749: -26.31097,52.895344 + 5712: -26.548904,52.895344 + 5713: -26.611404,52.957844 + 5714: -26.62703,52.91097 + 5715: -26.78328,52.832844 + 5716: -26.53328,53.03597 + 5717: -26.56453,53.06722 + 5718: -26.56453,53.06722 + 5719: -26.423904,53.06722 + 5720: -26.43953,53.051594 + 5721: -26.56453,52.707844 + 5722: -26.764095,52.78597 + 5723: -26.59222,52.75472 + 5724: -26.90472,52.645344 + 5725: -26.670345,52.94222 + 5726: -26.84222,52.91097 + 5727: -26.77972,52.864094 + 5728: -26.74847,52.614094 + 5729: -26.482845,52.78597 + 5730: -26.43597,53.082844 + 5731: -26.43597,52.864094 + 5732: -26.43597,52.72347 + 5733: -26.59222,52.582844 + 5734: -26.482845,52.520344 + 5735: -26.77972,52.926594 + 5736: -26.764095,52.676594 + 5737: -26.93597,52.614094 + 5738: -26.670345,53.082844 + 5739: -26.326595,52.84847 + 5740: -26.31097,52.864094 + 5741: -26.31097,52.864094 + 5742: -26.31097,52.84847 + 5743: -26.31097,52.895344 - node: angle: -0.12217304763960307 rad color: '#FFFFFF85' id: smallbrush decals: - 5678: -25.182236,53.457844 - 5679: -25.244736,53.47347 - 5680: -25.244736,53.47347 - 5681: -25.463486,53.50472 - 5682: -25.525986,53.56722 - 5683: -25.51036,53.270344 - 5684: -25.463486,53.270344 - 5685: -25.119736,53.301594 - 5686: -25.41661,53.34847 - 5687: -25.57286,52.989094 - 5688: -25.619736,52.84847 - 5689: -25.51036,53.114094 - 5690: -25.47911,52.81722 - 5691: -25.47911,52.78597 - 5692: -25.525986,53.176594 - 5693: -25.29161,53.31722 - 5694: -25.432236,53.207844 - 5695: -25.275986,53.239094 - 5696: -25.41661,53.12972 - 5697: -25.432236,53.020344 - 5698: -25.38536,53.051594 - 5699: -25.525986,53.37972 - 5700: -25.713486,53.364094 - 5701: -25.69786,53.426594 - 5702: -25.588486,53.207844 - 5703: -25.69786,53.22347 - 5704: -25.619736,53.12972 - 5705: -25.517654,52.926594 - 5706: -25.65828,52.801594 - 5707: -25.705154,52.864094 - 5708: -25.56453,53.22347 - 5709: -25.72078,53.176594 - 5710: -25.72078,53.270344 - 5711: -25.68953,53.53597 - 5712: -25.40828,52.989094 + 5672: -25.182236,53.457844 + 5673: -25.244736,53.47347 + 5674: -25.244736,53.47347 + 5675: -25.463486,53.50472 + 5676: -25.525986,53.56722 + 5677: -25.51036,53.270344 + 5678: -25.463486,53.270344 + 5679: -25.119736,53.301594 + 5680: -25.41661,53.34847 + 5681: -25.57286,52.989094 + 5682: -25.619736,52.84847 + 5683: -25.51036,53.114094 + 5684: -25.47911,52.81722 + 5685: -25.47911,52.78597 + 5686: -25.525986,53.176594 + 5687: -25.29161,53.31722 + 5688: -25.432236,53.207844 + 5689: -25.275986,53.239094 + 5690: -25.41661,53.12972 + 5691: -25.432236,53.020344 + 5692: -25.38536,53.051594 + 5693: -25.525986,53.37972 + 5694: -25.713486,53.364094 + 5695: -25.69786,53.426594 + 5696: -25.588486,53.207844 + 5697: -25.69786,53.22347 + 5698: -25.619736,53.12972 + 5699: -25.517654,52.926594 + 5700: -25.65828,52.801594 + 5701: -25.705154,52.864094 + 5702: -25.56453,53.22347 + 5703: -25.72078,53.176594 + 5704: -25.72078,53.270344 + 5705: -25.68953,53.53597 + 5706: -25.40828,52.989094 - node: angle: -0.12217304763960307 rad color: '#0000000F' id: splatter decals: - 5563: -24.976192,55.1073 - 5564: -25.069942,55.216675 - 5565: -25.069942,55.216675 - 5566: -25.007442,55.185425 - 5567: -24.976192,55.13855 - 5568: -24.773067,55.2323 - 5569: -24.679317,55.2323 - 5570: -24.663692,55.2323 - 5571: -24.991817,55.3573 - 5572: -24.866817,55.26355 - 5573: -24.835567,55.279175 - 5574: -24.835567,55.279175 - 5575: -24.773067,55.26355 - 5576: -26.944942,51.591675 - 5577: -26.944942,51.591675 - 5578: -26.944942,51.591675 - 5579: -27.241817,51.654175 - 5580: -27.335567,51.63855 - 5581: -27.163692,51.622925 - 5582: -27.132442,51.63855 - 5583: -27.101192,51.70105 - 5584: -27.023067,51.76355 - 5585: -27.038692,51.76355 - 5586: -27.069942,51.622925 - 5587: -27.085567,51.591675 - 5588: -27.148067,51.622925 - 5589: -27.194942,51.622925 - 5590: -27.382442,51.4823 - 5591: -27.382442,51.7323 - 5592: -27.382442,51.7323 - 5593: -26.913692,51.76355 - 5594: -26.913692,52.0448 - 5595: -26.929317,51.997925 - 5596: -26.991817,51.841675 - 5597: -26.913692,52.0448 - 5598: -26.913692,52.185425 - 5599: -26.976192,52.091675 - 5600: -27.038692,51.841675 - 5601: -26.866817,52.060425 - 5602: -26.788692,52.185425 - 5603: -26.86744,51.89076 - 5604: -26.883064,51.92201 - 5605: -26.945564,51.937634 - 5606: -27.226814,51.95326 - 5607: -27.414314,51.95326 - 5608: -27.414314,51.95326 - 5609: -27.39869,51.875134 - 5610: -30.58619,50.843884 - 5611: -30.58619,50.843884 - 5612: -30.55494,50.843884 - 5613: -30.414314,50.906384 - 5614: -30.30494,51.062634 - 5615: -30.24244,51.01576 - 5616: -30.195564,50.937634 - 5617: -30.17994,50.906384 - 5618: -30.258064,50.89076 - 5619: -30.383064,50.82826 - 5620: -30.508064,50.937634 - 5621: -30.445564,51.01576 - 5622: -30.27369,51.156384 - 5623: -30.258064,50.906384 - 5624: -30.445564,50.89076 - 5625: -30.539314,51.156384 - 5626: -30.27369,51.32826 - 5627: -30.164314,51.406384 - 5628: -30.11744,51.10951 - 5629: -30.226814,51.01576 - 5630: -30.164314,51.39076 - 5631: -30.445564,51.312634 - 5632: -30.61744,51.281384 - 5633: -30.664314,51.406384 - 5634: -30.383064,51.04701 - 5635: -30.67994,51.343884 - 5636: -30.820564,51.437634 - 5637: -30.77369,51.218884 - 5638: -30.726814,51.07826 - 5639: -30.99244,51.32826 - 5640: -30.80494,51.42201 - 5641: -30.49244,51.29701 - 5642: -30.42994,51.562634 - 5643: -30.42994,51.593884 - 5644: -30.476814,51.35951 - 5645: -30.476814,51.35951 - 5646: -28.39386,52.6322 - 5647: -28.39386,52.6322 - 5648: -28.42511,52.554073 - 5649: -28.64386,52.616573 - 5650: -28.48761,52.5697 - 5651: -28.39386,52.522823 - 5652: -28.378235,52.366573 - 5653: -28.346985,52.47595 - 5654: -28.596985,52.53845 - 5655: -28.596985,52.53845 - 5656: -28.596985,52.53845 - 5657: -28.315735,52.60095 + 5557: -24.976192,55.1073 + 5558: -25.069942,55.216675 + 5559: -25.069942,55.216675 + 5560: -25.007442,55.185425 + 5561: -24.976192,55.13855 + 5562: -24.773067,55.2323 + 5563: -24.679317,55.2323 + 5564: -24.663692,55.2323 + 5565: -24.991817,55.3573 + 5566: -24.866817,55.26355 + 5567: -24.835567,55.279175 + 5568: -24.835567,55.279175 + 5569: -24.773067,55.26355 + 5570: -26.944942,51.591675 + 5571: -26.944942,51.591675 + 5572: -26.944942,51.591675 + 5573: -27.241817,51.654175 + 5574: -27.335567,51.63855 + 5575: -27.163692,51.622925 + 5576: -27.132442,51.63855 + 5577: -27.101192,51.70105 + 5578: -27.023067,51.76355 + 5579: -27.038692,51.76355 + 5580: -27.069942,51.622925 + 5581: -27.085567,51.591675 + 5582: -27.148067,51.622925 + 5583: -27.194942,51.622925 + 5584: -27.382442,51.4823 + 5585: -27.382442,51.7323 + 5586: -27.382442,51.7323 + 5587: -26.913692,51.76355 + 5588: -26.913692,52.0448 + 5589: -26.929317,51.997925 + 5590: -26.991817,51.841675 + 5591: -26.913692,52.0448 + 5592: -26.913692,52.185425 + 5593: -26.976192,52.091675 + 5594: -27.038692,51.841675 + 5595: -26.866817,52.060425 + 5596: -26.788692,52.185425 + 5597: -26.86744,51.89076 + 5598: -26.883064,51.92201 + 5599: -26.945564,51.937634 + 5600: -27.226814,51.95326 + 5601: -27.414314,51.95326 + 5602: -27.414314,51.95326 + 5603: -27.39869,51.875134 + 5604: -30.58619,50.843884 + 5605: -30.58619,50.843884 + 5606: -30.55494,50.843884 + 5607: -30.414314,50.906384 + 5608: -30.30494,51.062634 + 5609: -30.24244,51.01576 + 5610: -30.195564,50.937634 + 5611: -30.17994,50.906384 + 5612: -30.258064,50.89076 + 5613: -30.383064,50.82826 + 5614: -30.508064,50.937634 + 5615: -30.445564,51.01576 + 5616: -30.27369,51.156384 + 5617: -30.258064,50.906384 + 5618: -30.445564,50.89076 + 5619: -30.539314,51.156384 + 5620: -30.27369,51.32826 + 5621: -30.164314,51.406384 + 5622: -30.11744,51.10951 + 5623: -30.226814,51.01576 + 5624: -30.164314,51.39076 + 5625: -30.445564,51.312634 + 5626: -30.61744,51.281384 + 5627: -30.664314,51.406384 + 5628: -30.383064,51.04701 + 5629: -30.67994,51.343884 + 5630: -30.820564,51.437634 + 5631: -30.77369,51.218884 + 5632: -30.726814,51.07826 + 5633: -30.99244,51.32826 + 5634: -30.80494,51.42201 + 5635: -30.49244,51.29701 + 5636: -30.42994,51.562634 + 5637: -30.42994,51.593884 + 5638: -30.476814,51.35951 + 5639: -30.476814,51.35951 + 5640: -28.39386,52.6322 + 5641: -28.39386,52.6322 + 5642: -28.42511,52.554073 + 5643: -28.64386,52.616573 + 5644: -28.48761,52.5697 + 5645: -28.39386,52.522823 + 5646: -28.378235,52.366573 + 5647: -28.346985,52.47595 + 5648: -28.596985,52.53845 + 5649: -28.596985,52.53845 + 5650: -28.596985,52.53845 + 5651: -28.315735,52.60095 - node: color: '#18231234' id: splatter decals: - 5105: 65.5753,-53.979904 - 5106: 65.835724,-54.188236 - 5107: 65.66905,-53.729904 - 5108: 65.97114,-53.698654 - 5109: 66.116974,-53.969486 - 5110: 65.929474,-53.58407 - 5111: 66.148224,-53.688236 - 5112: 65.679474,-54.05282 - 5113: 65.679474,-54.14657 - 5114: 65.73155,-54.104904 - 5115: 65.773224,-53.969486 - 5116: 65.68989,-53.886154 - 5117: 65.81489,-53.730347 - 5118: 65.72114,-53.636597 + 5099: 65.5753,-53.979904 + 5100: 65.835724,-54.188236 + 5101: 65.66905,-53.729904 + 5102: 65.97114,-53.698654 + 5103: 66.116974,-53.969486 + 5104: 65.929474,-53.58407 + 5105: 66.148224,-53.688236 + 5106: 65.679474,-54.05282 + 5107: 65.679474,-54.14657 + 5108: 65.73155,-54.104904 + 5109: 65.773224,-53.969486 + 5110: 65.68989,-53.886154 + 5111: 65.81489,-53.730347 + 5112: 65.72114,-53.636597 - node: color: '#531C1BCE' id: splatter decals: - 4804: -32.756413,32.99334 - 4805: -33.068913,32.977715 + 4798: -32.756413,32.99334 + 4799: -33.068913,32.977715 - node: cleanable: True color: '#57121280' id: splatter decals: - 5967: 82.97577,-29.956984 + 5961: 82.97577,-29.956984 - node: color: '#5A1C1BCE' id: splatter decals: - 4807: -32.803288,32.99334 + 4801: -32.803288,32.99334 - node: color: '#5D1C1B56' id: splatter decals: - 4815: -32.865788,32.946465 - 4816: -32.662663,32.977715 + 4809: -32.865788,32.946465 + 4810: -32.662663,32.977715 - node: angle: 4.71238898038469 rad color: '#66191FFF' id: splatter decals: - 4916: -29.468346,38.499607 + 4910: -29.468346,38.499607 - node: angle: 4.71238898038469 rad color: '#69191FFF' id: splatter decals: - 4910: -29.70272,38.60488 + 4904: -29.70272,38.60488 - node: color: '#7F263485' id: splatter decals: - 4818: -30.095814,38.732487 - 4819: -30.220814,38.669987 - 4820: -30.189564,38.65436 - 4821: -29.970814,38.607487 - 4822: -29.595814,38.84186 - 4823: -29.720814,38.919987 - 4824: -30.127064,38.919987 + 4812: -30.095814,38.732487 + 4813: -30.220814,38.669987 + 4814: -30.189564,38.65436 + 4815: -29.970814,38.607487 + 4816: -29.595814,38.84186 + 4817: -29.720814,38.919987 + 4818: -30.127064,38.919987 - node: color: '#82233484' id: splatter decals: - 4828: -29.533314,38.669987 + 4822: -29.533314,38.669987 - node: color: '#823331D0' id: splatter decals: - 4803: -32.818913,32.977715 + 4797: -32.818913,32.977715 - node: angle: 4.71238898038469 rad color: '#88191FFF' id: splatter decals: - 4907: -30.04647,38.683006 - 4908: -29.67147,38.651756 - 4913: -29.85897,38.745506 - 4914: -30.01522,38.744385 + 4901: -30.04647,38.683006 + 4902: -29.67147,38.651756 + 4907: -29.85897,38.745506 + 4908: -30.01522,38.744385 - node: color: '#8B333177' id: splatter decals: - 4794: -32.959538,33.133965 - 4795: -32.537663,33.071465 - 4796: -32.537663,33.071465 - 4797: -32.584538,32.915215 - 4798: -32.693913,32.883965 - 4799: -32.818913,32.946465 - 4800: -32.865788,32.977715 - 4801: -32.928288,33.008965 - 4802: -33.053288,33.02459 + 4788: -32.959538,33.133965 + 4789: -32.537663,33.071465 + 4790: -32.537663,33.071465 + 4791: -32.584538,32.915215 + 4792: -32.693913,32.883965 + 4793: -32.818913,32.946465 + 4794: -32.865788,32.977715 + 4795: -32.928288,33.008965 + 4796: -33.053288,33.02459 - node: color: '#8B333484' id: splatter decals: - 4831: -30.017689,38.65436 - 4832: -29.486439,38.43561 - 4833: -29.314564,38.326237 - 4834: -29.392689,38.34186 - 4835: -29.392689,38.34186 - 4836: -29.345814,38.201237 + 4825: -30.017689,38.65436 + 4826: -29.486439,38.43561 + 4827: -29.314564,38.326237 + 4828: -29.392689,38.34186 + 4829: -29.392689,38.34186 + 4830: -29.345814,38.201237 - node: color: '#A11C1BCE' id: splatter decals: - 4806: -32.772038,32.946465 + 4800: -32.772038,32.946465 - node: angle: 4.71238898038469 rad color: '#A7191FFF' id: splatter decals: - 4917: -29.51522,38.546482 + 4911: -29.51522,38.546482 - node: angle: -0.12217304763960307 rad color: '#B13C3BAE' id: splatter decals: - 5659: -25.63536,53.268898 - 5660: -25.619736,53.268898 + 5653: -25.63536,53.268898 + 5654: -25.619736,53.268898 - node: color: '#B1FF5D9B' id: splatter decals: - 5761: -7.9504223,-11.344076 - 5762: -7.9504223,-11.344076 - 5763: -7.9504223,-11.344076 - 5764: -7.9504223,-11.344076 + 5755: -7.9504223,-11.344076 + 5756: -7.9504223,-11.344076 + 5757: -7.9504223,-11.344076 + 5758: -7.9504223,-11.344076 - node: angle: 4.71238898038469 rad color: '#B4191FFF' id: splatter decals: - 4909: -29.79647,38.714256 + 4903: -29.79647,38.714256 - node: color: '#B7333177' id: splatter decals: - 4789: -32.64408,33.123943 - 4790: -32.64408,33.07707 - 4791: -33.003456,33.04582 - 4792: -33.11283,33.030193 + 4783: -32.64408,33.123943 + 4784: -32.64408,33.07707 + 4785: -33.003456,33.04582 + 4786: -33.11283,33.030193 - node: angle: 4.71238898038469 rad color: '#C0191FFF' id: splatter decals: - 4911: -29.79647,38.66738 - 4912: -30.01522,38.69863 - 4915: -29.76522,38.749607 + 4905: -29.79647,38.66738 + 4906: -30.01522,38.69863 + 4909: -29.76522,38.749607 - node: color: '#D0333484' id: splatter decals: - 4837: -29.595814,38.59186 - 4838: -29.595814,38.59186 - 4839: -29.252064,38.24811 + 4831: -29.595814,38.59186 + 4832: -29.595814,38.59186 + 4833: -29.252064,38.24811 - node: color: '#D6233484' id: splatter decals: - 4825: -30.048939,38.826237 - 4826: -29.642689,38.794987 - 4827: -29.908314,38.701237 + 4819: -30.048939,38.826237 + 4820: -29.642689,38.794987 + 4821: -29.908314,38.701237 - node: color: '#DC1C1B56' id: splatter decals: - 4808: -32.709538,32.915215 - 4809: -32.756413,32.99334 - 4810: -32.756413,33.008965 - 4811: -32.662663,32.946465 - 4812: -33.084538,33.133965 - 4813: -33.022038,33.071465 - 4814: -32.709538,33.05584 + 4802: -32.709538,32.915215 + 4803: -32.756413,32.99334 + 4804: -32.756413,33.008965 + 4805: -32.662663,32.946465 + 4806: -33.084538,33.133965 + 4807: -33.022038,33.071465 + 4808: -32.709538,33.05584 - node: color: '#DC232847' id: splatter decals: - 5858: -7,-6 - 5859: -7,-6 - 5860: -7,-6 - 5861: -7,-6 - 5862: -7.223279,-5.971253 + 5852: -7,-6 + 5853: -7,-6 + 5854: -7,-6 + 5855: -7,-6 + 5856: -7.223279,-5.971253 - node: color: '#DF2F2BA7' id: splatter decals: - 4775: -7,-4 - 4776: -8.195765,-5.554666 - 4777: -8.008265,-5.601541 - 4778: -7.6957645,-5.476541 - 4779: -8.133265,-5.226541 - 4780: -7.1176395,-4.190757 + 4769: -7,-4 + 4770: -8.195765,-5.554666 + 4771: -8.008265,-5.601541 + 4772: -7.6957645,-5.476541 + 4773: -8.133265,-5.226541 + 4774: -7.1176395,-4.190757 - node: color: '#E9333179' id: splatter decals: - 4781: -33.14408,33.061443 - 4782: -32.61283,32.79582 - 4783: -32.565956,33.248943 - 4784: -32.847206,33.13957 - 4785: -32.58158,33.030193 - 4786: -32.409706,33.07707 - 4787: -32.753456,33.10832 - 4788: -32.597206,32.998943 + 4775: -33.14408,33.061443 + 4776: -32.61283,32.79582 + 4777: -32.565956,33.248943 + 4778: -32.847206,33.13957 + 4779: -32.58158,33.030193 + 4780: -32.409706,33.07707 + 4781: -32.753456,33.10832 + 4782: -32.597206,32.998943 - node: color: '#E94C5384' id: splatter decals: - 4829: -29.955189,38.71686 + 4823: -29.955189,38.71686 - node: color: '#F2333484' id: splatter decals: - 4830: -29.908314,38.74811 + 4824: -29.908314,38.74811 - node: angle: -0.12217304763960307 rad color: '#FF4C4D84' id: splatter decals: - 5713: -26.59578,52.81722 - 5714: -26.56453,52.81722 - 5715: -26.65828,52.84847 - 5716: -26.65828,52.84847 - 5717: -26.59578,52.801594 + 5707: -26.59578,52.81722 + 5708: -26.56453,52.81722 + 5709: -26.65828,52.84847 + 5710: -26.65828,52.84847 + 5711: -26.59578,52.801594 - node: angle: -0.12217304763960307 rad color: '#FF666656' id: splatter decals: - 5674: -25.557236,53.145344 - 5675: -25.525986,53.16097 - 5676: -25.557236,53.16097 - 5677: -25.525986,53.16097 + 5668: -25.557236,53.145344 + 5669: -25.525986,53.16097 + 5670: -25.557236,53.16097 + 5671: -25.525986,53.16097 - node: angle: -0.12217304763960307 rad color: '#FFFFFF57' id: splatter decals: - 5661: -25.47911,53.472023 - 5662: -25.38536,53.472023 - 5663: -25.38536,53.472023 - 5664: -25.44786,53.472023 - 5665: -25.57286,53.097023 - 5666: -25.557236,53.050148 - 5667: -25.557236,53.050148 - 5668: -25.557236,53.050148 - 5669: -25.557236,53.159523 - 5670: -25.79161,52.706398 - 5671: -25.38536,53.534523 - 5672: -25.57286,52.956398 - 5673: -25.588486,53.784523 + 5655: -25.47911,53.472023 + 5656: -25.38536,53.472023 + 5657: -25.38536,53.472023 + 5658: -25.44786,53.472023 + 5659: -25.57286,53.097023 + 5660: -25.557236,53.050148 + 5661: -25.557236,53.050148 + 5662: -25.557236,53.050148 + 5663: -25.557236,53.159523 + 5664: -25.79161,52.706398 + 5665: -25.38536,53.534523 + 5666: -25.57286,52.956398 + 5667: -25.588486,53.784523 - type: GridAtmosphere version: 2 data: @@ -15922,7 +15924,14 @@ entities: - type: Transform pos: 19.385426,20.427948 parent: 2 -- proto: BookChefGaming +- proto: BookChemicalCompendium + entities: + - uid: 10129 + components: + - type: Transform + pos: 22.700108,-3.4844224 + parent: 2 +- proto: BookHowToCookForFortySpaceman entities: - uid: 10130 components: @@ -15934,13 +15943,6 @@ entities: - type: Transform pos: 11.505812,14.742923 parent: 2 -- proto: BookChemicalCompendium - entities: - - uid: 10129 - components: - - type: Transform - pos: 22.700108,-3.4844224 - parent: 2 - proto: BookLeafLoversSecret entities: - uid: 10126 @@ -27831,6 +27833,11 @@ entities: - type: Transform pos: 80.5,-29.5 parent: 2 + - uid: 9483 + components: + - type: Transform + pos: 29.5,58.5 + parent: 2 - uid: 9633 components: - type: Transform @@ -28781,6 +28788,171 @@ entities: - type: Transform pos: 84.5,-16.5 parent: 2 + - uid: 17410 + components: + - type: Transform + pos: 29.5,59.5 + parent: 2 + - uid: 17411 + components: + - type: Transform + pos: 30.5,59.5 + parent: 2 + - uid: 17412 + components: + - type: Transform + pos: 31.5,59.5 + parent: 2 + - uid: 17413 + components: + - type: Transform + pos: 32.5,59.5 + parent: 2 + - uid: 17414 + components: + - type: Transform + pos: 33.5,59.5 + parent: 2 + - uid: 17415 + components: + - type: Transform + pos: 34.5,59.5 + parent: 2 + - uid: 17416 + components: + - type: Transform + pos: 34.5,60.5 + parent: 2 + - uid: 17417 + components: + - type: Transform + pos: 34.5,61.5 + parent: 2 + - uid: 17418 + components: + - type: Transform + pos: 35.5,61.5 + parent: 2 + - uid: 17419 + components: + - type: Transform + pos: 36.5,61.5 + parent: 2 + - uid: 17420 + components: + - type: Transform + pos: 36.5,62.5 + parent: 2 + - uid: 17421 + components: + - type: Transform + pos: 36.5,63.5 + parent: 2 + - uid: 17422 + components: + - type: Transform + pos: 36.5,64.5 + parent: 2 + - uid: 17423 + components: + - type: Transform + pos: 36.5,65.5 + parent: 2 + - uid: 17424 + components: + - type: Transform + pos: 37.5,65.5 + parent: 2 + - uid: 17425 + components: + - type: Transform + pos: 38.5,65.5 + parent: 2 + - uid: 17426 + components: + - type: Transform + pos: 38.5,66.5 + parent: 2 + - uid: 17427 + components: + - type: Transform + pos: 38.5,67.5 + parent: 2 + - uid: 17428 + components: + - type: Transform + pos: 38.5,68.5 + parent: 2 + - uid: 17429 + components: + - type: Transform + pos: 39.5,65.5 + parent: 2 + - uid: 17430 + components: + - type: Transform + pos: 40.5,65.5 + parent: 2 + - uid: 17431 + components: + - type: Transform + pos: 40.5,64.5 + parent: 2 + - uid: 17432 + components: + - type: Transform + pos: 40.5,63.5 + parent: 2 + - uid: 17433 + components: + - type: Transform + pos: 40.5,62.5 + parent: 2 + - uid: 17434 + components: + - type: Transform + pos: 40.5,61.5 + parent: 2 + - uid: 17448 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 17449 + components: + - type: Transform + pos: -22.5,17.5 + parent: 2 + - uid: 17450 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 + - uid: 17451 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 + - uid: 17452 + components: + - type: Transform + pos: -23.5,15.5 + parent: 2 + - uid: 17453 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 17489 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 17490 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 - proto: CableApcStack entities: - uid: 3087 @@ -44320,23 +44492,6 @@ entities: - type: Transform pos: 6.4973297,11.596997 parent: 2 -- proto: chem_master - entities: - - uid: 5970 - components: - - type: Transform - pos: 20.5,1.5 - parent: 2 - - uid: 5971 - components: - - type: Transform - pos: 24.5,-2.5 - parent: 2 - - uid: 5972 - components: - - type: Transform - pos: 8.5,-9.5 - parent: 2 - proto: ChemDispenser entities: - uid: 5973 @@ -44387,6 +44542,23 @@ entities: - type: Transform pos: -4.5,-12.5 parent: 2 +- proto: ChemMaster + entities: + - uid: 5970 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 + - uid: 5971 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 + - uid: 5972 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 - proto: ChessBoard entities: - uid: 5981 @@ -45605,6 +45777,15 @@ entities: - type: Transform pos: -16.265472,-0.28076363 parent: 2 +- proto: ClothingOuterCoatDetectiveLoadout + entities: + - uid: 6183 + components: + - type: Transform + parent: 6182 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterCoatGentle entities: - uid: 6180 @@ -45619,15 +45800,6 @@ entities: - type: Transform pos: 36.51544,31.549007 parent: 2 -- proto: ClothingOuterCoatInspector - entities: - - uid: 6183 - components: - - type: Transform - parent: 6182 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingOuterCoatJensen entities: - uid: 6184 @@ -69891,13 +70063,6 @@ entities: - type: Transform pos: 63.191357,-49.411076 parent: 2 -- proto: GravityGeneratorMini - entities: - - uid: 9483 - components: - - type: Transform - pos: 38.5,68.5 - parent: 2 - proto: GrenadeFlashBang entities: - uid: 9484 @@ -74789,6 +74954,13 @@ entities: - type: Transform pos: 11.469202,54.61479 parent: 2 +- proto: MaterialSilo + entities: + - uid: 14579 + components: + - type: Transform + pos: 12.5,51.5 + parent: 2 - proto: MaterialWoodPlank1 entities: - uid: 10322 @@ -85202,6 +85374,13 @@ entities: - type: Transform pos: 42.5,7.5 parent: 2 +- proto: PlayerStationAi + entities: + - uid: 9482 + components: + - type: Transform + pos: 38.5,68.5 + parent: 2 - proto: PlushieAtmosian entities: - uid: 12274 @@ -94494,8 +94673,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,44.5 parent: 2 -- proto: SignAtmosMinsky - entities: - uid: 13634 components: - type: Transform @@ -94569,13 +94746,6 @@ entities: - type: Transform pos: -14.5,32.5 parent: 2 -- proto: SignCourt - entities: - - uid: 17363 - components: - - type: Transform - pos: -58.5,15.5 - parent: 2 - proto: SignCryogenics entities: - uid: 13646 @@ -95004,28 +95174,19 @@ entities: - type: Transform pos: -54.5,-8.5 parent: 2 -- proto: SignMail +- proto: SignLawyer entities: - - uid: 13705 + - uid: 17363 components: - type: Transform - pos: 40.5,13.5 + pos: -58.5,15.5 parent: 2 -- proto: SignMinerDock +- proto: SignMail entities: - - uid: 13706 - components: - - type: MetaData - desc: A sign indicating the mine deposit. - name: mine deposit sign - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-17.5 - parent: 2 - - uid: 17147 + - uid: 13705 components: - type: Transform - pos: 85.5,2.5 + pos: 40.5,13.5 parent: 2 - proto: SignNosmoking entities: @@ -95064,6 +95225,15 @@ entities: parent: 2 - proto: SignShipDock entities: + - uid: 13706 + components: + - type: MetaData + desc: A sign indicating the mine deposit. + name: mine deposit sign + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-17.5 + parent: 2 - uid: 13715 components: - type: Transform @@ -95086,6 +95256,11 @@ entities: rot: -1.5707963267948966 rad pos: -55.5,-9.5 parent: 2 + - uid: 17147 + components: + - type: Transform + pos: 85.5,2.5 + parent: 2 - proto: SignShock entities: - uid: 8502 @@ -95393,7 +95568,7 @@ entities: - type: Transform pos: -25.464527,-4.685829 parent: 2 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 13758 components: @@ -95769,6 +95944,18 @@ entities: - type: Transform pos: 41.5,-5.5 parent: 2 +- proto: SpawnPointAdminAssistant + entities: + - uid: 17496 + components: + - type: Transform + pos: 32.5,45.5 + parent: 2 + - uid: 17497 + components: + - type: Transform + pos: 35.5,45.5 + parent: 2 - proto: SpawnPointAtmos entities: - uid: 13850 @@ -95808,6 +95995,13 @@ entities: - type: Transform pos: 15.5,22.5 parent: 2 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 17494 + components: + - type: Transform + pos: 31.5,45.5 + parent: 2 - proto: SpawnPointBorg entities: - uid: 16491 @@ -96373,6 +96567,13 @@ entities: - type: Transform pos: 55.5,41.5 parent: 2 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 17495 + components: + - type: Transform + pos: 36.5,45.5 + parent: 2 - proto: SpawnPointObserver entities: - uid: 13958 @@ -97596,6 +97797,29 @@ entities: - SurveillanceCameraCommand nameSet: True id: Vault + - uid: 17435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,68.5 + parent: 2 + - uid: 17436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,61.5 + parent: 2 + - uid: 17437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,59.5 + parent: 2 + - uid: 17438 + components: + - type: Transform + pos: 37.5,52.5 + parent: 2 - proto: SurveillanceCameraEngineering entities: - uid: 5352 @@ -97706,6 +97930,33 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmospheric Upper Courtyard + - uid: 17443 + components: + - type: Transform + pos: 14.5,56.5 + parent: 2 + - uid: 17444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,54.5 + parent: 2 + - uid: 17491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,39.5 + parent: 2 + - uid: 17492 + components: + - type: Transform + pos: 24.5,45.5 + parent: 2 + - uid: 17493 + components: + - type: Transform + pos: 11.5,51.5 + parent: 2 - proto: SurveillanceCameraGeneral entities: - uid: 14106 @@ -97801,6 +98052,152 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Evacuation + - uid: 17439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,31.5 + parent: 2 + - uid: 17440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,38.5 + parent: 2 + - uid: 17441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,29.5 + parent: 2 + - uid: 17442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,40.5 + parent: 2 + - uid: 17458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,6.5 + parent: 2 + - uid: 17459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,12.5 + parent: 2 + - uid: 17460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,20.5 + parent: 2 + - uid: 17461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,29.5 + parent: 2 + - uid: 17462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2 + - uid: 17465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-11.5 + parent: 2 + - uid: 17471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-11.5 + parent: 2 + - uid: 17472 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 2 + - uid: 17473 + components: + - type: Transform + pos: 81.5,-13.5 + parent: 2 + - uid: 17477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,7.5 + parent: 2 + - uid: 17478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,2.5 + parent: 2 + - uid: 17479 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - uid: 17480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 2 + - uid: 17481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-2.5 + parent: 2 + - uid: 17482 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 17483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 2 + - uid: 17484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-16.5 + parent: 2 + - uid: 17485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 2 + - uid: 17486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,6.5 + parent: 2 + - uid: 17487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,7.5 + parent: 2 + - uid: 17488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-4.5 + parent: 2 - proto: SurveillanceCameraMedical entities: - uid: 13913 @@ -97901,6 +98298,24 @@ entities: - SurveillanceCameraMedical nameSet: True id: Chemistry Lab + - uid: 17455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,15.5 + parent: 2 + - uid: 17456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 2 + - uid: 17457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - uid: 14125 @@ -98028,6 +98443,29 @@ entities: - SurveillanceCameraScience nameSet: True id: Forensic Mantis' Office + - uid: 17467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-17.5 + parent: 2 + - uid: 17468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-28.5 + parent: 2 + - uid: 17469 + components: + - type: Transform + pos: 31.5,-31.5 + parent: 2 + - uid: 17470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-31.5 + parent: 2 - proto: SurveillanceCameraSecurity entities: - uid: 14139 @@ -98180,6 +98618,30 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Courtroom + - uid: 17445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,33.5 + parent: 2 + - uid: 17446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,23.5 + parent: 2 + - uid: 17447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,16.5 + parent: 2 + - uid: 17454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,22.5 + parent: 2 - proto: SurveillanceCameraService entities: - uid: 14153 @@ -98257,6 +98719,41 @@ entities: parent: 2 - type: SurveillanceCamera id: Salvage Dock + - uid: 17463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,12.5 + parent: 2 + - uid: 17464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,4.5 + parent: 2 + - uid: 17466 + components: + - type: Transform + pos: 48.5,14.5 + parent: 2 + - uid: 17474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,4.5 + parent: 2 + - uid: 17475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,4.5 + parent: 2 + - uid: 17476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,5.5 + parent: 2 - proto: SurveillanceCameraWirelessRouterEntertainment entities: - uid: 14159 @@ -100527,13 +101024,6 @@ entities: rot: -1.5707963267948966 rad pos: 59.421833,-15.183031 parent: 2 -- proto: ToyAi - entities: - - uid: 14579 - components: - - type: Transform - pos: 38.500664,68.70377 - parent: 2 - proto: ToyFigurineClown entities: - uid: 14580 diff --git a/Resources/Maps/hammurabi.yml b/Resources/Maps/hammurabi.yml index 0afaa64934e021..c5e3cb0e87665f 100644 --- a/Resources/Maps/hammurabi.yml +++ b/Resources/Maps/hammurabi.yml @@ -17114,12 +17114,13 @@ entities: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: PhysicsMap + - type: GridTree + - type: MovedGrids - type: Broadphase - type: OccluderTree - type: LoadedMap - - type: GridTree - - type: MovedGrids - proto: AirAlarm entities: - uid: 35 @@ -17149,8 +17150,6 @@ entities: - 28207 - 27271 - 28203 - - type: AtmosDevice - joinedGrid: 1 - uid: 121 components: - type: Transform @@ -17184,8 +17183,6 @@ entities: - 27060 - 27992 - 29653 - - type: AtmosDevice - joinedGrid: 1 - uid: 122 components: - type: Transform @@ -17202,8 +17199,6 @@ entities: - 28416 - 27411 - 63 - - type: AtmosDevice - joinedGrid: 1 - uid: 145 components: - type: Transform @@ -17217,8 +17212,6 @@ entities: - 27345 - 27991 - 27101 - - type: AtmosDevice - joinedGrid: 1 - uid: 209 components: - type: Transform @@ -17249,8 +17242,6 @@ entities: - 27993 - 27983 - 27149 - - type: AtmosDevice - joinedGrid: 1 - uid: 1744 components: - type: Transform @@ -17274,8 +17265,6 @@ entities: - 23369 - 24827 - 23368 - - type: AtmosDevice - joinedGrid: 1 - uid: 3209 components: - type: Transform @@ -17298,8 +17287,6 @@ entities: - 26362 - 24927 - 24934 - - type: AtmosDevice - joinedGrid: 1 - uid: 4412 components: - type: Transform @@ -17319,8 +17306,6 @@ entities: - 14577 - 24829 - 23358 - - type: AtmosDevice - joinedGrid: 1 - uid: 4486 components: - type: Transform @@ -17335,8 +17320,6 @@ entities: - 24861 - 22851 - 16805 - - type: AtmosDevice - joinedGrid: 1 - uid: 4941 components: - type: Transform @@ -17345,8 +17328,6 @@ entities: - type: DeviceList devices: - 36733 - - type: AtmosDevice - joinedGrid: 1 - uid: 7586 components: - type: Transform @@ -17368,8 +17349,6 @@ entities: - 19234 - 23026 - 24975 - - type: AtmosDevice - joinedGrid: 1 - uid: 9855 components: - type: Transform @@ -17391,8 +17370,6 @@ entities: - 24337 - 23265 - 24338 - - type: AtmosDevice - joinedGrid: 1 - uid: 13266 components: - type: Transform @@ -17416,8 +17393,6 @@ entities: - 30025 - 23332 - 24837 - - type: AtmosDevice - joinedGrid: 1 - uid: 13956 components: - type: Transform @@ -17435,8 +17410,6 @@ entities: - 27658 - 26811 - 27659 - - type: AtmosDevice - joinedGrid: 1 - uid: 14556 components: - type: Transform @@ -17468,8 +17441,6 @@ entities: - 24833 - 23335 - 24835 - - type: AtmosDevice - joinedGrid: 1 - uid: 14983 components: - type: Transform @@ -17483,8 +17454,6 @@ entities: - 41648 - 37374 - 37371 - - type: AtmosDevice - joinedGrid: 1 - uid: 15065 components: - type: Transform @@ -17498,8 +17467,6 @@ entities: - 212 - 27990 - 27100 - - type: AtmosDevice - joinedGrid: 1 - uid: 16630 components: - type: Transform @@ -17517,8 +17484,6 @@ entities: - 41676 - 38169 - 23512 - - type: AtmosDevice - joinedGrid: 1 - uid: 16633 components: - type: Transform @@ -17537,8 +17502,6 @@ entities: - 25026 - 6754 - 41590 - - type: AtmosDevice - joinedGrid: 1 - uid: 18597 components: - type: Transform @@ -17547,8 +17510,6 @@ entities: - type: DeviceList devices: - 16634 - - type: AtmosDevice - joinedGrid: 1 - uid: 27563 components: - type: Transform @@ -17566,8 +17527,6 @@ entities: - 29563 - 29803 - 29574 - - type: AtmosDevice - joinedGrid: 1 - uid: 29584 components: - type: Transform @@ -17588,8 +17547,6 @@ entities: - 26207 - 25064 - 26208 - - type: AtmosDevice - joinedGrid: 1 - uid: 29726 components: - type: Transform @@ -17607,8 +17564,6 @@ entities: - 27482 - 28243 - 27483 - - type: AtmosDevice - joinedGrid: 1 - uid: 29780 components: - type: Transform @@ -17634,8 +17589,6 @@ entities: - 27269 - 27268 - 28208 - - type: AtmosDevice - joinedGrid: 1 - uid: 29783 components: - type: Transform @@ -17656,8 +17609,6 @@ entities: - 25431 - 26274 - 29859 - - type: AtmosDevice - joinedGrid: 1 - uid: 29786 components: - type: Transform @@ -17676,8 +17627,6 @@ entities: - 26443 - 25612 - 26442 - - type: AtmosDevice - joinedGrid: 1 - uid: 29788 components: - type: Transform @@ -17696,8 +17645,6 @@ entities: - 25615 - 29556 - 33509 - - type: AtmosDevice - joinedGrid: 1 - uid: 29860 components: - type: Transform @@ -17722,8 +17669,6 @@ entities: - 25428 - 29569 - 33509 - - type: AtmosDevice - joinedGrid: 1 - uid: 29863 components: - type: Transform @@ -17757,8 +17702,6 @@ entities: - 25436 - 25371 - 26121 - - type: AtmosDevice - joinedGrid: 1 - uid: 29871 components: - type: Transform @@ -17771,8 +17714,6 @@ entities: - 29869 - 26396 - 25511 - - type: AtmosDevice - joinedGrid: 1 - uid: 29872 components: - type: Transform @@ -17785,8 +17726,6 @@ entities: - 29868 - 26395 - 25510 - - type: AtmosDevice - joinedGrid: 1 - uid: 29873 components: - type: Transform @@ -17800,8 +17739,6 @@ entities: - 29867 - 26394 - 25509 - - type: AtmosDevice - joinedGrid: 1 - uid: 29879 components: - type: Transform @@ -17837,8 +17774,6 @@ entities: - 25369 - 25376 - 26089 - - type: AtmosDevice - joinedGrid: 1 - uid: 29883 components: - type: Transform @@ -17854,8 +17789,6 @@ entities: - 41543 - 37488 - 37694 - - type: AtmosDevice - joinedGrid: 1 - uid: 29885 components: - type: Transform @@ -17868,8 +17801,6 @@ entities: - 29571 - 26095 - 25370 - - type: AtmosDevice - joinedGrid: 1 - uid: 29889 components: - type: Transform @@ -17884,8 +17815,6 @@ entities: - 25289 - 25288 - 26018 - - type: AtmosDevice - joinedGrid: 1 - uid: 29894 components: - type: Transform @@ -17908,8 +17837,6 @@ entities: - 26021 - 26020 - 25350 - - type: AtmosDevice - joinedGrid: 1 - uid: 29901 components: - type: Transform @@ -17926,8 +17853,6 @@ entities: - 29905 - 25292 - 26013 - - type: AtmosDevice - joinedGrid: 1 - uid: 29902 components: - type: Transform @@ -17948,8 +17873,6 @@ entities: - 25606 - 34984 - 26281 - - type: AtmosDevice - joinedGrid: 1 - uid: 29903 components: - type: Transform @@ -17967,8 +17890,6 @@ entities: - 26098 - 26100 - 25368 - - type: AtmosDevice - joinedGrid: 1 - uid: 29906 components: - type: Transform @@ -17984,8 +17905,6 @@ entities: - 25284 - 26012 - 29588 - - type: AtmosDevice - joinedGrid: 1 - uid: 29910 components: - type: Transform @@ -18000,8 +17919,6 @@ entities: - 25375 - 25374 - 26227 - - type: AtmosDevice - joinedGrid: 1 - uid: 29913 components: - type: Transform @@ -18039,8 +17956,6 @@ entities: - 23395 - 24982 - 23394 - - type: AtmosDevice - joinedGrid: 1 - uid: 29917 components: - type: Transform @@ -18064,8 +17979,6 @@ entities: - 41583 - 23397 - 25014 - - type: AtmosDevice - joinedGrid: 1 - uid: 29918 components: - type: Transform @@ -18086,8 +17999,6 @@ entities: - 29794 - 37241 - 37240 - - type: AtmosDevice - joinedGrid: 1 - uid: 29926 components: - type: Transform @@ -18109,8 +18020,6 @@ entities: - 25782 - 26578 - 25768 - - type: AtmosDevice - joinedGrid: 1 - uid: 29928 components: - type: Transform @@ -18142,8 +18051,6 @@ entities: - 26792 - 26793 - 27699 - - type: AtmosDevice - joinedGrid: 1 - uid: 29937 components: - type: Transform @@ -18156,8 +18063,6 @@ entities: - 29920 - 23065 - 24501 - - type: AtmosDevice - joinedGrid: 1 - uid: 30036 components: - type: Transform @@ -18180,8 +18085,6 @@ entities: - 22942 - 24377 - 22943 - - type: AtmosDevice - joinedGrid: 1 - uid: 30063 components: - type: Transform @@ -18216,8 +18119,6 @@ entities: - 24549 - 23122 - 24539 - - type: AtmosDevice - joinedGrid: 1 - uid: 30065 components: - type: Transform @@ -18249,8 +18150,6 @@ entities: - 26493 - 26489 - 23103 - - type: AtmosDevice - joinedGrid: 1 - uid: 30068 components: - type: Transform @@ -18267,8 +18166,6 @@ entities: - 29679 - 26590 - 25676 - - type: AtmosDevice - joinedGrid: 1 - uid: 30071 components: - type: Transform @@ -18301,8 +18198,6 @@ entities: - 26596 - 25678 - 10306 - - type: AtmosDevice - joinedGrid: 1 - uid: 30077 components: - type: Transform @@ -18315,8 +18210,6 @@ entities: - 30056 - 24855 - 23293 - - type: AtmosDevice - joinedGrid: 1 - uid: 30079 components: - type: Transform @@ -18332,8 +18225,6 @@ entities: - 24846 - 23295 - 24847 - - type: AtmosDevice - joinedGrid: 1 - uid: 30085 components: - type: Transform @@ -18348,8 +18239,6 @@ entities: - 30083 - 25654 - 26392 - - type: AtmosDevice - joinedGrid: 1 - uid: 30087 components: - type: Transform @@ -18378,8 +18267,6 @@ entities: - 25661 - 26476 - 25660 - - type: AtmosDevice - joinedGrid: 1 - uid: 30090 components: - type: Transform @@ -18414,8 +18301,6 @@ entities: - 26579 - 25769 - 30093 - - type: AtmosDevice - joinedGrid: 1 - uid: 30092 components: - type: Transform @@ -18447,8 +18332,6 @@ entities: - 26463 - 27656 - 26426 - - type: AtmosDevice - joinedGrid: 1 - uid: 30094 components: - type: Transform @@ -18471,8 +18354,6 @@ entities: - 37122 - 37124 - 37111 - - type: AtmosDevice - joinedGrid: 1 - uid: 30095 components: - type: Transform @@ -18489,8 +18370,6 @@ entities: - 27634 - 27633 - 26950 - - type: AtmosDevice - joinedGrid: 1 - uid: 30096 components: - type: Transform @@ -18505,8 +18384,6 @@ entities: - 30115 - 27638 - 26988 - - type: AtmosDevice - joinedGrid: 1 - uid: 30099 components: - type: MetaData @@ -18547,8 +18424,6 @@ entities: - 41803 - 41802 - 41801 - - type: AtmosDevice - joinedGrid: 1 - uid: 30100 components: - type: Transform @@ -18587,8 +18462,6 @@ entities: - 27480 - 28249 - 27479 - - type: AtmosDevice - joinedGrid: 1 - uid: 30101 components: - type: Transform @@ -18619,8 +18492,6 @@ entities: - 28259 - 28095 - 27347 - - type: AtmosDevice - joinedGrid: 1 - uid: 30102 components: - type: Transform @@ -18637,16 +18508,12 @@ entities: - 22391 - 27186 - 28106 - - type: AtmosDevice - joinedGrid: 1 - uid: 30103 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30109 components: - type: Transform @@ -18661,8 +18528,6 @@ entities: - 29834 - 22019 - 16376 - - type: AtmosDevice - joinedGrid: 1 - uid: 30111 components: - type: Transform @@ -18700,8 +18565,6 @@ entities: - 24077 - 24076 - 22727 - - type: AtmosDevice - joinedGrid: 1 - uid: 30112 components: - type: Transform @@ -18735,8 +18598,6 @@ entities: - 22698 - 38289 - 38288 - - type: AtmosDevice - joinedGrid: 1 - uid: 30114 components: - type: Transform @@ -18768,8 +18629,6 @@ entities: - 34628 - 22423 - 23501 - - type: AtmosDevice - joinedGrid: 1 - uid: 30116 components: - type: Transform @@ -18781,8 +18640,6 @@ entities: - 29779 - 29845 - 26949 - - type: AtmosDevice - joinedGrid: 1 - uid: 30118 components: - type: Transform @@ -18807,8 +18664,6 @@ entities: - 26758 - 27784 - 16351 - - type: AtmosDevice - joinedGrid: 1 - uid: 30120 components: - type: Transform @@ -18836,8 +18691,6 @@ entities: - 26754 - 27826 - 16351 - - type: AtmosDevice - joinedGrid: 1 - uid: 30122 components: - type: Transform @@ -18862,8 +18715,6 @@ entities: - 27823 - 27822 - 26724 - - type: AtmosDevice - joinedGrid: 1 - uid: 30124 components: - type: Transform @@ -18880,8 +18731,6 @@ entities: - 26720 - 29839 - 30152 - - type: AtmosDevice - joinedGrid: 1 - uid: 30126 components: - type: Transform @@ -18896,8 +18745,6 @@ entities: - 26678 - 27764 - 26677 - - type: AtmosDevice - joinedGrid: 1 - uid: 30128 components: - type: Transform @@ -18916,8 +18763,6 @@ entities: - 29649 - 27962 - 27147 - - type: AtmosDevice - joinedGrid: 1 - uid: 30144 components: - type: Transform @@ -18932,8 +18777,6 @@ entities: - 29639 - 27825 - 26753 - - type: AtmosDevice - joinedGrid: 1 - uid: 30147 components: - type: Transform @@ -18947,8 +18790,6 @@ entities: - 27762 - 27763 - 26674 - - type: AtmosDevice - joinedGrid: 1 - uid: 30165 components: - type: Transform @@ -18971,8 +18812,6 @@ entities: - 27960 - 27959 - 27123 - - type: AtmosDevice - joinedGrid: 1 - uid: 30168 components: - type: Transform @@ -19006,8 +18845,6 @@ entities: - 35564 - 22232 - 30344 - - type: AtmosDevice - joinedGrid: 1 - uid: 30171 components: - type: Transform @@ -19026,8 +18863,6 @@ entities: - 41534 - 33653 - 33635 - - type: AtmosDevice - joinedGrid: 1 - uid: 30173 components: - type: Transform @@ -19043,8 +18878,6 @@ entities: - 41563 - 37649 - 37594 - - type: AtmosDevice - joinedGrid: 1 - uid: 30174 components: - type: Transform @@ -19061,8 +18894,6 @@ entities: - 41672 - 38259 - 38258 - - type: AtmosDevice - joinedGrid: 1 - uid: 30184 components: - type: Transform @@ -19091,8 +18922,6 @@ entities: - 27365 - 28260 - 27355 - - type: AtmosDevice - joinedGrid: 1 - uid: 30186 components: - type: Transform @@ -19106,8 +18935,6 @@ entities: - 27362 - 27363 - 28288 - - type: AtmosDevice - joinedGrid: 1 - uid: 30188 components: - type: Transform @@ -19134,16 +18961,12 @@ entities: - 27178 - 30205 - 30200 - - type: AtmosDevice - joinedGrid: 1 - uid: 30194 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-36.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30208 components: - type: Transform @@ -19165,8 +18988,6 @@ entities: - 29690 - 23145 - 24175 - - type: AtmosDevice - joinedGrid: 1 - uid: 30228 components: - type: Transform @@ -19184,8 +19005,6 @@ entities: - 23137 - 24222 - 23134 - - type: AtmosDevice - joinedGrid: 1 - uid: 30230 components: - type: Transform @@ -19225,8 +19044,6 @@ entities: - 23171 - 23170 - 24242 - - type: AtmosDevice - joinedGrid: 1 - uid: 30234 components: - type: Transform @@ -19256,8 +19073,6 @@ entities: - 24202 - 23179 - 24203 - - type: AtmosDevice - joinedGrid: 1 - uid: 30236 components: - type: Transform @@ -19275,8 +19090,6 @@ entities: - 24248 - 24249 - 23124 - - type: AtmosDevice - joinedGrid: 1 - uid: 30247 components: - type: Transform @@ -19296,8 +19109,6 @@ entities: - 23208 - 24273 - 23207 - - type: AtmosDevice - joinedGrid: 1 - uid: 30248 components: - type: Transform @@ -19319,8 +19130,6 @@ entities: - 23236 - 24320 - 23235 - - type: AtmosDevice - joinedGrid: 1 - uid: 30253 components: - type: Transform @@ -19346,8 +19155,6 @@ entities: - 30152 - 23101 - 24529 - - type: AtmosDevice - joinedGrid: 1 - uid: 30255 components: - type: Transform @@ -19382,8 +19189,6 @@ entities: - 22700 - 22656 - 23981 - - type: AtmosDevice - joinedGrid: 1 - uid: 30261 components: - type: Transform @@ -19405,8 +19210,6 @@ entities: - 22707 - 24157 - 30288 - - type: AtmosDevice - joinedGrid: 1 - uid: 30275 components: - type: Transform @@ -19424,8 +19227,6 @@ entities: - 22734 - 24083 - 30288 - - type: AtmosDevice - joinedGrid: 1 - uid: 30279 components: - type: Transform @@ -19444,8 +19245,6 @@ entities: - 30288 - 30023 - 41791 - - type: AtmosDevice - joinedGrid: 1 - uid: 30281 components: - type: Transform @@ -19469,8 +19268,6 @@ entities: - 30270 - 24131 - 22803 - - type: AtmosDevice - joinedGrid: 1 - uid: 30284 components: - type: Transform @@ -19485,8 +19282,6 @@ entities: - 30274 - 22794 - 24136 - - type: AtmosDevice - joinedGrid: 1 - uid: 30285 components: - type: Transform @@ -19499,8 +19294,6 @@ entities: - 30274 - 22786 - 24141 - - type: AtmosDevice - joinedGrid: 1 - uid: 36730 components: - type: MetaData @@ -19529,8 +19322,6 @@ entities: - 27057 - 28009 - 27059 - - type: AtmosDevice - joinedGrid: 1 - uid: 41548 components: - type: Transform @@ -19555,8 +19346,6 @@ entities: - 37683 - 37682 - 37497 - - type: AtmosDevice - joinedGrid: 1 - uid: 41550 components: - type: Transform @@ -19583,8 +19372,6 @@ entities: - 37519 - 37696 - 37520 - - type: AtmosDevice - joinedGrid: 1 - uid: 41556 components: - type: Transform @@ -19606,8 +19393,6 @@ entities: - 37689 - 37528 - 37686 - - type: AtmosDevice - joinedGrid: 1 - uid: 41560 components: - type: Transform @@ -19622,8 +19407,6 @@ entities: - 37688 - 37525 - 37687 - - type: AtmosDevice - joinedGrid: 1 - uid: 41570 components: - type: Transform @@ -19638,8 +19421,6 @@ entities: - 41573 - 37648 - 37578 - - type: AtmosDevice - joinedGrid: 1 - uid: 41571 components: - type: Transform @@ -19656,8 +19437,6 @@ entities: - 41574 - 37608 - 37609 - - type: AtmosDevice - joinedGrid: 1 - uid: 41575 components: - type: Transform @@ -19676,8 +19455,6 @@ entities: - 37624 - 37650 - 26928 - - type: AtmosDevice - joinedGrid: 1 - uid: 41585 components: - type: Transform @@ -19700,8 +19477,6 @@ entities: - 41614 - 24628 - 36276 - - type: AtmosDevice - joinedGrid: 1 - uid: 41587 components: - type: Transform @@ -19716,8 +19491,6 @@ entities: - 36285 - 24700 - 36286 - - type: AtmosDevice - joinedGrid: 1 - uid: 41596 components: - type: Transform @@ -19741,8 +19514,6 @@ entities: - 41606 - 24748 - 41622 - - type: AtmosDevice - joinedGrid: 1 - uid: 41599 components: - type: Transform @@ -19756,8 +19527,6 @@ entities: - 41610 - 6014 - 16848 - - type: AtmosDevice - joinedGrid: 1 - uid: 41601 components: - type: Transform @@ -19771,8 +19540,6 @@ entities: - 41603 - 16849 - 23025 - - type: AtmosDevice - joinedGrid: 1 - uid: 41619 components: - type: Transform @@ -19785,8 +19552,6 @@ entities: - 41612 - 29221 - 14676 - - type: AtmosDevice - joinedGrid: 1 - uid: 41623 components: - type: Transform @@ -19798,8 +19563,6 @@ entities: - 41626 - 37278 - 36908 - - type: AtmosDevice - joinedGrid: 1 - uid: 41636 components: - type: Transform @@ -19821,8 +19584,6 @@ entities: - 34631 - 37362 - 34597 - - type: AtmosDevice - joinedGrid: 1 - uid: 41638 components: - type: Transform @@ -19838,8 +19599,6 @@ entities: - 34601 - 34604 - 34603 - - type: AtmosDevice - joinedGrid: 1 - uid: 41640 components: - type: Transform @@ -19855,8 +19614,6 @@ entities: - 41635 - 34596 - 34595 - - type: AtmosDevice - joinedGrid: 1 - uid: 41642 components: - type: Transform @@ -19866,8 +19623,6 @@ entities: - type: DeviceList devices: - 41643 - - type: AtmosDevice - joinedGrid: 1 - uid: 41645 components: - type: Transform @@ -19885,8 +19640,6 @@ entities: - 34209 - 23048 - 34598 - - type: AtmosDevice - joinedGrid: 1 - uid: 41650 components: - type: Transform @@ -19908,8 +19661,6 @@ entities: - 30239 - 23205 - 24269 - - type: AtmosDevice - joinedGrid: 1 - uid: 41655 components: - type: Transform @@ -19926,8 +19677,6 @@ entities: - 41653 - 37422 - 37424 - - type: AtmosDevice - joinedGrid: 1 - uid: 41659 components: - type: Transform @@ -19944,8 +19693,6 @@ entities: - 37449 - 22752 - 37450 - - type: AtmosDevice - joinedGrid: 1 - uid: 41662 components: - type: Transform @@ -19963,8 +19710,6 @@ entities: - 37386 - 22605 - 23908 - - type: AtmosDevice - joinedGrid: 1 - uid: 41665 components: - type: Transform @@ -19982,8 +19727,6 @@ entities: - 38332 - 38330 - 38331 - - type: AtmosDevice - joinedGrid: 1 - uid: 41668 components: - type: Transform @@ -20000,8 +19743,6 @@ entities: - 38321 - 38300 - 38322 - - type: AtmosDevice - joinedGrid: 1 - uid: 41737 components: - type: Transform @@ -20016,8 +19757,6 @@ entities: - 41704 - 41706 - 41703 - - type: AtmosDevice - joinedGrid: 1 - uid: 41741 components: - type: Transform @@ -20040,8 +19779,6 @@ entities: - 41688 - 41690 - 41702 - - type: AtmosDevice - joinedGrid: 1 - uid: 41744 components: - type: Transform @@ -20058,8 +19795,6 @@ entities: - 41743 - 27413 - 35510 - - type: AtmosDevice - joinedGrid: 1 - uid: 41748 components: - type: Transform @@ -20076,8 +19811,6 @@ entities: - 38215 - 38228 - 38214 - - type: AtmosDevice - joinedGrid: 1 - uid: 41749 components: - type: Transform @@ -20100,8 +19833,6 @@ entities: - 37870 - 37871 - 37898 - - type: AtmosDevice - joinedGrid: 1 - uid: 41751 components: - type: Transform @@ -20118,8 +19849,6 @@ entities: - 37474 - 37983 - 37982 - - type: AtmosDevice - joinedGrid: 1 - uid: 41753 components: - type: Transform @@ -20136,8 +19865,6 @@ entities: - 38016 - 38011 - 38017 - - type: AtmosDevice - joinedGrid: 1 - uid: 41756 components: - type: Transform @@ -20154,8 +19881,6 @@ entities: - 38015 - 38014 - 38013 - - type: AtmosDevice - joinedGrid: 1 - uid: 41757 components: - type: Transform @@ -20180,8 +19905,6 @@ entities: - 38180 - 37953 - 37952 - - type: AtmosDevice - joinedGrid: 1 - uid: 41760 components: - type: Transform @@ -20205,8 +19928,6 @@ entities: - 38179 - 38257 - 38260 - - type: AtmosDevice - joinedGrid: 1 - uid: 41770 components: - type: Transform @@ -20221,8 +19942,6 @@ entities: - 30191 - 27198 - 27193 - - type: AtmosDevice - joinedGrid: 1 - uid: 41772 components: - type: Transform @@ -20240,8 +19959,6 @@ entities: - 29853 - 37782 - 37783 - - type: AtmosDevice - joinedGrid: 1 - uid: 41775 components: - type: Transform @@ -20259,8 +19976,6 @@ entities: - 41780 - 27423 - 26922 - - type: AtmosDevice - joinedGrid: 1 - uid: 41784 components: - type: Transform @@ -20280,8 +19995,6 @@ entities: - 28377 - 28378 - 27013 - - type: AtmosDevice - joinedGrid: 1 - uid: 42164 components: - type: Transform @@ -20300,8 +20013,6 @@ entities: - 26009 - 26007 - 13961 - - type: AtmosDevice - joinedGrid: 1 - proto: AirAlarmAssembly entities: - uid: 30612 @@ -20317,127 +20028,91 @@ entities: - type: Transform pos: -31.542486,33.480453 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 10028 components: - type: Transform pos: 52.5,-12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 10227 components: - type: Transform pos: 48.5,-12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 10350 components: - type: Transform pos: 54.5,-54.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 20281 components: - type: Transform pos: -105.5,-45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 22305 components: - type: Transform pos: -103.5,-42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28175 components: - type: Transform pos: 1.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28760 components: - type: Transform pos: 3.5,-27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28761 components: - type: Transform pos: 2.5,-27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30625 components: - type: Transform pos: -124.5,21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30763 components: - type: Transform pos: -58.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30931 components: - type: Transform pos: -36.5,-73.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30932 components: - type: Transform pos: -52.5,-73.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31008 components: - type: Transform pos: 15.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31044 components: - type: Transform pos: -48.5,12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36653 components: - type: Transform pos: -96.5,-82.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36720 components: - type: Transform pos: -15.5,-62.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36975 components: - type: Transform pos: -110.5,-47.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: Airlock entities: - uid: 1453 @@ -20650,6 +20325,13 @@ entities: - type: Transform pos: -111.5,0.5 parent: 1 +- proto: AirlockCaptainLocked + entities: + - uid: 18445 + components: + - type: Transform + pos: -117.5,-0.5 + parent: 1 - proto: AirlockCargoGlassLocked entities: - uid: 2114 @@ -24432,13 +24114,6 @@ entities: - type: Transform pos: -13.5,10.5 parent: 1 -- proto: AirlockServiceCaptainLocked - entities: - - uid: 18445 - components: - - type: Transform - pos: -117.5,-0.5 - parent: 1 - proto: AirlockServiceGlassLocked entities: - uid: 2937 @@ -26088,8 +25763,6 @@ entities: deviceLists: - 41637 - 41636 - - type: AtmosDevice - joinedGrid: 1 - uid: 41511 components: - type: Transform @@ -26580,7 +26253,6 @@ entities: solutions: jar: temperature: 293.15 - canMix: False canReact: True maxVol: 120 name: null @@ -26597,7 +26269,6 @@ entities: solutions: jar: temperature: 293.15 - canMix: False canReact: True maxVol: 120 name: null @@ -26614,7 +26285,6 @@ entities: solutions: jar: temperature: 293.15 - canMix: False canReact: True maxVol: 120 name: null @@ -26631,7 +26301,6 @@ entities: solutions: jar: temperature: 293.15 - canMix: False canReact: True maxVol: 120 name: null @@ -26653,7 +26322,6 @@ entities: solutions: jar: temperature: 293.15 - canMix: False canReact: True maxVol: 120 name: null @@ -29286,7 +28954,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 30 name: null @@ -29305,7 +28972,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 30 name: null @@ -29329,16 +28995,12 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-37.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30039 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: Basketball entities: - uid: 11162 @@ -29363,7 +29025,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 50 name: null @@ -29380,7 +29041,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 50 name: null @@ -29397,7 +29057,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 50 name: null @@ -30732,18 +30391,6 @@ entities: - type: Transform pos: -85.54477,-50.276264 parent: 1 -- proto: BookChefGaming - entities: - - uid: 9645 - components: - - type: Transform - pos: -32.475998,10.675412 - parent: 1 - - uid: 32054 - components: - - type: Transform - pos: -22.474867,7.6008115 - parent: 1 - proto: BookChemicalCompendium entities: - uid: 4671 @@ -30758,14 +30405,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.52896166,-39.458164 parent: 1 -- proto: BookDetective - entities: - - uid: 11233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.462261,1.7426231 - parent: 1 - proto: BookEngineersHandbook entities: - uid: 8883 @@ -30779,13 +30418,17 @@ entities: - type: Transform pos: -34.523594,-64.49235 parent: 1 -- proto: BookFishing +- proto: BookHowToCookForFortySpaceman entities: - - uid: 11234 + - uid: 9645 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.7671967,2.5765367 + pos: -32.475998,10.675412 + parent: 1 + - uid: 32054 + components: + - type: Transform + pos: -22.474867,7.6008115 parent: 1 - proto: BookHowToSurvive entities: @@ -30876,6 +30519,20 @@ entities: - type: Transform pos: -69.510765,38.599113 parent: 1 +- proto: BookRandomStory + entities: + - uid: 11233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.462261,1.7426231 + parent: 1 + - uid: 11234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.7671967,2.5765367 + parent: 1 - proto: BookSalvageEpistemicsRandom entities: - uid: 2630 @@ -31789,7 +31446,6 @@ entities: solutions: bucket: temperature: 293.15 - canMix: False canReact: True maxVol: 250 name: null @@ -31811,7 +31467,6 @@ entities: solutions: bucket: temperature: 293.15 - canMix: False canReact: True maxVol: 250 name: null @@ -74191,8 +73846,6 @@ entities: - type: Transform pos: -111.5,-55.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: Carpet entities: - uid: 2340 @@ -85091,28 +84744,6 @@ entities: - type: Transform pos: 6.7841825,-15.290186 parent: 1 -- proto: chem_master - entities: - - uid: 4752 - components: - - type: Transform - pos: -62.5,-22.5 - parent: 1 - - uid: 9170 - components: - - type: Transform - pos: 3.5,-35.5 - parent: 1 - - uid: 9902 - components: - - type: Transform - pos: -62.5,-29.5 - parent: 1 - - uid: 28516 - components: - - type: Transform - pos: -30.5,-10.5 - parent: 1 - proto: ChemDispenser entities: - uid: 4753 @@ -85139,7 +84770,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 30 name: null @@ -85164,6 +84794,28 @@ entities: - 32234 - type: PlaceableSurface isPlaceable: False +- proto: ChemMaster + entities: + - uid: 4752 + components: + - type: Transform + pos: -62.5,-22.5 + parent: 1 + - uid: 9170 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 1 + - uid: 9902 + components: + - type: Transform + pos: -62.5,-29.5 + parent: 1 + - uid: 28516 + components: + - type: Transform + pos: -30.5,-10.5 + parent: 1 - proto: Cigar entities: - uid: 12767 @@ -86937,7 +86589,7 @@ entities: - type: Transform pos: -18.535843,-58.66812 parent: 1 -- proto: ClothingHeadHatFlowerCrown +- proto: ClothingHeadHatFlowerWreath entities: - uid: 15228 components: @@ -87038,18 +86690,6 @@ entities: - type: Transform pos: -79.589195,-75.39599 parent: 1 -- proto: ClothingHeadHatHairflower - entities: - - uid: 8343 - components: - - type: Transform - pos: -69.99157,7.6034684 - parent: 1 - - uid: 30796 - components: - - type: Transform - pos: -70.39416,-40.21738 - parent: 1 - proto: ClothingHeadHatHoodBioGeneral entities: - uid: 36014 @@ -91380,7 +91020,7 @@ entities: - type: Transform pos: -8.5,29.5 parent: 1 -- proto: CrateFunPlushie +- proto: CrateFunToyBox entities: - uid: 12278 components: @@ -92250,8 +91890,6 @@ entities: - type: Transform pos: 2.5,-29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: CryoxadoneBeakerSmall entities: - uid: 27204 @@ -106193,7 +105831,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null @@ -106364,7 +106001,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -106443,7 +106079,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 100 name: null @@ -106715,7 +106350,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -109123,8 +108757,6 @@ entities: - 29650 - 143 - 212 - - type: AtmosDevice - joinedGrid: 1 - uid: 61 components: - type: Transform @@ -109142,8 +108774,6 @@ entities: - 41782 - 27338 - 27339 - - type: AtmosDevice - joinedGrid: 1 - uid: 68 components: - type: Transform @@ -109177,8 +108807,6 @@ entities: - 29659 - 29656 - 29653 - - type: AtmosDevice - joinedGrid: 1 - uid: 96 components: - type: Transform @@ -109192,8 +108820,6 @@ entities: - 41492 - 41542 - 41543 - - type: AtmosDevice - joinedGrid: 1 - uid: 98 components: - type: Transform @@ -109211,8 +108837,6 @@ entities: - 27333 - 27334 - 27335 - - type: AtmosDevice - joinedGrid: 1 - uid: 99 components: - type: Transform @@ -109224,8 +108848,6 @@ entities: - 29650 - 27346 - 27345 - - type: AtmosDevice - joinedGrid: 1 - uid: 144 components: - type: Transform @@ -109238,8 +108860,6 @@ entities: - 29654 - 27341 - 63 - - type: AtmosDevice - joinedGrid: 1 - uid: 520 components: - type: Transform @@ -109263,8 +108883,6 @@ entities: - 14554 - 29608 - 30061 - - type: AtmosDevice - joinedGrid: 1 - uid: 1585 components: - type: Transform @@ -109278,8 +108896,6 @@ entities: - 30199 - 29700 - 22391 - - type: AtmosDevice - joinedGrid: 1 - uid: 4090 components: - type: Transform @@ -109296,8 +108912,6 @@ entities: - 41491 - 41540 - 41541 - - type: AtmosDevice - joinedGrid: 1 - uid: 4740 components: - type: Transform @@ -109315,8 +108929,6 @@ entities: - 29808 - 29610 - 14577 - - type: AtmosDevice - joinedGrid: 1 - uid: 5124 components: - type: Transform @@ -109329,8 +108941,6 @@ entities: - 29604 - 29916 - 10518 - - type: AtmosDevice - joinedGrid: 1 - uid: 5456 components: - type: Transform @@ -109343,8 +108953,6 @@ entities: - 29900 - 29916 - 29797 - - type: AtmosDevice - joinedGrid: 1 - uid: 6118 components: - type: Transform @@ -109376,8 +108984,6 @@ entities: - 22345 - 22346 - 22347 - - type: AtmosDevice - joinedGrid: 1 - uid: 6689 components: - type: Transform @@ -109399,8 +109005,6 @@ entities: - 41580 - 29920 - 41583 - - type: AtmosDevice - joinedGrid: 1 - uid: 8102 components: - type: Transform @@ -109419,8 +109023,6 @@ entities: - 29795 - 29575 - 29794 - - type: AtmosDevice - joinedGrid: 1 - uid: 8313 components: - type: Transform @@ -109436,8 +109038,6 @@ entities: - 29676 - 30073 - 30093 - - type: AtmosDevice - joinedGrid: 1 - uid: 9856 components: - type: Transform @@ -109453,8 +109053,6 @@ entities: - 29614 - 29616 - 29615 - - type: AtmosDevice - joinedGrid: 1 - uid: 12147 components: - type: Transform @@ -109474,8 +109072,6 @@ entities: - 29601 - 14554 - 30029 - - type: AtmosDevice - joinedGrid: 1 - uid: 12232 components: - type: Transform @@ -109501,8 +109097,6 @@ entities: - 22318 - 29675 - 22322 - - type: AtmosDevice - joinedGrid: 1 - uid: 13960 components: - type: Transform @@ -109528,8 +109122,6 @@ entities: - 11375 - 22302 - 22303 - - type: AtmosDevice - joinedGrid: 1 - uid: 13988 components: - type: Transform @@ -109542,8 +109134,6 @@ entities: - 22321 - 29779 - 29844 - - type: AtmosDevice - joinedGrid: 1 - uid: 13997 components: - type: Transform @@ -109556,8 +109146,6 @@ entities: - 22320 - 29779 - 30115 - - type: AtmosDevice - joinedGrid: 1 - uid: 14067 components: - type: MetaData @@ -109594,8 +109182,6 @@ entities: - 41803 - 41802 - 41801 - - type: AtmosDevice - joinedGrid: 1 - uid: 14068 components: - type: Transform @@ -109630,8 +109216,6 @@ entities: - 12070 - 12071 - 12072 - - type: AtmosDevice - joinedGrid: 1 - uid: 14069 components: - type: Transform @@ -109658,8 +109242,6 @@ entities: - 29660 - 27336 - 27337 - - type: AtmosDevice - joinedGrid: 1 - uid: 14555 components: - type: Transform @@ -109677,8 +109259,6 @@ entities: - 29939 - 4385 - 13502 - - type: AtmosDevice - joinedGrid: 1 - uid: 14568 components: - type: Transform @@ -109689,8 +109269,6 @@ entities: devices: - 29601 - 30054 - - type: AtmosDevice - joinedGrid: 1 - uid: 14572 components: - type: Transform @@ -109703,8 +109281,6 @@ entities: - 30191 - 30207 - 29834 - - type: AtmosDevice - joinedGrid: 1 - uid: 15030 components: - type: Transform @@ -109729,8 +109305,6 @@ entities: - 12078 - 12077 - 12076 - - type: AtmosDevice - joinedGrid: 1 - uid: 16488 components: - type: Transform @@ -109758,8 +109332,6 @@ entities: - 30270 - 30288 - 41661 - - type: AtmosDevice - joinedGrid: 1 - uid: 16627 components: - type: Transform @@ -109787,8 +109359,6 @@ entities: - 30113 - 41520 - 41517 - - type: AtmosDevice - joinedGrid: 1 - uid: 16629 components: - type: Transform @@ -109816,8 +109386,6 @@ entities: - 30324 - 41520 - 41518 - - type: AtmosDevice - joinedGrid: 1 - uid: 16631 components: - type: Transform @@ -109843,8 +109411,6 @@ entities: - 41684 - 29709 - 22374 - - type: AtmosDevice - joinedGrid: 1 - uid: 16632 components: - type: Transform @@ -109859,8 +109425,6 @@ entities: - 33738 - 12843 - 12718 - - type: AtmosDevice - joinedGrid: 1 - uid: 27562 components: - type: Transform @@ -109878,8 +109442,6 @@ entities: - 29563 - 29803 - 29574 - - type: AtmosDevice - joinedGrid: 1 - uid: 29583 components: - type: Transform @@ -109892,8 +109454,6 @@ entities: - 29881 - 22363 - 29571 - - type: AtmosDevice - joinedGrid: 1 - uid: 29724 components: - type: Transform @@ -109907,8 +109467,6 @@ entities: - 27342 - 29852 - 29725 - - type: AtmosDevice - joinedGrid: 1 - uid: 29784 components: - type: Transform @@ -109923,8 +109481,6 @@ entities: - 29785 - 28519 - 29859 - - type: AtmosDevice - joinedGrid: 1 - uid: 29787 components: - type: Transform @@ -109939,8 +109495,6 @@ entities: - 29731 - 29765 - 29730 - - type: AtmosDevice - joinedGrid: 1 - uid: 29789 components: - type: Transform @@ -109958,8 +109512,6 @@ entities: - 22324 - 29556 - 33509 - - type: AtmosDevice - joinedGrid: 1 - uid: 29861 components: - type: Transform @@ -109980,8 +109532,6 @@ entities: - 22358 - 29569 - 33509 - - type: AtmosDevice - joinedGrid: 1 - uid: 29864 components: - type: Transform @@ -110009,8 +109559,6 @@ entities: - 22358 - 22359 - 22360 - - type: AtmosDevice - joinedGrid: 1 - uid: 29875 components: - type: Transform @@ -110024,8 +109572,6 @@ entities: - 20075 - 30084 - 30083 - - type: AtmosDevice - joinedGrid: 1 - uid: 29876 components: - type: Transform @@ -110037,8 +109583,6 @@ entities: - 29564 - 29569 - 29867 - - type: AtmosDevice - joinedGrid: 1 - uid: 29877 components: - type: Transform @@ -110049,8 +109593,6 @@ entities: - 29564 - 29569 - 29868 - - type: AtmosDevice - joinedGrid: 1 - uid: 29878 components: - type: Transform @@ -110061,8 +109603,6 @@ entities: - 29564 - 29569 - 29869 - - type: AtmosDevice - joinedGrid: 1 - uid: 29880 components: - type: Transform @@ -110090,8 +109630,6 @@ entities: - 29573 - 29572 - 29866 - - type: AtmosDevice - joinedGrid: 1 - uid: 29884 components: - type: Transform @@ -110110,8 +109648,6 @@ entities: - 28519 - 29557 - 29730 - - type: AtmosDevice - joinedGrid: 1 - uid: 29886 components: - type: Transform @@ -110122,8 +109658,6 @@ entities: devices: - 29865 - 29571 - - type: AtmosDevice - joinedGrid: 1 - uid: 29890 components: - type: Transform @@ -110134,8 +109668,6 @@ entities: devices: - 29588 - 29892 - - type: AtmosDevice - joinedGrid: 1 - uid: 29895 components: - type: Transform @@ -110154,8 +109686,6 @@ entities: - 29908 - 29586 - 29892 - - type: AtmosDevice - joinedGrid: 1 - uid: 29904 components: - type: Transform @@ -110170,8 +109700,6 @@ entities: - 29891 - 29590 - 29905 - - type: AtmosDevice - joinedGrid: 1 - uid: 29907 components: - type: Transform @@ -110185,8 +109713,6 @@ entities: - 29905 - 29893 - 29588 - - type: AtmosDevice - joinedGrid: 1 - uid: 29911 components: - type: Transform @@ -110197,8 +109723,6 @@ entities: devices: - 29571 - 29866 - - type: AtmosDevice - joinedGrid: 1 - uid: 29929 components: - type: Transform @@ -110208,8 +109732,6 @@ entities: devices: - 29556 - 30105 - - type: AtmosDevice - joinedGrid: 1 - uid: 29938 components: - type: Transform @@ -110220,8 +109742,6 @@ entities: - 29848 - 29811 - 29920 - - type: AtmosDevice - joinedGrid: 1 - uid: 30037 components: - type: Transform @@ -110232,8 +109752,6 @@ entities: - 29816 - 29618 - 29815 - - type: AtmosDevice - joinedGrid: 1 - uid: 30062 components: - type: Transform @@ -110256,8 +109774,6 @@ entities: - 30086 - 29915 - 29677 - - type: AtmosDevice - joinedGrid: 1 - uid: 30064 components: - type: Transform @@ -110288,8 +109804,6 @@ entities: - 22336 - 29681 - 29682 - - type: AtmosDevice - joinedGrid: 1 - uid: 30066 components: - type: Transform @@ -110317,8 +109831,6 @@ entities: - 22331 - 22330 - 29676 - - type: AtmosDevice - joinedGrid: 1 - uid: 30069 components: - type: Transform @@ -110333,8 +109845,6 @@ entities: - 29677 - 29680 - 29679 - - type: AtmosDevice - joinedGrid: 1 - uid: 30070 components: - type: Transform @@ -110357,8 +109867,6 @@ entities: - 29676 - 22326 - 10306 - - type: AtmosDevice - joinedGrid: 1 - uid: 30078 components: - type: Transform @@ -110369,8 +109877,6 @@ entities: devices: - 29601 - 30056 - - type: AtmosDevice - joinedGrid: 1 - uid: 30080 components: - type: Transform @@ -110381,8 +109887,6 @@ entities: devices: - 29601 - 30055 - - type: AtmosDevice - joinedGrid: 1 - uid: 30091 components: - type: Transform @@ -110412,16 +109916,12 @@ entities: - 29675 - 29629 - 30093 - - type: AtmosDevice - joinedGrid: 1 - uid: 30104 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30110 components: - type: Transform @@ -110433,8 +109933,6 @@ entities: - 41647 - 29697 - 41648 - - type: AtmosDevice - joinedGrid: 1 - uid: 30117 components: - type: Transform @@ -110445,8 +109943,6 @@ entities: devices: - 29779 - 29845 - - type: AtmosDevice - joinedGrid: 1 - uid: 30119 components: - type: Transform @@ -110467,8 +109963,6 @@ entities: - 30138 - 29637 - 16351 - - type: AtmosDevice - joinedGrid: 1 - uid: 30121 components: - type: Transform @@ -110492,8 +109986,6 @@ entities: - 30143 - 30149 - 16351 - - type: AtmosDevice - joinedGrid: 1 - uid: 30123 components: - type: Transform @@ -110512,8 +110004,6 @@ entities: - 22412 - 30142 - 29640 - - type: AtmosDevice - joinedGrid: 1 - uid: 30125 components: - type: Transform @@ -110526,8 +110016,6 @@ entities: - 30142 - 29839 - 30152 - - type: AtmosDevice - joinedGrid: 1 - uid: 30127 components: - type: Transform @@ -110538,8 +110026,6 @@ entities: devices: - 29637 - 30135 - - type: AtmosDevice - joinedGrid: 1 - uid: 30129 components: - type: Transform @@ -110556,8 +110042,6 @@ entities: - 30132 - 27326 - 29649 - - type: AtmosDevice - joinedGrid: 1 - uid: 30145 components: - type: Transform @@ -110570,8 +110054,6 @@ entities: - 30149 - 30139 - 29639 - - type: AtmosDevice - joinedGrid: 1 - uid: 30148 components: - type: Transform @@ -110581,8 +110063,6 @@ entities: devices: - 29637 - 30146 - - type: AtmosDevice - joinedGrid: 1 - uid: 30166 components: - type: Transform @@ -110599,8 +110079,6 @@ entities: - 29651 - 27329 - 27325 - - type: AtmosDevice - joinedGrid: 1 - uid: 30167 components: - type: Transform @@ -110616,8 +110094,6 @@ entities: - 41524 - 41677 - 41676 - - type: AtmosDevice - joinedGrid: 1 - uid: 30172 components: - type: Transform @@ -110633,8 +110109,6 @@ entities: - 41501 - 41615 - 41616 - - type: AtmosDevice - joinedGrid: 1 - uid: 30187 components: - type: Transform @@ -110644,8 +110118,6 @@ entities: - type: DeviceList devices: - 27340 - - type: AtmosDevice - joinedGrid: 1 - uid: 30189 components: - type: Transform @@ -110659,8 +110131,6 @@ entities: - 29671 - 29669 - 30199 - - type: AtmosDevice - joinedGrid: 1 - uid: 30209 components: - type: Transform @@ -110680,8 +110150,6 @@ entities: - 30214 - 30215 - 29690 - - type: AtmosDevice - joinedGrid: 1 - uid: 30229 components: - type: Transform @@ -110693,8 +110161,6 @@ entities: - 29688 - 29690 - 30216 - - type: AtmosDevice - joinedGrid: 1 - uid: 30231 components: - type: Transform @@ -110731,8 +110197,6 @@ entities: - 30226 - 29692 - 30232 - - type: AtmosDevice - joinedGrid: 1 - uid: 30235 components: - type: Transform @@ -110752,8 +110216,6 @@ entities: - 30225 - 29821 - 30023 - - type: AtmosDevice - joinedGrid: 1 - uid: 30237 components: - type: Transform @@ -110767,8 +110229,6 @@ entities: - 30227 - 30226 - 29688 - - type: AtmosDevice - joinedGrid: 1 - uid: 30246 components: - type: Transform @@ -110780,8 +110240,6 @@ entities: - 30240 - 29819 - 30022 - - type: AtmosDevice - joinedGrid: 1 - uid: 30249 components: - type: Transform @@ -110797,8 +110255,6 @@ entities: - 30241 - 30242 - 30243 - - type: AtmosDevice - joinedGrid: 1 - uid: 30254 components: - type: Transform @@ -110822,8 +110278,6 @@ entities: - 29699 - 29838 - 30152 - - type: AtmosDevice - joinedGrid: 1 - uid: 30256 components: - type: Transform @@ -110854,8 +110308,6 @@ entities: - 30259 - 30260 - 29627 - - type: AtmosDevice - joinedGrid: 1 - uid: 30262 components: - type: Transform @@ -110874,8 +110326,6 @@ entities: - 29623 - 29624 - 30288 - - type: AtmosDevice - joinedGrid: 1 - uid: 30276 components: - type: Transform @@ -110891,8 +110341,6 @@ entities: - 29628 - 29623 - 30288 - - type: AtmosDevice - joinedGrid: 1 - uid: 30280 components: - type: Transform @@ -110909,8 +110357,6 @@ entities: - 30288 - 30023 - 41791 - - type: AtmosDevice - joinedGrid: 1 - uid: 30282 components: - type: Transform @@ -110931,8 +110377,6 @@ entities: - 30271 - 30269 - 30270 - - type: AtmosDevice - joinedGrid: 1 - uid: 30283 components: - type: Transform @@ -110945,8 +110389,6 @@ entities: - 30273 - 29619 - 30274 - - type: AtmosDevice - joinedGrid: 1 - uid: 30286 components: - type: Transform @@ -110957,8 +110399,6 @@ entities: devices: - 29620 - 30274 - - type: AtmosDevice - joinedGrid: 1 - uid: 33643 components: - type: Transform @@ -110980,8 +110420,6 @@ entities: - 27340 - 29719 - 29720 - - type: AtmosDevice - joinedGrid: 1 - uid: 41549 components: - type: Transform @@ -110998,8 +110436,6 @@ entities: - 41544 - 41546 - 41547 - - type: AtmosDevice - joinedGrid: 1 - uid: 41551 components: - type: Transform @@ -111022,8 +110458,6 @@ entities: - 41554 - 41553 - 41552 - - type: AtmosDevice - joinedGrid: 1 - uid: 41557 components: - type: Transform @@ -111041,8 +110475,6 @@ entities: - 41563 - 41495 - 41564 - - type: AtmosDevice - joinedGrid: 1 - uid: 41561 components: - type: Transform @@ -111053,8 +110485,6 @@ entities: devices: - 41499 - 41562 - - type: AtmosDevice - joinedGrid: 1 - uid: 41568 components: - type: Transform @@ -111068,8 +110498,6 @@ entities: - 41565 - 41499 - 41563 - - type: AtmosDevice - joinedGrid: 1 - uid: 41569 components: - type: Transform @@ -111082,8 +110510,6 @@ entities: - 41566 - 41497 - 41573 - - type: AtmosDevice - joinedGrid: 1 - uid: 41572 components: - type: Transform @@ -111097,8 +110523,6 @@ entities: - 41574 - 37608 - 37609 - - type: AtmosDevice - joinedGrid: 1 - uid: 41576 components: - type: Transform @@ -111113,8 +110537,6 @@ entities: - 41564 - 29779 - 41567 - - type: AtmosDevice - joinedGrid: 1 - uid: 41577 components: - type: Transform @@ -111127,8 +110549,6 @@ entities: - 41579 - 29594 - 41578 - - type: AtmosDevice - joinedGrid: 1 - uid: 41584 components: - type: Transform @@ -111148,8 +110568,6 @@ entities: - 29921 - 41501 - 19234 - - type: AtmosDevice - joinedGrid: 1 - uid: 41586 components: - type: Transform @@ -111170,8 +110588,6 @@ entities: - 41611 - 41503 - 41614 - - type: AtmosDevice - joinedGrid: 1 - uid: 41588 components: - type: Transform @@ -111182,8 +110598,6 @@ entities: devices: - 41501 - 41611 - - type: AtmosDevice - joinedGrid: 1 - uid: 41597 components: - type: Transform @@ -111205,8 +110619,6 @@ entities: - 41501 - 41617 - 19235 - - type: AtmosDevice - joinedGrid: 1 - uid: 41598 components: - type: Transform @@ -111219,8 +110631,6 @@ entities: - 41609 - 41505 - 41610 - - type: AtmosDevice - joinedGrid: 1 - uid: 41602 components: - type: Transform @@ -111233,8 +110643,6 @@ entities: - 41605 - 41604 - 41603 - - type: AtmosDevice - joinedGrid: 1 - uid: 41620 components: - type: Transform @@ -111245,8 +110653,6 @@ entities: - 41501 - 41613 - 41612 - - type: AtmosDevice - joinedGrid: 1 - uid: 41624 components: - type: Transform @@ -111257,8 +110663,6 @@ entities: devices: - 41625 - 41626 - - type: AtmosDevice - joinedGrid: 1 - uid: 41637 components: - type: Transform @@ -111276,8 +110680,6 @@ entities: - 41513 - 41632 - 41633 - - type: AtmosDevice - joinedGrid: 1 - uid: 41639 components: - type: Transform @@ -111288,8 +110690,6 @@ entities: devices: - 41512 - 41634 - - type: AtmosDevice - joinedGrid: 1 - uid: 41641 components: - type: Transform @@ -111303,8 +110703,6 @@ entities: - 41632 - 41508 - 41635 - - type: AtmosDevice - joinedGrid: 1 - uid: 41646 components: - type: Transform @@ -111318,8 +110716,6 @@ entities: - 29920 - 41631 - 41630 - - type: AtmosDevice - joinedGrid: 1 - uid: 41651 components: - type: Transform @@ -111339,8 +110735,6 @@ entities: - 30238 - 29613 - 30239 - - type: AtmosDevice - joinedGrid: 1 - uid: 41656 components: - type: Transform @@ -111355,8 +110749,6 @@ entities: - 23613 - 41652 - 41653 - - type: AtmosDevice - joinedGrid: 1 - uid: 41660 components: - type: Transform @@ -111369,8 +110761,6 @@ entities: - 41661 - 30287 - 41658 - - type: AtmosDevice - joinedGrid: 1 - uid: 41663 components: - type: Transform @@ -111384,8 +110774,6 @@ entities: - 30321 - 29752 - 29751 - - type: AtmosDevice - joinedGrid: 1 - uid: 41666 components: - type: Transform @@ -111399,8 +110787,6 @@ entities: - 41523 - 16628 - 41664 - - type: AtmosDevice - joinedGrid: 1 - uid: 41667 components: - type: Transform @@ -111413,8 +110799,6 @@ entities: - 41517 - 29709 - 41518 - - type: AtmosDevice - joinedGrid: 1 - uid: 41738 components: - type: Transform @@ -111425,8 +110809,6 @@ entities: devices: - 29710 - 41736 - - type: AtmosDevice - joinedGrid: 1 - uid: 41740 components: - type: Transform @@ -111443,8 +110825,6 @@ entities: - 29709 - 41680 - 41679 - - type: AtmosDevice - joinedGrid: 1 - uid: 41745 components: - type: Transform @@ -111460,8 +110840,6 @@ entities: - 18596 - 41742 - 41743 - - type: AtmosDevice - joinedGrid: 1 - uid: 41746 components: - type: Transform @@ -111476,8 +110854,6 @@ entities: - 41523 - 41673 - 41672 - - type: AtmosDevice - joinedGrid: 1 - uid: 41747 components: - type: Transform @@ -111490,8 +110866,6 @@ entities: - 41675 - 41523 - 41674 - - type: AtmosDevice - joinedGrid: 1 - uid: 41750 components: - type: Transform @@ -111504,8 +110878,6 @@ entities: - 41763 - 41529 - 37479 - - type: AtmosDevice - joinedGrid: 1 - uid: 41752 components: - type: Transform @@ -111521,8 +110893,6 @@ entities: - 37476 - 37473 - 37474 - - type: AtmosDevice - joinedGrid: 1 - uid: 41754 components: - type: Transform @@ -111535,8 +110905,6 @@ entities: - 41767 - 41528 - 41768 - - type: AtmosDevice - joinedGrid: 1 - uid: 41755 components: - type: Transform @@ -111550,8 +110918,6 @@ entities: - 41765 - 41527 - 41767 - - type: AtmosDevice - joinedGrid: 1 - uid: 41758 components: - type: Transform @@ -111572,8 +110938,6 @@ entities: - 41526 - 41766 - 41765 - - type: AtmosDevice - joinedGrid: 1 - uid: 41759 components: - type: Transform @@ -111593,8 +110957,6 @@ entities: - 41524 - 41761 - 41762 - - type: AtmosDevice - joinedGrid: 1 - uid: 41771 components: - type: Transform @@ -111607,8 +110969,6 @@ entities: - 41769 - 29718 - 30191 - - type: AtmosDevice - joinedGrid: 1 - uid: 41773 components: - type: Transform @@ -111625,8 +110985,6 @@ entities: - 41742 - 29654 - 29853 - - type: AtmosDevice - joinedGrid: 1 - uid: 41774 components: - type: Transform @@ -111642,8 +111000,6 @@ entities: - 18596 - 41779 - 41780 - - type: AtmosDevice - joinedGrid: 1 - uid: 41783 components: - type: Transform @@ -111659,8 +111015,6 @@ entities: - 29649 - 41786 - 41785 - - type: AtmosDevice - joinedGrid: 1 - uid: 41795 components: - type: MetaData @@ -111677,8 +111031,6 @@ entities: - 41803 - 41802 - 41801 - - type: AtmosDevice - joinedGrid: 1 - proto: FireAlarmAssembly entities: - uid: 30613 @@ -117849,7 +117201,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 10 name: null @@ -118030,6 +117381,19 @@ entities: - type: Transform pos: -22.999104,-24.087002 parent: 1 +- proto: FoodKebabSkewer + entities: + - uid: 23691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.86674,0.631893 + parent: 1 + - uid: 34157 + components: + - type: Transform + pos: -92.34517,-42.339275 + parent: 1 - proto: FoodLollipop entities: - uid: 4599 @@ -118195,21 +117559,6 @@ entities: - type: Transform pos: -23.522871,9.588505 parent: 1 -- proto: FoodMeatLizardtailKebab - entities: - - uid: 23691 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.86674,0.631893 - parent: 1 -- proto: FoodMeatRatdoubleKebab - entities: - - uid: 34157 - components: - - type: Transform - pos: -92.34517,-42.339275 - parent: 1 - proto: FoodMeatSalami entities: - uid: 29515 @@ -118457,6 +117806,11 @@ entities: parent: 1 - proto: FoodPoppy entities: + - uid: 8343 + components: + - type: Transform + pos: -69.99157,7.6034684 + parent: 1 - uid: 9701 components: - type: Transform @@ -118467,6 +117821,11 @@ entities: - type: Transform pos: -30.465496,-20.39303 parent: 1 + - uid: 30796 + components: + - type: Transform + pos: -70.39416,-40.21738 + parent: 1 - proto: FoodPotato entities: - uid: 907 @@ -118539,7 +117898,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 20 name: null @@ -118588,14 +117946,7 @@ entities: - type: Transform pos: -7.4966226,26.602148 parent: 1 -- proto: FoodTacoBeef - entities: - - uid: 36858 - components: - - type: Transform - pos: -108.51099,-15.411085 - parent: 1 -- proto: FoodTacoChickenSupreme +- proto: FoodTacoShell entities: - uid: 3327 components: @@ -118607,6 +117958,11 @@ entities: - type: Transform pos: -113.362076,-54.217827 parent: 1 + - uid: 36858 + components: + - type: Transform + pos: -108.51099,-15.411085 + parent: 1 - proto: FoodTinBeans entities: - uid: 31244 @@ -118807,22 +118163,16 @@ entities: rot: -1.5707963267948966 rad pos: -106.5,-54.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 20312 components: - type: Transform pos: -107.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 20319 components: - type: Transform pos: -107.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 20324 @@ -118830,8 +118180,6 @@ entities: - type: Transform pos: -107.5,-61.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 22365 @@ -118840,8 +118188,6 @@ entities: rot: -1.5707963267948966 rad pos: -100.5,-54.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22431 @@ -118850,8 +118196,6 @@ entities: rot: -1.5707963267948966 rad pos: -103.5,-54.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24424 @@ -118860,8 +118204,6 @@ entities: rot: -1.5707963267948966 rad pos: -98.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - uid: 24770 @@ -118870,8 +118212,6 @@ entities: rot: -1.5707963267948966 rad pos: -99.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - uid: 25580 @@ -118879,8 +118219,6 @@ entities: - type: Transform pos: -107.5,-55.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#808080FF' - uid: 36705 @@ -118889,16 +118227,12 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-63.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36706 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-63.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasFilterFlipped entities: - uid: 9057 @@ -118907,16 +118241,12 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 13127 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#CCE5FFFF' - uid: 13247 @@ -118925,8 +118255,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-33.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15719 @@ -118935,8 +118263,6 @@ entities: rot: 3.141592653589793 rad pos: -96.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23017 @@ -118945,8 +118271,6 @@ entities: rot: 1.5707963267948966 rad pos: -97.5,-54.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 31699 @@ -118955,22 +118279,16 @@ entities: rot: 1.5707963267948966 rad pos: -109.5,-76.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31702 components: - type: Transform pos: -110.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31703 components: - type: Transform pos: -110.5,-74.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasMinerNitrogenStationLarge entities: - uid: 22161 @@ -118978,8 +118296,6 @@ entities: - type: Transform pos: -104.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasMinerOxygenStationLarge entities: - uid: 22162 @@ -118987,8 +118303,6 @@ entities: - type: Transform pos: -101.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasMinerWaterVapor entities: - uid: 32178 @@ -118996,8 +118310,6 @@ entities: - type: Transform pos: -107.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasMixer entities: - uid: 26297 @@ -119005,8 +118317,6 @@ entities: - type: Transform pos: -103.5,-58.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#808080FF' - uid: 26299 @@ -119014,8 +118324,6 @@ entities: - type: Transform pos: -103.5,-60.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 26316 @@ -119023,8 +118331,6 @@ entities: - type: Transform pos: -103.5,-62.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - proto: GasMixerFlipped @@ -119037,8 +118343,6 @@ entities: - type: GasMixer inletTwoConcentration: 0.79 inletOneConcentration: 0.21 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27916 @@ -119047,8 +118351,6 @@ entities: rot: 1.5707963267948966 rad pos: -111.5,-64.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasOutletInjector entities: - uid: 3366 @@ -119056,8 +118358,6 @@ entities: - type: Transform pos: -24.5,-63.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4954 @@ -119065,8 +118365,6 @@ entities: - type: Transform pos: -102.5,-42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16054 @@ -119075,22 +118373,16 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-58.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 18868 components: - type: Transform pos: -103.5,-43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 22120 components: - type: Transform pos: -103.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 22128 @@ -119098,8 +118390,6 @@ entities: - type: Transform pos: -100.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 26902 @@ -119108,8 +118398,6 @@ entities: rot: 1.5707963267948966 rad pos: -109.5,-55.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#808080FF' - uid: 26903 @@ -119118,16 +118406,12 @@ entities: rot: 1.5707963267948966 rad pos: -109.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 26904 components: - type: Transform rot: 1.5707963267948966 rad pos: -109.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 26905 @@ -119136,8 +118420,6 @@ entities: rot: 1.5707963267948966 rad pos: -109.5,-61.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 28580 @@ -119146,8 +118428,6 @@ entities: rot: 3.141592653589793 rad pos: -105.5,-74.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 28581 @@ -119156,8 +118436,6 @@ entities: rot: 3.141592653589793 rad pos: -102.5,-74.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 28583 @@ -119166,8 +118444,6 @@ entities: rot: 3.141592653589793 rad pos: -101.5,-74.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 28587 @@ -119176,8 +118452,6 @@ entities: rot: 3.141592653589793 rad pos: -104.5,-74.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 28588 @@ -119186,23 +118460,17 @@ entities: rot: 3.141592653589793 rad pos: -103.5,-74.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 32180 components: - type: Transform pos: -106.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 34068 components: - type: Transform rot: 3.141592653589793 rad pos: -94.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF9999FF' - proto: GasPassiveGate @@ -119213,8 +118481,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25539 @@ -119223,8 +118489,6 @@ entities: rot: 3.141592653589793 rad pos: -96.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - uid: 27753 @@ -119233,8 +118497,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 31737 @@ -119243,8 +118505,6 @@ entities: rot: 1.5707963267948966 rad pos: -101.5,-63.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasPassiveVent entities: - uid: 3283 @@ -119253,23 +118513,17 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-62.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 3287 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-63.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 4953 components: - type: Transform pos: -101.5,-43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11111 @@ -119278,8 +118532,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20348 @@ -119288,8 +118540,6 @@ entities: rot: 1.5707963267948966 rad pos: -101.5,-42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22126 @@ -119298,8 +118548,6 @@ entities: rot: 3.141592653589793 rad pos: -103.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 22127 @@ -119308,8 +118556,6 @@ entities: rot: 3.141592653589793 rad pos: -100.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 22311 @@ -119317,8 +118563,6 @@ entities: - type: Transform pos: -101.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 22312 @@ -119326,8 +118570,6 @@ entities: - type: Transform pos: -104.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 26910 @@ -119335,8 +118577,6 @@ entities: - type: Transform pos: -110.5,-55.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#808080FF' - uid: 26911 @@ -119344,15 +118584,11 @@ entities: - type: Transform pos: -110.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 26912 components: - type: Transform pos: -110.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 26913 @@ -119360,8 +118596,6 @@ entities: - type: Transform pos: -110.5,-61.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 28549 @@ -119369,66 +118603,48 @@ entities: - type: Transform pos: -105.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28550 components: - type: Transform pos: -104.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28551 components: - type: Transform pos: -103.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28552 components: - type: Transform pos: -102.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28566 components: - type: Transform pos: -101.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28592 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,-64.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31219 components: - type: Transform rot: 3.141592653589793 rad pos: -109.5,-79.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 32182 components: - type: Transform pos: -108.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 34069 components: - type: Transform pos: -94.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF9999FF' - proto: GasPipeBend @@ -168304,85 +167520,63 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 7006 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-58.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 8903 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 19246 components: - type: Transform rot: 3.141592653589793 rad pos: -103.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 20313 components: - type: Transform rot: -1.5707963267948966 rad pos: -104.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 22309 components: - type: Transform pos: -95.5,-45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 22310 components: - type: Transform pos: -94.5,-45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 24467 components: - type: Transform pos: -65.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 25545 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 25546 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,-58.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 25556 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-47.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 25557 @@ -168391,8 +167585,6 @@ entities: rot: -1.5707963267948966 rad pos: -99.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 26294 @@ -168401,15 +167593,11 @@ entities: rot: -1.5707963267948966 rad pos: -104.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 26345 components: - type: Transform pos: -105.5,-63.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 26346 @@ -168418,8 +167606,6 @@ entities: rot: -1.5707963267948966 rad pos: -99.5,-61.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - uid: 26347 @@ -168428,80 +167614,60 @@ entities: rot: 3.141592653589793 rad pos: -108.5,-53.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 27197 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28508 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-37.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28703 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31705 components: - type: Transform rot: 1.5707963267948966 rad pos: -111.5,-74.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31706 components: - type: Transform rot: 1.5707963267948966 rad pos: -111.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 34074 components: - type: Transform rot: 3.141592653589793 rad pos: -94.5,-54.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36708 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-64.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36709 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-64.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36710 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-64.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasPressurePump entities: - uid: 1706 @@ -168510,24 +167676,18 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 3182 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-63.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 4956 components: - type: Transform rot: 1.5707963267948966 rad pos: -99.5,-42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18901 @@ -168536,15 +167696,11 @@ entities: rot: 3.141592653589793 rad pos: -103.5,-45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 18902 components: - type: Transform pos: -101.5,-45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20342 @@ -168553,16 +167709,12 @@ entities: rot: 1.5707963267948966 rad pos: -107.5,-58.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 22140 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 22141 @@ -168571,8 +167723,6 @@ entities: rot: 3.141592653589793 rad pos: -103.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 22307 @@ -168580,8 +167730,6 @@ entities: - type: Transform pos: -95.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22308 @@ -168589,8 +167737,6 @@ entities: - type: Transform pos: -94.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22315 @@ -168598,8 +167744,6 @@ entities: - type: Transform pos: -104.5,-53.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 22364 @@ -168607,8 +167751,6 @@ entities: - type: Transform pos: -101.5,-53.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 22589 @@ -168617,8 +167759,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-62.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24756 @@ -168626,8 +167766,6 @@ entities: - type: Transform pos: -97.5,-58.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - uid: 25543 @@ -168636,8 +167774,6 @@ entities: rot: -1.5707963267948966 rad pos: -95.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - uid: 25544 @@ -168646,8 +167782,6 @@ entities: rot: -1.5707963267948966 rad pos: -95.5,-58.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - uid: 25581 @@ -168656,8 +167790,6 @@ entities: rot: 1.5707963267948966 rad pos: -107.5,-56.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#808080FF' - uid: 25587 @@ -168666,8 +167798,6 @@ entities: rot: 1.5707963267948966 rad pos: -107.5,-60.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 25588 @@ -168676,8 +167806,6 @@ entities: rot: 1.5707963267948966 rad pos: -107.5,-62.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 31343 @@ -168686,22 +167814,16 @@ entities: rot: -1.5707963267948966 rad pos: -107.5,-76.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 32187 components: - type: Transform pos: -108.5,-52.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 34073 components: - type: Transform pos: -94.5,-53.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF9999FF' - uid: 34183 @@ -168709,8 +167831,6 @@ entities: - type: Transform pos: -96.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasRecycler @@ -168720,8 +167840,6 @@ entities: - type: Transform pos: -97.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - proto: GasThermoMachineFreezer @@ -168733,8 +167851,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#CCE5FFFF' - - type: AtmosDevice - joinedGrid: 1 - uid: 11108 components: - type: Transform @@ -168742,24 +167858,18 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0335FCFF' - - type: AtmosDevice - joinedGrid: 1 - uid: 31369 components: - type: Transform rot: 3.141592653589793 rad pos: -108.5,-77.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31697 components: - type: Transform rot: -1.5707963267948966 rad pos: -107.5,-67.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 34589 components: - type: Transform @@ -168767,8 +167877,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0335FCFF' - - type: AtmosDevice - joinedGrid: 1 - proto: GasThermoMachineFreezerEnabled entities: - uid: 8786 @@ -168778,8 +167886,6 @@ entities: parent: 1 - type: GasThermoMachine targetTemperature: 249.81 - - type: AtmosDevice - joinedGrid: 1 - proto: GasThermoMachineHeater entities: - uid: 24754 @@ -168790,16 +167896,12 @@ entities: parent: 1 - type: AtmosPipeColor color: '#80FF00FF' - - type: AtmosDevice - joinedGrid: 1 - uid: 31698 components: - type: Transform rot: -1.5707963267948966 rad pos: -107.5,-73.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasValve entities: - uid: 25583 @@ -168810,8 +167912,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#808080FF' - uid: 25584 @@ -168822,8 +167922,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#808080FF' - uid: 26286 @@ -168833,8 +167931,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 26287 @@ -168845,8 +167941,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - uid: 26288 components: - type: Transform @@ -168855,8 +167949,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - uid: 26289 components: - type: Transform @@ -168865,8 +167957,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 26290 @@ -168877,8 +167967,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 26291 @@ -168889,8 +167977,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 31372 @@ -168901,8 +167987,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 31375 @@ -168913,8 +167997,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 31379 @@ -168925,8 +168007,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - uid: 31380 components: - type: Transform @@ -168935,8 +168015,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 31381 @@ -168947,8 +168025,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 31715 @@ -168958,8 +168034,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - uid: 31718 components: - type: Transform @@ -168967,8 +168041,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - proto: GasVentPump entities: - uid: 6014 @@ -168979,8 +168051,6 @@ entities: - type: DeviceNetwork deviceLists: - 41599 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6754 @@ -168992,8 +168062,6 @@ entities: - type: DeviceNetwork deviceLists: - 16633 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14557 @@ -169001,8 +168069,6 @@ entities: - type: Transform pos: -65.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15649 @@ -169010,8 +168076,6 @@ entities: - type: Transform pos: -9.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 16376 components: - type: Transform @@ -169021,8 +168085,6 @@ entities: - type: DeviceNetwork deviceLists: - 30109 - - type: AtmosDevice - joinedGrid: 1 - uid: 22275 components: - type: Transform @@ -169032,8 +168094,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22851 @@ -169045,8 +168105,6 @@ entities: - type: DeviceNetwork deviceLists: - 4486 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23025 @@ -169058,8 +168116,6 @@ entities: - type: DeviceNetwork deviceLists: - 41601 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23026 @@ -169070,8 +168126,6 @@ entities: - type: DeviceNetwork deviceLists: - 7586 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23501 @@ -169083,8 +168137,6 @@ entities: - type: DeviceNetwork deviceLists: - 30114 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23512 @@ -169096,8 +168148,6 @@ entities: - type: DeviceNetwork deviceLists: - 16630 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23596 @@ -169106,8 +168156,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23614 @@ -169118,8 +168166,6 @@ entities: - type: DeviceNetwork deviceLists: - 30168 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23615 @@ -169130,8 +168176,6 @@ entities: - type: DeviceNetwork deviceLists: - 30168 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23908 @@ -169143,8 +168187,6 @@ entities: - type: DeviceNetwork deviceLists: - 41662 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23978 @@ -169156,8 +168198,6 @@ entities: - type: DeviceNetwork deviceLists: - 30112 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23979 @@ -169168,8 +168208,6 @@ entities: - type: DeviceNetwork deviceLists: - 30112 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23980 @@ -169177,8 +168215,6 @@ entities: - type: Transform pos: -26.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23981 @@ -169187,8 +168223,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24076 @@ -169200,8 +168234,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24077 @@ -169213,8 +168245,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24078 @@ -169226,8 +168256,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24082 @@ -169239,8 +168267,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24083 @@ -169249,8 +168275,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24108 @@ -169262,8 +168286,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24109 @@ -169272,8 +168294,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24131 @@ -169282,8 +168302,6 @@ entities: rot: 3.141592653589793 rad pos: -36.5,-52.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24136 @@ -169292,8 +168310,6 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24141 @@ -169302,8 +168318,6 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24156 @@ -169312,8 +168326,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24157 @@ -169322,8 +168334,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24174 @@ -169331,8 +168341,6 @@ entities: - type: Transform pos: -43.5,-20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24175 @@ -169340,8 +168348,6 @@ entities: - type: Transform pos: -47.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24185 @@ -169349,8 +168355,6 @@ entities: - type: Transform pos: -43.5,-27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24193 @@ -169359,8 +168363,6 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24200 @@ -169369,8 +168371,6 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,-35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24201 @@ -169379,8 +168379,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24202 @@ -169389,8 +168387,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24203 @@ -169399,8 +168395,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24221 @@ -169409,8 +168403,6 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24222 @@ -169419,8 +168411,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24223 @@ -169428,8 +168418,6 @@ entities: - type: Transform pos: -52.5,-20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24224 @@ -169438,8 +168426,6 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,-24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24242 @@ -169448,8 +168434,6 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,-33.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24248 @@ -169457,8 +168441,6 @@ entities: - type: Transform pos: -57.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24249 @@ -169467,8 +168449,6 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-36.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24269 @@ -169480,8 +168460,6 @@ entities: - type: DeviceNetwork deviceLists: - 41650 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24273 @@ -169490,8 +168468,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,-43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24274 @@ -169500,8 +168476,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-47.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24285 @@ -169510,8 +168484,6 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24287 @@ -169520,8 +168492,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-56.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24300 @@ -169530,8 +168500,6 @@ entities: rot: 3.141592653589793 rad pos: -54.5,-60.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24318 @@ -169540,8 +168508,6 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24319 @@ -169550,8 +168516,6 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24320 @@ -169560,8 +168524,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,-62.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24337 @@ -169570,8 +168532,6 @@ entities: rot: 1.5707963267948966 rad pos: -62.5,-49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24338 @@ -169580,8 +168540,6 @@ entities: rot: 1.5707963267948966 rad pos: -67.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24348 @@ -169590,8 +168548,6 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24352 @@ -169600,8 +168556,6 @@ entities: rot: 1.5707963267948966 rad pos: -70.5,-64.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24367 @@ -169610,8 +168564,6 @@ entities: rot: 3.141592653589793 rad pos: -62.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24373 @@ -169620,8 +168572,6 @@ entities: rot: 1.5707963267948966 rad pos: -76.5,-68.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24374 @@ -169629,8 +168579,6 @@ entities: - type: Transform pos: -73.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24375 @@ -169639,8 +168587,6 @@ entities: rot: 3.141592653589793 rad pos: -73.5,-71.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24376 @@ -169649,8 +168595,6 @@ entities: rot: 3.141592653589793 rad pos: -70.5,-71.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24377 @@ -169659,8 +168603,6 @@ entities: rot: 3.141592653589793 rad pos: -67.5,-71.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24378 @@ -169668,8 +168610,6 @@ entities: - type: Transform pos: -63.5,-67.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24500 @@ -169678,8 +168618,6 @@ entities: rot: 3.141592653589793 rad pos: -87.5,-39.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24501 @@ -169688,8 +168626,6 @@ entities: rot: -1.5707963267948966 rad pos: -84.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24529 @@ -169698,8 +168634,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24539 @@ -169708,8 +168642,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24549 @@ -169718,8 +168650,6 @@ entities: rot: 3.141592653589793 rad pos: -55.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24628 @@ -169731,8 +168661,6 @@ entities: - type: DeviceNetwork deviceLists: - 41585 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24666 @@ -169744,8 +168672,6 @@ entities: - type: DeviceNetwork deviceLists: - 41587 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24700 @@ -169757,8 +168683,6 @@ entities: - type: DeviceNetwork deviceLists: - 41587 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24748 @@ -169769,8 +168693,6 @@ entities: - type: DeviceNetwork deviceLists: - 41596 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24826 @@ -169782,8 +168704,6 @@ entities: - type: DeviceNetwork deviceLists: - 1744 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24827 @@ -169795,8 +168715,6 @@ entities: - type: DeviceNetwork deviceLists: - 1744 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24828 @@ -169804,8 +168722,6 @@ entities: - type: Transform pos: -67.5,-22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24829 @@ -169817,8 +168733,6 @@ entities: - type: DeviceNetwork deviceLists: - 4412 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24830 @@ -169830,8 +168744,6 @@ entities: - type: DeviceNetwork deviceLists: - 14556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24831 @@ -169843,8 +168755,6 @@ entities: - type: DeviceNetwork deviceLists: - 13266 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24833 @@ -169855,8 +168765,6 @@ entities: - type: DeviceNetwork deviceLists: - 14556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24835 @@ -169868,8 +168776,6 @@ entities: - type: DeviceNetwork deviceLists: - 14556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24836 @@ -169880,8 +168786,6 @@ entities: - type: DeviceNetwork deviceLists: - 14556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24837 @@ -169893,8 +168797,6 @@ entities: - type: DeviceNetwork deviceLists: - 13266 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24842 @@ -169903,8 +168805,6 @@ entities: rot: 3.141592653589793 rad pos: -87.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24846 @@ -169913,8 +168813,6 @@ entities: rot: 1.5707963267948966 rad pos: -90.5,-25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24847 @@ -169923,8 +168821,6 @@ entities: rot: 1.5707963267948966 rad pos: -90.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24855 @@ -169933,8 +168829,6 @@ entities: rot: 3.141592653589793 rad pos: -83.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24861 @@ -169945,8 +168839,6 @@ entities: - type: DeviceNetwork deviceLists: - 4486 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24927 @@ -169957,8 +168849,6 @@ entities: - type: DeviceNetwork deviceLists: - 3209 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24930 @@ -169970,8 +168860,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24982 @@ -169983,8 +168871,6 @@ entities: - type: DeviceNetwork deviceLists: - 29913 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24984 @@ -169995,8 +168881,6 @@ entities: - type: DeviceNetwork deviceLists: - 29913 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24985 @@ -170007,8 +168891,6 @@ entities: - type: DeviceNetwork deviceLists: - 29913 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25014 @@ -170019,8 +168901,6 @@ entities: - type: DeviceNetwork deviceLists: - 29917 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25844 @@ -170029,8 +168909,6 @@ entities: rot: -1.5707963267948966 rad pos: -142.5,21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25847 @@ -170039,8 +168917,6 @@ entities: rot: 3.141592653589793 rad pos: -127.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25848 @@ -170048,8 +168924,6 @@ entities: - type: Transform pos: -127.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25849 @@ -170058,8 +168932,6 @@ entities: rot: -1.5707963267948966 rad pos: -126.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25850 @@ -170068,8 +168940,6 @@ entities: rot: 1.5707963267948966 rad pos: -132.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25851 @@ -170077,8 +168947,6 @@ entities: - type: Transform pos: -142.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25852 @@ -170087,8 +168955,6 @@ entities: rot: 3.141592653589793 rad pos: -132.5,21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26005 @@ -170096,8 +168962,6 @@ entities: - type: Transform pos: -106.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26006 @@ -170106,8 +168970,6 @@ entities: rot: 3.141592653589793 rad pos: -109.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26007 @@ -170119,8 +168981,6 @@ entities: - type: DeviceNetwork deviceLists: - 42164 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26008 @@ -170132,8 +168992,6 @@ entities: - type: DeviceNetwork deviceLists: - 42164 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26009 @@ -170145,8 +169003,6 @@ entities: - type: DeviceNetwork deviceLists: - 42164 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26012 @@ -170155,8 +169011,6 @@ entities: rot: -1.5707963267948966 rad pos: -93.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26013 @@ -170165,8 +169019,6 @@ entities: rot: 3.141592653589793 rad pos: -97.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26018 @@ -170175,8 +169027,6 @@ entities: rot: 1.5707963267948966 rad pos: -114.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26019 @@ -170184,8 +169034,6 @@ entities: - type: Transform pos: -113.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26020 @@ -170194,8 +169042,6 @@ entities: rot: -1.5707963267948966 rad pos: -99.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26021 @@ -170203,8 +169049,6 @@ entities: - type: Transform pos: -101.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26079 @@ -170213,8 +169057,6 @@ entities: rot: 3.141592653589793 rad pos: -119.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26080 @@ -170223,8 +169065,6 @@ entities: rot: 3.141592653589793 rad pos: -105.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26089 @@ -170233,8 +169073,6 @@ entities: rot: -1.5707963267948966 rad pos: -87.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26094 @@ -170242,8 +169080,6 @@ entities: - type: Transform pos: -83.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26095 @@ -170252,8 +169088,6 @@ entities: rot: 3.141592653589793 rad pos: -84.5,-7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26098 @@ -170265,8 +169099,6 @@ entities: - type: DeviceNetwork deviceLists: - 29903 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26099 @@ -170277,8 +169109,6 @@ entities: - type: DeviceNetwork deviceLists: - 29903 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26100 @@ -170290,8 +169120,6 @@ entities: - type: DeviceNetwork deviceLists: - 29903 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26120 @@ -170300,8 +169128,6 @@ entities: rot: -1.5707963267948966 rad pos: -76.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26121 @@ -170310,8 +169136,6 @@ entities: rot: 3.141592653589793 rad pos: -77.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26122 @@ -170319,8 +169143,6 @@ entities: - type: Transform pos: -77.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26205 @@ -170329,8 +169151,6 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26206 @@ -170339,8 +169159,6 @@ entities: rot: 1.5707963267948966 rad pos: -84.5,19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26207 @@ -170349,8 +169167,6 @@ entities: rot: 1.5707963267948966 rad pos: -90.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26208 @@ -170359,8 +169175,6 @@ entities: rot: -1.5707963267948966 rad pos: -82.5,12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26227 @@ -170369,8 +169183,6 @@ entities: rot: -1.5707963267948966 rad pos: -77.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26228 @@ -170378,8 +169190,6 @@ entities: - type: Transform pos: -79.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26270 @@ -170388,8 +169198,6 @@ entities: rot: -1.5707963267948966 rad pos: -72.5,21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26274 @@ -170398,8 +169206,6 @@ entities: rot: 1.5707963267948966 rad pos: -81.5,26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26280 @@ -170411,8 +169217,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26281 @@ -170424,8 +169228,6 @@ entities: - type: DeviceNetwork deviceLists: - 29902 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26298 @@ -170436,8 +169238,6 @@ entities: - type: DeviceNetwork deviceLists: - 29902 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26362 @@ -170449,8 +169249,6 @@ entities: - type: DeviceNetwork deviceLists: - 3209 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26363 @@ -170459,8 +169257,6 @@ entities: rot: 1.5707963267948966 rad pos: -79.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26364 @@ -170468,8 +169264,6 @@ entities: - type: Transform pos: -72.5,28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26392 @@ -170478,8 +169272,6 @@ entities: rot: -1.5707963267948966 rad pos: -67.5,-6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26393 @@ -170488,8 +169280,6 @@ entities: rot: 3.141592653589793 rad pos: -73.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26394 @@ -170498,8 +169288,6 @@ entities: rot: -1.5707963267948966 rad pos: -67.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26395 @@ -170508,8 +169296,6 @@ entities: rot: -1.5707963267948966 rad pos: -68.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26396 @@ -170518,8 +169304,6 @@ entities: rot: -1.5707963267948966 rad pos: -69.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26397 @@ -170528,8 +169312,6 @@ entities: rot: -1.5707963267948966 rad pos: -72.5,8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26398 @@ -170538,8 +169320,6 @@ entities: rot: 1.5707963267948966 rad pos: -76.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26442 @@ -170547,8 +169327,6 @@ entities: - type: Transform pos: -67.5,32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26443 @@ -170557,8 +169335,6 @@ entities: rot: -1.5707963267948966 rad pos: -65.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26444 @@ -170567,8 +169343,6 @@ entities: rot: 1.5707963267948966 rad pos: -68.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26463 @@ -170580,8 +169354,6 @@ entities: - type: DeviceNetwork deviceLists: - 30092 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26464 @@ -170590,8 +169362,6 @@ entities: rot: 1.5707963267948966 rad pos: -62.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26466 @@ -170600,8 +169370,6 @@ entities: rot: 3.141592653589793 rad pos: -54.5,16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26476 @@ -170610,8 +169378,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26477 @@ -170619,8 +169385,6 @@ entities: - type: Transform pos: -55.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26478 @@ -170629,8 +169393,6 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26489 @@ -170639,8 +169401,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26493 @@ -170649,8 +169409,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26570 @@ -170662,8 +169420,6 @@ entities: - type: DeviceNetwork deviceLists: - 29926 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26577 @@ -170674,8 +169430,6 @@ entities: - type: DeviceNetwork deviceLists: - 29926 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26578 @@ -170686,8 +169440,6 @@ entities: - type: DeviceNetwork deviceLists: - 29926 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26579 @@ -170696,8 +169448,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26589 @@ -170706,8 +169456,6 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26590 @@ -170716,8 +169464,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26591 @@ -170725,8 +169471,6 @@ entities: - type: Transform pos: -56.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26594 @@ -170735,8 +169479,6 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26596 @@ -170745,8 +169487,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26597 @@ -170755,8 +169495,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26634 @@ -170765,8 +169503,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26648 @@ -170775,8 +169511,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26922 @@ -170787,8 +169521,6 @@ entities: - type: DeviceNetwork deviceLists: - 41775 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26925 @@ -170797,8 +169529,6 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27198 @@ -170810,8 +169540,6 @@ entities: - type: DeviceNetwork deviceLists: - 41770 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27633 @@ -170822,8 +169550,6 @@ entities: - type: DeviceNetwork deviceLists: - 30095 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27634 @@ -170834,8 +169560,6 @@ entities: - type: DeviceNetwork deviceLists: - 30095 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27638 @@ -170847,8 +169571,6 @@ entities: - type: DeviceNetwork deviceLists: - 30096 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27639 @@ -170859,8 +169581,6 @@ entities: - type: DeviceNetwork deviceLists: - 29928 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27656 @@ -170871,8 +169591,6 @@ entities: - type: DeviceNetwork deviceLists: - 30092 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27657 @@ -170884,8 +169602,6 @@ entities: - type: DeviceNetwork deviceLists: - 13956 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27658 @@ -170897,8 +169613,6 @@ entities: - type: DeviceNetwork deviceLists: - 13956 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27659 @@ -170910,8 +169624,6 @@ entities: - type: DeviceNetwork deviceLists: - 13956 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27660 @@ -170922,8 +169634,6 @@ entities: - type: DeviceNetwork deviceLists: - 13956 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27697 @@ -170935,8 +169645,6 @@ entities: - type: DeviceNetwork deviceLists: - 30092 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27699 @@ -170948,8 +169656,6 @@ entities: - type: DeviceNetwork deviceLists: - 29928 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27700 @@ -170961,8 +169667,6 @@ entities: - type: DeviceNetwork deviceLists: - 29928 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27762 @@ -170971,8 +169675,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 27763 @@ -170981,8 +169683,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 27764 @@ -170990,8 +169690,6 @@ entities: - type: Transform pos: -30.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27765 @@ -171000,8 +169698,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27774 @@ -171010,8 +169706,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27783 @@ -171019,8 +169713,6 @@ entities: - type: Transform pos: -32.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27784 @@ -171029,8 +169721,6 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27806 @@ -171038,8 +169728,6 @@ entities: - type: Transform pos: -35.5,-17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27807 @@ -171048,8 +169736,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27822 @@ -171058,8 +169744,6 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27823 @@ -171068,8 +169752,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27824 @@ -171078,8 +169760,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27825 @@ -171088,8 +169768,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27826 @@ -171098,8 +169776,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27959 @@ -171108,8 +169784,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27960 @@ -171118,8 +169792,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27961 @@ -171128,8 +169800,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27962 @@ -171137,8 +169807,6 @@ entities: - type: Transform pos: -22.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27980 @@ -171146,8 +169814,6 @@ entities: - type: Transform pos: -17.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27983 @@ -171156,8 +169822,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27990 @@ -171166,8 +169830,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27991 @@ -171176,8 +169838,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27992 @@ -171186,8 +169846,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27993 @@ -171195,8 +169853,6 @@ entities: - type: Transform pos: -6.5,-6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27997 @@ -171208,8 +169864,6 @@ entities: - type: DeviceNetwork deviceLists: - 30099 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28004 @@ -171220,8 +169874,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28005 @@ -171232,8 +169884,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28006 @@ -171244,8 +169894,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28007 @@ -171256,8 +169904,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28008 @@ -171268,8 +169914,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28009 @@ -171280,8 +169924,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28093 @@ -171290,8 +169932,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28095 @@ -171302,8 +169942,6 @@ entities: - type: DeviceNetwork deviceLists: - 30101 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28096 @@ -171312,8 +169950,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28105 @@ -171322,8 +169958,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-37.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28106 @@ -171335,8 +169969,6 @@ entities: - type: DeviceNetwork deviceLists: - 30102 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28107 @@ -171345,8 +169977,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28108 @@ -171354,8 +169984,6 @@ entities: - type: Transform pos: -3.5,-29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28109 @@ -171364,8 +169992,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28110 @@ -171374,8 +170000,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28157 @@ -171384,8 +170008,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28158 @@ -171394,8 +170016,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28180 @@ -171404,8 +170024,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28181 @@ -171414,8 +170032,6 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28199 @@ -171427,8 +170043,6 @@ entities: - type: DeviceNetwork deviceLists: - 29780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28200 @@ -171440,8 +170054,6 @@ entities: - type: DeviceNetwork deviceLists: - 29780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28201 @@ -171452,8 +170064,6 @@ entities: - type: DeviceNetwork deviceLists: - 29780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28202 @@ -171462,8 +170072,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28203 @@ -171472,8 +170080,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28204 @@ -171482,8 +170088,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28205 @@ -171492,8 +170096,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28206 @@ -171502,8 +170104,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28208 @@ -171515,8 +170115,6 @@ entities: - type: DeviceNetwork deviceLists: - 29780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28242 @@ -171525,8 +170123,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28243 @@ -171534,8 +170130,6 @@ entities: - type: Transform pos: 18.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28247 @@ -171547,8 +170141,6 @@ entities: - type: DeviceNetwork deviceLists: - 30099 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28248 @@ -171560,8 +170152,6 @@ entities: - type: DeviceNetwork deviceLists: - 30100 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28249 @@ -171572,8 +170162,6 @@ entities: - type: DeviceNetwork deviceLists: - 30100 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28259 @@ -171585,8 +170173,6 @@ entities: - type: DeviceNetwork deviceLists: - 30101 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28260 @@ -171595,8 +170181,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28276 @@ -171605,8 +170189,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28277 @@ -171615,8 +170197,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28287 @@ -171625,8 +170205,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28288 @@ -171635,8 +170213,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28291 @@ -171645,8 +170221,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28308 @@ -171655,8 +170229,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28377 @@ -171667,8 +170239,6 @@ entities: - type: DeviceNetwork deviceLists: - 41784 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28378 @@ -171679,8 +170249,6 @@ entities: - type: DeviceNetwork deviceLists: - 41784 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28408 @@ -171688,8 +170256,6 @@ entities: - type: Transform pos: 17.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28416 @@ -171698,8 +170264,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28426 @@ -171708,8 +170272,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29221 @@ -171721,8 +170283,6 @@ entities: - type: DeviceNetwork deviceLists: - 41619 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 30025 @@ -171734,8 +170294,6 @@ entities: - type: DeviceNetwork deviceLists: - 13266 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 30183 @@ -171744,8 +170302,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 30205 @@ -171754,8 +170310,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 30290 @@ -171764,8 +170318,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-55.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 30344 @@ -171776,8 +170328,6 @@ entities: - type: DeviceNetwork deviceLists: - 30168 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 33260 @@ -171785,8 +170335,6 @@ entities: - type: Transform pos: -153.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 33634 @@ -171795,8 +170343,6 @@ entities: rot: 3.141592653589793 rad pos: -90.5,29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 33635 @@ -171807,8 +170353,6 @@ entities: - type: DeviceNetwork deviceLists: - 30171 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 33654 @@ -171816,8 +170360,6 @@ entities: - type: Transform pos: -98.5,46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 34218 @@ -171829,8 +170371,6 @@ entities: - type: DeviceNetwork deviceLists: - 41645 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 34596 @@ -171842,8 +170382,6 @@ entities: - type: DeviceNetwork deviceLists: - 41640 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 34597 @@ -171855,8 +170393,6 @@ entities: - type: DeviceNetwork deviceLists: - 41636 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 34598 @@ -171868,8 +170404,6 @@ entities: - type: DeviceNetwork deviceLists: - 41645 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 34602 @@ -171881,8 +170415,6 @@ entities: - type: DeviceNetwork deviceLists: - 41638 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 34603 @@ -171894,8 +170426,6 @@ entities: - type: DeviceNetwork deviceLists: - 41638 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 34604 @@ -171907,8 +170437,6 @@ entities: - type: DeviceNetwork deviceLists: - 41638 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 35510 @@ -171920,8 +170448,6 @@ entities: - type: DeviceNetwork deviceLists: - 41744 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 35564 @@ -171933,8 +170459,6 @@ entities: - type: DeviceNetwork deviceLists: - 30168 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 36907 @@ -171943,8 +170467,6 @@ entities: rot: 3.141592653589793 rad pos: -108.5,-86.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 36908 @@ -171956,8 +170478,6 @@ entities: - type: DeviceNetwork deviceLists: - 41623 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 36909 @@ -171966,8 +170486,6 @@ entities: rot: 3.141592653589793 rad pos: -92.5,-88.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 36950 @@ -171976,8 +170494,6 @@ entities: rot: 1.5707963267948966 rad pos: -121.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37013 @@ -171986,8 +170502,6 @@ entities: rot: 1.5707963267948966 rad pos: -120.5,-53.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37022 @@ -171996,8 +170510,6 @@ entities: rot: 1.5707963267948966 rad pos: -150.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37023 @@ -172006,8 +170518,6 @@ entities: rot: 3.141592653589793 rad pos: -140.5,-39.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37110 @@ -172019,8 +170529,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37111 @@ -172032,8 +170540,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37240 @@ -172045,8 +170551,6 @@ entities: - type: DeviceNetwork deviceLists: - 29918 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37363 @@ -172058,8 +170562,6 @@ entities: - type: DeviceNetwork deviceLists: - 41636 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37374 @@ -172071,8 +170573,6 @@ entities: - type: DeviceNetwork deviceLists: - 14983 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37386 @@ -172084,8 +170584,6 @@ entities: - type: DeviceNetwork deviceLists: - 41662 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37424 @@ -172097,8 +170595,6 @@ entities: - type: DeviceNetwork deviceLists: - 41655 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37449 @@ -172110,8 +170606,6 @@ entities: - type: DeviceNetwork deviceLists: - 41659 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37450 @@ -172123,8 +170617,6 @@ entities: - type: DeviceNetwork deviceLists: - 41659 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37624 @@ -172136,8 +170628,6 @@ entities: - type: DeviceNetwork deviceLists: - 41575 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37646 @@ -172149,8 +170639,6 @@ entities: - type: DeviceNetwork deviceLists: - 41571 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37647 @@ -172162,8 +170650,6 @@ entities: - type: DeviceNetwork deviceLists: - 41571 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37648 @@ -172175,8 +170661,6 @@ entities: - type: DeviceNetwork deviceLists: - 41570 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37649 @@ -172187,8 +170671,6 @@ entities: - type: DeviceNetwork deviceLists: - 30173 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37650 @@ -172200,8 +170682,6 @@ entities: - type: DeviceNetwork deviceLists: - 41575 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37682 @@ -172213,8 +170693,6 @@ entities: - type: DeviceNetwork deviceLists: - 41548 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37683 @@ -172226,8 +170704,6 @@ entities: - type: DeviceNetwork deviceLists: - 41548 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37684 @@ -172238,8 +170714,6 @@ entities: - type: DeviceNetwork deviceLists: - 41548 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37685 @@ -172250,8 +170724,6 @@ entities: - type: DeviceNetwork deviceLists: - 41550 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37686 @@ -172262,8 +170734,6 @@ entities: - type: DeviceNetwork deviceLists: - 41556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37687 @@ -172275,8 +170745,6 @@ entities: - type: DeviceNetwork deviceLists: - 41560 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37688 @@ -172288,8 +170756,6 @@ entities: - type: DeviceNetwork deviceLists: - 41560 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37689 @@ -172301,8 +170767,6 @@ entities: - type: DeviceNetwork deviceLists: - 41556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37694 @@ -172314,8 +170778,6 @@ entities: - type: DeviceNetwork deviceLists: - 29883 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37695 @@ -172327,8 +170789,6 @@ entities: - type: DeviceNetwork deviceLists: - 41548 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37696 @@ -172340,8 +170800,6 @@ entities: - type: DeviceNetwork deviceLists: - 41550 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37747 @@ -172349,8 +170807,6 @@ entities: - type: Transform pos: 25.5,22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37783 @@ -172363,8 +170819,6 @@ entities: - 41772 - 14068 - 30100 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37809 @@ -172373,8 +170827,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-33.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37859 @@ -172385,8 +170837,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37860 @@ -172398,8 +170848,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37870 @@ -172410,8 +170858,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37871 @@ -172423,8 +170869,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37874 @@ -172436,8 +170880,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37953 @@ -172451,8 +170893,6 @@ entities: - 30167 - 16630 - 41757 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37983 @@ -172464,8 +170904,6 @@ entities: - type: DeviceNetwork deviceLists: - 41751 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38014 @@ -172477,8 +170915,6 @@ entities: - type: DeviceNetwork deviceLists: - 41756 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38015 @@ -172490,8 +170926,6 @@ entities: - type: DeviceNetwork deviceLists: - 41756 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38016 @@ -172503,8 +170937,6 @@ entities: - type: DeviceNetwork deviceLists: - 41753 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38017 @@ -172516,8 +170948,6 @@ entities: - type: DeviceNetwork deviceLists: - 41753 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38102 @@ -172526,8 +170956,6 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,-44.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38103 @@ -172536,8 +170964,6 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-44.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38104 @@ -172546,8 +170972,6 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,-47.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38170 @@ -172558,8 +170982,6 @@ entities: - type: DeviceNetwork deviceLists: - 30114 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38180 @@ -172571,8 +170993,6 @@ entities: - type: DeviceNetwork deviceLists: - 41757 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38214 @@ -172584,8 +171004,6 @@ entities: - type: DeviceNetwork deviceLists: - 41748 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38215 @@ -172597,8 +171015,6 @@ entities: - type: DeviceNetwork deviceLists: - 41748 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38229 @@ -172609,8 +171025,6 @@ entities: - type: DeviceNetwork deviceLists: - 41760 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38259 @@ -172622,8 +171036,6 @@ entities: - type: DeviceNetwork deviceLists: - 30174 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38260 @@ -172635,8 +171047,6 @@ entities: - type: DeviceNetwork deviceLists: - 41760 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38289 @@ -172647,8 +171057,6 @@ entities: - type: DeviceNetwork deviceLists: - 30112 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38320 @@ -172657,8 +171065,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38321 @@ -172669,8 +171075,6 @@ entities: - type: DeviceNetwork deviceLists: - 41668 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38322 @@ -172682,8 +171086,6 @@ entities: - type: DeviceNetwork deviceLists: - 41668 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38331 @@ -172695,8 +171097,6 @@ entities: - type: DeviceNetwork deviceLists: - 41665 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38332 @@ -172708,8 +171108,6 @@ entities: - type: DeviceNetwork deviceLists: - 41665 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 41534 @@ -172721,8 +171119,6 @@ entities: - type: DeviceNetwork deviceLists: - 30171 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 41590 @@ -172734,8 +171130,6 @@ entities: - type: DeviceNetwork deviceLists: - 16633 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 41687 @@ -172747,8 +171141,6 @@ entities: - type: DeviceNetwork deviceLists: - 41741 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 41688 @@ -172760,8 +171152,6 @@ entities: - type: DeviceNetwork deviceLists: - 41741 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 41690 @@ -172773,8 +171163,6 @@ entities: - type: DeviceNetwork deviceLists: - 41741 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 41705 @@ -172786,8 +171174,6 @@ entities: - type: DeviceNetwork deviceLists: - 41737 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 41706 @@ -172799,8 +171185,6 @@ entities: - type: DeviceNetwork deviceLists: - 41737 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 42145 @@ -172808,8 +171192,6 @@ entities: - type: Transform pos: -57.5,42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasVentScrubber @@ -172820,8 +171202,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9474 @@ -172833,8 +171213,6 @@ entities: - type: DeviceNetwork deviceLists: - 13266 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13961 @@ -172846,8 +171224,6 @@ entities: - type: DeviceNetwork deviceLists: - 42164 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14676 @@ -172859,8 +171235,6 @@ entities: - type: DeviceNetwork deviceLists: - 41619 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14704 @@ -172868,8 +171242,6 @@ entities: - type: Transform pos: -64.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16805 @@ -172881,8 +171253,6 @@ entities: - type: DeviceNetwork deviceLists: - 4486 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16848 @@ -172894,8 +171264,6 @@ entities: - type: DeviceNetwork deviceLists: - 41599 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16849 @@ -172907,8 +171275,6 @@ entities: - type: DeviceNetwork deviceLists: - 41601 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22019 @@ -172920,8 +171286,6 @@ entities: - type: DeviceNetwork deviceLists: - 30109 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22231 @@ -172933,8 +171297,6 @@ entities: - type: DeviceNetwork deviceLists: - 30168 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22232 @@ -172946,8 +171308,6 @@ entities: - type: DeviceNetwork deviceLists: - 30168 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22234 @@ -172958,8 +171318,6 @@ entities: - type: DeviceNetwork deviceLists: - 30168 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22423 @@ -172971,8 +171329,6 @@ entities: - type: DeviceNetwork deviceLists: - 30114 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22605 @@ -172984,8 +171340,6 @@ entities: - type: DeviceNetwork deviceLists: - 41662 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22656 @@ -172994,8 +171348,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22670 @@ -173003,8 +171355,6 @@ entities: - type: Transform pos: -24.5,-24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22698 @@ -173016,8 +171366,6 @@ entities: - type: DeviceNetwork deviceLists: - 30112 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22699 @@ -173029,8 +171377,6 @@ entities: - type: DeviceNetwork deviceLists: - 30112 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22700 @@ -173039,8 +171385,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22707 @@ -173049,8 +171393,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-34.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22726 @@ -173062,8 +171404,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22727 @@ -173075,8 +171415,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22734 @@ -173084,8 +171422,6 @@ entities: - type: Transform pos: -30.5,-35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22752 @@ -173097,8 +171433,6 @@ entities: - type: DeviceNetwork deviceLists: - 41659 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22753 @@ -173110,8 +171444,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22762 @@ -173120,8 +171452,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-39.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22763 @@ -173132,8 +171462,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22773 @@ -173145,8 +171473,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22786 @@ -173155,8 +171481,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22794 @@ -173165,8 +171489,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,-56.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22803 @@ -173175,8 +171497,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-52.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22852 @@ -173188,8 +171508,6 @@ entities: - type: DeviceNetwork deviceLists: - 13266 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22905 @@ -173198,8 +171516,6 @@ entities: rot: 1.5707963267948966 rad pos: -68.5,-65.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22922 @@ -173208,8 +171524,6 @@ entities: rot: 1.5707963267948966 rad pos: -76.5,-69.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22928 @@ -173218,8 +171532,6 @@ entities: rot: 3.141592653589793 rad pos: -60.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22941 @@ -173228,8 +171540,6 @@ entities: rot: 3.141592653589793 rad pos: -72.5,-71.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22942 @@ -173238,8 +171548,6 @@ entities: rot: 3.141592653589793 rad pos: -69.5,-71.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22943 @@ -173248,8 +171556,6 @@ entities: rot: 3.141592653589793 rad pos: -66.5,-71.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22955 @@ -173258,8 +171564,6 @@ entities: rot: 1.5707963267948966 rad pos: -64.5,-70.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22974 @@ -173268,8 +171572,6 @@ entities: rot: 3.141592653589793 rad pos: -88.5,-39.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23029 @@ -173281,8 +171583,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23048 @@ -173294,8 +171594,6 @@ entities: - type: DeviceNetwork deviceLists: - 41645 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23065 @@ -173304,8 +171602,6 @@ entities: rot: 3.141592653589793 rad pos: -83.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23097 @@ -173313,8 +171609,6 @@ entities: - type: Transform pos: -56.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23101 @@ -173323,8 +171617,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23103 @@ -173332,8 +171624,6 @@ entities: - type: Transform pos: -44.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23122 @@ -173341,8 +171631,6 @@ entities: - type: Transform pos: -47.5,-17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23124 @@ -173351,8 +171639,6 @@ entities: rot: 3.141592653589793 rad pos: -56.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23125 @@ -173360,8 +171646,6 @@ entities: - type: Transform pos: -56.5,-34.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23134 @@ -173370,8 +171654,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23137 @@ -173379,8 +171661,6 @@ entities: - type: Transform pos: -53.5,-20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23141 @@ -173389,8 +171669,6 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23145 @@ -173398,8 +171676,6 @@ entities: - type: Transform pos: -48.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23146 @@ -173408,8 +171684,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23147 @@ -173417,8 +171691,6 @@ entities: - type: Transform pos: -44.5,-20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23170 @@ -173427,8 +171699,6 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23171 @@ -173437,8 +171707,6 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23176 @@ -173447,8 +171715,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-36.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23177 @@ -173457,8 +171723,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23179 @@ -173467,8 +171731,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23180 @@ -173477,8 +171739,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23181 @@ -173487,8 +171747,6 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23205 @@ -173500,8 +171758,6 @@ entities: - type: DeviceNetwork deviceLists: - 41650 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23207 @@ -173509,8 +171765,6 @@ entities: - type: Transform pos: -49.5,-43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23208 @@ -173519,8 +171773,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-47.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23211 @@ -173529,8 +171781,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-56.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23230 @@ -173539,8 +171789,6 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23232 @@ -173549,8 +171797,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23235 @@ -173559,8 +171805,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-61.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23236 @@ -173569,8 +171813,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-61.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23262 @@ -173579,8 +171821,6 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-56.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23265 @@ -173589,8 +171829,6 @@ entities: rot: 1.5707963267948966 rad pos: -67.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23278 @@ -173599,8 +171837,6 @@ entities: rot: 1.5707963267948966 rad pos: -62.5,-45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23279 @@ -173608,8 +171844,6 @@ entities: - type: Transform pos: -57.5,-44.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23291 @@ -173620,8 +171854,6 @@ entities: - type: DeviceNetwork deviceLists: - 14556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23293 @@ -173630,8 +171862,6 @@ entities: rot: 3.141592653589793 rad pos: -82.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23294 @@ -173640,8 +171870,6 @@ entities: rot: 1.5707963267948966 rad pos: -89.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23295 @@ -173650,8 +171878,6 @@ entities: rot: 1.5707963267948966 rad pos: -89.5,-24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23296 @@ -173660,8 +171886,6 @@ entities: rot: 3.141592653589793 rad pos: -86.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23303 @@ -173672,8 +171896,6 @@ entities: - type: DeviceNetwork deviceLists: - 4486 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23332 @@ -173685,8 +171907,6 @@ entities: - type: DeviceNetwork deviceLists: - 13266 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23335 @@ -173698,8 +171918,6 @@ entities: - type: DeviceNetwork deviceLists: - 14556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23336 @@ -173711,8 +171929,6 @@ entities: - type: DeviceNetwork deviceLists: - 14556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23356 @@ -173724,8 +171940,6 @@ entities: - type: DeviceNetwork deviceLists: - 14556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23357 @@ -173733,8 +171947,6 @@ entities: - type: Transform pos: -68.5,-22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23358 @@ -173746,8 +171958,6 @@ entities: - type: DeviceNetwork deviceLists: - 4412 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23368 @@ -173759,8 +171969,6 @@ entities: - type: DeviceNetwork deviceLists: - 1744 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23369 @@ -173771,8 +171979,6 @@ entities: - type: DeviceNetwork deviceLists: - 1744 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23394 @@ -173784,8 +171990,6 @@ entities: - type: DeviceNetwork deviceLists: - 29913 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23395 @@ -173797,8 +172001,6 @@ entities: - type: DeviceNetwork deviceLists: - 29913 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23396 @@ -173810,8 +172012,6 @@ entities: - type: DeviceNetwork deviceLists: - 29913 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23397 @@ -173823,8 +172023,6 @@ entities: - type: DeviceNetwork deviceLists: - 29917 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23595 @@ -173833,8 +172031,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24395 @@ -173842,8 +172038,6 @@ entities: - type: Transform pos: -68.5,-67.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24934 @@ -173855,8 +172049,6 @@ entities: - type: DeviceNetwork deviceLists: - 3209 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24975 @@ -173868,8 +172060,6 @@ entities: - type: DeviceNetwork deviceLists: - 7586 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25016 @@ -173877,8 +172067,6 @@ entities: - type: Transform pos: -143.5,-7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25026 @@ -173889,8 +172077,6 @@ entities: - type: DeviceNetwork deviceLists: - 16633 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25045 @@ -173899,8 +172085,6 @@ entities: rot: 1.5707963267948966 rad pos: -127.5,12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25046 @@ -173909,8 +172093,6 @@ entities: rot: 3.141592653589793 rad pos: -126.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25047 @@ -173919,8 +172101,6 @@ entities: rot: 1.5707963267948966 rad pos: -133.5,-9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25049 @@ -173929,8 +172109,6 @@ entities: rot: -1.5707963267948966 rad pos: -141.5,22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25050 @@ -173939,8 +172117,6 @@ entities: rot: 3.141592653589793 rad pos: -131.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25051 @@ -173949,8 +172125,6 @@ entities: rot: 3.141592653589793 rad pos: -126.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25055 @@ -173958,8 +172132,6 @@ entities: - type: Transform pos: -120.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25056 @@ -173967,8 +172139,6 @@ entities: - type: Transform pos: -104.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25060 @@ -173977,8 +172147,6 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25061 @@ -173987,8 +172155,6 @@ entities: rot: 3.141592653589793 rad pos: -89.5,16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25062 @@ -173996,8 +172162,6 @@ entities: - type: Transform pos: -87.5,19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25064 @@ -174006,8 +172170,6 @@ entities: rot: 1.5707963267948966 rad pos: -88.5,12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25284 @@ -174016,8 +172178,6 @@ entities: rot: -1.5707963267948966 rad pos: -93.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25287 @@ -174026,8 +172186,6 @@ entities: rot: 1.5707963267948966 rad pos: -103.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25288 @@ -174036,8 +172194,6 @@ entities: rot: 1.5707963267948966 rad pos: -115.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25289 @@ -174045,8 +172201,6 @@ entities: - type: Transform pos: -108.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25292 @@ -174055,8 +172209,6 @@ entities: rot: -1.5707963267948966 rad pos: -97.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25299 @@ -174068,8 +172220,6 @@ entities: - type: DeviceNetwork deviceLists: - 42164 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25300 @@ -174081,8 +172231,6 @@ entities: - type: DeviceNetwork deviceLists: - 42164 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25350 @@ -174091,8 +172239,6 @@ entities: rot: 3.141592653589793 rad pos: -98.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25367 @@ -174104,8 +172250,6 @@ entities: - type: DeviceNetwork deviceLists: - 29903 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25368 @@ -174117,8 +172261,6 @@ entities: - type: DeviceNetwork deviceLists: - 29903 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25369 @@ -174127,8 +172269,6 @@ entities: rot: 1.5707963267948966 rad pos: -88.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25370 @@ -174137,8 +172277,6 @@ entities: rot: 3.141592653589793 rad pos: -83.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25371 @@ -174147,8 +172285,6 @@ entities: rot: 3.141592653589793 rad pos: -78.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25372 @@ -174157,8 +172293,6 @@ entities: rot: -1.5707963267948966 rad pos: -76.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25373 @@ -174166,8 +172300,6 @@ entities: - type: Transform pos: -78.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25374 @@ -174176,8 +172308,6 @@ entities: rot: -1.5707963267948966 rad pos: -77.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25375 @@ -174185,8 +172315,6 @@ entities: - type: Transform pos: -78.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25376 @@ -174195,8 +172323,6 @@ entities: rot: 1.5707963267948966 rad pos: -88.5,8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25384 @@ -174207,8 +172333,6 @@ entities: - type: DeviceNetwork deviceLists: - 29903 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25428 @@ -174217,8 +172341,6 @@ entities: rot: -1.5707963267948966 rad pos: -72.5,22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25431 @@ -174227,8 +172349,6 @@ entities: rot: 1.5707963267948966 rad pos: -82.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25432 @@ -174237,8 +172357,6 @@ entities: rot: 3.141592653589793 rad pos: -78.5,24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25436 @@ -174247,8 +172365,6 @@ entities: rot: 3.141592653589793 rad pos: -74.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25509 @@ -174257,8 +172373,6 @@ entities: rot: -1.5707963267948966 rad pos: -67.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25510 @@ -174267,8 +172381,6 @@ entities: rot: -1.5707963267948966 rad pos: -68.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25511 @@ -174277,8 +172389,6 @@ entities: rot: -1.5707963267948966 rad pos: -69.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25512 @@ -174287,8 +172397,6 @@ entities: rot: -1.5707963267948966 rad pos: -72.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25517 @@ -174300,8 +172408,6 @@ entities: - type: DeviceNetwork deviceLists: - 3209 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25528 @@ -174310,8 +172416,6 @@ entities: rot: -1.5707963267948966 rad pos: -72.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25606 @@ -174323,8 +172427,6 @@ entities: - type: DeviceNetwork deviceLists: - 29902 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25612 @@ -174332,8 +172434,6 @@ entities: - type: Transform pos: -69.5,32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25613 @@ -174342,8 +172442,6 @@ entities: rot: 1.5707963267948966 rad pos: -70.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25615 @@ -174352,8 +172450,6 @@ entities: rot: 1.5707963267948966 rad pos: -69.5,16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25654 @@ -174361,8 +172457,6 @@ entities: - type: Transform pos: -67.5,-7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25660 @@ -174371,8 +172465,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25661 @@ -174381,8 +172473,6 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25662 @@ -174391,8 +172481,6 @@ entities: rot: 3.141592653589793 rad pos: -61.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25676 @@ -174401,8 +172489,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25677 @@ -174411,8 +172497,6 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25678 @@ -174421,8 +172505,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25686 @@ -174431,8 +172513,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25688 @@ -174441,8 +172521,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25689 @@ -174451,8 +172529,6 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25767 @@ -174464,8 +172540,6 @@ entities: - type: DeviceNetwork deviceLists: - 29926 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25768 @@ -174476,8 +172550,6 @@ entities: - type: DeviceNetwork deviceLists: - 29926 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25769 @@ -174486,8 +172558,6 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25770 @@ -174495,8 +172565,6 @@ entities: - type: Transform pos: -37.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25771 @@ -174505,8 +172573,6 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25772 @@ -174515,8 +172581,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25782 @@ -174528,8 +172592,6 @@ entities: - type: DeviceNetwork deviceLists: - 29926 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25820 @@ -174538,8 +172600,6 @@ entities: rot: 3.141592653589793 rad pos: -110.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25825 @@ -174548,8 +172608,6 @@ entities: rot: 1.5707963267948966 rad pos: -76.5,18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26004 @@ -174558,8 +172616,6 @@ entities: rot: 3.141592653589793 rad pos: -107.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26426 @@ -174570,8 +172626,6 @@ entities: - type: DeviceNetwork deviceLists: - 30092 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26674 @@ -174580,8 +172634,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26675 @@ -174589,8 +172641,6 @@ entities: - type: Transform pos: -17.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26677 @@ -174598,8 +172648,6 @@ entities: - type: Transform pos: -29.5,14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26678 @@ -174608,8 +172656,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26720 @@ -174618,8 +172664,6 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26721 @@ -174628,8 +172672,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26722 @@ -174638,8 +172680,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26723 @@ -174648,8 +172688,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26724 @@ -174658,8 +172696,6 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26753 @@ -174668,8 +172704,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26754 @@ -174678,8 +172712,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26755 @@ -174688,8 +172720,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26757 @@ -174697,8 +172727,6 @@ entities: - type: Transform pos: -33.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26758 @@ -174707,8 +172735,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26786 @@ -174719,8 +172745,6 @@ entities: - type: DeviceNetwork deviceLists: - 29928 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26792 @@ -174732,8 +172756,6 @@ entities: - type: DeviceNetwork deviceLists: - 29928 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26793 @@ -174745,8 +172767,6 @@ entities: - type: DeviceNetwork deviceLists: - 29928 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26798 @@ -174758,8 +172778,6 @@ entities: - type: DeviceNetwork deviceLists: - 30092 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26800 @@ -174768,8 +172786,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26801 @@ -174778,8 +172794,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26802 @@ -174790,8 +172804,6 @@ entities: - type: DeviceNetwork deviceLists: - 30092 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26808 @@ -174803,8 +172815,6 @@ entities: - type: DeviceNetwork deviceLists: - 13956 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26809 @@ -174816,8 +172826,6 @@ entities: - type: DeviceNetwork deviceLists: - 13956 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26810 @@ -174829,8 +172837,6 @@ entities: - type: DeviceNetwork deviceLists: - 13956 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26811 @@ -174842,8 +172848,6 @@ entities: - type: DeviceNetwork deviceLists: - 13956 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26928 @@ -174855,8 +172859,6 @@ entities: - type: DeviceNetwork deviceLists: - 41575 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26949 @@ -174865,8 +172867,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26950 @@ -174878,8 +172878,6 @@ entities: - type: DeviceNetwork deviceLists: - 30095 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26966 @@ -174890,8 +172888,6 @@ entities: - type: DeviceNetwork deviceLists: - 30095 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26988 @@ -174903,8 +172899,6 @@ entities: - type: DeviceNetwork deviceLists: - 30096 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27009 @@ -174912,8 +172906,6 @@ entities: - type: Transform pos: 16.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27013 @@ -174925,8 +172917,6 @@ entities: - type: DeviceNetwork deviceLists: - 41784 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27025 @@ -174937,8 +172927,6 @@ entities: - type: DeviceNetwork deviceLists: - 41784 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27053 @@ -174949,8 +172937,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27054 @@ -174961,8 +172947,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27055 @@ -174973,8 +172957,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27056 @@ -174985,8 +172967,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27057 @@ -174997,8 +172977,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27058 @@ -175010,8 +172988,6 @@ entities: - type: DeviceNetwork deviceLists: - 30099 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27059 @@ -175022,8 +172998,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27060 @@ -175032,8 +173006,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27061 @@ -175045,8 +173017,6 @@ entities: - type: DeviceNetwork deviceLists: - 30099 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27100 @@ -175055,8 +173025,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27101 @@ -175065,8 +173033,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27117 @@ -175075,8 +173041,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27123 @@ -175085,8 +173049,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27124 @@ -175095,8 +173057,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27125 @@ -175104,8 +173064,6 @@ entities: - type: Transform pos: -18.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27147 @@ -175114,8 +173072,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27149 @@ -175124,8 +173080,6 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27155 @@ -175134,8 +173088,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27156 @@ -175144,8 +173096,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27178 @@ -175154,8 +173104,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27179 @@ -175164,8 +173112,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27180 @@ -175174,8 +173120,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27182 @@ -175184,8 +173128,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27183 @@ -175193,8 +173135,6 @@ entities: - type: Transform pos: -5.5,-29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27185 @@ -175203,8 +173143,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27186 @@ -175216,8 +173154,6 @@ entities: - type: DeviceNetwork deviceLists: - 30102 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27193 @@ -175229,8 +173165,6 @@ entities: - type: DeviceNetwork deviceLists: - 41770 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27262 @@ -175239,8 +173173,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27268 @@ -175252,8 +173184,6 @@ entities: - type: DeviceNetwork deviceLists: - 29780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27269 @@ -175265,8 +173195,6 @@ entities: - type: DeviceNetwork deviceLists: - 29780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27270 @@ -175278,8 +173206,6 @@ entities: - type: DeviceNetwork deviceLists: - 29780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27271 @@ -175288,8 +173214,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27272 @@ -175298,8 +173222,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27274 @@ -175308,8 +173230,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27275 @@ -175318,8 +173238,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27286 @@ -175331,8 +173249,6 @@ entities: - type: DeviceNetwork deviceLists: - 29780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27321 @@ -175341,8 +173257,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27347 @@ -175353,8 +173267,6 @@ entities: - type: DeviceNetwork deviceLists: - 30101 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27354 @@ -175366,8 +173278,6 @@ entities: - type: DeviceNetwork deviceLists: - 30101 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27355 @@ -175376,8 +173286,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27362 @@ -175386,8 +173294,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27363 @@ -175396,8 +173302,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27364 @@ -175406,8 +173310,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27365 @@ -175416,8 +173318,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27366 @@ -175425,8 +173325,6 @@ entities: - type: Transform pos: 10.5,-19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27411 @@ -175435,8 +173333,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27413 @@ -175448,8 +173344,6 @@ entities: - type: DeviceNetwork deviceLists: - 41744 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27423 @@ -175461,8 +173355,6 @@ entities: - type: DeviceNetwork deviceLists: - 41775 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27428 @@ -175471,8 +173363,6 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27456 @@ -175481,8 +173371,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27458 @@ -175491,8 +173379,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27479 @@ -175504,8 +173390,6 @@ entities: - type: DeviceNetwork deviceLists: - 30100 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27480 @@ -175516,8 +173400,6 @@ entities: - type: DeviceNetwork deviceLists: - 30100 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27482 @@ -175526,8 +173408,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27483 @@ -175535,8 +173415,6 @@ entities: - type: Transform pos: 16.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27615 @@ -175545,8 +173423,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28092 @@ -175555,8 +173431,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28207 @@ -175565,8 +173439,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 30182 @@ -175575,8 +173447,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 30200 @@ -175585,8 +173455,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-34.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 30289 @@ -175595,8 +173463,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-55.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 33259 @@ -175604,8 +173470,6 @@ entities: - type: Transform pos: -152.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 33653 @@ -175617,8 +173481,6 @@ entities: - type: DeviceNetwork deviceLists: - 30171 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 33655 @@ -175627,8 +173489,6 @@ entities: rot: 1.5707963267948966 rad pos: -100.5,44.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 33656 @@ -175637,8 +173497,6 @@ entities: rot: 3.141592653589793 rad pos: -94.5,29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 33758 @@ -175650,8 +173508,6 @@ entities: - type: DeviceNetwork deviceLists: - 30168 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 34209 @@ -175663,8 +173519,6 @@ entities: - type: DeviceNetwork deviceLists: - 41645 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 34595 @@ -175675,8 +173529,6 @@ entities: - type: DeviceNetwork deviceLists: - 41640 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 34600 @@ -175688,8 +173540,6 @@ entities: - type: DeviceNetwork deviceLists: - 41638 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 34601 @@ -175701,8 +173551,6 @@ entities: - type: DeviceNetwork deviceLists: - 41638 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 34628 @@ -175714,8 +173562,6 @@ entities: - type: DeviceNetwork deviceLists: - 30114 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 34631 @@ -175727,8 +173573,6 @@ entities: - type: DeviceNetwork deviceLists: - 41636 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 34984 @@ -175740,8 +173584,6 @@ entities: - type: DeviceNetwork deviceLists: - 29902 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 36276 @@ -175753,8 +173595,6 @@ entities: - type: DeviceNetwork deviceLists: - 41585 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 36285 @@ -175766,8 +173606,6 @@ entities: - type: DeviceNetwork deviceLists: - 41587 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 36286 @@ -175779,8 +173617,6 @@ entities: - type: DeviceNetwork deviceLists: - 41587 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37121 @@ -175792,8 +173628,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - uid: 37122 components: - type: Transform @@ -175803,8 +173637,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37123 @@ -175816,8 +173648,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37124 @@ -175829,8 +173659,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37148 @@ -175839,8 +173667,6 @@ entities: rot: 1.5707963267948966 rad pos: -150.5,-37.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37149 @@ -175848,8 +173674,6 @@ entities: - type: Transform pos: -140.5,-36.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37241 @@ -175861,8 +173685,6 @@ entities: - type: DeviceNetwork deviceLists: - 29918 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37251 @@ -175871,8 +173693,6 @@ entities: rot: 1.5707963267948966 rad pos: -120.5,-52.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37252 @@ -175881,8 +173701,6 @@ entities: rot: 1.5707963267948966 rad pos: -119.5,-55.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37278 @@ -175894,8 +173712,6 @@ entities: - type: DeviceNetwork deviceLists: - 41623 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37279 @@ -175904,8 +173720,6 @@ entities: rot: 3.141592653589793 rad pos: -106.5,-86.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37281 @@ -175913,8 +173727,6 @@ entities: - type: Transform pos: -95.5,-82.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37362 @@ -175926,8 +173738,6 @@ entities: - type: DeviceNetwork deviceLists: - 41636 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37371 @@ -175939,8 +173749,6 @@ entities: - type: DeviceNetwork deviceLists: - 14983 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37388 @@ -175951,8 +173759,6 @@ entities: - type: DeviceNetwork deviceLists: - 41662 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37422 @@ -175963,8 +173769,6 @@ entities: - type: DeviceNetwork deviceLists: - 41655 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37446 @@ -175976,8 +173780,6 @@ entities: - type: DeviceNetwork deviceLists: - 41659 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37488 @@ -175989,8 +173791,6 @@ entities: - type: DeviceNetwork deviceLists: - 29883 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37497 @@ -176002,8 +173802,6 @@ entities: - type: DeviceNetwork deviceLists: - 41548 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37498 @@ -176014,8 +173812,6 @@ entities: - type: DeviceNetwork deviceLists: - 41548 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37499 @@ -176027,8 +173823,6 @@ entities: - type: DeviceNetwork deviceLists: - 41548 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37514 @@ -176040,8 +173834,6 @@ entities: - type: DeviceNetwork deviceLists: - 41548 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37519 @@ -176052,8 +173844,6 @@ entities: - type: DeviceNetwork deviceLists: - 41550 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37520 @@ -176065,8 +173855,6 @@ entities: - type: DeviceNetwork deviceLists: - 41550 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37525 @@ -176078,8 +173866,6 @@ entities: - type: DeviceNetwork deviceLists: - 41560 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37526 @@ -176091,8 +173877,6 @@ entities: - type: DeviceNetwork deviceLists: - 41560 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37527 @@ -176103,8 +173887,6 @@ entities: - type: DeviceNetwork deviceLists: - 41556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37528 @@ -176115,8 +173897,6 @@ entities: - type: DeviceNetwork deviceLists: - 41556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37578 @@ -176127,8 +173907,6 @@ entities: - type: DeviceNetwork deviceLists: - 41570 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37579 @@ -176139,8 +173917,6 @@ entities: - type: DeviceNetwork deviceLists: - 41571 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37580 @@ -176152,8 +173928,6 @@ entities: - type: DeviceNetwork deviceLists: - 41571 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37594 @@ -176164,8 +173938,6 @@ entities: - type: DeviceNetwork deviceLists: - 30173 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37623 @@ -176177,8 +173949,6 @@ entities: - type: DeviceNetwork deviceLists: - 41575 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37746 @@ -176186,8 +173956,6 @@ entities: - type: Transform pos: 24.5,22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37782 @@ -176201,8 +173969,6 @@ entities: - 41772 - 14068 - 30100 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37888 @@ -176214,8 +173980,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37897 @@ -176226,8 +173990,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37898 @@ -176239,8 +174001,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37908 @@ -176251,8 +174011,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37909 @@ -176264,8 +174022,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37931 @@ -176274,8 +174030,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37952 @@ -176287,8 +174041,6 @@ entities: - type: DeviceNetwork deviceLists: - 41757 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37982 @@ -176300,8 +174052,6 @@ entities: - type: DeviceNetwork deviceLists: - 41751 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38010 @@ -176312,8 +174062,6 @@ entities: - type: DeviceNetwork deviceLists: - 41753 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38011 @@ -176325,8 +174073,6 @@ entities: - type: DeviceNetwork deviceLists: - 41753 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38012 @@ -176337,8 +174083,6 @@ entities: - type: DeviceNetwork deviceLists: - 41756 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38013 @@ -176350,8 +174094,6 @@ entities: - type: DeviceNetwork deviceLists: - 41756 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38099 @@ -176360,8 +174102,6 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38100 @@ -176370,8 +174110,6 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38101 @@ -176380,8 +174118,6 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,-45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38148 @@ -176393,8 +174129,6 @@ entities: - type: DeviceNetwork deviceLists: - 41757 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38169 @@ -176406,8 +174140,6 @@ entities: - type: DeviceNetwork deviceLists: - 16630 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38179 @@ -176419,8 +174151,6 @@ entities: - type: DeviceNetwork deviceLists: - 41760 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38227 @@ -176432,8 +174162,6 @@ entities: - type: DeviceNetwork deviceLists: - 41748 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38228 @@ -176444,8 +174172,6 @@ entities: - type: DeviceNetwork deviceLists: - 41748 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38257 @@ -176457,8 +174183,6 @@ entities: - type: DeviceNetwork deviceLists: - 41760 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38258 @@ -176470,8 +174194,6 @@ entities: - type: DeviceNetwork deviceLists: - 30174 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38288 @@ -176483,8 +174205,6 @@ entities: - type: DeviceNetwork deviceLists: - 30112 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38300 @@ -176496,8 +174216,6 @@ entities: - type: DeviceNetwork deviceLists: - 41668 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38301 @@ -176509,8 +174227,6 @@ entities: - type: DeviceNetwork deviceLists: - 41668 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38302 @@ -176519,8 +174235,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38330 @@ -176532,8 +174246,6 @@ entities: - type: DeviceNetwork deviceLists: - 41665 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38333 @@ -176545,8 +174257,6 @@ entities: - type: DeviceNetwork deviceLists: - 41665 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 41533 @@ -176558,8 +174268,6 @@ entities: - type: DeviceNetwork deviceLists: - 30171 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 41622 @@ -176571,8 +174279,6 @@ entities: - type: DeviceNetwork deviceLists: - 41596 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 41702 @@ -176584,8 +174290,6 @@ entities: - type: DeviceNetwork deviceLists: - 41741 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 41703 @@ -176597,8 +174301,6 @@ entities: - type: DeviceNetwork deviceLists: - 41737 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 41704 @@ -176610,8 +174312,6 @@ entities: - type: DeviceNetwork deviceLists: - 41737 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 41722 @@ -176622,8 +174322,6 @@ entities: - type: DeviceNetwork deviceLists: - 41741 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 41734 @@ -176635,8 +174333,6 @@ entities: - type: DeviceNetwork deviceLists: - 41741 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 42144 @@ -176644,8 +174340,6 @@ entities: - type: Transform pos: -56.5,42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVolumePump @@ -176656,16 +174350,12 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-58.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 26324 components: - type: Transform rot: 3.141592653589793 rad pos: -100.5,-62.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - uid: 27921 @@ -176673,8 +174363,6 @@ entities: - type: Transform pos: -101.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 27922 @@ -176682,15 +174370,11 @@ entities: - type: Transform pos: -103.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 27923 components: - type: Transform pos: -105.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 28534 @@ -176698,8 +174382,6 @@ entities: - type: Transform pos: -102.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 28535 @@ -176707,8 +174389,6 @@ entities: - type: Transform pos: -104.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - proto: Gauze @@ -192209,7 +189889,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -192226,7 +189905,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -192243,7 +189921,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -192260,7 +189937,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -192277,7 +189953,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -192294,7 +189969,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -194786,6 +192460,13 @@ entities: - type: Transform pos: -11.5,23.5 parent: 1 +- proto: MaterialSilo + entities: + - uid: 42449 + components: + - type: Transform + pos: -109.5,9.5 + parent: 1 - proto: MaterialWoodPlank entities: - uid: 4234 @@ -198323,85 +196004,61 @@ entities: - type: Transform pos: -64.5,26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 7996 components: - type: Transform pos: -103.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 10271 components: - type: Transform pos: 27.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 10709 components: - type: Transform pos: 39.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 11596 components: - type: Transform pos: 5.5,46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 15788 components: - type: Transform pos: -62.5,-56.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 21209 components: - type: Transform pos: -106.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28778 components: - type: Transform pos: -17.5,-21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30456 components: - type: Transform pos: -87.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30703 components: - type: Transform pos: -18.5,22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30764 components: - type: Transform pos: -58.5,-29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 42045 components: - type: Transform pos: -80.5,-40.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: NitrogenTank entities: - uid: 36726 @@ -198503,7 +196160,6 @@ entities: solutions: tank: temperature: 293.15 - canMix: False canReact: True maxVol: 3000 name: null @@ -198574,7 +196230,7 @@ entities: - type: Transform pos: -76.5,-67.5 parent: 1 -- proto: Oracle +- proto: OracleSpawner entities: - uid: 6936 components: @@ -198664,120 +196320,86 @@ entities: - type: Transform pos: -58.5,-72.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 4227 components: - type: Transform pos: 5.5,45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 7540 components: - type: Transform pos: -64.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 8874 components: - type: Transform pos: -100.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 9904 components: - type: Transform pos: 53.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 10135 components: - type: Transform pos: 23.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 10708 components: - type: Transform pos: 38.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 20333 components: - type: Transform pos: -106.5,-45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28779 components: - type: Transform pos: -15.5,-21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 29542 components: - type: Transform pos: 58.5,9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30454 components: - type: Transform pos: -92.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30698 components: - type: Transform pos: -35.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30702 components: - type: Transform pos: -18.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31009 components: - type: Transform pos: 14.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 35681 components: - type: Transform pos: -106.5,-88.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36307 components: - type: Transform pos: -131.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 42046 components: - type: Transform pos: -81.5,-40.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: OxygenTank entities: - uid: 36725 @@ -204881,7 +202503,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 20 name: null @@ -205354,7 +202975,6 @@ entities: parent: 1 missingComponents: - Damageable - - Construction - uid: 15226 components: - type: Transform @@ -206182,6 +203802,13 @@ entities: - type: Transform pos: 6.5,27.5 parent: 1 +- proto: PlayerStationAi + entities: + - uid: 5320 + components: + - type: Transform + pos: -111.5,9.5 + parent: 1 - proto: PlushieAtmosian entities: - uid: 611 @@ -212642,7 +210269,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -212665,7 +210291,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -212684,7 +210309,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -212704,7 +210328,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -235174,8 +232797,6 @@ entities: - type: Transform pos: -98.5,-31.5 parent: 1 -- proto: SignAtmosMinsky - entities: - uid: 36728 components: - type: Transform @@ -235257,15 +232878,11 @@ entities: - type: Transform pos: 5.5,-36.5 parent: 1 -- proto: SignChemistry1 - entities: - uid: 23321 components: - type: Transform pos: -67.5,-32.5 parent: 1 -- proto: SignChemistry2 - entities: - uid: 28641 components: - type: Transform @@ -235285,13 +232902,6 @@ entities: - type: Transform pos: -68.5,-61.5 parent: 1 -- proto: SignCourt - entities: - - uid: 32343 - components: - - type: Transform - pos: -88.5,10.5 - parent: 1 - proto: SignCryogenicsMed entities: - uid: 1130 @@ -236056,13 +233666,6 @@ entities: - type: Transform pos: -5.5,24.5 parent: 1 -- proto: SignDrones - entities: - - uid: 9812 - components: - - type: Transform - pos: -112.5,-34.5 - parent: 1 - proto: SignElectrical entities: - uid: 15801 @@ -236522,6 +234125,13 @@ entities: - type: Transform pos: 26.5,-47.5 parent: 1 +- proto: SignLawyer + entities: + - uid: 32343 + components: + - type: Transform + pos: -88.5,10.5 + parent: 1 - proto: SignLibrary entities: - uid: 2624 @@ -236548,6 +234158,13 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,35.5 parent: 1 +- proto: SignMaterials + entities: + - uid: 9812 + components: + - type: Transform + pos: -112.5,-34.5 + parent: 1 - proto: SignMedical entities: - uid: 16354 @@ -237343,7 +234960,7 @@ entities: - type: Transform pos: -58.56885,-41.41053 parent: 1 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 1531 components: @@ -237947,7 +235564,7 @@ entities: - type: Transform pos: -143.5,-86.5 parent: 1 -- proto: SophicScribe +- proto: SophicScribeSpawner entities: - uid: 6938 components: @@ -238089,8 +235706,6 @@ entities: - type: Transform pos: -93.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: SpaceHeaterEnabled entities: - uid: 30414 @@ -238098,8 +235713,6 @@ entities: - type: Transform pos: 53.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: SpacemenFigureSpawner entities: - uid: 15141 @@ -238309,6 +235922,18 @@ entities: - type: Transform pos: -20.5,-32.5 parent: 1 +- proto: SpawnPointAdminAssistant + entities: + - uid: 42450 + components: + - type: Transform + pos: -99.5,1.5 + parent: 1 + - uid: 42451 + components: + - type: Transform + pos: -101.5,1.5 + parent: 1 - proto: SpawnPointAtmos entities: - uid: 3237 @@ -238373,6 +235998,13 @@ entities: - type: Transform pos: 19.5,-23.5 parent: 1 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 42453 + components: + - type: Transform + pos: -102.5,1.5 + parent: 1 - proto: SpawnPointBorg entities: - uid: 28441 @@ -238999,6 +236631,13 @@ entities: - type: Transform pos: -64.5,-3.5 parent: 1 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 42452 + components: + - type: Transform + pos: -98.5,1.5 + parent: 1 - proto: SpawnPointObserver entities: - uid: 28482 @@ -239681,7 +237320,6 @@ entities: solutions: spray: temperature: 293.15 - canMix: False canReact: True maxVol: 100 name: null @@ -240193,141 +237831,101 @@ entities: - type: Transform pos: -73.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 12270 components: - type: Transform pos: -32.5,-55.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 13280 components: - type: Transform pos: -106.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 13555 components: - type: Transform pos: -105.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 21126 components: - type: Transform pos: -125.5,18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 21142 components: - type: Transform pos: -125.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 22433 components: - type: Transform pos: -113.5,-67.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 27207 components: - type: Transform pos: 4.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30770 components: - type: Transform pos: -65.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30894 components: - type: Transform pos: -31.5,-79.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30895 components: - type: Transform pos: -32.5,-81.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30973 components: - type: Transform pos: -27.5,-74.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31342 components: - type: Transform pos: -32.5,-62.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 33878 components: - type: Transform pos: -112.5,-67.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 33879 components: - type: Transform pos: -112.5,-69.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 33880 components: - type: Transform pos: -113.5,-68.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 34090 components: - type: Transform pos: -111.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36663 components: - type: Transform pos: -90.5,-70.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36718 components: - type: Transform pos: -20.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36719 components: - type: Transform pos: -19.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: StrangePill entities: - uid: 15740 @@ -247038,7 +244636,6 @@ entities: solutions: toilet: temperature: 293.15 - canMix: False canReact: True maxVol: 250 name: null @@ -247403,13 +245000,6 @@ entities: - type: Transform pos: -78.44748,-66.50723 parent: 1 -- proto: ToyAi - entities: - - uid: 5320 - components: - - type: Transform - pos: -111.5237,9.648494 - parent: 1 - proto: ToyFigurinePassenger entities: - uid: 31167 @@ -272264,8 +269854,6 @@ entities: - type: Transform pos: -108.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: WeaponCapacitorRecharger entities: - uid: 395 diff --git a/Resources/Maps/hive.yml b/Resources/Maps/hive.yml index 3e76cd6d3073f6..60982472322cda 100644 --- a/Resources/Maps/hive.yml +++ b/Resources/Maps/hive.yml @@ -13864,6 +13864,11 @@ entities: parent: 1 - proto: AirlockCaptainLocked entities: + - uid: 6248 + components: + - type: Transform + pos: 107.5,-1.5 + parent: 1 - uid: 6257 components: - type: Transform @@ -16654,13 +16659,6 @@ entities: - type: Transform pos: 80.5,39.5 parent: 1 -- proto: AirlockServiceCaptainLocked - entities: - - uid: 6248 - components: - - type: Transform - pos: 107.5,-1.5 - parent: 1 - proto: AirlockServiceGlassLocked entities: - uid: 4265 @@ -20311,14 +20309,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.597797,23.98576 parent: 1 -- proto: BookChefGaming - entities: - - uid: 5338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.53803,25.680452 - parent: 1 - proto: BookChemicalCompendium entities: - uid: 25039 @@ -20333,6 +20323,14 @@ entities: - type: Transform pos: -43.31453,4.659966 parent: 1 +- proto: BookHowToCookForFortySpaceman + entities: + - uid: 5338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.53803,25.680452 + parent: 1 - proto: BookHowToKeepStationClean entities: - uid: 13930 @@ -37984,6 +37982,21 @@ entities: - type: Transform pos: -95.5,1.5 parent: 1 + - uid: 27768 + components: + - type: Transform + pos: 128.5,3.5 + parent: 1 + - uid: 27769 + components: + - type: Transform + pos: 129.5,3.5 + parent: 1 + - uid: 27770 + components: + - type: Transform + pos: 130.5,3.5 + parent: 1 - proto: CableApcStack entities: - uid: 4721 @@ -57762,33 +57775,6 @@ entities: - type: Transform pos: -24.683008,9.247488 parent: 1 -- proto: chem_master - entities: - - uid: 1195 - components: - - type: Transform - pos: -3.5,19.5 - parent: 1 - - uid: 6850 - components: - - type: Transform - pos: -24.5,12.5 - parent: 1 - - uid: 7683 - components: - - type: Transform - pos: 73.5,-15.5 - parent: 1 - - uid: 11588 - components: - - type: Transform - pos: 76.5,-8.5 - parent: 1 - - uid: 14146 - components: - - type: Transform - pos: 69.5,-13.5 - parent: 1 - proto: ChemDispenser entities: - uid: 5797 @@ -57863,6 +57849,33 @@ entities: - type: Transform pos: 72.5,-14.5 parent: 1 +- proto: ChemMaster + entities: + - uid: 1195 + components: + - type: Transform + pos: -3.5,19.5 + parent: 1 + - uid: 6850 + components: + - type: Transform + pos: -24.5,12.5 + parent: 1 + - uid: 7683 + components: + - type: Transform + pos: 73.5,-15.5 + parent: 1 + - uid: 11588 + components: + - type: Transform + pos: 76.5,-8.5 + parent: 1 + - uid: 14146 + components: + - type: Transform + pos: 69.5,-13.5 + parent: 1 - proto: ChurchOrganInstrument entities: - uid: 5225 @@ -77990,6 +78003,13 @@ entities: rot: 3.141592653589793 rad pos: 50.361702,35.768944 parent: 1 +- proto: FoodKebabSkewer + entities: + - uid: 22779 + components: + - type: Transform + pos: -24.100885,16.586544 + parent: 1 - proto: FoodLollipop entities: - uid: 7633 @@ -78341,13 +78361,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FoodMeatRatKebab - entities: - - uid: 22779 - components: - - type: Transform - pos: -24.100885,16.586544 - parent: 1 - proto: FoodMothBakedCheesePlatter entities: - uid: 6613 @@ -127705,6 +127718,13 @@ entities: rot: 3.141592653589793 rad pos: 74.434875,37.72442 parent: 1 +- proto: MaterialSilo + entities: + - uid: 9632 + components: + - type: Transform + pos: 127.5,0.5 + parent: 1 - proto: MaterialWoodPlank entities: - uid: 1973 @@ -130675,6 +130695,13 @@ entities: - type: Transform pos: -41.5,-36.5 parent: 1 +- proto: PlayerStationAi + entities: + - uid: 27767 + components: + - type: Transform + pos: 130.5,3.5 + parent: 1 - proto: Plunger entities: - uid: 21454 @@ -146290,17 +146317,15 @@ entities: parent: 1 - proto: SignAtmos entities: - - uid: 6419 + - uid: 2479 components: - type: Transform - pos: -52.5,21.5 + pos: -48.5,21.5 parent: 1 -- proto: SignAtmosMinsky - entities: - - uid: 2479 + - uid: 6419 components: - type: Transform - pos: -48.5,21.5 + pos: -52.5,21.5 parent: 1 - proto: SignBlankMed entities: @@ -146335,15 +146360,13 @@ entities: - type: Transform pos: -11.5,1.5 parent: 1 -- proto: SignChemistry1 +- proto: SignChem entities: - uid: 1374 components: - type: Transform pos: 73.5,-16.5 parent: 1 -- proto: SignChemistry2 - entities: - uid: 5775 components: - type: Transform @@ -146363,13 +146386,6 @@ entities: - type: Transform pos: 60.5,23.5 parent: 1 -- proto: SignCourt - entities: - - uid: 26 - components: - - type: Transform - pos: 93.5,6.5 - parent: 1 - proto: SignCryogenics entities: - uid: 24820 @@ -146807,13 +146823,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,5.5 parent: 1 -- proto: SignDrones - entities: - - uid: 24778 - components: - - type: Transform - pos: -62.5,9.5 - parent: 1 - proto: SignElectricalMed entities: - uid: 13192 @@ -146931,25 +146940,21 @@ entities: parent: 1 - proto: SignHydro1 entities: - - uid: 14410 + - uid: 1230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,13.5 + pos: 3.5,18.5 parent: 1 -- proto: SignHydro2 - entities: - uid: 1231 components: - type: Transform pos: -5.5,22.5 parent: 1 -- proto: SignHydro3 - entities: - - uid: 1230 + - uid: 14410 components: - type: Transform - pos: 3.5,18.5 + rot: -1.5707963267948966 rad + pos: -3.5,13.5 parent: 1 - proto: SignInterrogation entities: @@ -146974,6 +146979,11 @@ entities: parent: 1 - proto: SignLawyer entities: + - uid: 26 + components: + - type: Transform + pos: 93.5,6.5 + parent: 1 - uid: 25717 components: - type: Transform @@ -146993,6 +147003,13 @@ entities: - type: Transform pos: -13.5,1.5 parent: 1 +- proto: SignMaterials + entities: + - uid: 24778 + components: + - type: Transform + pos: -62.5,9.5 + parent: 1 - proto: SignMedical entities: - uid: 5603 @@ -147165,15 +147182,13 @@ entities: - type: Transform pos: 26.5,47.5 parent: 1 -- proto: SignScience1 +- proto: SignScience entities: - uid: 4742 components: - type: Transform pos: 9.5,35.5 parent: 1 -- proto: SignScience2 - entities: - uid: 4743 components: - type: Transform @@ -147791,7 +147806,7 @@ entities: - type: Transform pos: 114.53433,8.088414 parent: 1 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 1942 components: @@ -149009,6 +149024,18 @@ entities: - type: Transform pos: 11.5,44.5 parent: 1 +- proto: SpawnPointAdminAssistant + entities: + - uid: 27773 + components: + - type: Transform + pos: 113.5,2.5 + parent: 1 + - uid: 27782 + components: + - type: Transform + pos: 113.5,5.5 + parent: 1 - proto: SpawnPointAtmos entities: - uid: 6404 @@ -149048,6 +149075,13 @@ entities: - type: Transform pos: 0.5,-48.5 parent: 1 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 27772 + components: + - type: Transform + pos: 113.5,3.5 + parent: 1 - proto: SpawnPointBorg entities: - uid: 4582 @@ -149629,6 +149663,13 @@ entities: - type: Transform pos: -3.5,-49.5 parent: 1 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 27771 + components: + - type: Transform + pos: 113.5,4.5 + parent: 1 - proto: SpawnPointObserver entities: - uid: 4719 @@ -156275,13 +156316,6 @@ entities: - type: Transform pos: 40.4923,-38.35749 parent: 1 -- proto: ToyAi - entities: - - uid: 9632 - components: - - type: Transform - pos: 130.02727,4.142705 - parent: 1 - proto: ToyGygax entities: - uid: 17549 diff --git a/Resources/Maps/lighthouse.yml b/Resources/Maps/lighthouse.yml index 8a1148c7745c09..94c30dfd8ad574 100644 --- a/Resources/Maps/lighthouse.yml +++ b/Resources/Maps/lighthouse.yml @@ -269,11 +269,11 @@ entities: version: 6 -2,5: ind: -2,5 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,5: ind: -1,5 - tiles: UAAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAA + tiles: UAAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAA version: 6 -1,-4: ind: -1,-4 @@ -7041,14 +7041,15 @@ entities: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: PhysicsMap + - type: GridTree + - type: MovedGrids - type: Broadphase - type: OccluderTree - type: Parallax parallax: LighthouseStation - type: LoadedMap - - type: GridTree - - type: MovedGrids - proto: AcousticGuitarInstrument entities: - uid: 2179 @@ -7077,8 +7078,6 @@ entities: - 11809 - 5232 - 5210 - - type: AtmosDevice - joinedGrid: 100 - uid: 2188 components: - type: Transform @@ -7090,8 +7089,6 @@ entities: - 2187 - 2189 - 2209 - - type: AtmosDevice - joinedGrid: 100 - uid: 5673 components: - type: Transform @@ -7104,8 +7101,6 @@ entities: - 3116 - 10694 - 10808 - - type: AtmosDevice - joinedGrid: 100 - uid: 5674 components: - type: Transform @@ -7126,8 +7121,6 @@ entities: - 12698 - 3214 - 5720 - - type: AtmosDevice - joinedGrid: 100 - uid: 13953 components: - type: Transform @@ -7139,8 +7132,6 @@ entities: - 12411 - 12370 - 17291 - - type: AtmosDevice - joinedGrid: 100 - uid: 16764 components: - type: Transform @@ -7158,8 +7149,6 @@ entities: - 3405 - 11022 - 13144 - - type: AtmosDevice - joinedGrid: 100 - uid: 17125 components: - type: Transform @@ -7175,8 +7164,6 @@ entities: - 2424 - 12555 - 13145 - - type: AtmosDevice - joinedGrid: 100 - uid: 17126 components: - type: Transform @@ -7192,8 +7179,6 @@ entities: - 3288 - 3374 - 17128 - - type: AtmosDevice - joinedGrid: 100 - uid: 17130 components: - type: Transform @@ -7211,8 +7196,6 @@ entities: - 17129 - 14580 - 14520 - - type: AtmosDevice - joinedGrid: 100 - uid: 17134 components: - type: Transform @@ -7239,8 +7222,6 @@ entities: - 13146 - 13136 - 13137 - - type: AtmosDevice - joinedGrid: 100 - uid: 17135 components: - type: Transform @@ -7251,8 +7232,6 @@ entities: devices: - 17136 - 3958 - - type: AtmosDevice - joinedGrid: 100 - uid: 17138 components: - type: Transform @@ -7266,8 +7245,6 @@ entities: - 17137 - 3637 - 3413 - - type: AtmosDevice - joinedGrid: 100 - uid: 17140 components: - type: Transform @@ -7280,8 +7257,6 @@ entities: - 3637 - 5166 - 17139 - - type: AtmosDevice - joinedGrid: 100 - uid: 17141 components: - type: Transform @@ -7300,8 +7275,6 @@ entities: - 5227 - 5226 - 5397 - - type: AtmosDevice - joinedGrid: 100 - uid: 17144 components: - type: Transform @@ -7312,8 +7285,6 @@ entities: devices: - 13948 - 15648 - - type: AtmosDevice - joinedGrid: 100 - uid: 17145 components: - type: Transform @@ -7324,8 +7295,6 @@ entities: devices: - 15630 - 15631 - - type: AtmosDevice - joinedGrid: 100 - uid: 17147 components: - type: Transform @@ -7340,8 +7309,6 @@ entities: - 5974 - 15620 - 15632 - - type: AtmosDevice - joinedGrid: 100 - uid: 17152 components: - type: Transform @@ -7362,8 +7329,6 @@ entities: - 8965 - 15716 - 15705 - - type: AtmosDevice - joinedGrid: 100 - uid: 17153 components: - type: Transform @@ -7376,8 +7341,6 @@ entities: - 5975 - 15715 - 15707 - - type: AtmosDevice - joinedGrid: 100 - uid: 17156 components: - type: Transform @@ -7397,8 +7360,6 @@ entities: - 5393 - 15657 - 15658 - - type: AtmosDevice - joinedGrid: 100 - uid: 17157 components: - type: Transform @@ -7410,8 +7371,6 @@ entities: - 5870 - 15673 - 15674 - - type: AtmosDevice - joinedGrid: 100 - uid: 17161 components: - type: Transform @@ -7429,8 +7388,6 @@ entities: - 9015 - 15756 - 15757 - - type: AtmosDevice - joinedGrid: 100 - uid: 17164 components: - type: Transform @@ -7445,8 +7402,6 @@ entities: - 5235 - 15561 - 15562 - - type: AtmosDevice - joinedGrid: 100 - uid: 17167 components: - type: Transform @@ -7463,8 +7418,6 @@ entities: - 5230 - 15550 - 15551 - - type: AtmosDevice - joinedGrid: 100 - uid: 17168 components: - type: Transform @@ -7477,8 +7430,6 @@ entities: - 5230 - 15532 - 15530 - - type: AtmosDevice - joinedGrid: 100 - uid: 17172 components: - type: Transform @@ -7488,8 +7439,6 @@ entities: - type: DeviceList devices: - 17171 - - type: AtmosDevice - joinedGrid: 100 - uid: 17173 components: - type: Transform @@ -7502,16 +7451,12 @@ entities: - 9530 - 9546 - 15779 - - type: AtmosDevice - joinedGrid: 100 - uid: 17174 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-36.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 17177 components: - type: Transform @@ -7523,8 +7468,6 @@ entities: - 10807 - 10814 - 17176 - - type: AtmosDevice - joinedGrid: 100 - uid: 17179 components: - type: Transform @@ -7540,8 +7483,6 @@ entities: - 11220 - 6542 - 6543 - - type: AtmosDevice - joinedGrid: 100 - uid: 17181 components: - type: Transform @@ -7566,8 +7507,6 @@ entities: - 6541 - 10743 - 6588 - - type: AtmosDevice - joinedGrid: 100 - uid: 17184 components: - type: Transform @@ -7580,8 +7519,6 @@ entities: - 11310 - 6590 - 6589 - - type: AtmosDevice - joinedGrid: 100 - uid: 17186 components: - type: Transform @@ -7592,8 +7529,6 @@ entities: devices: - 12218 - 17188 - - type: AtmosDevice - joinedGrid: 100 - uid: 17189 components: - type: Transform @@ -7606,8 +7541,6 @@ entities: - 11351 - 6622 - 6623 - - type: AtmosDevice - joinedGrid: 100 - uid: 17193 components: - type: Transform @@ -7622,8 +7555,6 @@ entities: - 7497 - 12485 - 7493 - - type: AtmosDevice - joinedGrid: 100 - uid: 17197 components: - type: Transform @@ -7642,8 +7573,6 @@ entities: - 6624 - 6649 - 11598 - - type: AtmosDevice - joinedGrid: 100 - uid: 17199 components: - type: Transform @@ -7666,8 +7595,6 @@ entities: - 6676 - 6784 - 10737 - - type: AtmosDevice - joinedGrid: 100 - uid: 17204 components: - type: Transform @@ -7678,8 +7605,6 @@ entities: devices: - 6778 - 6777 - - type: AtmosDevice - joinedGrid: 100 - uid: 17208 components: - type: Transform @@ -7689,8 +7614,6 @@ entities: - type: DeviceList devices: - 13112 - - type: AtmosDevice - joinedGrid: 100 - uid: 17213 components: - type: Transform @@ -7702,8 +7625,6 @@ entities: - 13112 - 17211 - 17212 - - type: AtmosDevice - joinedGrid: 100 - uid: 17214 components: - type: Transform @@ -7716,8 +7637,6 @@ entities: - 6664 - 12919 - 20771 - - type: AtmosDevice - joinedGrid: 100 - uid: 17219 components: - type: Transform @@ -7728,8 +7647,6 @@ entities: devices: - 5780 - 7113 - - type: AtmosDevice - joinedGrid: 100 - uid: 17221 components: - type: Transform @@ -7743,8 +7660,6 @@ entities: - 7107 - 5758 - 17223 - - type: AtmosDevice - joinedGrid: 100 - uid: 17234 components: - type: Transform @@ -7755,8 +7670,6 @@ entities: devices: - 5229 - 5611 - - type: AtmosDevice - joinedGrid: 100 - uid: 17236 components: - type: Transform @@ -7775,8 +7688,6 @@ entities: - 5248 - 5496 - 10747 - - type: AtmosDevice - joinedGrid: 100 - uid: 17247 components: - type: Transform @@ -7792,8 +7703,6 @@ entities: - 5720 - 5709 - 12698 - - type: AtmosDevice - joinedGrid: 100 - uid: 17249 components: - type: Transform @@ -7818,8 +7727,6 @@ entities: - 5513 - 10759 - 13970 - - type: AtmosDevice - joinedGrid: 100 - uid: 17252 components: - type: Transform @@ -7841,8 +7748,6 @@ entities: - 6726 - 6700 - 6727 - - type: AtmosDevice - joinedGrid: 100 - uid: 17257 components: - type: Transform @@ -7867,8 +7772,6 @@ entities: - 6092 - 6298 - 646 - - type: AtmosDevice - joinedGrid: 100 - uid: 17258 components: - type: Transform @@ -7877,8 +7780,6 @@ entities: - type: DeviceList devices: - 17259 - - type: AtmosDevice - joinedGrid: 100 - uid: 17264 components: - type: Transform @@ -7893,8 +7794,6 @@ entities: - 12902 - 6783 - 6793 - - type: AtmosDevice - joinedGrid: 100 - uid: 17265 components: - type: Transform @@ -7906,8 +7805,6 @@ entities: - 5179 - 5178 - 17266 - - type: AtmosDevice - joinedGrid: 100 - uid: 17267 components: - type: Transform @@ -7919,8 +7816,6 @@ entities: - 144 - 143 - 17268 - - type: AtmosDevice - joinedGrid: 100 - uid: 17270 components: - type: Transform @@ -7932,8 +7827,6 @@ entities: - 207 - 6370 - 5913 - - type: AtmosDevice - joinedGrid: 100 - uid: 17271 components: - type: Transform @@ -7945,8 +7838,6 @@ entities: - 147 - 6227 - 5899 - - type: AtmosDevice - joinedGrid: 100 - uid: 17273 components: - type: Transform @@ -7971,8 +7862,6 @@ entities: - 10764 - 14302 - 14301 - - type: AtmosDevice - joinedGrid: 100 - uid: 17276 components: - type: Transform @@ -7996,8 +7885,6 @@ entities: - 15456 - 10766 - 5904 - - type: AtmosDevice - joinedGrid: 100 - uid: 17277 components: - type: Transform @@ -8022,8 +7909,6 @@ entities: - 5942 - 6395 - 6399 - - type: AtmosDevice - joinedGrid: 100 - uid: 17282 components: - type: Transform @@ -8038,8 +7923,6 @@ entities: - 14295 - 5927 - 5928 - - type: AtmosDevice - joinedGrid: 100 - uid: 17283 components: - type: Transform @@ -8057,8 +7940,6 @@ entities: - 207 - 10763 - 6901 - - type: AtmosDevice - joinedGrid: 100 - uid: 17285 components: - type: Transform @@ -8090,8 +7971,6 @@ entities: - 10760 - 6091 - 10739 - - type: AtmosDevice - joinedGrid: 100 - uid: 17289 components: - type: Transform @@ -8108,8 +7987,6 @@ entities: - 13116 - 10736 - 7136 - - type: AtmosDevice - joinedGrid: 100 - uid: 17292 components: - type: Transform @@ -8123,8 +8000,6 @@ entities: - 5052 - 12303 - 17293 - - type: AtmosDevice - joinedGrid: 100 - uid: 17296 components: - type: Transform @@ -8136,8 +8011,6 @@ entities: - 16766 - 16767 - 17297 - - type: AtmosDevice - joinedGrid: 100 - uid: 17300 components: - type: Transform @@ -8155,8 +8028,6 @@ entities: - 7146 - 7170 - 6297 - - type: AtmosDevice - joinedGrid: 100 - uid: 17306 components: - type: Transform @@ -8178,8 +8049,6 @@ entities: - 7246 - 7297 - 10729 - - type: AtmosDevice - joinedGrid: 100 - uid: 17314 components: - type: Transform @@ -8196,8 +8065,6 @@ entities: - 8835 - 10732 - 8831 - - type: AtmosDevice - joinedGrid: 100 - uid: 17316 components: - type: Transform @@ -8214,8 +8081,6 @@ entities: - 14634 - 8830 - 8839 - - type: AtmosDevice - joinedGrid: 100 - uid: 17318 components: - type: Transform @@ -8228,8 +8093,6 @@ entities: - 16742 - 14635 - 14636 - - type: AtmosDevice - joinedGrid: 100 - uid: 17321 components: - type: Transform @@ -8243,8 +8106,6 @@ entities: - 16546 - 8855 - 10730 - - type: AtmosDevice - joinedGrid: 100 - uid: 17322 components: - type: Transform @@ -8255,8 +8116,6 @@ entities: - 16546 - 8853 - 8854 - - type: AtmosDevice - joinedGrid: 100 - uid: 17327 components: - type: Transform @@ -8288,8 +8147,6 @@ entities: - 10762 - 10740 - 6296 - - type: AtmosDevice - joinedGrid: 100 - uid: 17330 components: - type: Transform @@ -8315,8 +8172,6 @@ entities: - 10726 - 10727 - 6129 - - type: AtmosDevice - joinedGrid: 100 - uid: 17333 components: - type: Transform @@ -8340,8 +8195,6 @@ entities: - 7086 - 7087 - 10774 - - type: AtmosDevice - joinedGrid: 100 - uid: 17336 components: - type: Transform @@ -8358,8 +8211,6 @@ entities: - 6231 - 6402 - 10767 - - type: AtmosDevice - joinedGrid: 100 - uid: 17338 components: - type: Transform @@ -8376,8 +8227,6 @@ entities: - 6313 - 6312 - 6311 - - type: AtmosDevice - joinedGrid: 100 - uid: 17341 components: - type: Transform @@ -8388,8 +8237,6 @@ entities: - 5383 - 5388 - 17342 - - type: AtmosDevice - joinedGrid: 100 - uid: 17344 components: - type: Transform @@ -8401,8 +8248,6 @@ entities: - 5388 - 5955 - 17343 - - type: AtmosDevice - joinedGrid: 100 - uid: 17345 components: - type: Transform @@ -8413,8 +8258,6 @@ entities: devices: - 5957 - 5967 - - type: AtmosDevice - joinedGrid: 100 - uid: 17348 components: - type: Transform @@ -8424,8 +8267,6 @@ entities: - type: DeviceList devices: - 9060 - - type: AtmosDevice - joinedGrid: 100 - uid: 17349 components: - type: Transform @@ -8437,8 +8278,6 @@ entities: - 17350 - 2187 - 773 - - type: AtmosDevice - joinedGrid: 100 - uid: 17354 components: - type: Transform @@ -8448,8 +8287,6 @@ entities: - type: DeviceList devices: - 17355 - - type: AtmosDevice - joinedGrid: 100 - uid: 17356 components: - type: Transform @@ -8462,8 +8299,6 @@ entities: - 2209 - 17352 - 17351 - - type: AtmosDevice - joinedGrid: 100 - uid: 17358 components: - type: Transform @@ -8477,8 +8312,6 @@ entities: - 2245 - 2244 - 15848 - - type: AtmosDevice - joinedGrid: 100 - uid: 17360 components: - type: Transform @@ -8492,8 +8325,6 @@ entities: - 2323 - 2320 - 15798 - - type: AtmosDevice - joinedGrid: 100 - uid: 17367 components: - type: Transform @@ -8509,8 +8340,6 @@ entities: - 6897 - 10769 - 6918 - - type: AtmosDevice - joinedGrid: 100 - uid: 17368 components: - type: Transform @@ -8519,8 +8348,6 @@ entities: - type: DeviceList devices: - 9607 - - type: AtmosDevice - joinedGrid: 100 - uid: 17371 components: - type: Transform @@ -8532,8 +8359,6 @@ entities: - 9609 - 15420 - 15421 - - type: AtmosDevice - joinedGrid: 100 - uid: 17372 components: - type: Transform @@ -8547,8 +8372,6 @@ entities: - 15387 - 15373 - 10663 - - type: AtmosDevice - joinedGrid: 100 - uid: 17376 components: - type: Transform @@ -8560,8 +8383,6 @@ entities: - 15328 - 15362 - 10688 - - type: AtmosDevice - joinedGrid: 100 - uid: 17378 components: - type: Transform @@ -8578,8 +8399,6 @@ entities: - 10817 - 10818 - 15361 - - type: AtmosDevice - joinedGrid: 100 - uid: 17383 components: - type: Transform @@ -8592,8 +8411,6 @@ entities: - 10819 - 6219 - 6125 - - type: AtmosDevice - joinedGrid: 100 - uid: 17385 components: - type: Transform @@ -8611,8 +8428,6 @@ entities: - 10819 - 6266 - 15334 - - type: AtmosDevice - joinedGrid: 100 - uid: 17387 components: - type: Transform @@ -8624,8 +8439,6 @@ entities: - 4096 - 4251 - 17388 - - type: AtmosDevice - joinedGrid: 100 - uid: 17393 components: - type: Transform @@ -8646,8 +8459,6 @@ entities: - 7502 - 7452 - 10724 - - type: AtmosDevice - joinedGrid: 100 - uid: 17394 components: - type: Transform @@ -8665,8 +8476,6 @@ entities: - 7417 - 7423 - 7422 - - type: AtmosDevice - joinedGrid: 100 - uid: 17396 components: - type: Transform @@ -8679,8 +8488,6 @@ entities: - 4091 - 7450 - 7446 - - type: AtmosDevice - joinedGrid: 100 - uid: 19842 components: - type: Transform @@ -8697,8 +8504,6 @@ entities: - 5580 - 5611 - 145 - - type: AtmosDevice - joinedGrid: 100 - uid: 19843 components: - type: Transform @@ -8712,8 +8517,6 @@ entities: - 5962 - 3383 - 337 - - type: AtmosDevice - joinedGrid: 100 - uid: 19857 components: - type: Transform @@ -8727,8 +8530,6 @@ entities: - 19860 - 19859 - 19858 - - type: AtmosDevice - joinedGrid: 100 - uid: 20785 components: - type: Transform @@ -8742,8 +8543,6 @@ entities: - 2966 - 3425 - 3422 - - type: AtmosDevice - joinedGrid: 100 - proto: AirCanister entities: - uid: 12559 @@ -8751,15 +8550,11 @@ entities: - type: Transform pos: 11.5,-9.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 17346 components: - type: Transform pos: -52.5,38.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - proto: Airlock entities: - uid: 2132 @@ -9020,6 +8815,14 @@ entities: - type: Transform pos: -17.5,66.5 parent: 100 + - uid: 4403 + components: + - type: MetaData + desc: The angle we give the bathroom mirror is always meant to flatter. + name: Bathroom + - type: Transform + pos: -21.5,66.5 + parent: 100 - uid: 4437 components: - type: MetaData @@ -12266,16 +12069,6 @@ entities: - type: Transform pos: 11.5,-67.5 parent: 100 -- proto: AirlockServiceCaptainLocked - entities: - - uid: 4403 - components: - - type: MetaData - desc: The angle we give the bathroom mirror is always meant to flatter. - name: Bathroom - - type: Transform - pos: -21.5,66.5 - parent: 100 - proto: AirlockServiceGlassLocked entities: - uid: 7157 @@ -12369,8 +12162,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-28.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 17137 components: - type: Transform @@ -12418,8 +12209,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-1.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 17259 components: - type: Transform @@ -13355,8 +13144,6 @@ entities: - type: Transform pos: -20.5,-50.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - proto: Basketball entities: - uid: 12070 @@ -14008,7 +13795,7 @@ entities: - type: Transform pos: -25.703403,16.915356 parent: 100 -- proto: BodyBag_Container +- proto: BodyBag entities: - uid: 14380 components: @@ -14049,13 +13836,6 @@ entities: - type: Transform pos: 28.336624,57.620804 parent: 100 -- proto: BookDetective - entities: - - uid: 20501 - components: - - type: Transform - pos: 11.693138,27.631475 - parent: 100 - proto: BookLeafLoversSecret entities: - uid: 504 @@ -14075,6 +13855,13 @@ entities: - type: Transform pos: -58.54738,-46.425694 parent: 100 +- proto: BookRandomStory + entities: + - uid: 20501 + components: + - type: Transform + pos: 11.693138,27.631475 + parent: 100 - proto: BookSecurity entities: - uid: 2615 @@ -27443,6 +27230,206 @@ entities: - type: Transform pos: -61.5,-3.5 parent: 100 + - uid: 20811 + components: + - type: Transform + pos: -71.5,75.5 + parent: 100 + - uid: 20812 + components: + - type: Transform + pos: -71.5,74.5 + parent: 100 + - uid: 20813 + components: + - type: Transform + pos: -71.5,73.5 + parent: 100 + - uid: 20814 + components: + - type: Transform + pos: -71.5,77.5 + parent: 100 + - uid: 20815 + components: + - type: Transform + pos: -71.5,78.5 + parent: 100 + - uid: 20816 + components: + - type: Transform + pos: -71.5,79.5 + parent: 100 + - uid: 20818 + components: + - type: Transform + pos: -52.5,83.5 + parent: 100 + - uid: 20819 + components: + - type: Transform + pos: -52.5,82.5 + parent: 100 + - uid: 20820 + components: + - type: Transform + pos: -53.5,82.5 + parent: 100 + - uid: 20821 + components: + - type: Transform + pos: -52.5,81.5 + parent: 100 + - uid: 20824 + components: + - type: Transform + pos: -14.5,80.5 + parent: 100 + - uid: 20825 + components: + - type: Transform + pos: -15.5,80.5 + parent: 100 + - uid: 20826 + components: + - type: Transform + pos: -16.5,80.5 + parent: 100 + - uid: 20828 + components: + - type: Transform + pos: -4.5,79.5 + parent: 100 + - uid: 20829 + components: + - type: Transform + pos: -4.5,80.5 + parent: 100 + - uid: 20836 + components: + - type: Transform + pos: 14.5,52.5 + parent: 100 + - uid: 20837 + components: + - type: Transform + pos: 14.5,53.5 + parent: 100 + - uid: 20838 + components: + - type: Transform + pos: 14.5,54.5 + parent: 100 + - uid: 20839 + components: + - type: Transform + pos: 14.5,55.5 + parent: 100 + - uid: 20840 + components: + - type: Transform + pos: 14.5,56.5 + parent: 100 + - uid: 20845 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 100 + - uid: 20846 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 100 + - uid: 20847 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 100 + - uid: 20848 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 100 + - uid: 20849 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 100 + - uid: 20850 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 100 + - uid: 20851 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 100 + - uid: 20852 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 100 + - uid: 20854 + components: + - type: Transform + pos: -9.5,2.5 + parent: 100 + - uid: 20855 + components: + - type: Transform + pos: -10.5,2.5 + parent: 100 + - uid: 20856 + components: + - type: Transform + pos: -10.5,1.5 + parent: 100 + - uid: 20860 + components: + - type: Transform + pos: 2.5,18.5 + parent: 100 + - uid: 20861 + components: + - type: Transform + pos: 1.5,18.5 + parent: 100 + - uid: 20862 + components: + - type: Transform + pos: 0.5,18.5 + parent: 100 + - uid: 20863 + components: + - type: Transform + pos: 0.5,17.5 + parent: 100 + - uid: 20865 + components: + - type: Transform + pos: -4.5,28.5 + parent: 100 + - uid: 20866 + components: + - type: Transform + pos: -5.5,28.5 + parent: 100 + - uid: 20883 + components: + - type: Transform + pos: -33.5,-33.5 + parent: 100 + - uid: 20884 + components: + - type: Transform + pos: -34.5,-33.5 + parent: 100 + - uid: 20892 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 100 - proto: CableApcStack entities: - uid: 10832 @@ -36484,8 +36471,6 @@ entities: - type: Transform pos: -14.5,-66.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - proto: CargoRequestComputerCircuitboard entities: - uid: 19636 @@ -41642,7 +41627,21 @@ entities: - type: Transform pos: 9.504622,-27.540493 parent: 100 -- proto: chem_master +- proto: ChemDispenser + entities: + - uid: 1399 + components: + - type: Transform + pos: -16.5,37.5 + parent: 100 +- proto: ChemistryHotplate + entities: + - uid: 943 + components: + - type: Transform + pos: -19.5,33.5 + parent: 100 +- proto: ChemMaster entities: - uid: 1578 components: @@ -41676,20 +41675,6 @@ entities: - type: Transform pos: -16.5,-34.5 parent: 100 -- proto: ChemDispenser - entities: - - uid: 1399 - components: - - type: Transform - pos: -16.5,37.5 - parent: 100 -- proto: ChemistryHotplate - entities: - - uid: 943 - components: - - type: Transform - pos: -19.5,33.5 - parent: 100 - proto: ChemMasterMachineCircuitboard entities: - uid: 19445 @@ -43760,23 +43745,6 @@ entities: parent: 10716 - type: Physics canCollide: False -- proto: ClothingHeadHatHairflower - entities: - - uid: 2811 - components: - - type: Transform - pos: 23.366083,-4.2977033 - parent: 100 - - uid: 4884 - components: - - type: Transform - pos: -5.608796,59.709587 - parent: 100 - - uid: 8313 - components: - - type: Transform - pos: -5.682241,46.513325 - parent: 100 - proto: ClothingHeadHatHardhatOrange entities: - uid: 10659 @@ -43912,6 +43880,18 @@ entities: - type: Transform pos: -55.447285,-35.27587 parent: 100 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 16213 + components: + - type: Transform + pos: -43.306084,52.757347 + parent: 100 + - uid: 16745 + components: + - type: Transform + pos: 17.087822,-58.53699 + parent: 100 - proto: ClothingHeadHelmetBombSuit entities: - uid: 2047 @@ -43946,18 +43926,6 @@ entities: - type: Transform pos: 10.20361,-72.38659 parent: 100 -- proto: ClothingHeadHelmetScaf - entities: - - uid: 16213 - components: - - type: Transform - pos: -43.306084,52.757347 - parent: 100 - - uid: 16745 - components: - - type: Transform - pos: 17.087822,-58.53699 - parent: 100 - proto: ClothingHeadNurseHat entities: - uid: 4154 @@ -44108,7 +44076,7 @@ entities: - type: Transform pos: -54.030758,12.542188 parent: 100 -- proto: ClothingOuterArmorScaf +- proto: ClothingOuterArmorBasic entities: - uid: 14014 components: @@ -50866,7 +50834,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null @@ -50947,7 +50914,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null @@ -51117,7 +51083,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null @@ -52266,8 +52231,6 @@ entities: - 10818 - 10817 - 10819 - - type: AtmosDevice - joinedGrid: 100 - uid: 16287 components: - type: Transform @@ -52283,8 +52246,6 @@ entities: - 3387 - 3388 - 3405 - - type: AtmosDevice - joinedGrid: 100 - uid: 17124 components: - type: Transform @@ -52298,8 +52259,6 @@ entities: - 3055 - 2516 - 2424 - - type: AtmosDevice - joinedGrid: 100 - uid: 17127 components: - type: Transform @@ -52314,8 +52273,6 @@ entities: - 3285 - 3288 - 3374 - - type: AtmosDevice - joinedGrid: 100 - uid: 17131 components: - type: Transform @@ -52329,8 +52286,6 @@ entities: - 3412 - 3411 - 3410 - - type: AtmosDevice - joinedGrid: 100 - uid: 17132 components: - type: Transform @@ -52349,8 +52304,6 @@ entities: - 5168 - 5184 - 5182 - - type: AtmosDevice - joinedGrid: 100 - uid: 17133 components: - type: Transform @@ -52369,8 +52322,6 @@ entities: - 5168 - 5184 - 5182 - - type: AtmosDevice - joinedGrid: 100 - uid: 17142 components: - type: Transform @@ -52388,23 +52339,17 @@ entities: - 5228 - 5227 - 5226 - - type: AtmosDevice - joinedGrid: 100 - uid: 17143 components: - type: Transform pos: -18.5,-26.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 17146 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-35.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 17148 components: - type: Transform @@ -52416,8 +52361,6 @@ entities: - 5186 - 5973 - 5974 - - type: AtmosDevice - joinedGrid: 100 - uid: 17154 components: - type: Transform @@ -52428,8 +52371,6 @@ entities: - 5935 - 5978 - 5975 - - type: AtmosDevice - joinedGrid: 100 - uid: 17155 components: - type: Transform @@ -52447,8 +52388,6 @@ entities: - 5252 - 5255 - 5393 - - type: AtmosDevice - joinedGrid: 100 - uid: 17158 components: - type: Transform @@ -52458,8 +52397,6 @@ entities: - type: DeviceList devices: - 5870 - - type: AtmosDevice - joinedGrid: 100 - uid: 17162 components: - type: Transform @@ -52475,8 +52412,6 @@ entities: - 9528 - 9018 - 9015 - - type: AtmosDevice - joinedGrid: 100 - uid: 17165 components: - type: Transform @@ -52489,8 +52424,6 @@ entities: - 8969 - 5236 - 5235 - - type: AtmosDevice - joinedGrid: 100 - uid: 17166 components: - type: Transform @@ -52505,8 +52438,6 @@ entities: - 5255 - 5234 - 5230 - - type: AtmosDevice - joinedGrid: 100 - uid: 17169 components: - type: Transform @@ -52517,8 +52448,6 @@ entities: - 5201 - 5234 - 5230 - - type: AtmosDevice - joinedGrid: 100 - uid: 17170 components: - type: Transform @@ -52530,8 +52459,6 @@ entities: - 5201 - 5234 - 5230 - - type: AtmosDevice - joinedGrid: 100 - uid: 17175 components: - type: Transform @@ -52543,8 +52470,6 @@ entities: - 5968 - 15874 - 6479 - - type: AtmosDevice - joinedGrid: 100 - uid: 17178 components: - type: Transform @@ -52555,8 +52480,6 @@ entities: - 11150 - 10807 - 10814 - - type: AtmosDevice - joinedGrid: 100 - uid: 17180 components: - type: Transform @@ -52570,8 +52493,6 @@ entities: - 11192 - 11191 - 11220 - - type: AtmosDevice - joinedGrid: 100 - uid: 17182 components: - type: Transform @@ -52590,8 +52511,6 @@ entities: - 11351 - 11349 - 11348 - - type: AtmosDevice - joinedGrid: 100 - uid: 17183 components: - type: Transform @@ -52610,8 +52529,6 @@ entities: - 11351 - 11349 - 11348 - - type: AtmosDevice - joinedGrid: 100 - uid: 17185 components: - type: Transform @@ -52621,8 +52538,6 @@ entities: devices: - 11346 - 11310 - - type: AtmosDevice - joinedGrid: 100 - uid: 17187 components: - type: Transform @@ -52631,8 +52546,6 @@ entities: - type: DeviceList devices: - 12218 - - type: AtmosDevice - joinedGrid: 100 - uid: 17190 components: - type: Transform @@ -52642,8 +52555,6 @@ entities: devices: - 11352 - 11351 - - type: AtmosDevice - joinedGrid: 100 - uid: 17192 components: - type: Transform @@ -52654,8 +52565,6 @@ entities: devices: - 3299 - 3403 - - type: AtmosDevice - joinedGrid: 100 - uid: 17196 components: - type: Transform @@ -52671,8 +52580,6 @@ entities: - 17191 - 17194 - 17195 - - type: AtmosDevice - joinedGrid: 100 - uid: 17200 components: - type: Transform @@ -52691,8 +52598,6 @@ entities: - 12674 - 12673 - 13152 - - type: AtmosDevice - joinedGrid: 100 - uid: 17201 components: - type: Transform @@ -52711,8 +52616,6 @@ entities: - 12674 - 12673 - 13152 - - type: AtmosDevice - joinedGrid: 100 - uid: 17205 components: - type: Transform @@ -52724,8 +52627,6 @@ entities: - 5104 - 5052 - 5053 - - type: AtmosDevice - joinedGrid: 100 - uid: 17215 components: - type: Transform @@ -52736,24 +52637,18 @@ entities: devices: - 12938 - 20771 - - type: AtmosDevice - joinedGrid: 100 - uid: 17216 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-20.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 17217 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-20.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 17220 components: - type: Transform @@ -52764,8 +52659,6 @@ entities: devices: - 12581 - 12585 - - type: AtmosDevice - joinedGrid: 100 - uid: 17222 components: - type: Transform @@ -52777,16 +52670,12 @@ entities: - 12581 - 12585 - 20771 - - type: AtmosDevice - joinedGrid: 100 - uid: 17227 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-20.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 17237 components: - type: Transform @@ -52803,8 +52692,6 @@ entities: - 5225 - 5245 - 5248 - - type: AtmosDevice - joinedGrid: 100 - uid: 17250 components: - type: Transform @@ -52826,8 +52713,6 @@ entities: - 5198 - 5195 - 5194 - - type: AtmosDevice - joinedGrid: 100 - uid: 17251 components: - type: Transform @@ -52848,8 +52733,6 @@ entities: - 5198 - 5195 - 5194 - - type: AtmosDevice - joinedGrid: 100 - uid: 17253 components: - type: Transform @@ -52868,8 +52751,6 @@ entities: - 12909 - 12674 - 12673 - - type: AtmosDevice - joinedGrid: 100 - uid: 17254 components: - type: Transform @@ -52888,8 +52769,6 @@ entities: - 12909 - 12674 - 12673 - - type: AtmosDevice - joinedGrid: 100 - uid: 17255 components: - type: Transform @@ -52908,8 +52787,6 @@ entities: - 5181 - 5180 - 5177 - - type: AtmosDevice - joinedGrid: 100 - uid: 17256 components: - type: Transform @@ -52927,8 +52804,6 @@ entities: - 5181 - 5180 - 5177 - - type: AtmosDevice - joinedGrid: 100 - uid: 17260 components: - type: Transform @@ -52938,8 +52813,6 @@ entities: - type: DeviceList devices: - 5107 - - type: AtmosDevice - joinedGrid: 100 - uid: 17261 components: - type: Transform @@ -52949,8 +52822,6 @@ entities: - type: DeviceList devices: - 5158 - - type: AtmosDevice - joinedGrid: 100 - uid: 17262 components: - type: Transform @@ -52959,8 +52830,6 @@ entities: - type: DeviceList devices: - 5177 - - type: AtmosDevice - joinedGrid: 100 - uid: 17263 components: - type: Transform @@ -52973,8 +52842,6 @@ entities: - 13151 - 13138 - 12902 - - type: AtmosDevice - joinedGrid: 100 - uid: 17269 components: - type: Transform @@ -52984,8 +52851,6 @@ entities: - type: DeviceList devices: - 207 - - type: AtmosDevice - joinedGrid: 100 - uid: 17272 components: - type: Transform @@ -52995,8 +52860,6 @@ entities: - type: DeviceList devices: - 147 - - type: AtmosDevice - joinedGrid: 100 - uid: 17274 components: - type: Transform @@ -53017,8 +52880,6 @@ entities: - 5865 - 5763 - 5762 - - type: AtmosDevice - joinedGrid: 100 - uid: 17275 components: - type: Transform @@ -53039,8 +52900,6 @@ entities: - 5865 - 5763 - 5762 - - type: AtmosDevice - joinedGrid: 100 - uid: 17278 components: - type: Transform @@ -53063,8 +52922,6 @@ entities: - 5940 - 5941 - 5942 - - type: AtmosDevice - joinedGrid: 100 - uid: 17279 components: - type: Transform @@ -53087,8 +52944,6 @@ entities: - 5940 - 5941 - 5942 - - type: AtmosDevice - joinedGrid: 100 - uid: 17280 components: - type: Transform @@ -53110,8 +52965,6 @@ entities: - 15457 - 15455 - 15456 - - type: AtmosDevice - joinedGrid: 100 - uid: 17281 components: - type: Transform @@ -53133,8 +52986,6 @@ entities: - 15457 - 15455 - 15456 - - type: AtmosDevice - joinedGrid: 100 - uid: 17284 components: - type: Transform @@ -53150,8 +53001,6 @@ entities: - 5980 - 5966 - 207 - - type: AtmosDevice - joinedGrid: 100 - uid: 17286 components: - type: Transform @@ -53179,8 +53028,6 @@ entities: - 13116 - 12784 - 12783 - - type: AtmosDevice - joinedGrid: 100 - uid: 17287 components: - type: Transform @@ -53208,8 +53055,6 @@ entities: - 13116 - 12784 - 12783 - - type: AtmosDevice - joinedGrid: 100 - uid: 17288 components: - type: Transform @@ -53236,8 +53081,6 @@ entities: - 13116 - 12784 - 12783 - - type: AtmosDevice - joinedGrid: 100 - uid: 17290 components: - type: Transform @@ -53253,8 +53096,6 @@ entities: - 12924 - 12930 - 13116 - - type: AtmosDevice - joinedGrid: 100 - uid: 17301 components: - type: Transform @@ -53266,8 +53107,6 @@ entities: - 4445 - 3183 - 3187 - - type: AtmosDevice - joinedGrid: 100 - uid: 17302 components: - type: Transform @@ -53279,8 +53118,6 @@ entities: - 13155 - 3183 - 3187 - - type: AtmosDevice - joinedGrid: 100 - uid: 17303 components: - type: Transform @@ -53291,8 +53128,6 @@ entities: devices: - 13153 - 13155 - - type: AtmosDevice - joinedGrid: 100 - uid: 17307 components: - type: Transform @@ -53303,8 +53138,6 @@ entities: devices: - 13605 - 14976 - - type: AtmosDevice - joinedGrid: 100 - uid: 17308 components: - type: Transform @@ -53320,8 +53153,6 @@ entities: - 16530 - 15347 - 15238 - - type: AtmosDevice - joinedGrid: 100 - uid: 17309 components: - type: Transform @@ -53337,8 +53168,6 @@ entities: - 16530 - 15347 - 15238 - - type: AtmosDevice - joinedGrid: 100 - uid: 17310 components: - type: Transform @@ -53354,16 +53183,12 @@ entities: - 16530 - 15347 - 15238 - - type: AtmosDevice - joinedGrid: 100 - uid: 17313 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,41.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 17315 components: - type: Transform @@ -53376,8 +53201,6 @@ entities: - 16545 - 5977 - 5976 - - type: AtmosDevice - joinedGrid: 100 - uid: 17317 components: - type: Transform @@ -53390,8 +53213,6 @@ entities: - 5976 - 16695 - 16742 - - type: AtmosDevice - joinedGrid: 100 - uid: 17319 components: - type: Transform @@ -53402,8 +53223,6 @@ entities: devices: - 16695 - 16742 - - type: AtmosDevice - joinedGrid: 100 - uid: 17320 components: - type: Transform @@ -53415,8 +53234,6 @@ entities: - 16530 - 16545 - 16546 - - type: AtmosDevice - joinedGrid: 100 - uid: 17323 components: - type: Transform @@ -53426,8 +53243,6 @@ entities: - type: DeviceList devices: - 16546 - - type: AtmosDevice - joinedGrid: 100 - uid: 17326 components: - type: Transform @@ -53440,8 +53255,6 @@ entities: - 12169 - 12053 - 12052 - - type: AtmosDevice - joinedGrid: 100 - uid: 17328 components: - type: Transform @@ -53466,8 +53279,6 @@ entities: - 12221 - 12301 - 12300 - - type: AtmosDevice - joinedGrid: 100 - uid: 17329 components: - type: Transform @@ -53492,8 +53303,6 @@ entities: - 12221 - 12301 - 12300 - - type: AtmosDevice - joinedGrid: 100 - uid: 17331 components: - type: Transform @@ -53512,8 +53321,6 @@ entities: - 4251 - 4358 - 4260 - - type: AtmosDevice - joinedGrid: 100 - uid: 17332 components: - type: Transform @@ -53532,8 +53339,6 @@ entities: - 4251 - 4358 - 4260 - - type: AtmosDevice - joinedGrid: 100 - uid: 17334 components: - type: Transform @@ -53553,8 +53358,6 @@ entities: - 1113 - 1114 - 2051 - - type: AtmosDevice - joinedGrid: 100 - uid: 17335 components: - type: Transform @@ -53574,8 +53377,6 @@ entities: - 1113 - 1114 - 2051 - - type: AtmosDevice - joinedGrid: 100 - uid: 17337 components: - type: Transform @@ -53590,8 +53391,6 @@ entities: - 6310 - 6309 - 6231 - - type: AtmosDevice - joinedGrid: 100 - uid: 17339 components: - type: Transform @@ -53609,8 +53408,6 @@ entities: - 6313 - 6312 - 6311 - - type: AtmosDevice - joinedGrid: 100 - uid: 17340 components: - type: Transform @@ -53623,8 +53420,6 @@ entities: - 290 - 291 - 579 - - type: AtmosDevice - joinedGrid: 100 - uid: 17357 components: - type: Transform @@ -53636,8 +53431,6 @@ entities: - 2209 - 17352 - 17351 - - type: AtmosDevice - joinedGrid: 100 - uid: 17359 components: - type: Transform @@ -53650,8 +53443,6 @@ entities: - 17351 - 2245 - 2244 - - type: AtmosDevice - joinedGrid: 100 - uid: 17361 components: - type: Transform @@ -53664,8 +53455,6 @@ entities: - 2244 - 2323 - 2320 - - type: AtmosDevice - joinedGrid: 100 - uid: 17373 components: - type: Transform @@ -53675,8 +53464,6 @@ entities: - type: DeviceList devices: - 9609 - - type: AtmosDevice - joinedGrid: 100 - uid: 17374 components: - type: Transform @@ -53686,8 +53473,6 @@ entities: - type: DeviceList devices: - 9614 - - type: AtmosDevice - joinedGrid: 100 - uid: 17375 components: - type: Transform @@ -53697,8 +53482,6 @@ entities: - type: DeviceList devices: - 10663 - - type: AtmosDevice - joinedGrid: 100 - uid: 17377 components: - type: Transform @@ -53708,8 +53491,6 @@ entities: - type: DeviceList devices: - 10688 - - type: AtmosDevice - joinedGrid: 100 - uid: 17384 components: - type: Transform @@ -53720,8 +53501,6 @@ entities: - 6445 - 9033 - 10819 - - type: AtmosDevice - joinedGrid: 100 - uid: 17389 components: - type: Transform @@ -53731,8 +53510,6 @@ entities: - type: DeviceList devices: - 3409 - - type: AtmosDevice - joinedGrid: 100 - uid: 17390 components: - type: Transform @@ -53746,8 +53523,6 @@ entities: - 3409 - 3408 - 3407 - - type: AtmosDevice - joinedGrid: 100 - uid: 17391 components: - type: Transform @@ -53761,8 +53536,6 @@ entities: - 4091 - 3509 - 3414 - - type: AtmosDevice - joinedGrid: 100 - uid: 17392 components: - type: Transform @@ -53776,8 +53549,6 @@ entities: - 4095 - 4093 - 4096 - - type: AtmosDevice - joinedGrid: 100 - uid: 17395 components: - type: Transform @@ -53787,8 +53558,6 @@ entities: - type: DeviceList devices: - 3298 - - type: AtmosDevice - joinedGrid: 100 - uid: 17397 components: - type: Transform @@ -53799,8 +53568,6 @@ entities: devices: - 3298 - 4091 - - type: AtmosDevice - joinedGrid: 100 - uid: 20784 components: - type: Transform @@ -53811,8 +53578,6 @@ entities: - 19844 - 19845 - 5229 - - type: AtmosDevice - joinedGrid: 100 - uid: 20798 components: - type: Transform @@ -53826,8 +53591,6 @@ entities: - 3421 - 5170 - 5210 - - type: AtmosDevice - joinedGrid: 100 - proto: FireAxeCabinetFilled entities: - uid: 12131 @@ -55928,6 +55691,18 @@ entities: - type: Transform pos: -54.271267,11.631478 parent: 100 +- proto: FoodKebabSkewer + entities: + - uid: 12116 + components: + - type: Transform + pos: -36.411007,-21.465963 + parent: 100 + - uid: 18881 + components: + - type: Transform + pos: 25.495583,45.7853 + parent: 100 - proto: FoodLemon entities: - uid: 12707 @@ -55983,18 +55758,6 @@ entities: - type: Transform pos: -8.219691,77.89517 parent: 100 -- proto: FoodMeatRatdoubleKebab - entities: - - uid: 12116 - components: - - type: Transform - pos: -36.411007,-21.465963 - parent: 100 - - uid: 18881 - components: - - type: Transform - pos: 25.495583,45.7853 - parent: 100 - proto: FoodPieBananaCream entities: - uid: 6349 @@ -56074,6 +55837,23 @@ entities: - type: Transform pos: 16.819904,-57.251667 parent: 100 +- proto: FoodPoppy + entities: + - uid: 2811 + components: + - type: Transform + pos: 23.366083,-4.2977033 + parent: 100 + - uid: 4884 + components: + - type: Transform + pos: -5.608796,59.709587 + parent: 100 + - uid: 8313 + components: + - type: Transform + pos: -5.682241,46.513325 + parent: 100 - proto: FoodSnackChocolate entities: - uid: 1666 @@ -56219,8 +55999,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-52.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - proto: GasMinerOxygenStation entities: - uid: 13475 @@ -56228,8 +56006,6 @@ entities: - type: Transform pos: -7.5,-54.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - proto: GasMixer entities: - uid: 14515 @@ -56242,8 +56018,6 @@ entities: inletTwoConcentration: 0.98 inletOneConcentration: 0.02 targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - proto: GasMixerFlipped entities: - uid: 14546 @@ -56256,8 +56030,6 @@ entities: inletTwoConcentration: 0.22000003 inletOneConcentration: 0.78 targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#42F5F5FF' - proto: GasOutletInjector @@ -56268,40 +56040,30 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-56.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 5257 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-58.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 13629 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-56.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 13635 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-54.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 13636 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-52.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - proto: GasPassiveVent entities: - uid: 1485 @@ -56310,52 +56072,38 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,28.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 11514 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-64.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 12086 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-11.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 13510 components: - type: Transform pos: -7.5,-54.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 13520 components: - type: Transform pos: -7.5,-58.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 13989 components: - type: Transform pos: -7.5,-52.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 13998 components: - type: Transform pos: -7.5,-56.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - proto: GasPipeBend entities: - uid: 323 @@ -78165,16 +77913,12 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-10.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 17761 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,31.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 19983 @@ -78183,24 +77927,18 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-60.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 19990 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-64.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 20676 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-51.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - proto: GasPressurePump entities: - uid: 355 @@ -78209,8 +77947,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-11.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 357 @@ -78219,8 +77955,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-10.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 1846 components: - type: Transform @@ -78229,15 +77963,11 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - uid: 3389 components: - type: Transform pos: -12.5,-9.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4747 @@ -78248,8 +77978,6 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - uid: 4753 components: - type: Transform @@ -78258,8 +77986,6 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - uid: 4770 components: - type: Transform @@ -78268,8 +77994,6 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - uid: 4776 components: - type: Transform @@ -78278,8 +78002,6 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - uid: 4904 components: - type: Transform @@ -78288,8 +78010,6 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - uid: 5050 components: - type: Transform @@ -78298,8 +78018,6 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5095 @@ -78310,8 +78028,6 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 300 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 12147 @@ -78322,8 +78038,6 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - uid: 12185 components: - type: Transform @@ -78332,8 +78046,6 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - uid: 12805 components: - type: Transform @@ -78342,8 +78054,6 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - uid: 13940 components: - type: Transform @@ -78351,16 +78061,12 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - uid: 14352 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-59.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 14535 components: - type: Transform @@ -78369,8 +78075,6 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - uid: 16803 components: - type: Transform @@ -78379,16 +78083,12 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - uid: 19980 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-62.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 19981 components: - type: Transform @@ -78397,8 +78097,6 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 225 - - type: AtmosDevice - joinedGrid: 100 - uid: 20004 components: - type: Transform @@ -78406,8 +78104,6 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - uid: 20005 components: - type: Transform @@ -78416,8 +78112,6 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - uid: 20046 components: - type: Transform @@ -78426,8 +78120,6 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 100 - proto: GasThermoMachineFreezer entities: - uid: 9430 @@ -78435,8 +78127,6 @@ entities: - type: Transform pos: -55.5,13.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - proto: GasThermoMachineFreezerEnabled entities: - uid: 3219 @@ -78447,8 +78137,6 @@ entities: parent: 100 - type: GasThermoMachine targetTemperature: 253.15 - - type: AtmosDevice - joinedGrid: 100 - proto: GasVentPump entities: - uid: 16 @@ -78460,8 +78148,6 @@ entities: - type: DeviceNetwork deviceLists: - 19842 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 122 @@ -78470,8 +78156,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-18.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 145 @@ -78483,8 +78167,6 @@ entities: - type: DeviceNetwork deviceLists: - 19842 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 646 @@ -78493,8 +78175,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,12.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 653 @@ -78503,8 +78183,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,10.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1293 @@ -78512,8 +78190,6 @@ entities: - type: Transform pos: -14.5,50.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1306 @@ -78522,8 +78198,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,36.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1627 @@ -78532,8 +78206,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,49.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3116 @@ -78545,8 +78217,6 @@ entities: - type: DeviceNetwork deviceLists: - 5673 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3214 @@ -78558,8 +78228,6 @@ entities: - type: DeviceNetwork deviceLists: - 5674 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3225 @@ -78567,8 +78235,6 @@ entities: - type: Transform pos: -37.5,-10.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3381 @@ -78577,8 +78243,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-15.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3621 @@ -78587,8 +78251,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-18.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4317 @@ -78596,8 +78258,6 @@ entities: - type: Transform pos: -13.5,-17.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5167 @@ -78606,8 +78266,6 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,34.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5413 @@ -78616,8 +78274,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-28.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5477 @@ -78626,8 +78282,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,-25.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5532 @@ -78639,8 +78293,6 @@ entities: - type: DeviceNetwork deviceLists: - 5673 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5559 @@ -78648,8 +78300,6 @@ entities: - type: Transform pos: -12.5,-14.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5561 @@ -78660,8 +78310,6 @@ entities: - type: DeviceNetwork deviceLists: - 5674 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5692 @@ -78669,8 +78317,6 @@ entities: - type: Transform pos: -40.5,-2.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5731 @@ -78678,8 +78324,6 @@ entities: - type: Transform pos: -29.5,-11.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5758 @@ -78687,8 +78331,6 @@ entities: - type: Transform pos: -4.5,-9.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5780 @@ -78696,8 +78338,6 @@ entities: - type: Transform pos: 7.5,-16.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5784 @@ -78706,8 +78346,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,5.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5928 @@ -78716,8 +78354,6 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,15.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5962 @@ -78729,8 +78365,6 @@ entities: - type: DeviceNetwork deviceLists: - 19843 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6021 @@ -78738,8 +78372,6 @@ entities: - type: Transform pos: 11.5,9.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6029 @@ -78748,8 +78380,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,5.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6050 @@ -78758,8 +78388,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,8.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6093 @@ -78768,8 +78396,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,11.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6106 @@ -78778,8 +78404,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,22.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6125 @@ -78788,8 +78412,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,36.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6227 @@ -78798,8 +78420,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,12.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6323 @@ -78807,8 +78427,6 @@ entities: - type: Transform pos: -10.5,31.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6340 @@ -78816,8 +78434,6 @@ entities: - type: Transform pos: -3.5,7.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6370 @@ -78826,8 +78442,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,13.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6399 @@ -78836,8 +78450,6 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,18.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6515 @@ -78846,8 +78458,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-29.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6543 @@ -78856,8 +78466,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-37.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6590 @@ -78866,8 +78474,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-25.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6623 @@ -78876,8 +78482,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-17.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6624 @@ -78886,8 +78490,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-13.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6651 @@ -78896,8 +78498,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-7.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6664 @@ -78906,8 +78506,6 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-3.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6700 @@ -78916,8 +78514,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,2.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6777 @@ -78926,8 +78522,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,15.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6793 @@ -78936,8 +78530,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,14.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6847 @@ -78946,8 +78538,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,6.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6876 @@ -78955,8 +78545,6 @@ entities: - type: Transform pos: -28.5,29.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6990 @@ -78965,8 +78553,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,52.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7126 @@ -78978,8 +78564,6 @@ entities: - type: DeviceNetwork deviceLists: - 5674 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7128 @@ -78988,8 +78572,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-9.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7142 @@ -78997,8 +78579,6 @@ entities: - type: Transform pos: 9.5,23.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7146 @@ -79006,8 +78586,6 @@ entities: - type: Transform pos: 6.5,21.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7170 @@ -79016,8 +78594,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,25.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7200 @@ -79026,8 +78602,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,31.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7201 @@ -79036,8 +78610,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,28.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7246 @@ -79046,8 +78618,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,36.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7247 @@ -79056,8 +78626,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,41.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7281 @@ -79066,8 +78634,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,30.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7282 @@ -79076,8 +78642,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,33.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7283 @@ -79086,8 +78650,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,36.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7422 @@ -79096,8 +78658,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,62.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7446 @@ -79106,8 +78666,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,71.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7493 @@ -79116,8 +78674,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,74.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7497 @@ -79125,8 +78681,6 @@ entities: - type: Transform pos: -14.5,78.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7502 @@ -79135,8 +78689,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,69.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8830 @@ -79145,8 +78697,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,45.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8835 @@ -79155,8 +78705,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,39.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8853 @@ -79164,8 +78712,6 @@ entities: - type: Transform pos: 8.5,47.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 9204 @@ -79174,8 +78720,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-18.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10426 @@ -79184,8 +78728,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-35.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10694 @@ -79196,8 +78738,6 @@ entities: - type: DeviceNetwork deviceLists: - 5673 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10724 @@ -79206,8 +78746,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,66.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10725 @@ -79216,8 +78754,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,61.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10726 @@ -79225,8 +78761,6 @@ entities: - type: Transform pos: -9.5,54.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10727 @@ -79235,8 +78769,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,47.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10728 @@ -79244,8 +78776,6 @@ entities: - type: Transform pos: -2.5,40.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10729 @@ -79254,8 +78784,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,38.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10730 @@ -79263,8 +78791,6 @@ entities: - type: Transform pos: 7.5,44.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10731 @@ -79273,8 +78799,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,34.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10732 @@ -79283,8 +78807,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,42.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10735 @@ -79293,8 +78815,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,25.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10736 @@ -79302,8 +78822,6 @@ entities: - type: Transform pos: 10.5,18.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10737 @@ -79312,8 +78830,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,11.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10739 @@ -79321,8 +78837,6 @@ entities: - type: Transform pos: 0.5,18.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10740 @@ -79331,8 +78845,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,23.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10742 @@ -79341,8 +78853,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,0.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10743 @@ -79351,8 +78861,6 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-19.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10744 @@ -79361,8 +78869,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-33.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10747 @@ -79371,8 +78877,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-16.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10753 @@ -79381,8 +78885,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-5.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10755 @@ -79391,8 +78893,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,-9.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10757 @@ -79400,8 +78900,6 @@ entities: - type: Transform pos: -16.5,8.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10758 @@ -79409,8 +78907,6 @@ entities: - type: Transform pos: -7.5,2.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10759 @@ -79418,8 +78914,6 @@ entities: - type: Transform pos: -16.5,2.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10760 @@ -79428,8 +78922,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,16.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10762 @@ -79438,8 +78930,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,24.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10763 @@ -79448,8 +78938,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,17.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10764 @@ -79458,8 +78946,6 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,7.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10765 @@ -79467,8 +78953,6 @@ entities: - type: Transform pos: -34.5,2.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10766 @@ -79477,8 +78961,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,10.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10767 @@ -79487,8 +78969,6 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,26.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10768 @@ -79497,8 +78977,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,26.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10769 @@ -79506,8 +78984,6 @@ entities: - type: Transform pos: -30.5,34.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10772 @@ -79516,8 +78992,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,26.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10774 @@ -79526,8 +79000,6 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,39.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10775 @@ -79536,8 +79008,6 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,51.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11022 @@ -79546,8 +79016,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-47.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11809 @@ -79559,8 +79027,6 @@ entities: - type: DeviceNetwork deviceLists: - 460 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11815 @@ -79572,8 +79038,6 @@ entities: - type: DeviceNetwork deviceLists: - 460 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 12596 @@ -79582,8 +79046,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,42.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13136 @@ -79592,8 +79054,6 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,-36.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13137 @@ -79601,8 +79061,6 @@ entities: - type: Transform pos: -36.5,-30.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13145 @@ -79611,8 +79069,6 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-47.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13149 @@ -79621,8 +79077,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,-46.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14107 @@ -79631,8 +79085,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,65.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14222 @@ -79641,8 +79093,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,37.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14246 @@ -79650,8 +79100,6 @@ entities: - type: Transform pos: -45.5,42.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14250 @@ -79659,8 +79107,6 @@ entities: - type: Transform pos: -42.5,41.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14254 @@ -79669,8 +79115,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,38.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14261 @@ -79679,8 +79123,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,29.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14271 @@ -79689,8 +79131,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,26.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14280 @@ -79699,8 +79139,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,23.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14294 @@ -79709,8 +79147,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,11.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14295 @@ -79719,8 +79155,6 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,11.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14302 @@ -79732,8 +79166,6 @@ entities: - type: DeviceNetwork deviceLists: - 17273 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14313 @@ -79741,8 +79173,6 @@ entities: - type: Transform pos: -36.5,41.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14580 @@ -79753,8 +79183,6 @@ entities: - type: DeviceNetwork deviceLists: - 17130 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14634 @@ -79763,8 +79191,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,47.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14636 @@ -79772,8 +79198,6 @@ entities: - type: Transform pos: 15.5,51.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15328 @@ -79781,8 +79205,6 @@ entities: - type: Transform pos: -18.5,43.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15334 @@ -79790,8 +79212,6 @@ entities: - type: Transform pos: -12.5,38.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15360 @@ -79800,8 +79220,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,45.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15361 @@ -79810,8 +79228,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,41.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15382 @@ -79819,8 +79235,6 @@ entities: - type: Transform pos: -17.5,49.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15421 @@ -79828,8 +79242,6 @@ entities: - type: Transform pos: -22.5,50.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15422 @@ -79838,8 +79250,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,46.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15424 @@ -79847,8 +79257,6 @@ entities: - type: Transform pos: -7.5,43.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15530 @@ -79857,8 +79265,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-50.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15551 @@ -79867,8 +79273,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-48.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15562 @@ -79877,8 +79281,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-47.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15630 @@ -79887,8 +79289,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-33.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15632 @@ -79896,8 +79296,6 @@ entities: - type: Transform pos: -13.5,-26.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15648 @@ -79906,8 +79304,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-28.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15658 @@ -79916,8 +79312,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-39.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15674 @@ -79926,8 +79320,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-40.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15705 @@ -79936,8 +79328,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-34.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15707 @@ -79946,8 +79336,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-29.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15711 @@ -79956,8 +79344,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-28.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15730 @@ -79966,8 +79352,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-39.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15757 @@ -79976,8 +79360,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-46.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15779 @@ -79986,8 +79368,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-41.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15798 @@ -79995,8 +79375,6 @@ entities: - type: Transform pos: -29.5,61.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15950 @@ -80005,8 +79383,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-20.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 16455 @@ -80015,8 +79391,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,55.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 16575 @@ -80025,23 +79399,17 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-60.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 16576 components: - type: Transform pos: 12.5,-57.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 16656 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-6.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 16842 @@ -80050,8 +79418,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-43.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 17324 @@ -80060,8 +79426,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,22.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18716 @@ -80070,8 +79434,6 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,74.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18717 @@ -80080,8 +79442,6 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,74.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18721 @@ -80090,8 +79450,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,64.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18750 @@ -80099,8 +79457,6 @@ entities: - type: Transform pos: -49.5,64.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18752 @@ -80108,8 +79464,6 @@ entities: - type: Transform pos: -53.5,68.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18766 @@ -80118,8 +79472,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,57.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18838 @@ -80128,8 +79480,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,45.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18839 @@ -80137,8 +79487,6 @@ entities: - type: Transform pos: 38.5,48.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18840 @@ -80147,8 +79495,6 @@ entities: rot: 3.141592653589793 rad pos: 38.5,43.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18841 @@ -80157,8 +79503,6 @@ entities: rot: 3.141592653589793 rad pos: 40.5,43.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18842 @@ -80167,8 +79511,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,45.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18843 @@ -80176,8 +79518,6 @@ entities: - type: Transform pos: 42.5,48.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18844 @@ -80185,8 +79525,6 @@ entities: - type: Transform pos: 47.5,47.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18858 @@ -80195,8 +79533,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,41.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18859 @@ -80204,8 +79540,6 @@ entities: - type: Transform pos: 25.5,52.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18860 @@ -80213,8 +79547,6 @@ entities: - type: Transform pos: 32.5,52.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18946 @@ -80223,8 +79555,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,39.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19072 @@ -80233,8 +79563,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,38.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19196 @@ -80242,8 +79570,6 @@ entities: - type: Transform pos: -28.5,66.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19233 @@ -80252,8 +79578,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,57.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19335 @@ -80262,8 +79586,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,21.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19338 @@ -80272,8 +79594,6 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,22.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19384 @@ -80282,8 +79602,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,42.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19385 @@ -80292,8 +79610,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,37.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19693 @@ -80302,8 +79618,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-49.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19694 @@ -80312,8 +79626,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-49.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19733 @@ -80322,8 +79634,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,66.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19734 @@ -80331,8 +79641,6 @@ entities: - type: Transform pos: -44.5,72.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19850 @@ -80344,8 +79652,6 @@ entities: - type: DeviceNetwork deviceLists: - 19857 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 20478 @@ -80354,8 +79660,6 @@ entities: rot: 1.5707963267948966 rad pos: -69.5,76.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 20479 @@ -80363,8 +79667,6 @@ entities: - type: Transform pos: -65.5,79.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 20480 @@ -80373,8 +79675,6 @@ entities: rot: 3.141592653589793 rad pos: -65.5,73.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 20491 @@ -80382,8 +79682,6 @@ entities: - type: Transform pos: -62.5,77.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 20786 @@ -80394,8 +79692,6 @@ entities: - type: DeviceNetwork deviceLists: - 20785 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 20787 @@ -80407,8 +79703,6 @@ entities: - type: DeviceNetwork deviceLists: - 20785 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - uid: 20788 @@ -80420,8 +79714,6 @@ entities: - type: DeviceNetwork deviceLists: - 20785 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber @@ -80432,8 +79724,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,25.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 1368 @@ -80441,8 +79731,6 @@ entities: - type: Transform pos: -11.5,53.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 2006 @@ -80451,8 +79739,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-19.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 2966 @@ -80464,8 +79750,6 @@ entities: - type: DeviceNetwork deviceLists: - 20785 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 3131 @@ -80474,8 +79758,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,7.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 3237 @@ -80483,8 +79765,6 @@ entities: - type: Transform pos: -31.5,-12.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 3242 @@ -80496,8 +79776,6 @@ entities: - type: DeviceNetwork deviceLists: - 460 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 3371 @@ -80506,8 +79784,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-15.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 3383 @@ -80519,8 +79795,6 @@ entities: - type: DeviceNetwork deviceLists: - 19843 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 4327 @@ -80532,8 +79806,6 @@ entities: - type: DeviceNetwork deviceLists: - 19842 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 4368 @@ -80545,8 +79817,6 @@ entities: - type: DeviceNetwork deviceLists: - 5673 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5100 @@ -80555,8 +79825,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,-19.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5256 @@ -80565,8 +79833,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-10.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5397 @@ -80574,8 +79840,6 @@ entities: - type: Transform pos: -22.5,-24.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5414 @@ -80584,8 +79848,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-28.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5478 @@ -80594,8 +79856,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,-23.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5496 @@ -80604,8 +79864,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-15.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5513 @@ -80614,8 +79872,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-7.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5527 @@ -80624,8 +79880,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-15.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5560 @@ -80634,8 +79888,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-19.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5580 @@ -80647,8 +79899,6 @@ entities: - type: DeviceNetwork deviceLists: - 19842 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5611 @@ -80660,8 +79910,6 @@ entities: - type: DeviceNetwork deviceLists: - 19842 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5633 @@ -80670,8 +79918,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-8.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5659 @@ -80679,8 +79925,6 @@ entities: - type: Transform pos: -41.5,-8.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5709 @@ -80691,8 +79935,6 @@ entities: - type: DeviceNetwork deviceLists: - 5674 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5720 @@ -80703,8 +79945,6 @@ entities: - type: DeviceNetwork deviceLists: - 5674 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5725 @@ -80712,8 +79952,6 @@ entities: - type: Transform pos: -41.5,-2.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5730 @@ -80721,8 +79959,6 @@ entities: - type: Transform pos: -28.5,-10.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5830 @@ -80731,8 +79967,6 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,0.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5896 @@ -80741,8 +79975,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,7.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5899 @@ -80750,8 +79982,6 @@ entities: - type: Transform pos: -26.5,11.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5904 @@ -80760,8 +79990,6 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,11.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5913 @@ -80769,8 +79997,6 @@ entities: - type: Transform pos: -28.5,10.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 5927 @@ -80779,8 +80005,6 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,14.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6046 @@ -80789,8 +80013,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,7.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6056 @@ -80799,8 +80021,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,6.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6091 @@ -80809,8 +80029,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,16.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6092 @@ -80819,8 +80037,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,13.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6129 @@ -80829,8 +80045,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,46.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6219 @@ -80839,8 +80053,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,36.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6220 @@ -80849,8 +80061,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,20.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6226 @@ -80859,8 +80069,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6266 @@ -80869,8 +80077,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,34.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6296 @@ -80878,8 +80084,6 @@ entities: - type: Transform pos: -3.5,25.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6297 @@ -80888,8 +80092,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,24.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6298 @@ -80898,8 +80100,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,14.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6308 @@ -80908,8 +80108,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,10.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6320 @@ -80918,8 +80116,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,30.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6338 @@ -80928,8 +80124,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,8.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6341 @@ -80938,8 +80132,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,10.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6395 @@ -80948,8 +80140,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,19.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6402 @@ -80958,8 +80148,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,28.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6541 @@ -80968,8 +80156,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-35.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6542 @@ -80978,8 +80164,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-35.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6588 @@ -80988,8 +80172,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-17.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6589 @@ -80998,8 +80180,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-23.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6622 @@ -81008,8 +80188,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-16.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6649 @@ -81018,8 +80196,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-12.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6650 @@ -81028,8 +80204,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-6.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6676 @@ -81038,8 +80212,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,2.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6726 @@ -81048,8 +80220,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,3.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6727 @@ -81058,8 +80228,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,1.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6778 @@ -81068,8 +80236,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,12.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6783 @@ -81078,8 +80244,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,12.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6784 @@ -81088,8 +80252,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,11.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6809 @@ -81098,8 +80260,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,21.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6827 @@ -81107,8 +80267,6 @@ entities: - type: Transform pos: 17.5,31.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6828 @@ -81117,8 +80275,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,28.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6829 @@ -81127,8 +80283,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,25.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6840 @@ -81136,8 +80290,6 @@ entities: - type: Transform pos: 10.5,21.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6846 @@ -81146,8 +80298,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,7.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6894 @@ -81156,8 +80306,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,29.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6897 @@ -81165,8 +80313,6 @@ entities: - type: Transform pos: -25.5,36.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6901 @@ -81175,8 +80321,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,18.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6912 @@ -81185,8 +80329,6 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,26.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 6918 @@ -81194,8 +80336,6 @@ entities: - type: Transform pos: -30.5,32.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7057 @@ -81204,8 +80344,6 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,53.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7086 @@ -81214,8 +80352,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,29.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7087 @@ -81224,8 +80360,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,38.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7088 @@ -81234,8 +80368,6 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,44.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7107 @@ -81244,8 +80376,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-8.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7113 @@ -81254,8 +80384,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-12.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7123 @@ -81264,8 +80392,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,5.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7136 @@ -81273,8 +80399,6 @@ entities: - type: Transform pos: 8.5,19.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7150 @@ -81282,8 +80406,6 @@ entities: - type: Transform pos: 5.5,22.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7222 @@ -81292,8 +80414,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,40.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7223 @@ -81302,8 +80422,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,35.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7294 @@ -81312,8 +80430,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,32.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7295 @@ -81322,8 +80438,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,29.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7296 @@ -81332,8 +80446,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,35.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7297 @@ -81341,8 +80453,6 @@ entities: - type: Transform pos: 2.5,39.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7345 @@ -81351,8 +80461,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,37.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7417 @@ -81361,8 +80469,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,59.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7423 @@ -81371,8 +80477,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,58.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7450 @@ -81380,8 +80484,6 @@ entities: - type: Transform pos: -20.5,67.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7452 @@ -81389,8 +80491,6 @@ entities: - type: Transform pos: -16.5,68.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7482 @@ -81399,8 +80499,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,76.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 7483 @@ -81409,8 +80507,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,70.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 8831 @@ -81419,8 +80515,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,42.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 8832 @@ -81428,8 +80522,6 @@ entities: - type: Transform pos: 16.5,48.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 8834 @@ -81437,8 +80529,6 @@ entities: - type: Transform pos: 14.5,40.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 8839 @@ -81447,8 +80537,6 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,44.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 8854 @@ -81456,8 +80544,6 @@ entities: - type: Transform pos: 6.5,47.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 8855 @@ -81466,8 +80552,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,43.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 10642 @@ -81476,8 +80560,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-33.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 10671 @@ -81485,8 +80567,6 @@ entities: - type: Transform pos: 10.5,-27.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 10808 @@ -81498,8 +80578,6 @@ entities: - type: DeviceNetwork deviceLists: - 5673 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 11598 @@ -81511,8 +80589,6 @@ entities: - type: DeviceNetwork deviceLists: - 17197 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 11805 @@ -81524,8 +80600,6 @@ entities: - type: DeviceNetwork deviceLists: - 460 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 12485 @@ -81533,8 +80607,6 @@ entities: - type: Transform pos: -5.5,76.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 12555 @@ -81543,8 +80615,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-46.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 12587 @@ -81553,8 +80623,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-17.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 12609 @@ -81563,8 +80631,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,43.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 12698 @@ -81576,8 +80642,6 @@ entities: - type: DeviceNetwork deviceLists: - 5674 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 12919 @@ -81588,8 +80652,6 @@ entities: - type: DeviceNetwork deviceLists: - 17214 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 12937 @@ -81598,8 +80660,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,-48.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 13144 @@ -81608,8 +80668,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-44.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 13146 @@ -81618,8 +80676,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,-36.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 13385 @@ -81628,8 +80684,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-31.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 13948 @@ -81638,8 +80692,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-28.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 13970 @@ -81650,8 +80702,6 @@ entities: - type: DeviceNetwork deviceLists: - 17249 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 14221 @@ -81660,8 +80710,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,38.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 14230 @@ -81670,8 +80718,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,41.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 14232 @@ -81680,8 +80726,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,41.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 14233 @@ -81690,8 +80734,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,38.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 14236 @@ -81700,8 +80742,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,39.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 14262 @@ -81710,8 +80750,6 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,30.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 14270 @@ -81720,8 +80758,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,27.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 14279 @@ -81730,8 +80766,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,24.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 14296 @@ -81740,8 +80774,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,10.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 14297 @@ -81750,8 +80782,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,12.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 14301 @@ -81763,8 +80793,6 @@ entities: - type: DeviceNetwork deviceLists: - 17273 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 14520 @@ -81776,8 +80804,6 @@ entities: - type: DeviceNetwork deviceLists: - 17130 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 14635 @@ -81785,8 +80811,6 @@ entities: - type: Transform pos: 17.5,51.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15274 @@ -81795,8 +80819,6 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,43.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15358 @@ -81805,8 +80827,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,44.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15362 @@ -81815,8 +80835,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,43.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15373 @@ -81825,8 +80843,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,48.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15387 @@ -81834,8 +80850,6 @@ entities: - type: Transform pos: -18.5,50.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15416 @@ -81844,8 +80858,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,45.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15420 @@ -81853,8 +80865,6 @@ entities: - type: Transform pos: -23.5,49.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15423 @@ -81862,8 +80872,6 @@ entities: - type: Transform pos: -6.5,44.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15532 @@ -81872,8 +80880,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-50.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15550 @@ -81881,8 +80887,6 @@ entities: - type: Transform pos: -14.5,-47.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15561 @@ -81891,8 +80895,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-48.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15620 @@ -81901,8 +80903,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-24.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15621 @@ -81911,8 +80911,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-25.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15631 @@ -81921,8 +80919,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-32.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15657 @@ -81931,8 +80927,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-38.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15673 @@ -81941,8 +80935,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-42.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15715 @@ -81951,8 +80943,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-30.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15716 @@ -81961,8 +80951,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-33.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15726 @@ -81971,8 +80959,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-39.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15756 @@ -81981,8 +80967,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-45.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 15848 @@ -81990,8 +80974,6 @@ entities: - type: Transform pos: -42.5,62.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 16449 @@ -82000,8 +80982,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,55.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 16577 @@ -82010,24 +80990,18 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,-59.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 16578 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-58.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 16657 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-4.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 16841 @@ -82036,8 +81010,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-44.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 16998 @@ -82046,8 +81018,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,42.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 17325 @@ -82055,8 +81025,6 @@ entities: - type: Transform pos: -13.5,49.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18718 @@ -82065,8 +81033,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,70.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18719 @@ -82075,8 +81041,6 @@ entities: rot: 3.141592653589793 rad pos: -40.5,70.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18720 @@ -82085,8 +81049,6 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,64.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18753 @@ -82094,8 +81056,6 @@ entities: - type: Transform pos: -53.5,64.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18754 @@ -82104,8 +81064,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,64.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18755 @@ -82114,8 +81072,6 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,65.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18756 @@ -82124,8 +81080,6 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,67.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18767 @@ -82134,8 +81088,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,55.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18845 @@ -82143,8 +81095,6 @@ entities: - type: Transform pos: 44.5,46.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18846 @@ -82153,8 +81103,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,45.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18848 @@ -82162,8 +81110,6 @@ entities: - type: Transform pos: 41.5,48.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18849 @@ -82172,8 +81118,6 @@ entities: rot: 3.141592653589793 rad pos: 41.5,43.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18850 @@ -82181,8 +81125,6 @@ entities: - type: Transform pos: 39.5,48.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18851 @@ -82191,8 +81133,6 @@ entities: rot: 3.141592653589793 rad pos: 37.5,43.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18854 @@ -82200,8 +81140,6 @@ entities: - type: Transform pos: 33.5,50.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18855 @@ -82210,8 +81148,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,50.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18856 @@ -82220,8 +81156,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,39.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 18857 @@ -82230,8 +81164,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,41.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 19197 @@ -82239,8 +81171,6 @@ entities: - type: Transform pos: -27.5,64.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 19198 @@ -82249,8 +81179,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,62.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 19234 @@ -82258,8 +81186,6 @@ entities: - type: Transform pos: -30.5,57.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 19241 @@ -82268,8 +81194,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,34.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 19336 @@ -82277,8 +81201,6 @@ entities: - type: Transform pos: 16.5,23.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 19337 @@ -82287,8 +81209,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,20.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 19382 @@ -82297,8 +81217,6 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,43.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 19383 @@ -82307,8 +81225,6 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,37.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 19690 @@ -82317,8 +81233,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-44.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 19691 @@ -82327,8 +81241,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-51.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 19692 @@ -82337,8 +81249,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-52.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 19735 @@ -82346,8 +81256,6 @@ entities: - type: Transform pos: -45.5,77.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - uid: 19851 @@ -82359,8 +81267,6 @@ entities: - type: DeviceNetwork deviceLists: - 19857 - - type: AtmosDevice - joinedGrid: 100 - type: AtmosPipeColor color: '#990000FF' - proto: GasVolumePump @@ -82373,8 +81279,6 @@ entities: parent: 100 - type: GasVolumePump transferRate: 40 - - type: AtmosDevice - joinedGrid: 100 - uid: 1432 components: - type: Transform @@ -82383,8 +81287,6 @@ entities: parent: 100 - type: GasVolumePump transferRate: 40 - - type: AtmosDevice - joinedGrid: 100 - uid: 4771 components: - type: Transform @@ -82393,8 +81295,6 @@ entities: parent: 100 - type: GasVolumePump transferRate: 40 - - type: AtmosDevice - joinedGrid: 100 - uid: 4772 components: - type: Transform @@ -82403,8 +81303,6 @@ entities: parent: 100 - type: GasVolumePump transferRate: 40 - - type: AtmosDevice - joinedGrid: 100 - uid: 4868 components: - type: Transform @@ -82413,15 +81311,11 @@ entities: parent: 100 - type: GasVolumePump transferRate: 40 - - type: AtmosDevice - joinedGrid: 100 - uid: 19989 components: - type: Transform pos: -7.5,-63.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - proto: Gauze1 entities: - uid: 15497 @@ -89317,82 +88211,60 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-68.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 1545 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-71.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 4026 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-67.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 4875 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-69.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 4876 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-70.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 19906 components: - type: Transform pos: -24.5,-55.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 19907 components: - type: Transform pos: -24.5,-56.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 19908 components: - type: Transform pos: -24.5,-57.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 19909 components: - type: Transform pos: -22.5,-57.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 19910 components: - type: Transform pos: -22.5,-56.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 19911 components: - type: Transform pos: -22.5,-55.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - proto: HighSecCommandLocked entities: - uid: 1467 @@ -90784,7 +89656,7 @@ entities: - type: Transform pos: 7.5,38.5 parent: 100 -- proto: LogicGate +- proto: LogicGateOr entities: - uid: 11812 components: @@ -91173,6 +90045,13 @@ entities: - type: Transform pos: 25.702765,8.09902 parent: 100 +- proto: MaterialSilo + entities: + - uid: 20171 + components: + - type: Transform + pos: -65.5,81.5 + parent: 100 - proto: MaterialWoodPlank1 entities: - uid: 96 @@ -91850,15 +90729,11 @@ entities: - type: Transform pos: -6.5,-52.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 20742 components: - type: Transform pos: -42.5,-21.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - proto: NitrogenTankFilled entities: - uid: 992 @@ -91941,7 +90816,6 @@ entities: solutions: tank: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -91968,7 +90842,7 @@ entities: - type: Transform pos: -7.5,-1.5 parent: 100 -- proto: Oracle +- proto: OracleSpawner entities: - uid: 87 components: @@ -92003,162 +90877,116 @@ entities: - type: Transform pos: 23.5,15.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 1398 components: - type: Transform pos: 23.5,12.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 2746 components: - type: Transform pos: -40.5,-18.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 2998 components: - type: Transform pos: -52.5,-0.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 3406 components: - type: Transform pos: -41.5,-30.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 8728 components: - type: Transform pos: 22.5,36.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 9412 components: - type: Transform pos: -23.5,29.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 12036 components: - type: Transform pos: -51.5,32.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 12554 components: - type: Transform pos: 27.5,26.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 12557 components: - type: Transform pos: 3.5,7.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 12558 components: - type: Transform pos: 11.5,-11.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 12561 components: - type: Transform pos: -22.5,7.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 13369 components: - type: Transform pos: -52.5,15.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 13370 components: - type: Transform pos: -53.5,38.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 13658 components: - type: Transform pos: -6.5,-54.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 15982 components: - type: Transform pos: -16.5,-66.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 16681 components: - type: Transform pos: 34.5,-9.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 17511 components: - type: Transform pos: 3.5,-69.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 17512 components: - type: Transform pos: 4.5,-69.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 19149 components: - type: Transform pos: -26.5,-41.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 19275 components: - type: Transform pos: 23.5,2.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 19444 components: - type: Transform pos: 49.5,39.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 19497 components: - type: Transform pos: -55.5,44.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - proto: PaintingCafeTerraceAtNight entities: - uid: 16748 @@ -92916,7 +91744,6 @@ entities: - type: Physics canCollide: False - type: Label - originalName: pill canister currentLabel: space drugs - type: InsideEntityStorage - proto: PillCanisterTricordrazine @@ -92974,29 +91801,21 @@ entities: - type: Transform pos: -6.5,-56.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 14371 components: - type: Transform pos: -15.5,-66.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 20048 components: - type: Transform pos: -9.5,-64.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 20049 components: - type: Transform pos: -8.5,-61.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 1977 @@ -93075,6 +91894,13 @@ entities: - type: Transform pos: -59.5,-6.5 parent: 100 +- proto: PlayerStationAi + entities: + - uid: 5268 + components: + - type: Transform + pos: -71.5,76.5 + parent: 100 - proto: PlushieAtmosian entities: - uid: 20750 @@ -109006,13 +107832,6 @@ entities: - type: Transform pos: 9.5,46.5 parent: 100 -- proto: SignCourt - entities: - - uid: 13999 - components: - - type: Transform - pos: 2.5,21.5 - parent: 100 - proto: SignDanger entities: - uid: 12648 @@ -109324,7 +108143,7 @@ entities: - type: Transform pos: 19.5,3.5 parent: 100 -- proto: SignHydro2 +- proto: SignHydro1 entities: - uid: 11917 components: @@ -109352,6 +108171,11 @@ entities: - type: Transform pos: 11.5,20.5 parent: 100 + - uid: 13999 + components: + - type: Transform + pos: 2.5,21.5 + parent: 100 - proto: SignLibrary entities: - uid: 11919 @@ -109378,14 +108202,6 @@ entities: - type: Transform pos: -18.5,-30.5 parent: 100 -- proto: SignMinerDock - entities: - - uid: 9166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-17.5 - parent: 100 - proto: SignMorgue entities: - uid: 15269 @@ -109424,7 +108240,7 @@ entities: - type: Transform pos: -17.5,-2.5 parent: 100 -- proto: SignScience1 +- proto: SignScience entities: - uid: 520 components: @@ -109440,6 +108256,12 @@ entities: parent: 100 - proto: SignShipDock entities: + - uid: 9166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-17.5 + parent: 100 - uid: 11915 components: - type: Transform @@ -109677,7 +108499,7 @@ entities: rot: -1.5707963267948966 rad pos: -22.45732,67.636955 parent: 100 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 710 components: @@ -110812,7 +109634,7 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,44.5 parent: 100 -- proto: SophicScribe +- proto: SophicScribeSpawner entities: - uid: 50 components: @@ -110973,6 +109795,23 @@ entities: - type: Transform pos: 7.5,47.5 parent: 100 +- proto: SpawnPointAdminAssistant + entities: + - uid: 20895 + components: + - type: Transform + pos: -11.5,61.5 + parent: 100 + - uid: 20896 + components: + - type: Transform + pos: -11.5,59.5 + parent: 100 + - uid: 20897 + components: + - type: Transform + pos: -11.5,57.5 + parent: 100 - proto: SpawnPointAtmos entities: - uid: 16151 @@ -111022,6 +109861,13 @@ entities: - type: Transform pos: 4.5,9.5 parent: 100 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 20898 + components: + - type: Transform + pos: -9.5,62.5 + parent: 100 - proto: SpawnPointBorg entities: - uid: 3391 @@ -111511,6 +110357,13 @@ entities: - type: Transform pos: -10.5,7.5 parent: 100 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 20899 + components: + - type: Transform + pos: -8.5,60.5 + parent: 100 - proto: SpawnPointObserver entities: - uid: 16004 @@ -112238,22 +111091,16 @@ entities: - type: Transform pos: -6.5,-58.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 15980 components: - type: Transform pos: -18.5,-66.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - uid: 15981 components: - type: Transform pos: -17.5,-66.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - proto: Stunbaton entities: - uid: 14029 @@ -112656,6 +111503,45 @@ entities: - SurveillanceCameraCommand nameSet: True id: Circuit Board Room + - uid: 20809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,79.5 + parent: 100 + - uid: 20810 + components: + - type: Transform + pos: -71.5,73.5 + parent: 100 + - uid: 20817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,82.5 + parent: 100 + - uid: 20822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,79.5 + parent: 100 + - uid: 20823 + components: + - type: Transform + pos: -16.5,81.5 + parent: 100 + - uid: 20827 + components: + - type: Transform + pos: -4.5,81.5 + parent: 100 + - uid: 20830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,68.5 + parent: 100 - proto: SurveillanceCameraEngineering entities: - uid: 4735 @@ -112999,6 +111885,137 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Disposals + - uid: 20842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,15.5 + parent: 100 + - uid: 20843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 100 + - uid: 20853 + components: + - type: Transform + pos: -10.5,1.5 + parent: 100 + - uid: 20857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 100 + - uid: 20858 + components: + - type: Transform + pos: -8.5,17.5 + parent: 100 + - uid: 20859 + components: + - type: Transform + pos: 0.5,17.5 + parent: 100 + - uid: 20864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,27.5 + parent: 100 + - uid: 20867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,22.5 + parent: 100 + - uid: 20868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,31.5 + parent: 100 + - uid: 20873 + components: + - type: Transform + pos: -26.5,52.5 + parent: 100 + - uid: 20874 + components: + - type: Transform + pos: -37.5,48.5 + parent: 100 + - uid: 20875 + components: + - type: Transform + pos: -40.5,18.5 + parent: 100 + - uid: 20876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,11.5 + parent: 100 + - uid: 20877 + components: + - type: Transform + pos: -34.5,0.5 + parent: 100 + - uid: 20878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,7.5 + parent: 100 + - uid: 20881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-33.5 + parent: 100 + - uid: 20882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-33.5 + parent: 100 + - uid: 20885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-50.5 + parent: 100 + - uid: 20886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-46.5 + parent: 100 + - uid: 20887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-46.5 + parent: 100 + - uid: 20888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-23.5 + parent: 100 + - uid: 20893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-36.5 + parent: 100 + - uid: 20894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-35.5 + parent: 100 - proto: SurveillanceCameraMedical entities: - uid: 1134 @@ -113055,6 +112072,30 @@ entities: - SurveillanceCameraMedical nameSet: True id: Psych Ward + - uid: 20869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,35.5 + parent: 100 + - uid: 20870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,41.5 + parent: 100 + - uid: 20871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,44.5 + parent: 100 + - uid: 20872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,44.5 + parent: 100 - proto: SurveillanceCameraRouterCommand entities: - uid: 20359 @@ -113175,6 +112216,29 @@ entities: - SurveillanceCameraScience nameSet: True id: Anomaly Lab + - uid: 20844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 100 + - uid: 20889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-14.5 + parent: 100 + - uid: 20890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 100 + - uid: 20891 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 100 - proto: SurveillanceCameraSecurity entities: - uid: 173 @@ -113285,6 +112349,38 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Perma Lobby + - uid: 20831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,34.5 + parent: 100 + - uid: 20832 + components: + - type: Transform + pos: 4.5,32.5 + parent: 100 + - uid: 20833 + components: + - type: Transform + pos: 16.5,39.5 + parent: 100 + - uid: 20834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,45.5 + parent: 100 + - uid: 20835 + components: + - type: Transform + pos: 14.5,57.5 + parent: 100 + - uid: 20841 + components: + - type: Transform + pos: 19.5,34.5 + parent: 100 - proto: SurveillanceCameraService entities: - uid: 14872 @@ -113394,6 +112490,17 @@ entities: - SurveillanceCameraSupply nameSet: True id: LO's Room + - uid: 20879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-1.5 + parent: 100 + - uid: 20880 + components: + - type: Transform + pos: -61.5,-3.5 + parent: 100 - proto: SurveillanceCameraWirelessRouterEntertainment entities: - uid: 20362 @@ -116039,8 +115146,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-62.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - proto: TegCirculator entities: - uid: 19926 @@ -116499,13 +115604,6 @@ entities: - type: Transform pos: 27.001705,36.140816 parent: 100 -- proto: ToyAi - entities: - - uid: 20171 - components: - - type: Transform - pos: -71.51892,76.56057 - parent: 100 - proto: ToyFigurineDetective entities: - uid: 16793 @@ -132382,8 +131480,6 @@ entities: - type: Transform pos: -13.5,-66.5 parent: 100 - - type: AtmosDevice - joinedGrid: 100 - proto: WeaponCapacitorRecharger entities: - uid: 1435 diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index 521bddc646e5f6..5b7af784998625 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -74930,7 +74930,7 @@ entities: pos: -3.5,-52.5 parent: 2 - type: Door - secondsUntilStateChange: -21793.494 + secondsUntilStateChange: -22009.727 state: Closing - uid: 11944 components: @@ -121078,6 +121078,13 @@ entities: - type: Transform pos: -39.5,40.5 parent: 2 +- proto: MaterialSilo + entities: + - uid: 27520 + components: + - type: Transform + pos: 104.5,-13.5 + parent: 2 - proto: MaterialWoodPlank entities: - uid: 18480 @@ -140601,6 +140608,13 @@ entities: - type: Transform pos: 22.5,-13.5 parent: 2 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 27522 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 - proto: SpawnPointBorg entities: - uid: 21646 @@ -140896,6 +140910,13 @@ entities: - type: Transform pos: 39.5,-9.5 parent: 2 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 27521 + components: + - type: Transform + pos: -3.5,3.5 + parent: 2 - proto: SpawnPointObserver entities: - uid: 21695 diff --git a/Resources/Maps/pebble.yml b/Resources/Maps/pebble.yml index 6f38df6c0e1695..81b007c7e9b522 100644 --- a/Resources/Maps/pebble.yml +++ b/Resources/Maps/pebble.yml @@ -68,14 +68,15 @@ entities: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: PhysicsMap + - type: GridTree + - type: MovedGrids - type: Broadphase - type: OccluderTree - type: LoadedMap - - type: GridTree - type: Parallax parallax: PebbleStation - - type: MovedGrids - uid: 2 components: - type: MetaData @@ -5012,8 +5013,6 @@ entities: - 263 - 6857 - 6954 - - type: AtmosDevice - joinedGrid: 2 - uid: 5 components: - type: Transform @@ -5029,8 +5028,6 @@ entities: - 5373 - 6934 - 6838 - - type: AtmosDevice - joinedGrid: 2 - uid: 6 components: - type: Transform @@ -5043,8 +5040,6 @@ entities: - 5274 - 6967 - 6878 - - type: AtmosDevice - joinedGrid: 2 - uid: 7 components: - type: Transform @@ -5058,8 +5053,6 @@ entities: - 5333 - 6860 - 6948 - - type: AtmosDevice - joinedGrid: 2 - uid: 9 components: - type: Transform @@ -5073,8 +5066,6 @@ entities: - 5333 - 6849 - 6939 - - type: AtmosDevice - joinedGrid: 2 - uid: 10 components: - type: Transform @@ -5087,8 +5078,6 @@ entities: - 5332 - 6945 - 6855 - - type: AtmosDevice - joinedGrid: 2 - uid: 11 components: - type: Transform @@ -5101,8 +5090,6 @@ entities: - 5383 - 6938 - 6847 - - type: AtmosDevice - joinedGrid: 2 - uid: 12 components: - type: Transform @@ -5116,8 +5103,6 @@ entities: - 276 - 6854 - 6942 - - type: AtmosDevice - joinedGrid: 2 - uid: 13 components: - type: Transform @@ -5133,8 +5118,6 @@ entities: - 6881 - 5287 - 6988 - - type: AtmosDevice - joinedGrid: 2 - uid: 14 components: - type: Transform @@ -5148,8 +5131,6 @@ entities: - 5381 - 6832 - 6923 - - type: AtmosDevice - joinedGrid: 2 - uid: 15 components: - type: Transform @@ -5161,8 +5142,6 @@ entities: - 259 - 6952 - 6864 - - type: AtmosDevice - joinedGrid: 2 - uid: 16 components: - type: Transform @@ -5175,8 +5154,6 @@ entities: - 260 - 6951 - 6863 - - type: AtmosDevice - joinedGrid: 2 - uid: 17 components: - type: Transform @@ -5189,8 +5166,6 @@ entities: - 5350 - 282 - 6851 - - type: AtmosDevice - joinedGrid: 2 - uid: 18 components: - type: Transform @@ -5203,8 +5178,6 @@ entities: - 5270 - 6850 - 6943 - - type: AtmosDevice - joinedGrid: 2 - uid: 19 components: - type: Transform @@ -5220,8 +5193,6 @@ entities: - 6882 - 6966 - 5359 - - type: AtmosDevice - joinedGrid: 2 - uid: 20 components: - type: Transform @@ -5238,8 +5209,6 @@ entities: - 5288 - 5292 - 5293 - - type: AtmosDevice - joinedGrid: 2 - uid: 21 components: - type: Transform @@ -5260,8 +5229,6 @@ entities: - 6953 - 6989 - 5421 - - type: AtmosDevice - joinedGrid: 2 - uid: 22 components: - type: Transform @@ -5279,8 +5246,6 @@ entities: - 5324 - 6947 - 6859 - - type: AtmosDevice - joinedGrid: 2 - uid: 23 components: - type: Transform @@ -5291,8 +5256,6 @@ entities: devices: - 5283 - 266 - - type: AtmosDevice - joinedGrid: 2 - uid: 24 components: - type: Transform @@ -5302,8 +5265,6 @@ entities: devices: - 268 - 5313 - - type: AtmosDevice - joinedGrid: 2 - uid: 25 components: - type: Transform @@ -5318,8 +5279,6 @@ entities: - 268 - 6308 - 10551 - - type: AtmosDevice - joinedGrid: 2 - uid: 26 components: - type: Transform @@ -5333,8 +5292,6 @@ entities: - 1671 - 10662 - 8413 - - type: AtmosDevice - joinedGrid: 2 - uid: 27 components: - type: Transform @@ -5346,8 +5303,6 @@ entities: - 10576 - 289 - 10734 - - type: AtmosDevice - joinedGrid: 2 - uid: 30 components: - type: Transform @@ -5362,8 +5317,6 @@ entities: - 5331 - 6853 - 6941 - - type: AtmosDevice - joinedGrid: 2 - uid: 31 components: - type: Transform @@ -5384,8 +5337,6 @@ entities: - 6922 - 6879 - 5410 - - type: AtmosDevice - joinedGrid: 2 - uid: 32 components: - type: Transform @@ -5408,8 +5359,6 @@ entities: - 6944 - 6852 - 295 - - type: AtmosDevice - joinedGrid: 2 - uid: 33 components: - type: Transform @@ -5427,8 +5376,6 @@ entities: - 293 - 6960 - 6869 - - type: AtmosDevice - joinedGrid: 2 - uid: 34 components: - type: Transform @@ -5455,8 +5402,6 @@ entities: - 265 - 6833 - 6927 - - type: AtmosDevice - joinedGrid: 2 - uid: 35 components: - type: Transform @@ -5466,8 +5411,6 @@ entities: - type: DeviceList devices: - 6842 - - type: AtmosDevice - joinedGrid: 2 - uid: 36 components: - type: Transform @@ -5484,8 +5427,6 @@ entities: - 6959 - 6958 - 6870 - - type: AtmosDevice - joinedGrid: 2 - uid: 37 components: - type: Transform @@ -5502,8 +5443,6 @@ entities: - 6964 - 6876 - 5406 - - type: AtmosDevice - joinedGrid: 2 - uid: 38 components: - type: Transform @@ -5521,8 +5460,6 @@ entities: - 6856 - 6946 - 6858 - - type: AtmosDevice - joinedGrid: 2 - uid: 41 components: - type: Transform @@ -5541,8 +5478,6 @@ entities: - 5395 - 5396 - 10977 - - type: AtmosDevice - joinedGrid: 2 - uid: 42 components: - type: Transform @@ -5557,8 +5492,6 @@ entities: - 6937 - 5280 - 5404 - - type: AtmosDevice - joinedGrid: 2 - uid: 43 components: - type: Transform @@ -5572,8 +5505,6 @@ entities: - 300 - 6889 - 6972 - - type: AtmosDevice - joinedGrid: 2 - uid: 44 components: - type: Transform @@ -5588,8 +5519,6 @@ entities: - 5400 - 5420 - 5401 - - type: AtmosDevice - joinedGrid: 2 - uid: 45 components: - type: Transform @@ -5604,8 +5533,6 @@ entities: - 6978 - 5364 - 5291 - - type: AtmosDevice - joinedGrid: 2 - uid: 46 components: - type: Transform @@ -5620,8 +5547,6 @@ entities: - 5383 - 6938 - 6847 - - type: AtmosDevice - joinedGrid: 2 - uid: 47 components: - type: Transform @@ -5634,8 +5559,6 @@ entities: - 5319 - 6880 - 6968 - - type: AtmosDevice - joinedGrid: 2 - uid: 48 components: - type: Transform @@ -5651,8 +5574,6 @@ entities: - 303 - 6898 - 6984 - - type: AtmosDevice - joinedGrid: 2 - uid: 49 components: - type: Transform @@ -5670,8 +5591,6 @@ entities: - 5366 - 6837 - 6935 - - type: AtmosDevice - joinedGrid: 2 - uid: 50 components: - type: Transform @@ -5694,8 +5613,6 @@ entities: - 256 - 6926 - 6834 - - type: AtmosDevice - joinedGrid: 2 - uid: 51 components: - type: Transform @@ -5710,8 +5627,6 @@ entities: - 6829 - 6919 - 5283 - - type: AtmosDevice - joinedGrid: 2 - uid: 52 components: - type: Transform @@ -5721,8 +5636,6 @@ entities: - type: DeviceList devices: - 306 - - type: AtmosDevice - joinedGrid: 2 - uid: 53 components: - type: Transform @@ -5735,8 +5648,6 @@ entities: - 5416 - 6874 - 6920 - - type: AtmosDevice - joinedGrid: 2 - uid: 54 components: - type: Transform @@ -5753,8 +5664,6 @@ entities: - 5289 - 5416 - 255 - - type: AtmosDevice - joinedGrid: 2 - uid: 55 components: - type: Transform @@ -5767,8 +5676,6 @@ entities: - 5285 - 5315 - 5316 - - type: AtmosDevice - joinedGrid: 2 - uid: 56 components: - type: Transform @@ -5780,8 +5687,6 @@ entities: - 6973 - 5315 - 5316 - - type: AtmosDevice - joinedGrid: 2 - uid: 57 components: - type: Transform @@ -5790,8 +5695,6 @@ entities: - type: DeviceList devices: - 311 - - type: AtmosDevice - joinedGrid: 2 - uid: 58 components: - type: Transform @@ -5800,8 +5703,6 @@ entities: - type: DeviceList devices: - 308 - - type: AtmosDevice - joinedGrid: 2 - uid: 59 components: - type: Transform @@ -5817,8 +5718,6 @@ entities: - 6910 - 310 - 5423 - - type: AtmosDevice - joinedGrid: 2 - uid: 60 components: - type: Transform @@ -5835,8 +5734,6 @@ entities: - 5427 - 5259 - 5269 - - type: AtmosDevice - joinedGrid: 2 - uid: 61 components: - type: Transform @@ -5860,8 +5757,6 @@ entities: - 5432 - 314 - 315 - - type: AtmosDevice - joinedGrid: 2 - uid: 88 components: - type: Transform @@ -5884,8 +5779,6 @@ entities: - 5307 - 9094 - 10733 - - type: AtmosDevice - joinedGrid: 2 - uid: 5233 components: - type: Transform @@ -5899,8 +5792,6 @@ entities: - 5312 - 252 - 29 - - type: AtmosDevice - joinedGrid: 2 - uid: 5246 components: - type: Transform @@ -5915,8 +5806,6 @@ entities: - 291 - 6340 - 8413 - - type: AtmosDevice - joinedGrid: 2 - uid: 6929 components: - type: Transform @@ -5930,8 +5819,6 @@ entities: - 5245 - 28 - 223 - - type: AtmosDevice - joinedGrid: 2 - uid: 10578 components: - type: Transform @@ -5951,8 +5838,6 @@ entities: - 269 - 9591 - 9590 - - type: AtmosDevice - joinedGrid: 2 - uid: 10622 components: - type: Transform @@ -5967,8 +5852,6 @@ entities: - 270 - 10577 - 10573 - - type: AtmosDevice - joinedGrid: 2 - uid: 10944 components: - type: Transform @@ -5981,8 +5864,6 @@ entities: - 10948 - 10947 - 10945 - - type: AtmosDevice - joinedGrid: 2 - proto: AirCanister entities: - uid: 62 @@ -5990,8 +5871,6 @@ entities: - type: Transform pos: -37.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: Airlock entities: - uid: 63 @@ -13720,8 +13599,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: Bed entities: - uid: 1485 @@ -14162,13 +14039,6 @@ entities: - type: Transform pos: -14.314552,-15.392647 parent: 2 -- proto: BookChefGaming - entities: - - uid: 1557 - components: - - type: Transform - pos: -1.5,2.5 - parent: 2 - proto: BookEngineersHandbook entities: - uid: 1559 @@ -14181,6 +14051,13 @@ entities: - type: Transform pos: 13.381934,16.65192 parent: 2 +- proto: BookHowToCookForFortySpaceman + entities: + - uid: 1557 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 - proto: BookHowToSurvive entities: - uid: 1561 @@ -28380,18 +28257,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-15.5 parent: 2 -- proto: chem_master - entities: - - uid: 4381 - components: - - type: Transform - pos: -14.5,13.5 - parent: 2 - - uid: 4382 - components: - - type: Transform - pos: -2.5,10.5 - parent: 2 - proto: ChemDispenser entities: - uid: 4383 @@ -28411,6 +28276,18 @@ entities: - type: Transform pos: -16.5,14.5 parent: 2 +- proto: ChemMaster + entities: + - uid: 4381 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - uid: 4382 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 - proto: ChessBoard entities: - uid: 4386 @@ -28958,13 +28835,6 @@ entities: - type: Transform pos: -29.695724,-18.194086 parent: 2 -- proto: ClothingHeadHatHairflower - entities: - - uid: 4477 - components: - - type: Transform - pos: -14.827011,-19.222872 - parent: 2 - proto: ClothingHeadHatPirate entities: - uid: 4478 @@ -30405,8 +30275,6 @@ entities: - type: Transform pos: 12.5,-0.5 parent: 2 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconCERoom entities: - uid: 10882 @@ -30421,8 +30289,6 @@ entities: - type: Transform pos: -7.5,21.5 parent: 2 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconChemistry entities: - uid: 10888 @@ -30444,8 +30310,6 @@ entities: - type: Transform pos: -0.5,-20.5 parent: 2 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconCourtroom entities: - uid: 10890 @@ -30481,8 +30345,6 @@ entities: - type: Transform pos: -17.5,-13.5 parent: 2 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconEngineering entities: - uid: 10894 @@ -30576,8 +30438,6 @@ entities: - type: Transform pos: 9.5,-18.5 parent: 2 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconSecurityCheckpoint entities: - uid: 10905 @@ -33700,8 +33560,8 @@ entities: pos: -0.5,-26.5 parent: 2 - type: FaxMachine - destinationAddress: Bridge name: Bridge + destinationAddress: Bridge - uid: 5176 components: - type: Transform @@ -33818,8 +33678,6 @@ entities: - 5273 - 5272 - 293 - - type: AtmosDevice - joinedGrid: 2 - uid: 5207 components: - type: Transform @@ -33837,8 +33695,6 @@ entities: - 5394 - 5395 - 5396 - - type: AtmosDevice - joinedGrid: 2 - uid: 5208 components: - type: Transform @@ -33849,8 +33705,6 @@ entities: - 5290 - 5274 - 263 - - type: AtmosDevice - joinedGrid: 2 - uid: 5209 components: - type: Transform @@ -33866,8 +33720,6 @@ entities: - 5433 - 5435 - 5317 - - type: AtmosDevice - joinedGrid: 2 - uid: 5210 components: - type: Transform @@ -33879,8 +33731,6 @@ entities: - 5286 - 5318 - 254 - - type: AtmosDevice - joinedGrid: 2 - uid: 5211 components: - type: Transform @@ -33893,8 +33743,6 @@ entities: - 5312 - 5310 - 8413 - - type: AtmosDevice - joinedGrid: 2 - uid: 5212 components: - type: Transform @@ -33906,8 +33754,6 @@ entities: - 5348 - 274 - 5333 - - type: AtmosDevice - joinedGrid: 2 - uid: 5213 components: - type: Transform @@ -33919,8 +33765,6 @@ entities: - 5332 - 275 - 5333 - - type: AtmosDevice - joinedGrid: 2 - uid: 5214 components: - type: Transform @@ -33931,8 +33775,6 @@ entities: devices: - 257 - 5332 - - type: AtmosDevice - joinedGrid: 2 - uid: 5215 components: - type: Transform @@ -33944,8 +33786,6 @@ entities: - 5330 - 5331 - 276 - - type: AtmosDevice - joinedGrid: 2 - uid: 5216 components: - type: Transform @@ -33962,8 +33802,6 @@ entities: - 5288 - 5292 - 5293 - - type: AtmosDevice - joinedGrid: 2 - uid: 5217 components: - type: Transform @@ -33975,8 +33813,6 @@ entities: - 258 - 5287 - 5319 - - type: AtmosDevice - joinedGrid: 2 - uid: 5218 components: - type: Transform @@ -33989,8 +33825,6 @@ entities: - 5342 - 5381 - 5343 - - type: AtmosDevice - joinedGrid: 2 - uid: 5219 components: - type: Transform @@ -34002,8 +33836,6 @@ entities: - 280 - 5342 - 5381 - - type: AtmosDevice - joinedGrid: 2 - uid: 5220 components: - type: Transform @@ -34013,8 +33845,6 @@ entities: devices: - 5352 - 259 - - type: AtmosDevice - joinedGrid: 2 - uid: 5221 components: - type: Transform @@ -34026,8 +33856,6 @@ entities: - 5351 - 5352 - 260 - - type: AtmosDevice - joinedGrid: 2 - uid: 5222 components: - type: Transform @@ -34038,8 +33866,6 @@ entities: - 283 - 5350 - 5270 - - type: AtmosDevice - joinedGrid: 2 - uid: 5223 components: - type: Transform @@ -34051,8 +33877,6 @@ entities: - 5353 - 5350 - 282 - - type: AtmosDevice - joinedGrid: 2 - uid: 5224 components: - type: Transform @@ -34066,8 +33890,6 @@ entities: - 5361 - 262 - 5359 - - type: AtmosDevice - joinedGrid: 2 - uid: 5225 components: - type: Transform @@ -34081,8 +33903,6 @@ entities: - 5371 - 5372 - 5373 - - type: AtmosDevice - joinedGrid: 2 - uid: 5226 components: - type: Transform @@ -34101,8 +33921,6 @@ entities: - 5397 - 5417 - 5421 - - type: AtmosDevice - joinedGrid: 2 - uid: 5227 components: - type: Transform @@ -34118,8 +33936,6 @@ entities: - 5304 - 5305 - 284 - - type: AtmosDevice - joinedGrid: 2 - uid: 5228 components: - type: Transform @@ -34129,8 +33945,6 @@ entities: devices: - 268 - 5313 - - type: AtmosDevice - joinedGrid: 2 - uid: 5229 components: - type: Transform @@ -34143,8 +33957,6 @@ entities: - 268 - 5313 - 297 - - type: AtmosDevice - joinedGrid: 2 - uid: 5230 components: - type: Transform @@ -34160,8 +33972,6 @@ entities: - 292 - 5323 - 5324 - - type: AtmosDevice - joinedGrid: 2 - uid: 5231 components: - type: Transform @@ -34173,8 +33983,6 @@ entities: - 1671 - 10662 - 8413 - - type: AtmosDevice - joinedGrid: 2 - uid: 5232 components: - type: Transform @@ -34183,8 +33991,6 @@ entities: - type: DeviceList devices: - 270 - - type: AtmosDevice - joinedGrid: 2 - uid: 5234 components: - type: Transform @@ -34195,8 +34001,6 @@ entities: - 296 - 5378 - 5274 - - type: AtmosDevice - joinedGrid: 2 - uid: 5235 components: - type: Transform @@ -34207,8 +34011,6 @@ entities: - 272 - 5384 - 5383 - - type: AtmosDevice - joinedGrid: 2 - uid: 5236 components: - type: Transform @@ -34221,8 +34023,6 @@ entities: - 5349 - 5330 - 5331 - - type: AtmosDevice - joinedGrid: 2 - uid: 5237 components: - type: Transform @@ -34241,8 +34041,6 @@ entities: - 5337 - 5362 - 5410 - - type: AtmosDevice - joinedGrid: 2 - uid: 5238 components: - type: Transform @@ -34260,8 +34058,6 @@ entities: - 5354 - 5319 - 304 - - type: AtmosDevice - joinedGrid: 2 - uid: 5239 components: - type: Transform @@ -34275,8 +34071,6 @@ entities: - 5338 - 278 - 5287 - - type: AtmosDevice - joinedGrid: 2 - uid: 5240 components: - type: Transform @@ -34300,8 +34094,6 @@ entities: - 5298 - 5297 - 265 - - type: AtmosDevice - joinedGrid: 2 - uid: 5241 components: - type: Transform @@ -34316,8 +34108,6 @@ entities: - 5326 - 5327 - 5406 - - type: AtmosDevice - joinedGrid: 2 - uid: 5243 components: - type: Transform @@ -34331,8 +34121,6 @@ entities: - 271 - 5347 - 5385 - - type: AtmosDevice - joinedGrid: 2 - uid: 5247 components: - type: Transform @@ -34345,8 +34133,6 @@ entities: - 298 - 5280 - 5404 - - type: AtmosDevice - joinedGrid: 2 - uid: 5248 components: - type: Transform @@ -34358,8 +34144,6 @@ entities: - 5273 - 5272 - 300 - - type: AtmosDevice - joinedGrid: 2 - uid: 5249 components: - type: Transform @@ -34372,8 +34156,6 @@ entities: - 302 - 5364 - 5291 - - type: AtmosDevice - joinedGrid: 2 - uid: 5250 components: - type: Transform @@ -34386,8 +34168,6 @@ entities: - 272 - 5384 - 5383 - - type: AtmosDevice - joinedGrid: 2 - uid: 5251 components: - type: Transform @@ -34400,8 +34180,6 @@ entities: - 5265 - 5413 - 303 - - type: AtmosDevice - joinedGrid: 2 - uid: 5252 components: - type: Transform @@ -34410,8 +34188,6 @@ entities: - type: DeviceList devices: - 305 - - type: AtmosDevice - joinedGrid: 2 - uid: 5253 components: - type: Transform @@ -34432,8 +34208,6 @@ entities: - 5295 - 5294 - 256 - - type: AtmosDevice - joinedGrid: 2 - uid: 5254 components: - type: Transform @@ -34445,8 +34219,6 @@ entities: - 5398 - 5399 - 266 - - type: AtmosDevice - joinedGrid: 2 - uid: 5255 components: - type: Transform @@ -34457,8 +34229,6 @@ entities: devices: - 307 - 5416 - - type: AtmosDevice - joinedGrid: 2 - uid: 5256 components: - type: Transform @@ -34475,8 +34245,6 @@ entities: - 6957 - 5293 - 255 - - type: AtmosDevice - joinedGrid: 2 - uid: 5258 components: - type: Transform @@ -34488,8 +34256,6 @@ entities: - 5267 - 5423 - 59 - - type: AtmosDevice - joinedGrid: 2 - uid: 5259 components: - type: Transform @@ -34504,8 +34270,6 @@ entities: - 5427 - 5269 - 60 - - type: AtmosDevice - joinedGrid: 2 - uid: 5260 components: - type: Transform @@ -34517,8 +34281,6 @@ entities: - 61 - 5434 - 5433 - - type: AtmosDevice - joinedGrid: 2 - uid: 5261 components: - type: Transform @@ -34531,8 +34293,6 @@ entities: - 5428 - 5363 - 5317 - - type: AtmosDevice - joinedGrid: 2 - uid: 5369 components: - type: Transform @@ -34544,8 +34304,6 @@ entities: - 5177 - 5307 - 290 - - type: AtmosDevice - joinedGrid: 2 - uid: 5663 components: - type: Transform @@ -34558,8 +34316,6 @@ entities: - 6340 - 5310 - 8413 - - type: AtmosDevice - joinedGrid: 2 - uid: 7031 components: - type: Transform @@ -34580,16 +34336,12 @@ entities: - 9094 - 10733 - 281 - - type: AtmosDevice - joinedGrid: 2 - uid: 10479 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10579 components: - type: Transform @@ -34607,8 +34359,6 @@ entities: - 8413 - 289 - 269 - - type: AtmosDevice - joinedGrid: 2 - uid: 10592 components: - type: Transform @@ -34621,8 +34371,6 @@ entities: - 10734 - 10662 - 270 - - type: AtmosDevice - joinedGrid: 2 - proto: FireAxeCabinetFilled entities: - uid: 5262 @@ -36285,6 +36033,13 @@ entities: - type: Transform pos: -1.9840181,-0.5107192 parent: 2 +- proto: FoodPoppy + entities: + - uid: 4477 + components: + - type: Transform + pos: -14.827011,-19.222872 + parent: 2 - proto: FoodTartCoco entities: - uid: 5551 @@ -36314,8 +36069,6 @@ entities: - type: Transform pos: 23.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerOxygen entities: - uid: 5554 @@ -36323,8 +36076,6 @@ entities: - type: Transform pos: 21.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerPlasma entities: - uid: 5555 @@ -36332,8 +36083,6 @@ entities: - type: Transform pos: 25.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMixerFlipped entities: - uid: 5556 @@ -36342,8 +36091,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#02FFD0FF' - uid: 5557 @@ -36352,8 +36099,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasOutletInjector entities: - uid: 5558 @@ -36361,8 +36106,6 @@ entities: - type: Transform pos: 7.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 5559 @@ -36370,8 +36113,6 @@ entities: - type: Transform pos: 25.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 5560 @@ -36379,8 +36120,6 @@ entities: - type: Transform pos: 21.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 5561 @@ -36388,8 +36127,6 @@ entities: - type: Transform pos: 23.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 5562 @@ -36397,8 +36134,6 @@ entities: - type: Transform pos: 15.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#947507FF' - uid: 5563 @@ -36406,8 +36141,6 @@ entities: - type: Transform pos: 27.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 5564 @@ -36415,15 +36148,11 @@ entities: - type: Transform pos: -14.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5565 components: - type: Transform pos: 10.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#7A5D04FF' - proto: GasPassiveGate @@ -36434,8 +36163,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5400FF' - proto: GasPassiveVent @@ -36446,16 +36173,12 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5568 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5900FF' - uid: 5569 @@ -36464,8 +36187,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5900FF' - uid: 5570 @@ -36473,8 +36194,6 @@ entities: - type: Transform pos: 19.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#B600FFFF' - uid: 5571 @@ -36483,23 +36202,17 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5572 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5573 components: - type: Transform pos: 28.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#947507FF' - uid: 5574 @@ -36508,8 +36221,6 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#947507FF' - uid: 5575 @@ -36518,8 +36229,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 5576 @@ -36528,8 +36237,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 5577 @@ -36537,8 +36244,6 @@ entities: - type: Transform pos: 14.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#826003FF' - uid: 5578 @@ -36546,8 +36251,6 @@ entities: - type: Transform pos: -12.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasPipeBend entities: - uid: 92 @@ -45956,32 +45659,24 @@ entities: - type: Transform pos: 9.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6777 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6778 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6779 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5900FF' - uid: 6780 @@ -45990,8 +45685,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 6781 @@ -46000,24 +45693,18 @@ entities: rot: 3.141592653589793 rad pos: 8.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6782 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6783 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6784 @@ -46026,8 +45713,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6785 @@ -46036,24 +45721,18 @@ entities: rot: 3.141592653589793 rad pos: -12.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6786 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6787 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#7A5D04FF' - uid: 10852 @@ -46062,8 +45741,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasPressurePump entities: - uid: 6788 @@ -46072,24 +45749,18 @@ entities: rot: 3.141592653589793 rad pos: 27.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6789 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6790 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6791 @@ -46098,8 +45769,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5900FF' - uid: 6792 @@ -46108,37 +45777,27 @@ entities: rot: 3.141592653589793 rad pos: 25.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6793 components: - type: Transform pos: 26.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6794 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6795 components: - type: Transform pos: 28.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6796 components: - type: Transform pos: 14.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#826003FF' - uid: 6797 @@ -46147,8 +45806,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6798 @@ -46157,8 +45814,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 6799 @@ -46166,8 +45821,6 @@ entities: - type: Transform pos: 22.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#02FFD0FF' - uid: 6800 @@ -46175,8 +45828,6 @@ entities: - type: Transform pos: 20.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#02FFD0FF' - uid: 6801 @@ -46185,8 +45836,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#826003FF' - uid: 6802 @@ -46195,23 +45844,17 @@ entities: rot: 3.141592653589793 rad pos: -13.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6803 components: - type: Transform pos: -12.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6804 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#826003FF' - proto: GasThermoMachineFreezer @@ -46221,8 +45864,6 @@ entities: - type: Transform pos: -4.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6806 components: - type: Transform @@ -46230,23 +45871,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - type: AtmosDevice - joinedGrid: 2 - uid: 6807 components: - type: Transform pos: 17.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6808 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasThermoMachineHeater entities: - uid: 6809 @@ -46256,8 +45891,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - type: AtmosDevice - joinedGrid: 2 - uid: 6810 components: - type: Transform @@ -46265,16 +45898,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - type: AtmosDevice - joinedGrid: 2 - uid: 6811 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasValve entities: - uid: 6812 @@ -46285,8 +45914,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#826003FF' - uid: 6813 @@ -46297,8 +45924,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#826003FF' - uid: 6814 @@ -46309,8 +45934,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5900FF' - uid: 6815 @@ -46321,8 +45944,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#7A5D04FF' - uid: 6816 @@ -46332,8 +45953,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5900FF' - uid: 6817 @@ -46341,8 +45960,6 @@ entities: - type: Transform pos: 19.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#B600FFFF' - uid: 6818 @@ -46353,8 +45970,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 6819 @@ -46364,8 +45979,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 6820 @@ -46374,8 +45987,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6821 components: - type: Transform @@ -46383,8 +45994,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 6822 @@ -46394,8 +46003,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5900FF' - uid: 6823 @@ -46404,8 +46011,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6824 components: - type: Transform @@ -46414,8 +46019,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - proto: GasVentPump @@ -46429,8 +46032,6 @@ entities: - type: DeviceNetwork deviceLists: - 5233 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 223 @@ -46442,8 +46043,6 @@ entities: - type: DeviceNetwork deviceLists: - 6929 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6010 @@ -46455,8 +46054,6 @@ entities: - type: DeviceNetwork deviceLists: - 88 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6358 @@ -46465,8 +46062,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6825 @@ -46475,8 +46070,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6826 @@ -46485,8 +46078,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6827 @@ -46495,8 +46086,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6828 @@ -46505,8 +46094,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6829 @@ -46515,8 +46102,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6830 @@ -46525,8 +46110,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6831 @@ -46535,8 +46118,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6832 @@ -46545,8 +46126,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6833 @@ -46555,8 +46134,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6834 @@ -46565,8 +46142,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6835 @@ -46575,8 +46150,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6836 @@ -46585,8 +46158,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6837 @@ -46594,8 +46165,6 @@ entities: - type: Transform pos: -2.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6838 @@ -46604,8 +46173,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6839 @@ -46614,8 +46181,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6840 @@ -46624,8 +46189,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6842 @@ -46637,8 +46200,6 @@ entities: - type: DeviceNetwork deviceLists: - 5246 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6847 @@ -46646,8 +46207,6 @@ entities: - type: Transform pos: -15.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6848 @@ -46655,8 +46214,6 @@ entities: - type: Transform pos: 0.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6849 @@ -46665,8 +46222,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6850 @@ -46675,8 +46230,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6851 @@ -46685,8 +46238,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6852 @@ -46695,8 +46246,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6853 @@ -46705,8 +46254,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6854 @@ -46715,8 +46262,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6855 @@ -46725,8 +46270,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6856 @@ -46735,8 +46278,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6857 @@ -46745,8 +46286,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6858 @@ -46755,8 +46294,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6859 @@ -46765,8 +46302,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6860 @@ -46774,8 +46309,6 @@ entities: - type: Transform pos: -8.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6861 @@ -46783,8 +46316,6 @@ entities: - type: Transform pos: -9.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6862 @@ -46793,8 +46324,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6863 @@ -46803,8 +46332,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6864 @@ -46813,8 +46340,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6866 @@ -46823,8 +46348,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6867 @@ -46832,8 +46355,6 @@ entities: - type: Transform pos: -2.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6868 @@ -46842,8 +46363,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6869 @@ -46852,8 +46371,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6870 @@ -46861,8 +46378,6 @@ entities: - type: Transform pos: -9.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6872 @@ -46870,8 +46385,6 @@ entities: - type: Transform pos: -24.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6874 @@ -46880,8 +46393,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6875 @@ -46890,8 +46401,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6876 @@ -46900,8 +46409,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6877 @@ -46909,8 +46416,6 @@ entities: - type: Transform pos: 7.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6878 @@ -46919,8 +46424,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6879 @@ -46929,8 +46432,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6880 @@ -46939,8 +46440,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6881 @@ -46949,8 +46448,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6882 @@ -46959,8 +46456,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6883 @@ -46969,8 +46464,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6885 @@ -46979,8 +46472,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6886 @@ -46989,8 +46480,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6887 @@ -46999,8 +46488,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6888 @@ -47008,8 +46495,6 @@ entities: - type: Transform pos: 24.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6889 @@ -47018,8 +46503,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6890 @@ -47028,8 +46511,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6891 @@ -47038,8 +46519,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6892 @@ -47048,8 +46527,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6893 @@ -47058,8 +46535,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6894 @@ -47068,8 +46543,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6895 @@ -47078,8 +46551,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6896 @@ -47088,8 +46559,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6897 @@ -47098,8 +46567,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6898 @@ -47107,8 +46574,6 @@ entities: - type: Transform pos: 7.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6899 @@ -47117,8 +46582,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6900 @@ -47127,8 +46590,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6901 @@ -47136,8 +46597,6 @@ entities: - type: Transform pos: -14.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6902 @@ -47146,8 +46605,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6903 @@ -47155,8 +46612,6 @@ entities: - type: Transform pos: -0.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6904 @@ -47165,8 +46620,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6906 @@ -47175,8 +46628,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6907 @@ -47185,8 +46636,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6908 @@ -47195,8 +46644,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6909 @@ -47205,8 +46652,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6910 @@ -47215,8 +46660,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6911 @@ -47225,8 +46668,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9590 @@ -47237,8 +46678,6 @@ entities: - type: DeviceNetwork deviceLists: - 10578 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10486 @@ -47246,8 +46685,6 @@ entities: - type: Transform pos: -18.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10551 @@ -47258,8 +46695,6 @@ entities: - type: DeviceNetwork deviceLists: - 25 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10574 @@ -47271,8 +46706,6 @@ entities: - type: DeviceNetwork deviceLists: - 26 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10576 @@ -47283,8 +46716,6 @@ entities: - type: DeviceNetwork deviceLists: - 27 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10577 @@ -47296,8 +46727,6 @@ entities: - type: DeviceNetwork deviceLists: - 10622 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10946 @@ -47308,8 +46737,6 @@ entities: - type: DeviceNetwork deviceLists: - 10944 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasVentScrubber @@ -47323,8 +46750,6 @@ entities: - type: DeviceNetwork deviceLists: - 6929 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 218 @@ -47336,8 +46761,6 @@ entities: - type: DeviceNetwork deviceLists: - 5246 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 252 @@ -47349,8 +46772,6 @@ entities: - type: DeviceNetwork deviceLists: - 5233 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3600 @@ -47359,8 +46780,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6011 @@ -47372,8 +46791,6 @@ entities: - type: DeviceNetwork deviceLists: - 88 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6308 @@ -47385,8 +46802,6 @@ entities: - type: DeviceNetwork deviceLists: - 25 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6360 @@ -47394,8 +46809,6 @@ entities: - type: Transform pos: -25.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6582 @@ -47404,8 +46817,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6912 @@ -47414,8 +46825,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6913 @@ -47424,8 +46833,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6914 @@ -47434,8 +46841,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6915 @@ -47444,8 +46849,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6916 @@ -47454,8 +46857,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6917 @@ -47464,8 +46865,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6919 @@ -47474,8 +46873,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6920 @@ -47483,8 +46880,6 @@ entities: - type: Transform pos: 4.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6921 @@ -47493,8 +46888,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6922 @@ -47503,8 +46896,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6923 @@ -47513,8 +46904,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6924 @@ -47522,8 +46911,6 @@ entities: - type: Transform pos: -2.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6925 @@ -47532,8 +46919,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6926 @@ -47542,8 +46927,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6927 @@ -47551,8 +46934,6 @@ entities: - type: Transform pos: -3.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6934 @@ -47561,8 +46942,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6935 @@ -47570,8 +46949,6 @@ entities: - type: Transform pos: -1.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6936 @@ -47580,8 +46957,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6937 @@ -47590,8 +46965,6 @@ entities: rot: 3.141592653589793 rad pos: -14.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6938 @@ -47600,8 +46973,6 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6939 @@ -47610,8 +46981,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6940 @@ -47619,8 +46988,6 @@ entities: - type: Transform pos: -10.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6941 @@ -47629,8 +46996,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6942 @@ -47639,8 +47004,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6943 @@ -47649,8 +47012,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6944 @@ -47659,8 +47020,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6945 @@ -47669,8 +47028,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6946 @@ -47679,8 +47036,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6947 @@ -47688,8 +47043,6 @@ entities: - type: Transform pos: -7.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6948 @@ -47697,8 +47050,6 @@ entities: - type: Transform pos: -5.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6949 @@ -47707,8 +47058,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6950 @@ -47717,8 +47066,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6951 @@ -47727,8 +47074,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6952 @@ -47737,8 +47082,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6953 @@ -47747,8 +47090,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6954 @@ -47757,8 +47098,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6955 @@ -47767,8 +47106,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 6956 @@ -47777,8 +47114,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 6957 @@ -47786,8 +47121,6 @@ entities: - type: Transform pos: -1.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6958 @@ -47795,8 +47128,6 @@ entities: - type: Transform pos: -10.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6959 @@ -47805,8 +47136,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6960 @@ -47814,8 +47143,6 @@ entities: - type: Transform pos: 4.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6964 @@ -47824,8 +47151,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6965 @@ -47833,8 +47158,6 @@ entities: - type: Transform pos: 6.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6966 @@ -47843,8 +47166,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6967 @@ -47853,8 +47174,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6968 @@ -47863,8 +47182,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6971 @@ -47872,8 +47189,6 @@ entities: - type: Transform pos: -18.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6972 @@ -47882,8 +47197,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6973 @@ -47891,8 +47204,6 @@ entities: - type: Transform pos: -5.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6974 @@ -47901,8 +47212,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6975 @@ -47911,8 +47220,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6976 @@ -47921,8 +47228,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6977 @@ -47931,8 +47236,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6978 @@ -47941,8 +47244,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6979 @@ -47951,8 +47252,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6980 @@ -47961,8 +47260,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6981 @@ -47971,8 +47268,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6982 @@ -47981,8 +47276,6 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6983 @@ -47991,8 +47284,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6984 @@ -48001,8 +47292,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6985 @@ -48011,8 +47300,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6986 @@ -48021,8 +47308,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6987 @@ -48031,8 +47316,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6988 @@ -48041,8 +47324,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6989 @@ -48051,8 +47332,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6990 @@ -48061,8 +47340,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6991 @@ -48070,8 +47347,6 @@ entities: - type: Transform pos: 0.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6992 @@ -48079,8 +47354,6 @@ entities: - type: Transform pos: 5.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6994 @@ -48089,8 +47362,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6995 @@ -48099,8 +47370,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9591 @@ -48112,8 +47381,6 @@ entities: - type: DeviceNetwork deviceLists: - 10578 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10442 @@ -48125,8 +47392,6 @@ entities: - type: DeviceNetwork deviceLists: - 26 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10473 @@ -48134,8 +47399,6 @@ entities: - type: Transform pos: -19.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10573 @@ -48147,8 +47410,6 @@ entities: - type: DeviceNetwork deviceLists: - 10622 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10575 @@ -48159,8 +47420,6 @@ entities: - type: DeviceNetwork deviceLists: - 27 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10947 @@ -48172,8 +47431,6 @@ entities: - type: DeviceNetwork deviceLists: - 10944 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVolumePump @@ -48184,8 +47441,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 6997 @@ -48193,8 +47448,6 @@ entities: - type: Transform pos: 3.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 6998 @@ -48202,8 +47455,6 @@ entities: - type: Transform pos: 8.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5900FF' - uid: 6999 @@ -48212,8 +47463,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - proto: GeneratorBasic @@ -50906,8 +50155,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 7537 @@ -50916,8 +50163,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 7538 @@ -50925,8 +50170,6 @@ entities: - type: Transform pos: 9.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5400FF' - uid: 7539 @@ -50935,8 +50178,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - proto: HighSecCommandLocked @@ -51905,7 +51146,9 @@ entities: pos: 20.5,7.5 parent: 2 - type: RandomSpawner - chance: 1 + prototypes: [] + rarePrototypes: [] + gameRules: [] - proto: Matchbox entities: - uid: 7680 @@ -51967,6 +51210,13 @@ entities: rot: -1.5707963267948966 rad pos: -6.7171144,-17.235079 parent: 2 +- proto: MaterialSilo + entities: + - uid: 9272 + components: + - type: Transform + pos: -10.5,43.5 + parent: 2 - proto: MedicalBed entities: - uid: 6970 @@ -52249,15 +51499,11 @@ entities: - type: Transform pos: 11.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7728 components: - type: Transform pos: 11.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: NuclearBomb entities: - uid: 7729 @@ -52286,7 +51532,7 @@ entities: - type: Transform pos: 0.5,21.5 parent: 2 -- proto: Oracle +- proto: OracleSpawner entities: - uid: 7733 components: @@ -52326,50 +51572,36 @@ entities: - type: Transform pos: -19.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7736 components: - type: Transform pos: 5.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7737 components: - type: Transform pos: 37.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7738 components: - type: Transform pos: 21.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7740 components: - type: Transform pos: -16.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7741 components: - type: Transform pos: -5.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7742 components: - type: Transform pos: 33.5,17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: Paper entities: - uid: 7743 @@ -52816,15 +52048,11 @@ entities: - type: Transform pos: 6.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7810 components: - type: Transform pos: 5.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: PlasticFlapsAirtightClear entities: - uid: 7811 @@ -52857,6 +52085,13 @@ entities: - type: Transform pos: 10.5,-2.5 parent: 2 +- proto: PlayerStationAi + entities: + - uid: 8734 + components: + - type: Transform + pos: -7.5,47.5 + parent: 2 - proto: PlushieAtmosian entities: - uid: 7817 @@ -58605,13 +57840,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.500423,-6.4916277 parent: 2 -- proto: SignDrones - entities: - - uid: 8718 - components: - - type: Transform - pos: -3.5,39.5 - parent: 2 - proto: SignElectricalMed entities: - uid: 8719 @@ -58684,6 +57912,13 @@ entities: - type: Transform pos: 9.5,5.5 parent: 2 +- proto: SignMaterials + entities: + - uid: 8718 + components: + - type: Transform + pos: -3.5,39.5 + parent: 2 - proto: SignMedical entities: - uid: 8729 @@ -58726,13 +57961,6 @@ entities: - type: Transform pos: -28.5,15.5 parent: 2 -- proto: SignShield - entities: - - uid: 8734 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 2 - proto: SignShipDock entities: - uid: 8735 @@ -58910,7 +58138,7 @@ entities: - type: Transform pos: 17.502792,-23.408857 parent: 2 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 8761 components: @@ -59352,7 +58580,7 @@ entities: - type: Transform pos: -20.5,65.5 parent: 2 -- proto: SophicScribe +- proto: SophicScribeSpawner entities: - uid: 8823 components: @@ -59558,6 +58786,18 @@ entities: - type: Transform pos: 24.5,-19.5 parent: 2 +- proto: SpawnPointAdminAssistant + entities: + - uid: 9274 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 9373 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 - proto: SpawnPointAtmos entities: - uid: 8868 @@ -59592,6 +58832,13 @@ entities: - type: Transform pos: -7.5,-12.5 parent: 2 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 10134 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 2 - proto: SpawnPointBorg entities: - uid: 8874 @@ -60033,6 +59280,13 @@ entities: - type: Transform pos: 0.5,-12.5 parent: 2 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 9755 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 - proto: SpawnPointObserver entities: - uid: 8943 @@ -60632,50 +59886,36 @@ entities: - type: Transform pos: 27.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9032 components: - type: Transform pos: 27.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9033 components: - type: Transform pos: 20.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9034 components: - type: Transform pos: 21.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9035 components: - type: Transform pos: 22.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9036 components: - type: Transform pos: 10.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9037 components: - type: Transform pos: 17.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: Stunbaton entities: - uid: 9038 @@ -62282,22 +61522,12 @@ entities: - type: Transform pos: -0.5,40.5 parent: 2 - - uid: 9272 - components: - - type: Transform - pos: -7.5,46.5 - parent: 2 - uid: 9273 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,26.5 parent: 2 - - uid: 9274 - components: - - type: Transform - pos: -7.5,47.5 - parent: 2 - uid: 9275 components: - type: Transform @@ -62689,8 +61919,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: TegCirculator entities: - uid: 9348 @@ -62850,13 +62078,6 @@ entities: - type: Transform pos: 8.485883,15.742142 parent: 2 -- proto: ToyAi - entities: - - uid: 9373 - components: - - type: Transform - pos: -7.5,46.5 - parent: 2 - proto: ToyRubberDuck entities: - uid: 9374 diff --git a/Resources/Maps/radstation.yml b/Resources/Maps/radstation.yml index 32c86af2505748..b8eb6b1bcc5c26 100644 --- a/Resources/Maps/radstation.yml +++ b/Resources/Maps/radstation.yml @@ -15129,7 +15129,7 @@ entities: pos: 34.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -55045.918 + secondsUntilStateChange: -55516.35 state: Opening - uid: 383 components: @@ -17822,17 +17822,6 @@ entities: - type: Transform pos: 0.5,-47.5 parent: 2 -- proto: BalloonNT - entities: - - uid: 22318 - components: - - type: Transform - parent: 22310 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - proto: BannerMedical entities: - uid: 807 @@ -60605,17 +60594,6 @@ entities: - type: Transform pos: 26.467663,-34.491558 parent: 2 -- proto: ClothingHeadsetCommand - entities: - - uid: 22313 - components: - - type: Transform - parent: 22310 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - proto: ClothingMaskBat entities: - uid: 8841 @@ -60783,28 +60761,6 @@ entities: - type: Transform pos: 19.387924,-13.55324 parent: 2 -- proto: ClothingNeckCloakBoat - entities: - - uid: 22317 - components: - - type: Transform - parent: 22310 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckCloakNanotrasen - entities: - - uid: 22316 - components: - - type: Transform - parent: 22310 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - proto: ClothingNeckCloakTrans entities: - uid: 8858 @@ -60948,17 +60904,6 @@ entities: - type: Transform pos: -11.324873,-24.533173 parent: 2 -- proto: ClothingOuterCorporateJacket - entities: - - uid: 22319 - components: - - type: Transform - parent: 22310 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - proto: ClothingOuterHardsuitClown entities: - uid: 10544 @@ -61336,17 +61281,6 @@ entities: linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitCentcomAgent - entities: - - uid: 22312 - components: - - type: Transform - parent: 22310 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - proto: ClothingUniformJumpsuitClown entities: - uid: 10525 @@ -61471,17 +61405,6 @@ entities: linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitNanotrasen - entities: - - uid: 22314 - components: - - type: Transform - parent: 22310 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - proto: ClownRecorder entities: - uid: 8889 @@ -110760,6 +110683,13 @@ entities: showEnts: False occludes: True ent: null +- proto: LockerNanorepFilled + entities: + - uid: 22310 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 - proto: LockerParamedicFilled entities: - uid: 15904 @@ -110803,49 +110733,6 @@ entities: showEnts: False occludes: True ent: null -- proto: LockerRepresentative - entities: - - uid: 22310 - components: - - type: Transform - pos: 7.5,27.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 22311 - - 22312 - - 22313 - - 22314 - - 22316 - - 22317 - - 22318 - - 22319 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerResearchDirectorFilled entities: - uid: 15907 @@ -110980,17 +110867,6 @@ entities: - type: Transform pos: 14.5,-48.5 parent: 2 -- proto: LunchboxCommandFilledRandom - entities: - - uid: 22311 - components: - - type: Transform - parent: 22310 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - proto: MachineAnomalyGenerator entities: - uid: 15923 @@ -130954,6 +130830,23 @@ entities: - type: Transform pos: -17.5,-24.5 parent: 2 +- proto: SpawnPointAdminAssistant + entities: + - uid: 22313 + components: + - type: Transform + pos: 7.5,56.5 + parent: 2 + - uid: 22314 + components: + - type: Transform + pos: 7.5,52.5 + parent: 2 + - uid: 22316 + components: + - type: Transform + pos: 5.5,54.5 + parent: 2 - proto: SpawnPointAtmos entities: - uid: 18858 @@ -130983,6 +130876,13 @@ entities: - type: Transform pos: 16.5,17.5 parent: 2 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 22312 + components: + - type: Transform + pos: 6.5,55.5 + parent: 2 - proto: SpawnPointBorg entities: - uid: 18863 @@ -131296,6 +131196,13 @@ entities: - type: Transform pos: 41.5,15.5 parent: 2 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 22311 + components: + - type: Transform + pos: 6.5,53.5 + parent: 2 - proto: SpawnPointObserver entities: - uid: 18901 @@ -157868,7 +157775,7 @@ entities: links: - 19976 - type: Door - secondsUntilStateChange: -191338.22 + secondsUntilStateChange: -191808.66 state: Opening - uid: 23356 components: diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index 86122e2f8c2be6..e90783df4fc5a2 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -4332,7 +4332,7 @@ entities: pos: 3.5,22.5 parent: 31 - type: Door - secondsUntilStateChange: -32451.49 + secondsUntilStateChange: -32552.574 state: Opening - type: DeviceLinkSource lastSignals: @@ -56999,6 +56999,13 @@ entities: - type: Transform pos: 7.2571726,18.545927 parent: 31 +- proto: MaterialSilo + entities: + - uid: 8292 + components: + - type: Transform + pos: 47.5,-11.5 + parent: 31 - proto: MaterialWoodPlank1 entities: - uid: 9680 @@ -66689,6 +66696,23 @@ entities: - type: Transform pos: 17.5,-0.5 parent: 31 +- proto: SpawnPointAdminAssistant + entities: + - uid: 11407 + components: + - type: Transform + pos: -0.5,25.5 + parent: 31 + - uid: 11409 + components: + - type: Transform + pos: -0.5,24.5 + parent: 31 + - uid: 11410 + components: + - type: Transform + pos: -2.5,24.5 + parent: 31 - proto: SpawnPointAtmos entities: - uid: 6425 @@ -66708,6 +66732,13 @@ entities: - type: Transform pos: -11.5,-7.5 parent: 31 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 11406 + components: + - type: Transform + pos: -2.5,25.5 + parent: 31 - proto: SpawnPointBorg entities: - uid: 11258 @@ -66900,6 +66931,13 @@ entities: - type: Transform pos: -11.5,-10.5 parent: 31 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 11408 + components: + - type: Transform + pos: -1.5,26.5 + parent: 31 - proto: SpawnPointObserver entities: - uid: 902 diff --git a/Resources/Maps/shoukou.yml b/Resources/Maps/shoukou.yml index 6c47a6e31a7be1..9988eefc92c801 100644 --- a/Resources/Maps/shoukou.yml +++ b/Resources/Maps/shoukou.yml @@ -3410,12 +3410,13 @@ entities: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: PhysicsMap + - type: GridTree + - type: MovedGrids - type: Broadphase - type: OccluderTree - type: LoadedMap - - type: GridTree - - type: MovedGrids - proto: ActionToggleLight entities: - uid: 3642 @@ -3444,8 +3445,6 @@ entities: - 10576 - 12889 - 12358 - - type: AtmosDevice - joinedGrid: 34 - uid: 738 components: - type: Transform @@ -3464,8 +3463,6 @@ entities: - 841 - 10322 - 1914 - - type: AtmosDevice - joinedGrid: 34 - uid: 2349 components: - type: Transform @@ -3485,8 +3482,6 @@ entities: - 10312 - 8195 - 11404 - - type: AtmosDevice - joinedGrid: 34 - uid: 2350 components: - type: Transform @@ -3506,8 +3501,6 @@ entities: - 10301 - 10302 - 5925 - - type: AtmosDevice - joinedGrid: 34 - uid: 2410 components: - type: Transform @@ -3531,8 +3524,6 @@ entities: - 3507 - 12396 - 6957 - - type: AtmosDevice - joinedGrid: 34 - uid: 2525 components: - type: Transform @@ -3554,8 +3545,6 @@ entities: - 8817 - 8920 - 8685 - - type: AtmosDevice - joinedGrid: 34 - uid: 3295 components: - type: Transform @@ -3567,8 +3556,6 @@ entities: - 9904 - 6933 - 13664 - - type: AtmosDevice - joinedGrid: 34 - uid: 3874 components: - type: Transform @@ -3580,8 +3567,6 @@ entities: - 10712 - 9595 - 9599 - - type: AtmosDevice - joinedGrid: 34 - uid: 5208 components: - type: Transform @@ -3598,8 +3583,6 @@ entities: - 5250 - 9620 - 4449 - - type: AtmosDevice - joinedGrid: 34 - uid: 5244 components: - type: Transform @@ -3616,8 +3599,6 @@ entities: - 1302 - 1856 - 5269 - - type: AtmosDevice - joinedGrid: 34 - uid: 5426 components: - type: Transform @@ -3629,8 +3610,6 @@ entities: - 7843 - 12487 - 9598 - - type: AtmosDevice - joinedGrid: 34 - uid: 5573 components: - type: Transform @@ -3645,8 +3624,6 @@ entities: - 7164 - 7185 - 11095 - - type: AtmosDevice - joinedGrid: 34 - uid: 5585 components: - type: Transform @@ -3663,8 +3640,6 @@ entities: - 11117 - 11115 - 11116 - - type: AtmosDevice - joinedGrid: 34 - uid: 6342 components: - type: Transform @@ -3686,8 +3661,6 @@ entities: - 8911 - 8836 - 12534 - - type: AtmosDevice - joinedGrid: 34 - uid: 7099 components: - type: Transform @@ -3699,8 +3672,6 @@ entities: - 7094 - 9777 - 5925 - - type: AtmosDevice - joinedGrid: 34 - uid: 7410 components: - type: Transform @@ -3713,8 +3684,6 @@ entities: - 11112 - 2601 - 12072 - - type: AtmosDevice - joinedGrid: 34 - uid: 7683 components: - type: Transform @@ -3731,8 +3700,6 @@ entities: - 13468 - 3771 - 7612 - - type: AtmosDevice - joinedGrid: 34 - uid: 7684 components: - type: Transform @@ -3750,8 +3717,6 @@ entities: - 12141 - 12168 - 4849 - - type: AtmosDevice - joinedGrid: 34 - uid: 8028 components: - type: Transform @@ -3765,8 +3730,6 @@ entities: - 12476 - 4750 - 1870 - - type: AtmosDevice - joinedGrid: 34 - uid: 9601 components: - type: Transform @@ -3787,8 +3750,6 @@ entities: - 2986 - 2965 - 12368 - - type: AtmosDevice - joinedGrid: 34 - uid: 10291 components: - type: Transform @@ -3805,8 +3766,6 @@ entities: - 13452 - 3771 - 3553 - - type: AtmosDevice - joinedGrid: 34 - uid: 10323 components: - type: Transform @@ -3834,8 +3793,6 @@ entities: - 8643 - 5915 - 6113 - - type: AtmosDevice - joinedGrid: 34 - uid: 10395 components: - type: Transform @@ -3847,8 +3804,6 @@ entities: - 9013 - 10579 - 10580 - - type: AtmosDevice - joinedGrid: 34 - uid: 10464 components: - type: Transform @@ -3867,8 +3822,6 @@ entities: - 10582 - 10542 - 10576 - - type: AtmosDevice - joinedGrid: 34 - uid: 10544 components: - type: Transform @@ -3891,8 +3844,6 @@ entities: - 617 - 9469 - 11905 - - type: AtmosDevice - joinedGrid: 34 - uid: 10547 components: - type: Transform @@ -3906,8 +3857,6 @@ entities: - 2309 - 10317 - 2450 - - type: AtmosDevice - joinedGrid: 34 - uid: 10548 components: - type: Transform @@ -3928,8 +3877,6 @@ entities: - 12219 - 2451 - 4700 - - type: AtmosDevice - joinedGrid: 34 - uid: 10559 components: - type: Transform @@ -3949,8 +3896,6 @@ entities: - 10552 - 10553 - 11517 - - type: AtmosDevice - joinedGrid: 34 - uid: 10567 components: - type: Transform @@ -3966,8 +3911,6 @@ entities: - 10564 - 10565 - 10566 - - type: AtmosDevice - joinedGrid: 34 - uid: 10568 components: - type: Transform @@ -3982,8 +3925,6 @@ entities: - 9308 - 9765 - 11274 - - type: AtmosDevice - joinedGrid: 34 - uid: 10569 components: - type: Transform @@ -3998,8 +3939,6 @@ entities: - 9182 - 10564 - 10563 - - type: AtmosDevice - joinedGrid: 34 - uid: 10570 components: - type: Transform @@ -4024,8 +3963,6 @@ entities: - 8700 - 7981 - 7973 - - type: AtmosDevice - joinedGrid: 34 - uid: 10571 components: - type: Transform @@ -4045,8 +3982,6 @@ entities: - 9704 - 8722 - 998 - - type: AtmosDevice - joinedGrid: 34 - uid: 10574 components: - type: Transform @@ -4076,8 +4011,6 @@ entities: - 737 - 10322 - 2714 - - type: AtmosDevice - joinedGrid: 34 - uid: 10581 components: - type: Transform @@ -4098,8 +4031,6 @@ entities: - 9659 - 6402 - 5137 - - type: AtmosDevice - joinedGrid: 34 - uid: 10584 components: - type: Transform @@ -4116,8 +4047,6 @@ entities: - 10326 - 10860 - 10859 - - type: AtmosDevice - joinedGrid: 34 - uid: 10597 components: - type: Transform @@ -4139,8 +4068,6 @@ entities: - 8724 - 6140 - 10426 - - type: AtmosDevice - joinedGrid: 34 - uid: 10602 components: - type: Transform @@ -4159,8 +4086,6 @@ entities: - 9621 - 9622 - 11103 - - type: AtmosDevice - joinedGrid: 34 - uid: 10611 components: - type: Transform @@ -4176,8 +4101,6 @@ entities: - 12843 - 12844 - 10612 - - type: AtmosDevice - joinedGrid: 34 - uid: 10614 components: - type: Transform @@ -4188,8 +4111,6 @@ entities: devices: - 10612 - 10615 - - type: AtmosDevice - joinedGrid: 34 - uid: 11512 components: - type: Transform @@ -4201,8 +4122,6 @@ entities: - 10560 - 10390 - 8424 - - type: AtmosDevice - joinedGrid: 34 - uid: 11539 components: - type: Transform @@ -4214,8 +4133,6 @@ entities: - 1818 - 12977 - 11813 - - type: AtmosDevice - joinedGrid: 34 - uid: 11816 components: - type: Transform @@ -4228,8 +4145,6 @@ entities: - 11894 - 11830 - 10600 - - type: AtmosDevice - joinedGrid: 34 - uid: 11994 components: - type: Transform @@ -4241,8 +4156,6 @@ entities: - 11985 - 11983 - 11984 - - type: AtmosDevice - joinedGrid: 34 - uid: 12258 components: - type: Transform @@ -4255,8 +4168,6 @@ entities: - 4957 - 12360 - 12855 - - type: AtmosDevice - joinedGrid: 34 - uid: 12426 components: - type: Transform @@ -4269,8 +4180,6 @@ entities: - 12421 - 2936 - 12427 - - type: AtmosDevice - joinedGrid: 34 - uid: 12717 components: - type: Transform @@ -4285,8 +4194,6 @@ entities: - 12889 - 10576 - 8503 - - type: AtmosDevice - joinedGrid: 34 - uid: 13430 components: - type: Transform @@ -4305,8 +4212,6 @@ entities: - 11947 - 9614 - 9613 - - type: AtmosDevice - joinedGrid: 34 - uid: 13432 components: - type: Transform @@ -4320,8 +4225,6 @@ entities: - 11356 - 11948 - 11947 - - type: AtmosDevice - joinedGrid: 34 - uid: 13433 components: - type: Transform @@ -4335,8 +4238,6 @@ entities: - 9621 - 9619 - 13434 - - type: AtmosDevice - joinedGrid: 34 - uid: 13443 components: - type: Transform @@ -4354,8 +4255,6 @@ entities: - 11517 - 11250 - 11005 - - type: AtmosDevice - joinedGrid: 34 - uid: 13671 components: - type: Transform @@ -4371,8 +4270,6 @@ entities: - 13448 - 13449 - 7612 - - type: AtmosDevice - joinedGrid: 34 - uid: 13672 components: - type: Transform @@ -4391,8 +4288,6 @@ entities: - 13454 - 13469 - 13468 - - type: AtmosDevice - joinedGrid: 34 - proto: AirCanister entities: - uid: 1799 @@ -4400,29 +4295,21 @@ entities: - type: Transform pos: -40.5,-29.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 2356 components: - type: Transform pos: -51.5,-14.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 3269 components: - type: Transform pos: -34.5,-50.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 6874 components: - type: Transform pos: -1.5,-42.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - proto: Airlock entities: - uid: 2219 @@ -6910,8 +6797,6 @@ entities: - type: Transform pos: -45.5,-37.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - proto: Beaker entities: - uid: 897 @@ -6923,7 +6808,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 50 name: null @@ -7470,29 +7354,29 @@ entities: - type: Transform pos: 3.582711,-3.4520693 parent: 34 -- proto: BookChefGaming +- proto: BookEngineersHandbook entities: - - uid: 1107 + - uid: 11040 components: - type: Transform - pos: -7.497657,-4.2298393 + pos: -56.022884,-1.4441328 parent: 34 - - uid: 4686 + - uid: 11113 components: - type: Transform - pos: 40.427826,3.5490375 + pos: -28.716812,-29.284609 parent: 34 -- proto: BookEngineersHandbook +- proto: BookHowToCookForFortySpaceman entities: - - uid: 11040 + - uid: 1107 components: - type: Transform - pos: -56.022884,-1.4441328 + pos: -7.497657,-4.2298393 parent: 34 - - uid: 11113 + - uid: 4686 components: - type: Transform - pos: -28.716812,-29.284609 + pos: 40.427826,3.5490375 parent: 34 - proto: BookLeafLoversSecret entities: @@ -28847,23 +28731,6 @@ entities: - type: Transform pos: -43.50117,-6.4077773 parent: 34 -- proto: chem_master - entities: - - uid: 983 - components: - - type: Transform - pos: 1.5,-29.5 - parent: 34 - - uid: 2686 - components: - - type: Transform - pos: -1.5,-28.5 - parent: 34 - - uid: 12338 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 34 - proto: ChemDispenser entities: - uid: 4290 @@ -28888,6 +28755,23 @@ entities: - type: Transform pos: -0.5,-26.5 parent: 34 +- proto: ChemMaster + entities: + - uid: 983 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 34 + - uid: 2686 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 34 + - uid: 12338 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 34 - proto: ChessBoard entities: - uid: 5043 @@ -31635,8 +31519,6 @@ entities: - type: Transform pos: 0.5,-39.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - proto: CryoxadoneBeakerSmall entities: - uid: 12604 @@ -36145,8 +36027,6 @@ entities: - 4750 - 1078 - 3703 - - type: AtmosDevice - joinedGrid: 34 - uid: 8199 components: - type: Transform @@ -36170,8 +36050,6 @@ entities: - 10322 - 998 - 2714 - - type: AtmosDevice - joinedGrid: 34 - uid: 8271 components: - type: Transform @@ -36184,8 +36062,6 @@ entities: - 10319 - 1954 - 10576 - - type: AtmosDevice - joinedGrid: 34 - uid: 8272 components: - type: Transform @@ -36197,8 +36073,6 @@ entities: - 10551 - 10557 - 10556 - - type: AtmosDevice - joinedGrid: 34 - uid: 8273 components: - type: Transform @@ -36214,8 +36088,6 @@ entities: - 10552 - 10551 - 10549 - - type: AtmosDevice - joinedGrid: 34 - uid: 8274 components: - type: Transform @@ -36227,8 +36099,6 @@ entities: - 617 - 10563 - 10565 - - type: AtmosDevice - joinedGrid: 34 - uid: 8275 components: - type: Transform @@ -36240,8 +36110,6 @@ entities: - 10564 - 10565 - 10566 - - type: AtmosDevice - joinedGrid: 34 - uid: 8276 components: - type: Transform @@ -36259,8 +36127,6 @@ entities: - 11252 - 11253 - 5925 - - type: AtmosDevice - joinedGrid: 34 - uid: 8278 components: - type: Transform @@ -36278,8 +36144,6 @@ entities: - 11983 - 11984 - 8724 - - type: AtmosDevice - joinedGrid: 34 - uid: 8279 components: - type: Transform @@ -36298,8 +36162,6 @@ entities: - 10302 - 10308 - 10309 - - type: AtmosDevice - joinedGrid: 34 - uid: 10858 components: - type: Transform @@ -36311,8 +36173,6 @@ entities: - 10325 - 10860 - 10859 - - type: AtmosDevice - joinedGrid: 34 - uid: 10865 components: - type: Transform @@ -36323,8 +36183,6 @@ entities: devices: - 10615 - 10612 - - type: AtmosDevice - joinedGrid: 34 - uid: 10866 components: - type: Transform @@ -36335,8 +36193,6 @@ entities: devices: - 10598 - 10600 - - type: AtmosDevice - joinedGrid: 34 - uid: 11680 components: - type: Transform @@ -36346,8 +36202,6 @@ entities: devices: - 10339 - 10326 - - type: AtmosDevice - joinedGrid: 34 - uid: 11683 components: - type: Transform @@ -36358,8 +36212,6 @@ entities: devices: - 10600 - 11903 - - type: AtmosDevice - joinedGrid: 34 - uid: 11738 components: - type: Transform @@ -36371,8 +36223,6 @@ entities: - 10715 - 10578 - 10712 - - type: AtmosDevice - joinedGrid: 34 - proto: FireAxeCabinetFilled entities: - uid: 1840 @@ -36858,7 +36708,7 @@ entities: pos: -36.5,-22.5 parent: 34 - type: Door - secondsUntilStateChange: -67176.98 + secondsUntilStateChange: -67318.92 state: Closing - uid: 1274 components: @@ -37930,7 +37780,7 @@ entities: - type: Transform pos: 38.57096,-13.383774 parent: 34 -- proto: FoodChili +- proto: FoodChiliPepper entities: - uid: 1 components: @@ -37963,6 +37813,13 @@ entities: - type: Transform pos: -14.555043,-4.342748 parent: 34 +- proto: FoodKebabSkewer + entities: + - uid: 6033 + components: + - type: Transform + pos: 39.471836,-44.454052 + parent: 34 - proto: FoodMealNachos entities: - uid: 12198 @@ -37985,13 +37842,6 @@ entities: - type: Transform pos: 38.530884,-31.460299 parent: 34 -- proto: FoodMeatRatdoubleKebab - entities: - - uid: 6033 - components: - - type: Transform - pos: 39.471836,-44.454052 - parent: 34 - proto: FoodOnion entities: - uid: 11376 @@ -38151,8 +38001,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-35.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#3AB334FF' - uid: 2456 @@ -38163,8 +38011,6 @@ entities: - type: Transform pos: -41.5,-36.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#00FF00FF' - proto: GasFilterFlipped @@ -38177,8 +38023,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-39.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF0000FF' - uid: 1219 @@ -38189,8 +38033,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-41.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1265 components: - type: MetaData @@ -38199,24 +38041,18 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-45.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1546 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-41.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1547 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-41.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 2983 components: - type: MetaData @@ -38227,8 +38063,6 @@ entities: parent: 34 - type: GasFilter transferRate: 100 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3244 @@ -38241,8 +38075,6 @@ entities: parent: 34 - type: GasFilter transferRate: 100 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasMinerCarbonDioxide @@ -38252,8 +38084,6 @@ entities: - type: Transform pos: -51.5,-38.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - proto: GasMinerNitrogen entities: - uid: 1458 @@ -38261,8 +38091,6 @@ entities: - type: Transform pos: -37.5,-39.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - proto: GasMixer entities: - uid: 970 @@ -38277,8 +38105,6 @@ entities: inletTwoConcentration: 0.79 inletOneConcentration: 0.21 targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0000FFFF' - uid: 8111 @@ -38286,8 +38112,6 @@ entities: - type: Transform pos: -56.5,-35.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - proto: GasMixerFlipped entities: - uid: 971 @@ -38296,8 +38120,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-43.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF00FFFF' - uid: 1434 @@ -38308,8 +38130,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-44.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1440 components: - type: MetaData @@ -38318,8 +38138,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-45.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - proto: GasOutletInjector entities: - uid: 925 @@ -38328,8 +38146,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-3.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0088F8FF' - uid: 1216 @@ -38338,40 +38154,30 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-41.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1254 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-39.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1268 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-45.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1536 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-47.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 12603 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-38.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 12660 @@ -38380,8 +38186,6 @@ entities: rot: 3.141592653589793 rad pos: -56.5,-37.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#947507FF' - proto: GasPassiveGate @@ -38392,15 +38196,11 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-49.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 8366 components: - type: Transform pos: -38.5,-33.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8595 @@ -38409,8 +38209,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-5.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasPassiveVent @@ -38421,16 +38219,12 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-4.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 927 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-5.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FFFF00FF' - uid: 1217 @@ -38438,60 +38232,44 @@ entities: - type: Transform pos: -38.5,-43.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1255 components: - type: Transform pos: -36.5,-39.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1256 components: - type: Transform pos: -36.5,-41.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1406 components: - type: Transform pos: -36.5,-45.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1453 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-51.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1531 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-47.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1649 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-38.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 3331 components: - type: Transform pos: -31.5,5.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FFFF00FF' - uid: 12653 @@ -38500,8 +38278,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-39.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12654 @@ -38510,8 +38286,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-38.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasPipeBend @@ -54763,30 +54537,22 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-4.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1542 components: - type: Transform pos: -47.5,-40.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1545 components: - type: Transform pos: -48.5,-40.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1779 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-32.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#F84000FF' - uid: 1780 @@ -54795,8 +54561,6 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,-31.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#F84000FF' - uid: 2416 @@ -54805,32 +54569,24 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-40.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 3290 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-39.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 3415 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-42.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 3811 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-18.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4539 @@ -54839,8 +54595,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,3.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11487 @@ -54849,22 +54603,16 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-35.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 11890 components: - type: Transform pos: -56.5,-34.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 12501 components: - type: Transform pos: -55.5,-25.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 12609 @@ -54873,8 +54621,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-33.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasPressurePump @@ -54885,8 +54631,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-35.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 125 @@ -54895,8 +54639,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-37.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 931 @@ -54905,8 +54647,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-3.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 932 @@ -54917,8 +54657,6 @@ entities: parent: 34 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 34 - uid: 1266 components: - type: Transform @@ -54927,8 +54665,6 @@ entities: parent: 34 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 34 - uid: 1424 components: - type: Transform @@ -54937,8 +54673,6 @@ entities: parent: 34 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 34 - uid: 1425 components: - type: MetaData @@ -54949,8 +54683,6 @@ entities: parent: 34 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 34 - uid: 1426 components: - type: MetaData @@ -54961,8 +54693,6 @@ entities: parent: 34 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 1427 @@ -54975,8 +54705,6 @@ entities: parent: 34 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF00FFFF' - uid: 1535 @@ -54987,8 +54715,6 @@ entities: parent: 34 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 34 - uid: 1537 components: - type: Transform @@ -54996,39 +54722,29 @@ entities: parent: 34 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 34 - uid: 2062 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-38.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 7847 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-41.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 11916 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-37.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 12497 components: - type: Transform pos: -55.5,-26.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 12606 @@ -55037,8 +54753,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-32.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasRecycler @@ -55048,8 +54762,6 @@ entities: - type: Transform pos: -45.5,-35.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#3AB334FF' - proto: GasThermoMachineFreezer @@ -55061,22 +54773,16 @@ entities: parent: 34 - type: GasThermoMachine targetTemperature: 0 - - type: AtmosDevice - joinedGrid: 34 - uid: 1544 components: - type: Transform pos: -50.5,-40.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 4105 components: - type: Transform pos: -1.5,-39.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 6377 components: - type: Transform @@ -55085,8 +54791,6 @@ entities: parent: 34 - type: AtmosPipeColor color: '#03FCD3FF' - - type: AtmosDevice - joinedGrid: 34 - proto: GasThermoMachineHeater entities: - uid: 11463 @@ -55097,8 +54801,6 @@ entities: parent: 34 - type: AtmosPipeColor color: '#3AB334FF' - - type: AtmosDevice - joinedGrid: 34 - proto: GasValve entities: - uid: 930 @@ -55112,8 +54814,6 @@ entities: parent: 34 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FFFF00FF' - uid: 1447 @@ -55124,8 +54824,6 @@ entities: parent: 34 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 34 - uid: 7997 components: - type: Transform @@ -55134,8 +54832,6 @@ entities: parent: 34 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 34 - uid: 12518 components: - type: Transform @@ -55144,8 +54840,6 @@ entities: parent: 34 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF0000FF' - uid: 12562 @@ -55156,8 +54850,6 @@ entities: parent: 34 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 12572 @@ -55168,8 +54860,6 @@ entities: parent: 34 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 12674 @@ -55179,8 +54869,6 @@ entities: parent: 34 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF0000FF' - uid: 12675 @@ -55190,8 +54878,6 @@ entities: parent: 34 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF0000FF' - uid: 12676 @@ -55201,8 +54887,6 @@ entities: parent: 34 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#03FCD3FF' - proto: GasVentPump @@ -55213,15 +54897,11 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-5.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 771 components: - type: Transform pos: -14.5,-10.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 803 @@ -55230,8 +54910,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-8.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2965 @@ -55243,8 +54921,6 @@ entities: - type: DeviceNetwork deviceLists: - 9601 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2986 @@ -55256,8 +54932,6 @@ entities: - type: DeviceNetwork deviceLists: - 9601 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3724 @@ -55266,8 +54940,6 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-34.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3864 @@ -55279,8 +54951,6 @@ entities: - type: DeviceNetwork deviceLists: - 5244 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3897 @@ -55292,8 +54962,6 @@ entities: - type: DeviceNetwork deviceLists: - 5244 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4155 @@ -55305,8 +54973,6 @@ entities: - type: DeviceNetwork deviceLists: - 2410 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4391 @@ -55318,8 +54984,6 @@ entities: - type: DeviceNetwork deviceLists: - 5585 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4449 @@ -55331,8 +54995,6 @@ entities: - type: DeviceNetwork deviceLists: - 5208 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4672 @@ -55344,8 +55006,6 @@ entities: - type: DeviceNetwork deviceLists: - 2410 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4677 @@ -55357,8 +55017,6 @@ entities: - type: DeviceNetwork deviceLists: - 9601 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4769 @@ -55366,8 +55024,6 @@ entities: - type: Transform pos: -17.5,-32.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4783 @@ -55376,8 +55032,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-38.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4849 @@ -55388,8 +55042,6 @@ entities: - type: DeviceNetwork deviceLists: - 7684 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5137 @@ -55398,8 +55050,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-48.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6000 @@ -55411,8 +55061,6 @@ entities: - type: DeviceNetwork deviceLists: - 5585 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6015 @@ -55424,8 +55072,6 @@ entities: - type: DeviceNetwork deviceLists: - 10602 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6020 @@ -55437,8 +55083,6 @@ entities: - type: DeviceNetwork deviceLists: - 12258 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6957 @@ -55450,8 +55094,6 @@ entities: - type: DeviceNetwork deviceLists: - 2410 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7094 @@ -55459,8 +55101,6 @@ entities: - type: Transform pos: -38.5,4.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7164 @@ -55472,8 +55112,6 @@ entities: - type: DeviceNetwork deviceLists: - 5573 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7665 @@ -55485,8 +55123,6 @@ entities: - type: DeviceNetwork deviceLists: - 13430 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7677 @@ -55497,8 +55133,6 @@ entities: - type: DeviceNetwork deviceLists: - 2410 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7772 @@ -55510,8 +55144,6 @@ entities: - type: DeviceNetwork deviceLists: - 11539 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7843 @@ -55520,8 +55152,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-39.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8360 @@ -55530,8 +55160,6 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-37.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8362 @@ -55543,8 +55171,6 @@ entities: - type: DeviceNetwork deviceLists: - 13443 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8363 @@ -55553,8 +55179,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-26.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8364 @@ -55562,8 +55186,6 @@ entities: - type: Transform pos: -38.5,-29.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8404 @@ -55572,8 +55194,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-29.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8409 @@ -55582,8 +55202,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-33.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8440 @@ -55592,8 +55210,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-23.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8458 @@ -55601,8 +55217,6 @@ entities: - type: Transform pos: -16.5,-19.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8463 @@ -55611,8 +55225,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-25.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8579 @@ -55621,8 +55233,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,1.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8610 @@ -55631,8 +55241,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-7.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8626 @@ -55641,8 +55249,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-19.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8634 @@ -55651,8 +55257,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-9.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8642 @@ -55661,8 +55265,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-4.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8643 @@ -55671,8 +55273,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8661 @@ -55680,8 +55280,6 @@ entities: - type: Transform pos: 9.5,-7.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8663 @@ -55690,8 +55288,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-5.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8684 @@ -55700,8 +55296,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,2.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8685 @@ -55713,8 +55307,6 @@ entities: - type: DeviceNetwork deviceLists: - 2525 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8697 @@ -55722,8 +55314,6 @@ entities: - type: Transform pos: -14.5,3.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8698 @@ -55731,15 +55321,11 @@ entities: - type: Transform pos: -24.5,2.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 8699 components: - type: Transform pos: -29.5,1.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8700 @@ -55747,8 +55333,6 @@ entities: - type: Transform pos: -18.5,0.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8701 @@ -55757,8 +55341,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-3.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8722 @@ -55766,8 +55348,6 @@ entities: - type: Transform pos: -0.5,0.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8741 @@ -55776,8 +55356,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,1.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8751 @@ -55785,8 +55363,6 @@ entities: - type: Transform pos: 9.5,10.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8776 @@ -55797,8 +55373,6 @@ entities: - type: DeviceNetwork deviceLists: - 3295 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8779 @@ -55807,8 +55381,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,3.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8780 @@ -55816,8 +55388,6 @@ entities: - type: Transform pos: 17.5,9.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8796 @@ -55826,8 +55396,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,11.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8804 @@ -55836,8 +55404,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-15.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8805 @@ -55846,8 +55412,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-10.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8968 @@ -55856,8 +55420,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-47.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8977 @@ -55866,8 +55428,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-41.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8980 @@ -55876,8 +55436,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-45.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8994 @@ -55886,8 +55444,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-33.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9013 @@ -55895,8 +55451,6 @@ entities: - type: Transform pos: -0.5,-26.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9023 @@ -55905,8 +55459,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-40.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9044 @@ -55914,8 +55466,6 @@ entities: - type: Transform pos: 3.5,-22.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9057 @@ -55923,8 +55473,6 @@ entities: - type: Transform pos: 0.5,-19.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9061 @@ -55932,8 +55480,6 @@ entities: - type: Transform pos: 5.5,-20.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9116 @@ -55942,8 +55488,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,-22.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9182 @@ -55952,8 +55496,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-18.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9191 @@ -55962,8 +55504,6 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-14.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9201 @@ -55971,8 +55511,6 @@ entities: - type: Transform pos: -33.5,-19.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9234 @@ -55981,8 +55519,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-3.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9255 @@ -55991,8 +55527,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,2.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9256 @@ -56001,8 +55535,6 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,2.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9257 @@ -56011,8 +55543,6 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,-4.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9258 @@ -56021,8 +55551,6 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,-4.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9265 @@ -56031,8 +55559,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-5.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9266 @@ -56041,8 +55567,6 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,-1.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9294 @@ -56051,8 +55575,6 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,-6.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9295 @@ -56061,8 +55583,6 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,-6.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9297 @@ -56071,8 +55591,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-7.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9307 @@ -56081,8 +55599,6 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-11.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9308 @@ -56091,8 +55607,6 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,-10.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9346 @@ -56101,8 +55615,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-44.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9469 @@ -56111,8 +55623,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-23.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9470 @@ -56121,8 +55631,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-32.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9594 @@ -56134,8 +55642,6 @@ entities: - type: DeviceNetwork deviceLists: - 2525 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9595 @@ -56147,8 +55653,6 @@ entities: - type: DeviceNetwork deviceLists: - 3874 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9609 @@ -56159,8 +55663,6 @@ entities: - type: DeviceNetwork deviceLists: - 2525 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9614 @@ -56172,8 +55674,6 @@ entities: - type: DeviceNetwork deviceLists: - 13430 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9782 @@ -56182,8 +55682,6 @@ entities: rot: 3.141592653589793 rad pos: -40.5,2.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9783 @@ -56191,8 +55689,6 @@ entities: - type: Transform pos: -40.5,7.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10027 @@ -56200,8 +55696,6 @@ entities: - type: Transform pos: 22.5,-22.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10390 @@ -56210,8 +55704,6 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-26.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10426 @@ -56220,8 +55712,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,6.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10467 @@ -56230,8 +55720,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-36.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10560 @@ -56240,8 +55728,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-27.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11005 @@ -56252,8 +55738,6 @@ entities: - type: DeviceNetwork deviceLists: - 13443 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11112 @@ -56262,8 +55746,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-42.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11404 @@ -56275,8 +55757,6 @@ entities: - type: DeviceNetwork deviceLists: - 2349 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11519 @@ -56285,8 +55765,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-23.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11534 @@ -56298,8 +55776,6 @@ entities: - type: DeviceNetwork deviceLists: - 13432 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11894 @@ -56308,8 +55784,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,13.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11906 @@ -56318,8 +55792,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,16.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11985 @@ -56327,8 +55799,6 @@ entities: - type: Transform pos: -2.5,3.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12072 @@ -56337,8 +55807,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,-49.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12205 @@ -56347,8 +55815,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-8.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12212 @@ -56357,8 +55823,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-13.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12220 @@ -56367,8 +55831,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-30.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12368 @@ -56380,8 +55842,6 @@ entities: - type: DeviceNetwork deviceLists: - 9601 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12457 @@ -56393,8 +55853,6 @@ entities: - type: DeviceNetwork deviceLists: - 7684 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12464 @@ -56406,8 +55864,6 @@ entities: - type: DeviceNetwork deviceLists: - 7684 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12475 @@ -56419,8 +55875,6 @@ entities: - type: DeviceNetwork deviceLists: - 8028 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12476 @@ -56432,8 +55886,6 @@ entities: - type: DeviceNetwork deviceLists: - 8028 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12480 @@ -56445,8 +55897,6 @@ entities: - type: DeviceNetwork deviceLists: - 13672 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12483 @@ -56458,8 +55908,6 @@ entities: - type: DeviceNetwork deviceLists: - 13672 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12485 @@ -56471,8 +55919,6 @@ entities: - type: DeviceNetwork deviceLists: - 13672 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12490 @@ -56484,8 +55930,6 @@ entities: - type: DeviceNetwork deviceLists: - 7683 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12534 @@ -56497,8 +55941,6 @@ entities: - type: DeviceNetwork deviceLists: - 6342 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12843 @@ -56510,8 +55952,6 @@ entities: deviceLists: - 10611 - 9601 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12860 @@ -56520,8 +55960,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,11.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12942 @@ -56530,8 +55968,6 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,3.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12966 @@ -56540,8 +55976,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-40.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13104 @@ -56550,8 +55984,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,16.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13126 @@ -56560,8 +55992,6 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-15.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13190 @@ -56570,8 +56000,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-38.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13214 @@ -56583,8 +56011,6 @@ entities: - type: DeviceNetwork deviceLists: - 13432 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13241 @@ -56596,8 +56022,6 @@ entities: - type: DeviceNetwork deviceLists: - 5208 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13245 @@ -56609,8 +56033,6 @@ entities: - type: DeviceNetwork deviceLists: - 2525 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13448 @@ -56621,8 +56043,6 @@ entities: - type: DeviceNetwork deviceLists: - 13671 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13451 @@ -56634,8 +56054,6 @@ entities: - type: DeviceNetwork deviceLists: - 13671 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13452 @@ -56647,8 +56065,6 @@ entities: - type: DeviceNetwork deviceLists: - 10291 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13454 @@ -56660,8 +56076,6 @@ entities: - type: DeviceNetwork deviceLists: - 13672 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13496 @@ -56673,8 +56087,6 @@ entities: - type: DeviceNetwork deviceLists: - 6342 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13497 @@ -56685,8 +56097,6 @@ entities: - type: DeviceNetwork deviceLists: - 6342 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasVentScrubber @@ -56697,8 +56107,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-4.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 1101 @@ -56710,8 +56118,6 @@ entities: - type: DeviceNetwork deviceLists: - 9601 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 1411 @@ -56723,8 +56129,6 @@ entities: - type: DeviceNetwork deviceLists: - 5244 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 1818 @@ -56736,8 +56140,6 @@ entities: - type: DeviceNetwork deviceLists: - 11539 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 1914 @@ -56745,8 +56147,6 @@ entities: - type: Transform pos: -17.5,-6.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 1974 @@ -56754,8 +56154,6 @@ entities: - type: Transform pos: -19.5,-19.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2451 @@ -56763,8 +56161,6 @@ entities: - type: Transform pos: -33.5,-35.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2601 @@ -56773,8 +56169,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-46.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2936 @@ -56783,8 +56177,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-42.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3881 @@ -56796,8 +56188,6 @@ entities: - type: DeviceNetwork deviceLists: - 5244 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4079 @@ -56809,8 +56199,6 @@ entities: - type: DeviceNetwork deviceLists: - 2410 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4159 @@ -56822,8 +56210,6 @@ entities: - type: DeviceNetwork deviceLists: - 2410 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4472 @@ -56835,8 +56221,6 @@ entities: - type: DeviceNetwork deviceLists: - 5585 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4957 @@ -56848,8 +56232,6 @@ entities: - type: DeviceNetwork deviceLists: - 12258 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5850 @@ -56858,8 +56240,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,1.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5851 @@ -56868,8 +56248,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,8.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5915 @@ -56878,8 +56256,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-5.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5997 @@ -56891,8 +56267,6 @@ entities: - type: DeviceNetwork deviceLists: - 5585 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6096 @@ -56904,8 +56278,6 @@ entities: - type: DeviceNetwork deviceLists: - 8028 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6113 @@ -56914,8 +56286,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-5.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6554 @@ -56924,8 +56294,6 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-38.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6873 @@ -56934,8 +56302,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-40.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7185 @@ -56947,8 +56313,6 @@ entities: - type: DeviceNetwork deviceLists: - 5573 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7667 @@ -56960,8 +56324,6 @@ entities: - type: DeviceNetwork deviceLists: - 13430 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7973 @@ -56969,8 +56331,6 @@ entities: - type: Transform pos: -16.5,0.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7981 @@ -56979,8 +56339,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-1.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7987 @@ -56988,8 +56346,6 @@ entities: - type: Transform pos: -30.5,1.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7988 @@ -56997,8 +56353,6 @@ entities: - type: Transform pos: -23.5,2.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7989 @@ -57006,8 +56360,6 @@ entities: - type: Transform pos: -17.5,3.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8195 @@ -57019,8 +56371,6 @@ entities: - type: DeviceNetwork deviceLists: - 2349 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8424 @@ -57029,8 +56379,6 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-25.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8817 @@ -57041,8 +56389,6 @@ entities: - type: DeviceNetwork deviceLists: - 2525 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8836 @@ -57054,8 +56400,6 @@ entities: - type: DeviceNetwork deviceLists: - 6342 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8920 @@ -57067,8 +56411,6 @@ entities: - type: DeviceNetwork deviceLists: - 2525 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8936 @@ -57077,8 +56419,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,1.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8993 @@ -57087,8 +56427,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-32.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9010 @@ -57097,8 +56435,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-28.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9372 @@ -57107,8 +56443,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-33.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9373 @@ -57117,8 +56451,6 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,-31.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9374 @@ -57127,8 +56459,6 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-31.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9414 @@ -57139,8 +56469,6 @@ entities: - type: DeviceNetwork deviceLists: - 13443 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9445 @@ -57149,8 +56477,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-18.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9456 @@ -57159,8 +56485,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-26.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9460 @@ -57168,8 +56492,6 @@ entities: - type: Transform pos: -22.5,-18.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9496 @@ -57178,8 +56500,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-25.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9510 @@ -57188,8 +56508,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-10.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9522 @@ -57197,8 +56515,6 @@ entities: - type: Transform pos: -9.5,-8.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9534 @@ -57207,8 +56523,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-6.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9545 @@ -57217,8 +56531,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-9.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9546 @@ -57227,8 +56539,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-7.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9562 @@ -57237,8 +56547,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-18.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9571 @@ -57247,8 +56555,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-20.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9590 @@ -57256,8 +56562,6 @@ entities: - type: Transform pos: 4.5,-22.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9593 @@ -57265,8 +56569,6 @@ entities: - type: Transform pos: 6.5,-20.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9598 @@ -57278,8 +56580,6 @@ entities: - type: DeviceNetwork deviceLists: - 2525 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9599 @@ -57291,8 +56591,6 @@ entities: - type: DeviceNetwork deviceLists: - 3874 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9610 @@ -57300,8 +56598,6 @@ entities: - type: Transform pos: 5.5,-35.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9613 @@ -57312,8 +56608,6 @@ entities: - type: DeviceNetwork deviceLists: - 13430 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9615 @@ -57325,8 +56619,6 @@ entities: - type: DeviceNetwork deviceLists: - 10602 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9620 @@ -57338,8 +56630,6 @@ entities: - type: DeviceNetwork deviceLists: - 5208 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9637 @@ -57351,8 +56641,6 @@ entities: - type: DeviceNetwork deviceLists: - 2525 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9638 @@ -57364,8 +56652,6 @@ entities: - type: DeviceNetwork deviceLists: - 5208 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9659 @@ -57374,8 +56660,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-47.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9660 @@ -57384,8 +56668,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-43.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9686 @@ -57394,8 +56676,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-46.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9687 @@ -57404,8 +56684,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-45.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#F84000FF' - uid: 9704 @@ -57413,8 +56691,6 @@ entities: - type: Transform pos: 3.5,0.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9706 @@ -57423,8 +56699,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,4.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9707 @@ -57433,8 +56707,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,3.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9764 @@ -57443,8 +56715,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-11.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#F84000FF' - uid: 9765 @@ -57453,8 +56723,6 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,-9.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#F84000FF' - uid: 9766 @@ -57463,8 +56731,6 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,-4.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9777 @@ -57472,8 +56738,6 @@ entities: - type: Transform pos: -36.5,2.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9799 @@ -57482,8 +56746,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-3.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9800 @@ -57492,8 +56754,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-3.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9805 @@ -57502,8 +56762,6 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,-0.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9822 @@ -57511,8 +56769,6 @@ entities: - type: Transform pos: -44.5,2.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9823 @@ -57520,8 +56776,6 @@ entities: - type: Transform pos: -48.5,1.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9824 @@ -57530,8 +56784,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,-4.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9825 @@ -57540,8 +56792,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-3.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9844 @@ -57549,8 +56799,6 @@ entities: - type: Transform pos: -46.5,-6.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9845 @@ -57558,8 +56806,6 @@ entities: - type: Transform pos: -51.5,-6.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9875 @@ -57568,8 +56814,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,1.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9886 @@ -57578,8 +56822,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,7.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9887 @@ -57587,8 +56829,6 @@ entities: - type: Transform pos: 10.5,11.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9892 @@ -57596,8 +56836,6 @@ entities: - type: Transform pos: 17.5,6.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9894 @@ -57606,8 +56844,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,9.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9902 @@ -57616,8 +56852,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,10.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9904 @@ -57629,8 +56863,6 @@ entities: - type: DeviceNetwork deviceLists: - 3295 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9925 @@ -57639,8 +56871,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-12.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10055 @@ -57648,8 +56878,6 @@ entities: - type: Transform pos: 11.5,-21.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10094 @@ -57658,8 +56886,6 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-40.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10098 @@ -57668,8 +56894,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-44.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10218 @@ -57677,8 +56901,6 @@ entities: - type: Transform pos: 28.5,-22.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10466 @@ -57687,8 +56909,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-35.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10672 @@ -57697,8 +56917,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-20.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11250 @@ -57709,8 +56927,6 @@ entities: - type: DeviceNetwork deviceLists: - 13443 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11274 @@ -57719,8 +56935,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-17.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11355 @@ -57732,8 +56946,6 @@ entities: - type: DeviceNetwork deviceLists: - 13432 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11356 @@ -57745,8 +56957,6 @@ entities: - type: DeviceNetwork deviceLists: - 13432 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11527 @@ -57755,8 +56965,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-27.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11575 @@ -57765,8 +56973,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-34.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11830 @@ -57774,8 +56980,6 @@ entities: - type: Transform pos: 9.5,14.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11902 @@ -57784,8 +56988,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,13.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11905 @@ -57794,8 +56996,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-23.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11986 @@ -57803,8 +57003,6 @@ entities: - type: Transform pos: -1.5,3.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12015 @@ -57813,8 +57011,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-1.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12141 @@ -57825,8 +57021,6 @@ entities: - type: DeviceNetwork deviceLists: - 7684 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12168 @@ -57838,8 +57032,6 @@ entities: - type: DeviceNetwork deviceLists: - 7684 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12173 @@ -57851,8 +57043,6 @@ entities: - type: DeviceNetwork deviceLists: - 7684 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12177 @@ -57864,8 +57054,6 @@ entities: - type: DeviceNetwork deviceLists: - 7683 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12186 @@ -57876,8 +57064,6 @@ entities: - type: DeviceNetwork deviceLists: - 10291 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12187 @@ -57889,8 +57075,6 @@ entities: - type: DeviceNetwork deviceLists: - 13672 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12204 @@ -57899,8 +57083,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-11.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12219 @@ -57909,8 +57091,6 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-29.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12226 @@ -57919,8 +57099,6 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-31.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12358 @@ -57929,8 +57107,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-38.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12396 @@ -57942,8 +57118,6 @@ entities: - type: DeviceNetwork deviceLists: - 2410 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12401 @@ -57955,8 +57129,6 @@ entities: - type: DeviceNetwork deviceLists: - 2410 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12402 @@ -57968,8 +57140,6 @@ entities: - type: DeviceNetwork deviceLists: - 13672 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12421 @@ -57978,8 +57148,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-41.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12431 @@ -57991,8 +57159,6 @@ entities: - type: DeviceNetwork deviceLists: - 13672 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12477 @@ -58004,8 +57170,6 @@ entities: - type: DeviceNetwork deviceLists: - 8028 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12844 @@ -58017,8 +57181,6 @@ entities: deviceLists: - 10611 - 9601 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12879 @@ -58027,8 +57189,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,8.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12889 @@ -58037,8 +57197,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-40.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12931 @@ -58047,8 +57205,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-34.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13106 @@ -58057,8 +57213,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,15.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13127 @@ -58067,8 +57221,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-15.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13449 @@ -58080,8 +57232,6 @@ entities: - type: DeviceNetwork deviceLists: - 13671 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13450 @@ -58093,8 +57243,6 @@ entities: - type: DeviceNetwork deviceLists: - 13671 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13453 @@ -58106,8 +57254,6 @@ entities: - type: DeviceNetwork deviceLists: - 13672 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13498 @@ -58119,8 +57265,6 @@ entities: - type: DeviceNetwork deviceLists: - 6342 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13499 @@ -58131,8 +57275,6 @@ entities: - type: DeviceNetwork deviceLists: - 6342 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVolumePump @@ -58142,16 +57284,12 @@ entities: - type: Transform pos: -41.5,-48.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 4075 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-28.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 4076 @@ -58160,8 +57298,6 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-30.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF0000FF' - uid: 7821 @@ -58169,8 +57305,6 @@ entities: - type: Transform pos: -58.5,-35.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - proto: Gauze @@ -62135,8 +61269,6 @@ entities: rot: 3.141592653589793 rad pos: -59.5,-21.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 11429 @@ -62145,8 +61277,6 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-21.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 11446 @@ -62154,8 +61284,6 @@ entities: - type: Transform pos: -58.5,-38.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11995 @@ -62163,8 +61291,6 @@ entities: - type: Transform pos: -57.5,-38.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - type: AtmosPipeColor color: '#FF1212FF' - proto: HighSecCommandLocked @@ -63483,7 +62609,10 @@ entities: pos: -42.5,10.5 parent: 34 - type: RandomSpawner + prototypes: [] rareChance: 0.1 + rarePrototypes: [] + gameRules: [] - uid: 12902 components: - type: Transform @@ -63638,6 +62767,13 @@ entities: - type: Transform pos: 6.5,-19.5 parent: 34 +- proto: MaterialSilo + entities: + - uid: 13307 + components: + - type: Transform + pos: -38.5,-50.5 + parent: 34 - proto: MaterialWoodPlank1 entities: - uid: 7808 @@ -64010,22 +63146,16 @@ entities: - type: Transform pos: -38.5,-29.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 7818 components: - type: Transform pos: -52.5,-33.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 12979 components: - type: Transform pos: -55.5,-16.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - proto: NitrousOxideTankFilled entities: - uid: 8957 @@ -64074,7 +63204,7 @@ entities: - type: Transform pos: -51.5,-17.5 parent: 34 -- proto: Oracle +- proto: OracleSpawner entities: - uid: 592 components: @@ -64116,43 +63246,31 @@ entities: - type: Transform pos: -37.5,-29.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 10358 components: - type: Transform pos: 29.5,8.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 10359 components: - type: Transform pos: -23.5,-4.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 10618 components: - type: Transform pos: -30.5,-42.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 12324 components: - type: Transform pos: -52.5,-31.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 12980 components: - type: Transform pos: -50.5,-20.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - proto: PaintingBlunt entities: - uid: 2407 @@ -64495,8 +63613,6 @@ entities: - type: Transform pos: -52.5,-32.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 13338 @@ -64525,6 +63641,13 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-43.5 parent: 34 +- proto: PlayerStationAi + entities: + - uid: 11721 + components: + - type: Transform + pos: 66.5,-23.5 + parent: 34 - proto: PlushieAtmosian entities: - uid: 7822 @@ -72058,14 +71181,6 @@ entities: - type: Transform pos: -10.5,6.5 parent: 34 -- proto: SignCourt - entities: - - uid: 13463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-25.5 - parent: 34 - proto: SignCryogenicsMed entities: - uid: 1313 @@ -72492,15 +71607,13 @@ entities: - type: Transform pos: -15.5,-20.5 parent: 34 -- proto: SignHydro2 +- proto: SignHydro1 entities: - uid: 1273 components: - type: Transform pos: -14.5,-9.5 parent: 34 -- proto: SignHydro3 - entities: - uid: 10372 components: - type: Transform @@ -72537,6 +71650,12 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,7.5 parent: 34 + - uid: 13463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 34 - proto: SignMail entities: - uid: 1895 @@ -72843,7 +71962,7 @@ entities: - type: Transform pos: -50.5,-30.5 parent: 34 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 611 components: @@ -73156,7 +72275,7 @@ entities: - type: Transform pos: 25.5,-45.5 parent: 34 -- proto: SophicScribe +- proto: SophicScribeSpawner entities: - uid: 388 components: @@ -73370,6 +72489,18 @@ entities: - type: Transform pos: -28.5,-34.5 parent: 34 +- proto: SpawnPointAdminAssistant + entities: + - uid: 13758 + components: + - type: Transform + pos: 53.5,-32.5 + parent: 34 + - uid: 13759 + components: + - type: Transform + pos: 51.5,-32.5 + parent: 34 - proto: SpawnPointAtmos entities: - uid: 10425 @@ -73394,6 +72525,13 @@ entities: - type: Transform pos: 4.5,-5.5 parent: 34 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 13761 + components: + - type: Transform + pos: 54.5,-32.5 + parent: 34 - proto: SpawnPointBorg entities: - uid: 1941 @@ -73734,6 +72872,13 @@ entities: - type: Transform pos: 8.5,-8.5 parent: 34 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 13760 + components: + - type: Transform + pos: 50.5,-32.5 + parent: 34 - proto: SpawnPointObserver entities: - uid: 11309 @@ -74440,36 +73585,26 @@ entities: - type: Transform pos: -30.5,-4.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1647 components: - type: Transform pos: -47.5,-40.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1648 components: - type: Transform pos: -48.5,-40.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1795 components: - type: Transform pos: -40.5,-31.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - uid: 1796 components: - type: Transform pos: -40.5,-32.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - proto: SubstationBasic entities: - uid: 2236 @@ -77485,8 +76620,6 @@ entities: - type: Transform pos: -55.5,-29.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - proto: TegCirculator entities: - uid: 6159 @@ -77845,13 +76978,6 @@ entities: - type: Transform pos: -15.406212,4.3849206 parent: 34 -- proto: ToyAi - entities: - - uid: 13307 - components: - - type: Transform - pos: 66.48126,-23.344564 - parent: 34 - proto: ToyFigurineHeadOfSecurity entities: - uid: 3612 @@ -86507,8 +85633,6 @@ entities: - type: Transform pos: -52.5,-30.5 parent: 34 - - type: AtmosDevice - joinedGrid: 34 - proto: WeaponCapacitorRecharger entities: - uid: 3395 diff --git a/Resources/Maps/submarine.yml b/Resources/Maps/submarine.yml index cabb1ff29f01b5..3f1bc9eb174337 100644 --- a/Resources/Maps/submarine.yml +++ b/Resources/Maps/submarine.yml @@ -781,67 +781,67 @@ entities: color: '#BA8841FF' id: Arrows decals: - 6392: -48.5741,12.641021 - 6393: -51.04285,12.648833 + 6375: -48.5741,12.641021 + 6376: -51.04285,12.648833 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 5207: -19.52188,25.64454 - 5208: -22.029692,25.621103 - 5209: 29.35393,23.657501 - 5210: 27.07268,23.634064 - 6958: -13,-22 - 6959: -16.595276,-22.00405 - 6960: -14.790589,-21.988424 + 5190: -19.52188,25.64454 + 5191: -22.029692,25.621103 + 5192: 29.35393,23.657501 + 5193: 27.07268,23.634064 + 6941: -13,-22 + 6942: -16.595276,-22.00405 + 6943: -14.790589,-21.988424 - node: color: '#FFFFFFFF' id: Arrows decals: 7: 6,25 - 4321: -19,-25 - 6900: -19,-45 + 4310: -19,-25 + 6883: -19,-45 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 6949: -14,-19 + 6932: -14,-19 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: 6: 11,23 - 6878: -23.029945,-21.439867 - 6899: -23,-44 - 6903: -21,-20 + 6861: -23.029945,-21.439867 + 6882: -23,-44 + 6886: -21,-20 - node: color: '#91D4FFFF' id: ArrowsGreyscale decals: - 7166: 30,-1 - 7167: 31,-1 + 7149: 30,-1 + 7150: 31,-1 - node: angle: 1.5707963267948966 rad color: '#91D4FFFF' id: ArrowsGreyscale decals: - 7168: 27.822773,2.0505733 - 7169: 27.807148,1.0505733 - 7170: 23.822773,2.0427608 - 7171: 23.830585,1.0583858 + 7151: 27.822773,2.0505733 + 7152: 27.807148,1.0505733 + 7153: 23.822773,2.0427608 + 7154: 23.830585,1.0583858 - node: color: '#FFFFFFFF' id: Basalt1 decals: 210: 37,41 3024: -99.61036,26.588285 - 4933: 93.02058,51.60418 - 4944: 66.34715,58.84518 - 4957: 73.95262,66.55768 - 5128: 96.39168,49.646423 + 4916: 93.02058,51.60418 + 4927: 66.34715,58.84518 + 4940: 73.95262,66.55768 + 5111: 96.39168,49.646423 - node: color: '#FFFFFFFF' id: Basalt2 @@ -851,41 +851,41 @@ entities: 290: -100.96809,26.472893 291: -100.95246,29.691643 292: -101.12434,18.972893 - 4931: 94.12662,39.650402 - 4932: 102.7237,50.338554 - 4936: 95.55183,54.158867 - 4937: 89.750755,51.463554 - 4945: 65.45653,53.67721 - 4946: 71.17528,55.224087 - 5099: 95.92281,26.526537 - 5100: 103.23531,23.081224 - 5101: 97.283325,33.188183 - 5102: 91.11926,33.516308 - 5103: 85.70933,33.896484 - 5104: 94.42808,41.115234 - 5105: 96.5023,50.21054 - 5106: 88.451515,54.826 - 5107: 82.01792,55.224438 - 5108: 77.02674,55.33442 - 5109: 74.21675,48.18598 - 5110: 65.33786,55.943794 - 5111: 69.333954,65.73181 - 5112: 76.6113,70.67297 - 5113: 65.309555,75.46353 - 5114: 61.465096,66.79979 - 5115: 60.726814,60.061504 - 5116: 57.95337,78.038086 - 5117: 55.152588,85.06621 - 5118: 64.66163,79.07793 - 5119: 79.57742,74.000534 - 5120: 86.57352,76.906784 - 5121: 87.31241,68.669266 - 5122: 81.903885,65.11125 - 5123: 90.08174,62.43762 - 5124: 96.50362,63.035275 - 5125: 90.40101,56.661156 - 5126: 102.50646,58.758724 - 5127: 96.989334,53.970642 + 4914: 94.12662,39.650402 + 4915: 102.7237,50.338554 + 4919: 95.55183,54.158867 + 4920: 89.750755,51.463554 + 4928: 65.45653,53.67721 + 4929: 71.17528,55.224087 + 5082: 95.92281,26.526537 + 5083: 103.23531,23.081224 + 5084: 97.283325,33.188183 + 5085: 91.11926,33.516308 + 5086: 85.70933,33.896484 + 5087: 94.42808,41.115234 + 5088: 96.5023,50.21054 + 5089: 88.451515,54.826 + 5090: 82.01792,55.224438 + 5091: 77.02674,55.33442 + 5092: 74.21675,48.18598 + 5093: 65.33786,55.943794 + 5094: 69.333954,65.73181 + 5095: 76.6113,70.67297 + 5096: 65.309555,75.46353 + 5097: 61.465096,66.79979 + 5098: 60.726814,60.061504 + 5099: 57.95337,78.038086 + 5100: 55.152588,85.06621 + 5101: 64.66163,79.07793 + 5102: 79.57742,74.000534 + 5103: 86.57352,76.906784 + 5104: 87.31241,68.669266 + 5105: 81.903885,65.11125 + 5106: 90.08174,62.43762 + 5107: 96.50362,63.035275 + 5108: 90.40101,56.661156 + 5109: 102.50646,58.758724 + 5110: 96.989334,53.970642 - node: color: '#FFFFFFFF' id: Basalt3 @@ -893,42 +893,42 @@ entities: 285: -105.23371,25.754143 286: -104.88996,27.597893 287: -100.99934,29.222893 - 5063: 101.953514,10.329902 - 5064: 100.68789,23.947906 - 5065: 94.88548,29.055845 - 5066: 92.516785,31.606804 - 5067: 98.419014,36.156094 - 5068: 101.26667,41.858273 - 5069: 99.93073,51.26495 - 5070: 95.231514,49.823544 - 5071: 93.450264,53.292294 - 5072: 97.61042,53.990532 - 5073: 96.23933,57.27736 - 5074: 100.82136,59.252556 - 5075: 92.77103,63.009056 - 5076: 93.90295,64.58206 - 5077: 88.41857,69.08588 - 5078: 86.9917,72.94891 - 5079: 81.58891,69.753204 - 5080: 82.221725,73.16336 - 5081: 83.920944,61.88992 - 5082: 85.90141,76.88017 - 5083: 91.85454,78.075485 - 5084: 74.8638,74.38379 - 5085: 74.72911,65.52536 - 5086: 68.15042,69.81442 - 5087: 65.73852,64.68848 - 5088: 67.05102,55.861427 - 5089: 74.72735,48.126648 - 5090: 78.42977,33.29339 - 5091: 69.17623,39.117607 - 5092: 77.97701,30.437107 - 5093: 91.013565,25.139786 - 5094: 87.85332,21.59596 - 5095: 92.91534,16.061563 - 5096: 94.520805,20.913126 - 5097: 99.61789,22.061563 - 5098: 90.17258,10.411268 + 5046: 101.953514,10.329902 + 5047: 100.68789,23.947906 + 5048: 94.88548,29.055845 + 5049: 92.516785,31.606804 + 5050: 98.419014,36.156094 + 5051: 101.26667,41.858273 + 5052: 99.93073,51.26495 + 5053: 95.231514,49.823544 + 5054: 93.450264,53.292294 + 5055: 97.61042,53.990532 + 5056: 96.23933,57.27736 + 5057: 100.82136,59.252556 + 5058: 92.77103,63.009056 + 5059: 93.90295,64.58206 + 5060: 88.41857,69.08588 + 5061: 86.9917,72.94891 + 5062: 81.58891,69.753204 + 5063: 82.221725,73.16336 + 5064: 83.920944,61.88992 + 5065: 85.90141,76.88017 + 5066: 91.85454,78.075485 + 5067: 74.8638,74.38379 + 5068: 74.72911,65.52536 + 5069: 68.15042,69.81442 + 5070: 65.73852,64.68848 + 5071: 67.05102,55.861427 + 5072: 74.72735,48.126648 + 5073: 78.42977,33.29339 + 5074: 69.17623,39.117607 + 5075: 77.97701,30.437107 + 5076: 91.013565,25.139786 + 5077: 87.85332,21.59596 + 5078: 92.91534,16.061563 + 5079: 94.520805,20.913126 + 5080: 99.61789,22.061563 + 5081: 90.17258,10.411268 - node: color: '#FFFFFFFF' id: Basalt4 @@ -946,23 +946,23 @@ entities: 3027: -87.95603,15.0817375 3028: -87.9215,1.822197 3029: -100.69823,2.235566 - 4751: 78.19888,84.978485 - 4752: 77.206696,80.81442 - 4930: 99.22427,37.52931 - 4940: 66.4024,54.743618 - 4954: 66.35887,69.92096 - 4958: 76.03856,65.51471 + 4734: 78.19888,84.978485 + 4735: 77.206696,80.81442 + 4913: 99.22427,37.52931 + 4923: 66.4024,54.743618 + 4937: 66.35887,69.92096 + 4941: 76.03856,65.51471 - node: color: '#FFFFFFFF' id: Basalt5 decals: 224: 56,8 - 4748: 76.47232,81.90817 - 4929: 98.06412,38.056652 - 4941: 67.175835,54.216274 - 4947: 73.437,52.235806 - 4950: 70.437,49.880337 - 4955: 67.179184,68.186584 + 4731: 76.47232,81.90817 + 4912: 98.06412,38.056652 + 4924: 67.175835,54.216274 + 4930: 73.437,52.235806 + 4933: 70.437,49.880337 + 4938: 67.179184,68.186584 - node: color: '#FFFFFFFF' id: Basalt6 @@ -984,52 +984,52 @@ entities: 3021: -101.94239,-10.427048 3022: -100.53614,-12.050097 3023: -99.80958,20.762344 - 4934: 93.47761,51.100273 - 4942: 64.50731,55.036587 - 4953: 67.15575,67.155334 - 4960: 76.729965,71.06819 - 4961: 63.909653,76.17592 - 4962: 62.585304,72.767166 - 4963: 58.984917,63.1665 - 4964: 60.892647,61.217464 - 4965: 72.78663,47.70175 - 4966: 73.384,41.707333 - 4967: 77.103874,38.038437 - 4968: 74.78356,34.886093 - 4969: 79.43612,30.653725 - 4970: 81.67582,29.316776 - 4971: 81.617004,29.2005 - 4972: 89.283424,25.58541 - 4973: 94.9762,19.99961 - 4974: 97.54006,19.931826 - 4975: 94.426544,9.595158 - 4976: 97.44998,8.668957 - 4977: 101.082794,11.282238 - 4978: 102.3367,23.698109 - 4979: 99.78201,24.425102 - 4980: 100.39139,27.916481 - 4981: 98.80936,36.606403 - 4982: 93.17848,39.471783 - 4983: 94.174576,42.237408 - 4984: 100.643326,41.642517 - 4985: 101.66286,49.579823 - 4986: 95.34645,49.828194 - 4987: 96.35426,53.60163 - 4988: 97.29176,53.179756 - 4989: 96.518326,57.788383 - 4990: 101.10036,59.265377 - 4991: 93.28503,62.223106 - 4992: 92.0194,63.453575 - 4993: 93.32018,65.56296 - 4994: 91.51511,68.54053 - 4995: 88.63218,68.89754 - 4996: 86.93297,71.68956 - 4997: 86.72202,76.09238 - 4998: 81.45493,72.886536 - 4999: 81.68788,69.36061 - 5000: 75.14882,73.27467 - 5001: 74.84413,74.32936 - 5002: 74.96223,79.80643 + 4917: 93.47761,51.100273 + 4925: 64.50731,55.036587 + 4936: 67.15575,67.155334 + 4943: 76.729965,71.06819 + 4944: 63.909653,76.17592 + 4945: 62.585304,72.767166 + 4946: 58.984917,63.1665 + 4947: 60.892647,61.217464 + 4948: 72.78663,47.70175 + 4949: 73.384,41.707333 + 4950: 77.103874,38.038437 + 4951: 74.78356,34.886093 + 4952: 79.43612,30.653725 + 4953: 81.67582,29.316776 + 4954: 81.617004,29.2005 + 4955: 89.283424,25.58541 + 4956: 94.9762,19.99961 + 4957: 97.54006,19.931826 + 4958: 94.426544,9.595158 + 4959: 97.44998,8.668957 + 4960: 101.082794,11.282238 + 4961: 102.3367,23.698109 + 4962: 99.78201,24.425102 + 4963: 100.39139,27.916481 + 4964: 98.80936,36.606403 + 4965: 93.17848,39.471783 + 4966: 94.174576,42.237408 + 4967: 100.643326,41.642517 + 4968: 101.66286,49.579823 + 4969: 95.34645,49.828194 + 4970: 96.35426,53.60163 + 4971: 97.29176,53.179756 + 4972: 96.518326,57.788383 + 4973: 101.10036,59.265377 + 4974: 93.28503,62.223106 + 4975: 92.0194,63.453575 + 4976: 93.32018,65.56296 + 4977: 91.51511,68.54053 + 4978: 88.63218,68.89754 + 4979: 86.93297,71.68956 + 4980: 86.72202,76.09238 + 4981: 81.45493,72.886536 + 4982: 81.68788,69.36061 + 4983: 75.14882,73.27467 + 4984: 74.84413,74.32936 + 4985: 74.96223,79.80643 - node: color: '#FFFFFFFF' id: Basalt7 @@ -1044,20 +1044,20 @@ entities: 283: -101.63996,25.785393 284: -101.63996,30.004143 293: -104.87434,23.082268 - 4935: 95.387764,55.15496 - 4943: 65.60887,57.89596 - 4948: 74.3745,51.80221 - 4949: 74.937,51.134243 + 4918: 95.387764,55.15496 + 4926: 65.60887,57.89596 + 4931: 74.3745,51.80221 + 4932: 74.937,51.134243 - node: color: '#FFFFFFFF' id: Basalt8 decals: 262: -105.06184,23.816643 263: -104.85871,20.957268 - 4753: 74.612946,79.68942 - 4951: 70.47215,51.15768 - 4952: 66.136215,66.8858 - 4956: 70.9409,70.29596 + 4736: 74.612946,79.68942 + 4934: 70.47215,51.15768 + 4935: 66.136215,66.8858 + 4939: 70.9409,70.29596 - node: color: '#FFFFFFFF' id: Basalt9 @@ -1067,28 +1067,28 @@ entities: 265: -101.93684,22.176018 266: -101.57746,27.582268 267: -100.88996,30.160393 - 4749: 75.96451,81.634735 - 4750: 77.706696,84.353485 - 4938: 90.793724,50.84246 - 4939: 84.163475,54.474087 - 4959: 75.37059,65.9483 + 4732: 75.96451,81.634735 + 4733: 77.706696,84.353485 + 4921: 90.793724,50.84246 + 4922: 84.163475,54.474087 + 4942: 75.37059,65.9483 - node: angle: -1.5707963267948966 rad color: '#845606FF' id: Bot decals: - 6951: -17,-21 - 6952: -17,-22 - 6953: -13,-22 - 6954: -13,-21 - 6955: -15,-22 + 6934: -17,-21 + 6935: -17,-22 + 6936: -13,-22 + 6937: -13,-21 + 6938: -15,-22 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 6956: -16,-22 - 6957: -14,-22 + 6939: -16,-22 + 6940: -14,-22 - node: color: '#FFFFFFFF' id: Bot @@ -1101,28 +1101,28 @@ entities: 3354: -61,28 3355: -61,29 3356: -61,30 - 4739: 42,42 - 4740: 43,42 - 4741: 44,42 - 4742: 96,72 - 4743: 97,72 - 4744: 98,72 - 4745: 98,73 - 4746: 97,73 - 4747: 96,73 - 6901: -21,-19 - 6902: -15,-19 + 4722: 42,42 + 4723: 43,42 + 4724: 44,42 + 4725: 96,72 + 4726: 97,72 + 4727: 98,72 + 4728: 98,73 + 4729: 97,73 + 4730: 96,73 + 6884: -21,-19 + 6885: -15,-19 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Bot decals: - 6879: -23,-22 - 6880: -19,-26 - 6881: -23,-46 - 6882: -23,-43 - 6883: -19,-43 - 6884: -19,-46 + 6862: -23,-22 + 6863: -19,-26 + 6864: -23,-46 + 6865: -23,-43 + 6866: -19,-43 + 6867: -19,-46 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -1145,11 +1145,11 @@ entities: color: '#B02E26FF' id: Box decals: - 5221: -12,37 - 5222: -11,37 - 5458: -8,37 - 5459: -7,37 - 5460: -6,37 + 5204: -12,37 + 5205: -11,37 + 5441: -8,37 + 5442: -7,37 + 5443: -6,37 - node: color: '#FFFFFFFF' id: Box @@ -1172,329 +1172,329 @@ entities: 2031: 49,51 2032: 50,51 2033: 60,50 - 4340: 26,16 - 4702: 23,-24 - 4703: 21,-24 - 4704: 21,-23 - 4705: 23,-23 - 5743: -36,12 - 5744: -35,12 - 5778: 97,-11 - 5779: 105,-11 - 5780: 105,-23 - 5781: 97,-23 - 6075: -49,39 - 6076: -48,39 - 6077: -47,39 - 6078: -46,39 - 6079: -61,46 - 6080: -60,46 - 6081: -59,46 - 6082: -58,46 - 6083: -57,46 - 6084: -56,46 - 7046: 28,16 - 7047: 28,15 - 7048: 28,14 - 7049: 28,13 - 7050: 28,12 - 7051: 28,11 + 4329: 26,16 + 4685: 23,-24 + 4686: 21,-24 + 4687: 21,-23 + 4688: 23,-23 + 5726: -36,12 + 5727: -35,12 + 5761: 97,-11 + 5762: 105,-11 + 5763: 105,-23 + 5764: 97,-23 + 6058: -49,39 + 6059: -48,39 + 6060: -47,39 + 6061: -46,39 + 6062: -61,46 + 6063: -60,46 + 6064: -59,46 + 6065: -58,46 + 6066: -57,46 + 6067: -56,46 + 7029: 28,16 + 7030: 28,15 + 7031: 28,14 + 7032: 28,13 + 7033: 28,12 + 7034: 28,11 - node: color: '#B02E26FF' id: BoxGreyscale decals: - 5894: 1,-27 - 5895: 1,-21 - 6145: 1,40 - 6146: 1,46 + 5877: 1,-27 + 5878: 1,-21 + 6128: 1,40 + 6129: 1,46 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 7264: -21,-22 - 7265: -21,-23 - 7266: -21,-24 - 7267: -20,-24 - 7268: -20,-23 - 7269: -20,-22 + 7194: -21,-22 + 7195: -21,-23 + 7196: -21,-24 + 7197: -20,-24 + 7198: -20,-23 + 7199: -20,-22 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: BoxGreyscale decals: - 6885: -24,-44 - 6886: -24,-45 - 6887: -23,-45 - 6888: -23,-44 - 6889: -21,-44 - 6890: -22,-44 - 6891: -22,-45 - 6892: -21,-45 - 6893: -20,-45 - 6894: -20,-44 - 6895: -19,-44 - 6896: -19,-45 - 6897: -18,-45 - 6898: -18,-44 + 6868: -24,-44 + 6869: -24,-45 + 6870: -23,-45 + 6871: -23,-44 + 6872: -21,-44 + 6873: -22,-44 + 6874: -22,-45 + 6875: -21,-45 + 6876: -20,-45 + 6877: -20,-44 + 6878: -19,-44 + 6879: -19,-45 + 6880: -18,-45 + 6881: -18,-44 - node: color: '#DFAA16FF' id: BrickCornerOverlayNE decals: - 6651: 33,-31 + 6634: 33,-31 - node: color: '#E8B516FF' id: BrickCornerOverlayNE decals: - 6681: 33,-31 + 6664: 33,-31 - node: color: '#BA8841FF' id: BrickCornerOverlayNW decals: - 6031: -56,37 + 6014: -56,37 - node: color: '#DFAA16FF' id: BrickCornerOverlayNW decals: - 6661: 34,-31 + 6644: 34,-31 - node: color: '#E8B516FF' id: BrickCornerOverlayNW decals: - 6684: 34,-31 + 6667: 34,-31 - node: color: '#DFAA16FF' id: BrickCornerOverlaySE decals: - 6652: 33,-30 + 6635: 33,-30 - node: color: '#E8B516FF' id: BrickCornerOverlaySE decals: - 6683: 33,-30 + 6666: 33,-30 - node: color: '#DFAA16FF' id: BrickCornerOverlaySW decals: - 6662: 34,-30 + 6645: 34,-30 - node: color: '#E8B516FF' id: BrickCornerOverlaySW decals: - 6682: 34,-30 + 6665: 34,-30 - node: color: '#DFAA16FF' id: BrickLineOverlayS decals: - 6672: 33.18141,-30.250166 - 6673: 33.265118,-29.998882 - 6674: 32.99964,-30.171968 - 6675: 33.318783,-30.158688 - 6676: 33.86722,-29.999313 - 6677: 33.99847,-30.089937 - 6678: 33.999252,-30.086031 - 6679: 33.621906,-30.13447 - 6680: 33.69769,-30.250875 + 6655: 33.18141,-30.250166 + 6656: 33.265118,-29.998882 + 6657: 32.99964,-30.171968 + 6658: 33.318783,-30.158688 + 6659: 33.86722,-29.999313 + 6660: 33.99847,-30.089937 + 6661: 33.999252,-30.086031 + 6662: 33.621906,-30.13447 + 6663: 33.69769,-30.250875 - node: color: '#DFAA16FF' id: BrickLineOverlayW decals: - 6663: 33.999493,-30.060682 - 6664: 33.748947,-30.119276 - 6665: 33.88098,-29.999744 - 6666: 33.865356,-30.1599 - 6667: 33.87473,-30.913055 - 6668: 33.87317,-30.999775 - 6669: 33.751293,-30.881025 - 6670: 33.74973,-30.86618 - 6671: 33.999634,-30.798994 + 6646: 33.999493,-30.060682 + 6647: 33.748947,-30.119276 + 6648: 33.88098,-29.999744 + 6649: 33.865356,-30.1599 + 6650: 33.87473,-30.913055 + 6651: 33.87317,-30.999775 + 6652: 33.751293,-30.881025 + 6653: 33.74973,-30.86618 + 6654: 33.999634,-30.798994 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 7284: 63,23 - 7315: 63,15 + 7209: 63,23 + 7235: 63,15 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 7283: 53,23 - 7314: 53,15 + 7208: 53,23 + 7234: 53,15 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 7281: 63,11 - 7316: 63,19 + 7206: 63,11 + 7236: 63,19 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 7282: 53,11 - 7318: 53,19 + 7207: 53,11 + 7237: 53,19 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 7358: 53,11 - 7359: 53,19 - 7407: 57,11 - 7408: 57,19 - 7445: -56,-24 + 7277: 53,11 + 7278: 53,19 + 7326: 57,11 + 7327: 57,19 + 7340: -56,-24 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 7363: 57,19 - 7364: 57,11 - 7401: 63,19 - 7402: 63,11 + 7282: 57,19 + 7283: 57,11 + 7320: 63,19 + 7321: 63,11 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 7365: 53,15 - 7366: 53,23 - 7403: 57,23 - 7404: 57,15 + 7284: 53,15 + 7285: 53,23 + 7322: 57,23 + 7323: 57,15 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 7367: 57,23 - 7368: 57,15 - 7405: 63,15 - 7406: 63,23 + 7286: 57,23 + 7287: 57,15 + 7324: 63,15 + 7325: 63,23 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 7294: 63,12 - 7295: 63,13 - 7296: 63,14 - 7302: 63,20 - 7303: 63,21 - 7304: 63,22 - 7340: 53,22 - 7341: 53,21 - 7342: 53,20 - 7349: 53,14 - 7350: 53,13 - 7351: 53,12 - 7379: 57,12 - 7380: 57,13 - 7381: 57,14 - 7382: 57,20 - 7383: 57,21 - 7384: 57,22 - 7432: -56,-15 - 7433: -56,-16 - 7434: -56,-17 - 7435: -56,-18 - 7436: -56,-19 - 7437: -56,-21 - 7440: -56,-23 - 7441: -56,-22 + 7219: 63,12 + 7220: 63,13 + 7221: 63,14 + 7222: 63,20 + 7223: 63,21 + 7224: 63,22 + 7259: 53,22 + 7260: 53,21 + 7261: 53,20 + 7268: 53,14 + 7269: 53,13 + 7270: 53,12 + 7298: 57,12 + 7299: 57,13 + 7300: 57,14 + 7301: 57,20 + 7302: 57,21 + 7303: 57,22 + 7329: -56,-15 + 7330: -56,-16 + 7331: -56,-17 + 7332: -56,-18 + 7333: -56,-19 + 7334: -56,-21 + 7335: -56,-23 + 7336: -56,-22 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 7305: 62,23 - 7306: 61,23 - 7307: 60,23 - 7308: 59,23 - 7309: 58,23 - 7310: 57,23 - 7311: 56,23 - 7312: 55,23 - 7313: 54,23 - 7328: 54,15 - 7329: 55,15 - 7330: 56,15 - 7331: 57,15 - 7332: 58,15 - 7333: 59,15 - 7334: 60,15 - 7335: 61,15 - 7336: 62,15 - 7355: 54,11 - 7356: 55,11 - 7357: 56,11 - 7360: 54,19 - 7361: 55,19 - 7362: 56,19 - 7369: 58,19 - 7370: 59,19 - 7371: 60,19 - 7372: 61,19 - 7373: 62,19 - 7374: 58,11 - 7375: 59,11 - 7376: 60,11 - 7377: 61,11 - 7378: 62,11 - 7442: -55,-24 - 7443: -54,-24 - 7444: -53,-24 + 7225: 62,23 + 7226: 61,23 + 7227: 60,23 + 7228: 59,23 + 7229: 58,23 + 7230: 57,23 + 7231: 56,23 + 7232: 55,23 + 7233: 54,23 + 7247: 54,15 + 7248: 55,15 + 7249: 56,15 + 7250: 57,15 + 7251: 58,15 + 7252: 59,15 + 7253: 60,15 + 7254: 61,15 + 7255: 62,15 + 7274: 54,11 + 7275: 55,11 + 7276: 56,11 + 7279: 54,19 + 7280: 55,19 + 7281: 56,19 + 7288: 58,19 + 7289: 59,19 + 7290: 60,19 + 7291: 61,19 + 7292: 62,19 + 7293: 58,11 + 7294: 59,11 + 7295: 60,11 + 7296: 61,11 + 7297: 62,11 + 7337: -55,-24 + 7338: -54,-24 + 7339: -53,-24 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 7285: 54,11 - 7286: 55,11 - 7287: 56,11 - 7288: 57,11 - 7289: 58,11 - 7290: 59,11 - 7291: 60,11 - 7292: 61,11 - 7293: 62,11 - 7319: 54,19 - 7320: 55,19 - 7321: 56,19 - 7322: 57,19 - 7323: 59,19 - 7324: 58,19 - 7325: 60,19 - 7326: 61,19 - 7327: 62,19 - 7343: 54,23 - 7344: 55,23 - 7345: 56,23 - 7346: 54,15 - 7347: 55,15 - 7348: 56,15 - 7391: 58,15 - 7392: 59,15 - 7393: 60,15 - 7394: 61,15 - 7395: 62,15 - 7396: 58,23 - 7397: 59,23 - 7398: 60,23 - 7399: 61,23 - 7400: 62,23 + 7210: 54,11 + 7211: 55,11 + 7212: 56,11 + 7213: 57,11 + 7214: 58,11 + 7215: 59,11 + 7216: 60,11 + 7217: 61,11 + 7218: 62,11 + 7238: 54,19 + 7239: 55,19 + 7240: 56,19 + 7241: 57,19 + 7242: 59,19 + 7243: 58,19 + 7244: 60,19 + 7245: 61,19 + 7246: 62,19 + 7262: 54,23 + 7263: 55,23 + 7264: 56,23 + 7265: 54,15 + 7266: 55,15 + 7267: 56,15 + 7310: 58,15 + 7311: 59,15 + 7312: 60,15 + 7313: 61,15 + 7314: 62,15 + 7315: 58,23 + 7316: 59,23 + 7317: 60,23 + 7318: 61,23 + 7319: 62,23 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 7270: 53,22 - 7271: 53,21 - 7272: 53,20 - 7278: 53,14 - 7279: 53,13 - 7280: 53,12 - 7337: 57,22 - 7338: 57,21 - 7339: 57,20 - 7352: 57,14 - 7353: 57,13 - 7354: 57,12 - 7385: 63,22 - 7386: 63,21 - 7387: 63,20 - 7388: 63,14 - 7389: 63,13 - 7390: 63,12 + 7200: 53,22 + 7201: 53,21 + 7202: 53,20 + 7203: 53,14 + 7204: 53,13 + 7205: 53,12 + 7256: 57,22 + 7257: 57,21 + 7258: 57,20 + 7271: 57,14 + 7272: 57,13 + 7273: 57,12 + 7304: 63,22 + 7305: 63,21 + 7306: 63,20 + 7307: 63,14 + 7308: 63,13 + 7309: 63,12 - node: color: '#91D4FFFF' id: BrickTileSteelCornerNe @@ -1509,17 +1509,17 @@ entities: 1156: 34,13 1157: 34,16 1203: 22,3 - 7035: 29,16 - 7095: 23,16 + 7018: 29,16 + 7078: 23,16 - node: color: '#B02E26FF' id: BrickTileSteelCornerNe decals: - 4471: 11,68 - 4472: 14,66 - 4473: 5,66 - 5420: -12,55 - 5865: 11,-22 + 4460: 11,68 + 4461: 14,66 + 4462: 5,66 + 5403: -12,55 + 5848: 11,-22 - node: color: '#91D4FFFF' id: BrickTileSteelCornerNw @@ -1532,18 +1532,18 @@ entities: 1141: -5,16 1158: 33,7 1204: 19,3 - 7034: 25,16 - 7090: 5,16 + 7017: 25,16 + 7073: 5,16 - node: color: '#B02E26FF' id: BrickTileSteelCornerNw decals: - 4474: 4,66 - 4475: 7,68 - 4482: 13,66 - 5425: -15,55 - 5866: 10,-22 - 5867: 5,-23 + 4463: 4,66 + 4464: 7,68 + 4471: 13,66 + 5408: -15,55 + 5849: 10,-22 + 5850: 5,-23 - node: color: '#91D4FFFF' id: BrickTileSteelCornerSe @@ -1555,23 +1555,23 @@ entities: 1160: 36,5 1173: 34,15 1205: 22,0 - 6517: -3,-11 - 6518: -4,-12 - 7096: 23,9 + 6500: -3,-11 + 6501: -4,-12 + 7079: 23,9 - node: color: '#B02E26FF' id: BrickTileSteelCornerSe decals: - 4476: 11,64 - 4477: 14,64 - 4478: 5,64 - 5421: -12,48 - 5868: 11,-24 + 4465: 11,64 + 4466: 14,64 + 4467: 5,64 + 5404: -12,48 + 5851: 11,-24 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 7218: -41,-31 + 7191: -41,-31 - node: color: '#91D4FFFF' id: BrickTileSteelCornerSw @@ -1584,27 +1584,27 @@ entities: 1145: -9,9 1159: 33,5 1217: 19,0 - 7045: 25,9 - 7087: 5,9 + 7028: 25,9 + 7070: 5,9 - node: color: '#B02E26FF' id: BrickTileSteelCornerSw decals: - 4479: 4,64 - 4480: 7,64 - 4481: 13,64 - 5422: -15,48 - 5869: 5,-24 + 4468: 4,64 + 4469: 7,64 + 4470: 13,64 + 5405: -15,48 + 5852: 5,-24 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 7211: -48,-31 + 7184: -48,-31 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN decals: - 7232: -41,-29 + 7193: -41,-29 - node: color: '#B02E26FF' id: BrickTileSteelEndW @@ -1615,17 +1615,17 @@ entities: id: BrickTileSteelInnerNe decals: 1153: -7,14 - 7038: 29,13 + 7021: 29,13 - node: color: '#B02E26FF' id: BrickTileSteelInnerNe decals: - 5451: -12,52 + 5434: -12,52 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 7187: -48,-31 + 7170: -48,-31 - node: color: '#91D4FFFF' id: BrickTileSteelInnerNw @@ -1636,17 +1636,17 @@ entities: id: BrickTileSteelInnerNw decals: 724: -1,59 - 5879: 10,-23 + 5862: 10,-23 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 7186: -41,-31 + 7169: -41,-31 - node: color: '#B02E26FF' id: BrickTileSteelInnerSe decals: - 5450: -12,51 + 5433: -12,51 - node: color: '#91D4FFFF' id: BrickTileSteelInnerSw @@ -1684,52 +1684,52 @@ entities: 1186: 34,11 1213: 22,2 1214: 22,1 - 7036: 29,15 - 7037: 29,14 - 7099: 23,10 - 7100: 23,11 - 7101: 23,12 - 7102: 23,13 - 7103: 23,14 - 7104: 23,15 + 7019: 29,15 + 7020: 29,14 + 7082: 23,10 + 7083: 23,11 + 7084: 23,12 + 7085: 23,13 + 7086: 23,14 + 7087: 23,15 - node: color: '#B02E26FF' id: BrickTileSteelLineE decals: - 4483: 14,65 - 4484: 11,67 - 4485: 11,66 - 4486: 11,65 - 4487: 5,65 - 5428: -12,54 - 5429: -12,49 - 5430: -12,50 - 5431: -12,53 - 5880: 11,-23 + 4472: 14,65 + 4473: 11,67 + 4474: 11,66 + 4475: 11,65 + 4476: 5,65 + 5411: -12,54 + 5412: -12,49 + 5413: -12,50 + 5414: -12,53 + 5863: 11,-23 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 7174: -48,-26 - 7175: -48,-27 - 7176: -48,-28 - 7177: -48,-29 - 7178: -48,-30 - 7202: -51,-26 - 7203: -51,-27 - 7204: -51,-29 - 7205: -51,-30 - 7219: -41,-30 - 7456: -50,-15 - 7457: -50,-16 - 7458: -50,-17 - 7459: -50,-18 - 7460: -50,-19 - 7461: -50,-20 - 7462: -50,-21 - 7463: -50,-22 - 7464: -50,-23 - 7465: -50,-24 + 7157: -48,-26 + 7158: -48,-27 + 7159: -48,-28 + 7160: -48,-29 + 7161: -48,-30 + 7175: -51,-26 + 7176: -51,-27 + 7177: -51,-29 + 7178: -51,-30 + 7192: -41,-30 + 7351: -50,-15 + 7352: -50,-16 + 7353: -50,-17 + 7354: -50,-18 + 7355: -50,-19 + 7356: -50,-20 + 7357: -50,-21 + 7358: -50,-22 + 7359: -50,-23 + 7360: -50,-24 - node: color: '#91D4FFFF' id: BrickTileSteelLineN @@ -1763,44 +1763,44 @@ entities: 1184: 30,13 1220: 20,3 1221: 21,3 - 7032: 27,16 - 7033: 28,16 - 7091: 6,16 - 7092: 7,16 - 7093: 21,16 - 7094: 22,16 + 7015: 27,16 + 7016: 28,16 + 7074: 6,16 + 7075: 7,16 + 7076: 21,16 + 7077: 22,16 - node: color: '#B02E26FF' id: BrickTileSteelLineN decals: - 4493: 8,68 - 4494: 9,68 - 4495: 10,68 - 5426: -14,55 - 5427: -13,55 - 5432: -11,52 - 5433: -10,52 - 5434: -9,52 - 5435: -8,52 - 5436: -7,52 - 5437: -6,52 - 5438: -5,52 - 5439: -4,52 - 5440: -3,52 - 5875: 6,-23 - 5876: 7,-23 - 5877: 8,-23 - 5878: 9,-23 + 4482: 8,68 + 4483: 9,68 + 4484: 10,68 + 5409: -14,55 + 5410: -13,55 + 5415: -11,52 + 5416: -10,52 + 5417: -9,52 + 5418: -8,52 + 5419: -7,52 + 5420: -6,52 + 5421: -5,52 + 5422: -4,52 + 5423: -3,52 + 5858: 6,-23 + 5859: 7,-23 + 5860: 8,-23 + 5861: 9,-23 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 7179: -47,-31 - 7180: -46,-31 - 7181: -45,-31 - 7182: -44,-31 - 7183: -43,-31 - 7184: -42,-31 + 7162: -47,-31 + 7163: -46,-31 + 7164: -45,-31 + 7165: -44,-31 + 7166: -43,-31 + 7167: -42,-31 - node: color: '#91D4FFFF' id: BrickTileSteelLineS @@ -1835,51 +1835,51 @@ entities: 1172: 33,15 1215: 20,0 1216: 21,0 - 7064: 32,9 - 7088: 6,9 - 7089: 7,9 - 7097: 22,9 - 7098: 21,9 + 7047: 32,9 + 7071: 6,9 + 7072: 7,9 + 7080: 22,9 + 7081: 21,9 - node: color: '#B02E26FF' id: BrickTileSteelLineS decals: 616: -4,47 - 4496: 8,64 - 4497: 9,64 - 4498: 10,64 - 5423: -14,48 - 5424: -13,48 - 5441: -11,51 - 5442: -10,51 - 5443: -9,51 - 5444: -8,51 - 5445: -7,51 - 5446: -6,51 - 5447: -5,51 - 5448: -4,51 - 5449: -3,51 - 5870: 6,-24 - 5871: 7,-24 - 5872: 8,-24 - 5873: 9,-24 - 5874: 10,-24 - 5898: 10,-20 - 5899: 11,-20 - 5900: 12,-20 - 5901: 13,-20 - 5902: 14,-20 - 5903: 15,-20 + 4485: 8,64 + 4486: 9,64 + 4487: 10,64 + 5406: -14,48 + 5407: -13,48 + 5424: -11,51 + 5425: -10,51 + 5426: -9,51 + 5427: -8,51 + 5428: -7,51 + 5429: -6,51 + 5430: -5,51 + 5431: -4,51 + 5432: -3,51 + 5853: 6,-24 + 5854: 7,-24 + 5855: 8,-24 + 5856: 9,-24 + 5857: 10,-24 + 5881: 10,-20 + 5882: 11,-20 + 5883: 12,-20 + 5884: 13,-20 + 5885: 14,-20 + 5886: 15,-20 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 7212: -47,-31 - 7213: -46,-31 - 7214: -45,-31 - 7215: -44,-31 - 7216: -43,-31 - 7217: -42,-31 + 7185: -47,-31 + 7186: -46,-31 + 7187: -45,-31 + 7188: -44,-31 + 7189: -43,-31 + 7190: -42,-31 - node: color: '#91D4FFFF' id: BrickTileSteelLineW @@ -1904,18 +1904,18 @@ entities: 1187: 33,6 1218: 19,1 1219: 19,2 - 7039: 25,15 - 7040: 25,14 - 7041: 25,13 - 7042: 25,12 - 7043: 25,11 - 7044: 25,10 - 7081: 5,15 - 7082: 5,14 - 7083: 5,13 - 7084: 5,12 - 7085: 5,11 - 7086: 5,10 + 7022: 25,15 + 7023: 25,14 + 7024: 25,13 + 7025: 25,12 + 7026: 25,11 + 7027: 25,10 + 7064: 5,15 + 7065: 5,14 + 7066: 5,13 + 7067: 5,12 + 7068: 5,11 + 7069: 5,10 - node: color: '#B02E26FF' id: BrickTileSteelLineW @@ -1939,36 +1939,36 @@ entities: 720: -1,61 721: -1,60 722: -1,58 - 4488: 4,65 - 4489: 7,67 - 4490: 7,66 - 4491: 7,65 - 4492: 13,65 + 4477: 4,65 + 4478: 7,67 + 4479: 7,66 + 4480: 7,65 + 4481: 13,65 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 7185: -41,-30 - 7188: -51,-26 - 7189: -51,-27 - 7190: -51,-29 - 7191: -51,-30 - 7206: -48,-26 - 7207: -48,-27 - 7208: -48,-28 - 7209: -48,-29 - 7210: -48,-30 - 7409: 66,-9 - 7446: -51,-24 - 7447: -51,-23 - 7448: -51,-22 - 7449: -51,-21 - 7450: -51,-20 - 7451: -51,-19 - 7452: -51,-18 - 7453: -51,-17 - 7454: -51,-16 - 7455: -51,-15 + 7168: -41,-30 + 7171: -51,-26 + 7172: -51,-27 + 7173: -51,-29 + 7174: -51,-30 + 7179: -48,-26 + 7180: -48,-27 + 7181: -48,-28 + 7182: -48,-29 + 7183: -48,-30 + 7328: 66,-9 + 7341: -51,-24 + 7342: -51,-23 + 7343: -51,-22 + 7344: -51,-21 + 7345: -51,-20 + 7346: -51,-19 + 7347: -51,-18 + 7348: -51,-17 + 7349: -51,-16 + 7350: -51,-15 - node: color: '#334E6DFF' id: BrickTileWhiteCornerNe @@ -1990,8 +1990,8 @@ entities: 987: 14,30 988: 20,29 989: 12,25 - 6102: 29,46 - 6452: 6,62 + 6085: 29,46 + 6435: 6,62 - node: color: '#7C45B5FF' id: BrickTileWhiteCornerNe @@ -2001,12 +2001,12 @@ entities: color: '#80C71FFF' id: BrickTileWhiteCornerNe decals: - 4569: -14,7 - 4604: -16,7 - 4605: -18,7 - 4606: -20,7 - 4607: -22,7 - 4608: -6,7 + 4558: -14,7 + 4593: -16,7 + 4594: -18,7 + 4595: -20,7 + 4596: -22,7 + 4597: -6,7 - node: color: '#845606FF' id: BrickTileWhiteCornerNe @@ -2018,18 +2018,18 @@ entities: 2456: -13,-24 2457: -10,-33 2458: -7,-41 - 6722: -10,-19 - 6730: -16,-39 - 6757: -25,-41 - 6762: -28,-41 - 6816: -10,-39 - 6925: -16,-33 + 6705: -10,-19 + 6713: -16,-39 + 6740: -25,-41 + 6745: -28,-41 + 6799: -10,-39 + 6908: -16,-33 - node: color: '#8932B8FF' id: BrickTileWhiteCornerNe decals: - 5724: -35,12 - 5725: -38,13 + 5707: -35,12 + 5708: -38,13 - node: color: '#91D4FFFF' id: BrickTileWhiteCornerNe @@ -2038,16 +2038,16 @@ entities: 352: -20,-1 353: -11,16 1189: 31,7 - 4531: 7,-5 - 4532: 13,-5 - 4533: 13,-8 - 4534: 7,-10 - 6461: 2,7 - 6467: 6,3 - 6512: -6,3 - 6963: 10,16 - 6964: 20,16 - 7052: 10,7 + 4520: 7,-5 + 4521: 13,-5 + 4522: 13,-8 + 4523: 7,-10 + 6444: 2,7 + 6450: 6,3 + 6495: -6,3 + 6946: 10,16 + 6947: 20,16 + 7035: 10,7 - node: color: '#9DDFBAFF' id: BrickTileWhiteCornerNe @@ -2056,8 +2056,8 @@ entities: 626: -2,64 630: -30,62 3387: -36,67 - 6218: -42,60 - 6241: -19,58 + 6201: -42,60 + 6224: -19,58 - node: color: '#B02E26FF' id: BrickTileWhiteCornerNe @@ -2067,11 +2067,11 @@ entities: 552: -14,26 571: -9,30 756: -10,22 - 5497: -13,46 - 5516: -26,51 - 5537: -17,51 - 6153: -2,40 - 6409: -33,30 + 5480: -13,46 + 5499: -26,51 + 5520: -17,51 + 6136: -2,40 + 6392: -33,30 - node: color: '#B04DB5FF' id: BrickTileWhiteCornerNe @@ -2097,7 +2097,7 @@ entities: 1730: 49,34 1987: 54,49 1988: 53,51 - 4735: 49,44 + 4718: 49,44 - node: color: '#BA8841FF' id: BrickTileWhiteCornerNe @@ -2109,12 +2109,12 @@ entities: 1373: -58,27 1374: -59,30 1375: -60,36 - 4707: 23,-19 - 6030: -54,37 - 6036: -44,31 - 6085: -44,35 - 6359: -58,13 - 6374: -48,13 + 4690: 23,-19 + 6013: -54,37 + 6019: -44,31 + 6068: -44,35 + 6342: -58,13 + 6357: -48,13 - node: color: '#D3F4A5FF' id: BrickTileWhiteCornerNe @@ -2143,11 +2143,11 @@ entities: 2302: -81,-4 2303: -80,-5 2304: -83,-3 - 4438: -97,-2 - 4439: -96,-3 - 4442: -92,-5 - 4445: -92,22 - 4460: -68,3 + 4427: -97,-2 + 4428: -96,-3 + 4431: -92,-5 + 4434: -92,22 + 4449: -68,3 - node: color: '#FF974DFF' id: BrickTileWhiteCornerNe @@ -2179,9 +2179,9 @@ entities: 984: 11,30 985: 17,29 990: 6,25 - 6097: 25,51 - 6099: 28,52 - 6447: 5,62 + 6080: 25,51 + 6082: 28,52 + 6430: 5,62 - node: color: '#7C45B5FF' id: BrickTileWhiteCornerNw @@ -2191,13 +2191,13 @@ entities: color: '#80C71FFF' id: BrickTileWhiteCornerNw decals: - 4570: -24,7 - 4599: -23,7 - 4600: -21,7 - 4601: -19,7 - 4602: -17,7 - 4603: -9,7 - 4609: -15,7 + 4559: -24,7 + 4588: -23,7 + 4589: -21,7 + 4590: -19,7 + 4591: -17,7 + 4592: -9,7 + 4598: -15,7 - node: color: '#845606FF' id: BrickTileWhiteCornerNw @@ -2209,18 +2209,18 @@ entities: 2463: -17,-24 2464: -31,-19 2465: -31,-24 - 6709: -23,-19 - 6728: -26,-41 - 6729: -17,-39 - 6763: -32,-41 - 6817: -14,-39 - 6924: -17,-33 + 6692: -23,-19 + 6711: -26,-41 + 6712: -17,-39 + 6746: -32,-41 + 6800: -14,-39 + 6907: -17,-33 - node: color: '#8932B8FF' id: BrickTileWhiteCornerNw decals: - 5726: -40,13 - 5727: -41,12 + 5709: -40,13 + 5710: -41,12 - node: color: '#91D4FFFF' id: BrickTileWhiteCornerNw @@ -2231,16 +2231,16 @@ entities: 409: -18,-1 1154: 8,7 1301: -13,-14 - 4523: 5,-5 - 4524: 9,-5 - 4525: 12,-8 - 4526: 5,-10 - 4596: -23,3 - 6462: 0,7 - 6466: -4,3 - 6961: 8,16 - 6962: 18,16 - 7056: 18,7 + 4512: 5,-5 + 4513: 9,-5 + 4514: 12,-8 + 4515: 5,-10 + 4585: -23,3 + 6445: 0,7 + 6449: -4,3 + 6944: 8,16 + 6945: 18,16 + 7039: 18,7 - node: color: '#9DDFBAFF' id: BrickTileWhiteCornerNw @@ -2249,8 +2249,8 @@ entities: 625: -5,64 629: -32,62 3388: -45,67 - 6217: -45,60 - 6240: -24,58 + 6200: -45,60 + 6223: -24,58 - node: color: '#B02E26FF' id: BrickTileWhiteCornerNw @@ -2263,11 +2263,11 @@ entities: 553: -23,26 572: -23,30 601: -37,35 - 5511: -27,46 - 5517: -27,51 - 5538: -21,51 - 6118: -9,34 - 6152: -3,40 + 5494: -27,46 + 5500: -27,51 + 5521: -21,51 + 6101: -9,34 + 6135: -3,40 - node: color: '#B04DB5FF' id: BrickTileWhiteCornerNw @@ -2305,10 +2305,10 @@ entities: 1371: -57,31 1376: -52,27 1408: -64,20 - 4706: 17,-19 - 6360: -60,13 - 6361: -63,12 - 6373: -52,13 + 4689: 17,-19 + 6343: -60,13 + 6344: -63,12 + 6356: -52,13 - node: color: '#D3F4A5FF' id: BrickTileWhiteCornerNw @@ -2334,7 +2334,7 @@ entities: 2317: -74,17 2318: -70,17 2319: -74,11 - 4459: -70,3 + 4448: -70,3 - node: color: '#FF974DFF' id: BrickTileWhiteCornerNw @@ -2363,9 +2363,9 @@ entities: 992: 14,27 993: 20,24 998: 12,23 - 5231: 7,48 - 6103: 29,45 - 6453: 6,58 + 5214: 7,48 + 6086: 29,45 + 6436: 6,58 - node: color: '#7C45B5FF' id: BrickTileWhiteCornerSe @@ -2375,12 +2375,12 @@ entities: color: '#80C71FFF' id: BrickTileWhiteCornerSe decals: - 4615: -14,5 - 4616: -16,5 - 4617: -18,5 - 4618: -20,5 - 4619: -22,5 - 4620: -6,5 + 4604: -14,5 + 4605: -16,5 + 4606: -18,5 + 4607: -20,5 + 4608: -22,5 + 4609: -6,5 - node: color: '#845606FF' id: BrickTileWhiteCornerSe @@ -2393,14 +2393,14 @@ entities: 2476: -25,-26 2477: -25,-22 2491: -10,-31 - 6731: -16,-47 - 6775: -28,-46 - 6926: -16,-36 + 6714: -16,-47 + 6758: -28,-46 + 6909: -16,-36 - node: color: '#8932B8FF' id: BrickTileWhiteCornerSe decals: - 5731: -35,8 + 5714: -35,8 - node: color: '#91D4FFFF' id: BrickTileWhiteCornerSe @@ -2409,18 +2409,18 @@ entities: 407: -14,-3 1188: 31,5 1231: 10,-3 - 4527: 10,-12 - 4528: 7,-12 - 4529: 13,-6 - 4530: 7,-8 - 5382: -11,-6 - 6454: 13,-11 - 6464: 2,-3 - 6465: 6,1 - 6513: -6,1 - 6984: 20,9 - 6986: 12,12 - 6987: 10,9 + 4516: 10,-12 + 4517: 7,-12 + 4518: 13,-6 + 4519: 7,-8 + 5365: -11,-6 + 6437: 13,-11 + 6447: 2,-3 + 6448: 6,1 + 6496: -6,1 + 6967: 20,9 + 6969: 12,12 + 6970: 10,9 - node: color: '#9DDFBAFF' id: BrickTileWhiteCornerSe @@ -2432,7 +2432,7 @@ entities: 627: -30,57 692: -16,61 3386: -36,58 - 6220: -42,58 + 6203: -42,58 - node: color: '#B02E26FF' id: BrickTileWhiteCornerSe @@ -2444,11 +2444,11 @@ entities: 550: -14,24 585: -20,28 603: -33,33 - 5211: -9,28 - 5512: -26,48 - 5540: -17,48 - 6155: -2,38 - 6412: -33,29 + 5194: -9,28 + 5495: -26,48 + 5523: -17,48 + 6138: -2,38 + 6395: -33,29 - node: color: '#B04DB5FF' id: BrickTileWhiteCornerSe @@ -2467,7 +2467,7 @@ entities: 1736: 40,32 1737: 32,23 1992: 54,46 - 4736: 49,42 + 4719: 49,42 - node: color: '#BA8841FF' id: BrickTileWhiteCornerSe @@ -2477,14 +2477,14 @@ entities: 1358: -48,25 1364: -58,15 1407: -54,11 - 4709: 20,-24 - 4710: 23,-22 - 6025: -54,33 - 6037: -44,29 - 6087: -44,33 - 6362: -58,11 - 6375: -48,11 - 6390: -48,15 + 4692: 20,-24 + 4693: 23,-22 + 6008: -54,33 + 6020: -44,29 + 6070: -44,33 + 6345: -58,11 + 6358: -48,11 + 6373: -48,15 - node: color: '#D3F4A5FF' id: BrickTileWhiteCornerSe @@ -2515,11 +2515,11 @@ entities: 2267: -95,-10 2268: -96,-12 2269: -97,-13 - 4432: -96,19 - 4433: -97,18 - 4443: -92,-6 - 4444: -92,21 - 4461: -68,-1 + 4421: -96,19 + 4422: -97,18 + 4432: -92,-6 + 4433: -92,21 + 4450: -68,-1 - node: color: '#FF974DFF' id: BrickTileWhiteCornerSe @@ -2548,9 +2548,9 @@ entities: 995: 11,27 996: 17,24 997: 6,23 - 5232: 5,48 - 6094: 25,48 - 6448: 5,58 + 5215: 5,48 + 6077: 25,48 + 6431: 5,58 - node: color: '#7C45B5FF' id: BrickTileWhiteCornerSw @@ -2560,13 +2560,13 @@ entities: color: '#80C71FFF' id: BrickTileWhiteCornerSw decals: - 4571: -24,5 - 4621: -23,5 - 4622: -21,5 - 4623: -19,5 - 4624: -17,5 - 4625: -15,5 - 4626: -9,5 + 4560: -24,5 + 4610: -23,5 + 4611: -21,5 + 4612: -19,5 + 4613: -17,5 + 4614: -15,5 + 4615: -9,5 - node: color: '#845606FF' id: BrickTileWhiteCornerSw @@ -2576,16 +2576,16 @@ entities: 2468: -11,-26 2469: -17,-31 2470: -14,-36 - 5941: -14,-40 - 5942: -12,-43 - 6732: -26,-47 - 6776: -32,-46 - 6927: -17,-36 + 5924: -14,-40 + 5925: -12,-43 + 6715: -26,-47 + 6759: -32,-46 + 6910: -17,-36 - node: color: '#8932B8FF' id: BrickTileWhiteCornerSw decals: - 5732: -41,8 + 5715: -41,8 - node: color: '#91D4FFFF' id: BrickTileWhiteCornerSw @@ -2595,18 +2595,18 @@ entities: 411: -18,-3 1212: 8,-3 1346: -9,18 - 4536: 5,-11 - 4537: 5,-8 - 4557: 6,-12 - 4597: -23,1 - 5381: -12,-6 - 6455: 12,-11 - 6463: 0,-3 - 6468: -4,1 - 6981: 8,9 - 6985: 16,12 - 6988: 18,9 - 7057: 18,5 + 4525: 5,-11 + 4526: 5,-8 + 4546: 6,-12 + 4586: -23,1 + 5364: -12,-6 + 6438: 12,-11 + 6446: 0,-3 + 6451: -4,1 + 6964: 8,9 + 6968: 16,12 + 6971: 18,9 + 7040: 18,5 - node: color: '#9DDFBAFF' id: BrickTileWhiteCornerSw @@ -2617,9 +2617,9 @@ entities: 690: -24,53 691: -14,61 3385: -40,58 - 4429: -45,62 - 6219: -45,58 - 6242: -18,61 + 4418: -45,62 + 6202: -45,58 + 6225: -18,61 - node: color: '#B02E26FF' id: BrickTileWhiteCornerSw @@ -2633,11 +2633,11 @@ entities: 584: -18,28 587: -23,28 602: -37,33 - 5492: -27,45 - 5513: -27,48 - 5539: -21,48 - 6154: -3,38 - 6411: -36,29 + 5475: -27,45 + 5496: -27,48 + 5522: -21,48 + 6137: -3,38 + 6394: -36,29 - node: color: '#B04DB5FF' id: BrickTileWhiteCornerSw @@ -2669,11 +2669,11 @@ entities: 1355: -66,22 1359: -52,25 1372: -57,29 - 4708: 17,-24 - 6035: -56,33 - 6363: -63,11 - 6376: -52,11 - 6391: -52,15 + 4691: 17,-24 + 6018: -56,33 + 6346: -63,11 + 6359: -52,11 + 6374: -52,15 - node: color: '#D3F4A5FF' id: BrickTileWhiteCornerSw @@ -2700,7 +2700,7 @@ entities: 2283: -89,20 2284: -90,21 2285: -98,18 - 4462: -70,-1 + 4451: -70,-1 - node: color: '#FF974DFF' id: BrickTileWhiteCornerSw @@ -2713,22 +2713,22 @@ entities: color: '#845606FF' id: BrickTileWhiteEndN decals: - 6719: -7,-19 + 6702: -7,-19 - node: color: '#B02E26FF' id: BrickTileWhiteEndN decals: - 6410: -36,31 + 6393: -36,31 - node: color: '#845606FF' id: BrickTileWhiteEndS decals: - 6779: -30,-47 + 6762: -30,-47 - node: color: '#91D4FFFF' id: BrickTileWhiteEndS decals: - 4535: 9,-13 + 4524: 9,-13 - node: color: '#334E6DFF' id: BrickTileWhiteInnerNe @@ -2745,22 +2745,22 @@ entities: decals: 2570: -19,-25 2571: -10,-41 - 6721: -10,-20 - 6761: -25,-42 - 6935: -16,-34 + 6704: -10,-20 + 6744: -25,-42 + 6918: -16,-34 - node: color: '#8932B8FF' id: BrickTileWhiteInnerNe decals: - 5741: -38,12 + 5724: -38,12 - node: color: '#91D4FFFF' id: BrickTileWhiteInnerNe decals: 1302: 2,-13 - 4594: -11,3 - 6499: 2,3 - 6999: 10,15 + 4583: -11,3 + 6482: 2,3 + 6982: 10,15 - node: color: '#B02E26FF' id: BrickTileWhiteInnerNe @@ -2768,8 +2768,8 @@ entities: 609: -13,36 748: -33,22 755: -10,21 - 5214: -13,30 - 6417: -36,30 + 5197: -13,30 + 6400: -36,30 - node: color: '#B04DB5FF' id: BrickTileWhiteInnerNe @@ -2799,9 +2799,9 @@ entities: 2387: -97,10 2388: -83,-4 2389: -81,-5 - 4440: -96,-5 - 4441: -97,-3 - 4458: -95,22 + 4429: -96,-5 + 4430: -97,-3 + 4447: -95,22 - node: color: '#FF974DFF' id: BrickTileWhiteInnerNe @@ -2818,21 +2818,21 @@ entities: 970: 15,57 1044: 22,21 1047: 7,22 - 6100: 28,51 + 6083: 28,51 - node: color: '#845606FF' id: BrickTileWhiteInnerNw decals: 2568: -17,-25 2569: -5,-24 - 6720: -7,-20 - 6760: -17,-42 - 6934: -14,-34 + 6703: -7,-20 + 6743: -17,-42 + 6917: -14,-34 - node: color: '#8932B8FF' id: BrickTileWhiteInnerNw decals: - 5742: -40,12 + 5725: -40,12 - node: color: '#91D4FFFF' id: BrickTileWhiteInnerNw @@ -2841,8 +2841,8 @@ entities: 465: -12,3 1303: 0,-13 1308: 37,-14 - 6498: 0,3 - 7000: 18,15 + 6481: 0,3 + 6983: 18,15 - node: color: '#9DDFBAFF' id: BrickTileWhiteInnerNw @@ -2873,7 +2873,7 @@ entities: 1520: -65,27 1521: -64,30 1532: -46,9 - 6372: -60,12 + 6355: -60,12 - node: color: '#D3F4A5FF' id: BrickTileWhiteInnerNw @@ -2900,32 +2900,32 @@ entities: id: BrickTileWhiteInnerSe decals: 2451: -32,-17 - 6780: -30,-46 - 6932: -16,-35 + 6763: -30,-46 + 6915: -16,-35 - node: color: '#8932B8FF' id: BrickTileWhiteInnerSe decals: - 5756: -41,15 + 5739: -41,15 - node: color: '#91D4FFFF' id: BrickTileWhiteInnerSe decals: 1345: -32,19 1349: 2,17 - 4566: 10,-6 - 4567: 9,-12 - 4595: -11,1 - 6496: 2,1 - 6995: 12,13 - 6998: 10,12 + 4555: 10,-6 + 4556: 9,-12 + 4584: -11,1 + 6479: 2,1 + 6978: 12,13 + 6981: 10,12 - node: color: '#9DDFBAFF' id: BrickTileWhiteInnerSe decals: 706: -16,63 708: -26,61 - 6244: -26,63 + 6227: -26,63 - node: color: '#B02E26FF' id: BrickTileWhiteInnerSe @@ -2937,7 +2937,7 @@ entities: id: BrickTileWhiteInnerSe decals: 1519: -54,29 - 4714: 20,-22 + 4697: 20,-22 - node: color: '#D3F4A5FF' id: BrickTileWhiteInnerSe @@ -2951,9 +2951,9 @@ entities: 2372: -81,21 2373: -83,20 2379: -73,16 - 4434: -97,19 - 4435: -96,21 - 4447: -95,-6 + 4423: -97,19 + 4424: -96,21 + 4436: -95,-6 - node: color: '#FF974DFF' id: BrickTileWhiteInnerSe @@ -2972,9 +2972,9 @@ entities: id: BrickTileWhiteInnerSw decals: 2442: -6,-17 - 5945: -12,-40 - 6781: -30,-46 - 6933: -14,-35 + 5928: -12,-40 + 6764: -30,-46 + 6916: -14,-35 - node: color: '#91D4FFFF' id: BrickTileWhiteInnerSw @@ -2984,10 +2984,10 @@ entities: 1347: -9,19 1348: 0,17 1350: 36,18 - 4568: 6,-11 - 6497: 0,1 - 6996: 16,13 - 6997: 18,12 + 4557: 6,-11 + 6480: 0,1 + 6979: 16,13 + 6980: 18,12 - node: color: '#9DDFBAFF' id: BrickTileWhiteInnerSw @@ -2995,7 +2995,7 @@ entities: 707: -14,63 758: 0,69 3389: -40,62 - 6245: -18,63 + 6228: -18,63 - node: color: '#B02E26FF' id: BrickTileWhiteInnerSw @@ -3003,7 +3003,7 @@ entities: 487: -8,39 536: -8,24 599: -18,29 - 5479: -14,45 + 5462: -14,45 - node: color: '#B04DB5FF' id: BrickTileWhiteInnerSw @@ -3027,7 +3027,7 @@ entities: id: BrickTileWhiteInnerSw decals: 1587: 13,2 - 6515: 15,-3 + 6498: 15,-3 - node: color: '#334E6DFF' id: BrickTileWhiteLineE @@ -3093,14 +3093,14 @@ entities: 1018: 9,29 1019: 14,28 1020: 14,29 - 6439: 3,58 - 6440: 3,59 - 6441: 3,60 - 6442: 3,61 - 6443: 3,62 - 6449: 6,59 - 6450: 6,60 - 6451: 6,61 + 6422: 3,58 + 6423: 3,59 + 6424: 3,60 + 6425: 3,61 + 6426: 3,62 + 6432: 6,59 + 6433: 6,60 + 6434: 6,61 - node: color: '#7C45B5FF' id: BrickTileWhiteLineE @@ -3110,12 +3110,12 @@ entities: color: '#80C71FFF' id: BrickTileWhiteLineE decals: - 4572: -14,6 - 4610: -16,6 - 4611: -18,6 - 4612: -20,6 - 4613: -22,6 - 4614: -6,6 + 4561: -14,6 + 4599: -16,6 + 4600: -18,6 + 4601: -20,6 + 4602: -22,6 + 4603: -6,6 - node: color: '#845606FF' id: BrickTileWhiteLineE @@ -3135,28 +3135,28 @@ entities: 2490: -10,-29 2492: -10,-40 2493: -7,-42 - 6711: -19,-20 - 6712: -19,-21 - 6713: -19,-23 - 6714: -19,-24 - 6745: -16,-40 - 6746: -16,-41 - 6747: -16,-42 - 6748: -16,-43 - 6749: -16,-44 - 6750: -16,-45 - 6751: -16,-46 - 6767: -28,-42 - 6768: -28,-43 - 6769: -28,-44 - 6770: -28,-45 + 6694: -19,-20 + 6695: -19,-21 + 6696: -19,-23 + 6697: -19,-24 + 6728: -16,-40 + 6729: -16,-41 + 6730: -16,-42 + 6731: -16,-43 + 6732: -16,-44 + 6733: -16,-45 + 6734: -16,-46 + 6750: -28,-42 + 6751: -28,-43 + 6752: -28,-44 + 6753: -28,-45 - node: color: '#8932B8FF' id: BrickTileWhiteLineE decals: - 5738: -35,9 - 5739: -35,10 - 5740: -35,11 + 5721: -35,9 + 5722: -35,10 + 5723: -35,11 - node: color: '#91D4FFFF' id: BrickTileWhiteLineE @@ -3203,36 +3203,36 @@ entities: 1263: 2,-6 1264: 2,-5 1641: 10,-2 - 4538: 10,-11 - 4539: 10,-10 - 4540: 10,-9 - 4541: 10,-8 - 4542: 10,-7 - 4543: 13,-9 - 4544: 7,-11 - 4545: 7,-7 - 4546: 7,-6 - 5383: -11,-5 - 5384: -11,-4 - 5385: -11,-3 - 6456: 13,-10 - 6472: 2,6 - 6473: 2,5 - 6474: 2,-2 - 6475: 2,-1 - 6491: 2,4 - 6492: 2,0 - 6514: -6,2 - 6972: 20,10 - 6973: 20,11 - 6974: 20,12 - 6975: 20,13 - 6976: 20,14 - 6977: 20,15 - 6978: 10,10 - 6979: 10,11 - 7053: 10,6 - 7054: 10,5 + 4527: 10,-11 + 4528: 10,-10 + 4529: 10,-9 + 4530: 10,-8 + 4531: 10,-7 + 4532: 13,-9 + 4533: 7,-11 + 4534: 7,-7 + 4535: 7,-6 + 5366: -11,-5 + 5367: -11,-4 + 5368: -11,-3 + 6439: 13,-10 + 6455: 2,6 + 6456: 2,5 + 6457: 2,-2 + 6458: 2,-1 + 6474: 2,4 + 6475: 2,0 + 6497: -6,2 + 6955: 20,10 + 6956: 20,11 + 6957: 20,12 + 6958: 20,13 + 6959: 20,14 + 6960: 20,15 + 6961: 10,10 + 6962: 10,11 + 7036: 10,6 + 7037: 10,5 - node: color: '#9DDFBAFF' id: BrickTileWhiteLineE @@ -3263,9 +3263,9 @@ entities: 3367: -36,65 3368: -36,64 3369: -36,66 - 6221: -42,59 - 6231: -26,61 - 6232: -26,62 + 6204: -42,59 + 6214: -26,61 + 6215: -26,62 - node: color: '#B02E26FF' id: BrickTileWhiteLineE @@ -3288,20 +3288,20 @@ entities: 503: -33,34 546: -5,33 547: -5,34 - 5212: -9,29 - 5215: -13,31 - 5216: -13,32 - 5217: -13,33 - 5218: -13,34 - 5219: -13,35 - 5220: -13,36 - 5495: -13,44 - 5496: -13,45 - 5514: -26,49 - 5515: -26,50 - 5541: -17,49 - 5542: -17,50 - 6156: -2,39 + 5195: -9,29 + 5198: -13,31 + 5199: -13,32 + 5200: -13,33 + 5201: -13,34 + 5202: -13,35 + 5203: -13,36 + 5478: -13,44 + 5479: -13,45 + 5497: -26,49 + 5498: -26,50 + 5524: -17,49 + 5525: -17,50 + 6139: -2,39 - node: color: '#B04DB5FF' id: BrickTileWhiteLineE @@ -3360,7 +3360,7 @@ entities: 1989: 53,50 1990: 54,48 1991: 54,47 - 4738: 49,43 + 4721: 49,43 - node: color: '#BA8841FF' id: BrickTileWhiteLineE @@ -3401,17 +3401,17 @@ entities: 1512: -58,23 1513: -59,29 1514: -59,28 - 4713: 20,-23 - 4726: 23,-20 - 4727: 23,-21 - 6027: -54,34 - 6028: -54,35 - 6029: -54,36 - 6038: -44,30 - 6086: -44,34 - 6371: -58,12 - 6377: -48,12 - 6388: -48,16 + 4696: 20,-23 + 4709: 23,-20 + 4710: 23,-21 + 6010: -54,34 + 6011: -54,35 + 6012: -54,36 + 6021: -44,30 + 6069: -44,34 + 6354: -58,12 + 6360: -48,12 + 6371: -48,16 - node: color: '#D3F4A5FF' id: BrickTileWhiteLineE @@ -3461,11 +3461,11 @@ entities: 2367: -97,11 2368: -97,5 2369: -96,27 - 4436: -96,20 - 4437: -96,-4 - 4463: -68,0 - 4464: -68,1 - 4465: -68,2 + 4425: -96,20 + 4426: -96,-4 + 4452: -68,0 + 4453: -68,1 + 4454: -68,2 - node: color: '#FF974DFF' id: BrickTileWhiteLineE @@ -3476,7 +3476,7 @@ entities: 1619: 21,-9 1620: 21,-10 1621: 21,-11 - 6516: 16,0 + 6499: 16,0 - node: color: '#334E6DFF' id: BrickTileWhiteLineN @@ -3534,10 +3534,10 @@ entities: 1041: 19,21 1042: 20,21 1043: 21,21 - 6098: 26,51 - 6101: 27,51 - 6106: 27,46 - 6107: 28,46 + 6081: 26,51 + 6084: 27,51 + 6089: 27,46 + 6090: 28,46 - node: color: '#7C45B5FF' id: BrickTileWhiteLineN @@ -3548,8 +3548,8 @@ entities: color: '#80C71FFF' id: BrickTileWhiteLineN decals: - 4635: -8,7 - 4636: -7,7 + 4624: -8,7 + 4625: -7,7 - node: color: '#845606FF' id: BrickTileWhiteLineN @@ -3586,37 +3586,37 @@ entities: 2561: -14,-24 2562: -15,-24 2563: -16,-24 - 6716: -22,-19 - 6717: -9,-20 - 6718: -8,-20 - 6726: -22,-28 - 6727: -20,-28 - 6740: -24,-42 - 6741: -22,-42 - 6742: -21,-42 - 6743: -20,-42 - 6744: -18,-42 - 6764: -31,-41 - 6765: -30,-41 - 6766: -29,-41 - 6818: -13,-39 - 6819: -12,-39 - 6820: -11,-39 - 6821: -9,-41 - 6822: -8,-41 - 6931: -15,-34 + 6699: -22,-19 + 6700: -9,-20 + 6701: -8,-20 + 6709: -22,-28 + 6710: -20,-28 + 6723: -24,-42 + 6724: -22,-42 + 6725: -21,-42 + 6726: -20,-42 + 6727: -18,-42 + 6747: -31,-41 + 6748: -30,-41 + 6749: -29,-41 + 6801: -13,-39 + 6802: -12,-39 + 6803: -11,-39 + 6804: -9,-41 + 6805: -8,-41 + 6914: -15,-34 - node: color: '#8932B8FF' id: BrickTileWhiteLineN decals: - 5716: -40,21 - 5717: -39,21 - 5718: -38,21 - 5719: -37,21 - 5720: -36,21 - 5721: -39,13 - 5722: -37,12 - 5723: -36,12 + 5699: -40,21 + 5700: -39,21 + 5701: -38,21 + 5702: -37,21 + 5703: -36,21 + 5704: -39,13 + 5705: -37,12 + 5706: -36,12 - node: color: '#91D4FFFF' id: BrickTileWhiteLineN @@ -3709,29 +3709,29 @@ entities: 1306: 3,-13 1307: 4,-13 2034: -7,3 - 4561: 6,-5 - 4562: 6,-10 - 4563: 10,-5 - 4564: 11,-5 - 4565: 12,-5 - 4590: -10,3 - 4591: -9,3 - 6478: -3,3 - 6479: -2,3 - 6480: 1,7 - 6486: 5,3 - 6487: 4,3 - 6488: -1,3 - 6489: 3,3 - 6965: 9,16 - 6966: 19,16 - 7001: 11,15 - 7002: 12,15 - 7003: 13,15 - 7004: 14,15 - 7005: 15,15 - 7006: 16,15 - 7007: 17,15 + 4550: 6,-5 + 4551: 6,-10 + 4552: 10,-5 + 4553: 11,-5 + 4554: 12,-5 + 4579: -10,3 + 4580: -9,3 + 6461: -3,3 + 6462: -2,3 + 6463: 1,7 + 6469: 5,3 + 6470: 4,3 + 6471: -1,3 + 6472: 3,3 + 6948: 9,16 + 6949: 19,16 + 6984: 11,15 + 6985: 12,15 + 6986: 13,15 + 6987: 14,15 + 6988: 15,15 + 6989: 16,15 + 6990: 17,15 - node: color: '#9DDFBAFF' id: BrickTileWhiteLineN @@ -3768,12 +3768,12 @@ entities: 3392: -31,64 3393: -30,64 3394: -34,64 - 6225: -44,60 - 6226: -43,60 - 6227: -23,58 - 6228: -22,58 - 6229: -21,58 - 6230: -20,58 + 6208: -44,60 + 6209: -43,60 + 6210: -23,58 + 6211: -22,58 + 6212: -21,58 + 6213: -20,58 - node: color: '#B02E26FF' id: BrickTileWhiteLineN @@ -3832,26 +3832,26 @@ entities: 751: -5,21 752: -8,21 753: -7,21 - 5213: -12,30 - 5498: -14,46 - 5499: -15,46 - 5500: -16,46 - 5501: -17,46 - 5502: -18,46 - 5503: -19,46 - 5504: -20,46 - 5505: -21,46 - 5506: -22,46 - 5507: -23,46 - 5508: -24,46 - 5509: -25,46 - 5510: -26,46 - 5543: -18,51 - 5544: -19,51 - 5545: -20,51 - 6119: -8,34 - 6415: -34,30 - 6416: -35,30 + 5196: -12,30 + 5481: -14,46 + 5482: -15,46 + 5483: -16,46 + 5484: -17,46 + 5485: -18,46 + 5486: -19,46 + 5487: -20,46 + 5488: -21,46 + 5489: -22,46 + 5490: -23,46 + 5491: -24,46 + 5492: -25,46 + 5493: -26,46 + 5526: -18,51 + 5527: -19,51 + 5528: -20,51 + 6102: -8,34 + 6398: -34,30 + 6399: -35,30 - node: color: '#B04DB5FF' id: BrickTileWhiteLineN @@ -3940,8 +3940,8 @@ entities: 1974: 61,30 1975: 62,30 1982: 35,26 - 4411: 44,40 - 4412: 48,40 + 4400: 44,40 + 4401: 48,40 - node: color: '#BA8841FF' id: BrickTileWhiteLineN @@ -3986,17 +3986,17 @@ entities: 1529: -50,9 1530: -48,9 1531: -47,9 - 4721: 18,-19 - 4722: 19,-19 - 4723: 20,-19 - 4724: 21,-19 - 4725: 22,-19 - 6368: -62,12 - 6369: -61,12 - 6370: -59,13 - 6379: -51,13 - 6380: -50,13 - 6381: -49,13 + 4704: 18,-19 + 4705: 19,-19 + 4706: 20,-19 + 4707: 21,-19 + 4708: 22,-19 + 6351: -62,12 + 6352: -61,12 + 6353: -59,13 + 6362: -51,13 + 6363: -50,13 + 6364: -49,13 - node: color: '#D3F4A5FF' id: BrickTileWhiteLineN @@ -4067,12 +4067,12 @@ entities: 2360: -84,-3 2361: -82,-4 2377: -73,17 - 4448: -95,-5 - 4449: -94,-5 - 4450: -93,-5 - 4456: -94,22 - 4457: -93,22 - 4469: -69,3 + 4437: -95,-5 + 4438: -94,-5 + 4439: -93,-5 + 4445: -94,22 + 4446: -93,22 + 4458: -69,3 - node: color: '#FF974DFF' id: BrickTileWhiteLineN @@ -4143,9 +4143,9 @@ entities: 1035: 5,27 1036: 12,27 1037: 13,27 - 5233: 6,48 - 6104: 28,45 - 6105: 27,45 + 5216: 6,48 + 6087: 28,45 + 6088: 27,45 - node: color: '#7C45B5FF' id: BrickTileWhiteLineS @@ -4156,8 +4156,8 @@ entities: color: '#80C71FFF' id: BrickTileWhiteLineS decals: - 4627: -8,5 - 4628: -7,5 + 4616: -8,5 + 4617: -7,5 - node: color: '#845606FF' id: BrickTileWhiteLineS @@ -4221,37 +4221,37 @@ entities: 2565: -10,-43 2566: -9,-43 2567: -8,-43 - 4341: -18,-36 - 5944: -13,-40 - 6715: -22,-26 - 6723: -22,-40 - 6724: -21,-40 - 6725: -20,-40 - 6733: -25,-47 - 6734: -24,-47 - 6735: -22,-47 - 6736: -21,-47 - 6737: -20,-47 - 6738: -18,-47 - 6739: -17,-47 - 6777: -31,-46 - 6778: -29,-46 - 6930: -15,-35 - 6936: -13,-36 - 6937: -12,-36 - 6947: -21,-26 + 4330: -18,-36 + 5927: -13,-40 + 6698: -22,-26 + 6706: -22,-40 + 6707: -21,-40 + 6708: -20,-40 + 6716: -25,-47 + 6717: -24,-47 + 6718: -22,-47 + 6719: -21,-47 + 6720: -20,-47 + 6721: -18,-47 + 6722: -17,-47 + 6760: -31,-46 + 6761: -29,-46 + 6913: -15,-35 + 6919: -13,-36 + 6920: -12,-36 + 6930: -21,-26 - node: color: '#8932B8FF' id: BrickTileWhiteLineS decals: - 5733: -40,8 - 5734: -39,8 - 5735: -38,8 - 5736: -37,8 - 5737: -36,8 - 5753: -40,15 - 5754: -39,15 - 5755: -38,15 + 5716: -40,8 + 5717: -39,8 + 5718: -38,8 + 5719: -37,8 + 5720: -36,8 + 5736: -40,15 + 5737: -39,15 + 5738: -38,15 - node: color: '#91D4FFFF' id: BrickTileWhiteLineS @@ -4343,28 +4343,28 @@ entities: 1344: -31,19 2633: -27,19 3249: -20,19 - 4558: 6,-8 - 4559: 11,-6 - 4560: 12,-6 - 4592: -10,1 - 4593: -9,1 - 6481: -3,1 - 6482: -2,1 - 6483: 1,-3 - 6484: 4,1 - 6485: 5,1 - 6494: -1,1 - 6495: 3,1 - 6982: 9,9 - 6983: 19,9 - 6990: 11,12 - 6991: 17,12 - 6992: 13,13 - 6993: 14,13 - 6994: 15,13 - 7058: 27,18 - 7059: 28,18 - 7060: 29,18 + 4547: 6,-8 + 4548: 11,-6 + 4549: 12,-6 + 4581: -10,1 + 4582: -9,1 + 6464: -3,1 + 6465: -2,1 + 6466: 1,-3 + 6467: 4,1 + 6468: 5,1 + 6477: -1,1 + 6478: 3,1 + 6965: 9,9 + 6966: 19,9 + 6973: 11,12 + 6974: 17,12 + 6975: 13,13 + 6976: 14,13 + 6977: 15,13 + 7041: 27,18 + 7042: 28,18 + 7043: 29,18 - node: color: '#9DDFBAFF' id: BrickTileWhiteLineS @@ -4392,16 +4392,16 @@ entities: 3397: -32,64 3398: -31,64 3399: -30,64 - 4430: -44,62 - 6222: -44,58 - 6223: -43,58 - 6233: -25,63 - 6234: -24,63 - 6235: -23,63 - 6236: -22,63 - 6237: -21,63 - 6238: -20,63 - 6239: -19,63 + 4419: -44,62 + 6205: -44,58 + 6206: -43,58 + 6216: -25,63 + 6217: -24,63 + 6218: -23,63 + 6219: -22,63 + 6220: -21,63 + 6221: -20,63 + 6222: -19,63 - node: color: '#B02E26FF' id: BrickTileWhiteLineS @@ -4439,23 +4439,23 @@ entities: 604: -36,33 605: -35,33 606: -34,33 - 5480: -15,45 - 5481: -16,45 - 5482: -17,45 - 5483: -18,45 - 5484: -19,45 - 5485: -20,45 - 5486: -21,45 - 5487: -22,45 - 5488: -23,45 - 5489: -24,45 - 5490: -25,45 - 5491: -26,45 - 5548: -20,48 - 5549: -19,48 - 5550: -18,48 - 6413: -34,29 - 6414: -35,29 + 5463: -15,45 + 5464: -16,45 + 5465: -17,45 + 5466: -18,45 + 5467: -19,45 + 5468: -20,45 + 5469: -21,45 + 5470: -22,45 + 5471: -23,45 + 5472: -24,45 + 5473: -25,45 + 5474: -26,45 + 5531: -20,48 + 5532: -19,48 + 5533: -18,48 + 6396: -34,29 + 6397: -35,29 - node: color: '#B04DB5FF' id: BrickTileWhiteLineS @@ -4545,7 +4545,7 @@ entities: 1960: 61,26 1961: 62,26 1993: 53,46 - 4737: 48,42 + 4720: 48,42 - node: color: '#BA8841FF' id: BrickTileWhiteLineS @@ -4583,30 +4583,30 @@ entities: 1471: -51,25 1472: -50,25 1473: -49,25 - 4711: 22,-22 - 4712: 21,-22 - 4715: 18,-24 - 4716: 19,-24 - 6026: -55,33 - 6350: 16,-17 - 6351: 17,-17 - 6352: 18,-17 - 6353: 19,-17 - 6354: 20,-17 - 6355: 21,-17 - 6356: 22,-17 - 6357: 23,-17 - 6358: 24,-17 - 6364: -62,11 - 6365: -61,11 - 6366: -60,11 - 6367: -59,11 - 6382: -51,11 - 6383: -50,11 - 6384: -49,11 - 6385: -49,15 - 6386: -50,15 - 6387: -51,15 + 4694: 22,-22 + 4695: 21,-22 + 4698: 18,-24 + 4699: 19,-24 + 6009: -55,33 + 6333: 16,-17 + 6334: 17,-17 + 6335: 18,-17 + 6336: 19,-17 + 6337: 20,-17 + 6338: 21,-17 + 6339: 22,-17 + 6340: 23,-17 + 6341: 24,-17 + 6347: -62,11 + 6348: -61,11 + 6349: -60,11 + 6350: -59,11 + 6365: -51,11 + 6366: -50,11 + 6367: -49,11 + 6368: -49,15 + 6369: -50,15 + 6370: -51,15 - node: color: '#D3F4A5FF' id: BrickTileWhiteLineS @@ -4694,12 +4694,12 @@ entities: 2404: -52,7 2405: -51,7 2406: -50,7 - 4451: -94,-6 - 4452: -93,-6 - 4453: -95,21 - 4454: -94,21 - 4455: -93,21 - 4470: -69,-1 + 4440: -94,-6 + 4441: -93,-6 + 4442: -95,21 + 4443: -94,21 + 4444: -93,21 + 4459: -69,-1 - node: color: '#FF974DFF' id: BrickTileWhiteLineS @@ -4771,11 +4771,11 @@ entities: 1027: 17,27 1028: 17,26 1029: 17,25 - 6095: 25,49 - 6096: 25,50 - 6444: 5,59 - 6445: 5,60 - 6446: 5,61 + 6078: 25,49 + 6079: 25,50 + 6427: 5,59 + 6428: 5,60 + 6429: 5,61 - node: color: '#7C45B5FF' id: BrickTileWhiteLineW @@ -4785,13 +4785,13 @@ entities: color: '#80C71FFF' id: BrickTileWhiteLineW decals: - 4573: -24,6 - 4629: -23,6 - 4630: -21,6 - 4631: -19,6 - 4632: -17,6 - 4633: -15,6 - 4634: -9,6 + 4562: -24,6 + 4618: -23,6 + 4619: -21,6 + 4620: -19,6 + 4621: -17,6 + 4622: -15,6 + 4623: -9,6 - node: color: '#845606FF' id: BrickTileWhiteLineW @@ -4804,30 +4804,30 @@ entities: 2499: -31,-20 2500: -31,-25 2501: -11,-25 - 5943: -12,-41 - 6710: -17,-20 - 6752: -26,-46 - 6753: -26,-45 - 6754: -26,-44 - 6755: -26,-43 - 6756: -26,-42 - 6758: -17,-41 - 6759: -17,-40 - 6771: -32,-42 - 6772: -32,-43 - 6773: -32,-44 - 6774: -32,-45 - 6823: -12,-42 - 6928: -17,-35 - 6929: -17,-34 - 6948: -23,-20 + 5926: -12,-41 + 6693: -17,-20 + 6735: -26,-46 + 6736: -26,-45 + 6737: -26,-44 + 6738: -26,-43 + 6739: -26,-42 + 6741: -17,-41 + 6742: -17,-40 + 6754: -32,-42 + 6755: -32,-43 + 6756: -32,-44 + 6757: -32,-45 + 6806: -12,-42 + 6911: -17,-35 + 6912: -17,-34 + 6931: -23,-20 - node: color: '#8932B8FF' id: BrickTileWhiteLineW decals: - 5728: -41,11 - 5729: -41,10 - 5730: -41,9 + 5711: -41,11 + 5712: -41,10 + 5713: -41,9 - node: color: '#91D4FFFF' id: BrickTileWhiteLineW @@ -4872,37 +4872,37 @@ entities: 1254: 0,-9 1255: 0,-10 1256: 0,-11 - 4547: 5,-6 - 4548: 5,-7 - 4549: 9,-6 - 4550: 9,-7 - 4551: 9,-8 - 4552: 9,-9 - 4553: 9,-10 - 4554: 9,-12 - 4555: 12,-10 - 4556: 12,-9 - 4598: -23,2 - 5386: -12,-5 - 5387: -12,-4 - 5388: -12,-3 - 6469: -4,2 - 6470: 0,6 - 6471: 0,5 - 6476: 0,-1 - 6477: 0,-2 - 6490: 0,4 - 6493: 0,0 - 6967: 8,15 - 6968: 8,13 - 6969: 8,12 - 6970: 8,11 - 6971: 8,10 - 6980: 18,11 - 6989: 18,10 - 7055: 18,6 - 7105: 8,14 - 7163: 9,-11 + 4536: 5,-6 + 4537: 5,-7 + 4538: 9,-6 + 4539: 9,-7 + 4540: 9,-8 + 4541: 9,-9 + 4542: 9,-10 + 4543: 9,-12 + 4544: 12,-10 + 4545: 12,-9 + 4587: -23,2 + 5369: -12,-5 + 5370: -12,-4 + 5371: -12,-3 + 6452: -4,2 + 6453: 0,6 + 6454: 0,5 + 6459: 0,-1 + 6460: 0,-2 + 6473: 0,4 + 6476: 0,0 + 6950: 8,15 + 6951: 8,13 + 6952: 8,12 + 6953: 8,11 + 6954: 8,10 + 6963: 18,11 + 6972: 18,10 + 7038: 18,6 + 7088: 8,14 + 7146: 9,-11 - node: color: '#9DDFBAFF' id: BrickTileWhiteLineW @@ -4937,9 +4937,9 @@ entities: 3374: -40,59 3375: -45,65 3376: -45,66 - 4431: -45,63 - 6224: -45,59 - 6243: -18,62 + 4420: -45,63 + 6207: -45,59 + 6226: -18,62 - node: color: '#B02E26FF' id: BrickTileWhiteLineW @@ -4966,15 +4966,15 @@ entities: 521: -12,25 545: -9,33 570: -23,25 - 5478: -14,44 - 5493: -27,49 - 5494: -27,50 - 5546: -21,50 - 5547: -21,49 - 6157: -3,39 - 6158: 0,38 - 6159: 0,39 - 6418: -36,30 + 5461: -14,44 + 5476: -27,49 + 5477: -27,50 + 5529: -21,50 + 5530: -21,49 + 6140: -3,39 + 6141: 0,38 + 6142: 0,39 + 6401: -36,30 - node: color: '#B04DB5FF' id: BrickTileWhiteLineW @@ -5074,15 +5074,15 @@ entities: 1538: -46,15 1539: -46,16 1540: -46,17 - 4717: 17,-23 - 4718: 17,-22 - 4719: 17,-21 - 4720: 17,-20 - 6032: -56,36 - 6033: -56,35 - 6034: -56,34 - 6378: -52,12 - 6389: -52,16 + 4700: 17,-23 + 4701: 17,-22 + 4702: 17,-21 + 4703: 17,-20 + 6015: -56,36 + 6016: -56,35 + 6017: -56,34 + 6361: -52,12 + 6372: -52,16 - node: color: '#D3F4A5FF' id: BrickTileWhiteLineW @@ -5159,9 +5159,9 @@ entities: 2413: -48,1 2414: -48,0 2415: -48,-1 - 4466: -70,2 - 4467: -70,1 - 4468: -70,0 + 4455: -70,2 + 4456: -70,1 + 4457: -70,0 - node: color: '#FF974DFF' id: BrickTileWhiteLineW @@ -5178,46 +5178,46 @@ entities: color: '#FFFFFFFF' id: BushAOne decals: - 5175: 94.47125,44.284866 - 5176: 92.61969,42.185574 - 5177: 96.762985,34.00421 - 5265: -40.488827,72.31972 - 5278: 45.465385,14.397949 - 5364: -66.58855,31.839897 + 5158: 94.47125,44.284866 + 5159: 92.61969,42.185574 + 5160: 96.762985,34.00421 + 5248: -40.488827,72.31972 + 5261: 45.465385,14.397949 + 5347: -66.58855,31.839897 - node: color: '#FFFFFFFF' id: BushATwo decals: - 5225: 4.253884,44.84271 + 5208: 4.253884,44.84271 - node: color: '#FFFFFFFF' id: BushCOne decals: - 5239: -30.284492,4.3149476 + 5222: -30.284492,4.3149476 - node: color: '#FFFFFFFF' id: BushCThree decals: - 5171: 100.565,47.89424 - 5172: 99.85016,42.257523 - 5173: 102.45172,41.15596 - 5280: 45.69976,11.483887 - 5462: -9.563732,46.01986 - 5837: 19.424809,-28.877602 - 6905: -23.96835,-29.359528 + 5154: 100.565,47.89424 + 5155: 99.85016,42.257523 + 5156: 102.45172,41.15596 + 5263: 45.69976,11.483887 + 5445: -9.563732,46.01986 + 5820: 19.424809,-28.877602 + 6888: -23.96835,-29.359528 - node: color: '#FFFFFFFF' id: BushCTwo decals: - 5838: 20.198246,-32.49479 + 5821: 20.198246,-32.49479 - node: color: '#FFFFFFFF' id: BushDOne decals: - 5160: 79.81664,56.801743 - 5161: 83.39086,53.91893 - 5178: 93.28252,30.992493 - 5179: 89.01256,27.561384 + 5143: 79.81664,56.801743 + 5144: 83.39086,53.91893 + 5161: 93.28252,30.992493 + 5162: 89.01256,27.561384 - node: color: '#FFFFFFFF' id: BushDThree @@ -5230,11 +5230,11 @@ entities: 2842: -23.84824,-36.039036 2863: 70.49607,-5.2800684 2864: 73.21482,-5.2683496 - 5003: 73.579414,74.4158 - 5056: 93.51455,23.22274 - 5180: 76.32356,37.133736 - 5181: 72.402985,49.437653 - 5279: 46.340385,12.897949 + 4986: 73.579414,74.4158 + 5039: 93.51455,23.22274 + 5163: 76.32356,37.133736 + 5164: 72.402985,49.437653 + 5262: 46.340385,12.897949 - node: color: '#FFFFFFFF' id: BushDTwo @@ -5243,76 +5243,76 @@ entities: 329: -106.987564,9.973441 343: -101.81569,9.926566 2590: -0.88223886,-10.300684 - 4391: -59.517128,9.321603 - 4392: -30.489948,17.91463 - 4393: 47.184723,21.183506 - 4394: 39.60601,-20.002787 - 4395: 42.520073,-19.752787 - 4396: 40.600338,-30.343527 - 4397: 34.420174,-36.616962 - 4398: 17.789068,-38.879887 - 4399: 1.2919211,-38.75982 - 4400: -3.5219002,-45.90537 - 4401: 13.056606,-52.51093 - 4402: 8.8619585,-45.313065 - 4403: -8.990252,-30.680576 - 4404: -23.893175,-32.74724 + 4380: -59.517128,9.321603 + 4381: -30.489948,17.91463 + 4382: 47.184723,21.183506 + 4383: 39.60601,-20.002787 + 4384: 42.520073,-19.752787 + 4385: 40.600338,-30.343527 + 4386: 34.420174,-36.616962 + 4387: 17.789068,-38.879887 + 4388: 1.2919211,-38.75982 + 4389: -3.5219002,-45.90537 + 4390: 13.056606,-52.51093 + 4391: 8.8619585,-45.313065 + 4392: -8.990252,-30.680576 + 4393: -23.893175,-32.74724 - node: color: '#FFFFFFFF' id: Busha1 decals: - 5226: 6.6366963,43.772396 - 5264: -35.56695,70.99159 - 5463: -5.43092,46.160484 - 6938: -10.819955,-50.226284 + 5209: 6.6366963,43.772396 + 5247: -35.56695,70.99159 + 5446: -5.43092,46.160484 + 6921: -10.819955,-50.226284 - node: color: '#FFFFFFFF' id: Busha2 decals: - 5238: -32.261055,0.119635105 - 5389: 31.206207,57.06866 - 5836: 14.6279335,-30.455727 + 5221: -32.261055,0.119635105 + 5372: 31.206207,57.06866 + 5819: 14.6279335,-30.455727 - node: color: '#FFFFFFFF' id: Busha3 decals: - 5182: 65.169395,53.750153 - 5234: 3.7995977,46.303474 - 5263: -38.7232,72.97597 - 5277: 41.277885,14.983887 - 5363: -69.54167,32.207085 - 6160: -3,27 + 5165: 65.169395,53.750153 + 5217: 3.7995977,46.303474 + 5246: -38.7232,72.97597 + 5260: 41.277885,14.983887 + 5346: -69.54167,32.207085 + 6143: -3,27 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 5055: 93.43252,23.97274 - 6904: -24.335537,-37.467194 + 5038: 93.43252,23.97274 + 6887: -24.335537,-37.467194 - node: color: '#FFFFFFFF' id: Bushb3 decals: 245: 36,-37 - 5174: 95.572815,40.335648 - 5365: -67.549484,36.214897 - 5390: 35.135895,55.59991 + 5157: 95.572815,40.335648 + 5348: -67.549484,36.214897 + 5373: 35.135895,55.59991 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 5391: 31.159332,53.357723 - 5839: 13.901371,-32.71354 + 5374: 31.159332,53.357723 + 5822: 13.901371,-32.71354 - node: color: '#FFFFFFFF' id: Bushc2 decals: - 5224: 7.082009,44.522396 - 5240: -28.768867,3.5180726 + 5207: 7.082009,44.522396 + 5223: -28.768867,3.5180726 - node: color: '#FFFFFFFF' id: Bushc3 decals: - 5266: -36.926327,68.89003 + 5249: -36.926327,68.89003 - node: color: '#FFFFFFFF' id: Bushd1 @@ -5335,21 +5335,21 @@ entities: 2961: 52.400494,-15.636277 2962: 48.594856,-24.49732 2963: 51.36048,-26.65357 - 4420: -13.54646,71.93295 - 5025: 98.13174,15.125084 + 4409: -13.54646,71.93295 + 5008: 98.13174,15.125084 - node: color: '#FFFFFFFF' id: Bushd2 decals: - 5162: 86.68383,54.446274 - 5163: 99.75641,48.140526 - 5164: 102.08844,41.906906 - 5165: 96.3111,43.79454 + 5145: 86.68383,54.446274 + 5146: 99.75641,48.140526 + 5147: 102.08844,41.906906 + 5148: 96.3111,43.79454 - node: color: '#FFFFFFFF' id: Bushd4 decals: - 6906: -23.90585,-38.226715 + 6889: -23.90585,-38.226715 - node: color: '#FFFFFFFF' id: Bushe1 @@ -5362,12 +5362,12 @@ entities: 340: -103.09694,5.285941 341: -102.925064,4.629691 2638: -1.2123232,14.564764 - 5011: 96.186424,43.444447 - 5012: 99.99502,42.319447 - 5013: 100.47549,47.90929 - 5034: 98.75283,16.00399 - 5035: 95.30752,14.339928 - 5184: 66.52363,67.10298 + 4994: 96.186424,43.444447 + 4995: 99.99502,42.319447 + 4996: 100.47549,47.90929 + 5017: 98.75283,16.00399 + 5018: 95.30752,14.339928 + 5167: 66.52363,67.10298 - node: color: '#FFFFFFFF' id: Bushe2 @@ -5378,8 +5378,8 @@ entities: 336: -105.75319,9.676566 337: -105.893814,8.332816 338: -106.737564,7.426566 - 5607: -4.8797646,46.99503 - 5608: -8.293827,45.260654 + 5590: -4.8797646,46.99503 + 5591: -8.293827,45.260654 - node: color: '#FFFFFFFF' id: Bushe3 @@ -5396,14 +5396,14 @@ entities: 2582: 40.71666,-29.257294 2583: 36.59022,-36.651825 2584: 13.614435,-38.831512 - 5004: 99.94814,47.90929 - 5030: 93.9833,17.293053 - 5031: 95.30752,18.980553 - 5032: 96.50283,20.164146 - 5033: 97.99111,18.851646 - 5054: 94.05361,21.125084 - 5155: 84.51586,55.13768 - 5609: -5.7703896,45.08878 + 4987: 99.94814,47.90929 + 5013: 93.9833,17.293053 + 5014: 95.30752,18.980553 + 5015: 96.50283,20.164146 + 5016: 97.99111,18.851646 + 5037: 94.05361,21.125084 + 5138: 84.51586,55.13768 + 5592: -5.7703896,45.08878 - node: color: '#FFFFFFFF' id: Bushe4 @@ -5428,18 +5428,18 @@ entities: 3317: 46.1468,-0.7615123 3349: 1.3932085,51.47611 3350: 0.7525835,54.61237 - 4342: 27.27747,-16.844082 - 4390: -60.134315,9.024728 - 5005: 100.44033,48.342884 - 5006: 103.28799,47.850697 - 5007: 100.22939,42.600697 - 5008: 99.51455,41.569447 - 5009: 95.30752,44.80382 - 5010: 95.68252,43.58507 - 5026: 98.84658,16.648521 - 5027: 99.32705,16.050865 - 5028: 97.780174,19.871178 - 5029: 94.24111,17.820396 + 4331: 27.27747,-16.844082 + 4379: -60.134315,9.024728 + 4988: 100.44033,48.342884 + 4989: 103.28799,47.850697 + 4990: 100.22939,42.600697 + 4991: 99.51455,41.569447 + 4992: 95.30752,44.80382 + 4993: 95.68252,43.58507 + 5009: 98.84658,16.648521 + 5010: 99.32705,16.050865 + 5011: 97.780174,19.871178 + 5012: 94.24111,17.820396 - node: color: '#FFFFFFFF' id: Bushf1 @@ -5460,49 +5460,49 @@ entities: 2943: 53.478752,-27.608667 2944: 49.599846,-25.207119 2945: 50.713127,-17.428339 - 5036: 96.47939,14.41024 - 5037: 97.14736,13.894615 - 5038: 95.13174,20.023521 - 5039: 95.40127,20.773521 - 5040: 94.123924,19.683678 - 5041: 98.76455,20.375084 - 5042: 97.592674,15.06649 - 5043: 94.41689,15.898521 - 5044: 94.66299,16.414146 - 5158: 82.35961,53.485336 - 5159: 76.65258,55.536118 + 5019: 96.47939,14.41024 + 5020: 97.14736,13.894615 + 5021: 95.13174,20.023521 + 5022: 95.40127,20.773521 + 5023: 94.123924,19.683678 + 5024: 98.76455,20.375084 + 5025: 97.592674,15.06649 + 5026: 94.41689,15.898521 + 5027: 94.66299,16.414146 + 5141: 82.35961,53.485336 + 5142: 76.65258,55.536118 - node: color: '#FFFFFFFF' id: Bushf2 decals: 155: -1,-9 156: 19,-39 - 5045: 94.44033,19.882896 - 5046: 96.47939,19.332115 - 5047: 97.41689,18.804771 - 5048: 97.81533,15.464928 - 5049: 95.248924,13.425865 + 5028: 94.44033,19.882896 + 5029: 96.47939,19.332115 + 5030: 97.41689,18.804771 + 5031: 97.81533,15.464928 + 5032: 95.248924,13.425865 - node: color: '#FFFFFFFF' id: Bushf3 decals: 2588: 13.218527,-38.625637 2589: -1.2923951,-11.308496 - 5156: 82.230705,54.66893 - 5157: 84.011955,53.71971 - 5186: 61.35785,62.907665 - 5187: 74.36302,75.21933 + 5139: 82.230705,54.66893 + 5140: 84.011955,53.71971 + 5169: 61.35785,62.907665 + 5170: 74.36302,75.21933 - node: color: '#FFFFFFFF' id: Bushg1 decals: - 5605: -9.61414,45.510654 - 5606: -7.731327,46.02628 + 5588: -9.61414,45.510654 + 5589: -7.731327,46.02628 - node: color: '#FFFFFFFF' id: Bushg2 decals: - 5183: 65.90768,54.61734 + 5166: 65.90768,54.61734 - node: color: '#FFFFFFFF' id: Bushg4 @@ -5532,9 +5532,9 @@ entities: 3015: -88.04488,0.95056915 3016: -100.76816,3.8184528 3017: -100.44003,4.3575153 - 4520: 70.73736,17.2949 - 5153: 83.461174,54.516586 - 5154: 84.480705,52.864243 + 4509: 70.73736,17.2949 + 5136: 83.461174,54.516586 + 5137: 84.480705,52.864243 - node: color: '#FFFFFFFF' id: Bushh1 @@ -5557,27 +5557,27 @@ entities: 2859: 51.592796,-17.105461 2869: 53.281765,-3.1966472 3030: -87.86473,16.017628 - 4367: 37.616062,21.238317 - 4368: 46.427296,21.230505 - 4369: -0.83810425,34.107063 - 4370: 0.021270752,36.677376 - 5014: 102.33877,48.307728 - 5015: 100.63955,43.174915 - 5016: 99.174706,41.194447 - 5017: 95.424706,43.713978 - 5018: 95.13174,19.261803 - 5019: 95.78799,20.117271 - 5020: 98.95205,17.398521 - 5021: 97.72158,14.714928 - 5057: 91.780174,23.000084 - 5058: 97.34658,20.457115 + 4356: 37.616062,21.238317 + 4357: 46.427296,21.230505 + 4358: -0.83810425,34.107063 + 4359: 0.021270752,36.677376 + 4997: 102.33877,48.307728 + 4998: 100.63955,43.174915 + 4999: 99.174706,41.194447 + 5000: 95.424706,43.713978 + 5001: 95.13174,19.261803 + 5002: 95.78799,20.117271 + 5003: 98.95205,17.398521 + 5004: 97.72158,14.714928 + 5040: 91.780174,23.000084 + 5041: 97.34658,20.457115 - node: color: '#FFFFFFFF' id: Bushh2 decals: - 5051: 93.19814,17.31649 - 5052: 94.66299,19.308678 - 5053: 94.768456,20.984459 + 5034: 93.19814,17.31649 + 5035: 94.66299,19.308678 + 5036: 94.768456,20.984459 - node: color: '#FFFFFFFF' id: Bushh3 @@ -5612,7 +5612,7 @@ entities: 2908: 59.35071,-27.557377 2909: 52.460087,-27.194096 2910: 50.397587,-26.186283 - 5050: 92.78799,17.644615 + 5033: 92.78799,17.644615 - node: color: '#FFFFFFFF' id: Bushi2 @@ -5621,14 +5621,14 @@ entities: 326: -102.331314,7.207816 2911: 52.108524,-27.53394 2912: 59.6554,-26.948002 - 4421: -13.85896,71.22 - 5022: 94.66299,18.605553 - 5023: 95.21377,15.007896 - 5166: 95.572815,44.521103 - 5167: 99.46344,42.423447 - 5168: 102.54547,43.05626 - 5169: 103.65875,48.86876 - 5170: 99.59235,49.114853 + 4410: -13.85896,71.22 + 5005: 94.66299,18.605553 + 5006: 95.21377,15.007896 + 5149: 95.572815,44.521103 + 5150: 99.46344,42.423447 + 5151: 102.54547,43.05626 + 5152: 103.65875,48.86876 + 5153: 99.59235,49.114853 - node: color: '#FFFFFFFF' id: Bushi3 @@ -5641,8 +5641,8 @@ entities: 3237: -17.382242,55.28696 3270: -26.578676,-14.086744 3271: -20.547426,-14.055494 - 4366: 36.811375,20.988317 - 5024: 96.01064,14.070396 + 4355: 36.811375,20.988317 + 5007: 96.01064,14.070396 - node: color: '#FFFFFFFF' id: Bushi4 @@ -5661,7 +5661,7 @@ entities: color: '#FFFFFFFF' id: Bushj1 decals: - 4522: 70.74908,18.630838 + 4511: 70.74908,18.630838 - node: color: '#FFFFFFFF' id: Bushj2 @@ -5669,10 +5669,10 @@ entities: 3147: 13.119661,34.4944 3148: 21.920443,36.205338 3149: 22.752474,39.38112 - 5059: 98.22549,20.421959 - 5060: 99.373924,17.937584 - 5061: 94.768456,14.328209 - 5062: 95.4833,18.089928 + 5042: 98.22549,20.421959 + 5043: 99.373924,17.937584 + 5044: 94.768456,14.328209 + 5045: 95.4833,18.089928 - node: color: '#FFFFFFFF' id: Bushj3 @@ -5689,7 +5689,7 @@ entities: 2930: 67.81218,-14.928173 2931: 67.50614,-5.3519297 2932: 71.11552,-5.3636484 - 4446: -90.484215,24.691216 + 4435: -90.484215,24.691216 - node: color: '#FFFFFFFF' id: Bushk1 @@ -5710,8 +5710,8 @@ entities: 3247: 46.415348,5.7034583 3248: 58.00519,8.1612835 3348: 0.7213335,50.679234 - 5604: -8.004765,45.112217 - 6945: -10.984017,-51.702847 + 5587: -8.004765,45.112217 + 6928: -10.984017,-51.702847 - node: color: '#FFFFFFFF' id: Bushk2 @@ -5732,16 +5732,16 @@ entities: 2889: 66.93411,-5.1350956 3145: 9.451693,35.72487 3146: 12.533724,34.799088 - 4371: 0.07595825,34.04807 - 4574: -30.692488,-17.01733 + 4360: 0.07595825,34.04807 + 4563: -30.692488,-17.01733 - node: color: '#FFFFFFFF' id: Bushk3 decals: 331: -102.06569,2.9734414 - 4352: 1.882721,-38.060734 - 4428: -13.937085,69.75079 - 4521: 71.135796,16.380838 + 4341: 1.882721,-38.060734 + 4417: -13.937085,69.75079 + 4510: 71.135796,16.380838 - node: color: '#FFFFFFFF' id: Bushl2 @@ -5759,14 +5759,14 @@ entities: decals: 3224: -17.366714,59.025 3225: -16.417496,58.0875 - 5185: 60.289253,65.017044 + 5168: 60.289253,65.017044 - node: color: '#FFFFFFFF' id: Bushm1 decals: 182: 3,9 3236: -17.26131,56.967907 - 4422: -13.405835,69.4075 + 4411: -13.405835,69.4075 - node: color: '#FFFFFFFF' id: Bushm2 @@ -5793,8 +5793,8 @@ entities: 2965: 47.043705,0.5114244 2966: 47.47435,0.95306015 2967: 55.576187,8.312037 - 5129: 85.4669,54.91986 - 6946: -10.64808,-52.05441 + 5112: 85.4669,54.91986 + 6929: -10.64808,-52.05441 - node: angle: -0.15707963267948966 rad color: '#FFFFFFFF' @@ -5819,127 +5819,127 @@ entities: 3189: -13.602906,77.607574 3235: -16.999838,55.935135 3318: 46.30305,-3.6521373 - 5602: -8.86414,45.30753 - 5603: -6.059452,46.604404 + 5585: -8.86414,45.30753 + 5586: -6.059452,46.604404 - node: color: '#FFFFFFFF' id: Caution decals: - 4754: 69,82 - 4755: 73,82 - 4756: 77,82 - 4810: 81,82 + 4737: 69,82 + 4738: 73,82 + 4739: 77,82 + 4793: 81,82 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNe decals: - 5951: 30,-19 - 5961: -11,59 - 5971: -9,55 - 5972: -3,55 - 5973: -3,50 - 5974: -9,50 + 5934: 30,-19 + 5944: -11,59 + 5954: -9,55 + 5955: -3,55 + 5956: -3,50 + 5957: -9,50 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNw decals: - 5952: 28,-19 - 5962: -15,59 - 5967: -11,55 - 5968: -8,55 - 5969: -11,50 - 5970: -8,50 + 5935: 28,-19 + 5945: -15,59 + 5950: -11,55 + 5951: -8,55 + 5952: -11,50 + 5953: -8,50 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSe decals: - 5955: 30,-22 - 5963: -11,56 - 5975: -3,48 - 5976: -9,48 - 5977: -9,53 - 5978: -3,53 + 5938: 30,-22 + 5946: -11,56 + 5958: -3,48 + 5959: -9,48 + 5960: -9,53 + 5961: -3,53 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSw decals: - 5954: 28,-22 - 5964: -15,56 - 5965: -11,48 - 5966: -8,48 - 6013: -8,53 + 5937: 28,-22 + 5947: -15,56 + 5948: -11,48 + 5949: -8,48 + 5996: -8,53 - node: color: '#FFFFFFFF' id: ConcreteTrimLineE decals: - 5956: 30,-21 - 5957: 30,-20 - 6006: -3,54 - 6007: -3,49 - 6008: -11,57 - 6009: -11,58 - 6010: -9,49 - 6011: -9,54 + 5939: 30,-21 + 5940: 30,-20 + 5989: -3,54 + 5990: -3,49 + 5991: -11,57 + 5992: -11,58 + 5993: -9,49 + 5994: -9,54 - node: color: '#FFFFFFFF' id: ConcreteTrimLineN decals: - 5960: 29,-19 - 5993: -14,59 - 5994: -13,59 - 5995: -12,59 - 5996: -10,55 - 5997: -7,55 - 5998: -6,55 - 5999: -5,55 - 6000: -4,55 - 6001: -4,50 - 6002: -5,50 - 6003: -6,50 - 6004: -7,50 - 6005: -10,50 + 5943: 29,-19 + 5976: -14,59 + 5977: -13,59 + 5978: -12,59 + 5979: -10,55 + 5980: -7,55 + 5981: -6,55 + 5982: -5,55 + 5983: -4,55 + 5984: -4,50 + 5985: -5,50 + 5986: -6,50 + 5987: -7,50 + 5988: -10,50 - node: color: '#FFFFFFFF' id: ConcreteTrimLineS decals: - 5953: 29,-22 - 5979: -10,53 - 5980: -7,53 - 5981: -6,53 - 5982: -5,53 - 5983: -4,53 - 5984: -4,48 - 5985: -5,48 - 5986: -6,48 - 5987: -7,48 - 5988: -10,48 - 5989: -10,53 - 5990: -12,56 - 5991: -13,56 - 5992: -14,56 + 5936: 29,-22 + 5962: -10,53 + 5963: -7,53 + 5964: -6,53 + 5965: -5,53 + 5966: -4,53 + 5967: -4,48 + 5968: -5,48 + 5969: -6,48 + 5970: -7,48 + 5971: -10,48 + 5972: -10,53 + 5973: -12,56 + 5974: -13,56 + 5975: -14,56 - node: color: '#FFFFFFFF' id: ConcreteTrimLineW decals: - 5958: 28,-21 - 5959: 28,-20 - 6012: -8,54 - 6014: -8,49 - 6015: -11,49 - 6016: -11,54 - 6017: -15,57 - 6018: -15,58 + 5941: 28,-21 + 5942: 28,-20 + 5995: -8,54 + 5997: -8,49 + 5998: -11,49 + 5999: -11,54 + 6000: -15,57 + 6001: -15,58 - node: color: '#B02E26FF' id: Delivery decals: - 5223: -11,35 - 5452: -7,43 - 5453: -5,43 - 5454: -5,42 - 5455: -5,41 - 5456: -7,42 - 5457: -7,41 + 5206: -11,35 + 5435: -7,43 + 5436: -5,43 + 5437: -5,42 + 5438: -5,41 + 5439: -7,42 + 5440: -7,41 - node: color: '#FFFFFFFF' id: Delivery @@ -5949,40 +5949,40 @@ entities: 2005: 45,36 2006: 46,36 2007: 47,36 - 4331: 69,-9 - 4332: 70,-9 - 4333: 72,-9 - 4334: 73,-9 - 4335: -43,38 - 4336: -42,38 - 4337: -41,38 - 4338: -40,38 - 4339: 28,38 - 4757: 68,82 - 4758: 70,82 - 4759: 72,82 - 4760: 74,82 - 4761: 76,82 - 4762: 78,82 - 4808: 80,82 - 4809: 82,82 - 5761: 99,-10 - 5762: 100,-10 - 5763: 101,-10 - 5764: 102,-10 - 5765: 103,-10 - 5766: 101,-24 - 5767: 102,-24 - 5768: 103,-24 - 5769: 108,-19 - 5770: 108,-18 - 5771: 108,-17 - 5772: 108,-16 - 5773: 108,-15 - 5774: 97,-13 - 5775: 105,-13 - 5776: 105,-21 - 5777: 97,-21 + 4320: 69,-9 + 4321: 70,-9 + 4322: 72,-9 + 4323: 73,-9 + 4324: -43,38 + 4325: -42,38 + 4326: -41,38 + 4327: -40,38 + 4328: 28,38 + 4740: 68,82 + 4741: 70,82 + 4742: 72,82 + 4743: 74,82 + 4744: 76,82 + 4745: 78,82 + 4791: 80,82 + 4792: 82,82 + 5744: 99,-10 + 5745: 100,-10 + 5746: 101,-10 + 5747: 102,-10 + 5748: 103,-10 + 5749: 101,-24 + 5750: 102,-24 + 5751: 103,-24 + 5752: 108,-19 + 5753: 108,-18 + 5754: 108,-17 + 5755: 108,-16 + 5756: 108,-15 + 5757: 97,-13 + 5758: 105,-13 + 5759: 105,-21 + 5760: 97,-21 - node: cleanable: True color: '#FFFFFFFF' @@ -6144,1047 +6144,1047 @@ entities: 3553: 79,0 3554: 80,-8 3555: 77,-12 - 3559: 68,-18 - 3560: 67,-16 - 3561: 60,-10 - 3562: 60,-12 - 3563: 56,-14 - 3564: 54,-16 - 3565: 49,-22 - 3566: 50,-23 - 3567: 52,-26 - 3568: 55,-27 - 3569: 57,-28 - 3570: 60,-26 - 3571: 64,-23 - 3572: 65,-22 - 3573: 61,-10 - 3574: 61,-8 - 3575: 56,-5 - 3576: 54,-5 - 3577: 54,-2 - 3578: 50,-2 - 3579: 50,-6 - 3580: 49,-7 - 3581: 51,-9 - 3582: 50,2 - 3583: 48,5 - 3584: 49,12 - 3585: 49,14 - 3586: 43,19 - 3587: 41,20 - 3588: 46,18 - 3589: 38,18 - 3590: 34,19 - 3591: 32,16 - 3592: 30,15 - 3593: 33,15 - 3594: 33,12 - 3595: 31,10 - 3596: 27,10 - 3597: 25,12 - 3598: 26,16 - 3599: 26,12 - 3600: 26,9 - 3601: 31,6 - 3602: 21,7 - 3603: 19,5 - 3604: 9,7 - 3605: 8,3 - 3606: -3,4 - 3607: -7,10 - 3608: -8,12 - 3609: -9,14 - 3610: -4,14 - 3611: -12,12 - 3612: -16,12 - 3613: -26,13 - 3614: -28,13 - 3615: -35,14 - 3616: -35,15 - 3617: -33,11 - 3618: -38,11 - 3619: -40,8 - 3620: -35,7 - 3621: -35,-5 - 3622: -32,-5 - 3623: -20,-3 - 3624: -17,-2 - 3625: -16,-3 - 3626: -21,3 - 3627: -15,1 - 3628: -12,-2 - 3629: -13,-5 - 3630: 0,-6 - 3631: 2,-8 - 3632: 2,-12 - 3633: 0,-11 - 3634: -2,-15 - 3635: -7,-16 - 3636: -13,-16 - 3637: -17,-16 - 3638: -12,-14 - 3639: -26,-17 - 3640: -32,-15 - 3641: -33,-11 - 3642: -32,-9 - 3643: -38,-15 - 3644: -40,-16 - 3645: -45,-14 - 3646: -44,-12 - 3647: -46,-10 - 3648: -48,-8 - 3649: -49,-15 - 3650: -50,-20 - 3651: -53,-17 - 3652: -54,-22 - 3653: -49,-25 - 3654: -47,-28 - 3656: -56,-24 - 3657: -57,-18 - 3660: -39,-30 - 3662: -31,-29 - 3663: -33,-26 - 3664: -33,-20 - 3665: -14,-21 - 3666: -7,-21 - 3667: -12,-19 - 3668: -4,-24 - 3669: -4,-19 - 3670: -5,-28 - 3671: -7,-29 - 3672: -6,-31 - 3673: -6,-30 - 3674: 0,-29 - 3675: 2,-25 - 3676: 2,-19 - 3677: -2,-18 - 3678: 3,-16 - 3679: 4,-21 - 3680: 4,-26 - 3681: 8,-28 - 3682: 9,-30 - 3683: 9,-33 - 3684: 11,-34 - 3685: 23,-19 - 3686: 29,-25 - 3687: 32,-23 - 3688: 33,-24 - 3689: 37,-23 - 3690: 38,-26 - 3691: 38,-33 - 3692: 39,-34 - 3693: 33,-35 - 3694: 24,-24 - 3695: 24,-25 - 3696: 22,-35 - 3697: 7,-28 - 3698: 9,-26 - 3699: 6,-37 - 3700: 0,-33 - 3701: 2,-33 - 3702: -4,-38 - 3703: -2,-40 - 3704: -1,-43 - 3705: 1,-40 - 3706: 2,-44 - 3707: -2,-45 - 3708: -1,-45 - 3709: 0,-48 - 3710: 2,-50 - 3711: 6,-52 - 3712: 7,-51 - 3713: 8,-53 - 3714: -3,-52 - 3715: -4,-53 - 3716: -8,-53 - 3717: -8,-51 - 3718: -3,-51 - 3719: -47,-37 - 3720: -52,-37 - 3721: -57,-37 - 3722: -58,-34 - 3723: -60,-33 - 3724: -61,-33 - 3725: -63,-29 - 3726: -62,-26 - 3727: -60,-12 - 3728: -57,-12 - 3729: -58,-9 - 3730: -62,-7 - 3731: -62,-8 - 3732: -59,-4 - 3733: -62,-4 - 3734: -61,-5 - 3735: -58,-2 - 3736: -53,-4 - 3737: -52,-3 - 3738: -49,-3 - 3739: -46,-6 - 3740: -44,-11 - 3741: -46,4 - 3742: -49,7 - 3743: -47,10 - 3744: -44,10 - 3745: -45,14 - 3746: -50,13 - 3747: -53,11 - 3748: -54,7 - 3749: -60,8 - 3750: -64,7 - 3751: -66,9 - 3752: -54,14 - 3753: -56,14 - 3754: -62,17 - 3755: -63,15 - 3756: -57,21 - 3757: -59,24 - 3758: -57,26 - 3759: -55,23 - 3760: -65,27 - 3761: -53,31 - 3762: -58,4 - 3763: -59,1 - 3764: -61,0 - 3765: -60,-2 - 3766: -66,3 - 3767: -65,-2 - 3768: -66,-4 - 3769: -66,-7 - 3770: -69,-7 - 3771: -74,-7 - 3772: -76,-3 - 3773: -75,-3 - 3774: -78,0 - 3775: -79,7 - 3776: -81,9 - 3777: -84,7 - 3778: -84,6 - 3779: -86,6 - 3780: -86,10 - 3781: -86,2 - 3782: -84,0 - 3783: -87,-4 - 3784: -89,-5 - 3785: -87,-6 - 3786: -80,-4 - 3787: -80,-6 - 3788: -97,-3 - 3789: -96,-8 - 3790: -95,-10 - 3791: -97,-13 - 3792: -92,-6 - 3793: -89,-2 - 3794: -97,4 - 3795: -98,4 - 3796: -97,11 - 3797: -99,8 - 3798: -93,8 - 3799: -90,8 - 3800: -90,7 - 3801: -96,17 - 3802: -97,19 - 3803: -96,21 - 3804: -96,24 - 3805: -97,27 - 3806: -89,21 - 3807: -86,20 - 3808: -82,21 - 3809: -78,21 - 3810: -74,24 - 3811: -100,28 - 3812: -79,51 - 3813: -75,52 - 3814: -68,50 - 3815: -66,47 - 3816: -60,50 - 3817: -42,63 - 3818: -7,71 - 3819: -2,71 - 3820: -9,74 - 3821: 20,2 - 3822: 33,-1 - 3823: 20,-8 - 3824: 7,-8 - 3825: 0,-9 - 3876: -39,40 - 3877: -35,34 - 3878: -36,30 - 3879: -17,30 - 3880: -15,28 - 3881: -13,36 - 3882: -13,41 - 3883: -8,42 - 3884: -7,39 - 3885: -5,32 - 5610: -26,50 - 5611: -32,51 - 5612: -21,50 - 5613: -19,46 - 5614: -14,45 - 5615: -14,39 - 5616: -9,42 - 5617: -22,45 - 5618: -21,44 - 5619: -27,44 - 5620: -28,41 - 5621: -24,39 - 5622: -21,38 - 5623: -28,38 - 5624: -31,39 - 5625: -20,44 - 5626: -28,44 - 5627: -14,36 - 5628: -13,32 - 5629: -14,44 - 5630: -13,43 - 5782: 84,-15 - 5783: 79,-13 - 5784: 80,-13 - 5785: 81,-21 - 5786: 82,-20 - 5787: 94,-20 - 5788: 94,-19 - 5789: 93,-14 - 5790: 93,-12 - 5791: 95,-10 - 5792: 97,-24 - 5793: 95,-24 - 5794: 100,-25 - 5795: 101,-23 - 5796: 103,-23 - 5797: 106,-25 - 5798: 108,-25 - 5799: 109,-24 - 5800: 109,-22 - 5801: 107,-20 - 5802: 107,-18 - 5803: 107,-14 - 5804: 109,-12 - 5805: 109,-10 - 5806: 107,-10 - 5807: 105,-10 - 5808: 103,-11 - 5809: 101,-11 - 5810: 99,-10 - 5811: 98,-10 - 5812: 96,-10 - 5813: 100,-18 - 5814: 93,-18 - 6912: -25,-43 - 6913: -17,-41 - 6914: -16,-42 - 6915: -17,-46 - 6916: -21,-47 - 6917: -22,-38 - 6918: -20,-36 - 6919: -22,-32 - 6920: -20,-29 - 6921: -17,-20 - 6922: -11,-31 - 6923: -16,-29 - 7141: -4,3 - 7142: 2,6 - 7143: 2,7 - 7144: 6,1 - 7145: 0,-2 - 7146: 2,-3 - 7147: 0,-5 + 3556: 68,-18 + 3557: 67,-16 + 3558: 60,-10 + 3559: 60,-12 + 3560: 56,-14 + 3561: 54,-16 + 3562: 49,-22 + 3563: 50,-23 + 3564: 52,-26 + 3565: 55,-27 + 3566: 57,-28 + 3567: 60,-26 + 3568: 64,-23 + 3569: 65,-22 + 3570: 61,-10 + 3571: 61,-8 + 3572: 56,-5 + 3573: 54,-5 + 3574: 54,-2 + 3575: 50,-2 + 3576: 50,-6 + 3577: 49,-7 + 3578: 51,-9 + 3579: 50,2 + 3580: 48,5 + 3581: 49,12 + 3582: 49,14 + 3583: 43,19 + 3584: 41,20 + 3585: 46,18 + 3586: 38,18 + 3587: 34,19 + 3588: 32,16 + 3589: 30,15 + 3590: 33,15 + 3591: 33,12 + 3592: 31,10 + 3593: 27,10 + 3594: 25,12 + 3595: 26,16 + 3596: 26,12 + 3597: 26,9 + 3598: 31,6 + 3599: 21,7 + 3600: 19,5 + 3601: 9,7 + 3602: 8,3 + 3603: -3,4 + 3604: -7,10 + 3605: -8,12 + 3606: -9,14 + 3607: -4,14 + 3608: -12,12 + 3609: -16,12 + 3610: -26,13 + 3611: -28,13 + 3612: -35,14 + 3613: -35,15 + 3614: -33,11 + 3615: -38,11 + 3616: -40,8 + 3617: -35,7 + 3618: -35,-5 + 3619: -32,-5 + 3620: -20,-3 + 3621: -17,-2 + 3622: -16,-3 + 3623: -21,3 + 3624: -15,1 + 3625: -12,-2 + 3626: -13,-5 + 3627: 0,-6 + 3628: 2,-8 + 3629: 2,-12 + 3630: 0,-11 + 3631: -2,-15 + 3632: -7,-16 + 3633: -13,-16 + 3634: -17,-16 + 3635: -12,-14 + 3636: -26,-17 + 3637: -32,-15 + 3638: -33,-11 + 3639: -32,-9 + 3640: -38,-15 + 3641: -40,-16 + 3642: -45,-14 + 3643: -44,-12 + 3644: -46,-10 + 3645: -48,-8 + 3646: -49,-15 + 3647: -50,-20 + 3648: -53,-17 + 3649: -54,-22 + 3650: -49,-25 + 3651: -47,-28 + 3652: -56,-24 + 3653: -57,-18 + 3654: -39,-30 + 3655: -31,-29 + 3656: -33,-26 + 3657: -33,-20 + 3658: -14,-21 + 3659: -7,-21 + 3660: -12,-19 + 3661: -4,-24 + 3662: -4,-19 + 3663: -5,-28 + 3664: -7,-29 + 3665: -6,-31 + 3666: -6,-30 + 3667: 0,-29 + 3668: 2,-25 + 3669: 2,-19 + 3670: -2,-18 + 3671: 3,-16 + 3672: 4,-21 + 3673: 4,-26 + 3674: 8,-28 + 3675: 9,-30 + 3676: 9,-33 + 3677: 11,-34 + 3678: 23,-19 + 3679: 29,-25 + 3680: 32,-23 + 3681: 33,-24 + 3682: 37,-23 + 3683: 38,-26 + 3684: 38,-33 + 3685: 39,-34 + 3686: 33,-35 + 3687: 24,-24 + 3688: 24,-25 + 3689: 22,-35 + 3690: 7,-28 + 3691: 9,-26 + 3692: 6,-37 + 3693: 0,-33 + 3694: 2,-33 + 3695: -4,-38 + 3696: -2,-40 + 3697: -1,-43 + 3698: 1,-40 + 3699: 2,-44 + 3700: -2,-45 + 3701: -1,-45 + 3702: 0,-48 + 3703: 2,-50 + 3704: 6,-52 + 3705: 7,-51 + 3706: 8,-53 + 3707: -3,-52 + 3708: -4,-53 + 3709: -8,-53 + 3710: -8,-51 + 3711: -3,-51 + 3712: -47,-37 + 3713: -52,-37 + 3714: -57,-37 + 3715: -58,-34 + 3716: -60,-33 + 3717: -61,-33 + 3718: -63,-29 + 3719: -62,-26 + 3720: -60,-12 + 3721: -57,-12 + 3722: -58,-9 + 3723: -62,-7 + 3724: -62,-8 + 3725: -59,-4 + 3726: -62,-4 + 3727: -61,-5 + 3728: -58,-2 + 3729: -53,-4 + 3730: -52,-3 + 3731: -49,-3 + 3732: -46,-6 + 3733: -44,-11 + 3734: -46,4 + 3735: -49,7 + 3736: -47,10 + 3737: -44,10 + 3738: -45,14 + 3739: -50,13 + 3740: -53,11 + 3741: -54,7 + 3742: -60,8 + 3743: -64,7 + 3744: -66,9 + 3745: -54,14 + 3746: -56,14 + 3747: -62,17 + 3748: -63,15 + 3749: -57,21 + 3750: -59,24 + 3751: -57,26 + 3752: -55,23 + 3753: -65,27 + 3754: -53,31 + 3755: -58,4 + 3756: -59,1 + 3757: -61,0 + 3758: -60,-2 + 3759: -66,3 + 3760: -65,-2 + 3761: -66,-4 + 3762: -66,-7 + 3763: -69,-7 + 3764: -74,-7 + 3765: -76,-3 + 3766: -75,-3 + 3767: -78,0 + 3768: -79,7 + 3769: -81,9 + 3770: -84,7 + 3771: -84,6 + 3772: -86,6 + 3773: -86,10 + 3774: -86,2 + 3775: -84,0 + 3776: -87,-4 + 3777: -89,-5 + 3778: -87,-6 + 3779: -80,-4 + 3780: -80,-6 + 3781: -97,-3 + 3782: -96,-8 + 3783: -95,-10 + 3784: -97,-13 + 3785: -92,-6 + 3786: -89,-2 + 3787: -97,4 + 3788: -98,4 + 3789: -97,11 + 3790: -99,8 + 3791: -93,8 + 3792: -90,8 + 3793: -90,7 + 3794: -96,17 + 3795: -97,19 + 3796: -96,21 + 3797: -96,24 + 3798: -97,27 + 3799: -89,21 + 3800: -86,20 + 3801: -82,21 + 3802: -78,21 + 3803: -74,24 + 3804: -100,28 + 3805: -79,51 + 3806: -75,52 + 3807: -68,50 + 3808: -66,47 + 3809: -60,50 + 3810: -42,63 + 3811: -7,71 + 3812: -2,71 + 3813: -9,74 + 3814: 20,2 + 3815: 33,-1 + 3816: 20,-8 + 3817: 7,-8 + 3818: 0,-9 + 3869: -39,40 + 3870: -35,34 + 3871: -36,30 + 3872: -17,30 + 3873: -15,28 + 3874: -13,36 + 3875: -13,41 + 3876: -8,42 + 3877: -7,39 + 3878: -5,32 + 5593: -26,50 + 5594: -32,51 + 5595: -21,50 + 5596: -19,46 + 5597: -14,45 + 5598: -14,39 + 5599: -9,42 + 5600: -22,45 + 5601: -21,44 + 5602: -27,44 + 5603: -28,41 + 5604: -24,39 + 5605: -21,38 + 5606: -28,38 + 5607: -31,39 + 5608: -20,44 + 5609: -28,44 + 5610: -14,36 + 5611: -13,32 + 5612: -14,44 + 5613: -13,43 + 5765: 84,-15 + 5766: 79,-13 + 5767: 80,-13 + 5768: 81,-21 + 5769: 82,-20 + 5770: 94,-20 + 5771: 94,-19 + 5772: 93,-14 + 5773: 93,-12 + 5774: 95,-10 + 5775: 97,-24 + 5776: 95,-24 + 5777: 100,-25 + 5778: 101,-23 + 5779: 103,-23 + 5780: 106,-25 + 5781: 108,-25 + 5782: 109,-24 + 5783: 109,-22 + 5784: 107,-20 + 5785: 107,-18 + 5786: 107,-14 + 5787: 109,-12 + 5788: 109,-10 + 5789: 107,-10 + 5790: 105,-10 + 5791: 103,-11 + 5792: 101,-11 + 5793: 99,-10 + 5794: 98,-10 + 5795: 96,-10 + 5796: 100,-18 + 5797: 93,-18 + 6895: -25,-43 + 6896: -17,-41 + 6897: -16,-42 + 6898: -17,-46 + 6899: -21,-47 + 6900: -22,-38 + 6901: -20,-36 + 6902: -22,-32 + 6903: -20,-29 + 6904: -17,-20 + 6905: -11,-31 + 6906: -16,-29 + 7124: -4,3 + 7125: 2,6 + 7126: 2,7 + 7127: 6,1 + 7128: 0,-2 + 7129: 2,-3 + 7130: 0,-5 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 4640: -55,-25 - 4642: -55,-29 - 4643: -60,-29 - 4644: -47,-30 - 4646: -42,-31 - 4647: -46,-33 - 4648: -39,-33 - 4649: -38,-36 - 4650: -38,-38 - 4651: -44,-38 - 4652: -43,-38 - 4654: -38,-22 - 4655: -44,-16 - 4656: -51,-15 - 4657: -54,-16 - 4658: -52,-11 + 4626: -55,-25 + 4627: -55,-29 + 4628: -60,-29 + 4629: -47,-30 + 4630: -42,-31 + 4631: -46,-33 + 4632: -39,-33 + 4633: -38,-36 + 4634: -38,-38 + 4635: -44,-38 + 4636: -43,-38 + 4637: -38,-22 + 4638: -44,-16 + 4639: -51,-15 + 4640: -54,-16 + 4641: -52,-11 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 3826: -9,-22 - 3827: -8,-17 - 3828: -5,-16 - 3829: -9,-15 - 3830: -12,-17 - 3831: -20,-16 - 3832: -26,-16 - 3833: -32,-16 - 3834: -33,-14 - 3835: -33,-10 - 3836: -33,-4 - 3837: -33,-4 - 3838: -33,-5 - 3839: -15,1 - 3840: -27,13 - 3841: -26,12 - 3842: -33,12 - 3843: -35,13 - 3844: -38,10 - 3845: -39,11 - 3846: -44,13 - 3847: -44,13 - 3848: -37,17 - 3849: -35,18 - 3850: -28,20 - 3851: -23,20 - 3852: -18,21 - 3853: -33,24 - 3854: -35,28 - 3855: -12,26 - 3856: -23,31 - 3857: -33,32 - 3858: -19,34 - 3859: -9,36 - 3860: -7,39 - 3861: -14,40 - 3862: -6,40 - 3863: -8,39 - 3864: -17,29 - 3865: -15,29 - 3866: -27,41 - 3867: -26,45 - 3868: -30,25 - 3869: -30,33 - 3870: -36,34 - 3871: -36,30 - 3872: -40,39 - 3873: -42,41 - 3874: -38,45 - 3875: -33,50 - 3886: -15,64 - 3887: -24,63 - 3888: -27,59 - 3889: -31,59 - 3890: -32,58 - 3891: -38,59 - 3892: -42,65 - 3893: -44,71 - 3894: -47,70 - 3895: -14,70 - 3896: -8,71 - 3897: -3,70 - 3898: 1,70 - 3899: 2,60 - 3900: -1,56 - 3901: 1,52 - 3902: 1,48 - 3903: 4,42 - 3904: 1,40 - 3905: 2,35 - 3906: 7,37 - 3907: 3,41 - 3908: 17,43 - 3909: 22,46 - 3910: 32,48 - 3911: 35,41 - 3912: 35,36 - 3913: 39,36 - 3914: 38,43 - 3915: 40,50 - 3916: 37,48 - 3917: 44,46 - 3918: 48,48 - 3919: 45,50 - 3920: 44,55 - 3921: 37,54 - 3922: 36,48 - 3923: 51,43 - 3924: 81,61 - 3925: 84,53 - 3926: 85,56 - 3927: 88,39 - 3928: 88,35 - 3929: 89,36 - 3930: 72,28 - 3931: 65,31 - 3932: 69,15 - 3933: 48,12 - 3934: 46,18 - 3935: 42,18 - 3936: 35,19 - 3937: 28,19 - 3938: 31,19 - 3939: 24,20 - 3940: 22,19 - 3941: 17,22 - 3942: 14,20 - 3943: 15,22 - 3944: 18,19 - 3945: 7,20 - 3946: 3,12 - 3947: 0,17 - 3948: -5,11 - 3949: 3,10 - 3950: -6,12 - 3951: -5,11 - 3952: -14,4 - 3953: -13,1 - 3954: -12,5 - 3955: -12,8 - 3956: -16,15 - 3957: -19,13 - 3958: -25,18 - 3959: -15,14 - 3960: -24,17 - 3961: -31,23 - 3962: -27,21 - 3963: -30,22 - 3964: -34,19 - 3965: -32,19 - 3966: -35,18 - 3967: -40,15 - 3968: -43,15 - 3969: -46,13 - 3970: -47,10 - 3971: -48,5 - 3972: -48,-1 - 3973: -48,-5 - 3974: -48,-8 - 3975: -46,-14 - 3976: -42,-15 - 3977: -35,-18 - 3978: -47,-18 - 3979: -45,-24 - 3980: -49,-22 - 3982: -50,-23 - 3983: -53,-21 - 3984: -57,-26 - 3985: -57,-26 - 3986: -61,-10 - 3987: -60,-7 - 3988: -62,-6 - 3989: -61,-5 - 3990: -67,-8 - 3991: -65,-4 - 3992: -64,-1 - 3993: -68,3 - 3994: -73,6 - 3995: -78,5 - 3996: -84,2 - 3997: -78,6 - 3998: -81,9 - 3999: -86,14 - 4000: -91,6 - 4001: -88,7 - 4002: -97,8 - 4003: -97,6 - 4004: -97,21 - 4005: -96,25 - 4006: -94,27 - 4007: -86,22 - 4008: -85,19 - 4009: -83,21 - 4010: -87,14 - 4011: -84,13 - 4012: -86,15 - 4013: -87,1 - 4014: -88,-1 - 4015: -83,-6 - 4016: -73,-7 - 4017: -80,0 - 4018: -69,1 - 4019: -66,-2 - 4020: -58,-13 - 4021: -42,-37 - 4022: -48,-37 - 4023: -53,-37 - 4024: -56,-37 - 4025: -9,-39 - 4026: -15,-37 - 4027: -12,-31 - 4028: -6,-30 - 4029: -2,-37 - 4030: 2,-39 - 4031: -5,-39 - 4032: 1,-45 - 4033: 2,-46 - 4034: 0,-50 - 4035: -4,-51 - 4036: -5,-52 - 4037: 10,-53 - 4038: 4,-53 - 4039: 6,-42 - 4040: 9,-36 - 4041: 8,-33 - 4042: 13,-28 - 4043: 3,-26 - 4044: 14,-26 - 4045: 29,-26 - 4046: 32,-23 - 4047: 36,-24 - 4048: 31,-26 - 4049: 39,-25 - 4050: 37,-24 - 4051: 39,-28 - 4052: 38,-32 - 4053: 33,-35 - 4054: 28,-34 - 4055: 42,-30 - 4056: 44,-29 - 4057: 43,-25 - 4058: 49,-31 - 4059: 56,-33 - 4060: 50,-24 - 4061: 65,-24 - 4062: 68,-17 - 4063: 67,-16 - 4064: 59,-12 - 4065: 64,-10 - 4066: 61,-6 - 4067: 57,-6 - 4068: 55,-3 - 4069: 50,-2 - 4070: 50,1 - 4071: 51,2 - 4072: 79,-3 - 4073: 81,3 - 4074: 83,6 - 4075: 85,8 - 4076: 84,11 - 4077: 86,14 - 4078: 85,17 - 4079: 89,18 - 4080: 88,17 - 4081: 70,31 - 4082: 80,55 - 4083: 45,56 - 4084: 45,48 - 4085: 39,43 - 4086: 40,34 - 4087: 35,38 - 4088: 27,38 - 4089: 18,40 - 4665: -21,6 - 4666: -14,6 - 4667: -21,-1 - 4668: -14,-3 - 4669: -7,-2 - 4670: -7,-3 - 4671: -8,6 - 4672: -6,5 - 4673: -9,3 - 4674: -11,9 - 4675: -15,9 - 4687: -30,7 - 4688: -27,5 - 4689: -25,2 - 4690: -27,0 - 4691: -32,-3 - 4728: 18,-20 - 4729: 22,-21 - 4730: 22,-22 - 4731: 22,-24 - 4732: 18,-23 - 4733: 19,-21 - 4734: 17,-23 - 5653: -21,49 - 5654: -17,49 - 5655: -18,51 - 5656: -24,50 - 5657: -26,49 - 5658: -31,44 - 5659: -33,45 - 5660: -30,44 - 5661: -31,49 - 5662: -34,48 - 5663: -34,50 - 5664: -34,43 - 5665: -31,43 - 5666: -26,41 - 5667: -24,39 - 5668: -25,38 - 5669: -22,39 - 5670: -21,41 - 5671: -23,42 - 5672: -24,42 - 5673: -21,46 - 5674: -20,49 - 5675: -17,48 - 5676: -15,50 - 5677: -10,52 - 5678: -13,54 - 5679: -5,51 - 5680: -14,55 - 5681: -22,58 - 5682: -21,55 - 5815: 81,-19 - 5816: 83,-15 - 5817: 81,-14 - 5818: 81,-13 - 5819: 86,-13 - 5820: 94,-13 - 5821: 94,-10 - 5822: 96,-9 - 5823: 101,-9 - 5824: 107,-20 - 5825: 109,-23 - 5826: 99,-25 - 5827: 93,-24 - 5828: 94,-20 - 6149: 0,46 - 6150: 2,40 - 6151: 2,44 - 7119: 8,15 - 7120: 15,13 - 7121: 16,10 - 7122: 11,10 - 7123: 13,6 - 7124: 16,5 - 7125: 10,6 - 7126: 25,5 - 7127: 22,10 - 7128: 10,12 - 7129: 7,10 - 7130: 8,10 - 7131: 8,9 - 7132: 20,9 - 7133: 20,16 - 7134: 8,17 - 7135: 11,15 - 7136: 15,15 - 7137: 0,5 - 7138: 4,2 - 7139: -3,1 - 7140: 1,-2 - 7148: 2,-1 + 3819: -9,-22 + 3820: -8,-17 + 3821: -5,-16 + 3822: -9,-15 + 3823: -12,-17 + 3824: -20,-16 + 3825: -26,-16 + 3826: -32,-16 + 3827: -33,-14 + 3828: -33,-10 + 3829: -33,-4 + 3830: -33,-4 + 3831: -33,-5 + 3832: -15,1 + 3833: -27,13 + 3834: -26,12 + 3835: -33,12 + 3836: -35,13 + 3837: -38,10 + 3838: -39,11 + 3839: -44,13 + 3840: -44,13 + 3841: -37,17 + 3842: -35,18 + 3843: -28,20 + 3844: -23,20 + 3845: -18,21 + 3846: -33,24 + 3847: -35,28 + 3848: -12,26 + 3849: -23,31 + 3850: -33,32 + 3851: -19,34 + 3852: -9,36 + 3853: -7,39 + 3854: -14,40 + 3855: -6,40 + 3856: -8,39 + 3857: -17,29 + 3858: -15,29 + 3859: -27,41 + 3860: -26,45 + 3861: -30,25 + 3862: -30,33 + 3863: -36,34 + 3864: -36,30 + 3865: -40,39 + 3866: -42,41 + 3867: -38,45 + 3868: -33,50 + 3879: -15,64 + 3880: -24,63 + 3881: -27,59 + 3882: -31,59 + 3883: -32,58 + 3884: -38,59 + 3885: -42,65 + 3886: -44,71 + 3887: -47,70 + 3888: -14,70 + 3889: -8,71 + 3890: -3,70 + 3891: 1,70 + 3892: 2,60 + 3893: -1,56 + 3894: 1,52 + 3895: 1,48 + 3896: 4,42 + 3897: 1,40 + 3898: 2,35 + 3899: 7,37 + 3900: 3,41 + 3901: 17,43 + 3902: 22,46 + 3903: 32,48 + 3904: 35,41 + 3905: 35,36 + 3906: 39,36 + 3907: 38,43 + 3908: 40,50 + 3909: 37,48 + 3910: 44,46 + 3911: 48,48 + 3912: 45,50 + 3913: 44,55 + 3914: 37,54 + 3915: 36,48 + 3916: 51,43 + 3917: 81,61 + 3918: 84,53 + 3919: 85,56 + 3920: 88,39 + 3921: 88,35 + 3922: 89,36 + 3923: 72,28 + 3924: 65,31 + 3925: 69,15 + 3926: 48,12 + 3927: 46,18 + 3928: 42,18 + 3929: 35,19 + 3930: 28,19 + 3931: 31,19 + 3932: 24,20 + 3933: 22,19 + 3934: 17,22 + 3935: 14,20 + 3936: 15,22 + 3937: 18,19 + 3938: 7,20 + 3939: 3,12 + 3940: 0,17 + 3941: -5,11 + 3942: 3,10 + 3943: -6,12 + 3944: -5,11 + 3945: -14,4 + 3946: -13,1 + 3947: -12,5 + 3948: -12,8 + 3949: -16,15 + 3950: -19,13 + 3951: -25,18 + 3952: -15,14 + 3953: -24,17 + 3954: -31,23 + 3955: -27,21 + 3956: -30,22 + 3957: -34,19 + 3958: -32,19 + 3959: -35,18 + 3960: -40,15 + 3961: -43,15 + 3962: -46,13 + 3963: -47,10 + 3964: -48,5 + 3965: -48,-1 + 3966: -48,-5 + 3967: -48,-8 + 3968: -46,-14 + 3969: -42,-15 + 3970: -35,-18 + 3971: -47,-18 + 3972: -45,-24 + 3973: -49,-22 + 3974: -50,-23 + 3975: -53,-21 + 3976: -57,-26 + 3977: -57,-26 + 3978: -61,-10 + 3979: -60,-7 + 3980: -62,-6 + 3981: -61,-5 + 3982: -67,-8 + 3983: -65,-4 + 3984: -64,-1 + 3985: -68,3 + 3986: -73,6 + 3987: -78,5 + 3988: -84,2 + 3989: -78,6 + 3990: -81,9 + 3991: -86,14 + 3992: -91,6 + 3993: -88,7 + 3994: -97,8 + 3995: -97,6 + 3996: -97,21 + 3997: -96,25 + 3998: -94,27 + 3999: -86,22 + 4000: -85,19 + 4001: -83,21 + 4002: -87,14 + 4003: -84,13 + 4004: -86,15 + 4005: -87,1 + 4006: -88,-1 + 4007: -83,-6 + 4008: -73,-7 + 4009: -80,0 + 4010: -69,1 + 4011: -66,-2 + 4012: -58,-13 + 4013: -42,-37 + 4014: -48,-37 + 4015: -53,-37 + 4016: -56,-37 + 4017: -9,-39 + 4018: -15,-37 + 4019: -12,-31 + 4020: -6,-30 + 4021: -2,-37 + 4022: 2,-39 + 4023: -5,-39 + 4024: 1,-45 + 4025: 2,-46 + 4026: 0,-50 + 4027: -4,-51 + 4028: -5,-52 + 4029: 10,-53 + 4030: 4,-53 + 4031: 6,-42 + 4032: 9,-36 + 4033: 8,-33 + 4034: 13,-28 + 4035: 3,-26 + 4036: 14,-26 + 4037: 29,-26 + 4038: 32,-23 + 4039: 36,-24 + 4040: 31,-26 + 4041: 39,-25 + 4042: 37,-24 + 4043: 39,-28 + 4044: 38,-32 + 4045: 33,-35 + 4046: 28,-34 + 4047: 42,-30 + 4048: 44,-29 + 4049: 43,-25 + 4050: 49,-31 + 4051: 56,-33 + 4052: 50,-24 + 4053: 65,-24 + 4054: 68,-17 + 4055: 67,-16 + 4056: 59,-12 + 4057: 64,-10 + 4058: 61,-6 + 4059: 57,-6 + 4060: 55,-3 + 4061: 50,-2 + 4062: 50,1 + 4063: 51,2 + 4064: 79,-3 + 4065: 81,3 + 4066: 83,6 + 4067: 85,8 + 4068: 84,11 + 4069: 86,14 + 4070: 85,17 + 4071: 89,18 + 4072: 88,17 + 4073: 70,31 + 4074: 80,55 + 4075: 45,56 + 4076: 45,48 + 4077: 39,43 + 4078: 40,34 + 4079: 35,38 + 4080: 27,38 + 4081: 18,40 + 4648: -21,6 + 4649: -14,6 + 4650: -21,-1 + 4651: -14,-3 + 4652: -7,-2 + 4653: -7,-3 + 4654: -8,6 + 4655: -6,5 + 4656: -9,3 + 4657: -11,9 + 4658: -15,9 + 4670: -30,7 + 4671: -27,5 + 4672: -25,2 + 4673: -27,0 + 4674: -32,-3 + 4711: 18,-20 + 4712: 22,-21 + 4713: 22,-22 + 4714: 22,-24 + 4715: 18,-23 + 4716: 19,-21 + 4717: 17,-23 + 5636: -21,49 + 5637: -17,49 + 5638: -18,51 + 5639: -24,50 + 5640: -26,49 + 5641: -31,44 + 5642: -33,45 + 5643: -30,44 + 5644: -31,49 + 5645: -34,48 + 5646: -34,50 + 5647: -34,43 + 5648: -31,43 + 5649: -26,41 + 5650: -24,39 + 5651: -25,38 + 5652: -22,39 + 5653: -21,41 + 5654: -23,42 + 5655: -24,42 + 5656: -21,46 + 5657: -20,49 + 5658: -17,48 + 5659: -15,50 + 5660: -10,52 + 5661: -13,54 + 5662: -5,51 + 5663: -14,55 + 5664: -22,58 + 5665: -21,55 + 5798: 81,-19 + 5799: 83,-15 + 5800: 81,-14 + 5801: 81,-13 + 5802: 86,-13 + 5803: 94,-13 + 5804: 94,-10 + 5805: 96,-9 + 5806: 101,-9 + 5807: 107,-20 + 5808: 109,-23 + 5809: 99,-25 + 5810: 93,-24 + 5811: 94,-20 + 6132: 0,46 + 6133: 2,40 + 6134: 2,44 + 7102: 8,15 + 7103: 15,13 + 7104: 16,10 + 7105: 11,10 + 7106: 13,6 + 7107: 16,5 + 7108: 10,6 + 7109: 25,5 + 7110: 22,10 + 7111: 10,12 + 7112: 7,10 + 7113: 8,10 + 7114: 8,9 + 7115: 20,9 + 7116: 20,16 + 7117: 8,17 + 7118: 11,15 + 7119: 15,15 + 7120: 0,5 + 7121: 4,2 + 7122: -3,1 + 7123: 1,-2 + 7131: 2,-1 - node: color: '#FFFFFFFF' id: DirtLight decals: - 4659: -59,-13 - 4660: -50,-11 - 4661: -57,-17 - 4662: -54,-18 - 4663: -54,-21 - 4664: -57,-24 + 4642: -59,-13 + 4643: -50,-11 + 4644: -57,-17 + 4645: -54,-18 + 4646: -54,-21 + 4647: -57,-24 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 4090: 1,42 - 4091: -9,52 - 4092: -16,51 - 4093: -13,38 - 4094: -18,41 - 4095: -51,10 - 4096: -83,15 - 4097: -80,28 - 4098: -31,54 - 4099: 17,51 - 4100: 6,19 - 4102: -9,-23 - 4103: -55,-24 - 4105: 32,-20 - 4106: 49,23 - 4107: 50,49 - 4108: 79,54 - 4109: -17,4 - 4110: -9,21 - 4111: 13,4 - 4112: -15,-29 - 4113: -65,-8 - 4114: -51,33 - 4115: -36,47 - 4116: -23,56 - 4117: -20,64 - 4118: 17,21 - 4119: 39,23 - 4120: 31,15 - 4121: 65,-10 - 4122: 38,-18 - 4123: 34,-23 - 4124: 1,-36 - 4125: 5,-43 - 4126: -12,-37 - 4127: -29,-23 - 4128: 32,-13 - 4129: -14,11 - 4130: 35,24 - 4131: 58,32 - 4132: 54,42 - 4133: 46,48 - 4134: 19,48 - 4135: -9,54 - 4136: -17,59 - 4137: -48,64 - 4138: -30,63 - 4139: -17,60 - 4140: -20,30 - 4141: -49,3 - 4142: -27,-24 - 4143: -51,-12 - 4144: -44,-22 - 4145: -86,4 - 4146: -86,16 - 4147: -99,13 - 4148: -105,6 - 4149: -67,-13 - 4150: -46,-20 - 4151: -3,-28 - 4152: 25,-26 - 4153: 39,-15 - 4154: 46,-11 - 4155: 31,-23 - 4156: 53,25 - 4157: 32,35 - 4158: -1,49 - 4159: 0,64 - 4160: -1,76 - 4161: -27,58 - 4676: -20,6 - 4677: -22,1 - 4678: -19,2 - 4679: -18,5 - 4680: -15,6 - 4681: -7,6 - 4682: -9,-1 - 4683: -7,-2 - 4684: -14,-3 - 4685: -15,-1 - 4686: -20,-2 - 4697: -25,5 - 4698: -25,7 - 4699: -31,7 - 4700: -27,-1 - 5631: -14,46 - 5632: -20,48 - 5633: -23,45 - 5634: -26,49 - 5635: -31,48 - 5636: -26,42 - 5637: -21,41 - 5638: -21,38 - 5639: -22,38 - 5640: -30,38 - 5641: -18,40 - 5642: -14,38 - 5643: -18,46 - 5644: -13,46 - 5645: -26,45 - 5646: -26,48 - 5647: -26,53 - 5648: -21,53 - 5829: 83,-15 - 5830: 83,-19 - 5831: 96,-17 - 5832: 94,-15 - 5833: 100,-17 - 5834: 108,-10 - 5835: 98,-9 - 7106: 8,13 - 7107: 10,15 - 7108: 14,13 - 7109: 18,15 - 7110: 20,10 - 7111: 15,6 - 7112: 12,10 - 7113: 6,10 - 7114: 6,13 - 7115: 5,16 - 7116: 22,14 - 7117: 23,11 - 7118: 21,11 - 7149: -2,2 - 7150: 1,4 - 7151: 1,7 - 7152: 6,3 - 7153: 10,1 - 7154: 8,-2 - 7155: 9,-6 - 7156: 10,-10 - 7157: 9,-12 - 7158: 12,-5 + 4082: 1,42 + 4083: -9,52 + 4084: -16,51 + 4085: -13,38 + 4086: -18,41 + 4087: -51,10 + 4088: -83,15 + 4089: -80,28 + 4090: -31,54 + 4091: 17,51 + 4092: 6,19 + 4093: -9,-23 + 4094: -55,-24 + 4095: 32,-20 + 4096: 49,23 + 4097: 50,49 + 4098: 79,54 + 4099: -17,4 + 4100: -9,21 + 4101: 13,4 + 4102: -15,-29 + 4103: -65,-8 + 4104: -51,33 + 4105: -36,47 + 4106: -23,56 + 4107: -20,64 + 4108: 17,21 + 4109: 39,23 + 4110: 31,15 + 4111: 65,-10 + 4112: 38,-18 + 4113: 34,-23 + 4114: 1,-36 + 4115: 5,-43 + 4116: -12,-37 + 4117: -29,-23 + 4118: 32,-13 + 4119: -14,11 + 4120: 35,24 + 4121: 58,32 + 4122: 54,42 + 4123: 46,48 + 4124: 19,48 + 4125: -9,54 + 4126: -17,59 + 4127: -48,64 + 4128: -30,63 + 4129: -17,60 + 4130: -20,30 + 4131: -49,3 + 4132: -27,-24 + 4133: -51,-12 + 4134: -44,-22 + 4135: -86,4 + 4136: -86,16 + 4137: -99,13 + 4138: -105,6 + 4139: -67,-13 + 4140: -46,-20 + 4141: -3,-28 + 4142: 25,-26 + 4143: 39,-15 + 4144: 46,-11 + 4145: 31,-23 + 4146: 53,25 + 4147: 32,35 + 4148: -1,49 + 4149: 0,64 + 4150: -1,76 + 4151: -27,58 + 4659: -20,6 + 4660: -22,1 + 4661: -19,2 + 4662: -18,5 + 4663: -15,6 + 4664: -7,6 + 4665: -9,-1 + 4666: -7,-2 + 4667: -14,-3 + 4668: -15,-1 + 4669: -20,-2 + 4680: -25,5 + 4681: -25,7 + 4682: -31,7 + 4683: -27,-1 + 5614: -14,46 + 5615: -20,48 + 5616: -23,45 + 5617: -26,49 + 5618: -31,48 + 5619: -26,42 + 5620: -21,41 + 5621: -21,38 + 5622: -22,38 + 5623: -30,38 + 5624: -18,40 + 5625: -14,38 + 5626: -18,46 + 5627: -13,46 + 5628: -26,45 + 5629: -26,48 + 5630: -26,53 + 5631: -21,53 + 5812: 83,-15 + 5813: 83,-19 + 5814: 96,-17 + 5815: 94,-15 + 5816: 100,-17 + 5817: 108,-10 + 5818: 98,-9 + 7089: 8,13 + 7090: 10,15 + 7091: 14,13 + 7092: 18,15 + 7093: 20,10 + 7094: 15,6 + 7095: 12,10 + 7096: 6,10 + 7097: 6,13 + 7098: 5,16 + 7099: 22,14 + 7100: 23,11 + 7101: 21,11 + 7132: -2,2 + 7133: 1,4 + 7134: 1,7 + 7135: 6,3 + 7136: 10,1 + 7137: 8,-2 + 7138: 9,-6 + 7139: 10,-10 + 7140: 9,-12 + 7141: 12,-5 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 4162: -58,-1 - 4163: -35,15 - 4164: 22,29 - 4165: 7,-3 - 4166: 21,-14 - 4167: -37,-23 - 4168: 36,-14 - 4169: -11,-28 - 4170: -1,-30 - 4171: 43,-27 - 4172: 16,-32 - 4173: 3,-41 - 4174: 3,-40 - 4175: -18,-9 - 4176: 2,9 - 4177: 30,25 - 4178: 15,26 - 4179: -31,22 - 4180: 2,51 - 4181: 6,66 - 4182: -39,63 - 4183: -35,65 - 4184: 12,76 - 4185: -10,70 - 4186: 25,47 - 4187: 90,43 - 4188: 69,28 - 4189: 87,37 - 4190: 61,18 - 4191: 39,9 - 4192: 37,-10 - 4193: 62,-13 - 4194: 70,-9 - 4195: 38,-17 - 4196: -5,-18 - 4197: -9,-11 - 4198: -48,-15 - 4199: -30,18 - 4200: -52,24 - 4201: -48,27 - 4202: -65,34 - 4203: -66,36 - 4204: -63,-32 - 4205: -67,49 - 4206: -56,44 - 4207: -32,60 - 4208: -31,58 - 4209: -23,55 - 4210: -15,62 - 4211: -4,63 - 4212: -13,37 - 4213: -18,25 - 4214: -2,29 - 4215: -37,21 - 4216: -15,22 - 4217: -10,29 - 4218: -14,34 - 4219: -10,39 - 4220: -27,37 - 4221: -14,43 - 4222: 35,34 - 4223: 3,37 - 4224: -1,46 - 4225: 43,43 - 4226: 33,7 - 4227: 42,17 - 4228: 51,16 - 4229: 41,18 - 4230: 47,-3 - 4231: 49,-7 - 4232: 41,-18 - 4233: 56,-15 - 4234: -7,-27 - 4235: -9,-27 - 4236: 51,-18 - 4237: 51,-13 - 4238: 57,-6 - 4239: 50,2 - 4240: 39,29 - 4241: 38,33 - 4242: 28,37 - 4243: 19,41 - 4244: 1,45 - 4245: -27,55 - 4246: -30,60 - 4247: -42,64 - 4248: -45,57 - 4249: -56,30 - 4250: -54,23 - 4251: -60,27 - 4252: -42,27 - 4253: -60,33 - 4254: -40,28 - 4255: -46,24 - 4256: -35,27 - 4257: -38,11 - 4258: -35,5 - 4259: -58,1 - 4260: -69,-1 - 4261: -66,-6 - 4262: -66,-11 - 4263: -63,-14 - 4264: -63,-20 - 4265: -63,-23 - 4266: -66,-32 - 4267: -43,-37 - 4268: -1,-43 - 4269: 3,-44 - 4270: 5,-53 - 4271: -2,-53 - 4272: 11,-33 - 4273: 36,-23 - 4274: 35,-23 - 4275: 44,-17 - 4276: 39,-10 - 4277: 39,-6 - 4278: 39,1 - 4279: 39,8 - 4280: 58,-5 - 4281: 65,-14 - 4283: 69,-11 - 4284: 74,-11 - 4285: 74,-12 - 4286: 76,-22 - 4287: 70,-26 - 4288: 58,-30 - 4289: 54,-30 - 4290: 49,-31 - 4291: 46,-31 - 4292: 47,-24 - 4293: 43,-28 - 4294: 63,-12 - 4295: 49,13 - 4296: 43,21 - 4297: 35,26 - 4298: 35,29 - 4299: 31,27 - 4300: 27,27 - 4301: 40,33 - 4302: 39,44 - 4303: 43,48 - 4304: 42,50 - 4305: 43,50 - 4306: 26,45 - 4307: 17,42 - 4308: 6,41 - 4309: -1,47 - 4310: -1,48 - 4311: 3,55 - 4312: 2,60 - 4313: 2,64 - 4314: 2,71 - 4315: -6,71 - 4316: 5,69 - 4317: 6,69 - 4318: 13,65 - 4319: 7,64 - 4320: 9,63 - 4692: -27,-3 - 4693: -27,2 - 4694: -32,7 - 4695: -25,5 - 4696: -25,4 - 5649: -27,46 - 5650: -20,45 - 5651: -13,46 - 5652: -7,40 - 7159: 2,5 - 7160: 9,2 - 7161: 5,3 - 7162: 11,-5 + 4152: -58,-1 + 4153: -35,15 + 4154: 22,29 + 4155: 7,-3 + 4156: 21,-14 + 4157: -37,-23 + 4158: 36,-14 + 4159: -11,-28 + 4160: -1,-30 + 4161: 43,-27 + 4162: 16,-32 + 4163: 3,-41 + 4164: 3,-40 + 4165: -18,-9 + 4166: 2,9 + 4167: 30,25 + 4168: 15,26 + 4169: -31,22 + 4170: 2,51 + 4171: 6,66 + 4172: -39,63 + 4173: -35,65 + 4174: 12,76 + 4175: -10,70 + 4176: 25,47 + 4177: 90,43 + 4178: 69,28 + 4179: 87,37 + 4180: 61,18 + 4181: 39,9 + 4182: 37,-10 + 4183: 62,-13 + 4184: 70,-9 + 4185: 38,-17 + 4186: -5,-18 + 4187: -9,-11 + 4188: -48,-15 + 4189: -30,18 + 4190: -52,24 + 4191: -48,27 + 4192: -65,34 + 4193: -66,36 + 4194: -63,-32 + 4195: -67,49 + 4196: -56,44 + 4197: -32,60 + 4198: -31,58 + 4199: -23,55 + 4200: -15,62 + 4201: -4,63 + 4202: -13,37 + 4203: -18,25 + 4204: -2,29 + 4205: -37,21 + 4206: -15,22 + 4207: -10,29 + 4208: -14,34 + 4209: -10,39 + 4210: -27,37 + 4211: -14,43 + 4212: 35,34 + 4213: 3,37 + 4214: -1,46 + 4215: 43,43 + 4216: 33,7 + 4217: 42,17 + 4218: 51,16 + 4219: 41,18 + 4220: 47,-3 + 4221: 49,-7 + 4222: 41,-18 + 4223: 56,-15 + 4224: -7,-27 + 4225: -9,-27 + 4226: 51,-18 + 4227: 51,-13 + 4228: 57,-6 + 4229: 50,2 + 4230: 39,29 + 4231: 38,33 + 4232: 28,37 + 4233: 19,41 + 4234: 1,45 + 4235: -27,55 + 4236: -30,60 + 4237: -42,64 + 4238: -45,57 + 4239: -56,30 + 4240: -54,23 + 4241: -60,27 + 4242: -42,27 + 4243: -60,33 + 4244: -40,28 + 4245: -46,24 + 4246: -35,27 + 4247: -38,11 + 4248: -35,5 + 4249: -58,1 + 4250: -69,-1 + 4251: -66,-6 + 4252: -66,-11 + 4253: -63,-14 + 4254: -63,-20 + 4255: -63,-23 + 4256: -66,-32 + 4257: -43,-37 + 4258: -1,-43 + 4259: 3,-44 + 4260: 5,-53 + 4261: -2,-53 + 4262: 11,-33 + 4263: 36,-23 + 4264: 35,-23 + 4265: 44,-17 + 4266: 39,-10 + 4267: 39,-6 + 4268: 39,1 + 4269: 39,8 + 4270: 58,-5 + 4271: 65,-14 + 4272: 69,-11 + 4273: 74,-11 + 4274: 74,-12 + 4275: 76,-22 + 4276: 70,-26 + 4277: 58,-30 + 4278: 54,-30 + 4279: 49,-31 + 4280: 46,-31 + 4281: 47,-24 + 4282: 43,-28 + 4283: 63,-12 + 4284: 49,13 + 4285: 43,21 + 4286: 35,26 + 4287: 35,29 + 4288: 31,27 + 4289: 27,27 + 4290: 40,33 + 4291: 39,44 + 4292: 43,48 + 4293: 42,50 + 4294: 43,50 + 4295: 26,45 + 4296: 17,42 + 4297: 6,41 + 4298: -1,47 + 4299: -1,48 + 4300: 3,55 + 4301: 2,60 + 4302: 2,64 + 4303: 2,71 + 4304: -6,71 + 4305: 5,69 + 4306: 6,69 + 4307: 13,65 + 4308: 7,64 + 4309: 9,63 + 4675: -27,-3 + 4676: -27,2 + 4677: -32,7 + 4678: -25,5 + 4679: -25,4 + 5632: -27,46 + 5633: -20,45 + 5634: -13,46 + 5635: -7,40 + 7142: 2,5 + 7143: 9,2 + 7144: 5,3 + 7145: 11,-5 - node: color: '#FFFFFFFF' id: FlowersBROne @@ -7194,9 +7194,9 @@ entities: 2630: -21.079681,17.635077 3170: 48.486603,54.127567 3347: 0.8775835,53.575855 - 4414: 35.936924,-11.278788 - 5596: -10.380536,44.619083 - 5597: -5.7789736,44.29877 + 4403: 35.936924,-11.278788 + 5579: -10.380536,44.619083 + 5580: -5.7789736,44.29877 - node: color: '#FFFFFFFF' id: FlowersBRThree @@ -7220,9 +7220,9 @@ entities: 3228: -17.425308,56.89219 3229: -16.440933,55.814064 3230: -17.565933,52.427345 - 4377: -1.2052917,34.102757 - 4389: -62.314003,9.298165 - 5589: -5.495222,46.59599 + 4366: -1.2052917,34.102757 + 4378: -62.314003,9.298165 + 5572: -5.495222,46.59599 - node: angle: -0.15707963267948966 rad color: '#FFFFFFFF' @@ -7293,11 +7293,11 @@ entities: 3212: -1.9605174,61.33826 3268: -18.422426,-13.633619 3269: -14.188051,-13.727369 - 4326: 45.7115,21.249813 - 4327: 45.24275,20.921688 - 4347: 27.056904,-17.133144 - 4348: 30.424091,-16.844082 - 5349: -16.198597,54.156445 + 4315: 45.7115,21.249813 + 4316: 45.24275,20.921688 + 4336: 27.056904,-17.133144 + 4337: 30.424091,-16.844082 + 5332: -16.198597,54.156445 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -7343,15 +7343,15 @@ entities: 3328: 46.55093,-1.79771 3329: 46.246243,-6.219585 3330: 46.668118,-7.11021 - 4346: 27.720966,-17.226894 - 4362: 39.272312,21.207067 - 4363: 35.303562,20.972692 - 4375: -0.12716675,37.33713 - 4376: -0.49435425,33.99338 - 4387: -58.423378,9.165353 - 5227: 7.253884,43.866146 - 5473: -6.7102385,46.09017 - 5474: -4.9289885,45.65267 + 4335: 27.720966,-17.226894 + 4351: 39.272312,21.207067 + 4352: 35.303562,20.972692 + 4364: -0.12716675,37.33713 + 4365: -0.49435425,33.99338 + 4376: -58.423378,9.165353 + 5210: 7.253884,43.866146 + 5456: -6.7102385,46.09017 + 5457: -4.9289885,45.65267 - node: color: '#FFFFFFFF' id: Flowersbr2 @@ -7360,12 +7360,12 @@ entities: 166: -5,-46 180: 3,15 2631: -22.625883,17.494452 - 4425: -13.98396,70.56375 - 4426: -13.655835,69.18875 - 4503: 35.749958,-5.498374 - 4516: 71.229546,17.978672 - 4517: 70.678764,19.736485 - 6944: -10.562142,-53.976284 + 4414: -13.98396,70.56375 + 4415: -13.655835,69.18875 + 4492: 35.749958,-5.498374 + 4505: 71.229546,17.978672 + 4506: 70.678764,19.736485 + 6927: -10.562142,-53.976284 - node: color: '#FFFFFFFF' id: Flowersbr3 @@ -7431,43 +7431,43 @@ entities: 3336: 47.425335,0.06665063 3345: 0.854146,50.630543 3346: 1.276021,52.427418 - 4365: 38.577,21.199255 - 4379: 0.14627075,35.12407 - 4380: -1.1427917,36.16313 - 4388: -58.923378,9.040353 - 5188: 81.576515,55.34774 - 5189: 76.61816,55.675865 - 5193: 82.46581,56.37899 - 5204: 97.59068,14.402504 - 5205: 95.3524,15.28141 - 5206: 98.24693,18.797035 - 5228: 4.128884,45.233334 - 5245: -32.292305,2.369635 - 5248: -29.542305,-0.2631774 - 5249: -31.471992,-0.2397399 - 5250: -32.565742,1.3618226 - 5251: -32.596992,0.6196351 - 5301: 41.3515,14.787474 - 5305: 43.539,10.654661 - 5324: 45.71438,-29.110764 - 5325: 46.50344,-31.681076 - 5326: 45.65188,-32.5717 - 5327: 50.519066,-31.915451 - 5328: 49.769066,-28.790451 - 5331: 48.073753,-31.852951 - 5413: 34.99527,56.357723 - 5414: 35.260895,54.303036 - 5415: 35.424957,57.146786 - 5416: 30.58902,57.263973 - 5417: 31.46402,52.701473 - 5418: 35.471832,52.709286 - 5471: -7.4827027,46.254234 - 5595: -9.528974,44.689396 - 5855: 14.463871,-31.322914 - 5856: 18.166996,-28.99479 - 6164: -2.475834,27.088507 - 6268: 11.387196,-41.660503 - 6405: -42.067287,21.170424 + 4354: 38.577,21.199255 + 4368: 0.14627075,35.12407 + 4369: -1.1427917,36.16313 + 4377: -58.923378,9.040353 + 5171: 81.576515,55.34774 + 5172: 76.61816,55.675865 + 5176: 82.46581,56.37899 + 5187: 97.59068,14.402504 + 5188: 95.3524,15.28141 + 5189: 98.24693,18.797035 + 5211: 4.128884,45.233334 + 5228: -32.292305,2.369635 + 5231: -29.542305,-0.2631774 + 5232: -31.471992,-0.2397399 + 5233: -32.565742,1.3618226 + 5234: -32.596992,0.6196351 + 5284: 41.3515,14.787474 + 5288: 43.539,10.654661 + 5307: 45.71438,-29.110764 + 5308: 46.50344,-31.681076 + 5309: 45.65188,-32.5717 + 5310: 50.519066,-31.915451 + 5311: 49.769066,-28.790451 + 5314: 48.073753,-31.852951 + 5396: 34.99527,56.357723 + 5397: 35.260895,54.303036 + 5398: 35.424957,57.146786 + 5399: 30.58902,57.263973 + 5400: 31.46402,52.701473 + 5401: 35.471832,52.709286 + 5454: -7.4827027,46.254234 + 5578: -9.528974,44.689396 + 5838: 14.463871,-31.322914 + 5839: 18.166996,-28.99479 + 6147: -2.475834,27.088507 + 6251: 11.387196,-41.660503 + 6388: -42.067287,21.170424 - node: color: '#FFFFFFFF' id: Flowerspv2 @@ -7475,47 +7475,47 @@ entities: 177: -1,10 189: -28,18 205: 37,40 - 4417: 35.530674,-9.257954 - 4418: 36.11401,-8.872538 - 4419: 35.968174,-10.091288 - 4505: 36.20699,-4.830405 - 4514: 70.63189,14.966953 - 4515: 70.960014,14.556797 - 5190: 76.99316,59.039146 - 5194: 82.55956,55.42977 - 5195: 79.32519,53.507896 - 5196: 77.22753,56.20321 - 5197: 80.391594,57.69149 - 5198: 95.05943,44.495373 - 5199: 102.442245,41.764904 - 5200: 95.82115,19.520657 - 5201: 98.64537,17.551907 - 5229: 3.7148213,44.803646 - 5267: -39.44195,73.10878 - 5268: -39.613827,68.780655 - 5304: 41.148376,11.060911 - 5306: 44.359314,11.107786 - 5307: 45.453064,15.209349 - 5308: 46.429626,15.107786 - 5309: 40.515564,12.068724 - 5329: 46.80813,-32.4467 - 5372: -69.768234,32.863335 - 5373: -67.174484,31.699272 - 5374: -65.674484,35.277397 - 5409: 32.24527,56.99835 - 5410: 30.93277,54.084286 - 5475: -6.0794516,46.074547 - 5476: -10.267013,45.543297 - 5857: 18.979496,-31.979164 - 5862: 15.3154335,-28.479164 - 5863: 20.057621,-33.268227 - 5864: 19.409184,-33.59635 - 6165: -3.2180214,24.682257 - 6166: -1.3820839,27.236944 - 6266: 8.777821,-41.855816 - 6267: 9.480946,-44.293316 - 6406: -40.871975,18.787611 - 6943: -10.999642,-53.67941 + 4406: 35.530674,-9.257954 + 4407: 36.11401,-8.872538 + 4408: 35.968174,-10.091288 + 4494: 36.20699,-4.830405 + 4503: 70.63189,14.966953 + 4504: 70.960014,14.556797 + 5173: 76.99316,59.039146 + 5177: 82.55956,55.42977 + 5178: 79.32519,53.507896 + 5179: 77.22753,56.20321 + 5180: 80.391594,57.69149 + 5181: 95.05943,44.495373 + 5182: 102.442245,41.764904 + 5183: 95.82115,19.520657 + 5184: 98.64537,17.551907 + 5212: 3.7148213,44.803646 + 5250: -39.44195,73.10878 + 5251: -39.613827,68.780655 + 5287: 41.148376,11.060911 + 5289: 44.359314,11.107786 + 5290: 45.453064,15.209349 + 5291: 46.429626,15.107786 + 5292: 40.515564,12.068724 + 5312: 46.80813,-32.4467 + 5355: -69.768234,32.863335 + 5356: -67.174484,31.699272 + 5357: -65.674484,35.277397 + 5392: 32.24527,56.99835 + 5393: 30.93277,54.084286 + 5458: -6.0794516,46.074547 + 5459: -10.267013,45.543297 + 5840: 18.979496,-31.979164 + 5845: 15.3154335,-28.479164 + 5846: 20.057621,-33.268227 + 5847: 19.409184,-33.59635 + 6148: -3.2180214,24.682257 + 6149: -1.3820839,27.236944 + 6249: 8.777821,-41.855816 + 6250: 9.480946,-44.293316 + 6389: -40.871975,18.787611 + 6926: -10.999642,-53.67941 - node: color: '#FFFFFFFF' id: Flowerspv3 @@ -7557,41 +7557,41 @@ entities: 3265: -18.969301,-14.164869 3266: -17.703676,-13.477369 3267: -18.531801,-13.258619 - 4328: 47.695873,20.83575 - 4350: 28.103779,-16.859707 - 4351: 0.82022095,-38.51386 - 4413: 36.061924,-11.132954 - 4427: -13.562085,70.26688 - 5191: 74.93066,57.105553 - 5192: 80.36816,55.043053 - 5202: 94.27428,17.106594 - 5203: 97.766464,15.00016 - 5246: -31.77668,1.4555726 - 5247: -28.768867,3.97901 - 5269: -36.043514,70.71034 - 5270: -36.957577,72.85097 - 5271: -40.301327,72.85878 - 5272: -40.34039,69.405655 - 5273: -36.7232,68.72597 - 5302: 45.78119,14.271849 - 5303: 46.203064,13.467161 - 5330: 47.55813,-32.329514 - 5347: -16.089222,58.397556 - 5348: -16.057972,54.652416 - 5375: -69.51042,31.824272 - 5376: -70.57292,35.214897 - 5377: -67.06511,36.394585 - 5378: -70.44011,32.105522 - 5379: -65.424484,32.082085 - 5380: -68.299484,35.918022 - 5411: 31.27652,54.763973 - 5412: 34.674957,53.50616 - 5858: 13.7998085,-32.0651 - 5859: 14.370121,-31.80729 - 5860: 17.713871,-33.3151 - 5861: 20.331059,-28.690102 - 6407: -41.551662,18.615736 - 6408: -43.35635,19.225111 + 4317: 47.695873,20.83575 + 4339: 28.103779,-16.859707 + 4340: 0.82022095,-38.51386 + 4402: 36.061924,-11.132954 + 4416: -13.562085,70.26688 + 5174: 74.93066,57.105553 + 5175: 80.36816,55.043053 + 5185: 94.27428,17.106594 + 5186: 97.766464,15.00016 + 5229: -31.77668,1.4555726 + 5230: -28.768867,3.97901 + 5252: -36.043514,70.71034 + 5253: -36.957577,72.85097 + 5254: -40.301327,72.85878 + 5255: -40.34039,69.405655 + 5256: -36.7232,68.72597 + 5285: 45.78119,14.271849 + 5286: 46.203064,13.467161 + 5313: 47.55813,-32.329514 + 5330: -16.089222,58.397556 + 5331: -16.057972,54.652416 + 5358: -69.51042,31.824272 + 5359: -70.57292,35.214897 + 5360: -67.06511,36.394585 + 5361: -70.44011,32.105522 + 5362: -65.424484,32.082085 + 5363: -68.299484,35.918022 + 5394: 31.27652,54.763973 + 5395: 34.674957,53.50616 + 5841: 13.7998085,-32.0651 + 5842: 14.370121,-31.80729 + 5843: 17.713871,-33.3151 + 5844: 20.331059,-28.690102 + 6390: -41.551662,18.615736 + 6391: -43.35635,19.225111 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -7605,7 +7605,7 @@ entities: 3156: 10.471224,35.81862 3157: 22.166536,36.615494 3158: 22.939974,39.73268 - 4378: -0.31466675,36.571507 + 4367: -0.31466675,36.571507 - node: angle: -0.15707963267948966 rad color: '#FFFFFFFF' @@ -7641,11 +7641,11 @@ entities: 3332: 46.823772,-7.7807665 3333: 46.34721,-7.8120165 3337: 46.769085,-0.38647437 - 4349: 28.478779,-17.375332 - 4386: -61.36869,8.93879 - 4518: 70.573296,19.162266 - 4519: 71.10064,14.076328 - 5477: -9.66545,46.355797 + 4338: 28.478779,-17.375332 + 4375: -61.36869,8.93879 + 4507: 70.573296,19.162266 + 4508: 71.10064,14.076328 + 5460: -9.66545,46.355797 - node: color: '#FFFFFFFF' id: Flowersy3 @@ -7714,12 +7714,12 @@ entities: 3261: -14.906801,-14.117994 3262: -29.344301,-13.664869 3343: 0.838521,49.943043 - 4329: 47.8365,20.992 - 4330: 45.039623,21.343563 - 4364: 35.873875,20.83988 - 5472: -6.88114,45.535484 - 5588: -9.378035,46.87724 - 5594: -7.6070986,44.556583 + 4318: 47.8365,20.992 + 4319: 45.039623,21.343563 + 4353: 35.873875,20.83988 + 5455: -6.88114,45.535484 + 5571: -9.378035,46.87724 + 5577: -7.6070986,44.556583 - node: angle: -0.15707963267948966 rad color: '#FFFFFFFF' @@ -7752,69 +7752,69 @@ entities: 3199: -13.626251,74.72476 3200: -13.860626,73.86929 3344: 1.182271,50.482105 - 4415: 36.197342,-11.987121 - 4416: 35.874424,-10.112121 - 4504: 36.47652,-7.3850927 - 5230: 6.660134,44.709896 - 6910: -23.90585,-39.27359 - 6911: -24.507412,-33.164215 - 6942: -10.562142,-52.913784 + 4404: 36.197342,-11.987121 + 4405: 35.874424,-10.112121 + 4493: 36.47652,-7.3850927 + 5213: 6.660134,44.709896 + 6893: -23.90585,-39.27359 + 6894: -24.507412,-33.164215 + 6925: -10.562142,-52.913784 - node: color: '#FFFFFFFF' id: Grassa1 decals: - 5255: -35.81695,69.36659 - 5256: -39.926327,69.42909 - 5310: 45.667503,-28.563889 - 5361: -70.268234,35.699272 - 5362: -65.8073,31.652397 + 5238: -35.81695,69.36659 + 5239: -39.926327,69.42909 + 5293: 45.667503,-28.563889 + 5344: -70.268234,35.699272 + 5345: -65.8073,31.652397 - node: color: '#FFFFFFFF' id: Grassa2 decals: - 5242: -29.128242,-0.2084899 - 5262: -37.231014,69.405655 - 5317: 49.417503,-32.399826 + 5225: -29.128242,-0.2084899 + 5245: -37.231014,69.405655 + 5300: 49.417503,-32.399826 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 5397: 30.690582,52.826473 - 5398: 30.753082,55.72491 + 5380: 30.690582,52.826473 + 5381: 30.753082,55.72491 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 5357: -66.90886,35.84771 - 6259: 11.418446,-41.137066 - 6260: 10.457508,-44.230816 + 5340: -66.90886,35.84771 + 6242: 11.418446,-41.137066 + 6243: 10.457508,-44.230816 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 5840: 14.745121,-33.18229 + 5823: 14.745121,-33.18229 - node: color: '#FFFFFFFF' id: Grassb1 decals: - 4577: -28.1378,-16.970455 - 4578: -29.0753,-17.282955 - 5281: 41.316948,11.499512 - 5284: 40.357212,15.434651 - 5285: 46.044712,15.309651 - 5286: 43.56815,15.184651 - 5287: 44.703064,10.787474 - 5288: 41.234314,10.748411 - 5311: 46.331566,-29.345139 - 5312: 50.24563,-28.798264 - 5313: 46.33938,-31.993576 - 5392: 32.21402,52.97491 - 5393: 34.604645,57.0296 - 5394: 31.77652,57.2796 - 5708: -53.45383,-6.482257 - 5709: -55.375706,-8.771319 - 5710: -51.57102,-8.044757 - 6161: -2.5148964,24.69007 + 4566: -28.1378,-16.970455 + 4567: -29.0753,-17.282955 + 5264: 41.316948,11.499512 + 5267: 40.357212,15.434651 + 5268: 46.044712,15.309651 + 5269: 43.56815,15.184651 + 5270: 44.703064,10.787474 + 5271: 41.234314,10.748411 + 5294: 46.331566,-29.345139 + 5295: 50.24563,-28.798264 + 5296: 46.33938,-31.993576 + 5375: 32.21402,52.97491 + 5376: 34.604645,57.0296 + 5377: 31.77652,57.2796 + 5691: -53.45383,-6.482257 + 5692: -55.375706,-8.771319 + 5693: -51.57102,-8.044757 + 6144: -2.5148964,24.69007 - node: angle: -0.15707963267948966 rad color: '#FFFFFFFF' @@ -7830,28 +7830,28 @@ entities: color: '#FFFFFFFF' id: Grassb2 decals: - 5252: -31.210787,0.95500517 - 5253: -39.99664,73.14003 - 5254: -36.082577,71.79628 - 5282: 41.363823,14.171387 - 5283: 40.496635,14.233887 - 5314: 47.417503,-32.392014 - 5315: 50.06594,-31.329514 - 5316: 49.386253,-30.727951 - 5358: -65.8698,36.402397 - 5359: -70.16667,33.800835 - 5360: -68.38542,31.84771 - 5395: 35.362457,57.1546 - 5396: 35.253082,52.990536 - 5846: 18.323246,-33.21354 - 5847: 18.666996,-29.471352 - 5848: 15.4248085,-31.190102 - 6162: -1.6164589,27.510382 + 5235: -31.210787,0.95500517 + 5236: -39.99664,73.14003 + 5237: -36.082577,71.79628 + 5265: 41.363823,14.171387 + 5266: 40.496635,14.233887 + 5297: 47.417503,-32.392014 + 5298: 50.06594,-31.329514 + 5299: 49.386253,-30.727951 + 5341: -65.8698,36.402397 + 5342: -70.16667,33.800835 + 5343: -68.38542,31.84771 + 5378: 35.362457,57.1546 + 5379: 35.253082,52.990536 + 5829: 18.323246,-33.21354 + 5830: 18.666996,-29.471352 + 5831: 15.4248085,-31.190102 + 6145: -1.6164589,27.510382 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 6399: -42.246975,18.748549 + 6382: -42.246975,18.748549 - node: angle: -0.15707963267948966 rad color: '#FFFFFFFF' @@ -7863,20 +7863,20 @@ entities: id: Grassb5 decals: 178: 3,14 - 5236: 5.8699102,44.97535 - 5237: 5.6824102,43.584724 - 5241: -32.24543,1.2524476 - 5243: -32.33918,2.69776 - 5261: -38.231014,73.24159 - 5711: -50.281956,-6.8025694 - 5841: 15.104496,-32.3776 - 5842: 14.041996,-30.49479 - 5843: 15.120121,-29.322914 - 5844: 20.198246,-29.299477 - 5845: 18.979496,-32.760414 - 6258: 8.824696,-43.80113 - 6400: -41.067287,19.600111 - 6401: -43.215725,21.357924 + 5219: 5.8699102,44.97535 + 5220: 5.6824102,43.584724 + 5224: -32.24543,1.2524476 + 5226: -32.33918,2.69776 + 5244: -38.231014,73.24159 + 5694: -50.281956,-6.8025694 + 5824: 15.104496,-32.3776 + 5825: 14.041996,-30.49479 + 5826: 15.120121,-29.322914 + 5827: 20.198246,-29.299477 + 5828: 18.979496,-32.760414 + 6241: 8.824696,-43.80113 + 6383: -41.067287,19.600111 + 6384: -43.215725,21.357924 - node: color: '#FFFFFFFF' id: Grassc1 @@ -7911,25 +7911,25 @@ entities: 3143: 13.41263,34.822525 3144: 8.924349,35.4319 3258: -23.609926,-14.149244 - 5257: -39.94195,72.27284 - 5258: -37.74664,73.17909 - 5259: -35.77789,70.75722 - 5289: 41.390564,11.326536 - 5290: 43.609314,11.162474 - 5291: 45.99994,12.514036 - 5322: 45.823753,-32.337326 - 5323: 50.573753,-31.829514 - 5344: -15.917347,53.478382 - 5366: -70.21355,34.886772 - 5367: -65.72136,35.34771 - 5368: -67.94792,36.050835 - 5369: -69.57292,32.449272 - 5402: 34.721832,53.209286 - 5403: 32.27652,52.9671 - 5404: 35.065582,55.138973 - 5714: -51.438206,-6.326007 - 5715: -56.17258,-5.6931944 - 6909: -24.4996,-38.156403 + 5240: -39.94195,72.27284 + 5241: -37.74664,73.17909 + 5242: -35.77789,70.75722 + 5272: 41.390564,11.326536 + 5273: 43.609314,11.162474 + 5274: 45.99994,12.514036 + 5305: 45.823753,-32.337326 + 5306: 50.573753,-31.829514 + 5327: -15.917347,53.478382 + 5349: -70.21355,34.886772 + 5350: -65.72136,35.34771 + 5351: -67.94792,36.050835 + 5352: -69.57292,32.449272 + 5385: 34.721832,53.209286 + 5386: 32.27652,52.9671 + 5387: 35.065582,55.138973 + 5697: -51.438206,-6.326007 + 5698: -56.17258,-5.6931944 + 6892: -24.4996,-38.156403 - node: color: '#FFFFFFFF' id: Grassc2 @@ -7939,19 +7939,19 @@ entities: 303: -104.74934,19.879143 2610: -44.58869,0.31819248 2611: -43.979317,-3.6661825 - 5318: 47.94094,-32.1967 - 5319: 46.300316,-31.415451 - 5320: 46.425316,-28.735764 - 5321: 50.323753,-29.181076 - 5399: 31.081207,54.826473 - 5400: 31.948395,56.638973 - 5401: 34.909332,56.795223 - 6263: 9.129383,-43.11363 - 6264: 9.777821,-44.324566 - 6265: 10.801258,-41.441753 - 6402: -41.6376,19.100111 - 6403: -40.770412,20.600111 - 6404: -43.067287,20.881361 + 5301: 47.94094,-32.1967 + 5302: 46.300316,-31.415451 + 5303: 46.425316,-28.735764 + 5304: 50.323753,-29.181076 + 5382: 31.081207,54.826473 + 5383: 31.948395,56.638973 + 5384: 34.909332,56.795223 + 6246: 9.129383,-43.11363 + 6247: 9.777821,-44.324566 + 6248: 10.801258,-41.441753 + 6385: -41.6376,19.100111 + 6386: -40.770412,20.600111 + 6387: -43.067287,20.881361 - node: color: '#FFFFFFFF' id: Grassc3 @@ -7967,10 +7967,10 @@ entities: 3221: -17.179214,58.732033 3222: -17.190933,59.353127 3223: -16.581558,54.314064 - 5260: -39.37945,72.78847 - 5292: 41.179626,13.912474 - 5293: 42.734314,15.068724 - 5294: 44.773376,14.756224 + 5243: -39.37945,72.78847 + 5275: 41.179626,13.912474 + 5276: 42.734314,15.068724 + 5277: 44.773376,14.756224 - node: color: '#FFFFFFFF' id: Grassc4 @@ -7983,10 +7983,10 @@ entities: 2607: -44.530098,-1.1466513 2608: -44.33088,-4.779464 2609: -44.108223,2.451005 - 5370: -68.768234,31.97271 - 5371: -65.79167,33.06646 - 5712: -54.836643,-7.138507 - 5713: -53.024143,-8.279132 + 5353: -68.768234,31.97271 + 5354: -65.79167,33.06646 + 5695: -54.836643,-7.138507 + 5696: -53.024143,-8.279132 - node: angle: -0.15707963267948966 rad color: '#FFFFFFFF' @@ -8092,34 +8092,34 @@ entities: 3216: -16.534683,59.107033 3217: -17.366714,52.802345 3218: -16.94484,52.040627 - 4325: 46.664623,20.867 - 4343: 27.660282,-16.74252 - 4344: 26.90247,-17.21127 - 4345: 29.863407,-17.281582 - 4381: -58.079628,9.180978 - 4382: -62.696815,9.290353 - 5138: 77.56664,54.84955 - 5139: 78.773674,55.40033 - 5140: 79.699455,56.302673 - 5150: 83.50805,54.63861 - 5151: 84.75024,54.47455 - 5152: 82.07836,56.426743 - 5464: -8.852795,46.17611 - 5465: -8.032482,45.76986 - 5466: -4.5481076,46.355797 - 5586: -7.4717846,46.9163 - 5590: -10.200849,44.751896 - 5591: -7.1383486,44.650333 - 5592: -4.849286,44.69721 - 5593: -6.1852236,45.587833 - 5696: -55.438206,-6.466632 - 5697: -50.930393,-7.3181944 - 5698: -49.836643,-5.966632 - 5699: -53.430393,-9.271319 - 5700: -56.35227,-8.974444 - 6907: -24.2496,-39.078278 - 6908: -24.366787,-36.625153 - 6940: -10.55433,-51.81222 + 4314: 46.664623,20.867 + 4332: 27.660282,-16.74252 + 4333: 26.90247,-17.21127 + 4334: 29.863407,-17.281582 + 4370: -58.079628,9.180978 + 4371: -62.696815,9.290353 + 5121: 77.56664,54.84955 + 5122: 78.773674,55.40033 + 5123: 79.699455,56.302673 + 5133: 83.50805,54.63861 + 5134: 84.75024,54.47455 + 5135: 82.07836,56.426743 + 5447: -8.852795,46.17611 + 5448: -8.032482,45.76986 + 5449: -4.5481076,46.355797 + 5569: -7.4717846,46.9163 + 5573: -10.200849,44.751896 + 5574: -7.1383486,44.650333 + 5575: -4.849286,44.69721 + 5576: -6.1852236,45.587833 + 5679: -55.438206,-6.466632 + 5680: -50.930393,-7.3181944 + 5681: -49.836643,-5.966632 + 5682: -53.430393,-9.271319 + 5683: -56.35227,-8.974444 + 6890: -24.2496,-39.078278 + 6891: -24.366787,-36.625153 + 6923: -10.55433,-51.81222 - node: angle: -0.15707963267948966 rad color: '#FFFFFFFF' @@ -8210,45 +8210,45 @@ entities: 3340: 1.2369585,52.169605 3341: 0.979146,51.607105 3342: 1.1744585,49.825855 - 4423: -13.76521,70.095 - 4424: -13.874585,68.9075 - 4575: -30.036238,-17.26733 - 4576: -28.629988,-16.95483 - 5235: 5.7136602,45.303474 - 5244: -31.24543,-0.1303649 - 5467: -10.266857,46.24642 - 5468: -8.563732,45.597984 - 5469: -6.64967,46.39486 - 5470: -4.77467,45.535484 - 5701: -55.000706,-5.8494444 - 5702: -53.73508,-6.8650694 - 5703: -50.274143,-7.794757 - 6261: 8.824696,-42.26988 - 6262: 11.316883,-41.910503 - 6939: -10.905892,-51.101284 + 4412: -13.76521,70.095 + 4413: -13.874585,68.9075 + 4564: -30.036238,-17.26733 + 4565: -28.629988,-16.95483 + 5218: 5.7136602,45.303474 + 5227: -31.24543,-0.1303649 + 5450: -10.266857,46.24642 + 5451: -8.563732,45.597984 + 5452: -6.64967,46.39486 + 5453: -4.77467,45.535484 + 5684: -55.000706,-5.8494444 + 5685: -53.73508,-6.8650694 + 5686: -50.274143,-7.794757 + 6244: 8.824696,-42.26988 + 6245: 11.316883,-41.910503 + 6922: -10.905892,-51.101284 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 4360: 39.41204,21.035192 - 4361: 37.302666,20.949255 - 4499: 35.843708,-5.1350927 - 4500: 36.160114,-5.6975927 - 4501: 36.48824,-7.97103 - 4506: 70.74908,19.150547 - 4507: 71.06548,18.353672 - 4508: 70.678764,14.369297 - 5130: 84.99633,55.845642 - 5131: 83.29711,53.33783 - 5141: 79.617424,55.728455 - 5142: 78.46899,53.876892 - 5143: 76.605705,54.54486 - 5144: 82.39477,52.833923 - 5145: 83.51977,52.540955 - 5146: 84.75024,52.646423 - 5345: -16.073597,54.181507 - 5346: -16.370472,54.994007 - 5587: -6.5811596,46.931927 + 4349: 39.41204,21.035192 + 4350: 37.302666,20.949255 + 4488: 35.843708,-5.1350927 + 4489: 36.160114,-5.6975927 + 4490: 36.48824,-7.97103 + 4495: 70.74908,19.150547 + 4496: 71.06548,18.353672 + 4497: 70.678764,14.369297 + 5113: 84.99633,55.845642 + 5114: 83.29711,53.33783 + 5124: 79.617424,55.728455 + 5125: 78.46899,53.876892 + 5126: 76.605705,54.54486 + 5127: 82.39477,52.833923 + 5128: 83.51977,52.540955 + 5129: 84.75024,52.646423 + 5328: -16.073597,54.181507 + 5329: -16.370472,54.994007 + 5570: -6.5811596,46.931927 - node: angle: -0.15707963267948966 rad color: '#FFFFFFFF' @@ -8276,21 +8276,21 @@ entities: 2675: 41.930405,-11.225285 2818: -24.539646,-28.773409 3238: -17.338375,54.89626 - 4502: 35.656208,-6.7757177 - 4509: 70.59673,18.56461 - 4510: 71.042046,16.666172 - 4511: 71.28814,20.263828 - 4512: 71.241264,13.068516 - 4513: 70.43267,15.306797 - 5132: 81.64477,54.36908 - 5147: 84.55102,53.6308 - 5148: 83.59008,55.20111 - 5149: 84.41039,55.58783 - 5704: -56.211643,-6.7400694 - 5705: -52.461643,-8.185382 - 5706: -49.42258,-8.076007 - 5707: -49.399143,-6.8181944 - 6941: -10.944955,-53.351284 + 4491: 35.656208,-6.7757177 + 4498: 70.59673,18.56461 + 4499: 71.042046,16.666172 + 4500: 71.28814,20.263828 + 4501: 71.241264,13.068516 + 4502: 70.43267,15.306797 + 5115: 81.64477,54.36908 + 5130: 84.55102,53.6308 + 5131: 83.59008,55.20111 + 5132: 84.41039,55.58783 + 5687: -56.211643,-6.7400694 + 5688: -52.461643,-8.185382 + 5689: -49.42258,-8.076007 + 5690: -49.399143,-6.8181944 + 6924: -10.944955,-53.351284 - node: color: '#FFFFFFFF' id: Grasse3 @@ -8333,435 +8333,435 @@ entities: 3251: -20.969301,-13.602369 3252: -17.969301,-13.321119 3253: -14.281801,-13.399244 - 4322: 45.12556,21.343563 - 4323: 45.43806,21.101376 - 4324: 48.11775,21.08575 - 4353: 0.39834595,-37.841984 - 4354: -28.3777,17.481447 - 4355: -19.469736,17.55176 - 4356: -19.477549,17.98926 - 4357: 35.28704,21.324255 - 4358: 35.677666,21.003942 - 4359: 38.013603,21.324255 - 4372: -1.4631042,35.86057 - 4373: -1.3537292,35.21213 - 4374: -1.4865417,33.86838 - 4383: -62.845253,9.079415 - 4384: -60.58744,9.212228 - 4385: -58.634315,8.985665 - 5133: 82.1018,53.642517 - 5134: 79.76977,56.677673 - 5135: 81.011955,57.802673 - 5136: 74.87133,57.990173 - 5137: 76.48852,55.154236 + 4311: 45.12556,21.343563 + 4312: 45.43806,21.101376 + 4313: 48.11775,21.08575 + 4342: 0.39834595,-37.841984 + 4343: -28.3777,17.481447 + 4344: -19.469736,17.55176 + 4345: -19.477549,17.98926 + 4346: 35.28704,21.324255 + 4347: 35.677666,21.003942 + 4348: 38.013603,21.324255 + 4361: -1.4631042,35.86057 + 4362: -1.3537292,35.21213 + 4363: -1.4865417,33.86838 + 4372: -62.845253,9.079415 + 4373: -60.58744,9.212228 + 4374: -58.634315,8.985665 + 5116: 82.1018,53.642517 + 5117: 79.76977,56.677673 + 5118: 81.011955,57.802673 + 5119: 74.87133,57.990173 + 5120: 76.48852,55.154236 - node: color: '#720000FF' id: HalfTileOverlayGreyscale decals: - 6637: 33,-28 - 6638: 34,-28 + 6620: 33,-28 + 6621: 34,-28 - node: color: '#720000FF' id: HalfTileOverlayGreyscale180 decals: - 6631: 33,-33 - 6632: 34,-33 + 6614: 33,-33 + 6615: 34,-33 - node: color: '#720000FF' id: HalfTileOverlayGreyscale270 decals: - 6633: 31,-31 - 6634: 31,-30 + 6616: 31,-31 + 6617: 31,-30 - node: color: '#720000FF' id: HalfTileOverlayGreyscale90 decals: - 6635: 36,-30 - 6636: 36,-31 + 6618: 36,-30 + 6619: 36,-31 - node: color: '#338BA9FF' id: MiniTileCornerOverlayNE decals: - 6640: 35,-29 + 6623: 35,-29 - node: color: '#338BA9FF' id: MiniTileCornerOverlayNW decals: - 6639: 32,-29 + 6622: 32,-29 - node: color: '#338BA9FF' id: MiniTileCornerOverlaySE decals: - 6641: 35,-32 + 6624: 35,-32 - node: color: '#338BA9FF' id: MiniTileCornerOverlaySW decals: - 6642: 32,-32 + 6625: 32,-32 - node: color: '#338BA9FF' id: MiniTileInnerOverlayNE decals: - 6643: 35,-31 - 6648: 33,-29 + 6626: 35,-31 + 6631: 33,-29 - node: color: '#338BA9FF' id: MiniTileInnerOverlayNW decals: - 6646: 32,-31 - 6647: 34,-29 + 6629: 32,-31 + 6630: 34,-29 - node: color: '#338BA9FF' id: MiniTileInnerOverlaySE decals: - 6644: 35,-30 - 6650: 33,-32 + 6627: 35,-30 + 6633: 33,-32 - node: color: '#338BA9FF' id: MiniTileInnerOverlaySW decals: - 6645: 32,-30 - 6649: 34,-32 + 6628: 32,-30 + 6632: 34,-32 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNe decals: - 6565: 0,-17 - 6579: 2,-34 - 6580: 5,-37 - 6611: 0,19 + 6548: 0,-17 + 6562: 2,-34 + 6563: 5,-37 + 6594: 0,19 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNw decals: - 6567: 2,-17 - 6581: 0,-34 - 6582: -3,-37 - 6612: 2,19 + 6550: 2,-17 + 6564: 0,-34 + 6565: -3,-37 + 6595: 2,19 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSe decals: - 6568: 0,-15 - 6583: 2,-42 - 6584: 5,-39 - 6613: 0,21 + 6551: 0,-15 + 6566: 2,-42 + 6567: 5,-39 + 6596: 0,21 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSw decals: - 6566: 2,-15 - 6585: 0,-42 - 6586: -3,-39 - 6614: 2,21 + 6549: 2,-15 + 6568: 0,-42 + 6569: -3,-39 + 6597: 2,21 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNe decals: - 6571: 0,-18 - 6572: -1,-17 - 6607: 2,-37 - 6625: 0,18 - 6626: -1,19 + 6554: 0,-18 + 6555: -1,-17 + 6590: 2,-37 + 6608: 0,18 + 6609: -1,19 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNw decals: - 6575: 2,-18 - 6576: 3,-17 - 6610: 0,-37 - 6623: 2,18 - 6624: 3,19 + 6558: 2,-18 + 6559: 3,-17 + 6593: 0,-37 + 6606: 2,18 + 6607: 3,19 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerSe decals: - 6577: -1,-15 - 6578: 0,-14 - 6609: 2,-39 - 6621: 0,22 - 6622: -1,21 + 6560: -1,-15 + 6561: 0,-14 + 6592: 2,-39 + 6604: 0,22 + 6605: -1,21 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerSw decals: - 6573: 2,-14 - 6574: 3,-15 - 6608: 0,-39 - 6619: 2,22 - 6620: 3,21 + 6556: 2,-14 + 6557: 3,-15 + 6591: 0,-39 + 6602: 2,22 + 6603: 3,21 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 6569: -1,-16 - 6592: 2,-35 - 6593: 2,-36 - 6594: 5,-38 - 6595: 2,-40 - 6596: 2,-41 - 6615: -1,20 + 6552: -1,-16 + 6575: 2,-35 + 6576: 2,-36 + 6577: 5,-38 + 6578: 2,-40 + 6579: 2,-41 + 6598: -1,20 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 6563: 1,-18 - 6587: -2,-37 - 6588: -1,-37 - 6589: 3,-37 - 6590: 4,-37 - 6591: 1,-34 - 6617: 1,18 + 6546: 1,-18 + 6570: -2,-37 + 6571: -1,-37 + 6572: 3,-37 + 6573: 4,-37 + 6574: 1,-34 + 6600: 1,18 - node: color: '#FFFFFFFF' id: MiniTileSteelLineS decals: - 6570: 1,-14 - 6597: 1,-42 - 6598: -1,-39 - 6599: -2,-39 - 6600: 3,-39 - 6601: 4,-39 - 6618: 1,22 + 6553: 1,-14 + 6580: 1,-42 + 6581: -1,-39 + 6582: -2,-39 + 6583: 3,-39 + 6584: 4,-39 + 6601: 1,22 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 6564: 3,-16 - 6602: 0,-35 - 6603: 0,-36 - 6604: 0,-40 - 6605: 0,-41 - 6606: -3,-38 - 6616: 3,20 + 6547: 3,-16 + 6585: 0,-35 + 6586: 0,-36 + 6587: 0,-40 + 6588: 0,-41 + 6589: -3,-38 + 6599: 3,20 - node: color: '#91D4FFFF' id: MiniTileWhiteCornerNe decals: - 6459: 0,1 + 6442: 0,1 - node: color: '#D3F4A5FF' id: MiniTileWhiteCornerNe decals: - 6695: -72,7 + 6678: -72,7 - node: color: '#91D4FFFF' id: MiniTileWhiteCornerNw decals: - 6460: 2,1 + 6443: 2,1 - node: color: '#D3F4A5FF' id: MiniTileWhiteCornerNw decals: - 6696: -70,7 + 6679: -70,7 - node: color: '#91D4FFFF' id: MiniTileWhiteCornerSe decals: - 6457: 0,3 + 6440: 0,3 - node: color: '#D3F4A5FF' id: MiniTileWhiteCornerSe decals: - 6694: -72,9 + 6677: -72,9 - node: color: '#91D4FFFF' id: MiniTileWhiteCornerSw decals: - 6458: 2,3 + 6441: 2,3 - node: color: '#D3F4A5FF' id: MiniTileWhiteCornerSw decals: - 6693: -70,9 + 6676: -70,9 - node: color: '#91D4FFFF' id: MiniTileWhiteInnerNe decals: - 6500: 0,0 - 6510: -1,1 + 6483: 0,0 + 6493: -1,1 - node: color: '#D3F4A5FF' id: MiniTileWhiteInnerNe decals: - 6701: -72,6 - 6702: -73,7 + 6684: -72,6 + 6685: -73,7 - node: color: '#91D4FFFF' id: MiniTileWhiteInnerNw decals: - 6501: 2,0 - 6511: 3,1 + 6484: 2,0 + 6494: 3,1 - node: color: '#D3F4A5FF' id: MiniTileWhiteInnerNw decals: - 6703: -70,6 - 6704: -69,7 + 6686: -70,6 + 6687: -69,7 - node: color: '#91D4FFFF' id: MiniTileWhiteInnerSe decals: - 6508: 0,4 - 6509: -1,3 + 6491: 0,4 + 6492: -1,3 - node: color: '#D3F4A5FF' id: MiniTileWhiteInnerSe decals: - 6707: -72,10 - 6708: -73,9 + 6690: -72,10 + 6691: -73,9 - node: color: '#91D4FFFF' id: MiniTileWhiteInnerSw decals: - 6506: 3,3 - 6507: 2,4 + 6489: 3,3 + 6490: 2,4 - node: color: '#D3F4A5FF' id: MiniTileWhiteInnerSw decals: - 6705: -69,9 - 6706: -70,10 + 6688: -69,9 + 6689: -70,10 - node: color: '#91D4FFFF' id: MiniTileWhiteLineE decals: - 6505: -1,2 + 6488: -1,2 - node: color: '#D3F4A5FF' id: MiniTileWhiteLineE decals: - 6700: -73,8 + 6683: -73,8 - node: color: '#91D4FFFF' id: MiniTileWhiteLineN decals: - 6502: 1,0 + 6485: 1,0 - node: color: '#D3F4A5FF' id: MiniTileWhiteLineN decals: - 6697: -71,6 + 6680: -71,6 - node: color: '#91D4FFFF' id: MiniTileWhiteLineS decals: - 6503: 1,4 + 6486: 1,4 - node: color: '#D3F4A5FF' id: MiniTileWhiteLineS decals: - 6698: -71,10 + 6681: -71,10 - node: color: '#91D4FFFF' id: MiniTileWhiteLineW decals: - 6504: 3,2 + 6487: 3,2 - node: color: '#D3F4A5FF' id: MiniTileWhiteLineW decals: - 6699: -69,8 + 6682: -69,8 - node: color: '#334E6DFF' id: MonoOverlay decals: - 5752: -36,24 - 5924: -76,12 + 5735: -36,24 + 5907: -76,12 - node: color: '#845606FF' id: MonoOverlay decals: - 5748: -40,24 - 5923: -80,11 + 5731: -40,24 + 5906: -80,11 - node: color: '#91D4FFFF' id: MonoOverlay decals: - 5745: -43,24 - 5920: -80,14 + 5728: -43,24 + 5903: -80,14 - node: color: '#9DE9BAFF' id: MonoOverlay decals: - 5751: -37,24 + 5734: -37,24 - node: color: '#9FED58FF' id: MonoOverlay decals: - 5925: -76,13 + 5908: -76,13 - node: color: '#B02E26FF' id: MonoOverlay decals: - 5749: -39,24 - 5919: -76,14 + 5732: -39,24 + 5902: -76,14 - node: color: '#B04DB5FF' id: MonoOverlay decals: - 5747: -41,24 - 5922: -80,12 + 5730: -41,24 + 5905: -80,12 - node: color: '#BA8841FF' id: MonoOverlay decals: - 5750: -38,24 - 5926: -76,11 + 5733: -38,24 + 5909: -76,11 - node: color: '#D3F4A5FF' id: MonoOverlay decals: - 5746: -42,24 - 5921: -80,13 + 5729: -42,24 + 5904: -80,13 - node: color: '#720000FF' id: QuarterTileOverlayGreyscale decals: - 6687: 34,-28 - 6688: 31,-31 + 6670: 34,-28 + 6671: 31,-31 - node: color: '#DFAA16FF' id: QuarterTileOverlayGreyscale decals: - 6653: 31,-31 - 6655: 34,-28 + 6636: 31,-31 + 6638: 34,-28 - node: color: '#720000FF' id: QuarterTileOverlayGreyscale180 decals: - 6689: 36,-30 - 6690: 33,-33 + 6672: 36,-30 + 6673: 33,-33 - node: color: '#DFAA16FF' id: QuarterTileOverlayGreyscale180 decals: - 6658: 33,-33 - 6659: 36,-30 + 6641: 33,-33 + 6642: 36,-30 - node: color: '#720000FF' id: QuarterTileOverlayGreyscale270 decals: - 6691: 34,-33 - 6692: 31,-30 + 6674: 34,-33 + 6675: 31,-30 - node: color: '#DFAA16FF' id: QuarterTileOverlayGreyscale270 decals: - 6654: 31,-30 - 6657: 34,-33 + 6637: 31,-30 + 6640: 34,-33 - node: color: '#720000FF' id: QuarterTileOverlayGreyscale90 decals: - 6685: 36,-31 - 6686: 33,-28 + 6668: 36,-31 + 6669: 33,-28 - node: color: '#DFAA16FF' id: QuarterTileOverlayGreyscale90 decals: - 6656: 33,-28 - 6660: 36,-31 + 6639: 33,-28 + 6643: 36,-31 - node: color: '#FFFFFFFF' id: Remains @@ -8784,100 +8784,100 @@ entities: color: '#FFFFFFFF' id: Rock01 decals: - 4827: 102.79387,48.567257 - 4838: 94.93059,45.47077 - 4839: 93.95793,44.27546 - 4847: 100.53215,30.299767 - 4848: 101.528244,27.686485 - 4853: 98.64543,22.421034 - 4859: 88.78036,27.940224 - 4860: 88.323326,27.307411 - 4870: 71.137566,47.653687 - 4877: 68.54636,63.695564 - 4878: 77.5703,69.92761 - 4885: 62.59044,75.553635 - 4886: 61.40715,64.640045 - 4895: 80.69898,71.55661 - 4896: 82.550545,70.32614 - 4897: 82.732,60.92238 - 4902: 89.51716,60.851997 - 4903: 94.41016,63.418404 - 4904: 87.50781,67.52745 - 4908: 85.515625,75.35539 - 4909: 96.41406,68.75774 - 4910: 95.93659,58.3081 - 4920: 91.25725,8.789104 - 5274: -39.37945,72.81972 - 5299: 40.62494,14.185911 - 5300: 46.242126,10.631224 - 5332: -69.342834,35.958504 - 5333: -67.03815,32.021004 - 5339: -52.728626,-9.140808 - 5406: 34.05777,53.045223 - 5600: -10.596394,46.794857 - 5849: 13.760746,-30.861977 - 5850: 18.760746,-28.830727 - 6256: 8.941883,-41.09019 - 6398: -43.246975,18.998549 + 4810: 102.79387,48.567257 + 4821: 94.93059,45.47077 + 4822: 93.95793,44.27546 + 4830: 100.53215,30.299767 + 4831: 101.528244,27.686485 + 4836: 98.64543,22.421034 + 4842: 88.78036,27.940224 + 4843: 88.323326,27.307411 + 4853: 71.137566,47.653687 + 4860: 68.54636,63.695564 + 4861: 77.5703,69.92761 + 4868: 62.59044,75.553635 + 4869: 61.40715,64.640045 + 4878: 80.69898,71.55661 + 4879: 82.550545,70.32614 + 4880: 82.732,60.92238 + 4885: 89.51716,60.851997 + 4886: 94.41016,63.418404 + 4887: 87.50781,67.52745 + 4891: 85.515625,75.35539 + 4892: 96.41406,68.75774 + 4893: 95.93659,58.3081 + 4903: 91.25725,8.789104 + 5257: -39.37945,72.81972 + 5282: 40.62494,14.185911 + 5283: 46.242126,10.631224 + 5315: -69.342834,35.958504 + 5316: -67.03815,32.021004 + 5322: -52.728626,-9.140808 + 5389: 34.05777,53.045223 + 5583: -10.596394,46.794857 + 5832: 13.760746,-30.861977 + 5833: 18.760746,-28.830727 + 6239: 8.941883,-41.09019 + 6381: -43.246975,18.998549 - node: color: '#FFFFFFFF' id: Rock02 decals: - 4579: -28.536238,-17.001705 - 4833: 97.6259,41.16999 - 4840: 93.39543,43.31452 - 4843: 100.89543,38.81452 - 4844: 99.5009,28.354454 - 4849: 98.72746,27.674767 - 4850: 101.621994,21.671034 - 4854: 93.07972,31.502724 - 4871: 67.680534,52.610718 - 4872: 66.495575,60.26164 - 4879: 76.99608,69.49402 - 4884: 61.406845,75.0966 - 4891: 61.6884,78.59358 - 4899: 85.134346,62.574654 - 4907: 86.265625,71.35948 - 4911: 95.04975,58.62622 - 4912: 103.47553,58.778564 - 4913: 100.46381,55.403564 - 4914: 97.16203,35.096268 - 5336: -28.93729,2.9404542 - 5337: -51.377064,-6.640808 - 5350: 48.710686,-31.929493 - 5599: -7.7526436,47.02142 - 5851: 19.120121,-31.135414 + 4568: -28.536238,-17.001705 + 4816: 97.6259,41.16999 + 4823: 93.39543,43.31452 + 4826: 100.89543,38.81452 + 4827: 99.5009,28.354454 + 4832: 98.72746,27.674767 + 4833: 101.621994,21.671034 + 4837: 93.07972,31.502724 + 4854: 67.680534,52.610718 + 4855: 66.495575,60.26164 + 4862: 76.99608,69.49402 + 4867: 61.406845,75.0966 + 4874: 61.6884,78.59358 + 4882: 85.134346,62.574654 + 4890: 86.265625,71.35948 + 4894: 95.04975,58.62622 + 4895: 103.47553,58.778564 + 4896: 100.46381,55.403564 + 4897: 97.16203,35.096268 + 5319: -28.93729,2.9404542 + 5320: -51.377064,-6.640808 + 5333: 48.710686,-31.929493 + 5582: -7.7526436,47.02142 + 5834: 19.120121,-31.135414 - node: color: '#FFFFFFFF' id: Rock03 decals: - 4816: 80.55664,55.57683 - 4825: 87.927734,55.377613 - 4826: 100.47157,49.35293 - 4834: 97.83684,40.22077 - 4841: 95.35246,42.330147 - 4858: 83.741295,28.713661 - 4861: 89.50692,27.248817 - 4862: 101.01043,22.149483 - 4863: 100.3583,35.617542 - 4864: 103.3167,51.065765 - 4865: 93.613785,56.79541 - 4866: 71.430534,50.302124 - 4873: 64.84323,59.183514 - 4880: 73.16405,74.56824 - 4881: 62.414658,70.08098 - 4887: 60.76262,64.05411 - 4888: 58.3134,79.320145 - 4892: 60.10637,79.42561 - 4893: 80.60222,74.415985 - 4898: 86.00153,63.44184 - 4917: 98.792404,9.000042 - 4921: 88.843185,13.160198 - 5295: 46.023376,14.014036 - 5351: 46.304436,-29.085743 - 5356: -68.58855,36.34771 - 5405: 30.878082,54.990536 - 6163: -1.7414589,25.080694 + 4799: 80.55664,55.57683 + 4808: 87.927734,55.377613 + 4809: 100.47157,49.35293 + 4817: 97.83684,40.22077 + 4824: 95.35246,42.330147 + 4841: 83.741295,28.713661 + 4844: 89.50692,27.248817 + 4845: 101.01043,22.149483 + 4846: 100.3583,35.617542 + 4847: 103.3167,51.065765 + 4848: 93.613785,56.79541 + 4849: 71.430534,50.302124 + 4856: 64.84323,59.183514 + 4863: 73.16405,74.56824 + 4864: 62.414658,70.08098 + 4870: 60.76262,64.05411 + 4871: 58.3134,79.320145 + 4875: 60.10637,79.42561 + 4876: 80.60222,74.415985 + 4881: 86.00153,63.44184 + 4900: 98.792404,9.000042 + 4904: 88.843185,13.160198 + 5278: 46.023376,14.014036 + 5334: 46.304436,-29.085743 + 5339: -68.58855,36.34771 + 5388: 30.878082,54.990536 + 6146: -1.7414589,25.080694 - node: angle: -0.15707963267948966 rad color: '#FFFFFFFF' @@ -8893,76 +8893,76 @@ entities: id: Rock04 decals: 3050: -81.68403,16.52927 - 4817: 82.68945,54.486988 - 4818: 85.51367,53.52605 - 4819: 74.978516,57.158863 - 4831: 102.266525,42.672726 - 4832: 102.653244,41.767647 - 4835: 98.58684,41.45124 - 4836: 96.47746,43.255928 - 4845: 98.57512,28.811485 - 4851: 102.32512,20.839003 - 4855: 93.80628,31.022255 - 4857: 86.28426,28.72538 - 4867: 71.86413,49.470093 - 4868: 72.43835,50.454468 - 4869: 69.69616,48.2865 - 4874: 64.526825,58.38664 - 4875: 67.30417,63.73072 - 4882: 62.68419,69.448166 - 4890: 61.20793,78.0428 - 4894: 81.50456,73.97067 - 4900: 86.58747,60.219185 - 4905: 88.1875,67.304794 - 4906: 85.58594,70.70323 - 4915: 97.806564,34.357986 - 4916: 97.50334,9.703167 - 4919: 98.76897,7.7461357 - 4922: 97.05803,11.437542 - 5275: -35.738827,71.38222 - 5296: 41.210876,11.732786 - 5338: -55.713,-7.578308 - 5340: -16.277683,57.435253 - 5352: 47.97631,-31.570118 - 5353: 50.390373,-32.366993 - 5598: -6.4664736,44.845646 - 5852: 15.4091835,-32.854164 + 4800: 82.68945,54.486988 + 4801: 85.51367,53.52605 + 4802: 74.978516,57.158863 + 4814: 102.266525,42.672726 + 4815: 102.653244,41.767647 + 4818: 98.58684,41.45124 + 4819: 96.47746,43.255928 + 4828: 98.57512,28.811485 + 4834: 102.32512,20.839003 + 4838: 93.80628,31.022255 + 4840: 86.28426,28.72538 + 4850: 71.86413,49.470093 + 4851: 72.43835,50.454468 + 4852: 69.69616,48.2865 + 4857: 64.526825,58.38664 + 4858: 67.30417,63.73072 + 4865: 62.68419,69.448166 + 4873: 61.20793,78.0428 + 4877: 81.50456,73.97067 + 4883: 86.58747,60.219185 + 4888: 88.1875,67.304794 + 4889: 85.58594,70.70323 + 4898: 97.806564,34.357986 + 4899: 97.50334,9.703167 + 4902: 98.76897,7.7461357 + 4905: 97.05803,11.437542 + 5258: -35.738827,71.38222 + 5279: 41.210876,11.732786 + 5321: -55.713,-7.578308 + 5323: -16.277683,57.435253 + 5335: 47.97631,-31.570118 + 5336: 50.390373,-32.366993 + 5581: -6.4664736,44.845646 + 5835: 15.4091835,-32.854164 - node: color: '#FFFFFFFF' id: Rock05 decals: - 4820: 77.11133,59.268238 - 4821: 80.9668,56.268238 - 4822: 79.384766,53.010426 - 4823: 89.47461,55.002613 - 4824: 87.38867,55.893238 - 4828: 99.6884,48.707882 - 4837: 95.12981,44.591866 - 4842: 100.41496,39.517647 - 4846: 100.03996,30.979454 - 4852: 100.496994,21.530409 - 4856: 86.729576,29.182411 - 4876: 67.72604,64.46901 - 4883: 60.51622,69.99895 - 4889: 60.422775,77.4803 - 4901: 89.21247,61.40278 - 4918: 99.27287,8.437542 - 5276: -39.481014,68.97597 - 5297: 42.57025,10.685911 - 5298: 41.765564,15.373411 - 5334: -65.83502,32.72413 - 5335: -31.491978,0.48036456 - 5341: -17.191746,53.591503 - 5354: 45.484123,-32.195118 - 5355: -70.33855,31.832085 - 5407: 35.206207,54.928036 - 5408: 33.62027,57.19366 - 5585: -8.557722,46.736614 - 5601: -4.432331,44.662045 - 5853: 16.284184,-32.90885 - 5854: 15.526371,-29.166664 - 6257: 9.277821,-41.71519 - 6397: -41.442287,21.076674 + 4803: 77.11133,59.268238 + 4804: 80.9668,56.268238 + 4805: 79.384766,53.010426 + 4806: 89.47461,55.002613 + 4807: 87.38867,55.893238 + 4811: 99.6884,48.707882 + 4820: 95.12981,44.591866 + 4825: 100.41496,39.517647 + 4829: 100.03996,30.979454 + 4835: 100.496994,21.530409 + 4839: 86.729576,29.182411 + 4859: 67.72604,64.46901 + 4866: 60.51622,69.99895 + 4872: 60.422775,77.4803 + 4884: 89.21247,61.40278 + 4901: 99.27287,8.437542 + 5259: -39.481014,68.97597 + 5280: 42.57025,10.685911 + 5281: 41.765564,15.373411 + 5317: -65.83502,32.72413 + 5318: -31.491978,0.48036456 + 5324: -17.191746,53.591503 + 5337: 45.484123,-32.195118 + 5338: -70.33855,31.832085 + 5390: 35.206207,54.928036 + 5391: 33.62027,57.19366 + 5568: -8.557722,46.736614 + 5584: -4.432331,44.662045 + 5836: 16.284184,-32.90885 + 5837: 15.526371,-29.166664 + 6240: 9.277821,-41.71519 + 6380: -41.442287,21.076674 - node: angle: -0.15707963267948966 rad color: '#FFFFFFFF' @@ -8976,10 +8976,10 @@ entities: 255: -104.42121,23.972893 256: -101.82746,28.332268 257: -101.57746,19.832268 - 4829: 100.53215,48.62585 - 4923: 101.083466,10.133084 - 4928: 98.41568,33.005764 - 5342: -15.972034,50.921497 + 4812: 100.53215,48.62585 + 4906: 101.083466,10.133084 + 4911: 98.41568,33.005764 + 5325: -15.972034,50.921497 - node: angle: -0.15707963267948966 rad color: '#FFFFFFFF' @@ -8999,104 +8999,104 @@ entities: 259: -101.82746,19.051018 260: -101.28059,27.691643 261: -105.32746,27.394768 - 4830: 100.16887,48.145382 - 4924: 102.19242,9.054959 - 4925: 103.8472,22.671467 - 4926: 96.681305,25.049057 - 4927: 99.04849,33.638577 - 5343: -16.08141,56.36161 + 4813: 100.16887,48.145382 + 4907: 102.19242,9.054959 + 4908: 103.8472,22.671467 + 4909: 96.681305,25.049057 + 4910: 99.04849,33.638577 + 5326: -16.08141,56.36161 - node: color: '#FFFFFFFF' id: Rust decals: - 4763: 76,85 - 4764: 78,84 - 4765: 73,84 - 4766: 69,84 - 4767: 68,85 - 4768: 70,85 - 4769: 68,82 - 4770: 74,80 - 4771: 77,81 - 4772: 78,83 - 4811: 81,84 - 4812: 80,85 - 4813: 82,81 - 4814: 83,80 - 4815: 76,78 + 4746: 76,85 + 4747: 78,84 + 4748: 73,84 + 4749: 69,84 + 4750: 68,85 + 4751: 70,85 + 4752: 68,82 + 4753: 74,80 + 4754: 77,81 + 4755: 78,83 + 4794: 81,84 + 4795: 80,85 + 4796: 82,81 + 4797: 83,80 + 4798: 76,78 - node: color: '#B02E26FF' id: StandClearGreyscale decals: - 5896: 1,-27 - 5897: 1,-21 - 6147: 1,40 - 6148: 1,46 + 5879: 1,-27 + 5880: 1,-21 + 6130: 1,40 + 6131: 1,46 - node: color: '#720000FF' id: ThreeQuarterTileOverlayGreyscale decals: - 6628: 31,-28 + 6611: 31,-28 - node: color: '#720000FF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 6630: 36,-33 + 6613: 36,-33 - node: color: '#720000FF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 6629: 31,-33 + 6612: 31,-33 - node: color: '#720000FF' id: ThreeQuarterTileOverlayGreyscale90 decals: - 6627: 36,-28 + 6610: 36,-28 - node: color: '#91D4FFFF' id: WarnCornerGreyscaleNE decals: - 7067: 28,3 + 7050: 28,3 - node: color: '#91D4FFFF' id: WarnCornerGreyscaleNW decals: - 7068: 24,3 + 7051: 24,3 - node: color: '#91D4FFFF' id: WarnCornerGreyscaleSE decals: - 7070: 28,0 + 7053: 28,0 - node: color: '#91D4FFFF' id: WarnCornerGreyscaleSW decals: - 7069: 24,0 + 7052: 24,0 - node: color: '#B02E26FF' id: WarnCornerNE decals: - 5558: -23,51 - 5911: 8,-21 - 6168: -2,45 - 6247: -20,61 - 6271: -25,34 - 6272: -29,34 - 6273: -29,25 - 6274: -25,25 - 6324: -17,42 + 5541: -23,51 + 5894: 8,-21 + 6151: -2,45 + 6230: -20,61 + 6254: -25,34 + 6255: -29,34 + 6256: -29,25 + 6257: -25,25 + 6307: -17,42 - node: color: '#BA8841FF' id: WarnCornerNE decals: - 6055: -51,38 - 6056: -57,37 - 6060: -52,35 - 6072: -42,31 - 6092: -42,35 - 6109: -46,37 - 6342: 88,-14 - 6343: 88,-19 + 6038: -51,38 + 6039: -57,37 + 6043: -52,35 + 6055: -42,31 + 6075: -42,35 + 6092: -46,37 + 6325: 88,-14 + 6326: 88,-19 - node: color: '#FFFFFFFF' id: WarnCornerNE @@ -9106,27 +9106,27 @@ entities: color: '#B02E26FF' id: WarnCornerNW decals: - 5557: -24,51 - 5910: 6,-21 - 6167: -3,45 - 6246: -24,61 - 6275: -31,34 - 6276: -31,25 - 6277: -27,25 - 6278: -27,34 - 6325: -19,42 + 5540: -24,51 + 5893: 6,-21 + 6150: -3,45 + 6229: -24,61 + 6258: -31,34 + 6259: -31,25 + 6260: -27,25 + 6261: -27,34 + 6308: -19,42 - node: color: '#BA8841FF' id: WarnCornerNW decals: - 6057: -58,37 - 6058: -53,38 - 6059: -53,35 - 6073: -43,31 - 6093: -43,35 - 6108: -49,37 - 6340: 86,-14 - 6341: 86,-19 + 6040: -58,37 + 6041: -53,38 + 6042: -53,35 + 6056: -43,31 + 6076: -43,35 + 6091: -49,37 + 6323: 86,-14 + 6324: 86,-19 - node: color: '#FFFFFFFF' id: WarnCornerNW @@ -9136,29 +9136,29 @@ entities: color: '#B02E26FF' id: WarnCornerSE decals: - 5564: -23,48 - 5908: 8,-26 - 5909: 11,-25 - 5917: 15,-25 - 6176: -2,41 - 6248: -20,60 - 6283: -25,24 - 6284: -25,33 - 6285: -29,33 - 6286: -29,24 - 6326: -17,39 + 5547: -23,48 + 5891: 8,-26 + 5892: 11,-25 + 5900: 15,-25 + 6159: -2,41 + 6231: -20,60 + 6266: -25,24 + 6267: -25,33 + 6268: -29,33 + 6269: -29,24 + 6309: -17,39 - node: color: '#BA8841FF' id: WarnCornerSE decals: - 6052: -52,33 - 6053: -51,37 - 6054: -57,33 - 6074: -42,29 - 6091: -42,33 - 6110: -46,36 - 6344: 88,-20 - 6345: 88,-15 + 6035: -52,33 + 6036: -51,37 + 6037: -57,33 + 6057: -42,29 + 6074: -42,33 + 6093: -46,36 + 6327: 88,-20 + 6328: 88,-15 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -9168,29 +9168,29 @@ entities: color: '#B02E26FF' id: WarnCornerSW decals: - 5563: -24,48 - 5906: 6,-26 - 5907: 10,-25 - 5916: 13,-25 - 6175: -3,41 - 6249: -24,60 - 6279: -31,33 - 6280: -27,33 - 6281: -31,24 - 6282: -27,24 - 6323: -19,39 + 5546: -24,48 + 5889: 6,-26 + 5890: 10,-25 + 5899: 13,-25 + 6158: -3,41 + 6232: -24,60 + 6262: -31,33 + 6263: -27,33 + 6264: -31,24 + 6265: -27,24 + 6306: -19,39 - node: color: '#BA8841FF' id: WarnCornerSW decals: - 6049: -53,33 - 6050: -58,33 - 6051: -53,37 - 6069: -43,29 - 6090: -43,33 - 6111: -49,36 - 6338: 86,-20 - 6339: 86,-15 + 6032: -53,33 + 6033: -58,33 + 6034: -53,37 + 6052: -43,29 + 6073: -43,33 + 6094: -49,36 + 6321: 86,-20 + 6322: 86,-15 - node: color: '#FFFFFFFF' id: WarnCornerSW @@ -9200,21 +9200,21 @@ entities: color: '#845606FF' id: WarnCornerSmallNE decals: - 6858: -21,-20 - 6866: -24,-43 - 6867: -20,-43 + 6841: -21,-20 + 6849: -24,-43 + 6850: -20,-43 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 4408: 44,38 + 4397: 44,38 - node: color: '#845606FF' id: WarnCornerSmallNW decals: - 6864: -18,-43 - 6865: -22,-43 - 6950: -15,-20 + 6847: -18,-43 + 6848: -22,-43 + 6933: -15,-20 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -9224,158 +9224,158 @@ entities: color: '#845606FF' id: WarnCornerSmallSE decals: - 6874: -24,-46 - 6875: -20,-46 + 6857: -24,-46 + 6858: -20,-46 - node: color: '#B02E26FF' id: WarnCornerSmallSE decals: - 4701: 7,-14 + 4684: 7,-14 - node: color: '#845606FF' id: WarnCornerSmallSW decals: - 6859: -22,-22 - 6876: -22,-46 - 6877: -18,-46 + 6842: -22,-22 + 6859: -22,-46 + 6860: -18,-46 - node: color: '#845606FF' id: WarnEndE decals: - 6869: -20,-49 + 6852: -20,-49 - node: color: '#B02E26FF' id: WarnEndE decals: - 6270: -33,35 - 6435: -33,31 + 6253: -33,35 + 6418: -33,31 - node: color: '#B02E26FF' id: WarnEndN decals: - 6177: 4,-22 - 6438: -37,31 + 6160: 4,-22 + 6421: -37,31 - node: color: '#B02E26FF' id: WarnEndS decals: - 6178: 4,-26 - 6437: -37,29 + 6161: 4,-26 + 6420: -37,29 - node: color: '#845606FF' id: WarnEndW decals: - 6868: -22,-49 + 6851: -22,-49 - node: color: '#B02E26FF' id: WarnEndW decals: - 6269: -34,35 - 6436: -35,31 + 6252: -34,35 + 6419: -35,31 - node: color: '#B02E26FF' id: WarnFull decals: - 5522: -34,46 - 5523: -33,46 - 5524: -32,46 - 5525: -31,46 - 5526: -30,46 - 5887: 12,-23 + 5505: -34,46 + 5506: -33,46 + 5507: -32,46 + 5508: -31,46 + 5509: -30,46 + 5870: 12,-23 - node: angle: 1.5707963267948966 rad color: '#91D4FFFF' id: WarnFullGreyscale decals: - 7172: 23,2 - 7173: 23,1 + 7155: 23,2 + 7156: 23,1 - node: color: '#845606FF' id: WarnLineE decals: - 6797: -14,-42 - 6798: -14,-43 - 6799: -14,-44 - 6800: -14,-45 - 6801: -14,-46 - 6841: -20,-40 - 6842: -20,-39 - 6843: -20,-38 - 6844: -20,-37 - 6845: -20,-36 - 6846: -20,-35 - 6847: -20,-34 - 6848: -20,-33 - 6849: -20,-32 - 6850: -20,-31 - 6851: -20,-30 - 6852: -20,-29 - 6853: -20,-28 - 6861: -20,-42 - 6863: -24,-42 - 6872: -24,-47 - 6873: -20,-47 + 6780: -14,-42 + 6781: -14,-43 + 6782: -14,-44 + 6783: -14,-45 + 6784: -14,-46 + 6824: -20,-40 + 6825: -20,-39 + 6826: -20,-38 + 6827: -20,-37 + 6828: -20,-36 + 6829: -20,-35 + 6830: -20,-34 + 6831: -20,-33 + 6832: -20,-32 + 6833: -20,-31 + 6834: -20,-30 + 6835: -20,-29 + 6836: -20,-28 + 6844: -20,-42 + 6846: -24,-42 + 6855: -24,-47 + 6856: -20,-47 - node: color: '#B02E26FF' id: WarnLineE decals: - 5520: -7,63 - 5521: -7,64 - 5561: -23,50 - 5562: -23,49 - 5888: 2,-23 - 5889: 2,-24 - 5890: 2,-25 - 5912: 8,-22 - 5913: 8,-25 - 6066: -3,68 - 6067: -3,67 - 6068: -3,66 - 6129: -11,37 - 6130: -11,36 - 6131: -11,35 - 6132: -11,34 - 6133: -11,33 - 6134: -11,32 - 6135: -11,31 - 6142: 2,42 - 6143: 2,43 - 6144: 2,44 - 6169: -2,44 - 6170: -2,43 - 6171: -2,42 - 6179: 4,-25 - 6180: 4,-24 - 6181: 4,-23 - 6194: -32,39 - 6195: -32,38 - 6321: -17,41 - 6322: -17,40 - 6420: -37,30 - 6426: -6,68 - 6427: -6,67 - 6428: -6,66 - 6429: -2,68 - 6430: -2,67 - 6431: -2,66 + 5503: -7,63 + 5504: -7,64 + 5544: -23,50 + 5545: -23,49 + 5871: 2,-23 + 5872: 2,-24 + 5873: 2,-25 + 5895: 8,-22 + 5896: 8,-25 + 6049: -3,68 + 6050: -3,67 + 6051: -3,66 + 6112: -11,37 + 6113: -11,36 + 6114: -11,35 + 6115: -11,34 + 6116: -11,33 + 6117: -11,32 + 6118: -11,31 + 6125: 2,42 + 6126: 2,43 + 6127: 2,44 + 6152: -2,44 + 6153: -2,43 + 6154: -2,42 + 6162: 4,-25 + 6163: 4,-24 + 6164: 4,-23 + 6177: -32,39 + 6178: -32,38 + 6304: -17,41 + 6305: -17,40 + 6403: -37,30 + 6409: -6,68 + 6410: -6,67 + 6411: -6,66 + 6412: -2,68 + 6413: -2,67 + 6414: -2,66 - node: color: '#BA8841FF' id: WarnLineE decals: - 6040: -57,36 - 6041: -57,35 - 6042: -57,34 - 6046: -52,34 - 6047: -46,31 - 6071: -42,30 - 6089: -42,34 - 6327: 77,-18 - 6328: 77,-17 - 6329: 77,-16 - 6330: 91,-12 - 6331: 91,-13 - 6332: 91,-21 - 6333: 91,-22 + 6023: -57,36 + 6024: -57,35 + 6025: -57,34 + 6029: -52,34 + 6030: -46,31 + 6054: -42,30 + 6072: -42,34 + 6310: 77,-18 + 6311: 77,-17 + 6312: 77,-16 + 6313: 91,-12 + 6314: 91,-13 + 6315: 91,-21 + 6316: 91,-22 - node: color: '#FFFFFFFF' id: WarnLineE @@ -9389,175 +9389,175 @@ entities: 2448: -65,-18 2449: -65,-16 2450: -65,-15 - 4405: 44,39 - 4406: 44,40 - 5757: 88,-22 - 5758: 88,-21 - 5759: 88,-13 - 5760: 88,-12 + 4394: 44,39 + 4395: 44,40 + 5740: 88,-22 + 5741: 88,-21 + 5742: 88,-13 + 5743: 88,-12 - node: color: '#91D4FFFF' id: WarnLineGreyscaleE decals: - 6019: 33,3 - 6020: 33,2 - 6021: 33,1 - 7065: 32,9 - 7066: 32,10 - 7079: 28,1 - 7080: 28,2 + 6002: 33,3 + 6003: 33,2 + 6004: 33,1 + 7048: 32,9 + 7049: 32,10 + 7062: 28,1 + 7063: 28,2 - node: color: '#91D4FFFF' id: WarnLineGreyscaleN decals: - 7008: 30,3 - 7009: 31,3 - 7015: 12,18 - 7016: 13,18 - 7017: 14,18 - 7018: 15,18 - 7019: 16,18 - 7020: 10,17 - 7021: 9,17 - 7022: 8,17 - 7027: 18,17 - 7030: 19,17 - 7031: 20,17 - 7061: 26,10 - 7062: 27,10 - 7063: 28,10 - 7073: 25,3 - 7074: 26,3 - 7075: 27,3 + 6991: 30,3 + 6992: 31,3 + 6998: 12,18 + 6999: 13,18 + 7000: 14,18 + 7001: 15,18 + 7002: 16,18 + 7003: 10,17 + 7004: 9,17 + 7005: 8,17 + 7010: 18,17 + 7013: 19,17 + 7014: 20,17 + 7044: 26,10 + 7045: 27,10 + 7046: 28,10 + 7056: 25,3 + 7057: 26,3 + 7058: 27,3 - node: color: '#91D4FFFF' id: WarnLineGreyscaleS decals: - 7010: 12,17 - 7011: 13,17 - 7012: 14,17 - 7013: 15,17 - 7014: 16,17 - 7023: 8,17 - 7024: 9,17 - 7025: 10,17 - 7026: 18,17 - 7028: 19,17 - 7029: 20,17 - 7076: 25,0 - 7077: 26,0 - 7078: 27,0 - 7164: 30,0 - 7165: 31,0 + 6993: 12,17 + 6994: 13,17 + 6995: 14,17 + 6996: 15,17 + 6997: 16,17 + 7006: 8,17 + 7007: 9,17 + 7008: 10,17 + 7009: 18,17 + 7011: 19,17 + 7012: 20,17 + 7059: 25,0 + 7060: 26,0 + 7061: 27,0 + 7147: 30,0 + 7148: 31,0 - node: color: '#91D4FFFF' id: WarnLineGreyscaleW decals: - 6022: 36,3 - 6023: 36,2 - 6024: 36,1 - 7071: 24,1 - 7072: 24,2 + 6005: 36,3 + 6006: 36,2 + 6007: 36,1 + 7054: 24,1 + 7055: 24,2 - node: color: '#845606FF' id: WarnLineN decals: - 6782: -32,-47 - 6783: -31,-47 - 6784: -29,-47 - 6785: -28,-47 - 6791: -21,-49 - 6802: -14,-38 - 6803: -13,-38 - 6804: -12,-38 - 6805: -11,-38 - 6806: -10,-38 - 6807: -16,-38 - 6808: -17,-38 + 6765: -32,-47 + 6766: -31,-47 + 6767: -29,-47 + 6768: -28,-47 + 6774: -21,-49 + 6785: -14,-38 + 6786: -13,-38 + 6787: -12,-38 + 6788: -11,-38 + 6789: -10,-38 + 6790: -16,-38 + 6791: -17,-38 - node: color: '#B02E26FF' id: WarnLineN decals: - 5527: -34,47 - 5528: -33,47 - 5529: -32,47 - 5530: -31,47 - 5531: -30,47 - 5551: -28,41 - 5552: -27,41 - 5553: -26,41 - 5568: -23,41 - 5569: -22,41 - 5570: -21,41 - 5571: -31,28 - 5572: -30,28 - 5573: -29,28 - 5574: -28,28 - 5575: -27,28 - 5576: -26,28 - 5577: -25,28 - 5683: -28,44 - 5684: -27,44 - 5685: -26,44 - 5686: -25,44 - 5687: -24,44 - 5688: -23,44 - 5689: -22,44 - 5690: -21,44 - 5691: -20,44 - 5692: -19,44 - 5693: -18,44 - 5694: -17,44 - 5695: -16,44 - 5884: 13,-24 - 5885: 14,-24 - 5886: 15,-24 - 5904: 7,-26 - 5918: 14,-25 - 6192: -31,40 - 6193: -30,40 - 6196: -21,37 - 6197: -22,37 - 6198: -24,37 - 6199: -25,37 - 6200: -27,37 - 6201: -30,37 - 6202: -31,37 - 6207: -34,54 - 6208: -33,54 - 6209: -32,54 - 6210: -31,54 - 6211: -30,54 - 6250: -23,60 - 6251: -22,60 - 6252: -21,60 - 6287: -30,24 - 6288: -26,24 - 6289: -26,31 - 6290: -30,31 - 6291: -30,33 - 6292: -26,33 - 6297: -30,26 - 6298: -26,26 - 6299: -26,31 - 6300: -30,31 - 6311: -23,33 - 6312: -22,33 - 6313: -21,33 - 6314: -19,33 - 6315: -18,33 - 6316: -17,33 - 6318: -18,39 - 6421: -34,31 + 5510: -34,47 + 5511: -33,47 + 5512: -32,47 + 5513: -31,47 + 5514: -30,47 + 5534: -28,41 + 5535: -27,41 + 5536: -26,41 + 5551: -23,41 + 5552: -22,41 + 5553: -21,41 + 5554: -31,28 + 5555: -30,28 + 5556: -29,28 + 5557: -28,28 + 5558: -27,28 + 5559: -26,28 + 5560: -25,28 + 5666: -28,44 + 5667: -27,44 + 5668: -26,44 + 5669: -25,44 + 5670: -24,44 + 5671: -23,44 + 5672: -22,44 + 5673: -21,44 + 5674: -20,44 + 5675: -19,44 + 5676: -18,44 + 5677: -17,44 + 5678: -16,44 + 5867: 13,-24 + 5868: 14,-24 + 5869: 15,-24 + 5887: 7,-26 + 5901: 14,-25 + 6175: -31,40 + 6176: -30,40 + 6179: -21,37 + 6180: -22,37 + 6181: -24,37 + 6182: -25,37 + 6183: -27,37 + 6184: -30,37 + 6185: -31,37 + 6190: -34,54 + 6191: -33,54 + 6192: -32,54 + 6193: -31,54 + 6194: -30,54 + 6233: -23,60 + 6234: -22,60 + 6235: -21,60 + 6270: -30,24 + 6271: -26,24 + 6272: -26,31 + 6273: -30,31 + 6274: -30,33 + 6275: -26,33 + 6280: -30,26 + 6281: -26,26 + 6282: -26,31 + 6283: -30,31 + 6294: -23,33 + 6295: -22,33 + 6296: -21,33 + 6297: -19,33 + 6298: -18,33 + 6299: -17,33 + 6301: -18,39 + 6404: -34,31 - node: color: '#BA8841FF' id: WarnLineN decals: - 6061: -52,37 - 6112: -48,36 - 6113: -47,36 - 6346: 87,-15 - 6347: 87,-20 + 6044: -52,37 + 6095: -48,36 + 6096: -47,36 + 6329: 87,-15 + 6330: 87,-20 - node: color: '#FFFFFFFF' id: WarnLineN @@ -9567,97 +9567,97 @@ entities: 1556: -60,16 2018: 37,50 2019: 47,50 - 5930: -79,11 - 5931: -78,11 - 5932: -77,11 + 5913: -79,11 + 5914: -78,11 + 5915: -77,11 - node: color: '#845606FF' id: WarnLineS decals: - 6792: -14,-42 - 6793: -14,-43 - 6794: -14,-44 - 6795: -14,-45 - 6796: -14,-46 - 6824: -22,-23 - 6825: -22,-24 - 6826: -22,-25 - 6827: -22,-26 - 6828: -22,-28 - 6829: -22,-29 - 6830: -22,-30 - 6831: -22,-31 - 6832: -22,-32 - 6833: -22,-33 - 6834: -22,-34 - 6835: -22,-35 - 6836: -22,-36 - 6837: -22,-37 - 6838: -22,-38 - 6839: -22,-39 - 6840: -22,-40 - 6860: -22,-42 - 6862: -18,-42 - 6870: -22,-47 - 6871: -18,-47 + 6775: -14,-42 + 6776: -14,-43 + 6777: -14,-44 + 6778: -14,-45 + 6779: -14,-46 + 6807: -22,-23 + 6808: -22,-24 + 6809: -22,-25 + 6810: -22,-26 + 6811: -22,-28 + 6812: -22,-29 + 6813: -22,-30 + 6814: -22,-31 + 6815: -22,-32 + 6816: -22,-33 + 6817: -22,-34 + 6818: -22,-35 + 6819: -22,-36 + 6820: -22,-37 + 6821: -22,-38 + 6822: -22,-39 + 6823: -22,-40 + 6843: -22,-42 + 6845: -18,-42 + 6853: -22,-47 + 6854: -18,-47 - node: color: '#B02E26FF' id: WarnLineS decals: - 5518: -9,63 - 5519: -9,64 - 5559: -24,50 - 5560: -24,49 - 5891: 0,-23 - 5892: 0,-24 - 5893: 0,-25 - 5914: 6,-25 - 5915: 6,-22 - 6063: -5,68 - 6064: -5,67 - 6065: -5,66 - 6122: -12,31 - 6123: -12,32 - 6124: -12,33 - 6125: -12,34 - 6126: -12,35 - 6127: -12,36 - 6128: -12,37 - 6139: 0,42 - 6140: 0,43 - 6141: 0,44 - 6172: -3,42 - 6173: -3,43 - 6174: -3,44 - 6182: 4,-23 - 6183: 4,-24 - 6184: 4,-25 - 6203: -32,38 - 6204: -32,39 - 6319: -19,40 - 6320: -19,41 - 6419: -37,30 - 6423: -6,68 - 6424: -6,67 - 6425: -6,66 - 6432: -2,66 - 6433: -2,67 - 6434: -2,68 + 5501: -9,63 + 5502: -9,64 + 5542: -24,50 + 5543: -24,49 + 5874: 0,-23 + 5875: 0,-24 + 5876: 0,-25 + 5897: 6,-25 + 5898: 6,-22 + 6046: -5,68 + 6047: -5,67 + 6048: -5,66 + 6105: -12,31 + 6106: -12,32 + 6107: -12,33 + 6108: -12,34 + 6109: -12,35 + 6110: -12,36 + 6111: -12,37 + 6122: 0,42 + 6123: 0,43 + 6124: 0,44 + 6155: -3,42 + 6156: -3,43 + 6157: -3,44 + 6165: 4,-23 + 6166: 4,-24 + 6167: 4,-25 + 6186: -32,38 + 6187: -32,39 + 6302: -19,40 + 6303: -19,41 + 6402: -37,30 + 6406: -6,68 + 6407: -6,67 + 6408: -6,66 + 6415: -2,66 + 6416: -2,67 + 6417: -2,68 - node: color: '#BA8841FF' id: WarnLineS decals: - 6039: -53,34 - 6043: -58,34 - 6044: -58,35 - 6045: -58,36 - 6048: -50,31 - 6070: -43,30 - 6088: -43,34 - 6334: 90,-22 - 6335: 90,-21 - 6336: 90,-13 - 6337: 90,-12 + 6022: -53,34 + 6026: -58,34 + 6027: -58,35 + 6028: -58,36 + 6031: -50,31 + 6053: -43,30 + 6071: -43,34 + 6317: 90,-22 + 6318: 90,-21 + 6319: 90,-13 + 6320: 90,-12 - node: color: '#FFFFFFFF' id: WarnLineS @@ -9672,111 +9672,111 @@ entities: 2444: -66,-16 2445: -66,-18 2446: -66,-19 - 4407: 48,40 - 5946: -13,-42 - 5947: -13,-43 - 5948: -13,-44 - 5949: -13,-45 - 5950: -13,-46 - 6394: -42,10 - 6395: -42,9 - 6396: -42,8 + 4396: 48,40 + 5929: -13,-42 + 5930: -13,-43 + 5931: -13,-44 + 5932: -13,-45 + 5933: -13,-46 + 6377: -42,10 + 6378: -42,9 + 6379: -42,8 - node: color: '#845606FF' id: WarnLineW decals: - 6786: -32,-47 - 6787: -31,-47 - 6788: -29,-47 - 6789: -28,-47 - 6790: -21,-49 - 6809: -17,-38 - 6810: -16,-38 - 6811: -14,-38 - 6812: -13,-38 - 6813: -12,-38 - 6814: -11,-38 - 6815: -10,-38 - 6854: -20,-20 - 6855: -19,-20 - 6856: -17,-20 - 6857: -16,-20 + 6769: -32,-47 + 6770: -31,-47 + 6771: -29,-47 + 6772: -28,-47 + 6773: -21,-49 + 6792: -17,-38 + 6793: -16,-38 + 6794: -14,-38 + 6795: -13,-38 + 6796: -12,-38 + 6797: -11,-38 + 6798: -10,-38 + 6837: -20,-20 + 6838: -19,-20 + 6839: -17,-20 + 6840: -16,-20 - node: color: '#B02E26FF' id: WarnLineW decals: - 5419: -18,42 - 5532: -34,45 - 5533: -33,45 - 5534: -32,45 - 5535: -31,45 - 5536: -30,45 - 5554: -28,42 - 5555: -27,42 - 5556: -26,42 - 5565: -21,42 - 5566: -22,42 - 5567: -23,42 - 5578: -31,30 - 5579: -30,30 - 5580: -29,30 - 5581: -28,30 - 5582: -27,30 - 5583: -26,30 - 5584: -25,30 - 5881: 13,-22 - 5882: 14,-22 - 5883: 15,-22 - 5905: 7,-21 - 6120: -9,35 - 6121: -8,35 - 6136: -7,40 - 6137: -6,40 - 6138: -5,40 - 6185: -31,37 - 6186: -30,37 - 6187: -27,37 - 6188: -25,37 - 6189: -24,37 - 6190: -22,37 - 6191: -21,37 - 6205: -31,40 - 6206: -30,40 - 6212: -34,52 - 6213: -33,52 - 6214: -32,52 - 6215: -31,52 - 6216: -30,52 - 6253: -23,61 - 6254: -22,61 - 6255: -21,61 - 6293: -30,25 - 6294: -26,25 - 6295: -30,27 - 6296: -26,27 - 6301: -30,32 - 6302: -26,32 - 6303: -30,34 - 6304: -26,34 - 6305: -23,34 - 6306: -22,34 - 6307: -21,34 - 6308: -19,34 - 6309: -18,34 - 6310: -17,34 - 6317: -7,35 - 6422: -34,31 + 5402: -18,42 + 5515: -34,45 + 5516: -33,45 + 5517: -32,45 + 5518: -31,45 + 5519: -30,45 + 5537: -28,42 + 5538: -27,42 + 5539: -26,42 + 5548: -21,42 + 5549: -22,42 + 5550: -23,42 + 5561: -31,30 + 5562: -30,30 + 5563: -29,30 + 5564: -28,30 + 5565: -27,30 + 5566: -26,30 + 5567: -25,30 + 5864: 13,-22 + 5865: 14,-22 + 5866: 15,-22 + 5888: 7,-21 + 6103: -9,35 + 6104: -8,35 + 6119: -7,40 + 6120: -6,40 + 6121: -5,40 + 6168: -31,37 + 6169: -30,37 + 6170: -27,37 + 6171: -25,37 + 6172: -24,37 + 6173: -22,37 + 6174: -21,37 + 6188: -31,40 + 6189: -30,40 + 6195: -34,52 + 6196: -33,52 + 6197: -32,52 + 6198: -31,52 + 6199: -30,52 + 6236: -23,61 + 6237: -22,61 + 6238: -21,61 + 6276: -30,25 + 6277: -26,25 + 6278: -30,27 + 6279: -26,27 + 6284: -30,32 + 6285: -26,32 + 6286: -30,34 + 6287: -26,34 + 6288: -23,34 + 6289: -22,34 + 6290: -21,34 + 6291: -19,34 + 6292: -18,34 + 6293: -17,34 + 6300: -7,35 + 6405: -34,31 - node: color: '#BA8841FF' id: WarnLineW decals: - 6062: -52,38 - 6114: -48,37 - 6115: -47,37 - 6116: -63,13 - 6117: -62,13 - 6348: 87,-19 - 6349: 87,-14 + 6045: -52,38 + 6097: -48,37 + 6098: -47,37 + 6099: -63,13 + 6100: -62,13 + 6331: 87,-19 + 6332: 87,-14 - node: color: '#FFFFFFFF' id: WarnLineW @@ -9793,99 +9793,99 @@ entities: 2016: 46,57 2017: 37,52 2020: 47,52 - 4409: 45,38 - 4410: 46,38 - 5927: -79,14 - 5928: -78,14 - 5929: -77,14 + 4398: 45,38 + 4399: 46,38 + 5910: -79,14 + 5911: -78,14 + 5912: -77,14 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 6527: -1,0 - 6528: 6,0 - 6529: 6,7 - 6530: -1,7 + 6510: -1,0 + 6511: 6,0 + 6512: 6,7 + 6513: -1,7 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 6531: -4,7 - 6532: 4,7 - 6533: 3,0 - 6534: -4,0 + 6514: -4,7 + 6515: 4,7 + 6516: 3,0 + 6517: -4,0 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 6519: -1,4 - 6520: 6,-3 - 6521: -1,-3 - 6522: 6,5 + 6502: -1,4 + 6503: 6,-3 + 6504: -1,-3 + 6505: 6,5 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 6523: -4,-3 - 6524: -4,4 - 6525: 4,5 - 6526: 3,-3 + 6506: -4,-3 + 6507: -4,4 + 6508: 4,5 + 6509: 3,-3 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 5940: -13,-44 + 5923: -13,-44 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 5938: -13,-43 - 5939: -13,-42 - 6542: -1,-1 - 6543: -1,-2 - 6544: 6,-1 - 6545: 6,-2 - 6546: 6,6 - 6547: -1,6 - 6548: -1,5 + 5921: -13,-43 + 5922: -13,-42 + 6525: -1,-1 + 6526: -1,-2 + 6527: 6,-1 + 6528: 6,-2 + 6529: 6,6 + 6530: -1,6 + 6531: -1,5 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 5933: -12,-44 - 5934: -11,-44 - 5935: -10,-44 - 5936: -9,-44 - 5937: -8,-44 - 6535: -3,0 - 6536: -2,0 - 6537: 4,0 - 6538: 5,0 - 6539: 5,7 - 6540: -2,7 - 6541: -3,7 + 5916: -12,-44 + 5917: -11,-44 + 5918: -10,-44 + 5919: -9,-44 + 5920: -8,-44 + 6518: -3,0 + 6519: -2,0 + 6520: 4,0 + 6521: 5,0 + 6522: 5,7 + 6523: -2,7 + 6524: -3,7 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 6549: -3,-3 - 6550: -2,-3 - 6551: 4,-3 - 6552: 5,-3 - 6553: 5,5 - 6554: -2,4 - 6555: -3,4 + 6532: -3,-3 + 6533: -2,-3 + 6534: 4,-3 + 6535: 5,-3 + 6536: 5,5 + 6537: -2,4 + 6538: -3,4 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 6556: -4,-2 - 6557: -4,-1 - 6558: -4,5 - 6559: -4,6 - 6560: 4,6 - 6561: 3,-2 - 6562: 3,-1 + 6539: -4,-2 + 6540: -4,-1 + 6541: -4,5 + 6542: -4,6 + 6543: 4,6 + 6544: 3,-2 + 6545: 3,-1 - node: angle: -0.2617993877991494 rad color: '#9F0000FF' @@ -9902,9 +9902,9 @@ entities: color: '#000000FF' id: clawprint decals: - 4773: 76.23013,83.76755 - 4774: 76.38638,84.08786 - 4775: 76.15201,84.322235 + 4756: 76.23013,83.76755 + 4757: 76.38638,84.08786 + 4758: 76.15201,84.322235 - node: cleanable: True angle: -0.5061454830783556 rad @@ -10006,15 +10006,15 @@ entities: color: '#181719FF' id: i decals: - 4776: 76.73013,84.90036 - 4777: 76.862946,84.759735 - 4778: 77.00357,84.77536 - 4779: 76.02701,82.540985 - 4780: 76.12076,82.33786 - 4781: 76.27701,82.50192 - 4782: 78.10513,84.21286 - 4783: 78.175446,84.0488 - 4784: 78.331696,84.22067 + 4759: 76.73013,84.90036 + 4760: 76.862946,84.759735 + 4761: 77.00357,84.77536 + 4762: 76.02701,82.540985 + 4763: 76.12076,82.33786 + 4764: 76.27701,82.50192 + 4765: 78.10513,84.21286 + 4766: 78.175446,84.0488 + 4767: 78.331696,84.22067 - node: angle: -0.2617993877991494 rad color: '#9F0000FF' @@ -10102,43 +10102,43 @@ entities: color: '#5D0000FF' id: splatter decals: - 4588: -17.416376,-1.2267087 - 4589: -17.072626,-1.4142087 + 4577: -17.416376,-1.2267087 + 4578: -17.072626,-1.4142087 - node: cleanable: True color: '#7A0000FF' id: splatter decals: - 4586: -17.260126,-1.3907712 - 4587: -17.650751,-1.3907712 + 4575: -17.260126,-1.3907712 + 4576: -17.650751,-1.3907712 - node: cleanable: True color: '#7C1719FF' id: splatter decals: - 4790: 75.44107,83.09567 - 4791: 78.12857,85.478485 - 4792: 78.66763,85.37692 - 4793: 81.664444,83.50258 - 4794: 81.81288,83.87758 - 4795: 82.08632,83.68227 - 4796: 81.40663,83.67445 - 4797: 82.52382,83.54164 - 4798: 82.62538,83.77602 - 4799: 79.74257,85.41664 - 4800: 80.226944,85.60414 - 4801: 79.70351,83.58852 + 4773: 75.44107,83.09567 + 4774: 78.12857,85.478485 + 4775: 78.66763,85.37692 + 4776: 81.664444,83.50258 + 4777: 81.81288,83.87758 + 4778: 82.08632,83.68227 + 4779: 81.40663,83.67445 + 4780: 82.52382,83.54164 + 4781: 82.62538,83.77602 + 4782: 79.74257,85.41664 + 4783: 80.226944,85.60414 + 4784: 79.70351,83.58852 - node: cleanable: True color: '#930000FF' id: splatter decals: - 4580: -17.797201,-1.5470212 - 4581: -17.469076,-1.2892087 - 4582: -16.719076,-1.6485837 - 4583: -17.500326,-2.7657712 - 4584: -17.187826,-1.6407712 - 4585: -17.500326,-1.8204587 + 4569: -17.797201,-1.5470212 + 4570: -17.469076,-1.2892087 + 4571: -16.719076,-1.6485837 + 4572: -17.500326,-2.7657712 + 4573: -17.187826,-1.6407712 + 4574: -17.500326,-1.8204587 - node: angle: -0.2617993877991494 rad color: '#9F0000FF' @@ -10175,22 +10175,22 @@ entities: color: '#A51719FF' id: splatter decals: - 4802: 79.90663,83.69789 - 4803: 81.758194,84.09633 - 4804: 79.68788,85.7682 - 4805: 82.414444,83.47133 - 4806: 81.96913,83.16664 - 4807: 82.539444,84.12758 + 4785: 79.90663,83.69789 + 4786: 81.758194,84.09633 + 4787: 79.68788,85.7682 + 4788: 82.414444,83.47133 + 4789: 81.96913,83.16664 + 4790: 82.539444,84.12758 - node: cleanable: True color: '#A91719FF' id: splatter decals: - 4785: 77.800446,85.4863 - 4786: 78.25357,85.21286 - 4787: 78.56607,85.61911 - 4788: 75.52701,83.43942 - 4789: 75.66763,83.09567 + 4768: 77.800446,85.4863 + 4769: 78.25357,85.21286 + 4770: 78.56607,85.61911 + 4771: 75.52701,83.43942 + 4772: 75.66763,83.09567 - node: cleanable: True angle: -0.15707963267948966 rad @@ -10246,7 +10246,7 @@ entities: color: '#FFFFFFFF' id: w decals: - 5461: 82,34 + 5444: 82,34 - type: RadiationGridResistance - type: GridAtmosphere version: 2 @@ -14858,6 +14858,7 @@ entities: name: map 100 - type: Transform - type: Map + mapPaused: True - type: PhysicsMap - type: GridTree - type: MovedGrids @@ -14951,8 +14952,6 @@ entities: - 28654 - 31773 - 28485 - - type: AtmosDevice - joinedGrid: 2 - uid: 22 components: - type: Transform @@ -14965,8 +14964,6 @@ entities: - 22115 - 26414 - 28364 - - type: AtmosDevice - joinedGrid: 2 - uid: 69 components: - type: Transform @@ -14988,8 +14985,6 @@ entities: - 7530 - 7889 - 5062 - - type: AtmosDevice - joinedGrid: 2 - uid: 398 components: - type: Transform @@ -15006,8 +15001,6 @@ entities: - 6498 - 3349 - 6493 - - type: AtmosDevice - joinedGrid: 2 - uid: 400 components: - type: Transform @@ -15026,8 +15019,6 @@ entities: - 6614 - 23230 - 6754 - - type: AtmosDevice - joinedGrid: 2 - uid: 792 components: - type: Transform @@ -15044,8 +15035,6 @@ entities: - 4614 - 20189 - 12060 - - type: AtmosDevice - joinedGrid: 2 - uid: 1256 components: - type: Transform @@ -15057,8 +15046,6 @@ entities: - 1257 - 4265 - 1254 - - type: AtmosDevice - joinedGrid: 2 - uid: 1320 components: - type: Transform @@ -15081,15 +15068,11 @@ entities: - 17737 - 28211 - 7610 - - type: AtmosDevice - joinedGrid: 2 - uid: 1655 components: - type: Transform pos: 34.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 1690 components: - type: Transform @@ -15124,8 +15107,6 @@ entities: - 38929 - 38927 - 38928 - - type: AtmosDevice - joinedGrid: 2 - uid: 2285 components: - type: Transform @@ -15136,8 +15117,6 @@ entities: - 2310 - 1255 - 1253 - - type: AtmosDevice - joinedGrid: 2 - uid: 2594 components: - type: Transform @@ -15162,8 +15141,6 @@ entities: - 13002 - 2462 - 30719 - - type: AtmosDevice - joinedGrid: 2 - uid: 3405 components: - type: Transform @@ -15177,8 +15154,6 @@ entities: - 28430 - 4631 - 10351 - - type: AtmosDevice - joinedGrid: 2 - uid: 3525 components: - type: Transform @@ -15195,8 +15170,6 @@ entities: - 10351 - 4631 - 4548 - - type: AtmosDevice - joinedGrid: 2 - uid: 3897 components: - type: Transform @@ -15210,8 +15183,6 @@ entities: - 28301 - 28302 - 6493 - - type: AtmosDevice - joinedGrid: 2 - uid: 4313 components: - type: Transform @@ -15226,8 +15197,6 @@ entities: - 3092 - 1691 - 28394 - - type: AtmosDevice - joinedGrid: 2 - uid: 4870 components: - type: Transform @@ -15240,8 +15209,6 @@ entities: - 38832 - 38833 - 38831 - - type: AtmosDevice - joinedGrid: 2 - uid: 6114 components: - type: Transform @@ -15259,8 +15226,6 @@ entities: - 28529 - 28537 - 28513 - - type: AtmosDevice - joinedGrid: 2 - uid: 6298 components: - type: Transform @@ -15272,8 +15237,6 @@ entities: - 26232 - 28436 - 27271 - - type: AtmosDevice - joinedGrid: 2 - uid: 6715 components: - type: Transform @@ -15295,8 +15258,6 @@ entities: - 26633 - 17693 - 6614 - - type: AtmosDevice - joinedGrid: 2 - uid: 7120 components: - type: Transform @@ -15310,8 +15271,6 @@ entities: - 20795 - 1729 - 16553 - - type: AtmosDevice - joinedGrid: 2 - uid: 7552 components: - type: Transform @@ -15327,8 +15286,6 @@ entities: - 28585 - 2006 - 2007 - - type: AtmosDevice - joinedGrid: 2 - uid: 8213 components: - type: Transform @@ -15339,8 +15296,6 @@ entities: - 21970 - 1260 - 8664 - - type: AtmosDevice - joinedGrid: 2 - uid: 9212 components: - type: Transform @@ -15355,8 +15310,6 @@ entities: - 37412 - 37407 - 28434 - - type: AtmosDevice - joinedGrid: 2 - uid: 11473 components: - type: Transform @@ -15367,8 +15320,6 @@ entities: - 4848 - 1259 - 16497 - - type: AtmosDevice - joinedGrid: 2 - uid: 12404 components: - type: Transform @@ -15384,8 +15335,6 @@ entities: - 38182 - 38221 - 28368 - - type: AtmosDevice - joinedGrid: 2 - uid: 12411 components: - type: Transform @@ -15399,8 +15348,6 @@ entities: - 4778 - 4814 - 5959 - - type: AtmosDevice - joinedGrid: 2 - uid: 15850 components: - type: Transform @@ -15421,8 +15368,6 @@ entities: - 25859 - 25858 - 26032 - - type: AtmosDevice - joinedGrid: 2 - uid: 17901 components: - type: Transform @@ -15450,8 +15395,6 @@ entities: - 27008 - 27497 - 583 - - type: AtmosDevice - joinedGrid: 2 - uid: 18239 components: - type: Transform @@ -15462,8 +15405,6 @@ entities: devices: - 18278 - 19759 - - type: AtmosDevice - joinedGrid: 2 - uid: 18513 components: - type: Transform @@ -15477,8 +15418,6 @@ entities: - 28426 - 37892 - 37893 - - type: AtmosDevice - joinedGrid: 2 - uid: 19822 components: - type: Transform @@ -15493,8 +15432,6 @@ entities: - 28414 - 19729 - 4814 - - type: AtmosDevice - joinedGrid: 2 - uid: 20000 components: - type: Transform @@ -15510,8 +15447,6 @@ entities: - 28342 - 15267 - 15103 - - type: AtmosDevice - joinedGrid: 2 - uid: 20237 components: - type: Transform @@ -15532,8 +15467,6 @@ entities: - 28392 - 28654 - 28588 - - type: AtmosDevice - joinedGrid: 2 - uid: 21100 components: - type: Transform @@ -15552,8 +15485,6 @@ entities: - 23698 - 26212 - 15376 - - type: AtmosDevice - joinedGrid: 2 - uid: 21934 components: - type: Transform @@ -15569,8 +15500,6 @@ entities: - 28397 - 28396 - 28402 - - type: AtmosDevice - joinedGrid: 2 - uid: 22045 components: - type: Transform @@ -15587,8 +15516,6 @@ entities: - 26835 - 28607 - 26376 - - type: AtmosDevice - joinedGrid: 2 - uid: 22060 components: - type: Transform @@ -15604,8 +15531,6 @@ entities: - 27483 - 28755 - 28627 - - type: AtmosDevice - joinedGrid: 2 - uid: 22065 components: - type: Transform @@ -15617,8 +15542,6 @@ entities: - 8417 - 8416 - 4243 - - type: AtmosDevice - joinedGrid: 2 - uid: 22157 components: - type: Transform @@ -15637,8 +15560,6 @@ entities: - 28487 - 28383 - 28382 - - type: AtmosDevice - joinedGrid: 2 - uid: 22291 components: - type: Transform @@ -15655,8 +15576,6 @@ entities: - 19652 - 28598 - 28597 - - type: AtmosDevice - joinedGrid: 2 - uid: 23688 components: - type: Transform @@ -15670,8 +15589,6 @@ entities: - 7192 - 27252 - 28110 - - type: AtmosDevice - joinedGrid: 2 - uid: 23798 components: - type: Transform @@ -15681,8 +15598,6 @@ entities: - type: DeviceList devices: - 23802 - - type: AtmosDevice - joinedGrid: 2 - uid: 23957 components: - type: Transform @@ -15696,8 +15611,6 @@ entities: - 28501 - 28500 - 28488 - - type: AtmosDevice - joinedGrid: 2 - uid: 25098 components: - type: Transform @@ -15712,8 +15625,6 @@ entities: - 28333 - 6966 - 25186 - - type: AtmosDevice - joinedGrid: 2 - uid: 25103 components: - type: Transform @@ -15724,8 +15635,6 @@ entities: devices: - 28615 - 28359 - - type: AtmosDevice - joinedGrid: 2 - uid: 25112 components: - type: Transform @@ -15741,8 +15650,6 @@ entities: - 26257 - 23698 - 25186 - - type: AtmosDevice - joinedGrid: 2 - uid: 25115 components: - type: Transform @@ -15756,8 +15663,6 @@ entities: - 28393 - 14205 - 2458 - - type: AtmosDevice - joinedGrid: 2 - uid: 25133 components: - type: Transform @@ -15772,8 +15677,6 @@ entities: - 26354 - 28348 - 24887 - - type: AtmosDevice - joinedGrid: 2 - uid: 25136 components: - type: Transform @@ -15785,8 +15688,6 @@ entities: - 28347 - 28348 - 28365 - - type: AtmosDevice - joinedGrid: 2 - uid: 25158 components: - type: Transform @@ -15812,8 +15713,6 @@ entities: - 28382 - 25770 - 25821 - - type: AtmosDevice - joinedGrid: 2 - uid: 25166 components: - type: Transform @@ -15830,8 +15729,6 @@ entities: - 26067 - 25757 - 34366 - - type: AtmosDevice - joinedGrid: 2 - uid: 25185 components: - type: Transform @@ -15865,8 +15762,6 @@ entities: - 28378 - 25632 - 11644 - - type: AtmosDevice - joinedGrid: 2 - uid: 25190 components: - type: Transform @@ -15890,8 +15785,6 @@ entities: - 27455 - 28382 - 28383 - - type: AtmosDevice - joinedGrid: 2 - uid: 25191 components: - type: Transform @@ -15909,8 +15802,6 @@ entities: - 28389 - 24315 - 27511 - - type: AtmosDevice - joinedGrid: 2 - uid: 25192 components: - type: Transform @@ -15923,8 +15814,6 @@ entities: - 26121 - 28389 - 26122 - - type: AtmosDevice - joinedGrid: 2 - uid: 25193 components: - type: Transform @@ -15939,8 +15828,6 @@ entities: - 28387 - 26129 - 26128 - - type: AtmosDevice - joinedGrid: 2 - uid: 25195 components: - type: Transform @@ -15958,8 +15845,6 @@ entities: - 28588 - 26035 - 8821 - - type: AtmosDevice - joinedGrid: 2 - uid: 25196 components: - type: Transform @@ -15986,8 +15871,6 @@ entities: - 28525 - 25727 - 26014 - - type: AtmosDevice - joinedGrid: 2 - uid: 25197 components: - type: Transform @@ -15999,8 +15882,6 @@ entities: - 14170 - 14173 - 28526 - - type: AtmosDevice - joinedGrid: 2 - uid: 25198 components: - type: Transform @@ -16016,8 +15897,6 @@ entities: - 28523 - 25742 - 26036 - - type: AtmosDevice - joinedGrid: 2 - uid: 25199 components: - type: Transform @@ -16031,8 +15910,6 @@ entities: - 25835 - 25834 - 28522 - - type: AtmosDevice - joinedGrid: 2 - uid: 25201 components: - type: Transform @@ -16046,8 +15923,6 @@ entities: - 28526 - 38808 - 38809 - - type: AtmosDevice - joinedGrid: 2 - uid: 25204 components: - type: Transform @@ -16062,8 +15937,6 @@ entities: - 2006 - 2008 - 2009 - - type: AtmosDevice - joinedGrid: 2 - uid: 25205 components: - type: Transform @@ -16078,8 +15951,6 @@ entities: - 28567 - 28586 - 28585 - - type: AtmosDevice - joinedGrid: 2 - uid: 25206 components: - type: Transform @@ -16100,8 +15971,6 @@ entities: - 25310 - 1871 - 1870 - - type: AtmosDevice - joinedGrid: 2 - uid: 25221 components: - type: Transform @@ -16117,8 +15986,6 @@ entities: - 23698 - 25186 - 28393 - - type: AtmosDevice - joinedGrid: 2 - uid: 25222 components: - type: Transform @@ -16133,8 +16000,6 @@ entities: - 8763 - 23698 - 25186 - - type: AtmosDevice - joinedGrid: 2 - uid: 25223 components: - type: Transform @@ -16161,8 +16026,6 @@ entities: - 3834 - 27503 - 15936 - - type: AtmosDevice - joinedGrid: 2 - uid: 25224 components: - type: Transform @@ -16184,8 +16047,6 @@ entities: - 24887 - 13354 - 13378 - - type: AtmosDevice - joinedGrid: 2 - uid: 25229 components: - type: Transform @@ -16201,8 +16062,6 @@ entities: - 27441 - 13136 - 19972 - - type: AtmosDevice - joinedGrid: 2 - uid: 25231 components: - type: Transform @@ -16218,8 +16077,6 @@ entities: - 28362 - 26372 - 317 - - type: AtmosDevice - joinedGrid: 2 - uid: 25232 components: - type: Transform @@ -16232,8 +16089,6 @@ entities: - 26372 - 28615 - 28361 - - type: AtmosDevice - joinedGrid: 2 - uid: 25233 components: - type: Transform @@ -16247,8 +16102,6 @@ entities: - 7753 - 28615 - 28360 - - type: AtmosDevice - joinedGrid: 2 - uid: 25234 components: - type: Transform @@ -16267,8 +16120,6 @@ entities: - 25636 - 26013 - 28713 - - type: AtmosDevice - joinedGrid: 2 - uid: 25236 components: - type: Transform @@ -16282,8 +16133,6 @@ entities: - 28358 - 28357 - 28367 - - type: AtmosDevice - joinedGrid: 2 - uid: 25239 components: - type: Transform @@ -16304,8 +16153,6 @@ entities: - 26872 - 5676 - 25655 - - type: AtmosDevice - joinedGrid: 2 - uid: 25240 components: - type: Transform @@ -16322,8 +16169,6 @@ entities: - 28368 - 28375 - 1518 - - type: AtmosDevice - joinedGrid: 2 - uid: 25241 components: - type: Transform @@ -16335,8 +16180,6 @@ entities: - 27152 - 27149 - 28374 - - type: AtmosDevice - joinedGrid: 2 - uid: 25243 components: - type: Transform @@ -16353,8 +16196,6 @@ entities: - 21918 - 777 - 28395 - - type: AtmosDevice - joinedGrid: 2 - uid: 25244 components: - type: Transform @@ -16379,8 +16220,6 @@ entities: - 28392 - 28338 - 3605 - - type: AtmosDevice - joinedGrid: 2 - uid: 25246 components: - type: Transform @@ -16406,8 +16245,6 @@ entities: - 25213 - 27493 - 24007 - - type: AtmosDevice - joinedGrid: 2 - uid: 25247 components: - type: Transform @@ -16441,8 +16278,6 @@ entities: - 25781 - 25780 - 26137 - - type: AtmosDevice - joinedGrid: 2 - uid: 25248 components: - type: Transform @@ -16471,8 +16306,6 @@ entities: - 271 - 12292 - 20931 - - type: AtmosDevice - joinedGrid: 2 - uid: 25250 components: - type: Transform @@ -16489,8 +16322,6 @@ entities: - 28414 - 24173 - 27123 - - type: AtmosDevice - joinedGrid: 2 - uid: 25251 components: - type: Transform @@ -16510,8 +16341,6 @@ entities: - 27484 - 28412 - 29289 - - type: AtmosDevice - joinedGrid: 2 - uid: 25256 components: - type: Transform @@ -16531,8 +16360,6 @@ entities: - 25793 - 26211 - 271 - - type: AtmosDevice - joinedGrid: 2 - uid: 25261 components: - type: Transform @@ -16555,8 +16382,6 @@ entities: - 6739 - 28258 - 22858 - - type: AtmosDevice - joinedGrid: 2 - uid: 25263 components: - type: Transform @@ -16570,8 +16395,6 @@ entities: - 28476 - 28755 - 28627 - - type: AtmosDevice - joinedGrid: 2 - uid: 25264 components: - type: Transform @@ -16584,8 +16407,6 @@ entities: - 27295 - 27294 - 28790 - - type: AtmosDevice - joinedGrid: 2 - uid: 25265 components: - type: Transform @@ -16598,8 +16419,6 @@ entities: - 27293 - 27296 - 28790 - - type: AtmosDevice - joinedGrid: 2 - uid: 25266 components: - type: Transform @@ -16613,8 +16432,6 @@ entities: - 28479 - 28790 - 28480 - - type: AtmosDevice - joinedGrid: 2 - uid: 25267 components: - type: Transform @@ -16631,8 +16448,6 @@ entities: - 101 - 27260 - 26123 - - type: AtmosDevice - joinedGrid: 2 - uid: 25274 components: - type: Transform @@ -16663,8 +16478,6 @@ entities: - 24245 - 27257 - 583 - - type: AtmosDevice - joinedGrid: 2 - uid: 25275 components: - type: Transform @@ -16680,8 +16493,6 @@ entities: - 28472 - 28790 - 28080 - - type: AtmosDevice - joinedGrid: 2 - uid: 25276 components: - type: Transform @@ -16705,8 +16516,6 @@ entities: - 39210 - 4607 - 36885 - - type: AtmosDevice - joinedGrid: 2 - uid: 25280 components: - type: Transform @@ -16722,8 +16531,6 @@ entities: - 28486 - 8659 - 6682 - - type: AtmosDevice - joinedGrid: 2 - uid: 25281 components: - type: Transform @@ -16736,8 +16543,6 @@ entities: - 27421 - 28484 - 1082 - - type: AtmosDevice - joinedGrid: 2 - uid: 25285 components: - type: Transform @@ -16764,8 +16569,6 @@ entities: - 151 - 36885 - 20931 - - type: AtmosDevice - joinedGrid: 2 - uid: 25286 components: - type: Transform @@ -16789,8 +16592,6 @@ entities: - 28420 - 28434 - 151 - - type: AtmosDevice - joinedGrid: 2 - uid: 25288 components: - type: Transform @@ -16813,8 +16614,6 @@ entities: - 39198 - 39199 - 36885 - - type: AtmosDevice - joinedGrid: 2 - uid: 25290 components: - type: Transform @@ -16829,8 +16628,6 @@ entities: - 26198 - 28392 - 28472 - - type: AtmosDevice - joinedGrid: 2 - uid: 25291 components: - type: Transform @@ -16844,8 +16641,6 @@ entities: - 27311 - 28474 - 28080 - - type: AtmosDevice - joinedGrid: 2 - uid: 25293 components: - type: Transform @@ -16865,8 +16660,6 @@ entities: - 22808 - 24737 - 25156 - - type: AtmosDevice - joinedGrid: 2 - uid: 25294 components: - type: Transform @@ -16882,8 +16675,6 @@ entities: - 28428 - 28427 - 28429 - - type: AtmosDevice - joinedGrid: 2 - uid: 25298 components: - type: Transform @@ -16916,8 +16707,6 @@ entities: - 28213 - 29085 - 29086 - - type: AtmosDevice - joinedGrid: 2 - uid: 25299 components: - type: Transform @@ -16936,8 +16725,6 @@ entities: - 28431 - 27747 - 27748 - - type: AtmosDevice - joinedGrid: 2 - uid: 25300 components: - type: Transform @@ -16953,8 +16740,6 @@ entities: - 28633 - 26698 - 25794 - - type: AtmosDevice - joinedGrid: 2 - uid: 25302 components: - type: Transform @@ -16970,8 +16755,6 @@ entities: - 28534 - 28219 - 27300 - - type: AtmosDevice - joinedGrid: 2 - uid: 25305 components: - type: Transform @@ -16984,8 +16767,6 @@ entities: - 25460 - 25459 - 28528 - - type: AtmosDevice - joinedGrid: 2 - uid: 25306 components: - type: Transform @@ -16999,8 +16780,6 @@ entities: - 25452 - 25451 - 28528 - - type: AtmosDevice - joinedGrid: 2 - uid: 25307 components: - type: Transform @@ -17021,8 +16800,6 @@ entities: - 28528 - 28512 - 28705 - - type: AtmosDevice - joinedGrid: 2 - uid: 25313 components: - type: Transform @@ -17042,8 +16819,6 @@ entities: - 28591 - 26866 - 28592 - - type: AtmosDevice - joinedGrid: 2 - uid: 25316 components: - type: Transform @@ -17072,8 +16847,6 @@ entities: - 26010 - 34114 - 3836 - - type: AtmosDevice - joinedGrid: 2 - uid: 25318 components: - type: Transform @@ -17086,15 +16859,11 @@ entities: - 28603 - 15721 - 5244 - - type: AtmosDevice - joinedGrid: 2 - uid: 25320 components: - type: Transform pos: -58.5,-32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 25321 components: - type: Transform @@ -17109,8 +16878,6 @@ entities: - 27134 - 27135 - 1518 - - type: AtmosDevice - joinedGrid: 2 - uid: 25329 components: - type: Transform @@ -17126,8 +16893,6 @@ entities: - 27108 - 27109 - 28754 - - type: AtmosDevice - joinedGrid: 2 - uid: 25333 components: - type: Transform @@ -17147,8 +16912,6 @@ entities: - 28367 - 31 - 1691 - - type: AtmosDevice - joinedGrid: 2 - uid: 25334 components: - type: Transform @@ -17167,8 +16930,6 @@ entities: - 28395 - 28396 - 3321 - - type: AtmosDevice - joinedGrid: 2 - uid: 25336 components: - type: Transform @@ -17185,8 +16946,6 @@ entities: - 3080 - 6554 - 6553 - - type: AtmosDevice - joinedGrid: 2 - uid: 25338 components: - type: Transform @@ -17199,8 +16958,6 @@ entities: - 28776 - 6554 - 27430 - - type: AtmosDevice - joinedGrid: 2 - uid: 25339 components: - type: Transform @@ -17217,8 +16974,6 @@ entities: - 28290 - 28408 - 26696 - - type: AtmosDevice - joinedGrid: 2 - uid: 25340 components: - type: Transform @@ -17229,8 +16984,6 @@ entities: - 28410 - 28619 - 3815 - - type: AtmosDevice - joinedGrid: 2 - uid: 25342 components: - type: Transform @@ -17243,8 +16996,6 @@ entities: - 25484 - 25485 - 28646 - - type: AtmosDevice - joinedGrid: 2 - uid: 25343 components: - type: Transform @@ -17264,8 +17015,6 @@ entities: - 25311 - 24253 - 24258 - - type: AtmosDevice - joinedGrid: 2 - uid: 25344 components: - type: Transform @@ -17284,8 +17033,6 @@ entities: - 25499 - 28531 - 28654 - - type: AtmosDevice - joinedGrid: 2 - uid: 25345 components: - type: Transform @@ -17306,8 +17053,6 @@ entities: - 28528 - 24263 - 941 - - type: AtmosDevice - joinedGrid: 2 - uid: 25346 components: - type: Transform @@ -17329,8 +17074,6 @@ entities: - 28646 - 34073 - 34118 - - type: AtmosDevice - joinedGrid: 2 - uid: 25347 components: - type: Transform @@ -17344,8 +17087,6 @@ entities: - 25467 - 28537 - 28528 - - type: AtmosDevice - joinedGrid: 2 - uid: 25349 components: - type: Transform @@ -17362,8 +17103,6 @@ entities: - 28490 - 28530 - 34741 - - type: AtmosDevice - joinedGrid: 2 - uid: 25700 components: - type: Transform @@ -17379,8 +17118,6 @@ entities: - 28514 - 399 - 391 - - type: AtmosDevice - joinedGrid: 2 - uid: 26091 components: - type: Transform @@ -17404,8 +17141,6 @@ entities: - 34069 - 34071 - 34104 - - type: AtmosDevice - joinedGrid: 2 - uid: 26732 components: - type: Transform @@ -17425,8 +17160,6 @@ entities: - 28367 - 3321 - 28396 - - type: AtmosDevice - joinedGrid: 2 - uid: 27411 components: - type: Transform @@ -17442,8 +17175,6 @@ entities: - 28059 - 28434 - 28420 - - type: AtmosDevice - joinedGrid: 2 - uid: 28192 components: - type: Transform @@ -17457,16 +17188,12 @@ entities: - 6760 - 28160 - 23613 - - type: AtmosDevice - joinedGrid: 2 - uid: 28658 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,53.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 28738 components: - type: Transform @@ -17481,8 +17208,6 @@ entities: - 3680 - 23698 - 25186 - - type: AtmosDevice - joinedGrid: 2 - uid: 28740 components: - type: Transform @@ -17501,8 +17226,6 @@ entities: - 28334 - 26083 - 25776 - - type: AtmosDevice - joinedGrid: 2 - uid: 28752 components: - type: Transform @@ -17519,8 +17242,6 @@ entities: - 28375 - 28394 - 26872 - - type: AtmosDevice - joinedGrid: 2 - uid: 28786 components: - type: Transform @@ -17534,8 +17255,6 @@ entities: - 28407 - 28619 - 27484 - - type: AtmosDevice - joinedGrid: 2 - uid: 29087 components: - type: Transform @@ -17552,8 +17271,6 @@ entities: - 37892 - 37893 - 37891 - - type: AtmosDevice - joinedGrid: 2 - uid: 29631 components: - type: Transform @@ -17570,8 +17287,6 @@ entities: - 2593 - 16102 - 16063 - - type: AtmosDevice - joinedGrid: 2 - uid: 30714 components: - type: Transform @@ -17610,8 +17325,6 @@ entities: - 28363 - 28364 - 28357 - - type: AtmosDevice - joinedGrid: 2 - uid: 30925 components: - type: Transform @@ -17628,8 +17341,6 @@ entities: - 28646 - 25476 - 25475 - - type: AtmosDevice - joinedGrid: 2 - uid: 31752 components: - type: Transform @@ -17650,8 +17361,6 @@ entities: - 33915 - 781 - 28484 - - type: AtmosDevice - joinedGrid: 2 - uid: 33892 components: - type: Transform @@ -17679,8 +17388,6 @@ entities: - 15931 - 31773 - 893 - - type: AtmosDevice - joinedGrid: 2 - uid: 34109 components: - type: Transform @@ -17700,8 +17407,6 @@ entities: - 30723 - 26504 - 28720 - - type: AtmosDevice - joinedGrid: 2 - uid: 34110 components: - type: Transform @@ -17716,8 +17421,6 @@ entities: - 28720 - 15618 - 3836 - - type: AtmosDevice - joinedGrid: 2 - uid: 35889 components: - type: Transform @@ -17731,8 +17434,6 @@ entities: - 15618 - 34123 - 34120 - - type: AtmosDevice - joinedGrid: 2 - uid: 36760 components: - type: Transform @@ -17755,8 +17456,6 @@ entities: - 1481 - 36885 - 1012 - - type: AtmosDevice - joinedGrid: 2 - uid: 37193 components: - type: Transform @@ -17777,8 +17476,6 @@ entities: - 12130 - 20241 - 31749 - - type: AtmosDevice - joinedGrid: 2 - uid: 37414 components: - type: Transform @@ -17790,8 +17487,6 @@ entities: - 37410 - 37407 - 37408 - - type: AtmosDevice - joinedGrid: 2 - uid: 37709 components: - type: Transform @@ -17807,8 +17502,6 @@ entities: - 28616 - 27190 - 28393 - - type: AtmosDevice - joinedGrid: 2 - uid: 38117 components: - type: Transform @@ -17827,8 +17520,6 @@ entities: - 1178 - 20931 - 1481 - - type: AtmosDevice - joinedGrid: 2 - uid: 39141 components: - type: Transform @@ -17851,8 +17542,6 @@ entities: - 28633 - 5704 - 9340 - - type: AtmosDevice - joinedGrid: 2 - proto: AirAlarmAssembly entities: - uid: 4514 @@ -17868,15 +17557,11 @@ entities: - type: Transform pos: 40.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 30175 components: - type: Transform pos: 97.5,74.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: AirlockArmoryGlassLocked entities: - uid: 26514 @@ -21885,8 +21570,6 @@ entities: deviceLists: - 34110 - 25316 - - type: AtmosDevice - joinedGrid: 2 - uid: 4243 components: - type: Transform @@ -22602,8 +22285,6 @@ entities: - 69 - 11474 - 21934 - - type: AtmosDevice - joinedGrid: 2 - uid: 28402 components: - type: Transform @@ -32137,8 +31818,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: Beaker entities: - uid: 1670 @@ -35998,20 +35677,13 @@ entities: - type: Transform pos: -35.67561,-26.36223 parent: 2 -- proto: BookChefGaming +- proto: BookHowToCookForFortySpaceman entities: - uid: 15940 components: - type: Transform pos: -54.166798,-22.214546 parent: 2 -- proto: BookDetective - entities: - - uid: 29019 - components: - - type: Transform - pos: -23.675516,-7.985937 - parent: 2 - proto: BookIanArctic entities: - uid: 4453 @@ -36026,6 +35698,13 @@ entities: - type: Transform pos: 13.321813,-5.202348 parent: 2 +- proto: BookRandomStory + entities: + - uid: 29019 + components: + - type: Transform + pos: -23.675516,-7.985937 + parent: 2 - proto: BooksBag entities: - uid: 6086 @@ -85842,8 +85521,6 @@ entities: - type: Transform pos: -39.5,48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: CargoBountyComputerCircuitboard entities: - uid: 13360 @@ -97833,18 +97510,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.463306,-3.3159504 parent: 2 -- proto: chem_master - entities: - - uid: 1026 - components: - - type: Transform - pos: 14.5,-2.5 - parent: 2 - - uid: 1656 - components: - - type: Transform - pos: 18.5,-1.5 - parent: 2 - proto: ChemDispenser entities: - uid: 6376 @@ -97903,6 +97568,18 @@ entities: - 2171 - type: PlaceableSurface isPlaceable: False +- proto: ChemMaster + entities: + - uid: 1026 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 1656 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 - proto: ChessBoard entities: - uid: 15104 @@ -102095,7 +101772,7 @@ entities: - type: Transform pos: -50.5,-11.5 parent: 2 -- proto: CrateFunPlushie +- proto: CrateFunToyBox entities: - uid: 34039 components: @@ -102384,29 +102061,21 @@ entities: - type: Transform pos: 12.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 1274 components: - type: Transform pos: 14.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 1278 components: - type: Transform pos: 16.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 38220 components: - type: Transform pos: -107.5,52.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: CryoxadoneBeakerSmall entities: - uid: 27321 @@ -115228,8 +114897,6 @@ entities: - 18373 - 18374 - 18375 - - type: AtmosDevice - joinedGrid: 2 - uid: 175 components: - type: Transform @@ -115245,8 +114912,6 @@ entities: - 3092 - 1691 - 28394 - - type: AtmosDevice - joinedGrid: 2 - uid: 1061 components: - type: Transform @@ -115263,16 +114928,12 @@ entities: - 68 - 65 - 66 - - type: AtmosDevice - joinedGrid: 2 - uid: 1277 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 2655 components: - type: Transform @@ -115286,8 +114947,6 @@ entities: - 20795 - 1729 - 16553 - - type: AtmosDevice - joinedGrid: 2 - uid: 2712 components: - type: Transform @@ -115299,16 +114958,12 @@ entities: - 2606 - 2208 - 14015 - - type: AtmosDevice - joinedGrid: 2 - uid: 4292 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4723 components: - type: Transform @@ -115318,8 +114973,6 @@ entities: - type: DeviceList devices: - 3359 - - type: AtmosDevice - joinedGrid: 2 - uid: 7606 components: - type: Transform @@ -115338,8 +114991,6 @@ entities: - 28395 - 28396 - 3321 - - type: AtmosDevice - joinedGrid: 2 - uid: 7608 components: - type: Transform @@ -115359,8 +115010,6 @@ entities: - 28367 - 3321 - 28396 - - type: AtmosDevice - joinedGrid: 2 - uid: 8994 components: - type: Transform @@ -115374,8 +115023,6 @@ entities: - 27454 - 2636 - 2634 - - type: AtmosDevice - joinedGrid: 2 - uid: 11474 components: - type: Transform @@ -115391,8 +115038,6 @@ entities: - 28397 - 28396 - 28402 - - type: AtmosDevice - joinedGrid: 2 - uid: 12403 components: - type: Transform @@ -115409,8 +115054,6 @@ entities: - 26945 - 7189 - 28374 - - type: AtmosDevice - joinedGrid: 2 - uid: 12440 components: - type: Transform @@ -115424,8 +115067,6 @@ entities: - 4778 - 4814 - 5959 - - type: AtmosDevice - joinedGrid: 2 - uid: 15932 components: - type: Transform @@ -115437,8 +115078,6 @@ entities: - 13915 - 13917 - 13918 - - type: AtmosDevice - joinedGrid: 2 - uid: 15934 components: - type: Transform @@ -115459,8 +115098,6 @@ entities: - 27456 - 27455 - 15596 - - type: AtmosDevice - joinedGrid: 2 - uid: 22791 components: - type: Transform @@ -115473,16 +115110,12 @@ entities: - 2019 - 148 - 144 - - type: AtmosDevice - joinedGrid: 2 - uid: 23619 components: - type: Transform rot: 3.141592653589793 rad pos: -95.5,17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 23668 components: - type: Transform @@ -115499,8 +115132,6 @@ entities: - 7671 - 7673 - 3834 - - type: AtmosDevice - joinedGrid: 2 - uid: 23670 components: - type: Transform @@ -115512,8 +115143,6 @@ entities: - 4242 - 3709 - 9197 - - type: AtmosDevice - joinedGrid: 2 - uid: 23672 components: - type: Transform @@ -115525,8 +115154,6 @@ entities: - 7751 - 2603 - 7753 - - type: AtmosDevice - joinedGrid: 2 - uid: 23673 components: - type: Transform @@ -115538,8 +115165,6 @@ entities: - 7748 - 7749 - 7750 - - type: AtmosDevice - joinedGrid: 2 - uid: 23674 components: - type: Transform @@ -115557,8 +115182,6 @@ entities: - 7682 - 1505 - 27441 - - type: AtmosDevice - joinedGrid: 2 - uid: 23675 components: - type: Transform @@ -115571,15 +115194,11 @@ entities: - 28750 - 28751 - 7416 - - type: AtmosDevice - joinedGrid: 2 - uid: 23679 components: - type: Transform pos: -12.5,65.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 23681 components: - type: Transform @@ -115591,8 +115210,6 @@ entities: - 18373 - 18374 - 18375 - - type: AtmosDevice - joinedGrid: 2 - uid: 23683 components: - type: Transform @@ -115603,8 +115220,6 @@ entities: devices: - 14170 - 14173 - - type: AtmosDevice - joinedGrid: 2 - uid: 23684 components: - type: Transform @@ -115621,8 +115236,6 @@ entities: - 14173 - 2681 - 14122 - - type: AtmosDevice - joinedGrid: 2 - uid: 23687 components: - type: Transform @@ -115636,8 +115249,6 @@ entities: - 4375 - 5704 - 9340 - - type: AtmosDevice - joinedGrid: 2 - uid: 23690 components: - type: Transform @@ -115646,8 +115257,6 @@ entities: - type: DeviceList devices: - 3892 - - type: AtmosDevice - joinedGrid: 2 - uid: 23692 components: - type: Transform @@ -115663,8 +115272,6 @@ entities: - 766 - 765 - 5250 - - type: AtmosDevice - joinedGrid: 2 - uid: 23697 components: - type: Transform @@ -115685,8 +115292,6 @@ entities: - 7640 - 17859 - 5723 - - type: AtmosDevice - joinedGrid: 2 - uid: 24823 components: - type: Transform @@ -115704,8 +115309,6 @@ entities: - 2015 - 2016 - 2017 - - type: AtmosDevice - joinedGrid: 2 - uid: 25202 components: - type: Transform @@ -115722,8 +115325,6 @@ entities: - 27457 - 27456 - 27455 - - type: AtmosDevice - joinedGrid: 2 - uid: 25228 components: - type: Transform @@ -115737,8 +115338,6 @@ entities: - 9552 - 1866 - 1867 - - type: AtmosDevice - joinedGrid: 2 - uid: 25235 components: - type: Transform @@ -115749,8 +115348,6 @@ entities: - 7745 - 7747 - 7746 - - type: AtmosDevice - joinedGrid: 2 - uid: 25237 components: - type: Transform @@ -115761,8 +115358,6 @@ entities: - 15596 - 15597 - 9548 - - type: AtmosDevice - joinedGrid: 2 - uid: 27414 components: - type: Transform @@ -115783,8 +115378,6 @@ entities: - 7889 - 1691 - 28396 - - type: AtmosDevice - joinedGrid: 2 - uid: 28628 components: - type: Transform @@ -115799,24 +115392,18 @@ entities: - 28421 - 28433 - 28434 - - type: AtmosDevice - joinedGrid: 2 - uid: 28629 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 28630 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 28632 components: - type: Transform @@ -115827,8 +115414,6 @@ entities: - 2251 - 5704 - 26 - - type: AtmosDevice - joinedGrid: 2 - uid: 28634 components: - type: Transform @@ -115843,8 +115428,6 @@ entities: - 3898 - 3879 - 3877 - - type: AtmosDevice - joinedGrid: 2 - uid: 28635 components: - type: Transform @@ -115859,8 +115442,6 @@ entities: - 3898 - 3879 - 3877 - - type: AtmosDevice - joinedGrid: 2 - uid: 28636 components: - type: Transform @@ -115874,8 +115455,6 @@ entities: - 3898 - 3879 - 3877 - - type: AtmosDevice - joinedGrid: 2 - uid: 28638 components: - type: Transform @@ -115896,8 +115475,6 @@ entities: - 25213 - 25212 - 25211 - - type: AtmosDevice - joinedGrid: 2 - uid: 28639 components: - type: Transform @@ -115918,8 +115495,6 @@ entities: - 154 - 148 - 144 - - type: AtmosDevice - joinedGrid: 2 - uid: 28643 components: - type: Transform @@ -115938,8 +115513,6 @@ entities: - 25211 - 25212 - 25213 - - type: AtmosDevice - joinedGrid: 2 - uid: 28648 components: - type: Transform @@ -115951,8 +115524,6 @@ entities: - 27459 - 27458 - 3438 - - type: AtmosDevice - joinedGrid: 2 - uid: 28649 components: - type: Transform @@ -115966,8 +115537,6 @@ entities: - 27460 - 27459 - 27458 - - type: AtmosDevice - joinedGrid: 2 - uid: 28650 components: - type: Transform @@ -115981,8 +115550,6 @@ entities: - 2259 - 3853 - 2203 - - type: AtmosDevice - joinedGrid: 2 - uid: 28651 components: - type: Transform @@ -115994,8 +115561,6 @@ entities: - 2259 - 2510 - 9224 - - type: AtmosDevice - joinedGrid: 2 - uid: 28652 components: - type: Transform @@ -116005,8 +115570,6 @@ entities: - type: DeviceList devices: - 4107 - - type: AtmosDevice - joinedGrid: 2 - uid: 28653 components: - type: Transform @@ -116016,8 +115579,6 @@ entities: - type: DeviceList devices: - 3906 - - type: AtmosDevice - joinedGrid: 2 - uid: 28657 components: - type: Transform @@ -116027,8 +115588,6 @@ entities: - type: DeviceList devices: - 14015 - - type: AtmosDevice - joinedGrid: 2 - uid: 28702 components: - type: Transform @@ -116048,8 +115607,6 @@ entities: - 39197 - 39198 - 39199 - - type: AtmosDevice - joinedGrid: 2 - uid: 28734 components: - type: Transform @@ -116059,8 +115616,6 @@ entities: - type: DeviceList devices: - 9083 - - type: AtmosDevice - joinedGrid: 2 - uid: 28739 components: - type: Transform @@ -116071,8 +115626,6 @@ entities: devices: - 8873 - 8874 - - type: AtmosDevice - joinedGrid: 2 - uid: 28756 components: - type: Transform @@ -116091,8 +115644,6 @@ entities: - 5194 - 3568 - 7107 - - type: AtmosDevice - joinedGrid: 2 - uid: 28780 components: - type: Transform @@ -116108,8 +115659,6 @@ entities: - 766 - 765 - 763 - - type: AtmosDevice - joinedGrid: 2 - uid: 28781 components: - type: Transform @@ -116124,8 +115673,6 @@ entities: - 28783 - 6628 - 6498 - - type: AtmosDevice - joinedGrid: 2 - uid: 28793 components: - type: Transform @@ -116147,16 +115694,12 @@ entities: - 544 - 543 - 1685 - - type: AtmosDevice - joinedGrid: 2 - uid: 29427 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: FireAxeCabinetFilled entities: - uid: 9568 @@ -124186,7 +123729,7 @@ entities: - type: Transform pos: 14.289104,71.680084 parent: 2 -- proto: FoodTacoBeef +- proto: FoodTacoShell entities: - uid: 39224 components: @@ -124305,8 +123848,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 9180 @@ -124315,40 +123856,30 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9188 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9204 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9295 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9302 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 9313 @@ -124357,8 +123888,6 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasFilterFlipped entities: - uid: 27373 @@ -124367,8 +123896,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - proto: GasMinerCarbonDioxide @@ -124379,8 +123906,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerNitrogenStationLarge entities: - uid: 9344 @@ -124389,8 +123914,6 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerOxygenStationLarge entities: - uid: 9345 @@ -124399,8 +123922,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMixerFlipped entities: - uid: 5913 @@ -124409,8 +123930,6 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5980 @@ -124419,8 +123938,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7326 @@ -124429,24 +123946,18 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10337 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10568 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 23831 components: - type: Transform @@ -124457,8 +123968,6 @@ entities: inletTwoConcentration: 0.01999998 inletOneConcentration: 0.98 targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 2 - proto: GasOutletInjector entities: - uid: 2572 @@ -124466,85 +123975,63 @@ entities: - type: Transform pos: 40.5,53.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 2573 components: - type: Transform pos: 44.5,53.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9157 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9158 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9162 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9164 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9165 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9166 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 16543 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 36574 components: - type: Transform pos: 69.5,84.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 36575 components: - type: Transform pos: 73.5,84.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasPassiveGate entities: - uid: 27144 @@ -124553,8 +124040,6 @@ entities: rot: 3.141592653589793 rad pos: -59.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasPassiveVent @@ -124564,65 +124049,47 @@ entities: - type: Transform pos: 41.5,53.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5675 components: - type: Transform pos: 43.5,53.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9156 components: - type: Transform pos: -49.5,50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9159 components: - type: Transform pos: -39.5,50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9163 components: - type: Transform pos: -47.5,50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9167 components: - type: Transform pos: -41.5,50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9168 components: - type: Transform pos: -45.5,50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9169 components: - type: Transform pos: -43.5,50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 19718 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,53.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasPipeBend entities: - uid: 772 @@ -156579,48 +156046,36 @@ entities: rot: 3.141592653589793 rad pos: 40.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 2914 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4646 components: - type: Transform rot: 1.5707963267948966 rad pos: 97.5,74.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5047 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5053 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5255 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6434 @@ -156629,95 +156084,71 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6555 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7250 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9309 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9682 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10374 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 12140 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 14891 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 18566 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 23789 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 28437 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 34653 components: - type: Transform pos: -42.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 34654 @@ -156725,8 +156156,6 @@ entities: - type: Transform pos: -41.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 34655 @@ -156734,8 +156163,6 @@ entities: - type: Transform pos: -40.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 34656 @@ -156743,8 +156170,6 @@ entities: - type: Transform pos: -39.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 34670 @@ -156753,8 +156178,6 @@ entities: rot: 3.141592653589793 rad pos: 69.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 34671 @@ -156763,8 +156186,6 @@ entities: rot: 3.141592653589793 rad pos: 70.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 34672 @@ -156773,8 +156194,6 @@ entities: rot: 3.141592653589793 rad pos: 72.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 34673 @@ -156783,8 +156202,6 @@ entities: rot: 3.141592653589793 rad pos: 73.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 36577 @@ -156793,8 +156210,6 @@ entities: rot: 1.5707963267948966 rad pos: 67.5,81.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasPressurePump entities: - uid: 2532 @@ -156802,38 +156217,28 @@ entities: - type: Transform pos: 43.5,47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 2537 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 2542 components: - type: Transform pos: 41.5,47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 3631 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4349 components: - type: Transform pos: -45.5,45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4350 components: - type: Transform @@ -156841,29 +156246,21 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 2 - uid: 4354 components: - type: Transform pos: -43.5,45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4359 components: - type: Transform pos: -41.5,45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4383 components: - type: Transform pos: -39.5,45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4965 components: - type: Transform @@ -156871,8 +156268,6 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 2 - uid: 16542 components: - type: Transform @@ -156881,8 +156276,6 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 2 - uid: 25058 components: - type: Transform @@ -156891,16 +156284,12 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 2 - uid: 34066 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasRecycler @@ -156910,8 +156299,6 @@ entities: - type: Transform pos: -60.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasThermoMachineFreezer entities: - uid: 126 @@ -156921,22 +156308,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - type: AtmosDevice - joinedGrid: 2 - uid: 9507 components: - type: Transform pos: -54.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 17015 components: - type: Transform pos: -53.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasThermoMachineFreezerEnabled entities: - uid: 24774 @@ -156944,8 +156325,6 @@ entities: - type: Transform pos: -58.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasThermoMachineHeater entities: - uid: 9508 @@ -156953,15 +156332,11 @@ entities: - type: Transform pos: -55.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9511 components: - type: Transform pos: -56.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasValve entities: - uid: 6556 @@ -156970,8 +156345,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasVentPump entities: - uid: 20 @@ -156982,8 +156355,6 @@ entities: - type: DeviceNetwork deviceLists: - 31752 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 322 @@ -156992,8 +156363,6 @@ entities: rot: 1.5707963267948966 rad pos: -86.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 376 @@ -157002,8 +156371,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 399 @@ -157015,8 +156382,6 @@ entities: - type: DeviceNetwork deviceLists: - 25700 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 782 @@ -157028,8 +156393,6 @@ entities: - type: DeviceNetwork deviceLists: - 37193 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1090 @@ -157041,8 +156404,6 @@ entities: - type: DeviceNetwork deviceLists: - 400 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1254 @@ -157053,8 +156414,6 @@ entities: - type: DeviceNetwork deviceLists: - 1256 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1429 @@ -157067,8 +156426,6 @@ entities: deviceLists: - 25333 - 27414 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2310 @@ -157080,8 +156437,6 @@ entities: - type: DeviceNetwork deviceLists: - 2285 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2458 @@ -157092,8 +156447,6 @@ entities: - type: DeviceNetwork deviceLists: - 25115 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3511 @@ -157105,8 +156458,6 @@ entities: - type: DeviceNetwork deviceLists: - 25276 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3558 @@ -157126,8 +156477,6 @@ entities: rot: 1.5707963267948966 rad pos: -86.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4430 @@ -157136,8 +156485,6 @@ entities: rot: 3.141592653589793 rad pos: 60.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4523 @@ -157146,8 +156493,6 @@ entities: rot: 3.141592653589793 rad pos: 99.5,72.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4545 components: - type: Transform @@ -157157,8 +156502,6 @@ entities: - type: DeviceNetwork deviceLists: - 3525 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4616 @@ -157167,8 +156510,6 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4658 @@ -157177,8 +156518,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,55.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4778 @@ -157191,8 +156530,6 @@ entities: deviceLists: - 12411 - 12440 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4796 @@ -157201,8 +156538,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4848 @@ -157214,8 +156549,6 @@ entities: - type: DeviceNetwork deviceLists: - 11473 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4896 @@ -157224,8 +156557,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5623 @@ -157233,8 +156564,6 @@ entities: - type: Transform pos: -95.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5676 @@ -157246,8 +156575,6 @@ entities: - type: DeviceNetwork deviceLists: - 25239 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5766 @@ -157259,8 +156586,6 @@ entities: - type: DeviceNetwork deviceLists: - 29631 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6192 @@ -157271,8 +156596,6 @@ entities: - type: DeviceNetwork deviceLists: - 6114 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6321 @@ -157284,8 +156607,6 @@ entities: - type: DeviceNetwork deviceLists: - 69 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6519 @@ -157293,8 +156614,6 @@ entities: - type: Transform pos: -22.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6616 @@ -157303,8 +156622,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6739 @@ -157316,8 +156633,6 @@ entities: - type: DeviceNetwork deviceLists: - 25261 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6760 @@ -157329,8 +156644,6 @@ entities: - type: DeviceNetwork deviceLists: - 28192 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6918 @@ -157339,8 +156652,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6973 @@ -157351,8 +156662,6 @@ entities: - type: DeviceNetwork deviceLists: - 25098 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7322 @@ -157361,8 +156670,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7477 @@ -157386,8 +156693,6 @@ entities: - type: DeviceNetwork deviceLists: - 22065 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8450 @@ -157399,8 +156704,6 @@ entities: - type: DeviceNetwork deviceLists: - 26091 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8457 @@ -157409,8 +156712,6 @@ entities: rot: -1.5707963267948966 rad pos: -68.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8821 @@ -157422,8 +156723,6 @@ entities: - type: DeviceNetwork deviceLists: - 25195 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8835 @@ -157434,8 +156733,6 @@ entities: - type: DeviceNetwork deviceLists: - 25290 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 9048 @@ -157444,8 +156741,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10937 @@ -157454,8 +156749,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,64.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11529 @@ -157467,8 +156760,6 @@ entities: - type: DeviceNetwork deviceLists: - 38117 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11644 @@ -157480,8 +156771,6 @@ entities: - type: DeviceNetwork deviceLists: - 25185 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 12085 @@ -157490,8 +156779,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 12303 @@ -157504,8 +156791,6 @@ entities: deviceLists: - 25288 - 28702 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 12335 @@ -157514,8 +156799,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 12337 @@ -157524,8 +156807,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13000 @@ -157537,8 +156818,6 @@ entities: - type: DeviceNetwork deviceLists: - 1690 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13136 @@ -157549,8 +156828,6 @@ entities: - type: DeviceNetwork deviceLists: - 25229 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13238 @@ -157562,8 +156839,6 @@ entities: - type: DeviceNetwork deviceLists: - 25291 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13378 @@ -157574,8 +156849,6 @@ entities: - type: DeviceNetwork deviceLists: - 25224 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15267 @@ -157587,8 +156860,6 @@ entities: - type: DeviceNetwork deviceLists: - 20000 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15302 @@ -157597,8 +156868,6 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15608 @@ -157610,8 +156879,6 @@ entities: - type: DeviceNetwork deviceLists: - 26091 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15683 @@ -157623,8 +156890,6 @@ entities: - type: DeviceNetwork deviceLists: - 26091 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15814 @@ -157636,8 +156901,6 @@ entities: - type: DeviceNetwork deviceLists: - 34109 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15944 @@ -157646,8 +156909,6 @@ entities: rot: 3.141592653589793 rad pos: -95.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 16161 @@ -157655,8 +156916,6 @@ entities: - type: Transform pos: -13.5,48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 16166 @@ -157668,8 +156927,6 @@ entities: - type: DeviceNetwork deviceLists: - 26091 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 16550 @@ -157678,8 +156935,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,58.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 16551 @@ -157691,8 +156946,6 @@ entities: - type: DeviceNetwork deviceLists: - 29087 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 17693 @@ -157704,8 +156957,6 @@ entities: - type: DeviceNetwork deviceLists: - 6715 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 17907 @@ -157718,8 +156969,6 @@ entities: deviceLists: - 26732 - 7608 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18332 @@ -157727,8 +156976,6 @@ entities: - type: Transform pos: -10.5,66.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18950 @@ -157739,8 +156986,6 @@ entities: - type: DeviceNetwork deviceLists: - 25275 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19439 @@ -157748,8 +156993,6 @@ entities: - type: Transform pos: -96.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19725 @@ -157760,8 +157003,6 @@ entities: - type: DeviceNetwork deviceLists: - 19822 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19759 @@ -157773,8 +157014,6 @@ entities: - type: DeviceNetwork deviceLists: - 18239 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19766 @@ -157785,8 +157024,6 @@ entities: - type: DeviceNetwork deviceLists: - 22291 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 20648 @@ -157795,8 +157032,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,60.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 20795 @@ -157808,8 +157043,6 @@ entities: deviceLists: - 2655 - 7120 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 20961 @@ -157821,8 +157054,6 @@ entities: - type: DeviceNetwork deviceLists: - 30714 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 21811 @@ -157830,8 +157061,6 @@ entities: - type: Transform pos: 17.5,58.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 21970 @@ -157843,8 +157072,6 @@ entities: - type: DeviceNetwork deviceLists: - 8213 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 22282 @@ -157852,8 +157079,6 @@ entities: - type: Transform pos: -78.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 22880 @@ -157865,8 +157090,6 @@ entities: - type: DeviceNetwork deviceLists: - 25234 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 22899 @@ -157877,8 +157100,6 @@ entities: - type: DeviceNetwork deviceLists: - 30714 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24173 @@ -157890,8 +157111,6 @@ entities: - type: DeviceNetwork deviceLists: - 25250 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24245 @@ -157903,8 +157122,6 @@ entities: - type: DeviceNetwork deviceLists: - 25274 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24258 @@ -157916,8 +157133,6 @@ entities: - type: DeviceNetwork deviceLists: - 25343 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24263 @@ -157929,8 +157144,6 @@ entities: - type: DeviceNetwork deviceLists: - 25345 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24602 @@ -157942,8 +157155,6 @@ entities: - type: DeviceNetwork deviceLists: - 25316 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24737 @@ -157955,8 +157166,6 @@ entities: - type: DeviceNetwork deviceLists: - 25293 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25353 @@ -157964,8 +157173,6 @@ entities: - type: Transform pos: 45.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25452 @@ -157974,8 +157181,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25460 @@ -157984,8 +157189,6 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25468 @@ -157994,8 +157197,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25475 @@ -158007,8 +157208,6 @@ entities: - type: DeviceNetwork deviceLists: - 30925 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25485 @@ -158017,8 +157216,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25497 @@ -158030,8 +157227,6 @@ entities: - type: DeviceNetwork deviceLists: - 30714 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25499 @@ -158040,8 +157235,6 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25573 @@ -158053,8 +157246,6 @@ entities: - type: DeviceNetwork deviceLists: - 25158 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25622 @@ -158066,8 +157257,6 @@ entities: - type: DeviceNetwork deviceLists: - 25248 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25631 @@ -158075,8 +157264,6 @@ entities: - type: Transform pos: -7.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25699 @@ -158085,8 +157272,6 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25742 @@ -158097,8 +157282,6 @@ entities: - type: DeviceNetwork deviceLists: - 25198 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25770 @@ -158110,8 +157293,6 @@ entities: - type: DeviceNetwork deviceLists: - 25158 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25773 @@ -158120,8 +157301,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,63.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25783 @@ -158133,8 +157312,6 @@ entities: - type: DeviceNetwork deviceLists: - 25248 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25793 @@ -158146,8 +157323,6 @@ entities: - type: DeviceNetwork deviceLists: - 25256 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25794 @@ -158158,8 +157333,6 @@ entities: - type: DeviceNetwork deviceLists: - 25300 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25795 @@ -158168,8 +157341,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25835 @@ -158177,8 +157348,6 @@ entities: - type: Transform pos: 6.5,50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25858 @@ -158187,8 +157356,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25877 @@ -158197,8 +157364,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,60.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25887 @@ -158210,8 +157375,6 @@ entities: - type: DeviceNetwork deviceLists: - 22157 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25978 @@ -158223,8 +157386,6 @@ entities: - type: DeviceNetwork deviceLists: - 34110 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26013 @@ -158236,8 +157397,6 @@ entities: - type: DeviceNetwork deviceLists: - 25234 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26014 @@ -158249,8 +157408,6 @@ entities: - type: DeviceNetwork deviceLists: - 25196 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26030 @@ -158259,8 +157416,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26056 @@ -158268,8 +157423,6 @@ entities: - type: Transform pos: -18.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26067 @@ -158281,8 +157434,6 @@ entities: - type: DeviceNetwork deviceLists: - 25166 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26079 @@ -158290,8 +157441,6 @@ entities: - type: Transform pos: -35.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26080 @@ -158303,8 +157452,6 @@ entities: - type: DeviceNetwork deviceLists: - 25316 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26083 @@ -158315,8 +157462,6 @@ entities: - type: DeviceNetwork deviceLists: - 28740 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26087 @@ -158325,8 +157470,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26089 @@ -158338,8 +157481,6 @@ entities: - type: DeviceNetwork deviceLists: - 25244 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26121 @@ -158347,8 +157488,6 @@ entities: - type: Transform pos: -7.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26128 @@ -158357,8 +157496,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26137 @@ -158369,8 +157506,6 @@ entities: - type: DeviceNetwork deviceLists: - 25247 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26143 @@ -158382,8 +157517,6 @@ entities: - type: DeviceNetwork deviceLists: - 25247 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26212 @@ -158395,8 +157528,6 @@ entities: - type: DeviceNetwork deviceLists: - 21100 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26219 @@ -158404,8 +157535,6 @@ entities: - type: Transform pos: -4.5,66.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26232 @@ -158417,8 +157546,6 @@ entities: - type: DeviceNetwork deviceLists: - 6298 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26257 @@ -158427,8 +157554,6 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26269 @@ -158437,8 +157562,6 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26281 @@ -158447,8 +157570,6 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26309 @@ -158457,8 +157578,6 @@ entities: rot: 3.141592653589793 rad pos: -61.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26354 @@ -158467,8 +157586,6 @@ entities: rot: 3.141592653589793 rad pos: -69.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26414 @@ -158480,8 +157597,6 @@ entities: - type: DeviceNetwork deviceLists: - 22 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26696 @@ -158493,8 +157608,6 @@ entities: - type: DeviceNetwork deviceLists: - 25339 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26836 @@ -158506,8 +157619,6 @@ entities: - type: DeviceNetwork deviceLists: - 22045 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26865 @@ -158516,8 +157627,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,74.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26868 @@ -158526,8 +157635,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,73.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26869 @@ -158536,8 +157643,6 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26872 @@ -158550,8 +157655,6 @@ entities: deviceLists: - 28752 - 25239 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26885 @@ -158559,8 +157662,6 @@ entities: - type: Transform pos: 0.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26895 @@ -158569,8 +157670,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26946 @@ -158582,8 +157681,6 @@ entities: - type: DeviceNetwork deviceLists: - 12403 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27007 @@ -158595,8 +157692,6 @@ entities: deviceLists: - 4313 - 175 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27009 @@ -158608,8 +157703,6 @@ entities: - type: DeviceNetwork deviceLists: - 2594 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27017 @@ -158620,8 +157713,6 @@ entities: - type: DeviceNetwork deviceLists: - 25248 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27109 @@ -158630,8 +157721,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27130 @@ -158640,8 +157729,6 @@ entities: rot: 1.5707963267948966 rad pos: -62.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27135 @@ -158650,8 +157737,6 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27152 @@ -158659,8 +157744,6 @@ entities: - type: Transform pos: -57.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 27191 components: - type: Transform @@ -158670,8 +157753,6 @@ entities: - type: DeviceNetwork deviceLists: - 37709 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27254 @@ -158680,8 +157761,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27260 @@ -158693,8 +157772,6 @@ entities: - type: DeviceNetwork deviceLists: - 25267 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27295 @@ -158703,8 +157780,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27296 @@ -158713,8 +157788,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27307 @@ -158723,8 +157796,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27363 @@ -158736,8 +157807,6 @@ entities: - type: DeviceNetwork deviceLists: - 30714 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27396 @@ -158746,8 +157815,6 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27421 @@ -158756,8 +157823,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27430 @@ -158769,8 +157834,6 @@ entities: - type: DeviceNetwork deviceLists: - 25338 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27438 @@ -158778,8 +157841,6 @@ entities: - type: Transform pos: 17.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27466 @@ -158798,8 +157859,6 @@ entities: - type: DeviceNetwork deviceLists: - 22060 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27492 @@ -158808,8 +157867,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27493 @@ -158821,8 +157878,6 @@ entities: - type: DeviceNetwork deviceLists: - 25246 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27496 @@ -158834,8 +157889,6 @@ entities: - type: DeviceNetwork deviceLists: - 1690 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27497 @@ -158847,8 +157900,6 @@ entities: - type: DeviceNetwork deviceLists: - 17901 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27503 @@ -158860,8 +157911,6 @@ entities: - type: DeviceNetwork deviceLists: - 25223 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27511 @@ -158873,8 +157922,6 @@ entities: - type: DeviceNetwork deviceLists: - 25191 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27558 @@ -158883,8 +157930,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27642 @@ -158893,8 +157938,6 @@ entities: rot: -1.5707963267948966 rad pos: 78.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27748 @@ -158902,8 +157945,6 @@ entities: - type: Transform pos: 76.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27751 @@ -158911,8 +157952,6 @@ entities: - type: Transform pos: 60.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27753 @@ -158924,8 +157963,6 @@ entities: - type: DeviceNetwork deviceLists: - 30714 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 27755 @@ -158934,8 +157971,6 @@ entities: rot: 3.141592653589793 rad pos: 60.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28059 @@ -158944,8 +157979,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28071 @@ -158954,8 +157987,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28079 @@ -158967,8 +157998,6 @@ entities: - type: DeviceNetwork deviceLists: - 25206 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28110 @@ -158981,8 +158010,6 @@ entities: - 23688 - 25334 - 7606 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28213 @@ -158993,8 +158020,6 @@ entities: - type: DeviceNetwork deviceLists: - 25298 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28219 @@ -159006,8 +158031,6 @@ entities: - type: DeviceNetwork deviceLists: - 25302 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28301 @@ -159016,8 +158039,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28317 @@ -159026,8 +158047,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28331 @@ -159035,8 +158054,6 @@ entities: - type: Transform pos: -27.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28450 @@ -159048,8 +158065,6 @@ entities: - type: DeviceNetwork deviceLists: - 38117 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28452 @@ -159060,8 +158075,6 @@ entities: - type: DeviceNetwork deviceLists: - 25293 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28501 @@ -159072,8 +158085,6 @@ entities: - type: DeviceNetwork deviceLists: - 23957 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28546 @@ -159081,8 +158092,6 @@ entities: - type: Transform pos: 18.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28548 @@ -159094,8 +158103,6 @@ entities: - type: DeviceNetwork deviceLists: - 36760 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28567 @@ -159104,8 +158111,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28583 @@ -159113,8 +158118,6 @@ entities: - type: Transform pos: 12.5,27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28609 @@ -159126,8 +158129,6 @@ entities: - type: DeviceNetwork deviceLists: - 17901 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28610 @@ -159136,8 +158137,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28705 @@ -159149,8 +158148,6 @@ entities: - type: DeviceNetwork deviceLists: - 25307 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28713 @@ -159162,8 +158159,6 @@ entities: - type: DeviceNetwork deviceLists: - 25234 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28757 @@ -159172,8 +158167,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 29289 @@ -159184,8 +158177,6 @@ entities: - type: DeviceNetwork deviceLists: - 25251 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 30778 @@ -159194,8 +158185,6 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 33132 @@ -159204,8 +158193,6 @@ entities: rot: -1.5707963267948966 rad pos: 83.5,40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 33133 @@ -159214,8 +158201,6 @@ entities: rot: 1.5707963267948966 rad pos: 71.5,40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 33172 @@ -159224,8 +158209,6 @@ entities: rot: 1.5707963267948966 rad pos: 75.5,49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 33201 @@ -159234,8 +158217,6 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,61.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 33258 @@ -159244,8 +158225,6 @@ entities: rot: 3.141592653589793 rad pos: 85.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 33274 @@ -159253,8 +158232,6 @@ entities: - type: Transform pos: 91.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 33895 @@ -159265,8 +158242,6 @@ entities: - type: DeviceNetwork deviceLists: - 21 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 33928 @@ -159278,8 +158253,6 @@ entities: - type: DeviceNetwork deviceLists: - 33892 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 33929 @@ -159290,8 +158263,6 @@ entities: - type: DeviceNetwork deviceLists: - 36760 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 33932 @@ -159299,8 +158270,6 @@ entities: - type: Transform pos: 13.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 34059 @@ -159311,8 +158280,6 @@ entities: - type: DeviceNetwork deviceLists: - 36760 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 34118 @@ -159324,8 +158291,6 @@ entities: - type: DeviceNetwork deviceLists: - 25346 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 34123 @@ -159336,8 +158301,6 @@ entities: - type: DeviceNetwork deviceLists: - 35889 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 34680 @@ -159346,8 +158309,6 @@ entities: rot: 3.141592653589793 rad pos: 75.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 34760 @@ -159358,8 +158319,6 @@ entities: - type: DeviceNetwork deviceLists: - 35889 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 34963 @@ -159371,15 +158330,11 @@ entities: - type: DeviceNetwork deviceLists: - 21 - - type: AtmosDevice - joinedGrid: 2 - uid: 36078 components: - type: Transform pos: -30.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 36079 @@ -159387,8 +158342,6 @@ entities: - type: Transform pos: -26.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 36080 @@ -159397,8 +158350,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 36081 @@ -159407,8 +158358,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 36732 @@ -159420,8 +158369,6 @@ entities: - type: DeviceNetwork deviceLists: - 792 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 37410 @@ -159433,8 +158380,6 @@ entities: - type: DeviceNetwork deviceLists: - 37414 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 37411 @@ -159447,8 +158392,6 @@ entities: deviceLists: - 9212 - 28628 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 37889 @@ -159460,8 +158403,6 @@ entities: - type: DeviceNetwork deviceLists: - 18513 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 38178 @@ -159484,8 +158425,6 @@ entities: - type: DeviceNetwork deviceLists: - 1320 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 38381 @@ -159494,8 +158433,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 38806 @@ -159504,8 +158441,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,56.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 38808 @@ -159517,8 +158452,6 @@ entities: - type: DeviceNetwork deviceLists: - 25201 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 38830 @@ -159527,8 +158460,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 38831 @@ -159539,8 +158470,6 @@ entities: - type: DeviceNetwork deviceLists: - 4870 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 38871 @@ -159549,8 +158478,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,61.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 38928 @@ -159562,8 +158489,6 @@ entities: - type: DeviceNetwork deviceLists: - 1690 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 39153 @@ -159574,8 +158499,6 @@ entities: - type: DeviceNetwork deviceLists: - 39141 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 39155 @@ -159587,8 +158510,6 @@ entities: - type: DeviceNetwork deviceLists: - 39141 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 39177 @@ -159601,8 +158522,6 @@ entities: deviceLists: - 25288 - 28702 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 39178 @@ -159615,8 +158534,6 @@ entities: deviceLists: - 25288 - 28702 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 39183 @@ -159629,8 +158546,6 @@ entities: deviceLists: - 25288 - 28702 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 39208 @@ -159642,8 +158557,6 @@ entities: - type: DeviceNetwork deviceLists: - 25276 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 39215 @@ -159652,8 +158565,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber @@ -159664,8 +158575,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 391 @@ -159676,8 +158585,6 @@ entities: - type: DeviceNetwork deviceLists: - 25700 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 637 @@ -159686,8 +158593,6 @@ entities: rot: -1.5707963267948966 rad pos: -76.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 757 @@ -159696,8 +158601,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 776 @@ -159709,8 +158612,6 @@ entities: - type: DeviceNetwork deviceLists: - 792 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 893 @@ -159721,8 +158622,6 @@ entities: - type: DeviceNetwork deviceLists: - 33892 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 941 @@ -159734,8 +158633,6 @@ entities: - type: DeviceNetwork deviceLists: - 25345 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 1079 @@ -159747,8 +158644,6 @@ entities: - type: DeviceNetwork deviceLists: - 38117 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 1253 @@ -159760,8 +158655,6 @@ entities: - type: DeviceNetwork deviceLists: - 2285 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 1517 @@ -159770,8 +158663,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 2749 @@ -159783,8 +158674,6 @@ entities: - type: DeviceNetwork deviceLists: - 29631 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 3550 @@ -159803,8 +158692,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 4265 @@ -159815,8 +158702,6 @@ entities: - type: DeviceNetwork deviceLists: - 1256 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 4294 @@ -159825,8 +158710,6 @@ entities: rot: -1.5707963267948966 rad pos: -82.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 4456 @@ -159838,8 +158721,6 @@ entities: deviceLists: - 2655 - 7120 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 4480 @@ -159850,8 +158731,6 @@ entities: - type: DeviceNetwork deviceLists: - 6114 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 4544 @@ -159863,8 +158742,6 @@ entities: - type: DeviceNetwork deviceLists: - 3525 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 4587 @@ -159873,8 +158750,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 4607 @@ -159886,8 +158761,6 @@ entities: - type: DeviceNetwork deviceLists: - 25276 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 4669 @@ -159896,16 +158769,12 @@ entities: rot: 3.141592653589793 rad pos: 100.5,72.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 4816 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 4866 @@ -159914,8 +158783,6 @@ entities: rot: 3.141592653589793 rad pos: -95.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 5923 @@ -159924,8 +158791,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,62.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 5959 @@ -159938,8 +158803,6 @@ entities: deviceLists: - 12411 - 12440 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 6320 @@ -159951,8 +158814,6 @@ entities: - type: DeviceNetwork deviceLists: - 69 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 6518 @@ -159961,8 +158822,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 6966 @@ -159973,8 +158832,6 @@ entities: - type: DeviceNetwork deviceLists: - 25098 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 7415 @@ -159983,8 +158840,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 8417 @@ -159996,8 +158851,6 @@ entities: - type: DeviceNetwork deviceLists: - 22065 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 8418 @@ -160005,8 +158858,6 @@ entities: - type: Transform pos: -95.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 8664 @@ -160018,8 +158869,6 @@ entities: - type: DeviceNetwork deviceLists: - 8213 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 8764 @@ -160028,8 +158877,6 @@ entities: rot: 1.5707963267948966 rad pos: -68.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 9132 @@ -160040,8 +158887,6 @@ entities: - type: DeviceNetwork deviceLists: - 34109 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 10230 @@ -160049,8 +158894,6 @@ entities: - type: Transform pos: 19.5,58.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 10258 @@ -160062,8 +158905,6 @@ entities: - type: DeviceNetwork deviceLists: - 26091 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 10623 @@ -160071,8 +158912,6 @@ entities: - type: Transform pos: -13.5,-39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 12292 @@ -160083,8 +158922,6 @@ entities: - type: DeviceNetwork deviceLists: - 25248 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 12306 @@ -160093,8 +158930,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 13002 @@ -160106,8 +158941,6 @@ entities: - type: DeviceNetwork deviceLists: - 2594 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 13354 @@ -160119,8 +158952,6 @@ entities: - type: DeviceNetwork deviceLists: - 25224 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 13382 @@ -160131,8 +158962,6 @@ entities: - type: DeviceNetwork deviceLists: - 25248 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 14205 @@ -160143,8 +158972,6 @@ entities: - type: DeviceNetwork deviceLists: - 25115 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 14851 @@ -160156,8 +158983,6 @@ entities: - type: DeviceNetwork deviceLists: - 25291 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 15103 @@ -160169,8 +158994,6 @@ entities: - type: DeviceNetwork deviceLists: - 20000 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 15206 @@ -160179,8 +159002,6 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 15376 @@ -160192,8 +159013,6 @@ entities: - type: DeviceNetwork deviceLists: - 21100 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 15479 @@ -160205,8 +159024,6 @@ entities: - type: DeviceNetwork deviceLists: - 34110 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 15557 @@ -160218,8 +159035,6 @@ entities: - type: DeviceNetwork deviceLists: - 26091 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 15573 @@ -160231,8 +159046,6 @@ entities: - type: DeviceNetwork deviceLists: - 26091 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 15689 @@ -160240,8 +159053,6 @@ entities: - type: Transform pos: -12.5,48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 15933 @@ -160253,8 +159064,6 @@ entities: - type: DeviceNetwork deviceLists: - 26091 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 15936 @@ -160265,8 +159074,6 @@ entities: - type: DeviceNetwork deviceLists: - 25223 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 15945 @@ -160277,8 +159084,6 @@ entities: - type: DeviceNetwork deviceLists: - 30714 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 15994 @@ -160291,8 +159096,6 @@ entities: deviceLists: - 26732 - 7608 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 16095 @@ -160301,8 +159104,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 16497 @@ -160314,8 +159115,6 @@ entities: - type: DeviceNetwork deviceLists: - 11473 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 16549 @@ -160326,8 +159125,6 @@ entities: - type: DeviceNetwork deviceLists: - 29087 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 17766 @@ -160350,8 +159147,6 @@ entities: - type: DeviceNetwork deviceLists: - 25275 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 18234 @@ -160359,8 +159154,6 @@ entities: - type: Transform pos: -8.5,66.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 18356 @@ -160371,8 +159164,6 @@ entities: - type: DeviceNetwork deviceLists: - 31752 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 19726 @@ -160384,8 +159175,6 @@ entities: - type: DeviceNetwork deviceLists: - 19822 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 19972 @@ -160396,8 +159185,6 @@ entities: - type: DeviceNetwork deviceLists: - 25229 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 19974 @@ -160406,8 +159193,6 @@ entities: rot: 3.141592653589793 rad pos: -96.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 20656 @@ -160416,8 +159201,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,59.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 22115 @@ -160429,8 +159212,6 @@ entities: - type: DeviceNetwork deviceLists: - 22 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 22580 @@ -160438,8 +159219,6 @@ entities: - type: Transform pos: 15.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 22808 @@ -160450,8 +159229,6 @@ entities: - type: DeviceNetwork deviceLists: - 25293 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 22858 @@ -160463,8 +159240,6 @@ entities: - type: DeviceNetwork deviceLists: - 25261 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 23144 @@ -160473,8 +159248,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,57.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 23613 @@ -160486,8 +159259,6 @@ entities: - type: DeviceNetwork deviceLists: - 28192 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 24007 @@ -160498,8 +159269,6 @@ entities: - type: DeviceNetwork deviceLists: - 25246 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 24040 @@ -160510,8 +159279,6 @@ entities: - type: DeviceNetwork deviceLists: - 25206 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 24253 @@ -160523,8 +159290,6 @@ entities: - type: DeviceNetwork deviceLists: - 25343 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 24315 @@ -160536,8 +159301,6 @@ entities: - type: DeviceNetwork deviceLists: - 25191 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 24728 @@ -160545,8 +159308,6 @@ entities: - type: Transform pos: -6.5,63.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25107 @@ -160555,8 +159316,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25156 @@ -160568,8 +159327,6 @@ entities: - type: DeviceNetwork deviceLists: - 25293 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25200 @@ -160582,8 +159339,6 @@ entities: deviceLists: - 25316 - 22291 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25253 @@ -160591,8 +159346,6 @@ entities: - type: Transform pos: -1.5,63.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25254 @@ -160604,8 +159357,6 @@ entities: - type: DeviceNetwork deviceLists: - 37193 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25420 @@ -160617,8 +159368,6 @@ entities: - type: DeviceNetwork deviceLists: - 30714 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25440 @@ -160626,8 +159375,6 @@ entities: - type: Transform pos: 39.5,48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25451 @@ -160636,8 +159383,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25459 @@ -160646,8 +159391,6 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25467 @@ -160656,8 +159399,6 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25476 @@ -160669,8 +159410,6 @@ entities: - type: DeviceNetwork deviceLists: - 30925 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25484 @@ -160679,8 +159418,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25498 @@ -160689,8 +159426,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25621 @@ -160698,8 +159433,6 @@ entities: - type: Transform pos: 32.5,47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25632 @@ -160711,8 +159444,6 @@ entities: - type: DeviceNetwork deviceLists: - 25185 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25635 @@ -160723,8 +159454,6 @@ entities: - type: DeviceNetwork deviceLists: - 25234 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25636 @@ -160736,8 +159465,6 @@ entities: - type: DeviceNetwork deviceLists: - 25234 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25655 @@ -160748,8 +159475,6 @@ entities: - type: DeviceNetwork deviceLists: - 25239 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25696 @@ -160757,8 +159482,6 @@ entities: - type: Transform pos: -13.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25727 @@ -160770,8 +159493,6 @@ entities: - type: DeviceNetwork deviceLists: - 25196 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25753 @@ -160780,8 +159501,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25757 @@ -160792,8 +159511,6 @@ entities: - type: DeviceNetwork deviceLists: - 25166 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25772 @@ -160805,8 +159522,6 @@ entities: - type: DeviceNetwork deviceLists: - 25316 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25775 @@ -160818,8 +159533,6 @@ entities: - type: DeviceNetwork deviceLists: - 25316 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25776 @@ -160831,8 +159544,6 @@ entities: - type: DeviceNetwork deviceLists: - 28740 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25779 @@ -160843,8 +159554,6 @@ entities: - type: DeviceNetwork deviceLists: - 25244 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25780 @@ -160856,8 +159565,6 @@ entities: - type: DeviceNetwork deviceLists: - 25247 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25781 @@ -160869,8 +159576,6 @@ entities: - type: DeviceNetwork deviceLists: - 25247 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25821 @@ -160882,8 +159587,6 @@ entities: - type: DeviceNetwork deviceLists: - 25158 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25834 @@ -160891,8 +159594,6 @@ entities: - type: Transform pos: 7.5,49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25842 @@ -160901,8 +159602,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,54.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25859 @@ -160911,8 +159610,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25876 @@ -160921,8 +159618,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,58.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25886 @@ -160934,8 +159629,6 @@ entities: - type: DeviceNetwork deviceLists: - 22157 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 25936 @@ -160943,8 +159636,6 @@ entities: - type: Transform pos: -6.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26029 @@ -160953,8 +159644,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26032 @@ -160965,8 +159654,6 @@ entities: - type: DeviceNetwork deviceLists: - 15850 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26035 @@ -160977,8 +159664,6 @@ entities: - type: DeviceNetwork deviceLists: - 25195 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26036 @@ -160990,8 +159675,6 @@ entities: - type: DeviceNetwork deviceLists: - 25198 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26078 @@ -160999,8 +159682,6 @@ entities: - type: Transform pos: -34.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26086 @@ -161009,8 +159690,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26122 @@ -161019,8 +159698,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26123 @@ -161032,8 +159709,6 @@ entities: - type: DeviceNetwork deviceLists: - 25267 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26129 @@ -161042,8 +159717,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26152 @@ -161054,8 +159727,6 @@ entities: - type: DeviceNetwork deviceLists: - 25248 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26198 @@ -161067,8 +159738,6 @@ entities: - type: DeviceNetwork deviceLists: - 25290 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26211 @@ -161080,8 +159749,6 @@ entities: - type: DeviceNetwork deviceLists: - 25256 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26220 @@ -161089,8 +159756,6 @@ entities: - type: Transform pos: -2.5,66.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26256 @@ -161099,8 +159764,6 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26268 @@ -161109,8 +159772,6 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26280 @@ -161119,8 +159780,6 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26308 @@ -161129,8 +159788,6 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26353 @@ -161139,8 +159796,6 @@ entities: rot: 3.141592653589793 rad pos: -67.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26695 @@ -161152,8 +159807,6 @@ entities: - type: DeviceNetwork deviceLists: - 6715 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26698 @@ -161164,8 +159817,6 @@ entities: - type: DeviceNetwork deviceLists: - 25300 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26767 @@ -161174,8 +159825,6 @@ entities: rot: -1.5707963267948966 rad pos: -82.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26835 @@ -161187,8 +159836,6 @@ entities: - type: DeviceNetwork deviceLists: - 22045 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26866 @@ -161197,8 +159844,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,74.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26867 @@ -161207,8 +159852,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,73.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26886 @@ -161216,8 +159859,6 @@ entities: - type: Transform pos: 2.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26896 @@ -161226,8 +159867,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 26945 @@ -161239,8 +159878,6 @@ entities: - type: DeviceNetwork deviceLists: - 12403 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27006 @@ -161252,8 +159889,6 @@ entities: deviceLists: - 4313 - 175 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27008 @@ -161264,8 +159899,6 @@ entities: - type: DeviceNetwork deviceLists: - 17901 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27108 @@ -161274,8 +159907,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27122 @@ -161283,8 +159914,6 @@ entities: - type: Transform pos: -32.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27123 @@ -161296,8 +159925,6 @@ entities: - type: DeviceNetwork deviceLists: - 25250 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27129 @@ -161306,8 +159933,6 @@ entities: rot: 1.5707963267948966 rad pos: -61.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27134 @@ -161316,8 +159941,6 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27149 @@ -161325,8 +159948,6 @@ entities: - type: Transform pos: -58.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27190 @@ -161338,8 +159959,6 @@ entities: - type: DeviceNetwork deviceLists: - 37709 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27252 @@ -161352,8 +159971,6 @@ entities: - 23688 - 25334 - 7606 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27253 @@ -161366,8 +159983,6 @@ entities: deviceLists: - 25333 - 27414 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27255 @@ -161376,8 +159991,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27257 @@ -161388,8 +160001,6 @@ entities: - type: DeviceNetwork deviceLists: - 25274 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27271 @@ -161400,8 +160011,6 @@ entities: - type: DeviceNetwork deviceLists: - 6298 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27293 @@ -161410,8 +160019,6 @@ entities: rot: 3.141592653589793 rad pos: -14.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27294 @@ -161420,8 +160027,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27299 @@ -161432,8 +160037,6 @@ entities: - type: DeviceNetwork deviceLists: - 25298 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27300 @@ -161445,8 +160048,6 @@ entities: - type: DeviceNetwork deviceLists: - 25302 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27306 @@ -161455,8 +160056,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27320 @@ -161468,8 +160067,6 @@ entities: - type: DeviceNetwork deviceLists: - 36760 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27339 @@ -161480,8 +160077,6 @@ entities: - type: DeviceNetwork deviceLists: - 21 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27395 @@ -161490,8 +160085,6 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27422 @@ -161499,8 +160092,6 @@ entities: - type: Transform pos: 35.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27425 @@ -161511,8 +160102,6 @@ entities: - type: DeviceNetwork deviceLists: - 30714 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27437 @@ -161520,8 +160109,6 @@ entities: - type: Transform pos: 19.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27440 @@ -161529,8 +160116,6 @@ entities: - type: Transform pos: -20.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27467 @@ -161549,8 +160134,6 @@ entities: - type: DeviceNetwork deviceLists: - 22060 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27491 @@ -161559,8 +160142,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27494 @@ -161569,8 +160150,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27559 @@ -161579,8 +160158,6 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27641 @@ -161589,8 +160166,6 @@ entities: rot: -1.5707963267948966 rad pos: 78.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27695 @@ -161599,8 +160174,6 @@ entities: rot: 3.141592653589793 rad pos: 62.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27747 @@ -161608,8 +160181,6 @@ entities: - type: Transform pos: 77.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27752 @@ -161617,8 +160188,6 @@ entities: - type: Transform pos: 62.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27754 @@ -161630,8 +160199,6 @@ entities: - type: DeviceNetwork deviceLists: - 30714 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27756 @@ -161640,8 +160207,6 @@ entities: rot: 3.141592653589793 rad pos: 62.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27853 @@ -161652,8 +160217,6 @@ entities: - type: DeviceNetwork deviceLists: - 17901 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 27888 @@ -161662,8 +160225,6 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,53.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28055 @@ -161675,8 +160236,6 @@ entities: - type: DeviceNetwork deviceLists: - 1690 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28060 @@ -161685,8 +160244,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28070 @@ -161695,8 +160252,6 @@ entities: rot: 3.141592653589793 rad pos: 37.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28098 @@ -161707,8 +160262,6 @@ entities: - type: DeviceNetwork deviceLists: - 25248 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28158 @@ -161720,8 +160273,6 @@ entities: - type: DeviceNetwork deviceLists: - 400 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28173 @@ -161730,8 +160281,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28283 @@ -161743,8 +160292,6 @@ entities: - type: DeviceNetwork deviceLists: - 30714 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28290 @@ -161752,8 +160299,6 @@ entities: - type: Transform pos: -5.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28302 @@ -161762,8 +160307,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28316 @@ -161772,8 +160315,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28330 @@ -161781,8 +160322,6 @@ entities: - type: Transform pos: -26.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28449 @@ -161794,8 +160333,6 @@ entities: - type: DeviceNetwork deviceLists: - 38117 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28500 @@ -161806,8 +160343,6 @@ entities: - type: DeviceNetwork deviceLists: - 23957 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28536 @@ -161816,8 +160351,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28545 @@ -161825,8 +160358,6 @@ entities: - type: Transform pos: 19.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28566 @@ -161834,8 +160365,6 @@ entities: - type: Transform pos: 9.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28584 @@ -161843,8 +160372,6 @@ entities: - type: Transform pos: 14.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 28776 @@ -161853,8 +160380,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 30777 @@ -161863,8 +160388,6 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 33104 @@ -161873,8 +160396,6 @@ entities: rot: 1.5707963267948966 rad pos: 71.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 33131 @@ -161883,8 +160404,6 @@ entities: rot: -1.5707963267948966 rad pos: 83.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 33173 @@ -161893,8 +160412,6 @@ entities: rot: -1.5707963267948966 rad pos: 78.5,49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 33202 @@ -161903,8 +160420,6 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,61.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 33259 @@ -161913,8 +160428,6 @@ entities: rot: 3.141592653589793 rad pos: 84.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 33276 @@ -161922,8 +160435,6 @@ entities: - type: Transform pos: 92.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 33931 @@ -161934,8 +160445,6 @@ entities: - type: DeviceNetwork deviceLists: - 36760 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 33944 @@ -161947,8 +160456,6 @@ entities: - type: DeviceNetwork deviceLists: - 36760 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 34073 @@ -161960,8 +160467,6 @@ entities: - type: DeviceNetwork deviceLists: - 25346 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 34120 @@ -161972,8 +160477,6 @@ entities: - type: DeviceNetwork deviceLists: - 35889 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 34681 @@ -161982,8 +160485,6 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 34741 @@ -161994,8 +160495,6 @@ entities: - type: DeviceNetwork deviceLists: - 25349 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 34961 @@ -162007,8 +160506,6 @@ entities: - type: DeviceNetwork deviceLists: - 21 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 35715 @@ -162019,8 +160516,6 @@ entities: - type: DeviceNetwork deviceLists: - 35889 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 36074 @@ -162029,8 +160524,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 36075 @@ -162039,8 +160532,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 36076 @@ -162048,8 +160539,6 @@ entities: - type: Transform pos: -24.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 36077 @@ -162057,8 +160546,6 @@ entities: - type: Transform pos: -28.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 37409 @@ -162069,8 +160556,6 @@ entities: - type: DeviceNetwork deviceLists: - 37414 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 37412 @@ -162083,8 +160568,6 @@ entities: deviceLists: - 9212 - 28628 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 37890 @@ -162096,8 +160579,6 @@ entities: - type: DeviceNetwork deviceLists: - 18513 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 38180 @@ -162109,8 +160590,6 @@ entities: - type: DeviceNetwork deviceLists: - 1320 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 38184 @@ -162122,8 +160601,6 @@ entities: - type: DeviceNetwork deviceLists: - 1320 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 38691 @@ -162132,8 +160609,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 38697 @@ -162142,8 +160617,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 38809 @@ -162155,8 +160628,6 @@ entities: - type: DeviceNetwork deviceLists: - 25201 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 38829 @@ -162165,8 +160636,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 38832 @@ -162177,16 +160646,12 @@ entities: - type: DeviceNetwork deviceLists: - 4870 - - type: AtmosDevice - joinedGrid: 2 - uid: 38872 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,61.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 38927 @@ -162198,8 +160663,6 @@ entities: - type: DeviceNetwork deviceLists: - 1690 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 39156 @@ -162210,8 +160673,6 @@ entities: - type: DeviceNetwork deviceLists: - 39141 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 39157 @@ -162223,8 +160684,6 @@ entities: - type: DeviceNetwork deviceLists: - 39141 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 39184 @@ -162237,8 +160696,6 @@ entities: deviceLists: - 25288 - 28702 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 39185 @@ -162251,8 +160708,6 @@ entities: deviceLists: - 25288 - 28702 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 39186 @@ -162265,8 +160720,6 @@ entities: deviceLists: - 25288 - 28702 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 39196 @@ -162279,8 +160732,6 @@ entities: deviceLists: - 25288 - 28702 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 39209 @@ -162292,8 +160743,6 @@ entities: - type: DeviceNetwork deviceLists: - 25276 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 39216 @@ -162302,8 +160751,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - proto: Gauze @@ -182103,71 +180550,51 @@ entities: - type: Transform pos: 18.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6652 components: - type: Transform pos: -30.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9357 components: - type: Transform pos: -49.5,48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10235 components: - type: Transform pos: 33.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 17784 components: - type: Transform pos: -16.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 20033 components: - type: Transform pos: -31.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 23439 components: - type: Transform pos: -59.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 35832 components: - type: Transform pos: 58.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 35835 components: - type: Transform pos: -59.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 35836 components: - type: Transform pos: -60.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: NitrousOxideCanister entities: - uid: 9355 @@ -182175,8 +180602,6 @@ entities: - type: Transform pos: -45.5,48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: NoticeBoard entities: - uid: 170 @@ -182320,7 +180745,7 @@ entities: - type: Transform pos: -14.5,-1.5 parent: 2 -- proto: Oracle +- proto: OracleSpawner entities: - uid: 4100 components: @@ -182406,71 +180831,51 @@ entities: - type: Transform pos: 19.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9356 components: - type: Transform pos: -47.5,48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10653 components: - type: Transform pos: 33.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 11862 components: - type: Transform pos: -31.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 17167 components: - type: Transform pos: -18.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 20032 components: - type: Transform pos: -34.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 29700 components: - type: Transform pos: -60.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 35831 components: - type: Transform pos: -56.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 35833 components: - type: Transform pos: 58.5,-41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 35834 components: - type: Transform pos: -57.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: PaintingBlunt entities: - uid: 821 @@ -183377,8 +181782,6 @@ entities: - type: Transform pos: -41.5,48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 90 @@ -190838,7 +189241,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -190859,7 +189261,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -190878,7 +189279,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -190897,7 +189297,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -205726,8 +204125,6 @@ entities: - type: Transform pos: -44.5,32.5 parent: 2 -- proto: SignAtmosMinsky - entities: - uid: 9574 components: - type: Transform @@ -205991,13 +204388,6 @@ entities: - type: Transform pos: -20.5,-6.5 parent: 2 -- proto: SignCourt - entities: - - uid: 4443 - components: - - type: Transform - pos: -1.5,50.5 - parent: 2 - proto: SignCryogenicsMed entities: - uid: 1008 @@ -207188,6 +205578,11 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,57.5 parent: 2 + - uid: 4443 + components: + - type: Transform + pos: -1.5,50.5 + parent: 2 - proto: SignLibrary entities: - uid: 22680 @@ -207227,26 +205622,6 @@ entities: - type: Transform pos: -42.5,25.5 parent: 2 -- proto: SignMinerDock - entities: - - uid: 3284 - components: - - type: MetaData - desc: A sign indicating the salvage dock. - name: salvage dock sign - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-43.5 - parent: 2 - - uid: 3542 - components: - - type: MetaData - desc: A sign indicating the salvage dock. - name: salvage dock sign - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-43.5 - parent: 2 - proto: SignMorgue entities: - uid: 26858 @@ -207720,6 +206095,24 @@ entities: parent: 2 - proto: SignShipDock entities: + - uid: 3284 + components: + - type: MetaData + desc: A sign indicating the salvage dock. + name: salvage dock sign + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-43.5 + parent: 2 + - uid: 3542 + components: + - type: MetaData + desc: A sign indicating the salvage dock. + name: salvage dock sign + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-43.5 + parent: 2 - uid: 18362 components: - type: Transform @@ -208086,7 +206479,7 @@ entities: - type: Transform pos: -5.5,4.5 parent: 2 -- proto: SignXenolab +- proto: SignXenobio entities: - uid: 36102 components: @@ -208431,7 +206824,7 @@ entities: - type: Transform pos: -40.60408,11.515232 parent: 2 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 4644 components: @@ -210358,7 +208751,7 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-21.5 parent: 2 -- proto: SophicScribe +- proto: SophicScribeSpawner entities: - uid: 2905 components: @@ -210864,6 +209257,18 @@ entities: - type: Transform pos: 15.5,-35.5 parent: 2 +- proto: SpawnPointAdminAssistant + entities: + - uid: 39305 + components: + - type: Transform + pos: 10.5,48.5 + parent: 2 + - uid: 39306 + components: + - type: Transform + pos: 10.5,46.5 + parent: 2 - proto: SpawnPointAtmos entities: - uid: 3689 @@ -210893,6 +209298,13 @@ entities: - type: Transform pos: -42.5,-26.5 parent: 2 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 22260 + components: + - type: Transform + pos: 14.5,48.5 + parent: 2 - proto: SpawnPointBotanist entities: - uid: 18505 @@ -211377,6 +209789,13 @@ entities: - type: Transform pos: -71.5,3.5 parent: 2 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 39304 + components: + - type: Transform + pos: 14.5,47.5 + parent: 2 - proto: SpawnPointObserver entities: - uid: 33591 @@ -212313,43 +210732,31 @@ entities: - type: Transform pos: 43.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 3384 components: - type: Transform pos: 41.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5712 components: - type: Transform pos: 60.5,55.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5996 components: - type: Transform pos: -46.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 8732 components: - type: Transform pos: -45.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9079 components: - type: Transform pos: -48.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: Stunbaton entities: - uid: 4676 @@ -240855,8 +239262,6 @@ entities: - type: Transform pos: 44.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: WeaponCapacitorRecharger entities: - uid: 1980 diff --git a/Resources/Maps/tortuga.yml b/Resources/Maps/tortuga.yml index cb638de0339759..1359965938b36d 100644 --- a/Resources/Maps/tortuga.yml +++ b/Resources/Maps/tortuga.yml @@ -12841,14 +12841,15 @@ entities: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: PhysicsMap + - type: GridTree + - type: MovedGrids - type: Parallax parallax: TortugaStation - type: Broadphase - type: OccluderTree - type: LoadedMap - - type: GridTree - - type: MovedGrids - proto: AcousticGuitarInstrument entities: - uid: 17773 @@ -12864,8 +12865,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 543 components: - type: Transform @@ -12881,8 +12880,6 @@ entities: - 22037 - 22034 - 29297 - - type: AtmosDevice - joinedGrid: 33 - uid: 1821 components: - type: Transform @@ -12892,8 +12889,6 @@ entities: - type: DeviceList devices: - 29635 - - type: AtmosDevice - joinedGrid: 33 - uid: 4070 components: - type: Transform @@ -12921,8 +12916,6 @@ entities: - 25808 - 21892 - 21901 - - type: AtmosDevice - joinedGrid: 33 - uid: 7948 components: - type: Transform @@ -12943,8 +12936,6 @@ entities: - 13226 - 25001 - 20012 - - type: AtmosDevice - joinedGrid: 33 - uid: 7949 components: - type: Transform @@ -12968,8 +12959,6 @@ entities: - 27859 - 20002 - 29088 - - type: AtmosDevice - joinedGrid: 33 - uid: 7950 components: - type: Transform @@ -12987,8 +12976,6 @@ entities: - 30287 - 9914 - 7559 - - type: AtmosDevice - joinedGrid: 33 - uid: 10916 components: - type: Transform @@ -13012,8 +12999,6 @@ entities: - 20438 - 20436 - 20439 - - type: AtmosDevice - joinedGrid: 33 - uid: 16563 components: - type: Transform @@ -13043,8 +13028,6 @@ entities: - 22096 - 21593 - 24741 - - type: AtmosDevice - joinedGrid: 33 - uid: 18415 components: - type: Transform @@ -13066,8 +13049,6 @@ entities: - 28459 - 24296 - 24295 - - type: AtmosDevice - joinedGrid: 33 - uid: 18472 components: - type: Transform @@ -13098,8 +13079,6 @@ entities: - 24275 - 29573 - 29572 - - type: AtmosDevice - joinedGrid: 33 - uid: 19566 components: - type: Transform @@ -13135,15 +13114,11 @@ entities: - 22802 - 22662 - 22663 - - type: AtmosDevice - joinedGrid: 33 - uid: 20136 components: - type: Transform pos: -17.5,85.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 20865 components: - type: Transform @@ -13167,8 +13142,6 @@ entities: - 3579 - 30519 - 9378 - - type: AtmosDevice - joinedGrid: 33 - uid: 24249 components: - type: Transform @@ -13202,8 +13175,6 @@ entities: - 3257 - 23278 - 23279 - - type: AtmosDevice - joinedGrid: 33 - uid: 24266 components: - type: Transform @@ -13226,8 +13197,6 @@ entities: - 22762 - 22750 - 22763 - - type: AtmosDevice - joinedGrid: 33 - uid: 24272 components: - type: Transform @@ -13247,8 +13216,6 @@ entities: - 22731 - 22728 - 22730 - - type: AtmosDevice - joinedGrid: 33 - uid: 24273 components: - type: Transform @@ -13269,8 +13236,6 @@ entities: - 23185 - 23186 - 3002 - - type: AtmosDevice - joinedGrid: 33 - uid: 24671 components: - type: Transform @@ -13297,8 +13262,6 @@ entities: - 23187 - 28438 - 28437 - - type: AtmosDevice - joinedGrid: 33 - uid: 24685 components: - type: Transform @@ -13332,8 +13295,6 @@ entities: - 28391 - 28390 - 28394 - - type: AtmosDevice - joinedGrid: 33 - uid: 24777 components: - type: MetaData @@ -13345,8 +13306,6 @@ entities: - type: DeviceList devices: - 9931 - - type: AtmosDevice - joinedGrid: 33 - uid: 25324 components: - type: Transform @@ -13378,8 +13337,6 @@ entities: - 21486 - 15201 - 1552 - - type: AtmosDevice - joinedGrid: 33 - uid: 25526 components: - type: Transform @@ -13397,8 +13354,6 @@ entities: - 24258 - 22732 - 22727 - - type: AtmosDevice - joinedGrid: 33 - uid: 25528 components: - type: Transform @@ -13430,8 +13385,6 @@ entities: - 10947 - 22882 - 22883 - - type: AtmosDevice - joinedGrid: 33 - uid: 25536 components: - type: Transform @@ -13459,8 +13412,6 @@ entities: - 5133 - 5226 - 28203 - - type: AtmosDevice - joinedGrid: 33 - uid: 25541 components: - type: Transform @@ -13483,8 +13434,6 @@ entities: - 21457 - 21319 - 21320 - - type: AtmosDevice - joinedGrid: 33 - uid: 25547 components: - type: Transform @@ -13502,8 +13451,6 @@ entities: - 21434 - 23003 - 23002 - - type: AtmosDevice - joinedGrid: 33 - uid: 25550 components: - type: Transform @@ -13521,8 +13468,6 @@ entities: - 27556 - 27545 - 27529 - - type: AtmosDevice - joinedGrid: 33 - uid: 25552 components: - type: Transform @@ -13541,8 +13486,6 @@ entities: - 27546 - 27528 - 5421 - - type: AtmosDevice - joinedGrid: 33 - uid: 25568 components: - type: Transform @@ -13556,8 +13499,6 @@ entities: - 25495 - 21353 - 21338 - - type: AtmosDevice - joinedGrid: 33 - uid: 25570 components: - type: Transform @@ -13570,8 +13511,6 @@ entities: - 4156 - 21140 - 21111 - - type: AtmosDevice - joinedGrid: 33 - uid: 25577 components: - type: Transform @@ -13603,8 +13542,6 @@ entities: - 23161 - 23162 - 5421 - - type: AtmosDevice - joinedGrid: 33 - uid: 25586 components: - type: Transform @@ -13629,8 +13566,6 @@ entities: - 21130 - 21131 - 1751 - - type: AtmosDevice - joinedGrid: 33 - uid: 25588 components: - type: Transform @@ -13651,8 +13586,6 @@ entities: - 21187 - 21042 - 21043 - - type: AtmosDevice - joinedGrid: 33 - uid: 25595 components: - type: Transform @@ -13674,8 +13607,6 @@ entities: - 20946 - 20953 - 20949 - - type: AtmosDevice - joinedGrid: 33 - uid: 25622 components: - type: Transform @@ -13690,8 +13621,6 @@ entities: - 20819 - 20820 - 20843 - - type: AtmosDevice - joinedGrid: 33 - uid: 25626 components: - type: Transform @@ -13707,8 +13636,6 @@ entities: - 28497 - 20855 - 20856 - - type: AtmosDevice - joinedGrid: 33 - uid: 25631 components: - type: Transform @@ -13721,8 +13648,6 @@ entities: - 28473 - 25616 - 28459 - - type: AtmosDevice - joinedGrid: 33 - uid: 25639 components: - type: Transform @@ -13740,8 +13665,6 @@ entities: - 25621 - 21640 - 21641 - - type: AtmosDevice - joinedGrid: 33 - uid: 25660 components: - type: Transform @@ -13759,8 +13682,6 @@ entities: - 25593 - 20728 - 20730 - - type: AtmosDevice - joinedGrid: 33 - uid: 25662 components: - type: Transform @@ -13775,8 +13696,6 @@ entities: - 25647 - 20521 - 20520 - - type: AtmosDevice - joinedGrid: 33 - uid: 25664 components: - type: Transform @@ -13797,8 +13716,6 @@ entities: - 20470 - 20521 - 20520 - - type: AtmosDevice - joinedGrid: 33 - uid: 25666 components: - type: Transform @@ -13817,8 +13734,6 @@ entities: - 20483 - 20489 - 20510 - - type: AtmosDevice - joinedGrid: 33 - uid: 25670 components: - type: Transform @@ -13833,8 +13748,6 @@ entities: - 10912 - 20342 - 20343 - - type: AtmosDevice - joinedGrid: 33 - uid: 25672 components: - type: Transform @@ -13869,8 +13782,6 @@ entities: - 25750 - 22631 - 22620 - - type: AtmosDevice - joinedGrid: 33 - uid: 25679 components: - type: Transform @@ -13901,8 +13812,6 @@ entities: - 23027 - 23160 - 23163 - - type: AtmosDevice - joinedGrid: 33 - uid: 25691 components: - type: Transform @@ -13937,8 +13846,6 @@ entities: - 22573 - 22525 - 22526 - - type: AtmosDevice - joinedGrid: 33 - uid: 25694 components: - type: Transform @@ -13952,8 +13859,6 @@ entities: - 25688 - 22536 - 22537 - - type: AtmosDevice - joinedGrid: 33 - uid: 25696 components: - type: Transform @@ -13973,8 +13878,6 @@ entities: - 10908 - 20316 - 20313 - - type: AtmosDevice - joinedGrid: 33 - uid: 25701 components: - type: Transform @@ -13995,8 +13898,6 @@ entities: - 10907 - 20355 - 20354 - - type: AtmosDevice - joinedGrid: 33 - uid: 25705 components: - type: Transform @@ -14015,8 +13916,6 @@ entities: - 20288 - 20262 - 20263 - - type: AtmosDevice - joinedGrid: 33 - uid: 25710 components: - type: Transform @@ -14036,8 +13935,6 @@ entities: - 20219 - 20216 - 20200 - - type: AtmosDevice - joinedGrid: 33 - uid: 25712 components: - type: Transform @@ -14056,8 +13953,6 @@ entities: - 21651 - 24252 - 24255 - - type: AtmosDevice - joinedGrid: 33 - uid: 25733 components: - type: Transform @@ -14072,8 +13967,6 @@ entities: - 20554 - 20572 - 20561 - - type: AtmosDevice - joinedGrid: 33 - uid: 25735 components: - type: Transform @@ -14090,8 +13983,6 @@ entities: - 20244 - 23813 - 23791 - - type: AtmosDevice - joinedGrid: 33 - uid: 25736 components: - type: Transform @@ -14107,8 +13998,6 @@ entities: - 28431 - 20684 - 20692 - - type: AtmosDevice - joinedGrid: 33 - uid: 25738 components: - type: Transform @@ -14129,8 +14018,6 @@ entities: - 20707 - 20708 - 20709 - - type: AtmosDevice - joinedGrid: 33 - uid: 25740 components: - type: Transform @@ -14145,8 +14032,6 @@ entities: - 18722 - 20015 - 20014 - - type: AtmosDevice - joinedGrid: 33 - uid: 25741 components: - type: Transform @@ -14179,8 +14064,6 @@ entities: - 20104 - 20034 - 20037 - - type: AtmosDevice - joinedGrid: 33 - uid: 25742 components: - type: Transform @@ -14199,8 +14082,6 @@ entities: - 20645 - 20623 - 20646 - - type: AtmosDevice - joinedGrid: 33 - uid: 25745 components: - type: Transform @@ -14214,8 +14095,6 @@ entities: - 20590 - 20591 - 20606 - - type: AtmosDevice - joinedGrid: 33 - uid: 25753 components: - type: Transform @@ -14233,8 +14112,6 @@ entities: - 19986 - 20014 - 20015 - - type: AtmosDevice - joinedGrid: 33 - uid: 25755 components: - type: Transform @@ -14245,8 +14122,6 @@ entities: - 17792 - 19884 - 19883 - - type: AtmosDevice - joinedGrid: 33 - uid: 25759 components: - type: Transform @@ -14265,8 +14140,6 @@ entities: - 19832 - 19833 - 19722 - - type: AtmosDevice - joinedGrid: 33 - uid: 25761 components: - type: Transform @@ -14286,8 +14159,6 @@ entities: - 19744 - 19792 - 19793 - - type: AtmosDevice - joinedGrid: 33 - uid: 25768 components: - type: Transform @@ -14315,8 +14186,6 @@ entities: - 27235 - 22521 - 22522 - - type: AtmosDevice - joinedGrid: 33 - uid: 25789 components: - type: Transform @@ -14334,8 +14203,6 @@ entities: - 10856 - 21690 - 21688 - - type: AtmosDevice - joinedGrid: 33 - uid: 25795 components: - type: Transform @@ -14365,8 +14232,6 @@ entities: - 21765 - 21786 - 21785 - - type: AtmosDevice - joinedGrid: 33 - uid: 25802 components: - type: Transform @@ -14388,8 +14253,6 @@ entities: - 21903 - 21806 - 24268 - - type: AtmosDevice - joinedGrid: 33 - uid: 25804 components: - type: Transform @@ -14405,8 +14268,6 @@ entities: - 21826 - 21827 - 21829 - - type: AtmosDevice - joinedGrid: 33 - uid: 25810 components: - type: Transform @@ -14445,8 +14306,6 @@ entities: - 10854 - 23444 - 23445 - - type: AtmosDevice - joinedGrid: 33 - uid: 25820 components: - type: Transform @@ -14478,8 +14337,6 @@ entities: - 23460 - 23459 - 23479 - - type: AtmosDevice - joinedGrid: 33 - uid: 25822 components: - type: Transform @@ -14514,8 +14371,6 @@ entities: - 22284 - 22281 - 22287 - - type: AtmosDevice - joinedGrid: 33 - uid: 25828 components: - type: Transform @@ -14533,8 +14388,6 @@ entities: - 23615 - 23616 - 23613 - - type: AtmosDevice - joinedGrid: 33 - uid: 25837 components: - type: Transform @@ -14575,8 +14428,6 @@ entities: - 23612 - 23685 - 23658 - - type: AtmosDevice - joinedGrid: 33 - uid: 25841 components: - type: Transform @@ -14600,8 +14451,6 @@ entities: - 23223 - 23259 - 23260 - - type: AtmosDevice - joinedGrid: 33 - uid: 25847 components: - type: Transform @@ -14621,8 +14470,6 @@ entities: - 27972 - 23638 - 27970 - - type: AtmosDevice - joinedGrid: 33 - uid: 25854 components: - type: Transform @@ -14647,8 +14494,6 @@ entities: - 2940 - 23689 - 23709 - - type: AtmosDevice - joinedGrid: 33 - uid: 25875 components: - type: Transform @@ -14686,8 +14531,6 @@ entities: - 10876 - 23226 - 23227 - - type: AtmosDevice - joinedGrid: 33 - uid: 25886 components: - type: Transform @@ -14727,8 +14570,6 @@ entities: - 22662 - 22803 - 22802 - - type: AtmosDevice - joinedGrid: 33 - uid: 25895 components: - type: Transform @@ -14756,8 +14597,6 @@ entities: - 22387 - 12895 - 12896 - - type: AtmosDevice - joinedGrid: 33 - uid: 25897 components: - type: Transform @@ -14772,8 +14611,6 @@ entities: - 11410 - 22442 - 22458 - - type: AtmosDevice - joinedGrid: 33 - uid: 25899 components: - type: Transform @@ -14789,8 +14626,6 @@ entities: - 10868 - 22459 - 22443 - - type: AtmosDevice - joinedGrid: 33 - uid: 25901 components: - type: Transform @@ -14805,8 +14640,6 @@ entities: - 22417 - 22418 - 3002 - - type: AtmosDevice - joinedGrid: 33 - uid: 26796 components: - type: Transform @@ -14820,8 +14653,6 @@ entities: - 26808 - 26798 - 26799 - - type: AtmosDevice - joinedGrid: 33 - uid: 27239 components: - type: Transform @@ -14838,8 +14669,6 @@ entities: - 27235 - 27233 - 27234 - - type: AtmosDevice - joinedGrid: 33 - uid: 27551 components: - type: Transform @@ -14854,8 +14683,6 @@ entities: - 27544 - 27543 - 27531 - - type: AtmosDevice - joinedGrid: 33 - uid: 28398 components: - type: Transform @@ -14876,8 +14703,6 @@ entities: - 27155 - 27175 - 27174 - - type: AtmosDevice - joinedGrid: 33 - uid: 28404 components: - type: Transform @@ -14896,8 +14721,6 @@ entities: - 13771 - 12435 - 12431 - - type: AtmosDevice - joinedGrid: 33 - uid: 28405 components: - type: Transform @@ -14914,8 +14737,6 @@ entities: - 25167 - 25033 - 25160 - - type: AtmosDevice - joinedGrid: 33 - uid: 28408 components: - type: Transform @@ -14934,8 +14755,6 @@ entities: - 23607 - 27937 - 23600 - - type: AtmosDevice - joinedGrid: 33 - uid: 28416 components: - type: Transform @@ -14969,8 +14788,6 @@ entities: - 25512 - 21688 - 21690 - - type: AtmosDevice - joinedGrid: 33 - uid: 28421 components: - type: Transform @@ -14992,8 +14809,6 @@ entities: - 22204 - 23554 - 23553 - - type: AtmosDevice - joinedGrid: 33 - uid: 28422 components: - type: Transform @@ -15008,8 +14823,6 @@ entities: - 10818 - 22205 - 22202 - - type: AtmosDevice - joinedGrid: 33 - uid: 28427 components: - type: Transform @@ -15029,8 +14842,6 @@ entities: - 28431 - 20262 - 20263 - - type: AtmosDevice - joinedGrid: 33 - uid: 28449 components: - type: Transform @@ -15053,8 +14864,6 @@ entities: - 22608 - 24668 - 22609 - - type: AtmosDevice - joinedGrid: 33 - uid: 28452 components: - type: Transform @@ -15068,8 +14877,6 @@ entities: - 28451 - 22898 - 22899 - - type: AtmosDevice - joinedGrid: 33 - uid: 28454 components: - type: Transform @@ -15086,8 +14893,6 @@ entities: - 24308 - 24309 - 24325 - - type: AtmosDevice - joinedGrid: 33 - uid: 28460 components: - type: Transform @@ -15111,8 +14916,6 @@ entities: - 21522 - 21561 - 23929 - - type: AtmosDevice - joinedGrid: 33 - uid: 28463 components: - type: Transform @@ -15134,8 +14937,6 @@ entities: - 24343 - 21588 - 21602 - - type: AtmosDevice - joinedGrid: 33 - uid: 28465 components: - type: Transform @@ -15154,8 +14955,6 @@ entities: - 21618 - 28487 - 28486 - - type: AtmosDevice - joinedGrid: 33 - uid: 28469 components: - type: Transform @@ -15175,8 +14974,6 @@ entities: - 5192 - 16269 - 14914 - - type: AtmosDevice - joinedGrid: 33 - uid: 28489 components: - type: Transform @@ -15197,8 +14994,6 @@ entities: - 28492 - 28491 - 5192 - - type: AtmosDevice - joinedGrid: 33 - uid: 28495 components: - type: Transform @@ -15214,8 +15009,6 @@ entities: - 16226 - 16220 - 1751 - - type: AtmosDevice - joinedGrid: 33 - uid: 28506 components: - type: Transform @@ -15235,8 +15028,6 @@ entities: - 5307 - 5309 - 16718 - - type: AtmosDevice - joinedGrid: 33 - uid: 28507 components: - type: Transform @@ -15255,8 +15046,6 @@ entities: - 10948 - 21433 - 21395 - - type: AtmosDevice - joinedGrid: 33 - uid: 28513 components: - type: Transform @@ -15273,8 +15062,6 @@ entities: - 10951 - 27298 - 23067 - - type: AtmosDevice - joinedGrid: 33 - uid: 28519 components: - type: Transform @@ -15293,8 +15080,6 @@ entities: - 21368 - 21357 - 21364 - - type: AtmosDevice - joinedGrid: 33 - uid: 28523 components: - type: Transform @@ -15313,8 +15098,6 @@ entities: - 12704 - 27072 - 27071 - - type: AtmosDevice - joinedGrid: 33 - uid: 29558 components: - type: Transform @@ -15338,8 +15121,6 @@ entities: - 24677 - 29239 - 9530 - - type: AtmosDevice - joinedGrid: 33 - uid: 29569 components: - type: Transform @@ -15363,8 +15144,6 @@ entities: - 29272 - 29313 - 29271 - - type: AtmosDevice - joinedGrid: 33 - proto: AirAlarmElectronics entities: - uid: 683 @@ -15379,57 +15158,41 @@ entities: - type: Transform pos: 43.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10188 components: - type: Transform pos: 56.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 17048 components: - type: Transform pos: -41.5,-29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 17092 components: - type: Transform pos: -86.5,-31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 17821 components: - type: Transform pos: 21.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18188 components: - type: Transform pos: 4.5,90.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 20770 components: - type: Transform pos: -69.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28260 components: - type: Transform pos: -98.5,-74.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: Airlock entities: - uid: 2610 @@ -17799,8 +17562,6 @@ entities: - type: Transform pos: -30.5,-4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 25538 components: - type: Transform @@ -18730,7 +18491,6 @@ entities: solutions: jar: temperature: 293.15 - canMix: False canReact: True maxVol: 120 name: null @@ -18752,7 +18512,6 @@ entities: solutions: jar: temperature: 293.15 - canMix: False canReact: True maxVol: 120 name: null @@ -20624,8 +20383,6 @@ entities: rot: 3.141592653589793 rad pos: -55.5,0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: Basketball entities: - uid: 8385 @@ -21643,14 +21400,6 @@ entities: rot: 1.5707963267948966 rad pos: -76.51335,-35.429653 parent: 33 -- proto: BookChefGaming - entities: - - uid: 25928 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5080593,34.57378 - parent: 33 - proto: BookChemicalCompendium entities: - uid: 27378 @@ -21671,6 +21420,14 @@ entities: - type: Transform pos: 46.139095,0.6832877 parent: 33 +- proto: BookHowToCookForFortySpaceman + entities: + - uid: 25928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5080593,34.57378 + parent: 33 - proto: BookHowToSurvive entities: - uid: 8597 @@ -52851,15 +52608,11 @@ entities: - type: Transform pos: 39.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10182 components: - type: Transform pos: 55.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: CargoPallet entities: - uid: 182 @@ -59392,6 +59145,8 @@ entities: - type: Transform pos: -40.5,-29.5 parent: 33 + - type: Strap + enabled: False - type: Foldable folded: True - uid: 25354 @@ -59411,6 +59166,8 @@ entities: - type: Transform pos: 3.5,90.5 parent: 33 + - type: Strap + enabled: False - type: Foldable folded: True - uid: 25357 @@ -59418,6 +59175,8 @@ entities: - type: Transform pos: 29.5,30.5 parent: 33 + - type: Strap + enabled: False - type: Foldable folded: True - uid: 25737 @@ -60697,23 +60456,6 @@ entities: - type: Transform pos: -39.490566,-19.423286 parent: 33 -- proto: chem_master - entities: - - uid: 3922 - components: - - type: Transform - pos: -51.5,5.5 - parent: 33 - - uid: 4007 - components: - - type: Transform - pos: -50.5,2.5 - parent: 33 - - uid: 12659 - components: - - type: Transform - pos: 16.5,12.5 - parent: 33 - proto: ChemDispenser entities: - uid: 3921 @@ -60782,6 +60524,23 @@ entities: - type: Transform pos: -76.5,-7.5 parent: 33 +- proto: ChemMaster + entities: + - uid: 3922 + components: + - type: Transform + pos: -51.5,5.5 + parent: 33 + - uid: 4007 + components: + - type: Transform + pos: -50.5,2.5 + parent: 33 + - uid: 12659 + components: + - type: Transform + pos: 16.5,12.5 + parent: 33 - proto: ChiliSeeds entities: - uid: 27395 @@ -60974,7 +60733,6 @@ entities: solutions: tank: temperature: 293.15 - canMix: False canReact: True maxVol: 5000 name: null @@ -60991,7 +60749,6 @@ entities: solutions: tank: temperature: 293.15 - canMix: False canReact: True maxVol: 5000 name: null @@ -62309,14 +62066,6 @@ entities: - type: Transform pos: -1.5833335,34.394047 parent: 33 -- proto: ClothingHeadHatHairflower - entities: - - uid: 9381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.524541,8.770387 - parent: 33 - proto: ClothingHeadHatHardhatOrange entities: - uid: 10923 @@ -62495,6 +62244,13 @@ entities: - type: Transform pos: -100.45929,8.641571 parent: 33 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 24476 + components: + - type: Transform + pos: -96.41625,35.611954 + parent: 33 - proto: ClothingHeadHelmetCosmonaut entities: - uid: 24334 @@ -62521,13 +62277,6 @@ entities: - type: Transform pos: 48.565704,21.575739 parent: 33 -- proto: ClothingHeadHelmetScaf - entities: - - uid: 24476 - components: - - type: Transform - pos: -96.41625,35.611954 - parent: 33 - proto: ClothingHeadHelmetTemplar entities: - uid: 16302 @@ -65387,7 +65136,7 @@ entities: - type: Transform pos: -91.5,-19.5 parent: 33 -- proto: CrateFunPlushie +- proto: CrateFunToyBox entities: - uid: 24389 components: @@ -66354,15 +66103,11 @@ entities: - type: Transform pos: -69.5,2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 20765 components: - type: Transform pos: -69.5,4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: d6Dice entities: - uid: 1721 @@ -75386,7 +75131,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -75403,7 +75147,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -75485,7 +75228,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -75502,7 +75244,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -75633,7 +75374,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -75712,7 +75452,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 100 name: null @@ -75876,7 +75615,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 100 name: null @@ -77770,8 +77508,6 @@ entities: - 29744 - 25775 - 27330 - - type: AtmosDevice - joinedGrid: 33 - uid: 232 components: - type: Transform @@ -77788,8 +77524,6 @@ entities: - 7930 - 29745 - 29744 - - type: AtmosDevice - joinedGrid: 33 - uid: 233 components: - type: Transform @@ -77805,8 +77539,6 @@ entities: - 2537 - 7141 - 25797 - - type: AtmosDevice - joinedGrid: 33 - uid: 352 components: - type: Transform @@ -77832,8 +77564,6 @@ entities: - 16358 - 16357 - 16356 - - type: AtmosDevice - joinedGrid: 33 - uid: 366 components: - type: Transform @@ -77845,8 +77575,6 @@ entities: - 29546 - 29543 - 29544 - - type: AtmosDevice - joinedGrid: 33 - uid: 481 components: - type: Transform @@ -77872,8 +77600,6 @@ entities: - 10856 - 28410 - 25513 - - type: AtmosDevice - joinedGrid: 33 - uid: 542 components: - type: Transform @@ -77892,8 +77618,6 @@ entities: - 25730 - 25752 - 29042 - - type: AtmosDevice - joinedGrid: 33 - uid: 573 components: - type: Transform @@ -77920,15 +77644,11 @@ entities: - 25729 - 25718 - 25726 - - type: AtmosDevice - joinedGrid: 33 - uid: 1045 components: - type: Transform pos: -16.5,85.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 4439 components: - type: Transform @@ -77939,8 +77659,6 @@ entities: devices: - 25717 - 29042 - - type: AtmosDevice - joinedGrid: 33 - uid: 12840 components: - type: Transform @@ -77954,8 +77672,6 @@ entities: - 24277 - 25703 - 28431 - - type: AtmosDevice - joinedGrid: 33 - uid: 15225 components: - type: Transform @@ -77985,8 +77701,6 @@ entities: - 3256 - 25476 - 26153 - - type: AtmosDevice - joinedGrid: 33 - uid: 21517 components: - type: Transform @@ -78002,8 +77716,6 @@ entities: - 25608 - 28494 - 30530 - - type: AtmosDevice - joinedGrid: 33 - uid: 24154 components: - type: Transform @@ -78014,8 +77726,6 @@ entities: devices: - 24250 - 24260 - - type: AtmosDevice - joinedGrid: 33 - uid: 24261 components: - type: Transform @@ -78047,8 +77757,6 @@ entities: - 10937 - 3238 - 3257 - - type: AtmosDevice - joinedGrid: 33 - uid: 24276 components: - type: Transform @@ -78067,8 +77775,6 @@ entities: - 10872 - 10831 - 3002 - - type: AtmosDevice - joinedGrid: 33 - uid: 24397 components: - type: Transform @@ -78094,8 +77800,6 @@ entities: - 25782 - 25809 - 25808 - - type: AtmosDevice - joinedGrid: 33 - uid: 24672 components: - type: Transform @@ -78116,8 +77820,6 @@ entities: - 24264 - 25877 - 24263 - - type: AtmosDevice - joinedGrid: 33 - uid: 24684 components: - type: Transform @@ -78145,8 +77847,6 @@ entities: - 28391 - 28390 - 28394 - - type: AtmosDevice - joinedGrid: 33 - uid: 25325 components: - type: Transform @@ -78170,8 +77870,6 @@ entities: - 2079 - 28395 - 2134 - - type: AtmosDevice - joinedGrid: 33 - uid: 25525 components: - type: Transform @@ -78187,8 +77885,6 @@ entities: - 24270 - 24256 - 24257 - - type: AtmosDevice - joinedGrid: 33 - uid: 25527 components: - type: Transform @@ -78204,8 +77900,6 @@ entities: - 24250 - 24259 - 24258 - - type: AtmosDevice - joinedGrid: 33 - uid: 25529 components: - type: Transform @@ -78235,8 +77929,6 @@ entities: - 10958 - 28450 - 10947 - - type: AtmosDevice - joinedGrid: 33 - uid: 25537 components: - type: Transform @@ -78256,8 +77948,6 @@ entities: - 28503 - 28500 - 28501 - - type: AtmosDevice - joinedGrid: 33 - uid: 25542 components: - type: Transform @@ -78274,8 +77964,6 @@ entities: - 21648 - 21649 - 25543 - - type: AtmosDevice - joinedGrid: 33 - uid: 25548 components: - type: Transform @@ -78289,8 +77977,6 @@ entities: - 27557 - 28510 - 28511 - - type: AtmosDevice - joinedGrid: 33 - uid: 25551 components: - type: Transform @@ -78306,8 +77992,6 @@ entities: - 27558 - 25559 - 27556 - - type: AtmosDevice - joinedGrid: 33 - uid: 25569 components: - type: Transform @@ -78319,8 +78003,6 @@ entities: - 25585 - 28511 - 25495 - - type: AtmosDevice - joinedGrid: 33 - uid: 25571 components: - type: Transform @@ -78331,8 +78013,6 @@ entities: - 25582 - 25575 - 4156 - - type: AtmosDevice - joinedGrid: 33 - uid: 25578 components: - type: Transform @@ -78360,8 +78040,6 @@ entities: - 25351 - 5039 - 5421 - - type: AtmosDevice - joinedGrid: 33 - uid: 25587 components: - type: Transform @@ -78378,8 +78056,6 @@ entities: - 25575 - 4156 - 1751 - - type: AtmosDevice - joinedGrid: 33 - uid: 25589 components: - type: Transform @@ -78395,8 +78071,6 @@ entities: - 21645 - 21644 - 25593 - - type: AtmosDevice - joinedGrid: 33 - uid: 25596 components: - type: Transform @@ -78406,8 +78080,6 @@ entities: devices: - 25597 - 25594 - - type: AtmosDevice - joinedGrid: 33 - uid: 25623 components: - type: Transform @@ -78418,8 +78090,6 @@ entities: devices: - 25610 - 25598 - - type: AtmosDevice - joinedGrid: 33 - uid: 25627 components: - type: Transform @@ -78433,8 +78103,6 @@ entities: - 28499 - 28498 - 28497 - - type: AtmosDevice - joinedGrid: 33 - uid: 25638 components: - type: Transform @@ -78453,8 +78121,6 @@ entities: - 25604 - 25614 - 28459 - - type: AtmosDevice - joinedGrid: 33 - uid: 25640 components: - type: Transform @@ -78470,8 +78136,6 @@ entities: - 306 - 304 - 25621 - - type: AtmosDevice - joinedGrid: 33 - uid: 25661 components: - type: Transform @@ -78487,8 +78151,6 @@ entities: - 28434 - 25500 - 25593 - - type: AtmosDevice - joinedGrid: 33 - uid: 25663 components: - type: Transform @@ -78501,8 +78163,6 @@ entities: - 25501 - 25659 - 25647 - - type: AtmosDevice - joinedGrid: 33 - uid: 25665 components: - type: Transform @@ -78519,8 +78179,6 @@ entities: - 25656 - 25652 - 10931 - - type: AtmosDevice - joinedGrid: 33 - uid: 25667 components: - type: Transform @@ -78531,8 +78189,6 @@ entities: devices: - 28433 - 25656 - - type: AtmosDevice - joinedGrid: 33 - uid: 25669 components: - type: Transform @@ -78550,8 +78206,6 @@ entities: - 10931 - 25655 - 10912 - - type: AtmosDevice - joinedGrid: 33 - uid: 25671 components: - type: Transform @@ -78564,8 +78218,6 @@ entities: - 10908 - 25652 - 10912 - - type: AtmosDevice - joinedGrid: 33 - uid: 25673 components: - type: Transform @@ -78598,8 +78250,6 @@ entities: - 10911 - 25749 - 25750 - - type: AtmosDevice - joinedGrid: 33 - uid: 25680 components: - type: Transform @@ -78626,8 +78276,6 @@ entities: - 10958 - 10959 - 10960 - - type: AtmosDevice - joinedGrid: 33 - uid: 25685 components: - type: Transform @@ -78642,8 +78290,6 @@ entities: - 25690 - 25689 - 25686 - - type: AtmosDevice - joinedGrid: 33 - uid: 25692 components: - type: Transform @@ -78674,8 +78320,6 @@ entities: - 10903 - 25682 - 25758 - - type: AtmosDevice - joinedGrid: 33 - uid: 25695 components: - type: Transform @@ -78687,8 +78331,6 @@ entities: - 25687 - 25690 - 25688 - - type: AtmosDevice - joinedGrid: 33 - uid: 25697 components: - type: Transform @@ -78706,8 +78348,6 @@ entities: - 10906 - 25655 - 10908 - - type: AtmosDevice - joinedGrid: 33 - uid: 25702 components: - type: Transform @@ -78726,8 +78366,6 @@ entities: - 25699 - 10906 - 10907 - - type: AtmosDevice - joinedGrid: 33 - uid: 25706 components: - type: Transform @@ -78742,8 +78380,6 @@ entities: - 25704 - 25703 - 21651 - - type: AtmosDevice - joinedGrid: 33 - uid: 25711 components: - type: Transform @@ -78753,8 +78389,6 @@ entities: devices: - 25708 - 10897 - - type: AtmosDevice - joinedGrid: 33 - uid: 25713 components: - type: Transform @@ -78771,8 +78405,6 @@ entities: - 10897 - 25703 - 21651 - - type: AtmosDevice - joinedGrid: 33 - uid: 25734 components: - type: Transform @@ -78783,8 +78415,6 @@ entities: - 25716 - 25717 - 25729 - - type: AtmosDevice - joinedGrid: 33 - uid: 25739 components: - type: Transform @@ -78801,8 +78431,6 @@ entities: - 25716 - 10899 - 10900 - - type: AtmosDevice - joinedGrid: 33 - uid: 25743 components: - type: Transform @@ -78813,8 +78441,6 @@ entities: - 25716 - 25717 - 25727 - - type: AtmosDevice - joinedGrid: 33 - uid: 25746 components: - type: Transform @@ -78824,8 +78450,6 @@ entities: devices: - 25728 - 25723 - - type: AtmosDevice - joinedGrid: 33 - uid: 25747 components: - type: Transform @@ -78839,8 +78463,6 @@ entities: - 400 - 25784 - 324 - - type: AtmosDevice - joinedGrid: 33 - uid: 25754 components: - type: Transform @@ -78852,8 +78474,6 @@ entities: - 21658 - 25752 - 25505 - - type: AtmosDevice - joinedGrid: 33 - uid: 25756 components: - type: Transform @@ -78862,8 +78482,6 @@ entities: - type: DeviceList devices: - 17792 - - type: AtmosDevice - joinedGrid: 33 - uid: 25760 components: - type: Transform @@ -78879,8 +78497,6 @@ entities: - 25510 - 21655 - 21654 - - type: AtmosDevice - joinedGrid: 33 - uid: 25762 components: - type: Transform @@ -78896,8 +78512,6 @@ entities: - 28418 - 25508 - 25507 - - type: AtmosDevice - joinedGrid: 33 - uid: 25769 components: - type: Transform @@ -78919,8 +78533,6 @@ entities: - 10887 - 10886 - 10863 - - type: AtmosDevice - joinedGrid: 33 - uid: 25790 components: - type: Transform @@ -78936,8 +78548,6 @@ entities: - 10865 - 10811 - 10856 - - type: AtmosDevice - joinedGrid: 33 - uid: 25803 components: - type: Transform @@ -78955,8 +78565,6 @@ entities: - 25774 - 13028 - 25302 - - type: AtmosDevice - joinedGrid: 33 - uid: 25805 components: - type: Transform @@ -78968,8 +78576,6 @@ entities: - 28414 - 25779 - 25796 - - type: AtmosDevice - joinedGrid: 33 - uid: 25811 components: - type: Transform @@ -79006,8 +78612,6 @@ entities: - 10852 - 10853 - 10854 - - type: AtmosDevice - joinedGrid: 33 - uid: 25821 components: - type: Transform @@ -79027,8 +78631,6 @@ entities: - 10809 - 28410 - 25515 - - type: AtmosDevice - joinedGrid: 33 - uid: 25823 components: - type: Transform @@ -79057,8 +78659,6 @@ entities: - 10887 - 10886 - 10863 - - type: AtmosDevice - joinedGrid: 33 - uid: 25829 components: - type: Transform @@ -79072,8 +78672,6 @@ entities: - 10843 - 28401 - 25518 - - type: AtmosDevice - joinedGrid: 33 - uid: 25838 components: - type: Transform @@ -79110,8 +78708,6 @@ entities: - 25839 - 2503 - 2502 - - type: AtmosDevice - joinedGrid: 33 - uid: 25842 components: - type: Transform @@ -79129,8 +78725,6 @@ entities: - 28399 - 2503 - 2502 - - type: AtmosDevice - joinedGrid: 33 - uid: 25848 components: - type: Transform @@ -79144,8 +78738,6 @@ entities: - 10844 - 28401 - 25849 - - type: AtmosDevice - joinedGrid: 33 - uid: 25853 components: - type: Transform @@ -79168,8 +78760,6 @@ entities: - 8178 - 13761 - 2940 - - type: AtmosDevice - joinedGrid: 33 - uid: 25876 components: - type: Transform @@ -79205,8 +78795,6 @@ entities: - 10874 - 10875 - 10876 - - type: AtmosDevice - joinedGrid: 33 - uid: 25896 components: - type: Transform @@ -79226,8 +78814,6 @@ entities: - 25893 - 25881 - 25892 - - type: AtmosDevice - joinedGrid: 33 - uid: 25898 components: - type: Transform @@ -79240,8 +78826,6 @@ entities: - 25877 - 12796 - 11410 - - type: AtmosDevice - joinedGrid: 33 - uid: 25900 components: - type: Transform @@ -79255,8 +78839,6 @@ entities: - 25877 - 4518 - 10868 - - type: AtmosDevice - joinedGrid: 33 - uid: 25902 components: - type: Transform @@ -79270,8 +78852,6 @@ entities: - 25883 - 25891 - 3002 - - type: AtmosDevice - joinedGrid: 33 - uid: 26797 components: - type: Transform @@ -79283,8 +78863,6 @@ entities: - 21649 - 21648 - 26808 - - type: AtmosDevice - joinedGrid: 33 - uid: 27240 components: - type: Transform @@ -79298,8 +78876,6 @@ entities: - 21656 - 21650 - 21658 - - type: AtmosDevice - joinedGrid: 33 - uid: 27550 components: - type: Transform @@ -79310,8 +78886,6 @@ entities: devices: - 27547 - 27558 - - type: AtmosDevice - joinedGrid: 33 - uid: 28397 components: - type: Transform @@ -79329,8 +78903,6 @@ entities: - 27157 - 27154 - 27155 - - type: AtmosDevice - joinedGrid: 33 - uid: 28403 components: - type: Transform @@ -79346,8 +78918,6 @@ entities: - 16359 - 25861 - 13771 - - type: AtmosDevice - joinedGrid: 33 - uid: 28406 components: - type: Transform @@ -79360,8 +78930,6 @@ entities: - 13771 - 25856 - 16360 - - type: AtmosDevice - joinedGrid: 33 - uid: 28409 components: - type: Transform @@ -79374,8 +78942,6 @@ entities: - 28400 - 28401 - 28407 - - type: AtmosDevice - joinedGrid: 33 - uid: 28417 components: - type: Transform @@ -79407,8 +78973,6 @@ entities: - 28410 - 25511 - 25512 - - type: AtmosDevice - joinedGrid: 33 - uid: 28420 components: - type: Transform @@ -79426,8 +78990,6 @@ entities: - 10818 - 28410 - 25514 - - type: AtmosDevice - joinedGrid: 33 - uid: 28423 components: - type: Transform @@ -79440,8 +79002,6 @@ entities: - 199 - 25771 - 10818 - - type: AtmosDevice - joinedGrid: 33 - uid: 28425 components: - type: Transform @@ -79454,8 +79014,6 @@ entities: - 28429 - 25699 - 28432 - - type: AtmosDevice - joinedGrid: 33 - uid: 28426 components: - type: Transform @@ -79473,8 +79031,6 @@ entities: - 25704 - 25718 - 28431 - - type: AtmosDevice - joinedGrid: 33 - uid: 28447 components: - type: Transform @@ -79510,8 +79066,6 @@ entities: - 28394 - 25476 - 26153 - - type: AtmosDevice - joinedGrid: 33 - uid: 28453 components: - type: Transform @@ -79523,8 +79077,6 @@ entities: - 10946 - 28450 - 28451 - - type: AtmosDevice - joinedGrid: 33 - uid: 28455 components: - type: Transform @@ -79536,8 +79088,6 @@ entities: - 10945 - 25616 - 28456 - - type: AtmosDevice - joinedGrid: 33 - uid: 28461 components: - type: Transform @@ -79555,8 +79105,6 @@ entities: - 28473 - 25616 - 25604 - - type: AtmosDevice - joinedGrid: 33 - uid: 28462 components: - type: Transform @@ -79573,8 +79121,6 @@ entities: - 25613 - 28468 - 28467 - - type: AtmosDevice - joinedGrid: 33 - uid: 28464 components: - type: Transform @@ -79590,8 +79136,6 @@ entities: - 304 - 28458 - 28466 - - type: AtmosDevice - joinedGrid: 33 - uid: 28470 components: - type: Transform @@ -79607,8 +79151,6 @@ entities: - 28434 - 5192 - 30529 - - type: AtmosDevice - joinedGrid: 33 - uid: 28488 components: - type: Transform @@ -79621,8 +79163,6 @@ entities: - 28473 - 25616 - 28459 - - type: AtmosDevice - joinedGrid: 33 - uid: 28490 components: - type: Transform @@ -79641,8 +79181,6 @@ entities: - 25677 - 10952 - 5192 - - type: AtmosDevice - joinedGrid: 33 - uid: 28496 components: - type: Transform @@ -79654,8 +79192,6 @@ entities: - 25610 - 28494 - 1751 - - type: AtmosDevice - joinedGrid: 33 - uid: 28505 components: - type: Transform @@ -79669,8 +79205,6 @@ entities: - 28500 - 28394 - 28504 - - type: AtmosDevice - joinedGrid: 33 - uid: 28508 components: - type: Transform @@ -79687,8 +79221,6 @@ entities: - 25678 - 10949 - 10948 - - type: AtmosDevice - joinedGrid: 33 - uid: 28514 components: - type: Transform @@ -79703,8 +79235,6 @@ entities: - 25677 - 10950 - 10951 - - type: AtmosDevice - joinedGrid: 33 - uid: 28520 components: - type: Transform @@ -79719,8 +79249,6 @@ entities: - 28516 - 25566 - 25585 - - type: AtmosDevice - joinedGrid: 33 - uid: 28524 components: - type: Transform @@ -79737,8 +79265,6 @@ entities: - 25348 - 28522 - 12704 - - type: AtmosDevice - joinedGrid: 33 - uid: 28731 components: - type: Transform @@ -79755,16 +79281,12 @@ entities: - 25555 - 25554 - 5421 - - type: AtmosDevice - joinedGrid: 33 - uid: 29556 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29559 components: - type: Transform @@ -79784,8 +79306,6 @@ entities: - 29557 - 11900 - 12670 - - type: AtmosDevice - joinedGrid: 33 - proto: FireAlarmElectronics entities: - uid: 682 @@ -82852,7 +82372,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null @@ -83121,6 +82640,11 @@ entities: parent: 33 - proto: FoodKebabSkewer entities: + - uid: 92 + components: + - type: Transform + pos: -88.48995,26.097357 + parent: 33 - uid: 3010 components: - type: Transform @@ -83131,6 +82655,12 @@ entities: - type: Transform pos: 0.46882874,27.036259 parent: 33 + - uid: 30218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.631565,116.57876 + parent: 33 - proto: FoodLemon entities: - uid: 23757 @@ -83394,14 +82924,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FoodMeatLizardtailKebab - entities: - - uid: 30218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.631565,116.57876 - parent: 33 - proto: FoodMeatMeatball entities: - uid: 8313 @@ -83424,13 +82946,6 @@ entities: - type: Transform pos: -1.3309157,38.465057 parent: 33 -- proto: FoodMeatRatdoubleKebab - entities: - - uid: 92 - components: - - type: Transform - pos: -88.48995,26.097357 - parent: 33 - proto: FoodMeatRotten entities: - uid: 10681 @@ -83569,6 +83084,14 @@ entities: - type: Transform pos: 37.97196,14.448521 parent: 33 +- proto: FoodPoppy + entities: + - uid: 9381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.524541,8.770387 + parent: 33 - proto: FoodPotato entities: - uid: 16409 @@ -83800,8 +83323,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10077 @@ -83810,16 +83331,12 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18283 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#3399FFFF' - uid: 19701 @@ -83827,8 +83344,6 @@ entities: - type: Transform pos: 54.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 19702 @@ -83836,8 +83351,6 @@ entities: - type: Transform pos: 54.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 24337 @@ -83846,16 +83359,12 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28605 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 28736 @@ -83864,8 +83373,6 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,62.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - proto: GasFilterFlipped @@ -83876,8 +83383,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66FF66FF' - uid: 8745 @@ -83886,8 +83391,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9924 @@ -83896,8 +83399,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9945 @@ -83906,8 +83407,6 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10070 @@ -83916,16 +83415,12 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10073 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10074 @@ -83934,8 +83429,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10323 @@ -83944,8 +83437,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 10324 @@ -83954,8 +83445,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 11895 @@ -83964,8 +83453,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18176 @@ -83974,8 +83461,6 @@ entities: rot: 3.141592653589793 rad pos: -65.5,2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#3399FFFF' - uid: 18271 @@ -83984,8 +83469,6 @@ entities: rot: 3.141592653589793 rad pos: -65.5,1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#3399FFFF' - uid: 19441 @@ -83994,8 +83477,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24776 @@ -84004,8 +83485,6 @@ entities: rot: 3.141592653589793 rad pos: 59.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 25925 @@ -84013,8 +83492,6 @@ entities: - type: Transform pos: 61.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 25939 @@ -84022,16 +83499,12 @@ entities: - type: Transform pos: 61.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28643 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 28644 @@ -84039,8 +83512,6 @@ entities: - type: Transform pos: 65.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - proto: GasMinerCarbonDioxide @@ -84050,8 +83521,6 @@ entities: - type: Transform pos: 39.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasMinerNitrogenStationLarge entities: - uid: 8673 @@ -84059,8 +83528,6 @@ entities: - type: Transform pos: 29.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasMinerOxygenStationLarge entities: - uid: 8674 @@ -84068,8 +83535,6 @@ entities: - type: Transform pos: 31.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasMinerWaterVapor entities: - uid: 8676 @@ -84077,8 +83542,6 @@ entities: - type: Transform pos: 37.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasMixer entities: - uid: 9929 @@ -84087,8 +83550,6 @@ entities: rot: 3.141592653589793 rad pos: 49.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#999900FF' - uid: 10033 @@ -84097,16 +83558,12 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10069 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66FF66FF' - uid: 10071 @@ -84115,8 +83572,6 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFCC99FF' - uid: 10146 @@ -84125,8 +83580,6 @@ entities: rot: 3.141592653589793 rad pos: 49.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#999900FF' - proto: GasMixerFlipped @@ -84137,8 +83590,6 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66FF66FF' - uid: 10031 @@ -84147,24 +83598,18 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10497 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,-20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 19447 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 20000 @@ -84173,16 +83618,12 @@ entities: rot: 3.141592653589793 rad pos: 50.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 25301 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 25416 @@ -84191,8 +83632,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 25417 @@ -84201,8 +83640,6 @@ entities: rot: 3.141592653589793 rad pos: 31.5,62.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27644 @@ -84211,8 +83648,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 27645 @@ -84221,8 +83656,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,62.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF007FFF' - uid: 28694 @@ -84231,8 +83664,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF66FFFF' - uid: 29649 @@ -84240,8 +83671,6 @@ entities: - type: Transform pos: 62.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasOutletInjector entities: - uid: 5081 @@ -84250,23 +83679,17 @@ entities: rot: 1.5707963267948966 rad pos: -82.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 5405 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,-20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 8665 components: - type: Transform pos: 29.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF6666FF' - uid: 8666 @@ -84274,8 +83697,6 @@ entities: - type: Transform pos: 31.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#33FFFFFF' - uid: 8667 @@ -84283,8 +83704,6 @@ entities: - type: Transform pos: 33.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF66FFFF' - uid: 8668 @@ -84292,15 +83711,11 @@ entities: - type: Transform pos: 35.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 8669 components: - type: Transform pos: 37.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 8670 @@ -84308,8 +83723,6 @@ entities: - type: Transform pos: 39.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#808080FF' - uid: 8671 @@ -84317,8 +83730,6 @@ entities: - type: Transform pos: 41.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFCC99FF' - uid: 10129 @@ -84326,15 +83737,11 @@ entities: - type: Transform pos: 52.5,79.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10130 components: - type: Transform pos: 50.5,79.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#999900FF' - uid: 27018 @@ -84343,8 +83750,6 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,75.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 28266 @@ -84353,15 +83758,11 @@ entities: rot: 3.141592653589793 rad pos: -100.5,-77.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29653 components: - type: Transform pos: 62.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasPassiveGate entities: - uid: 5400 @@ -84369,8 +83770,6 @@ entities: - type: Transform pos: -12.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66B2FFFF' - uid: 8631 @@ -84379,8 +83778,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 11406 @@ -84389,8 +83786,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,39.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66B2FFFF' - uid: 18559 @@ -84399,8 +83794,6 @@ entities: rot: 1.5707963267948966 rad pos: -64.5,2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20767 @@ -84409,8 +83802,6 @@ entities: rot: 1.5707963267948966 rad pos: -64.5,1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21078 @@ -84419,8 +83810,6 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,-13.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24137 @@ -84429,8 +83818,6 @@ entities: rot: -1.5707963267948966 rad pos: -89.5,-11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFFF66FF' - uid: 25573 @@ -84439,8 +83826,6 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,-7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27016 @@ -84449,8 +83834,6 @@ entities: rot: 1.5707963267948966 rad pos: 58.5,59.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - proto: GasPassiveVent @@ -84461,15 +83844,11 @@ entities: rot: 1.5707963267948966 rad pos: -82.5,-18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 8672 components: - type: Transform pos: 43.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9043 @@ -84478,8 +83857,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF6666FF' - uid: 9044 @@ -84488,8 +83865,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#33FFFFFF' - uid: 9045 @@ -84498,8 +83873,6 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF66FFFF' - uid: 9046 @@ -84508,16 +83881,12 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 9047 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 9048 @@ -84526,8 +83895,6 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#808080FF' - uid: 9049 @@ -84536,8 +83903,6 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFCC99FF' - uid: 9050 @@ -84546,8 +83911,6 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10094 @@ -84556,8 +83919,6 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16180 @@ -84566,8 +83927,6 @@ entities: rot: 3.141592653589793 rad pos: -90.5,-13.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFFF66FF' - uid: 25427 @@ -84576,16 +83935,12 @@ entities: rot: 3.141592653589793 rad pos: 57.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 27882 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 28267 @@ -84594,23 +83949,17 @@ entities: rot: 3.141592653589793 rad pos: -101.5,-81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28742 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29073 components: - type: Transform pos: 48.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 29074 @@ -84618,8 +83967,6 @@ entities: - type: Transform pos: 49.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 29075 @@ -84627,8 +83974,6 @@ entities: - type: Transform pos: 50.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 29076 @@ -84636,8 +83981,6 @@ entities: - type: Transform pos: 51.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 29077 @@ -84645,8 +83988,6 @@ entities: - type: Transform pos: 52.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 29078 @@ -84654,8 +83995,6 @@ entities: - type: Transform pos: 53.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 29079 @@ -84663,8 +84002,6 @@ entities: - type: Transform pos: 54.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 29176 @@ -84673,8 +84010,6 @@ entities: rot: 3.141592653589793 rad pos: 63.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 29640 @@ -84682,15 +84017,11 @@ entities: - type: Transform pos: 64.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29641 components: - type: Transform pos: 63.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasPipeBend entities: - uid: 1564 @@ -119898,85 +119229,63 @@ entities: rot: -1.5707963267948966 rad pos: -79.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 1824 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 4641 components: - type: Transform pos: -55.5,1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 5408 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 5465 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 7444 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 7916 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 7923 components: - type: Transform pos: 53.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 7942 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 9922 components: - type: Transform pos: 42.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 9956 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,60.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9957 @@ -119985,8 +119294,6 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,59.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10027 @@ -119995,32 +119302,24 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10028 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10058 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10062 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10083 @@ -120028,31 +119327,23 @@ entities: - type: Transform pos: 56.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10145 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10150 components: - type: Transform pos: 33.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10153 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 10199 @@ -120060,24 +119351,18 @@ entities: - type: Transform pos: 32.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 12636 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 13227 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 18910 @@ -120086,45 +119371,33 @@ entities: rot: 1.5707963267948966 rad pos: -68.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 19679 components: - type: Transform pos: 55.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 19703 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 20745 components: - type: Transform pos: -66.5,1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 25151 components: - type: Transform pos: 50.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 25907 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25910 @@ -120133,101 +119406,75 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28170 components: - type: Transform rot: -1.5707963267948966 rad pos: -98.5,-74.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28611 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28640 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28645 components: - type: Transform pos: 52.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28672 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,60.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28745 components: - type: Transform pos: 61.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28784 components: - type: Transform pos: 59.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29642 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29643 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29650 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29651 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29719 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 29720 @@ -120236,8 +119483,6 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 29736 @@ -120246,8 +119491,6 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 30463 @@ -120256,16 +119499,12 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 30464 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasPressurePump entities: - uid: 1047 @@ -120274,8 +119513,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,60.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 1796 @@ -120284,8 +119521,6 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5397 @@ -120294,23 +119529,17 @@ entities: rot: 1.5707963267948966 rad pos: -80.5,-18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 7914 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 7941 components: - type: Transform pos: 31.5,59.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8604 @@ -120319,8 +119548,6 @@ entities: rot: 1.5707963267948966 rad pos: -67.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#3399FFFF' - uid: 9925 @@ -120329,8 +119556,6 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66FF66FF' - uid: 9980 @@ -120339,8 +119564,6 @@ entities: rot: 3.141592653589793 rad pos: 65.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 10075 @@ -120349,23 +119572,17 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10143 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,72.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 11896 components: - type: Transform pos: 32.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 12562 @@ -120373,8 +119590,6 @@ entities: - type: Transform pos: 30.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9999FF' - uid: 13256 @@ -120382,8 +119597,6 @@ entities: - type: Transform pos: 42.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFCC99FF' - uid: 13413 @@ -120391,8 +119604,6 @@ entities: - type: Transform pos: 34.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF66FFFF' - uid: 13418 @@ -120400,15 +119611,11 @@ entities: - type: Transform pos: 36.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 13419 components: - type: Transform pos: 38.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 13422 @@ -120416,8 +119623,6 @@ entities: - type: Transform pos: 40.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#808080FF' - uid: 25286 @@ -120425,8 +119630,6 @@ entities: - type: Transform pos: 54.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 25303 @@ -120434,8 +119637,6 @@ entities: - type: Transform pos: 44.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26002 @@ -120443,8 +119644,6 @@ entities: - type: Transform pos: 61.5,72.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 28262 @@ -120453,23 +119652,17 @@ entities: rot: -1.5707963267948966 rad pos: -99.5,-74.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28270 components: - type: Transform pos: -101.5,-78.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28535 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 28786 @@ -120477,8 +119670,6 @@ entities: - type: Transform pos: 59.5,60.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 29646 @@ -120486,15 +119677,11 @@ entities: - type: Transform pos: 63.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29647 components: - type: Transform pos: 64.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasRecycler entities: - uid: 10200 @@ -120502,8 +119689,6 @@ entities: - type: Transform pos: 37.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66FF66FF' - proto: GasRecyclerMachineCircuitboard @@ -120521,15 +119706,11 @@ entities: - type: Transform pos: -77.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10476 components: - type: Transform pos: 41.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 12590 components: - type: Transform @@ -120537,8 +119718,6 @@ entities: parent: 33 - type: AtmosPipeColor color: '#FF1212FF' - - type: AtmosDevice - joinedGrid: 33 - uid: 18173 components: - type: Transform @@ -120547,8 +119726,6 @@ entities: parent: 33 - type: AtmosPipeColor color: '#3399FFFF' - - type: AtmosDevice - joinedGrid: 33 - uid: 19998 components: - type: Transform @@ -120557,8 +119734,6 @@ entities: parent: 33 - type: AtmosPipeColor color: '#999900FF' - - type: AtmosDevice - joinedGrid: 33 - uid: 25988 components: - type: Transform @@ -120567,8 +119742,6 @@ entities: parent: 33 - type: AtmosPipeColor color: '#FF9933FF' - - type: AtmosDevice - joinedGrid: 33 - uid: 29204 components: - type: Transform @@ -120577,8 +119750,6 @@ entities: parent: 33 - type: AtmosPipeColor color: '#0335FCFF' - - type: AtmosDevice - joinedGrid: 33 - proto: GasThermoMachineFreezerEnabled entities: - uid: 16527 @@ -120590,8 +119761,6 @@ entities: targetTemperature: 249.82 - type: AtmosPipeColor color: '#66B2FFFF' - - type: AtmosDevice - joinedGrid: 33 - uid: 20747 components: - type: Transform @@ -120601,8 +119770,6 @@ entities: targetTemperature: 249.8167 - type: AtmosPipeColor color: '#66B2FFFF' - - type: AtmosDevice - joinedGrid: 33 - proto: GasThermoMachineHeater entities: - uid: 10038 @@ -120612,8 +119779,6 @@ entities: parent: 33 - type: AtmosPipeColor color: '#66FF66FF' - - type: AtmosDevice - joinedGrid: 33 - uid: 10147 components: - type: Transform @@ -120622,15 +119787,11 @@ entities: parent: 33 - type: AtmosPipeColor color: '#999900FF' - - type: AtmosDevice - joinedGrid: 33 - uid: 16594 components: - type: Transform pos: -78.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 25986 components: - type: Transform @@ -120639,16 +119800,12 @@ entities: parent: 33 - type: AtmosPipeColor color: '#FF9933FF' - - type: AtmosDevice - joinedGrid: 33 - uid: 29652 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29692 components: - type: Transform @@ -120657,8 +119814,6 @@ entities: parent: 33 - type: AtmosPipeColor color: '#9933FFFF' - - type: AtmosDevice - joinedGrid: 33 - proto: GasThermoMachineHeaterEnabled entities: - uid: 18906 @@ -120670,8 +119825,6 @@ entities: targetTemperature: 310 - type: AtmosPipeColor color: '#FFFF66FF' - - type: AtmosDevice - joinedGrid: 33 - type: ActiveUserInterface - proto: GasValve entities: @@ -120683,8 +119836,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFCC99FF' - uid: 7959 @@ -120695,8 +119846,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF007FFF' - uid: 8703 @@ -120706,8 +119855,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 9923 @@ -120718,8 +119865,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF007FFF' - uid: 10049 @@ -120730,8 +119875,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 10050 @@ -120742,8 +119885,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#808080FF' - uid: 10051 @@ -120752,8 +119893,6 @@ entities: rot: 3.141592653589793 rad pos: 40.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#808080FF' - uid: 10067 @@ -120764,8 +119903,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF007FFF' - uid: 10781 @@ -120774,8 +119911,6 @@ entities: rot: 3.141592653589793 rad pos: 45.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12907 @@ -120784,8 +119919,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,40.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66B2FFFF' - uid: 13257 @@ -120793,8 +119926,6 @@ entities: - type: Transform pos: 31.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9999FF' - uid: 13480 @@ -120804,8 +119935,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9999FF' - uid: 19448 @@ -120813,8 +119942,6 @@ entities: - type: Transform pos: 32.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 19993 @@ -120824,8 +119951,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF66FFFF' - uid: 20124 @@ -120834,8 +119959,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,62.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66B2FFFF' - uid: 23885 @@ -120843,8 +119966,6 @@ entities: - type: Transform pos: -90.5,-10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFFF66FF' - uid: 27014 @@ -120855,8 +119976,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27634 @@ -120866,8 +119985,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 27646 @@ -120875,8 +119992,6 @@ entities: - type: Transform pos: 35.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF66FFFF' - uid: 28636 @@ -120885,8 +120000,6 @@ entities: rot: 3.141592653589793 rad pos: 38.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 28641 @@ -120895,8 +120008,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFCC99FF' - uid: 28642 @@ -120907,8 +120018,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF007FFF' - uid: 28698 @@ -120917,8 +120026,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28732 @@ -120928,8 +120035,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 28733 @@ -120940,8 +120045,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 28746 @@ -120952,8 +120055,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 29175 @@ -120964,8 +120065,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 29718 @@ -120974,8 +120073,6 @@ entities: rot: 3.141592653589793 rad pos: 64.5,60.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - proto: GasVentPump @@ -120986,8 +120083,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 1552 @@ -120996,8 +120091,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2237 @@ -121009,8 +120102,6 @@ entities: - type: DeviceNetwork deviceLists: - 24685 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3579 @@ -121018,8 +120109,6 @@ entities: - type: Transform pos: -77.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3583 @@ -121027,8 +120116,6 @@ entities: - type: Transform pos: -81.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5133 @@ -121037,8 +120124,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,-9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5144 @@ -121046,8 +120131,6 @@ entities: - type: Transform pos: -46.5,-7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5151 @@ -121056,8 +120139,6 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,-15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5152 @@ -121066,8 +120147,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5498 @@ -121075,8 +120154,6 @@ entities: - type: Transform pos: -68.5,12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7559 @@ -121085,8 +120162,6 @@ entities: rot: 3.141592653589793 rad pos: 51.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9378 @@ -121095,8 +120170,6 @@ entities: rot: -1.5707963267948966 rad pos: -76.5,12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10080 @@ -121104,8 +120177,6 @@ entities: - type: Transform pos: -23.5,92.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12431 @@ -121114,8 +120185,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-22.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12896 @@ -121124,8 +120193,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,42.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12908 @@ -121133,8 +120200,6 @@ entities: - type: Transform pos: -3.5,41.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66B2FFFF' - uid: 13226 @@ -121143,8 +120208,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13783 @@ -121153,8 +120216,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15192 @@ -121163,8 +120224,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-23.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16226 @@ -121173,8 +120232,6 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16269 @@ -121183,8 +120240,6 @@ entities: rot: 1.5707963267948966 rad pos: -73.5,13.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16718 @@ -121193,8 +120248,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17493 @@ -121203,8 +120256,6 @@ entities: rot: 3.141592653589793 rad pos: -64.5,3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18035 @@ -121213,8 +120264,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18722 @@ -121223,8 +120272,6 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,95.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19730 @@ -121233,8 +120280,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,55.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19792 @@ -121242,8 +120287,6 @@ entities: - type: Transform pos: 11.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19833 @@ -121251,8 +120294,6 @@ entities: - type: Transform pos: 13.5,75.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19884 @@ -121260,8 +120301,6 @@ entities: - type: Transform pos: 3.5,88.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19929 @@ -121269,8 +120308,6 @@ entities: - type: Transform pos: -3.5,82.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19986 @@ -121278,8 +120315,6 @@ entities: - type: Transform pos: -14.5,96.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20015 @@ -121288,8 +120323,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,89.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20034 @@ -121297,8 +120330,6 @@ entities: - type: Transform pos: -17.5,88.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20035 @@ -121307,8 +120338,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,82.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20059 @@ -121317,8 +120346,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,87.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20080 @@ -121327,8 +120354,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,85.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20105 @@ -121337,8 +120362,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,78.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20106 @@ -121347,8 +120370,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20107 @@ -121357,8 +120378,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,84.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20145 @@ -121367,8 +120386,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,78.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20192 @@ -121376,8 +120393,6 @@ entities: - type: Transform pos: -35.5,93.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20196 @@ -121385,8 +120400,6 @@ entities: - type: Transform pos: -42.5,76.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20200 @@ -121395,8 +120408,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20207 @@ -121404,8 +120415,6 @@ entities: - type: Transform pos: -46.5,79.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20208 @@ -121413,8 +120422,6 @@ entities: - type: Transform pos: -49.5,76.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20209 @@ -121423,8 +120430,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20263 @@ -121433,8 +120438,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,62.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20288 @@ -121443,8 +120446,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,50.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20316 @@ -121452,8 +120453,6 @@ entities: - type: Transform pos: -47.5,53.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20343 @@ -121462,8 +120461,6 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,43.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20355 @@ -121472,8 +120469,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,44.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20439 @@ -121482,8 +120477,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20440 @@ -121492,8 +120485,6 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20441 @@ -121502,8 +120493,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,30.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20470 @@ -121511,8 +120500,6 @@ entities: - type: Transform pos: -56.5,30.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20507 @@ -121521,8 +120508,6 @@ entities: rot: -1.5707963267948966 rad pos: -55.5,35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20508 @@ -121531,8 +120516,6 @@ entities: rot: 1.5707963267948966 rad pos: -61.5,34.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20509 @@ -121540,8 +120523,6 @@ entities: - type: Transform pos: -61.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20510 @@ -121550,8 +120531,6 @@ entities: rot: 1.5707963267948966 rad pos: -65.5,31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20520 @@ -121560,8 +120539,6 @@ entities: rot: 3.141592653589793 rad pos: -60.5,23.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20554 @@ -121570,8 +120547,6 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20561 @@ -121580,8 +120555,6 @@ entities: rot: 3.141592653589793 rad pos: -32.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20590 @@ -121589,8 +120562,6 @@ entities: - type: Transform pos: -19.5,75.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20591 @@ -121599,8 +120570,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,74.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20645 @@ -121608,8 +120577,6 @@ entities: - type: Transform pos: -11.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20646 @@ -121618,8 +120585,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,60.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66B2FFFF' - uid: 20659 @@ -121628,8 +120593,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20665 @@ -121637,8 +120600,6 @@ entities: - type: Transform pos: -7.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20684 @@ -121647,8 +120608,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20707 @@ -121657,8 +120616,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20709 @@ -121667,8 +120624,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20728 @@ -121677,8 +120632,6 @@ entities: rot: 3.141592653589793 rad pos: -67.5,21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20819 @@ -121686,8 +120639,6 @@ entities: - type: Transform pos: -89.5,9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20820 @@ -121696,8 +120647,6 @@ entities: rot: 3.141592653589793 rad pos: -90.5,4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20856 @@ -121706,8 +120655,6 @@ entities: rot: -1.5707963267948966 rad pos: -75.5,3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20857 @@ -121715,8 +120662,6 @@ entities: - type: Transform pos: -81.5,9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20860 @@ -121725,8 +120670,6 @@ entities: rot: 3.141592653589793 rad pos: -81.5,-3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20951 @@ -121734,8 +120677,6 @@ entities: - type: Transform pos: -91.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20952 @@ -121744,8 +120685,6 @@ entities: rot: -1.5707963267948966 rad pos: -87.5,20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20953 @@ -121754,8 +120693,6 @@ entities: rot: 1.5707963267948966 rad pos: -94.5,20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20954 @@ -121764,8 +120701,6 @@ entities: rot: 1.5707963267948966 rad pos: -94.5,16.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20955 @@ -121774,8 +120709,6 @@ entities: rot: -1.5707963267948966 rad pos: -87.5,16.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20956 @@ -121784,8 +120717,6 @@ entities: rot: -1.5707963267948966 rad pos: -90.5,18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21008 @@ -121794,8 +120725,6 @@ entities: rot: 1.5707963267948966 rad pos: -104.5,2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21009 @@ -121804,8 +120733,6 @@ entities: rot: 1.5707963267948966 rad pos: -104.5,8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21042 @@ -121814,8 +120741,6 @@ entities: rot: 3.141592653589793 rad pos: -92.5,-5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21081 @@ -121824,8 +120749,6 @@ entities: rot: 3.141592653589793 rad pos: -84.5,-9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21108 @@ -121833,8 +120756,6 @@ entities: - type: Transform pos: -78.5,-5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21109 @@ -121842,8 +120763,6 @@ entities: - type: Transform pos: -76.5,-2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21131 @@ -121851,8 +120770,6 @@ entities: - type: Transform pos: -84.5,-11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21140 @@ -121861,8 +120778,6 @@ entities: rot: 1.5707963267948966 rad pos: -79.5,-17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21207 @@ -121871,8 +120786,6 @@ entities: rot: 1.5707963267948966 rad pos: -91.5,-23.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21319 @@ -121881,8 +120794,6 @@ entities: rot: 1.5707963267948966 rad pos: -64.5,-40.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21338 @@ -121891,8 +120802,6 @@ entities: rot: 3.141592653589793 rad pos: -68.5,-36.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21364 @@ -121901,8 +120810,6 @@ entities: rot: 1.5707963267948966 rad pos: -71.5,-35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21368 @@ -121910,8 +120817,6 @@ entities: - type: Transform pos: -69.5,-29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21392 @@ -121920,8 +120825,6 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21395 @@ -121929,8 +120832,6 @@ entities: - type: Transform pos: -52.5,-10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21456 @@ -121939,8 +120840,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21486 @@ -121949,8 +120848,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21497 @@ -121959,8 +120856,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-28.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21522 @@ -121969,8 +120864,6 @@ entities: rot: 1.5707963267948966 rad pos: -67.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21589 @@ -121979,8 +120872,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21593 @@ -121989,8 +120880,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21602 @@ -121999,8 +120888,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21619 @@ -122009,8 +120896,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21641 @@ -122019,8 +120904,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21690 @@ -122029,8 +120912,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,52.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21731 @@ -122038,8 +120919,6 @@ entities: - type: Transform pos: 48.5,37.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21764 @@ -122047,8 +120926,6 @@ entities: - type: Transform pos: 48.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21765 @@ -122057,8 +120934,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21786 @@ -122067,8 +120942,6 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21828 @@ -122077,8 +120950,6 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21829 @@ -122087,8 +120958,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21898 @@ -122097,8 +120966,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21899 @@ -122107,8 +120974,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21900 @@ -122117,8 +120982,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21901 @@ -122126,8 +120989,6 @@ entities: - type: Transform pos: 27.5,19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21902 @@ -122136,8 +120997,6 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21952 @@ -122146,8 +121005,6 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22037 @@ -122156,8 +121013,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22096 @@ -122166,8 +121021,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22202 @@ -122176,8 +121029,6 @@ entities: rot: 3.141592653589793 rad pos: 22.5,46.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22284 @@ -122185,8 +121036,6 @@ entities: - type: Transform pos: 6.5,41.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22285 @@ -122195,8 +121044,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,27.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22287 @@ -122205,8 +121052,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,45.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22415 @@ -122215,8 +121060,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,46.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22416 @@ -122224,8 +121067,6 @@ entities: - type: Transform pos: -7.5,42.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22417 @@ -122234,8 +121075,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,33.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22448 @@ -122244,8 +121083,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22458 @@ -122254,8 +121091,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,27.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22459 @@ -122264,8 +121099,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,27.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22520 @@ -122273,8 +121106,6 @@ entities: - type: Transform pos: 3.5,55.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22522 @@ -122283,8 +121114,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,50.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22526 @@ -122292,8 +121121,6 @@ entities: - type: Transform pos: -26.5,52.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22537 @@ -122302,8 +121129,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,46.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22573 @@ -122312,8 +121137,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,39.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22631 @@ -122322,8 +121145,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,25.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22663 @@ -122331,8 +121152,6 @@ entities: - type: Transform pos: -25.5,21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22730 @@ -122341,8 +121160,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22731 @@ -122351,8 +121168,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22732 @@ -122360,8 +121175,6 @@ entities: - type: Transform pos: -26.5,13.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22743 @@ -122369,8 +121182,6 @@ entities: - type: Transform pos: -18.5,17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22744 @@ -122379,8 +121190,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22747 @@ -122389,8 +121198,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22748 @@ -122399,8 +121206,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22749 @@ -122409,8 +121214,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22750 @@ -122419,8 +121222,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22802 @@ -122429,8 +121230,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22882 @@ -122438,8 +121237,6 @@ entities: - type: Transform pos: -38.5,3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22899 @@ -122448,8 +121245,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22942 @@ -122458,8 +121253,6 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23003 @@ -122468,8 +121261,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23027 @@ -122477,8 +121268,6 @@ entities: - type: Transform pos: -52.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23064 @@ -122487,8 +121276,6 @@ entities: rot: 1.5707963267948966 rad pos: -77.5,-24.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23160 @@ -122496,8 +121283,6 @@ entities: - type: Transform pos: -72.5,4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23161 @@ -122506,8 +121291,6 @@ entities: rot: 3.141592653589793 rad pos: -72.5,-22.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23186 @@ -122515,8 +121298,6 @@ entities: - type: Transform pos: -13.5,29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23187 @@ -122524,8 +121305,6 @@ entities: - type: Transform pos: -17.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23222 @@ -122534,8 +121313,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23223 @@ -122544,8 +121321,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23227 @@ -122554,8 +121329,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,22.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23260 @@ -122563,8 +121336,6 @@ entities: - type: Transform pos: -8.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23279 @@ -122573,8 +121344,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23339 @@ -122586,8 +121355,6 @@ entities: - type: DeviceNetwork deviceLists: - 24685 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23358 @@ -122599,8 +121366,6 @@ entities: - type: DeviceNetwork deviceLists: - 24685 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23377 @@ -122609,8 +121374,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-33.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23406 @@ -122618,8 +121381,6 @@ entities: - type: Transform pos: -6.5,-8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23407 @@ -122628,8 +121389,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23445 @@ -122638,8 +121397,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23475 @@ -122647,8 +121404,6 @@ entities: - type: Transform pos: 19.5,28.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23478 @@ -122657,8 +121412,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23479 @@ -122667,8 +121420,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,27.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23526 @@ -122676,8 +121427,6 @@ entities: - type: Transform pos: 23.5,39.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23527 @@ -122686,8 +121435,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,36.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23528 @@ -122696,8 +121443,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,47.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23554 @@ -122706,8 +121451,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,39.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23615 @@ -122716,8 +121459,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23616 @@ -122725,8 +121466,6 @@ entities: - type: Transform pos: 11.5,16.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23617 @@ -122735,8 +121474,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23658 @@ -122745,8 +121482,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23709 @@ -122755,8 +121490,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23813 @@ -122765,8 +121498,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23929 @@ -122775,8 +121506,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24252 @@ -122785,8 +121514,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,74.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24268 @@ -122794,8 +121521,6 @@ entities: - type: Transform pos: 40.5,25.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24275 @@ -122804,8 +121529,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24296 @@ -122813,8 +121536,6 @@ entities: - type: Transform pos: -52.5,4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24308 @@ -122823,8 +121544,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24309 @@ -122833,8 +121552,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24373 @@ -122843,8 +121560,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-33.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24611 @@ -122853,8 +121568,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24620 @@ -122862,8 +121575,6 @@ entities: - type: Transform pos: -27.5,33.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24626 @@ -122871,8 +121582,6 @@ entities: - type: Transform pos: -25.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24643 @@ -122880,8 +121589,6 @@ entities: - type: Transform pos: -23.5,36.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24668 @@ -122890,8 +121597,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,27.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24677 @@ -122899,8 +121604,6 @@ entities: - type: Transform pos: 32.5,4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24682 @@ -122909,8 +121612,6 @@ entities: rot: 1.5707963267948966 rad pos: -90.5,-31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25033 @@ -122919,8 +121620,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-24.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25140 @@ -122929,8 +121628,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-22.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25150 @@ -122938,8 +121635,6 @@ entities: - type: Transform pos: 24.5,74.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25581 @@ -122948,8 +121643,6 @@ entities: rot: 1.5707963267948966 rad pos: -74.5,-9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25924 @@ -122958,8 +121651,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26165 @@ -122968,8 +121659,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26799 @@ -122978,8 +121667,6 @@ entities: rot: 3.141592653589793 rad pos: -66.5,-48.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27072 @@ -122988,8 +121675,6 @@ entities: rot: -1.5707963267948966 rad pos: -78.5,-31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27175 @@ -122998,8 +121683,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27235 @@ -123008,8 +121691,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27241 @@ -123018,8 +121699,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27298 @@ -123028,8 +121707,6 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27543 @@ -123038,8 +121715,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,-24.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27544 @@ -123048,8 +121723,6 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27545 @@ -123057,8 +121730,6 @@ entities: - type: Transform pos: -58.5,-11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27546 @@ -123067,8 +121738,6 @@ entities: rot: 3.141592653589793 rad pos: -64.5,-14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27860 @@ -123077,8 +121746,6 @@ entities: rot: 3.141592653589793 rad pos: 51.5,21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27935 @@ -123087,8 +121754,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27936 @@ -123097,8 +121762,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27937 @@ -123106,8 +121769,6 @@ entities: - type: Transform pos: 9.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27970 @@ -123115,8 +121776,6 @@ entities: - type: Transform pos: 10.5,6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27971 @@ -123125,8 +121784,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27972 @@ -123135,8 +121792,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28203 @@ -123145,8 +121800,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28244 @@ -123155,8 +121808,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28308 @@ -123165,8 +121816,6 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-34.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28438 @@ -123175,8 +121824,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28486 @@ -123184,8 +121831,6 @@ entities: - type: Transform pos: -42.5,20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28487 @@ -123194,8 +121839,6 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28492 @@ -123204,8 +121847,6 @@ entities: rot: 3.141592653589793 rad pos: -67.5,7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28974 @@ -123214,8 +121855,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,95.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29088 @@ -123224,8 +121863,6 @@ entities: rot: 3.141592653589793 rad pos: 56.5,19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29239 @@ -123234,8 +121871,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29240 @@ -123244,8 +121879,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29264 @@ -123253,8 +121886,6 @@ entities: - type: Transform pos: 34.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29271 @@ -123263,8 +121894,6 @@ entities: rot: 3.141592653589793 rad pos: 45.5,9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29272 @@ -123272,8 +121901,6 @@ entities: - type: Transform pos: 45.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29273 @@ -123281,8 +121908,6 @@ entities: - type: Transform pos: 39.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29297 @@ -123291,8 +121916,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29573 @@ -123300,8 +121923,6 @@ entities: - type: Transform pos: -25.5,72.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 30287 @@ -123310,8 +121931,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,60.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasVentScrubber @@ -123322,8 +121941,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2222 @@ -123335,8 +121952,6 @@ entities: - type: DeviceNetwork deviceLists: - 24685 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4319 @@ -123344,8 +121959,6 @@ entities: - type: Transform pos: -41.5,19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5226 @@ -123354,8 +121967,6 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5303 @@ -123364,8 +121975,6 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-16.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5307 @@ -123374,8 +121983,6 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5309 @@ -123384,8 +121991,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7206 @@ -123394,8 +121999,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-22.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9530 @@ -123404,8 +122007,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9914 @@ -123414,8 +122015,6 @@ entities: rot: 3.141592653589793 rad pos: 53.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11041 @@ -123424,8 +122023,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12344 @@ -123433,8 +122030,6 @@ entities: - type: Transform pos: 14.5,11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12435 @@ -123443,8 +122038,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12895 @@ -123453,8 +122046,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,45.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14914 @@ -123463,8 +122054,6 @@ entities: rot: 1.5707963267948966 rad pos: -73.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15193 @@ -123473,8 +122062,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-23.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15201 @@ -123483,8 +122070,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16218 @@ -123492,8 +122077,6 @@ entities: - type: Transform pos: -82.5,9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16220 @@ -123502,8 +122085,6 @@ entities: rot: 1.5707963267948966 rad pos: -83.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16687 @@ -123512,8 +122093,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18036 @@ -123522,8 +122101,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18596 @@ -123532,8 +122109,6 @@ entities: rot: 3.141592653589793 rad pos: -63.5,0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18726 @@ -123541,15 +122116,11 @@ entities: - type: Transform pos: -27.5,96.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 19722 components: - type: Transform pos: 23.5,74.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19744 @@ -123558,8 +122129,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,55.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19793 @@ -123567,8 +122136,6 @@ entities: - type: Transform pos: 12.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19832 @@ -123576,8 +122143,6 @@ entities: - type: Transform pos: 14.5,75.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19883 @@ -123585,8 +122150,6 @@ entities: - type: Transform pos: 4.5,88.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19934 @@ -123594,8 +122157,6 @@ entities: - type: Transform pos: -4.5,83.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19985 @@ -123603,8 +122164,6 @@ entities: - type: Transform pos: -13.5,96.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20002 @@ -123613,8 +122172,6 @@ entities: rot: 3.141592653589793 rad pos: 55.5,19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20012 @@ -123622,8 +122179,6 @@ entities: - type: Transform pos: 41.5,55.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20014 @@ -123632,8 +122187,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,93.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20036 @@ -123642,8 +122195,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,83.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20037 @@ -123651,8 +122202,6 @@ entities: - type: Transform pos: -18.5,88.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20060 @@ -123661,8 +122210,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,86.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20079 @@ -123671,8 +122218,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,85.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20102 @@ -123681,8 +122226,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,83.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20103 @@ -123691,8 +122234,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,80.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20104 @@ -123701,8 +122242,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,77.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20176 @@ -123711,8 +122250,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,78.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20191 @@ -123720,8 +122257,6 @@ entities: - type: Transform pos: -37.5,93.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20215 @@ -123730,8 +122265,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20216 @@ -123740,8 +122273,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20217 @@ -123749,8 +122280,6 @@ entities: - type: Transform pos: -44.5,76.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20218 @@ -123758,8 +122287,6 @@ entities: - type: Transform pos: -51.5,76.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20219 @@ -123768,8 +122295,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20244 @@ -123778,8 +122303,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20262 @@ -123788,8 +122311,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20289 @@ -123798,8 +122319,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,51.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20313 @@ -123807,8 +122326,6 @@ entities: - type: Transform pos: -46.5,53.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20342 @@ -123817,8 +122334,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,43.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20354 @@ -123827,8 +122342,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,44.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20436 @@ -123837,8 +122350,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,33.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20437 @@ -123846,8 +122357,6 @@ entities: - type: Transform pos: -38.5,35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20438 @@ -123856,8 +122365,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20460 @@ -123865,8 +122372,6 @@ entities: - type: Transform pos: -55.5,34.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20461 @@ -123875,8 +122380,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20479 @@ -123884,8 +122387,6 @@ entities: - type: Transform pos: -59.5,34.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20483 @@ -123894,8 +122395,6 @@ entities: rot: 3.141592653589793 rad pos: -61.5,29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20489 @@ -123903,8 +122402,6 @@ entities: - type: Transform pos: -64.5,34.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20521 @@ -123913,8 +122410,6 @@ entities: rot: 3.141592653589793 rad pos: -61.5,23.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20571 @@ -123922,8 +122417,6 @@ entities: - type: Transform pos: -31.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20572 @@ -123932,8 +122425,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20605 @@ -123941,8 +122432,6 @@ entities: - type: Transform pos: -17.5,75.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20606 @@ -123951,8 +122440,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20608 @@ -123961,8 +122448,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20623 @@ -123971,8 +122456,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,59.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20629 @@ -123981,8 +122464,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20630 @@ -123991,8 +122472,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20631 @@ -124001,8 +122480,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20692 @@ -124011,8 +122488,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20706 @@ -124021,8 +122496,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20708 @@ -124031,8 +122504,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20730 @@ -124041,8 +122512,6 @@ entities: rot: 1.5707963267948966 rad pos: -70.5,27.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20842 @@ -124051,8 +122520,6 @@ entities: rot: 3.141592653589793 rad pos: -88.5,6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20843 @@ -124061,8 +122528,6 @@ entities: rot: 3.141592653589793 rad pos: -89.5,4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20855 @@ -124071,8 +122536,6 @@ entities: rot: 1.5707963267948966 rad pos: -78.5,3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20859 @@ -124081,8 +122544,6 @@ entities: rot: 3.141592653589793 rad pos: -82.5,-3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20946 @@ -124091,8 +122552,6 @@ entities: rot: 1.5707963267948966 rad pos: -94.5,17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20947 @@ -124101,8 +122560,6 @@ entities: rot: -1.5707963267948966 rad pos: -87.5,17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20948 @@ -124111,8 +122568,6 @@ entities: rot: -1.5707963267948966 rad pos: -87.5,21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20949 @@ -124121,8 +122576,6 @@ entities: rot: 1.5707963267948966 rad pos: -94.5,21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20950 @@ -124130,8 +122583,6 @@ entities: - type: Transform pos: -90.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20957 @@ -124140,8 +122591,6 @@ entities: rot: 1.5707963267948966 rad pos: -91.5,19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21006 @@ -124150,8 +122599,6 @@ entities: rot: 1.5707963267948966 rad pos: -104.5,9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21007 @@ -124160,8 +122607,6 @@ entities: rot: 1.5707963267948966 rad pos: -104.5,3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21043 @@ -124170,8 +122615,6 @@ entities: rot: 1.5707963267948966 rad pos: -93.5,-5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21082 @@ -124180,8 +122623,6 @@ entities: rot: 3.141592653589793 rad pos: -83.5,-9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21107 @@ -124189,8 +122630,6 @@ entities: - type: Transform pos: -77.5,-2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21110 @@ -124199,8 +122638,6 @@ entities: rot: -1.5707963267948966 rad pos: -76.5,-8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21111 @@ -124209,8 +122646,6 @@ entities: rot: 3.141592653589793 rad pos: -77.5,-18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21130 @@ -124219,8 +122654,6 @@ entities: rot: 1.5707963267948966 rad pos: -81.5,-14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21187 @@ -124229,8 +122662,6 @@ entities: rot: 1.5707963267948966 rad pos: -89.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21206 @@ -124239,8 +122670,6 @@ entities: rot: 1.5707963267948966 rad pos: -90.5,-22.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21320 @@ -124249,8 +122678,6 @@ entities: rot: 1.5707963267948966 rad pos: -64.5,-39.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21353 @@ -124259,8 +122686,6 @@ entities: rot: -1.5707963267948966 rad pos: -67.5,-32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21357 @@ -124269,8 +122694,6 @@ entities: rot: 3.141592653589793 rad pos: -71.5,-34.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21358 @@ -124278,8 +122701,6 @@ entities: - type: Transform pos: -68.5,-29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21433 @@ -124287,8 +122708,6 @@ entities: - type: Transform pos: -51.5,-10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21434 @@ -124297,8 +122716,6 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21457 @@ -124307,8 +122724,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21473 @@ -124317,8 +122732,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-34.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21496 @@ -124327,8 +122740,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-28.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21561 @@ -124337,8 +122748,6 @@ entities: rot: 3.141592653589793 rad pos: -59.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21562 @@ -124347,8 +122756,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21588 @@ -124357,8 +122764,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21618 @@ -124366,8 +122771,6 @@ entities: - type: Transform pos: -43.5,17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21640 @@ -124376,8 +122779,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21688 @@ -124385,8 +122786,6 @@ entities: - type: Transform pos: 44.5,53.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21730 @@ -124395,8 +122794,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21785 @@ -124405,8 +122802,6 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21787 @@ -124415,8 +122810,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,22.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21788 @@ -124425,8 +122818,6 @@ entities: rot: 3.141592653589793 rad pos: 48.5,24.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21806 @@ -124434,8 +122825,6 @@ entities: - type: Transform pos: 37.5,25.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21826 @@ -124444,8 +122833,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21827 @@ -124454,8 +122841,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21892 @@ -124463,8 +122848,6 @@ entities: - type: Transform pos: 26.5,19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21893 @@ -124473,8 +122856,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,13.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21894 @@ -124483,8 +122864,6 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21896 @@ -124492,8 +122871,6 @@ entities: - type: Transform pos: 32.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21903 @@ -124501,8 +122878,6 @@ entities: - type: Transform pos: 31.5,23.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21951 @@ -124511,8 +122886,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22034 @@ -124520,8 +122893,6 @@ entities: - type: Transform pos: 40.5,2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22035 @@ -124530,8 +122901,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22102 @@ -124540,8 +122909,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22204 @@ -124550,8 +122917,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,49.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22205 @@ -124560,8 +122925,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,48.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22281 @@ -124570,8 +122933,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,46.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22283 @@ -124579,8 +122940,6 @@ entities: - type: Transform pos: 7.5,41.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22286 @@ -124589,8 +122948,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,28.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22386 @@ -124599,8 +122956,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,46.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22387 @@ -124608,8 +122963,6 @@ entities: - type: Transform pos: -8.5,42.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22390 @@ -124617,8 +122970,6 @@ entities: - type: Transform pos: -4.5,40.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22418 @@ -124627,8 +122978,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22442 @@ -124637,8 +122986,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22443 @@ -124647,8 +122994,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22445 @@ -124657,8 +123002,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22521 @@ -124666,8 +123009,6 @@ entities: - type: Transform pos: -3.5,50.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22525 @@ -124675,8 +123016,6 @@ entities: - type: Transform pos: -25.5,50.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22536 @@ -124685,8 +123024,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,46.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22572 @@ -124695,8 +123032,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,40.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22608 @@ -124705,8 +123040,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,27.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22609 @@ -124715,8 +123048,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22620 @@ -124725,8 +123056,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22662 @@ -124735,8 +123064,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22727 @@ -124745,8 +123072,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22728 @@ -124755,8 +123080,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22729 @@ -124764,8 +123087,6 @@ entities: - type: Transform pos: -30.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22759 @@ -124774,8 +123095,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,13.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22760 @@ -124784,8 +123103,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22761 @@ -124793,8 +123110,6 @@ entities: - type: Transform pos: -14.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22762 @@ -124803,8 +123118,6 @@ entities: rot: 3.141592653589793 rad pos: -14.5,9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22763 @@ -124813,8 +123126,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22764 @@ -124822,8 +123133,6 @@ entities: - type: Transform pos: -19.5,17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22803 @@ -124832,8 +123141,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22883 @@ -124842,8 +123149,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22898 @@ -124852,8 +123157,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22967 @@ -124862,8 +123165,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23002 @@ -124872,8 +123173,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,-21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23026 @@ -124881,8 +123180,6 @@ entities: - type: Transform pos: -51.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23063 @@ -124891,8 +123188,6 @@ entities: rot: 1.5707963267948966 rad pos: -77.5,-23.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23067 @@ -124901,8 +123196,6 @@ entities: rot: 1.5707963267948966 rad pos: -66.5,-6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23162 @@ -124911,8 +123204,6 @@ entities: rot: 3.141592653589793 rad pos: -73.5,-22.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23163 @@ -124920,8 +123211,6 @@ entities: - type: Transform pos: -73.5,4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23184 @@ -124929,8 +123218,6 @@ entities: - type: Transform pos: -16.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23185 @@ -124938,8 +123225,6 @@ entities: - type: Transform pos: -12.5,29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23220 @@ -124948,8 +123233,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23221 @@ -124958,8 +123241,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23226 @@ -124968,8 +123249,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23259 @@ -124977,8 +123256,6 @@ entities: - type: Transform pos: -9.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23278 @@ -124987,8 +123264,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23287 @@ -124999,8 +123274,6 @@ entities: - type: DeviceNetwork deviceLists: - 24685 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23291 @@ -125012,8 +123285,6 @@ entities: - type: DeviceNetwork deviceLists: - 24685 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23364 @@ -125022,8 +123293,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-33.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23408 @@ -125032,8 +123301,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23409 @@ -125042,8 +123309,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23444 @@ -125052,8 +123317,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23458 @@ -125062,8 +123325,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,28.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23459 @@ -125072,8 +123333,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23460 @@ -125082,8 +123341,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23466 @@ -125092,8 +123349,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23519 @@ -125101,8 +123356,6 @@ entities: - type: Transform pos: 14.5,37.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23520 @@ -125110,8 +123363,6 @@ entities: - type: Transform pos: 22.5,39.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23553 @@ -125120,8 +123371,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,39.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23600 @@ -125129,8 +123378,6 @@ entities: - type: Transform pos: 12.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23607 @@ -125139,8 +123386,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23612 @@ -125149,8 +123394,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23613 @@ -125159,8 +123402,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23614 @@ -125169,8 +123410,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,16.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23638 @@ -125178,8 +123417,6 @@ entities: - type: Transform pos: 11.5,6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23685 @@ -125188,8 +123425,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23689 @@ -125198,8 +123433,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23791 @@ -125208,8 +123441,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,55.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24116 @@ -125217,8 +123448,6 @@ entities: - type: Transform pos: -63.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24117 @@ -125226,8 +123455,6 @@ entities: - type: Transform pos: -60.5,12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24192 @@ -125235,8 +123462,6 @@ entities: - type: Transform pos: -67.5,12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24255 @@ -125244,8 +123469,6 @@ entities: - type: Transform pos: -32.5,74.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24295 @@ -125254,8 +123477,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24324 @@ -125264,8 +123485,6 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24325 @@ -125274,8 +123493,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24343 @@ -125284,8 +123501,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,16.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24346 @@ -125294,8 +123509,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-33.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24614 @@ -125304,8 +123517,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,36.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24644 @@ -125313,8 +123524,6 @@ entities: - type: Transform pos: -24.5,35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24678 @@ -125322,8 +123531,6 @@ entities: - type: Transform pos: 33.5,4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24683 @@ -125332,8 +123539,6 @@ entities: rot: 1.5707963267948966 rad pos: -90.5,-29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24741 @@ -125342,8 +123547,6 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25001 @@ -125351,8 +123554,6 @@ entities: - type: Transform pos: 26.5,62.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25160 @@ -125361,8 +123562,6 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-24.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25167 @@ -125371,8 +123570,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25532 @@ -125381,8 +123578,6 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25580 @@ -125391,8 +123586,6 @@ entities: rot: 1.5707963267948966 rad pos: -74.5,-8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25993 @@ -125400,8 +123593,6 @@ entities: - type: Transform pos: -22.5,92.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26164 @@ -125410,8 +123601,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26798 @@ -125420,8 +123609,6 @@ entities: rot: 3.141592653589793 rad pos: -65.5,-48.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27071 @@ -125430,8 +123617,6 @@ entities: rot: -1.5707963267948966 rad pos: -79.5,-30.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27136 @@ -125440,8 +123625,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,54.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27174 @@ -125450,8 +123633,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27233 @@ -125460,8 +123641,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27234 @@ -125470,8 +123649,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27528 @@ -125480,8 +123657,6 @@ entities: rot: 3.141592653589793 rad pos: -65.5,-14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27529 @@ -125490,8 +123665,6 @@ entities: rot: 3.141592653589793 rad pos: -60.5,-14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27530 @@ -125500,8 +123673,6 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27531 @@ -125510,8 +123681,6 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,-25.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27859 @@ -125520,8 +123689,6 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27958 @@ -125530,8 +123697,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27959 @@ -125540,8 +123705,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28268 @@ -125549,16 +123712,12 @@ entities: - type: Transform pos: -101.5,-77.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28437 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28491 @@ -125566,8 +123725,6 @@ entities: - type: Transform pos: -66.5,8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28982 @@ -125575,8 +123732,6 @@ entities: - type: Transform pos: -19.5,98.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29307 @@ -125584,8 +123739,6 @@ entities: - type: Transform pos: 35.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29313 @@ -125594,8 +123747,6 @@ entities: rot: 3.141592653589793 rad pos: 44.5,9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29314 @@ -125603,8 +123754,6 @@ entities: - type: Transform pos: 44.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29315 @@ -125612,8 +123761,6 @@ entities: - type: Transform pos: 38.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29572 @@ -125622,8 +123769,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,72.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 30294 @@ -125631,8 +123776,6 @@ entities: - type: Transform pos: 66.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 30517 @@ -125640,8 +123783,6 @@ entities: - type: Transform pos: -79.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 30518 @@ -125649,8 +123790,6 @@ entities: - type: Transform pos: -78.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 30519 @@ -125659,8 +123798,6 @@ entities: rot: 1.5707963267948966 rad pos: -80.5,13.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVolumePump @@ -125671,24 +123808,18 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,-20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 5322 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10035 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66FF66FF' - uid: 25911 @@ -125696,8 +123827,6 @@ entities: - type: Transform pos: 59.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 29174 @@ -125706,8 +123835,6 @@ entities: rot: 3.141592653589793 rad pos: 65.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - proto: Gauze @@ -133824,8 +131951,6 @@ entities: - type: Transform pos: 72.5,59.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 29155 @@ -133833,8 +131958,6 @@ entities: - type: Transform pos: 72.5,60.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 29694 @@ -133842,8 +131965,6 @@ entities: - type: Transform pos: 64.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 29695 @@ -133851,8 +131972,6 @@ entities: - type: Transform pos: 66.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - proto: HelicopterInstrument @@ -134753,7 +132872,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -135176,7 +133294,6 @@ entities: solutions: tank: temperature: 293.15 - canMix: False canReact: True maxVol: 1500 name: null @@ -135472,7 +133589,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 100 name: null @@ -136754,7 +134870,7 @@ entities: - type: Transform pos: 5.56503,-22.863274 parent: 33 -- proto: MailPAI +- proto: MailNFPAI entities: - uid: 6330 components: @@ -137151,6 +135267,13 @@ entities: - type: Transform pos: 7.5,66.5 parent: 33 +- proto: MaterialSilo + entities: + - uid: 10691 + components: + - type: Transform + pos: 55.5,18.5 + parent: 33 - proto: MaterialWoodPlank entities: - uid: 17808 @@ -138666,71 +136789,51 @@ entities: - type: Transform pos: -20.5,47.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 6015 components: - type: Transform pos: 3.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 8694 components: - type: Transform pos: 29.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10183 components: - type: Transform pos: 56.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10184 components: - type: Transform pos: 55.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10345 components: - type: Transform pos: -87.5,-2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18214 components: - type: Transform pos: -70.5,-38.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18250 components: - type: Transform pos: -35.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18297 components: - type: Transform pos: 9.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18365 components: - type: Transform pos: 3.5,31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: NitrogenTankFilled entities: - uid: 4201 @@ -138780,8 +136883,6 @@ entities: - type: Transform pos: 41.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: NitrousOxideTankFilled entities: - uid: 6322 @@ -138888,7 +136989,7 @@ entities: - type: Transform pos: -82.5,-0.5 parent: 33 -- proto: Oracle +- proto: OracleSpawner entities: - uid: 1911 components: @@ -138971,106 +137072,76 @@ entities: - type: Transform pos: 31.5,-10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 3237 components: - type: Transform pos: -20.5,46.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 8693 components: - type: Transform pos: 31.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10185 components: - type: Transform pos: 56.5,72.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10186 components: - type: Transform pos: 55.5,72.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 11461 components: - type: Transform pos: -15.5,89.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 17956 components: - type: Transform pos: -16.5,55.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18208 components: - type: Transform pos: -36.5,-25.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18225 components: - type: Transform pos: -87.5,-0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18249 components: - type: Transform pos: -34.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18270 components: - type: Transform pos: 15.5,-4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18292 components: - type: Transform pos: 38.5,42.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18364 components: - type: Transform pos: 1.5,31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28092 components: - type: Transform pos: -97.5,-30.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29713 components: - type: Transform pos: 69.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: OxygenTankFilled entities: - uid: 4187 @@ -147103,7 +145174,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -147125,7 +145195,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -147143,7 +145212,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -147269,15 +145337,11 @@ entities: - type: Transform pos: 52.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29711 components: - type: Transform pos: 69.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 211 @@ -147532,6 +145596,13 @@ entities: - type: Transform pos: -4.5,25.5 parent: 33 +- proto: PlayerStationAi + entities: + - uid: 12676 + components: + - type: Transform + pos: -11.5,59.5 + parent: 33 - proto: PlushieAtmosian entities: - uid: 13014 @@ -153185,7 +151256,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -165794,8 +163864,6 @@ entities: - type: Transform pos: 42.5,54.5 parent: 33 -- proto: SignAtmosMinsky - entities: - uid: 8629 components: - type: Transform @@ -165871,8 +163939,6 @@ entities: - type: Transform pos: -56.5,8.5 parent: 33 -- proto: SignChemistry1 - entities: - uid: 24194 components: - type: Transform @@ -165892,18 +163958,6 @@ entities: - type: Transform pos: -65.5,25.5 parent: 33 -- proto: SignCourt - entities: - - uid: 29628 - components: - - type: Transform - pos: -29.5,28.5 - parent: 33 - - uid: 29631 - components: - - type: Transform - pos: -29.5,32.5 - parent: 33 - proto: SignCryogenics entities: - uid: 28656 @@ -166362,14 +164416,6 @@ entities: - type: Transform pos: 28.5,10.5 parent: 33 -- proto: SignDrones - entities: - - uid: 25287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,22.5 - parent: 33 - proto: SignElectrical entities: - uid: 9023 @@ -166514,15 +164560,11 @@ entities: - type: Transform pos: -20.5,41.5 parent: 33 -- proto: SignHydro2 - entities: - uid: 24208 components: - type: Transform pos: -20.5,39.5 parent: 33 -- proto: SignHydro3 - entities: - uid: 24209 components: - type: Transform @@ -166554,6 +164596,18 @@ entities: - type: Transform pos: -13.5,76.5 parent: 33 +- proto: SignLawyer + entities: + - uid: 29628 + components: + - type: Transform + pos: -29.5,28.5 + parent: 33 + - uid: 29631 + components: + - type: Transform + pos: -29.5,32.5 + parent: 33 - proto: SignLibrary entities: - uid: 24212 @@ -166573,6 +164627,14 @@ entities: - type: Transform pos: 6.5,-15.5 parent: 33 +- proto: SignMaterials + entities: + - uid: 25287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,22.5 + parent: 33 - proto: SignMedical entities: - uid: 5991 @@ -166607,13 +164669,6 @@ entities: - type: Transform pos: -96.5,11.5 parent: 33 -- proto: SignMinerDock - entities: - - uid: 29629 - components: - - type: Transform - pos: 54.5,-17.5 - parent: 33 - proto: SignMorgue entities: - uid: 24216 @@ -166743,19 +164798,15 @@ entities: - type: Transform pos: -59.5,-4.5 parent: 33 -- proto: SignScience1 - entities: - - uid: 24191 + - uid: 24190 components: - type: Transform - pos: -70.5,-9.5 + pos: -70.5,-17.5 parent: 33 -- proto: SignScience2 - entities: - - uid: 24190 + - uid: 24191 components: - type: Transform - pos: -70.5,-17.5 + pos: -70.5,-9.5 parent: 33 - proto: SignSec entities: @@ -166861,6 +164912,11 @@ entities: - type: Transform pos: -6.5,-0.5 parent: 33 + - uid: 29629 + components: + - type: Transform + pos: 54.5,-17.5 + parent: 33 - proto: SignShock entities: - uid: 5123 @@ -167046,8 +165102,6 @@ entities: - type: Transform pos: -83.5,-10.5 parent: 33 -- proto: SignToxins2 - entities: - uid: 24230 components: - type: Transform @@ -167060,19 +165114,17 @@ entities: - type: Transform pos: -75.5,9.5 parent: 33 -- proto: SignXenobio2 +- proto: SignXenobio entities: - - uid: 24231 + - uid: 24228 components: - type: Transform - pos: -75.5,-8.5 + pos: -82.5,-10.5 parent: 33 -- proto: SignXenolab - entities: - - uid: 24228 + - uid: 24231 components: - type: Transform - pos: -82.5,-10.5 + pos: -75.5,-8.5 parent: 33 - proto: SignZomlab entities: @@ -167386,7 +165438,7 @@ entities: rot: 1.5707963267948966 rad pos: -68.646805,-5.41596 parent: 33 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 5611 components: @@ -169060,7 +167112,7 @@ entities: - type: Transform pos: 95.5,49.5 parent: 33 -- proto: SophicScribe +- proto: SophicScribeSpawner entities: - uid: 4397 components: @@ -169385,6 +167437,18 @@ entities: - type: Transform pos: -11.5,75.5 parent: 33 +- proto: SpawnPointAdminAssistant + entities: + - uid: 13109 + components: + - type: Transform + pos: -70.5,26.5 + parent: 33 + - uid: 17967 + components: + - type: Transform + pos: -68.5,26.5 + parent: 33 - proto: SpawnPointAtmos entities: - uid: 29733 @@ -169414,6 +167478,13 @@ entities: - type: Transform pos: 11.5,28.5 parent: 33 +- proto: SpawnPointBlueshieldOfficer + entities: + - uid: 27375 + components: + - type: Transform + pos: -70.5,22.5 + parent: 33 - proto: SpawnPointBorg entities: - uid: 4284 @@ -169942,6 +168013,13 @@ entities: - type: Transform pos: 21.5,39.5 parent: 33 +- proto: SpawnPointNanotrasenRepresentative + entities: + - uid: 20882 + components: + - type: Transform + pos: -69.5,26.5 + parent: 33 - proto: SpawnPointObserver entities: - uid: 18442 @@ -170819,113 +168897,81 @@ entities: - type: Transform pos: -79.5,-18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 8691 components: - type: Transform pos: 35.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10179 components: - type: Transform pos: 56.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10180 components: - type: Transform pos: 55.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10181 components: - type: Transform pos: 56.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10202 components: - type: Transform pos: 46.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10203 components: - type: Transform pos: 46.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 11033 components: - type: Transform pos: -30.5,-21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18164 components: - type: Transform pos: -57.5,-35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18215 components: - type: Transform pos: -71.5,-38.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18251 components: - type: Transform pos: -43.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18269 components: - type: Transform pos: 11.5,-5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18328 components: - type: Transform pos: 2.5,76.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29715 components: - type: Transform pos: 68.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29716 components: - type: Transform pos: 69.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 30551 components: - type: Transform pos: -65.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: StrangePill entities: - uid: 18544 @@ -176710,8 +174756,6 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: TegCirculator entities: - uid: 25424 @@ -177096,7 +175140,6 @@ entities: solutions: toilet: temperature: 293.15 - canMix: False canReact: True maxVol: 250 name: null @@ -196548,36 +194591,26 @@ entities: - type: Transform pos: 37.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10187 components: - type: Transform pos: 56.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29714 components: - type: Transform pos: 68.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29721 components: - type: Transform pos: 64.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 30467 components: - type: Transform pos: 61.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: WeaponCapacitorRecharger entities: - uid: 141 diff --git a/Resources/Prototypes/Access/misc.yml b/Resources/Prototypes/Access/misc.yml index f402c7544a09a6..c2984168f85191 100644 --- a/Resources/Prototypes/Access/misc.yml +++ b/Resources/Prototypes/Access/misc.yml @@ -48,3 +48,5 @@ - ChiefJustice # DeltaV - Add Chief Justice access - Prosecutor # DeltaV - Add Prosecutor access - Corpsman # DeltaV - Add Corpsman access + - BlueshieldOfficer + - NanotrasenRepresentative diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Command/adminAssistant.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Command/admin_assistant.yml similarity index 100% rename from Resources/Prototypes/CharacterItemGroups/Jobs/Command/adminAssistant.yml rename to Resources/Prototypes/CharacterItemGroups/Jobs/Command/admin_assistant.yml diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Command/blueshield_officer.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Command/blueshield_officer.yml new file mode 100644 index 00000000000000..764f4638781f1a --- /dev/null +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Command/blueshield_officer.yml @@ -0,0 +1,25 @@ +- type: characterItemGroup + id: LoadoutBlueshieldOfficerBackpacks + maxItems: 1 + items: + - type: loadout + id: LoadoutClothingBackpackBlueshield + +- type: characterItemGroup + id: LoadoutBlueshieldOfficerVests + maxItems: 1 + items: + - type: loadout + id: LoadoutClothingBlueshieldArmoredJacket + - type: loadout + id: LoadoutClothingBlueshieldArmoredCowboyJacket + +- type: characterItemGroup + id: LoadoutBlueshieldOfficerUniforms + maxItems: 1 + items: + - type: loadout + id: LoadoutClothingUniformJumpskirtBlueshieldOfficer + - type: loadout + id: LoadoutClothingUniformJumpsuitBlueshieldOfficer + \ No newline at end of file diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Command/nanorep.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Command/nanorep.yml new file mode 100644 index 00000000000000..6864346e3fbc36 --- /dev/null +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Command/nanorep.yml @@ -0,0 +1,15 @@ +- type: characterItemGroup + id: LoadoutNanorepBackpacks + maxItems: 1 + items: + - type: loadout + id: LoadoutClothingBackpackSatchelNanorep + +- type: characterItemGroup + id: LoadoutNanorepUniforms + maxItems: 1 + items: + - type: loadout + id: LoadoutClothingUniformJumpskirtNanotrasenRepresentative + - type: loadout + id: LoadoutClothingUniformJumpsuitNanotrasenRepresentative \ No newline at end of file diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Engineering/atmosphericTechnician.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Engineering/atmosphericTechnician.yml index 1a81612043cd37..9338a800bf1397 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Engineering/atmosphericTechnician.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Engineering/atmosphericTechnician.yml @@ -97,6 +97,8 @@ items: - type: loadout id: LoadoutAtmosphericTechnicianChickenSuit + - type: loadout + id: LoadoutAtmosphericTechnicianWinterCoat - type: characterItemGroup id: LoadoutAtmosphericTechnicianShoes diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Engineering/engineeringUncategorized.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Engineering/engineeringUncategorized.yml index efc045928e00e6..a7d607f33c3fd7 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Engineering/engineeringUncategorized.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Engineering/engineeringUncategorized.yml @@ -78,6 +78,8 @@ items: - type: loadout id: LoadoutEngineeringOuterHazard + - type: loadout + id: LoadoutEngineeringWinterCoat #- type: characterItemGroup # id: LoadoutEngineeringShoes diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/golemancer.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/golemancer.yml index 2556250f515cbf..39f49975ffb6d9 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/golemancer.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Epistemics/golemancer.yml @@ -61,10 +61,12 @@ # maxItems: 1 # items: # -#- type: characterItemGroup -# id: LoadoutGolemancerOuter -# maxItems: 1 -# items: +- type: characterItemGroup + id: LoadoutGolemancerOuter + maxItems: 1 + items: + - type: loadout + id: LoadoutScienceUniformWinterCoatRoboticist # #- type: characterItemGroup # id: LoadoutGolemancerShoes diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Logistics/logisticsOfficer.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Logistics/logisticsOfficer.yml index 230fd830363339..92f3101b2b3d6b 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Logistics/logisticsOfficer.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Logistics/logisticsOfficer.yml @@ -55,11 +55,13 @@ # maxItems: 1 # items: # -#- type: characterItemGroup -# id: LoadoutLogisticsOfficerOuter -# maxItems: 1 -# items: -# +- type: characterItemGroup + id: LoadoutLogisticsOfficerOuter + maxItems: 1 + items: + - type: loadout + id: LoadoutLogisticsOfficeOuter + - type: characterItemGroup id: LoadoutLogisticsOfficerShoes maxItems: 1 diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Medical/chemist.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Medical/chemist.yml index 016507e0656425..3340b0733f7422 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Medical/chemist.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Medical/chemist.yml @@ -93,6 +93,8 @@ id: LoadoutMedicalOuterLabcoatChem - type: loadout id: LoadoutMedicalOuterApronChemist + - type: loadout + id: LoadoutChemistWinterCoat - type: characterItemGroup id: LoadoutChemistShoes diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Medical/uncategorized.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Medical/uncategorized.yml index 3157acb062d5cf..2b095687dc60d3 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Medical/uncategorized.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Medical/uncategorized.yml @@ -103,6 +103,8 @@ id: LoadoutMedicalOuter maxItems: 1 items: + - type: loadout + id: LoadoutMedicalOuterWinterCoat - type: loadout id: LoadoutMedicalOuterLabcoat - type: loadout diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Security/headOfSecurity.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Security/headOfSecurity.yml index 9ccc5232e4a516..6525da6df427be 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Security/headOfSecurity.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Security/headOfSecurity.yml @@ -86,6 +86,8 @@ id: LoadoutCommandHOSOuterWinter - type: loadout id: LoadoutCommandHOSOuterTrench + - type: loadout + id: LoadoutCommandHOSOuterWinterUnarmored - type: characterItemGroup id: LoadoutHeadOfSecurityShoes diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Security/uncategorized.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Security/uncategorized.yml index 13399504703350..166d548e127a51 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Security/uncategorized.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Security/uncategorized.yml @@ -182,6 +182,8 @@ items: - type: loadout id: LoadoutClothingOuterArmorPlateCarrier + - type: loadout + id: LoadoutClothingOuterWinterCoatSec - type: loadout id: LoadoutClothingOuterArmorDuraVest - type: loadout diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Security/warden.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Security/warden.yml index 1b978323bfc3ef..785f5aa45d2c8e 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Security/warden.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Security/warden.yml @@ -55,6 +55,8 @@ id: LoadoutWardenOuter maxItems: 1 items: + - type: loadout + id: LoadoutClothingOuterWinterCoatWarden - type: loadout id: LoadoutClothingOuterCoatWarden diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Service/bartender.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Service/bartender.yml index 74fc945b3f7bc5..a6d0e7a21e1466 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Service/bartender.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Service/bartender.yml @@ -69,6 +69,8 @@ - type: characterItemGroup id: LoadoutBartenderOuter items: + - type: loadout + id: LoadoutServiceBartenderWinterCoat - type: loadout id: LoadoutServiceBartenderArmorDuraVest - type: loadout diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Service/botanist.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Service/botanist.yml index 334ad0c4fdee7c..ab522feb17b61e 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Service/botanist.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Service/botanist.yml @@ -48,10 +48,12 @@ # maxItems: 1 # items: # -#- type: characterItemGroup -# id: LoadoutBotanistOuter -# maxItems: 1 -# items: +- type: characterItemGroup + id: LoadoutBotanistOuter + maxItems: 1 + items: + - type: loadout + id: LoadoutServiceBotanistWinterCoat # #- type: characterItemGroup # id: LoadoutBotanistShoes diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Service/janitor.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Service/janitor.yml index cc5b0e16a3310b..d5fffbd2f76063 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Service/janitor.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Service/janitor.yml @@ -49,10 +49,12 @@ # maxItems: 1 # items: # -#- type: characterItemGroup -# id: LoadoutJanitorOuter -# maxItems: 1 -# items: +- type: characterItemGroup + id: LoadoutJanitorOuter + maxItems: 1 + items: + - type: loadout + id: LoadoutServiceWinterCoatJanitor # #- type: characterItemGroup # id: LoadoutJanitorShoes diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Service/musician.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Service/musician.yml index 90943d47950c3e..37af9e888b2a67 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Service/musician.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Service/musician.yml @@ -139,10 +139,12 @@ # maxItems: 1 # items: # -#- type: characterItemGroup -# id: LoadoutMusicianOuter -# maxItems: 1 -# items: +- type: characterItemGroup + id: LoadoutMusicianOuter + maxItems: 1 + items: + - type: loadout + id: LoadoutServiceWinterCoatMusician # #- type: characterItemGroup # id: LoadoutMusicianShoes diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/armor.yml index 80a06dfb39f95a..99c4657a2a0182 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/armor.yml @@ -1,6 +1,6 @@ #Basic armor vest replacement - type: entity - parent: ClothingOuterBaseMedium + parent: [ClothingOuterBaseMedium, AllowSuitStorageClothing] id: ClothingOuterArmorPlateCarrier name: plate carrier description: A large and bulky carrier featuring steel plates that offer decent protection against gunfire. @@ -24,7 +24,7 @@ #Alternate / slim basic armor vest replacement - type: entity - parent: ClothingOuterBaseMedium + parent: [ClothingOuterBaseMedium, AllowSuitStorageClothing] id: ClothingOuterArmorDuraVest name: durathread vest description: A tight-fitting and sturdy armor vest, reinforced with durathread weave to protect against sharp objects and blunt force trauma. @@ -44,7 +44,7 @@ damageCoefficient: 0.90 - type: entity - parent: ClothingOuterBaseLarge + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing] id: ClothingOuterArmorARC name: ARCS description: The Advanced Riot Control Suit, or ARCS for short, is generally regarded as far too bulky and overly hot for any practical use - but when the riots are raging, most officers invariably take great comfort from the thick and claustrophobic padding. diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml index fcb21e50de1d72..8cc269508125fa 100644 --- a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml @@ -178,7 +178,7 @@ description: Theres pen scribbles all over the edges, and a few sticky notes stuck on it. components: - type: Sprite - sprite: DeltaV/Objects/Devices/pda.rsi + sprite: Objects/Devices/pda.rsi layers: - map: [ "enum.PdaVisualLayers.Base" ] - state: "light_overlay" @@ -191,7 +191,7 @@ visible: false - type: Pda id: AdminAssistantIDCard - state: pda-admin-assistant + state: pda-lawyer penSlot: startingItem: LuxuryPen priority: -1 @@ -199,8 +199,8 @@ tags: - Write - type: Icon - sprite: DeltaV/Objects/Devices/pda.rsi - state: pda-admin-assistant + sprite: Objects/Devices/pda.rsi + state: pda-lawyer - type: CartridgeLoader preinstalled: - CrewManifestCartridge diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml index 3b86a3104919cf..4e307652ec0314 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml @@ -7,6 +7,13 @@ - type: ShowMindShieldIcons - type: ShowCriminalRecordIcons +- type: entity + id: ShowMedicalIcons + abstract: true + categories: [ HideSpawnMenu ] + components: + - type: ShowHealthBars + - type: ShowHealthIcons - type: entity parent: ClothingEyesBase diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index a0a0d1ed2ebf53..707e3a0d11527b 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -27,6 +27,7 @@ - type: Hands - type: ComplexInteraction - type: Puller + needsHands: false # Tail Drag pushAcceleration: 1000000 # Will still be capped in max speed maxPushRange: 20 - type: CombatMode diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index f635b03b104acc..810bf4111cd751 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -1183,3 +1183,42 @@ proto: BulletDisablerSmg count: 3 #bit stronger than a disabler if you hit your shots you goober, still not a 2 hit stun though spread: 9 + +- type: entity #Goobstation, put here so the X-01 stuff isnt spread everywhere. + name: magnum bolt + id: BulletEnergyGunMagnum + parent: BaseBullet + categories: [ HideSpawnMenu ] + components: + - type: Reflective + reflective: + - Energy + - type: FlyBySound + sound: + collection: EnergyMiss + params: + volume: 5 + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi + layers: + - state: heavylaser + shader: unshaded + - type: Ammo + - type: Physics + - type: Fixtures + fixtures: + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.2,0.2,0.2" + hard: false + mask: + - Opaque + - type: Projectile + impactEffect: BulletImpactEffectRedDisabler + damage: + types: + Blunt: 3 + Heat: 15 + soundHit: + collection: MeatLaserImpact diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index 42a353675b1943..356a8031ea78a0 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -21,6 +21,7 @@ - type: ItemToggleHot - type: ItemToggleSize activatedSize: Huge + - type: ItemTogglePointLight - type: ItemToggleMeleeWeapon activatedSoundOnHit: path: /Audio/Weapons/eblade1.ogg @@ -69,7 +70,7 @@ - type: EmbedPassiveDamage - type: Item size: Small - sprite: DeltaV/Objects/Weapons/Melee/e_sword.rsi # Delta-V + sprite: Objects/Weapons/Melee/e_sword-inhands.rsi - type: UseDelay delay: 1.0 - type: PointLight @@ -183,8 +184,6 @@ damage: types: Blunt: 0 - - type: ThrowingAngle - angle: 315 - type: Item size: Tiny sprite: Objects/Weapons/Melee/e_dagger.rsi diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index aac08094fa0ae2..17acce87aab210 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -221,6 +221,12 @@ - RiotShield - SpeedLoaderMagnum - SpeedLoaderMagnumEmpty + - MagazinePistolCaselessRifle # Goobstation + - MagazineBoxCaselessRifle # Goobstation + - MagazineMagnumEmpty # Goobstation + - MagazineMagnum # Goobstation + - MagazineMagnumLeverRifleEmpty # Goobstation + - MagazineMagnumLeverRifle # Goobstation - type: entity id: AutolatheHyperConvection @@ -846,6 +852,8 @@ - SpeedLoaderRifleHeavyEmpty - WeaponRifleNovaliteC1 - WeaponRifleGestio + - MagazineMagnumLeverRifle # Goobstation + - MagazineMagnumLeverRifleEmpty # Goobstation dynamicRecipes: - BolaEnergy - BoxBeanbag diff --git a/Resources/Prototypes/Guidebook/rules.yml b/Resources/Prototypes/Guidebook/rules.yml index 162cdba7703ae5..288c093f89e9e6 100644 --- a/Resources/Prototypes/Guidebook/rules.yml +++ b/Resources/Prototypes/Guidebook/rules.yml @@ -12,6 +12,7 @@ - SpaceLawControlledSubstances - SpaceLawRestrictedGear - SpaceLawRestrictedWeapons + - SpaceLawCrimeList - type: guideEntry id: SpaceLawControlledSubstances @@ -30,3 +31,9 @@ name: guide-entry-rules-sl-restricted-weapons priority: 40 text: "/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedWeapons.xml" + +- type: guideEntry + id: SpaceLawCrimeList + name: guide-entry-rules-sl-crime-list + priority: 50 + text: "/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLCrimeList.xml" \ No newline at end of file diff --git a/Resources/Prototypes/InventoryTemplates/aghost_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/aghost_inventory_template.yml index 84806a051a7329..2f127d98c46747 100644 --- a/Resources/Prototypes/InventoryTemplates/aghost_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/aghost_inventory_template.yml @@ -19,6 +19,48 @@ strippingWindowPos: 2,3 displayName: ID + # For Pockets to hold stuffs. + - name: pocket1 + slotTexture: pocket + fullTextureName: template_small + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 0,3 + strippingWindowPos: 0,4 + displayName: Pocket 1 + stripHidden: true + - name: pocket2 + slotTexture: pocket + fullTextureName: template_small + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 2,3 + strippingWindowPos: 1,4 + displayName: Pocket 2 + stripHidden: true + - name: pocket3 + slotTexture: pocket + fullTextureName: template_small + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 4,3 + strippingWindowPos: 2,4 + displayName: Pocket 3 + stripHidden: true + - name: pocket4 + slotTexture: pocket + fullTextureName: template_small + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 6,3 + strippingWindowPos: 3,4 + displayName: Pocket 4 + stripHidden: true + # For drip reasons. - name: head slotTexture: head diff --git a/Resources/Prototypes/Loadouts/Categories/categories.yml b/Resources/Prototypes/Loadouts/Categories/categories.yml index 716b2ebeb62055..4b0f33b17ff288 100644 --- a/Resources/Prototypes/Loadouts/Categories/categories.yml +++ b/Resources/Prototypes/Loadouts/Categories/categories.yml @@ -52,6 +52,8 @@ - JobsCommandCaptain - JobsCommandHeadOfPersonnel - JobsCommandAdminAssistant + - JobsCommandBlueshieldOfficer + - JobsCommandNanorep - type: loadoutCategory id: JobsCommandAUncategorized @@ -65,6 +67,12 @@ - type: loadoutCategory id: JobsCommandAdminAssistant +- type: loadoutCategory + id: JobsCommandBlueshieldOfficer + +- type: loadoutCategory + id: JobsCommandNanorep + # Engineering - type: loadoutCategory id: JobsEngineering diff --git a/Resources/Prototypes/Loadouts/Jobs/Command/adminassistant.yml b/Resources/Prototypes/Loadouts/Jobs/Command/admin_assistant.yml similarity index 100% rename from Resources/Prototypes/Loadouts/Jobs/Command/adminassistant.yml rename to Resources/Prototypes/Loadouts/Jobs/Command/admin_assistant.yml diff --git a/Resources/Prototypes/Loadouts/Jobs/Command/blueshield_officer.yml b/Resources/Prototypes/Loadouts/Jobs/Command/blueshield_officer.yml new file mode 100644 index 00000000000000..47dd7507c76750 --- /dev/null +++ b/Resources/Prototypes/Loadouts/Jobs/Command/blueshield_officer.yml @@ -0,0 +1,93 @@ +# Uncategorized +# Backpacks +- type: loadout + id: LoadoutClothingBackpackBlueshield + category: JobsCommandBlueshieldOfficer + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBlueshieldOfficerBackpacks + - !type:CharacterJobRequirement + jobs: + - BlueshieldOfficer + items: + - ClothingBackpackBlueshield + +# Belt + +# Ears + +# Equipment + +# Eyes + +# Gloves + +# Head + +# Id + +# Neck + +# Mask + +# Outer +- type: loadout + id: LoadoutClothingBlueshieldArmoredJacket + category: JobsCommandBlueshieldOfficer + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBlueshieldOfficerVests + - !type:CharacterJobRequirement + jobs: + - BlueshieldOfficer + items: + - ClothingBlueshieldArmoredJacket + +- type: loadout + id: LoadoutClothingBlueshieldArmoredCowboyJacket + category: JobsCommandBlueshieldOfficer + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBlueshieldOfficerVests + - !type:CharacterJobRequirement + jobs: + - BlueshieldOfficer + items: + - ClothingBlueshieldArmoredCowboyJacket + +# Shoes + +# Uniforms +- type: loadout + id: LoadoutClothingUniformJumpskirtBlueshieldOfficer + category: JobsCommandBlueshieldOfficer + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBlueshieldOfficerUniforms + - !type:CharacterJobRequirement + jobs: + - BlueshieldOfficer + items: + - ClothingUniformJumpskirtBlueshieldOfficer + +- type: loadout + id: LoadoutClothingUniformJumpsuitBlueshieldOfficer + category: JobsCommandBlueshieldOfficer + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBlueshieldOfficerUniforms + - !type:CharacterJobRequirement + jobs: + - BlueshieldOfficer + items: + - ClothingUniformJumpsuitBlueshieldOfficer \ No newline at end of file diff --git a/Resources/Prototypes/Loadouts/Jobs/Command/nanorep.yml b/Resources/Prototypes/Loadouts/Jobs/Command/nanorep.yml new file mode 100644 index 00000000000000..858c7a65e8abc5 --- /dev/null +++ b/Resources/Prototypes/Loadouts/Jobs/Command/nanorep.yml @@ -0,0 +1,66 @@ +# Uncategorized +# Backpacks +- type: loadout + id: LoadoutClothingBackpackSatchelNanorep + category: JobsCommandNanorep + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNanorepBackpacks + - !type:CharacterJobRequirement + jobs: + - NanotrasenRepresentative + items: + - ClothingBackpackSatchelNanorep + +# Belt + +# Ears + +# Equipment + +# Eyes + +# Gloves + +# Head + +# Id + +# Neck + +# Mask + +# Outer + +# Shoes + +# Uniforms +- type: loadout + id: LoadoutClothingUniformJumpskirtNanotrasenRepresentative + category: JobsCommandNanorep + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNanorepUniforms + - !type:CharacterJobRequirement + jobs: + - NanotrasenRepresentative + items: + - ClothingUniformJumpskirtNanotrasenRepresentative + +- type: loadout + id: LoadoutClothingUniformJumpsuitNanotrasenRepresentative + category: JobsCommandNanorep + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNanorepUniforms + - !type:CharacterJobRequirement + jobs: + - NanotrasenRepresentative + items: + - ClothingUniformJumpsuitNanotrasenRepresentative \ No newline at end of file diff --git a/Resources/Prototypes/Loadouts/Jobs/Engineering/atmosphericTechnician.yml b/Resources/Prototypes/Loadouts/Jobs/Engineering/atmosphericTechnician.yml index 67fe8a6c1d9584..db427ec73b89b9 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Engineering/atmosphericTechnician.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Engineering/atmosphericTechnician.yml @@ -295,6 +295,19 @@ - ClothingMaskGasAtmos # Outer +- type: loadout + id: LoadoutAtmosphericTechnicianWinterCoat + category: JobsEngineeringAtmosphericTechnician + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutAtmosphericTechnicianOuter + - !type:CharacterJobRequirement + jobs: + - AtmosphericTechnician + items: + - ClothingOuterWinterAtmos + - type: loadout id: LoadoutAtmosphericTechnicianChickenSuit category: JobsEngineeringAtmosphericTechnician diff --git a/Resources/Prototypes/Loadouts/Jobs/Engineering/uncategorized.yml b/Resources/Prototypes/Loadouts/Jobs/Engineering/uncategorized.yml index 391aa975e52e16..3c9fae6bd9af3d 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Engineering/uncategorized.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Engineering/uncategorized.yml @@ -198,6 +198,20 @@ # Mask # Outer + +- type: loadout + id: LoadoutEngineeringWinterCoat + category: JobsEngineeringAAUncategorized + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEngineeringOuter + - !type:CharacterDepartmentRequirement + departments: + - Engineering + items: + - ClothingOuterWinterEngi + - type: loadout id: LoadoutEngineeringOuterHazard category: JobsEngineeringAAUncategorized diff --git a/Resources/Prototypes/Loadouts/Jobs/Epistemics/golemancer.yml b/Resources/Prototypes/Loadouts/Jobs/Epistemics/golemancer.yml index 73063a3dc5bc6a..4cb0bd989aa8c2 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Epistemics/golemancer.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Epistemics/golemancer.yml @@ -100,7 +100,18 @@ # Mask # Outer - +- type: loadout + id: LoadoutScienceUniformWinterCoatRoboticist + category: JobsEpistemicsGolemancer + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutGolemancerUniforms + - !type:CharacterJobRequirement + jobs: + - Roboticist + items: + - ClothingOuterWinterRobo # Shoes # Uniforms diff --git a/Resources/Prototypes/Loadouts/Jobs/Logistics/logisticsOfficer.yml b/Resources/Prototypes/Loadouts/Jobs/Logistics/logisticsOfficer.yml index 190c7467b54db3..f2cf9502d166ba 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Logistics/logisticsOfficer.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Logistics/logisticsOfficer.yml @@ -61,6 +61,18 @@ # Mask # Outer +- type: loadout + id: LoadoutQMWinterCoat + category: JobsLogisticsLogisticsOfficer + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutLogisticsOfficerOuter + - !type:CharacterJobRequirement + jobs: + - Quartermaster + items: + - ClothingOuterWinterQM # Shoes - type: loadout diff --git a/Resources/Prototypes/Loadouts/Jobs/Medical/chemist.yml b/Resources/Prototypes/Loadouts/Jobs/Medical/chemist.yml index cb5b872928c4d9..361c807e596ffe 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Medical/chemist.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Medical/chemist.yml @@ -255,6 +255,19 @@ # Mask # Outer +- type: loadout + id: LoadoutChemistWinterCoat + category: JobsMedicalChemist + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutChemistOuter + - !type:CharacterJobRequirement + jobs: + - Chemist + items: + - ClothingOuterWinterChem + - type: loadout id: LoadoutMedicalOuterLabcoatChem category: JobsMedicalChemist diff --git a/Resources/Prototypes/Loadouts/Jobs/Medical/uncategorized.yml b/Resources/Prototypes/Loadouts/Jobs/Medical/uncategorized.yml index de9acd666c9695..89e8d67dead77e 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Medical/uncategorized.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Medical/uncategorized.yml @@ -385,6 +385,19 @@ # Mask # Outer +- type: loadout + id: LoadoutMedicalOuterWinterCoat + category: JobsMedicalAUncategorized + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMedicalOuter + - !type:CharacterDepartmentRequirement + departments: + - Medical + items: + - ClothingOuterWinterMed + - type: loadout id: LoadoutMedicalOuterLabcoat category: JobsMedicalAUncategorized diff --git a/Resources/Prototypes/Loadouts/Jobs/Security/headOfSecurity.yml b/Resources/Prototypes/Loadouts/Jobs/Security/headOfSecurity.yml index 7954e5d44493cd..e918615e4c828b 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Security/headOfSecurity.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Security/headOfSecurity.yml @@ -188,6 +188,19 @@ # Mask # Outer +- type: loadout + id: LoadoutCommandHOSOuterWinterUnarmored + category: JobsSecurityHeadOfSecurity + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadOfSecurityOuter + - !type:CharacterJobRequirement + jobs: + - HeadOfSecurity + items: + - ClothingOuterWinterHoSUnarmored + - type: loadout id: LoadoutCommandHOSOuterWinter category: JobsSecurityHeadOfSecurity diff --git a/Resources/Prototypes/Loadouts/Jobs/Security/uncategorized.yml b/Resources/Prototypes/Loadouts/Jobs/Security/uncategorized.yml index 282d9d85342a22..9fb358f05dc0d0 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Security/uncategorized.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Security/uncategorized.yml @@ -982,6 +982,20 @@ - ClothingMaskGasSwat # Outer +- type: loadout + id: LoadoutClothingOuterWinterCoatSec + category: JobsSecurityAUncategorized + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutSecurityOuter + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - ClothingOuterWinterSec + + - type: loadout id: LoadoutClothingOuterArmorPlateCarrier category: JobsSecurityAUncategorized diff --git a/Resources/Prototypes/Loadouts/Jobs/Security/warden.yml b/Resources/Prototypes/Loadouts/Jobs/Security/warden.yml index 45ef25e326a345..b71e0320c4a00c 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Security/warden.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Security/warden.yml @@ -33,6 +33,19 @@ # Mask # Outer +- type: loadout + id: LoadoutClothingOuterWinterCoatWarden + category: JobsSecurityWarden + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutWardenOuter + - !type:CharacterJobRequirement + jobs: + - Warden + items: + - ClothingOuterWinterWardenUnarmored + - type: loadout id: LoadoutClothingOuterCoatWarden category: JobsSecurityWarden diff --git a/Resources/Prototypes/Loadouts/Jobs/Service/bartender.yml b/Resources/Prototypes/Loadouts/Jobs/Service/bartender.yml index e2b21a63dfae59..ef4614e886b0fb 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Service/bartender.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Service/bartender.yml @@ -116,6 +116,19 @@ # Mask # Outer +- type: loadout + id: LoadoutServiceBartenderWinterCoat + category: JobsServiceBartender + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBartenderOuter + - !type:CharacterJobRequirement + jobs: + - Bartender + items: + - ClothingOuterWinterBar + - type: loadout id: LoadoutServiceBartenderArmorDuraVest category: JobsServiceBartender diff --git a/Resources/Prototypes/Loadouts/Jobs/Service/botanist.yml b/Resources/Prototypes/Loadouts/Jobs/Service/botanist.yml index c34eb3f55abdbd..2777416bc9a37a 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Service/botanist.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Service/botanist.yml @@ -20,7 +20,18 @@ # Mask # Outer - +- type: loadout + id: LoadoutServiceBotanistWinterCoat + category: JobsServiceBotanist + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBotanistOuter + - !type:CharacterJobRequirement + jobs: + - Botanist + items: + - ClothingOuterWinterHydro # Shoes # Uniforms diff --git a/Resources/Prototypes/Loadouts/Jobs/Service/clown.yml b/Resources/Prototypes/Loadouts/Jobs/Service/clown.yml index 666fddd9c95144..60bd4214f24af2 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Service/clown.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Service/clown.yml @@ -97,6 +97,7 @@ - ClothingMaskSexyClown # Outer + - type: loadout id: LoadoutServiceClownOuterWinter category: JobsServiceClown diff --git a/Resources/Prototypes/Loadouts/Jobs/Service/janitor.yml b/Resources/Prototypes/Loadouts/Jobs/Service/janitor.yml index b8a2909e20963f..e5745c90fa4a61 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Service/janitor.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Service/janitor.yml @@ -20,7 +20,18 @@ # Mask # Outer - +- type: loadout + id: LoadoutServiceWinterCoatJanitor + category: JobsServiceJanitor + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutJanitorOuter + - !type:CharacterJobRequirement + jobs: + - Janitor + items: + - ClothingOuterWinterJani # Shoes # Uniforms diff --git a/Resources/Prototypes/Loadouts/Jobs/Service/musician.yml b/Resources/Prototypes/Loadouts/Jobs/Service/musician.yml index 4fe668d9209b20..a52ba8d8f06ba7 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Service/musician.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Service/musician.yml @@ -620,6 +620,18 @@ # Mask # Outer +- type: loadout + id: LoadoutServiceWinterCoatMusician + category: JobsServiceMusician + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMusicianOuter + - !type:CharacterJobRequirement + jobs: + - Musician + items: + - ClothingOuterWinterMusician # Shoes diff --git a/Resources/Prototypes/Maps/arena.yml b/Resources/Prototypes/Maps/arena.yml index 400a63cf6e1fbf..0d1ad7edffeef6 100644 --- a/Resources/Prototypes/Maps/arena.yml +++ b/Resources/Prototypes/Maps/arena.yml @@ -24,6 +24,9 @@ Librarian: [ 1, 1 ] #command Captain: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1] + NanotrasenRepresentative: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] #engineering AtmosphericTechnician: [ 1, 2 ] ChiefEngineer: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/asterisk.yml b/Resources/Prototypes/Maps/asterisk.yml index 3ef57dd4903aa9..294ac7b80646e8 100644 --- a/Resources/Prototypes/Maps/asterisk.yml +++ b/Resources/Prototypes/Maps/asterisk.yml @@ -24,6 +24,9 @@ availableJobs: #service Captain: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1] + NanotrasenRepresentative: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 2 ] Botanist: [ 2, 3 ] diff --git a/Resources/Prototypes/Maps/core.yml b/Resources/Prototypes/Maps/core.yml index 90b032271da5ca..89d8b097af6e21 100644 --- a/Resources/Prototypes/Maps/core.yml +++ b/Resources/Prototypes/Maps/core.yml @@ -25,6 +25,9 @@ Chef: [ 1, 3 ] Janitor: [ 2, 4 ] Captain: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1] + NanotrasenRepresentative: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] ServiceWorker: [ 3, 6 ] # Engineering @@ -65,3 +68,5 @@ Boxer: [ 2, 4 ] Reporter: [ 2, 4 ] Passenger: [ -1, -1 ] + # Silicon + StationAi: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/edge.yml b/Resources/Prototypes/Maps/edge.yml index e9df3f397ee0e4..3acfaaefdc9718 100644 --- a/Resources/Prototypes/Maps/edge.yml +++ b/Resources/Prototypes/Maps/edge.yml @@ -21,6 +21,9 @@ availableJobs: #service Captain: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1] + NanotrasenRepresentative: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 2 ] Botanist: [ 2, 3 ] @@ -65,4 +68,3 @@ CargoTechnician: [ 2, 4 ] #civilian Passenger: [ -1, -1 ] - diff --git a/Resources/Prototypes/Maps/europa.yml b/Resources/Prototypes/Maps/europa.yml index e2b7b301e8ec46..18d54babe94cc9 100644 --- a/Resources/Prototypes/Maps/europa.yml +++ b/Resources/Prototypes/Maps/europa.yml @@ -19,6 +19,9 @@ availableJobs: #service Captain: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1] + NanotrasenRepresentative: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] Botanist: [ 2, 2 ] @@ -61,4 +64,6 @@ SalvageSpecialist: [ 2, 2 ] CargoTechnician: [ 2, 3 ] #civilian - Passenger: [ -1, -1 ] \ No newline at end of file + Passenger: [ -1, -1 ] + # Silicon + StationAi: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/gaxstation.yml b/Resources/Prototypes/Maps/gaxstation.yml index 8be8fcce042c4b..41cf7449a56f73 100644 --- a/Resources/Prototypes/Maps/gaxstation.yml +++ b/Resources/Prototypes/Maps/gaxstation.yml @@ -22,6 +22,9 @@ availableJobs: #service Captain: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1] + NanotrasenRepresentative: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] Botanist: [3 , 3 ] diff --git a/Resources/Prototypes/Maps/glacier.yml b/Resources/Prototypes/Maps/glacier.yml index e32127d3e500ed..0b146b1ae0f11c 100644 --- a/Resources/Prototypes/Maps/glacier.yml +++ b/Resources/Prototypes/Maps/glacier.yml @@ -23,6 +23,9 @@ availableJobs: Passenger: [ -1, -1 ] Captain: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1] + NanotrasenRepresentative: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] #service HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] @@ -70,3 +73,5 @@ MailCarrier: [ 2, 3 ] SalvageSpecialist: [ 2, 3 ] CargoTechnician: [ 2, 3 ] + # Silicon + StationAi: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/hammurabi.yml b/Resources/Prototypes/Maps/hammurabi.yml index 6c27a09ddbb43a..e36cca1314ec89 100644 --- a/Resources/Prototypes/Maps/hammurabi.yml +++ b/Resources/Prototypes/Maps/hammurabi.yml @@ -23,6 +23,9 @@ Librarian: [ 1, 1 ] #command Captain: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1] + NanotrasenRepresentative: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] #engineering AtmosphericTechnician: [ 2, 3 ] ChiefEngineer: [ 1, 1 ] @@ -69,3 +72,5 @@ CargoTechnician: [ 2, 4 ] SalvageSpecialist: [ 3, 5 ] MailCarrier: [ 2, 3 ] + # Silicon + StationAi: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/hive.yml b/Resources/Prototypes/Maps/hive.yml index 0b6d3a182cee8b..30dfcd4edbe159 100644 --- a/Resources/Prototypes/Maps/hive.yml +++ b/Resources/Prototypes/Maps/hive.yml @@ -24,6 +24,9 @@ Librarian: [ 1, 1 ] #command Captain: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1] + NanotrasenRepresentative: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] #engineering AtmosphericTechnician: [ 1, 2 ] ChiefEngineer: [ 1, 1 ] @@ -70,3 +73,5 @@ CargoTechnician: [ 2, 3 ] SalvageSpecialist: [ 2, 3 ] MailCarrier: [ 2, 2 ] + # Silicon + StationAi: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/lighthouse.yml b/Resources/Prototypes/Maps/lighthouse.yml index 7e3cd1bb70d251..34fa636e2c4d41 100644 --- a/Resources/Prototypes/Maps/lighthouse.yml +++ b/Resources/Prototypes/Maps/lighthouse.yml @@ -21,6 +21,9 @@ availableJobs: #service Captain: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1] + NanotrasenRepresentative: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 2 ] Botanist: [ 2, 2 ] @@ -65,4 +68,5 @@ CargoTechnician: [ 2, 4 ] #civilian Passenger: [ -1, -1 ] - + # Silicon + StationAi: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/meta.yml b/Resources/Prototypes/Maps/meta.yml index b7229a00c279c1..32274b0f8b5d4e 100644 --- a/Resources/Prototypes/Maps/meta.yml +++ b/Resources/Prototypes/Maps/meta.yml @@ -19,6 +19,9 @@ availableJobs: #service Captain: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1] + NanotrasenRepresentative: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] Botanist: [ 2, 3 ] diff --git a/Resources/Prototypes/Maps/pebble.yml b/Resources/Prototypes/Maps/pebble.yml index 81b77070b7383f..fdf6a0d3b26649 100644 --- a/Resources/Prototypes/Maps/pebble.yml +++ b/Resources/Prototypes/Maps/pebble.yml @@ -19,6 +19,9 @@ availableJobs: #service Captain: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1] + NanotrasenRepresentative: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 2 ] Botanist: [ 2, 2 ] @@ -61,3 +64,5 @@ CargoTechnician: [ 2, 3 ] #civilian Passenger: [ -1, -1 ] + # Silicon + StationAi: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/radstation.yml b/Resources/Prototypes/Maps/radstation.yml index 0d0b871aa099d0..c05f16796b3429 100644 --- a/Resources/Prototypes/Maps/radstation.yml +++ b/Resources/Prototypes/Maps/radstation.yml @@ -20,6 +20,9 @@ availableJobs: #service Captain: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1] + NanotrasenRepresentative: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] Botanist: [ 3, 3 ] diff --git a/Resources/Prototypes/Maps/saltern.yml b/Resources/Prototypes/Maps/saltern.yml index 26ae4a74ce912b..4d416df87ba6b2 100644 --- a/Resources/Prototypes/Maps/saltern.yml +++ b/Resources/Prototypes/Maps/saltern.yml @@ -22,6 +22,9 @@ availableJobs: #service Captain: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1] + NanotrasenRepresentative: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 2 ] Botanist: [ 1, 3 ] diff --git a/Resources/Prototypes/Maps/shoukou.yml b/Resources/Prototypes/Maps/shoukou.yml index 5b4664eb161261..18aae21c3795fa 100644 --- a/Resources/Prototypes/Maps/shoukou.yml +++ b/Resources/Prototypes/Maps/shoukou.yml @@ -33,6 +33,9 @@ Musician: [ 1, 1] Mime: [ 1, 1 ] Captain: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1] + NanotrasenRepresentative: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] #Engineering ChiefEngineer: [ 1, 1 ] @@ -66,4 +69,5 @@ SalvageSpecialist: [ 2, 4 ] MailCarrier: [ 1, 2 ] CargoTechnician: [ 2, 3 ] - + # Silicon + StationAi: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/submarine.yml b/Resources/Prototypes/Maps/submarine.yml index 215c5c2f4c2ead..5ff22608182e9f 100644 --- a/Resources/Prototypes/Maps/submarine.yml +++ b/Resources/Prototypes/Maps/submarine.yml @@ -23,6 +23,9 @@ Librarian: [ 1, 1 ] #command Captain: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1] + NanotrasenRepresentative: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] #engineering AtmosphericTechnician: [ 2, 4 ] ChiefEngineer: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/tortuga.yml b/Resources/Prototypes/Maps/tortuga.yml index 7bbaee4cd0971e..1108593bb30774 100644 --- a/Resources/Prototypes/Maps/tortuga.yml +++ b/Resources/Prototypes/Maps/tortuga.yml @@ -23,6 +23,9 @@ Librarian: [ 1, 1 ] #command Captain: [ 1, 1 ] + BlueshieldOfficer: [ 1, 1] + NanotrasenRepresentative: [ 1, 1 ] + AdministrativeAssistant: [ 1, 1 ] #engineering AtmosphericTechnician: [ 2, 3 ] ChiefEngineer: [ 1, 1 ] @@ -69,3 +72,5 @@ CargoTechnician: [ 2, 4 ] SalvageSpecialist: [ 3, 4 ] MailCarrier: [ 2, 2 ] + # Silicon + StationAi: [ 1, 1 ] diff --git a/Resources/Prototypes/Recipes/Lathes/security.yml b/Resources/Prototypes/Recipes/Lathes/security.yml index e80ba6bbf94fcb..f935ca994e26ec 100644 --- a/Resources/Prototypes/Recipes/Lathes/security.yml +++ b/Resources/Prototypes/Recipes/Lathes/security.yml @@ -226,6 +226,20 @@ materials: Steel: 500 +- type: latheRecipe + parent: BaseAmmoRecipe + id: MagazinePistolCaselessRifle + result: MagazinePistolCaselessRifle + materials: + Steel: 145 + +- type: latheRecipe + parent: BaseAmmoRecipe + id: MagazineBoxCaselessRifle + result: MagazineBoxCaselessRifle + materials: + Steel: 720 + - type: latheRecipe id: MagazinePistolEmpty result: MagazinePistolEmpty diff --git a/Resources/Prototypes/Roles/Jobs/departments.yml b/Resources/Prototypes/Roles/Jobs/departments.yml index dd29f4a1339dec..06963eb898849e 100644 --- a/Resources/Prototypes/Roles/Jobs/departments.yml +++ b/Resources/Prototypes/Roles/Jobs/departments.yml @@ -58,6 +58,8 @@ - ERTEngineer - DeathSquad - AdministrativeAssistant # Delta V - Administrative Assistant, see Resources/Prototypes/Nyanotrasen/Roles/Jobs/Command/admin_assistant.yml + - BlueshieldOfficer # Goobstation + - NanotrasenRepresentative # Goobstation primary: false weight: 100 diff --git a/Resources/Prototypes/Species/shadowkin.yml b/Resources/Prototypes/Species/shadowkin.yml index 7cbd752092f0df..f7674e80d61280 100644 --- a/Resources/Prototypes/Species/shadowkin.yml +++ b/Resources/Prototypes/Species/shadowkin.yml @@ -1,7 +1,7 @@ - type: species id: Shadowkin name: species-name-shadowkin - roundStart: true + roundStart: false prototype: MobShadowkin sprites: MobShadowkinSprites defaultSkinTone: "#FFFFFF" diff --git a/Resources/Prototypes/_Goobstation/Access/centcomm.yml b/Resources/Prototypes/_Goobstation/Access/centcomm.yml new file mode 100644 index 00000000000000..bd8ee7102ecbcc --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Access/centcomm.yml @@ -0,0 +1,7 @@ +- type: accessLevel + id: NanotrasenRepresentative + name: id-card-access-level-ntr + +- type: accessLevel + id: BlueshieldOfficer + name: id-card-access-level-bso diff --git a/Resources/Prototypes/_Goobstation/Catalog/Fills/Boxes/security.yml b/Resources/Prototypes/_Goobstation/Catalog/Fills/Boxes/security.yml new file mode 100644 index 00000000000000..1604f300a13335 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Catalog/Fills/Boxes/security.yml @@ -0,0 +1,12 @@ +- type: entity + parent: BlueshieldAmmunitionBox + id: BlueshieldAmmunitionBoxFilled + suffix: Filled + components: + - type: StorageFill + contents: + - id: MagazineBoxMagnum + - id: MagazineBoxMagnumFlash + - id: MagazineBoxMagnumEMP + - id: MagazineMagnumLeverRifleEmpty + amount: 2 diff --git a/Resources/Prototypes/_Goobstation/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/_Goobstation/Catalog/Fills/Lockers/heads.yml new file mode 100644 index 00000000000000..45e4e5262a28a9 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Catalog/Fills/Lockers/heads.yml @@ -0,0 +1,31 @@ +- type: entity + id: LockerNanorepFilled + suffix: Filled + parent: LockerNanorep + components: + - type: StorageFill + contents: + - id: BoxFolderCentCom + - id: WeaponDisabler + - id: BriefcaseBrownFilled + - id: BedsheetCentcom + - id: CaneSheathFilledNanotrasen + - id: HandheldFaxNanorep + - id: RubberStampNanorep + - id: Paper + amount: 2 + +- type: entity + id: LockerBlueshieldOfficerFilled + suffix: Filled + parent: LockerBlueshieldOfficer + components: + - type: StorageFill + contents: + - id: Flash + - id: ClothingEyesGlassesMedSec + - id: PinpointerNuclear + - id: ClothingHandsGlovesCombat + - id: WeaponLeverChester + - id: WeaponEnergyRevolver + - id: BlueshieldAmmunitionBoxFilled diff --git a/Resources/Prototypes/_Goobstation/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/_Goobstation/Entities/Clothing/Back/backpacks.yml new file mode 100644 index 00000000000000..d386bd32294be6 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Clothing/Back/backpacks.yml @@ -0,0 +1,8 @@ +- type: entity + parent: ClothingBackpack + id: ClothingBackpackBlueshield + name: blueshield backpack + description: A very protective backpack, smells like energy gun. + components: + - type: Sprite + sprite: _Goobstation/Clothing/Back/Backpacks/blueshield.rsi \ No newline at end of file diff --git a/Resources/Prototypes/_Goobstation/Entities/Clothing/Back/duffel.yml b/Resources/Prototypes/_Goobstation/Entities/Clothing/Back/duffel.yml new file mode 100644 index 00000000000000..c4273596f9a51e --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Clothing/Back/duffel.yml @@ -0,0 +1,8 @@ +- type: entity + parent: ClothingBackpackDuffel + id: ClothingBackpackDuffelBlueshield + name: blueshield duffel bag + description: A very protective duffel bag, smells like energy gun. + components: + - type: Sprite + sprite: _Goobstation/Clothing/Back/Duffels/blueshield.rsi diff --git a/Resources/Prototypes/_Goobstation/Entities/Clothing/Back/satchel.yml b/Resources/Prototypes/_Goobstation/Entities/Clothing/Back/satchel.yml new file mode 100644 index 00000000000000..aeb1b80bf86ff6 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Clothing/Back/satchel.yml @@ -0,0 +1,17 @@ +- type: entity + parent: ClothingBackpackSatchel + id: ClothingBackpackSatchelNanorep + name: Nanotrasen Representative Satchel + description: An expensive dark green backpack. Smells like fax machines. + components: + - type: Sprite + sprite: _Goobstation/Clothing/Back/Satchels/nanorep.rsi + +- type: entity + parent: ClothingBackpackSatchel + id: ClothingBackpackSatchelBlueshield + name: blueshield satchel + description: A very protective satchel, smells like energy gun. + components: + - type: Sprite + sprite: _Goobstation/Clothing/Back/Satchels/blueshield.rsi \ No newline at end of file diff --git a/Resources/Prototypes/_Goobstation/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/_Goobstation/Entities/Clothing/Eyes/glasses.yml new file mode 100644 index 00000000000000..23735f970c03ce --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Clothing/Eyes/glasses.yml @@ -0,0 +1,26 @@ +- type: entity + parent: [ClothingEyesBase, ShowSecurityIcons, ShowMedicalIcons] + id: ClothingEyesGlassesMedSec + name: medsecglasses + description: Sunglasses with a medical and security hud + components: + - type: Sprite + sprite: _Goobstation/Clothing/Eyes/Glasses/medglasses.rsi + - type: Clothing + sprite: _Goobstation/Clothing/Eyes/Glasses/medglasses.rsi + - type: FlashImmunity + - type: EyeProtection + protectionTime: 5 + - type: Tag + tags: + - WhitelistChameleon + - HudMedical + - type: IdentityBlocker + coverage: EYES + - type: ShowHealthBars + damageContainers: + - Biological + - type: ShowHealthIcons + damageContainers: + - Biological + diff --git a/Resources/Prototypes/_Goobstation/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/_Goobstation/Entities/Clothing/Head/hats.yml new file mode 100644 index 00000000000000..bdee94dd822343 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Clothing/Head/hats.yml @@ -0,0 +1,44 @@ +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBeretNavy + name: navy blue officer beret + description: A navy blue beret with the silver shield of the Nanotrasen security forces. + components: + - type: Sprite + sprite: _Goobstation/Clothing/Head/Hats/beret_bso_navy.rsi + - type: Clothing + sprite: _Goobstation/Clothing/Head/Hats/beret_bso_navy.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBeretOfficer + name: officers beret + description: A black beret with the silver shield of the Nanotrasen security forces. + components: + - type: Sprite + sprite: _Goobstation/Clothing/Head/Hats/beret_bso_officer.rsi + - type: Clothing + sprite: _Goobstation/Clothing/Head/Hats/beret_bso_officer.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatCowboyBlueshield + name: blueshield cowboy hat + description: Sheriff's back in town, kids + components: + - type: Sprite + sprite: _Goobstation/Clothing/Head/Hats/cowboyhatbso.rsi + - type: Clothing + sprite: _Goobstation/Clothing/Head/Hats/cowboyhatbso.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon diff --git a/Resources/Prototypes/_Goobstation/Entities/Clothing/OuterClothing/armour.yml b/Resources/Prototypes/_Goobstation/Entities/Clothing/OuterClothing/armour.yml new file mode 100644 index 00000000000000..fa40bdbe5af020 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Clothing/OuterClothing/armour.yml @@ -0,0 +1,46 @@ +# Blueshield Armour Vest +- type: entity + parent: [ClothingOuterBaseMedium, AllowSuitStorageClothing] + id: ClothingBlueshieldArmourVest + name: blueshield's security armour + description: An armoured vest with the badge of the blueshield + components: + - type: Sprite + sprite: _Goobstation/Clothing/Armor/bso_armour.rsi + - type: Clothing + sprite: _Goobstation/Clothing/Armor/bso_armour.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.60 + Slash: 0.60 + Piercing: 0.65 + Heat: 0.70 + - type: ExplosionResistance + damageCoefficient: 0.8 + +- type: entity + parent: ClothingBlueshieldArmourVest + id: ClothingBlueshieldArmoredJacket + name: blueshield's armored jacket + description: A jacket with sewn-in reinforcement layers. + components: + - type: Sprite + sprite: _Goobstation/Clothing/OuterClothing/Armor/blueshield_jacket.rsi + - type: Clothing + sprite: _Goobstation/Clothing/OuterClothing/Armor/blueshield_jacket.rsi + - type: Item + size: Normal + +- type: entity + parent: ClothingBlueshieldArmourVest + id: ClothingBlueshieldArmoredCowboyJacket + name: blueshield's armored cowboy jacket + description: A jacket to protect important people in wild areas. + components: + - type: Sprite + sprite: _Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi + - type: Clothing + sprite: _Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi + - type: Item + size: Normal diff --git a/Resources/Prototypes/_Goobstation/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/_Goobstation/Entities/Clothing/Uniforms/jumpskirts.yml new file mode 100644 index 00000000000000..a70d4d0aa16cbe --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Clothing/Uniforms/jumpskirts.yml @@ -0,0 +1,32 @@ +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtBlueshieldOfficer + name: blueshield officer jumpskirt + description: A short-sleeved grey and blue jumpskirt, made out of a sturdy material. Blueshield standard issue. + components: + - type: Sprite + sprite: _Goobstation/Clothing/Uniforms/Jumpskirt/blueshield_officer.rsi + - type: Clothing + sprite: _Goobstation/Clothing/Uniforms/Jumpskirt/blueshield_officer.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: CentcomAgentSkirt + name: centcom agent skirt + description: A skirt worn by CentComs legal team. Smells of burnt coffee. + components: + - type: Sprite + sprite: _Goobstation/Clothing/Uniforms/Jumpskirt/centcom_agent.rsi + - type: Clothing + sprite: _Goobstation/Clothing/Uniforms/Jumpskirt/centcom_agent.rsi + +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtNanotrasenRepresentative + name: nanotrasen representative skirt + description: A black skirt worn by officials. + components: + - type: Sprite + sprite: _Goobstation/Clothing/Uniforms/Jumpskirt/nanotrasen_representative.rsi + - type: Clothing + sprite: _Goobstation/Clothing/Uniforms/Jumpskirt/nanotrasen_representative.rsi \ No newline at end of file diff --git a/Resources/Prototypes/_Goobstation/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/_Goobstation/Entities/Clothing/Uniforms/jumpsuits.yml new file mode 100644 index 00000000000000..13185f9b389200 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Clothing/Uniforms/jumpsuits.yml @@ -0,0 +1,26 @@ +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitBlueshieldOfficer + name: blueshield officer jumpsuit + description: A short-sleeved grey and blue jumpsuit, made out of a sturdy material. Blueshield standard issue. + components: + - type: Sprite + sprite: _Goobstation/Clothing/Uniforms/Jumpsuit/blueshield_officer.rsi + - type: Clothing + sprite: _Goobstation/Clothing/Uniforms/Jumpsuit/blueshield_officer.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Heat: 0.95 + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitNanotrasenRepresentative + name: nanotrasen representative suit + description: A black suit worn by officials. + components: + - type: Sprite + sprite: _Goobstation/Clothing/Uniforms/Jumpsuit/nanotrasen_representative.rsi + - type: Clothing + sprite: _Goobstation/Clothing/Uniforms/Jumpsuit/nanotrasen_representative.rsi diff --git a/Resources/Prototypes/_Goobstation/Entities/Marker/unique.yml b/Resources/Prototypes/_Goobstation/Entities/Marker/unique.yml new file mode 100644 index 00000000000000..4400a7b872a7ad --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Marker/unique.yml @@ -0,0 +1,27 @@ +- type: entity + name: blueshield locker unique marker + id: UniqueMarkerBlueshieldLocker + parent: MarkerBase + categories: [ HideSpawnMenu ] + components: + - type: Sprite + layers: + - state: red + - sprite: _Goobstation/Structures/Storage/closet.rsi + state: bso + - type: UniqueEntityMarker + markerName: BlueshieldLocker + +- type: entity + name: nanorep locker unique marker + id: UniqueMarkerNanorepLocker + parent: MarkerBase + categories: [ HideSpawnMenu ] + components: + - type: Sprite + layers: + - state: red + - sprite: _Goobstation/Structures/Storage/closet.rsi + state: ntr + - type: UniqueEntityMarker + markerName: NanorepLocker \ No newline at end of file diff --git a/Resources/Prototypes/_Goobstation/Entities/Markers/Spawners/jobs.yml b/Resources/Prototypes/_Goobstation/Entities/Markers/Spawners/jobs.yml new file mode 100644 index 00000000000000..9bf7854bf7d446 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Markers/Spawners/jobs.yml @@ -0,0 +1,25 @@ +# Command + +- type: entity + id: SpawnPointBlueshieldOfficer + parent: SpawnPointJobBase + name: blueshieldofficer + components: + - type: SpawnPoint + job_id: BlueshieldOfficer + - type: Sprite + layers: + - state: green + - state: ertleader + +- type: entity + id: SpawnPointNanotrasenRepresentative + parent: SpawnPointJobBase + name: nanotrasenrepresentative + components: + - type: SpawnPoint + job_id: NanotrasenRepresentative + - type: Sprite + layers: + - state: green + - state: centcom diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Devices/Electronics/door_access.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Devices/Electronics/door_access.yml new file mode 100644 index 00000000000000..c49a3f34bc4c35 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Devices/Electronics/door_access.yml @@ -0,0 +1,23 @@ +- type: entity + parent: DoorElectronics + id: DoorElectronicsCentralCommandCaptain + suffix: CentCommCap, Locked + components: + - type: AccessReader + access: [["CentralCommand"], [Captain]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsNTR + suffix: NanotrasenRepresentative, Locked + components: + - type: AccessReader + access: [["NanotrasenRepresentative"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsBSO + suffix: BlueshieldOfficer, Locked + components: + - type: AccessReader + access: [["BlueshieldOfficer"]] diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Devices/pda.yml new file mode 100644 index 00000000000000..5129418528330d --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Devices/pda.yml @@ -0,0 +1,17 @@ +- type: entity + parent: ERTLeaderPDA + id: BlueshieldPDA + name: Blueshield Officer PDA + description: The silver shield of the Blueshield is engraved on the front. + components: + - type: Pda + id: BlueshieldIDCard + state: pda-blueshield + - type: Icon + sprite: _Goobstation/Objects/Devices/pda.rsi + state: pda-blueshield + - type: Sprite + sprite: _Goobstation/Objects/Devices/pda.rsi + state: pda-blueshield + - type: PdaBorderColor + borderColor: "#3c94c5" \ No newline at end of file diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Devices/unique_teleporters.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Devices/unique_teleporters.yml new file mode 100644 index 00000000000000..e4bb5b8d48d1d8 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Devices/unique_teleporters.yml @@ -0,0 +1,62 @@ +- type: entity + parent: BaseItem + id: BaseLockerTeleporter + abstract: true + name: special equipment teleporter + description: Device that allows you to request delivery of special equipment. + components: + - type: Sprite + sprite: _Goobstation/Objects/Devices/unique_teleporters.rsi + - type: Item + sprite: _Goobstation/Objects/Devices/unique_teleporters.rsi + - type: UseOnStationOnly + - type: SpawnItemsOnUse + sound: /Audio/Items/Mining/fultext_launch.ogg + +- type: entity + parent: BaseLockerTeleporter + id: BlueshieldOfficerLockerTeleporter + name: blueshield locker teleporter + description: Device that allows you to request delivery of blueshield officer locker. + components: + - type: Sprite + state: bso + - type: SpawnItemsOnUse + items: + - id: UniqueLockerBlueshieldOfficerFilled + +- type: entity + parent: BlueshieldOfficerLockerTeleporter + id: UniqueBlueshieldOfficerLockerTeleporter + suffix: Unique + categories: [ HideSpawnMenu ] + components: + - type: UniqueEntityChecker + markerName: BlueshieldLocker + - type: UniqueEntityMarker + markerName: BlueshieldLocker + stationOnly: false + +- type: entity + parent: BaseLockerTeleporter + id: NanorepLockerTeleporter + name: nanotrasen representative locker teleporter + description: Device that allows you to request delivery of nanotrasen representative locker. + components: + - type: Sprite + state: ntr + - type: SpawnItemsOnUse + items: + - id: UniqueLockerNanorepFilled + +- type: entity + parent: NanorepLockerTeleporter + id: UniqueNanorepLockerTeleporter + suffix: Unique + categories: [ HideSpawnMenu ] + components: + - type: UniqueEntityChecker + markerName: NanorepLocker + - type: UniqueEntityMarker + markerName: NanorepLocker + stationOnly: false diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Misc/identification_cards.yml new file mode 100644 index 00000000000000..4770c8d1cf872a --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Misc/identification_cards.yml @@ -0,0 +1,17 @@ +# Blueshield +- type: entity + parent: IDCardStandard + id: BlueshieldIDCard + name: blueshield officer ID card + components: + - type: Sprite + layers: + - state: centcom + - type: Item + heldPrefix: + - type: PresetIdCard + job: BlueshieldOfficer + - type: Access + tags: + - CentralCommand + - BlueshieldOfficer \ No newline at end of file diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Misc/rubber_stamps.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Misc/rubber_stamps.yml new file mode 100644 index 00000000000000..fb4d12bb33eea5 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Misc/rubber_stamps.yml @@ -0,0 +1,12 @@ +- type: entity + name: nanotrasen representative rubber stamp + parent: RubberStampBase + id: RubberStampNanorep + components: + - type: Stamp + stampedName: stamp-component-stamped-name-nanorep + stampedColor: "#2ec69b" + stampState: "paper_stamp-nanorep" + - type: Sprite + sprite: _Goobstation/Objects/Misc/stamps.rsi + state: stamp-nanorep \ No newline at end of file diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Storage/bso_box.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Storage/bso_box.yml new file mode 100644 index 00000000000000..84445456e5d7f9 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Storage/bso_box.yml @@ -0,0 +1,30 @@ +- type: entity + id: BlueshieldAmmunitionBox + name: blueshield ammunition box + description: A box containing various ammunition and magazines for magnum type weapons. + parent: BaseStorageItem + components: + - type: Sprite + sprite: _Goobstation/Objects/Storage/bso_box.rsi + layers: + - map: [ base ] + state: icon + - type: EmitSoundOnLand + - type: Storage + maxItemSize: Small + grid: + - 0,0,5,1 + whitelist: + components: + - BallisticAmmoProvider + - type: Item + size: Normal + shape: + - 0,0,2,1 + - type: GenericVisualizer + visuals: + enum.StorageVisuals.Open: + base: + True: { state: icon-open } + False: { state: icon } + - type: Appearance diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Tools/tools.yml new file mode 100644 index 00000000000000..d127042f050518 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Tools/tools.yml @@ -0,0 +1,74 @@ +- type: entity + name: handheld fax + parent: BaseItem + id: HandheldFax + description: A tool that can send ton of paper on Centcomm fax. + components: + - type: Item + size: Huge + - type: Sprite + sprite: Structures/Machines/fax_machine.rsi + drawdepth: SmallObjects + layers: + - state: icon + map: [ "enum.FaxMachineVisuals.VisualState" ] + - type: Icon + sprite: Structures/Machines/fax_machine.rsi + state: icon + - type: Appearance + - type: ActivatableUI + key: enum.FaxUiKey.Key + - type: UserInterface + interfaces: + enum.FaxUiKey.Key: + type: FaxBoundUi + - type: Faxecute + damage: + types: + Blunt: 100 + - type: ApcPowerReceiver + needsPower: false + powerLoad: 250 + - type: FaxMachine + paperSlot: + insertSound: /Audio/Machines/scanning.ogg + ejectSound: /Audio/Machines/tray_eject.ogg + whitelist: + components: + - FaxableObject #used to be PaperComponent - brainfood1183 + - type: GenericVisualizer + visuals: + enum.PowerDeviceVisuals.Powered: + enum.FaxMachineVisuals.VisualState: + True: { state: idle } + False: { state: icon } + enum.FaxMachineVisuals.VisualState: + enum.FaxMachineVisuals.VisualState: + Printing: { state: printing } + Normal: {state: idle} + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: Fax + transmitFrequencyId: Fax + - type: ItemSlots + - type: ContainerContainer + containers: + Paper: !type:ContainerSlot + - type: MultiHandedItem + +- type: entity + name: nanotrasen representative handheld fax + parent: HandheldFax + id: HandheldFaxNanorep + suffix: Nanotrasen Representative + components: + - type: FaxMachine + name: "Nanotrasen Representative" + - type: Sprite + sprite: _Goobstation/Objects/Tools/handheld_fax.rsi + drawdepth: SmallObjects + layers: + - state: icon + map: [ "enum.FaxMachineVisuals.VisualState" ] + - state: scanner + shader: unshaded \ No newline at end of file diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml new file mode 100644 index 00000000000000..6bf5c5c76553eb --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml @@ -0,0 +1,60 @@ +- type: entity + id: BaseMagazineBoxMagnumExtended + parent: BaseMagazineBoxMagnum + abstract: true + components: + - type: BallisticAmmoProvider + mayTransfer: true + whitelist: + tags: + - CartridgeMagnum + proto: CartridgeMagnum + capacity: 16 + +- type: entity + id: MagazineBoxMagnumEnsnaring + parent: BaseMagazineBoxMagnumExtended + name: ammunition box (.45 magnum ensnaring) + components: + - type: BallisticAmmoProvider + proto: CartridgeMagnumEnsnaring + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] + - state: incendiary #i changed just color because it almost white + color: "#cfff77" + +- type: entity + id: MagazineBoxMagnumEMP + parent: BaseMagazineBoxMagnumExtended + name: ammunition box (.45 magnum EMP) + components: + - type: BallisticAmmoProvider + proto: CartridgeMagnumEMP + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] + - state: incendiary + color: "#009eff" + +- type: entity + id: MagazineBoxMagnumFlash + parent: BaseMagazineBoxMagnumExtended + name: ammunition box (.45 magnum flash) + components: + - type: BallisticAmmoProvider + proto: CartridgeMagnumFlash + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] + - state: incendiary + color: "#fff94d" diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml new file mode 100644 index 00000000000000..45352562505141 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml @@ -0,0 +1,44 @@ +- type: entity + id: CartridgeMagnumEnsnaring + name: cartridge (.45 magnum ensnaring) + parent: BaseCartridgeMagnum + components: + - type: CartridgeAmmo + proto: BulletMagnumEnsnaring + - type: Sprite + layers: + - state: base + map: [ "enum.AmmoVisualLayers.Base" ] + - state: tip + map: [ "enum.AmmoVisualLayers.Tip" ] + color: "#cfff77" + +- type: entity + id: CartridgeMagnumEMP + name: cartridge (.45 magnum EMP) + parent: BaseCartridgeMagnum + components: + - type: CartridgeAmmo + proto: BulletMagnumEMP + - type: Sprite + layers: + - state: base + map: [ "enum.AmmoVisualLayers.Base" ] + - state: tip + map: [ "enum.AmmoVisualLayers.Tip" ] + color: "#009eff" + +- type: entity + id: CartridgeMagnumFlash + name: cartridge (.45 magnum flash) + parent: BaseCartridgeMagnum + components: + - type: CartridgeAmmo + proto: BulletMagnumFlash + - type: Sprite + layers: + - state: base + map: [ "enum.AmmoVisualLayers.Base" ] + - state: tip + map: [ "enum.AmmoVisualLayers.Tip" ] + color: "#fff94d" diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum_caliber_magazine.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum_caliber_magazine.yml new file mode 100644 index 00000000000000..16d2feb51e86cc --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum_caliber_magazine.yml @@ -0,0 +1,53 @@ +# Empty mags +- type: entity + id: BaseMagazineMagnumLeverRifle + name: "magazine (.45 rifle)" + parent: BaseItem + abstract: true + components: + - type: Tag + tags: + - MagazineMagnumLeverRifle + - type: BallisticAmmoProvider + mayTransfer: true + whitelist: + tags: + - CartridgeMagnum + proto: CartridgeMagnum + capacity: 8 + - type: Item + size: Small + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + - type: Sprite + sprite: Objects/Weapons/Guns/Ammunition/Magazine/LightRifle/light_rifle_mag.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] + - type: MagazineVisuals + magState: mag + steps: 9 + zeroVisible: false + - type: Appearance + +- type: entity + id: MagazineMagnumLeverRifle + name: "lever rifle magazine (.45)" + parent: BaseMagazineMagnumLeverRifle + components: + - type: Tag + tags: + - MagazineMagnumLeverRifle + - type: Sprite + sprite: _Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi + +- type: entity + id: MagazineMagnumLeverRifleEmpty + parent: MagazineMagnumLeverRifle + suffix: Empty + components: + - type: BallisticAmmoProvider + proto: null diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml new file mode 100644 index 00000000000000..281819c4073896 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml @@ -0,0 +1,77 @@ +- type: entity + id: BulletMagnumEnsnaring + name: bullet (.45 magnum ensnaring) + parent: BaseBullet + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi + layers: + - state: rubber + - type: Projectile + deleteOnCollide: false + damage: + types: + Piercing: 15 #Low damage, but ensnaring + - type: Ensnaring + canThrowTrigger: true + destroyOnRemove: true + breakoutTime: 2 + freeTime: 2 + sprintSpeed: 0.7 + walkSpeed: 0.7 + staminaDamage: 10 + +- type: entity + id: BulletMagnumEMP + name: bullet (.45 magnum EMP) + parent: BaseBulletTrigger + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi + layers: + - state: rubber + color: "#009eff" + - type: EmpOnTrigger + range: 0.2 + energyConsumption: 80 + disableDuration: 1 + - type: Ammo + muzzleFlash: null + - type: PointLight + radius: 1.5 + color: blue + energy: 0.5 + - type: Projectile + damage: + types: + Piercing: 10 + Ion: 20 + +- type: entity + id: BulletMagnumFlash + name: bullet (.45 magnum flash) + parent: BaseBulletTrigger + categories: [ HideSpawnMenu ] + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi + layers: + - state: rubber + color: "#fff94d" + - type: FlashOnTrigger + range: 5 + duration: 4 + - type: SpawnOnTrigger + proto: GrenadeFlashEffect + - type: Ammo + muzzleFlash: null + - type: PointLight + radius: 1.5 + color: yellow + energy: 1 + - type: Projectile + damage: + types: + Piercing: 18 diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml new file mode 100644 index 00000000000000..d3e4532f32db91 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -0,0 +1,63 @@ +- type: entity + name: EG-4 energy revolver + parent: BaseWeaponBatterySmall + id: WeaponEnergyRevolver + description: A highly advanced energy revolver capable of firing both lethal and disabling bullets. + components: + - type: Sprite + sprite: _Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mode-disabler + shader: unshaded + map: [ "Firemode" ] + - state: mag-unshaded-4 + map: ["enum.GunVisualLayers.MagUnshaded"] + shader: unshaded + - type: Clothing + quickEquip: false + slots: + - Belt + - suitStorage + - Back + sprite: _Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi + - type: Gun + fireRate: 1.5 + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/laser_cannon.ogg + soundEmpty: + path: /Audio/DeltaV/Weapons/Guns/Empty/dry_fire.ogg + - type: Battery + maxCharge: 1000 + startingCharge: 1000 + - type: ProjectileBatteryAmmoProvider + proto: BulletDisabler + fireCost: 100 + - type: EnergyGun + fireModes: + - proto: BulletDisabler + fireCost: 55 + name: disabling + state: disabler + - proto: BulletEnergyGunMagnum + fireCost: 125 + name: lethal + state: lethal + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: true + - type: Appearance + - type: GenericVisualizer + visuals: + enum.EnergyGunFireModeVisuals.State: + Firemode: + Disabler: { state: mode-disabler } + Lethal: { state: mode-lethal } + - type: Tag + tags: + - Sidearm + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 22 \ No newline at end of file diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Lever/lever.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Lever/lever.yml new file mode 100644 index 00000000000000..ba29ff1ffc4ba3 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Guns/Lever/lever.yml @@ -0,0 +1,61 @@ +- type: entity + name: Chester + parent: [ BaseWeaponRifle, BaseGunWieldable ] + id: WeaponLeverChester + description: An improved lever-action rifle designed to fire specialized .45 caliber ammunition for rapid threat removal. + components: + - type: Sprite + sprite: _Goobstation/Objects/Weapons/Guns/Lever/chester.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-0 + map: ["enum.GunVisualLayers.Mag"] + - type: Clothing + sprite: _Goobstation/Objects/Weapons/Guns/Lever/chester.rsi + - type: ItemSlots + slots: + gun_magazine: + name: Magazine + startingItem: MagazineMagnumLeverRifle + insertSound: /Audio/Weapons/Guns/MagIn/rifle_load.ogg + ejectSound: /Audio/Weapons/Guns/MagOut/sfrifle_magout.ogg + priority: 2 + whitelist: + tags: + - MagazineMagnumLeverRifle + gun_chamber: + name: Chamber + priority: 1 + whitelist: + tags: + - CartridgeMagnum + - type: Gun + fireRate: 0.55 + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/batrifle.ogg + - type: ChamberMagazineAmmoProvider + autoCycle: false + autoEject: true + soundAutoEject: + path: /Audio/_Goobstation/Weapons/Guns/MagOut/garand_eject.ogg + soundRack: + path: /Audio/Weapons/Guns/Cock/batrifle_cock.ogg + params: + volume: -3 + soundBoltClosed: + path: /Audio/Weapons/Guns/Bolt/lever_bolt_closed.ogg + params: + volume: -3 + soundBoltOpened: + path: /Audio/Weapons/Guns/Bolt/lever_bolt_opened.ogg + params: + volume: -3 + - type: MagazineVisuals + magState: mag + steps: 1 + zeroVisible: true + - type: Appearance + - type: UseDelay + delay: 0.2 + - type: UseDelayBlockShoot diff --git a/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Melee/cane.yml b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Melee/cane.yml new file mode 100644 index 00000000000000..c47b69689efaee --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Objects/Weapons/Melee/cane.yml @@ -0,0 +1,36 @@ +- type: entity + name: cane blade + suffix: Nanotrasen + parent: BaseItem + id: CaneBladeNanotrasen + description: A sharp blade with a cane shaped hilt, a Nanotrasen logo is engraved on the blade. + components: + - type: Sharp + - type: Sprite + sprite: Objects/Weapons/Melee/cane_blade.rsi + state: icon + - type: MeleeWeapon + wideAnimationRotation: 65 + attackRate: 1.25 + damage: + types: + Slash: 10 + soundHit: + path: /Audio/Weapons/bladeslice.ogg + - type: Item + size: Normal + sprite: Objects/Weapons/Melee/cane_blade.rsi + - type: Tag + tags: + - CaneBlade + - type: DisarmMalus + +- type: entity + id: CaneSheathFilledNanotrasen + parent: CaneSheath + suffix: Filled, Nanotrasen + components: + - type: ContainerFill + containers: + item: + - CaneBladeNanotrasen diff --git a/Resources/Prototypes/_Goobstation/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/_Goobstation/Entities/Structures/Doors/Airlocks/access.yml new file mode 100644 index 00000000000000..01df42e7f2c325 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Structures/Doors/Airlocks/access.yml @@ -0,0 +1,79 @@ +# CC locked + +- type: entity + parent: AirlockCentralCommand + id: AirlockCentralCommandCommandLocked + suffix: Command, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsCommand ] + +- type: entity + parent: AirlockCentralCommandGlass + id: AirlockCentralCommandCommandGlassLocked + suffix: Command, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsCommand ] + +# CC/cap locked + +- type: entity + parent: AirlockCommand + id: AirlockCommandCommandLocked + suffix: CentCommCap, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommandCaptain ] + +- type: entity + parent: AirlockCommandGlass + id: AirlockCommandCommandGlassLocked + suffix: CentCommCap, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommandCaptain ] + +# BSO locked + +- type: entity + parent: AirlockCentralCommand + id: AirlockBlueshieldOfficerCommandLocked + suffix: Blueshield, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsBSO ] + +- type: entity + parent: AirlockCentralCommandGlass + id: AirlockBlueshieldOfficerCommandGlassLocked + suffix: Blueshield, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsBSO ] + +# NTR locked + +- type: entity + parent: AirlockCentralCommand + id: AirlockNanotrasenRepresentativeCommandLocked + suffix: NTRep, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsNTR ] + +- type: entity + parent: AirlockCentralCommandGlass + id: AirlockNanotrasenRepresentativeCommandGlassLocked + suffix: NTRep, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsNTR ] diff --git a/Resources/Prototypes/_Goobstation/Entities/Structures/Storage/Closets/Lockers/lockers.yml b/Resources/Prototypes/_Goobstation/Entities/Structures/Storage/Closets/Lockers/lockers.yml new file mode 100644 index 00000000000000..4cbb6f375c05c7 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Structures/Storage/Closets/Lockers/lockers.yml @@ -0,0 +1,29 @@ +- type: entity + id: LockerBlueshieldOfficer + name: blueshield officer locker + parent: LockerBaseSecure + components: + - type: Appearance + - type: Sprite + sprite: _Goobstation/Structures/Storage/closet.rsi + - type: AccessReader + access: [["BlueshieldOfficer"]] + - type: EntityStorageVisuals + stateBaseClosed: bso + stateDoorOpen: bso_open + stateDoorClosed: bso_door + +- type: entity + id: LockerNanorep + name: nanotrasen representative locker + parent: LockerBaseSecure + components: + - type: Appearance + - type: Sprite + sprite: _Goobstation/Structures/Storage/closet.rsi + - type: AccessReader + access: [["NanotrasenRepresentative"]] + - type: EntityStorageVisuals + stateBaseClosed: ntr + stateDoorOpen: ntr_open + stateDoorClosed: ntr_door diff --git a/Resources/Prototypes/_Goobstation/Entities/Unique/lockers.yml b/Resources/Prototypes/_Goobstation/Entities/Unique/lockers.yml new file mode 100644 index 00000000000000..8a2ab206f30218 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Entities/Unique/lockers.yml @@ -0,0 +1,17 @@ +- type: entity + id: UniqueLockerNanorepFilled + suffix: MAP THIS, Unique, Filled + parent: LockerNanorepFilled + components: + - type: ConditionalSpawner + prototypes: + - UniqueMarkerNanorepLocker + +- type: entity + id: UniqueLockerBlueshieldOfficerFilled + suffix: MAP THIS, Unique, Filled + parent: LockerBlueshieldOfficerFilled + components: + - type: ConditionalSpawner + prototypes: + - UniqueMarkerBlueshieldLocker diff --git a/Resources/Prototypes/_Goobstation/Recipes/Lathes/security.yml b/Resources/Prototypes/_Goobstation/Recipes/Lathes/security.yml new file mode 100644 index 00000000000000..ef91b7281be178 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Recipes/Lathes/security.yml @@ -0,0 +1,22 @@ +- type: latheRecipe + id: GrenadeFlashBang + result: GrenadeFlashBang + completetime: 3 + materials: + Steel: 100 + Plastic: 100 + +# Ammo +- type: latheRecipe + parent: BaseAmmoRecipe + id: MagazineMagnumLeverRifleEmpty + result: MagazineMagnumLeverRifleEmpty + materials: + Steel: 25 + +- type: latheRecipe + parent: BaseAmmoRecipe + id: MagazineMagnumLeverRifle + result: MagazineMagnumLeverRifle + materials: + Steel: 185 diff --git a/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/blueshield_officer.yml b/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/blueshield_officer.yml new file mode 100644 index 00000000000000..e82f16bbd6ad4d --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/blueshield_officer.yml @@ -0,0 +1,58 @@ +- type: job + id: BlueshieldOfficer + name: Blueshield Officer + description: "Act as a bodyguard and advisor for Command and CentCom VIPs." + playTimeTracker: JobBlueshieldOfficer + requirements: + - !type:DepartmentTimeRequirement + department: Command + min: 54000 # 15 hours + - !type:DepartmentTimeRequirement + department: Medical + min: 54000 # 15 hours + - !type:DepartmentTimeRequirement + department: Security + min: 54000 # 15 hours + weight: 20 + startingGear: BlueshieldOfficerGear + icon: "JobIconBlueshield" + requireAdminNotify: true + joinNotifyCrew: true + supervisors: job-supervisors-centcom + canBeAntag: false + access: + - Security + - Brig + - External + - Cryogenics + - Maintenance + - Engineering + - Medical + - Research + - Command + - CentralCommand + - BlueshieldOfficer + special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] + - !type:AddComponentSpecial + components: + - type: CommandStaff + +- type: startingGear + id: BlueshieldOfficerGear + equipment: + back: ClothingBackpackBlueshield + jumpsuit: ClothingUniformJumpsuitBlueshieldOfficer + shoes: ClothingShoesBootsCombatFilled + eyes: ClothingEyesGlassesMedSec + ears: ClothingHeadsetAltCommand + gloves: ClothingHandsGlovesCombat + id: BlueshieldPDA + pocket1: UniqueBlueshieldOfficerLockerTeleporter + + #outerClothing: ClothingBlueshieldArmourVest + #ears: ClothingHeadsetAltCommand + #belt: ClothingBeltSecurityFilled + #pocket1: WeaponPistolMk58 + #pocket2: DeathAcidifierImplanter diff --git a/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/nanotrasen_representative.yml b/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/nanotrasen_representative.yml new file mode 100644 index 00000000000000..acccdf5764099f --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Roles/Jobs/Command/nanotrasen_representative.yml @@ -0,0 +1,42 @@ +- type: job + id: NanotrasenRepresentative + name: Nanotrasen Representative + description: "Represent NT, send reports back to them on the station's situation, inform the heads of anything CentCom orders them to do." + playTimeTracker: JobNanotrasenRepresentative + requirements: + - !type:DepartmentTimeRequirement + department: Command + min: 54000 # 15 hours + weight: 20 + startingGear: NanotrasenRepresentativeGear + icon: "JobIconNanotrasenRepresentative" + requireAdminNotify: true + joinNotifyCrew: true + supervisors: job-supervisors-centcom + canBeAntag: false + access: + - CentralCommand + - Brig + - External + - Cryogenics + - Maintenance + - Engineering + - Medical + - Research + - Command + - NanotrasenRepresentative + special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] + - !type:AddComponentSpecial + components: + - type: CommandStaff + +- type: startingGear + id: NanotrasenRepresentativeGear + equipment: + shoes: ClothingShoesColorBlack + id: CentcomPDA + jumpsuit: ClothingUniformJumpsuitNanotrasenRepresentative + ears: ClothingHeadsetCentCom + pocket1: UniqueNanorepLockerTeleporter diff --git a/Resources/Prototypes/_Goobstation/Roles/play_time_trackers.yml b/Resources/Prototypes/_Goobstation/Roles/play_time_trackers.yml new file mode 100644 index 00000000000000..fbaf30463becaf --- /dev/null +++ b/Resources/Prototypes/_Goobstation/Roles/play_time_trackers.yml @@ -0,0 +1,5 @@ +- type: playTimeTracker + id: JobBlueshieldOfficer + +- type: playTimeTracker + id: JobNanotrasenRepresentative diff --git a/Resources/Prototypes/_Goobstation/StatusEffects/job.yml b/Resources/Prototypes/_Goobstation/StatusEffects/job.yml new file mode 100644 index 00000000000000..22ed9aeda4cb75 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/StatusEffects/job.yml @@ -0,0 +1,13 @@ +- type: jobIcon + parent: JobIcon + id: JobIconNanotrasenRepresentative + icon: + sprite: /Textures/_Goobstation/Interface/Misc/job_icons.rsi + state: nanotrasenrepresentative + +- type: jobIcon + parent: JobIcon + id: JobIconBlueshield + icon: + sprite: /Textures/_Goobstation/Interface/Misc/job_icons.rsi + state: blueshield diff --git a/Resources/Prototypes/_Goobstation/tags.yml b/Resources/Prototypes/_Goobstation/tags.yml new file mode 100644 index 00000000000000..4f28a4b5550ce8 --- /dev/null +++ b/Resources/Prototypes/_Goobstation/tags.yml @@ -0,0 +1,2 @@ +- type: Tag + id: MagazineMagnumLeverRifle \ No newline at end of file diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLControlledSubstances.xml b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLControlledSubstances.xml index 14f0f46de1b744..9d91262ecbc538 100644 --- a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLControlledSubstances.xml +++ b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLControlledSubstances.xml @@ -1,14 +1,12 @@  + Certain substances are considered controlled due to their hazardous, addictive, or otherwise detrimental nature. These substances are categorized based on their potential for abuse, danger to personnel, or restricted usage outside of authorized roles and departments. Unauthorized possession, production, or distribution of these substances is a violation of NanoTrasen policy. + # Space Law: Controlled Substances - - \[Chemists/Science\] Explosive and pyrotechnic compounds excluding welding fuel contained in welders or welding fuel storage vessels - - \[Science\] Toxins - - \[Medical\] Chloral hydrate, Impedrezene, Ipecac, and Pax - - \[Medical\] Desoxyephedrine and Ephedrine - - \[None\] Mindbreaker toxin - - \[None\] Mute toxin - - \[None\] Nocturine - - \[None\] Norepinephirc acid - - \[None\] Romerol - - \[None\] Space drugs - - \[None\] Stimulants, excluding Desoxyephedrine and Ephedrine + + - [color=#cb0000]\[Chemists/Science\][/color] Includes any compound capable of combustion, explosion, or significant thermal output (excluding welding fuel stored in approved containers or welders for maintenance use.) + - [color=#cb0000]\[Science\][/color] Substances that directly harm or kill biological organisms. Examples include chemical toxins used in research or biohazard testing + - [color=#cb0000]\[Medical\][/color] Includes substances designed to impair cognitive function, induce paralysis, or suppress neural activity (Authorized for use by medical staff only in controlled doses for therapeutic purposes.) + - [color=#cb0000]\[Medical\][/color] Substances that enhance physical or mental performance, increase energy, or reduce fatigue (Restricted to medical use or approved research by medical personnel.) + - [color=#cb0000]\[None\][/color] Substances that alter perception, induce hallucinations, or affect mental stability (Unauthorized possession or distribution is prohibited unless explicitly authorized for research purposes.) + - [color=#cb0000]\[None\][/color] Any chemical compound classified as experimental or restricted under NanoTrasen policy (Includes substances with unknown effects or those tied to unauthorized cult activity or rituals.) diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLCrimeList.xml b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLCrimeList.xml new file mode 100644 index 00000000000000..ea59844a58d269 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLCrimeList.xml @@ -0,0 +1,1861 @@ + + # Space Law: Crime Listing + Crime codes are grouped by color to represent linked crime categories. Crimes within the same group cannot be stacked. + Suffixes are provided in the Quick Crime Guide to identify these links, with only the highest penalty being applied. + + ## Quick Crime Guide + + + + Code + + + + + §0-XX - Infraction + + + + + §1-XX - Minor + + + + + §2-XX - Moderate + + + + + §3-XX - Major + + + + + §4-XX - Capital + + + + + 01 + + + + + Disorderly Conduct (V) + + + + + Assault (V) + + + + + Aggravated Assault (V) + + + + + Murder (V) + + + + + Prime/Mass Murder (V) + + + + + 02 + + + + + + + + + + Pick-pocketing (T) + + + + + Theft (T) + + + + + Larceny (T) + + + + + Grand Larceny (T) + + + + + 03 + + + + + Superficial Vandalism (S) + + + + + Minor Vandalism (S) + + + + + Vandalism, Major (S) + + + + + Sabotage (S) + + + + + Grand Sabotage (S) + + + + + 04 + + + + + + + + + + Vigilantism + + + + + Conspiracy (C) + + + + + High Conspiracy (C) + + + + + Espionage (C) + + + + + 05 + + + + + Drug Possession + + + + + Illegal Distribution + + + + + Hostile Affiliation (A) + + + + + Hostile Activity (A) + + + + + Enemy Combatant (A) + + + + + 06 + + + + + Disruptive Communications + + + + + Disturbing the Peace + + + + + Possession, Contraband Equipmment (P) + + + + + Possession, Dangerous Contraband (P) + + + + + Possession, Corporate Secrets (P) + + + + + 07 + + + + + + + + + + + + + + + Rioting (R) + + + + + Inciting a Riot (R) + + + + + Subversion of the Chain of Command (R) + + + + + 08 + + + + + Creating a Hazard (N) + + + + + Negligence (N) + + + + + High Negligence (N) + + + + + Manslaughter (V)(N) + + + + + Biological Terror (V)(N) + + + + + 09 + + + + + + + + + + Trespass (T) + + + + + Trespass, Inherently Dangerous Areas (T) + + + + + Trespass, High Security Areas (T) + + + + + + + + + + 10 + + + + + + + + + + Breaking and Entering (T) + + + + + Breaking and Entering, Inherently Dangerous Areas (T) + + + + + Breaking and Entering, High Security Areas (T) + + + + + + + + + + 11 + + + + + + + + + + Discriminatory Language + + + + + Insubordination + + + + + Dereliction (N) + + + + + + + + + + 12 + + + + + + + + + + + + + + + Fraud (F) + + + + + Corporate Fraud (F) + + + + + + + + + + 13 + + + + + + + + + + + + + + + + + + + + Identity Theft + + + + + + + + + + 14 + + + + + + + + + + + + + + + + + + + + Kidnapping + + + + + + + + + + 15 + + + + + Unreported Psionics + + + + + + + + + + Mindguard Act + + + + + Mindbreaking + + + + + + + +
+ + ## Stackable Crimes: Crimes are to be considered ‘stackable’ + in the sense that if you charge someone with two or more different crimes, + you should combine the times you would give them for each crime. + Make sure you do not combine the same category of crimes, indicated by brackets. + + ## Crime Modifiers + Crimes can be influenced by specific modifiers that adjust their severity, sentencing, or context. + These modifiers provide additional nuance to legal proceedings and ensure appropriate handling of offenses; + Based on circumstances such as intent, danger, or external factors. + + + + + Code + + + + + Modifier + + + + + Description + + + + + Notes + + + + + M-01 + + + + + Clear and Present Danger + + + + + Crimes Committed in the interest of saving life, property, or preventing a disaster may have their sentences reduced, voided, or expunged. + + + + + This modifier is primarily to cover situations such as breaking into an area one does not have access to, in the interest of saving someone's life or otherwise with good intent. + + + + + M-02 + + + + + Elevated Sentencing + + + + + The scope of the crime(s), or repetitious behavior committed, warrant the charge be elevated to a higher offense for punishment in increments of one level per instance. + + + + + Primarily intended to be used after a few repetitions. This includes attacking security, heads of staff, or committing multiple instances of the same crime. Crimes charged with this modifier are exempt from punishment outside of confinement. + + + + + M-03 + + + + + Self Defense + + + + + Actions taken to defend ones self from an assailant may have sentences reduced, voided, or expunged if the officer(s) involved deem that use of force reasonable. + + + + + This isn't a school. You can punch back, but don't be out of scale. + + + + + M-04 + + + + + Non Compos Mentis + + + + + Those of unstable mind should be referred to medical treatment or, if required, forced cryogenic storage. + + + + + English: Insanity. This is intended to be applied to IC hypnosis, mind control, or otherwise actual incapacitation. IC 'insanity' is not an excuse for high crimes. + + + + + M-05 + + + + + Griseo Maris + + + + + Coordinated behavior by those with no clear assigned duty which interrupts the normal function of any one department may lead to sentencing for any crimes committed during such actions to be increased in severity by one level for punishment. + + + + + English: Grey Tide. Go be useful you fucks. + + + + + M-06 + + + + + Resisting Arrest + + + + + Knowingly resisting attempts at legal detention by members of the security team. It is advised that these individuals should have their sentences increased the recommended 20% of total duration. + + + + + Running will only increase your sentence. + + + + + M-07 + + + + + Escaped Prisoner + + + + + Someone who has escaped their cell should be recaptured and returned to the brig. Their timer should be reset to the full length of the original sentence. The sentence can be bumped by up to 50% with this. + + + + + Escaping will only delay the inevitable. + + + + + M-08 + + + + + Attempted crime + + + + + Anyone that tries to commit a crime but fails to achieve it, is to be charged under the relevant crime while recording that it was an attempt. A crime being an attempt can be downgraded to a lower offense for punishment in increments of one level per instance. This however does not bind in the case of repeated offender. + + + + + If a fact is too ambiguous, in that it is possible to both interpret it as the beginning of a crime and as a legal endeavor, then Security cannot charge with attempted crime. + + +
+ + ## Infractions + - The maximum sentence per Infraction is 2 minutes + - First time offenders should only receive a warning and be logged, but it is situationally dependant + - Also covers minor misdemeanors + + + + Code + + + + + Crime + + + + + Description + + + + + Notes + + + + + 0-1 + + + + + Disorderly Conduct (V) + + + + + To conduct ones self in a way unsuitable for the retention of one’s position. + + + + + Minor disruptive behavior that isn't otherwise illegal, such as drunkenly harassing a crew member. + + + + + 0-3 + + + + + Superficial Vandalism (S) + + + + + To deface the station or property of another individual. + + + + + Minor damage that can be repaired with space cleaner or other cosmetic only damage. + + + + + 0-5 + + + + + Drug Possession + + + + + The possession of illegal drugs in quantities appropriate for personal use. + + + + + A pill or two of drugs is reasonable for recreational use, anything more is probably better charged as distribution. + + + + + 0-6 + + + + + Disruptive Communications + + + + + To knowingly disrupt or needlessly populate a radio frequency with the intent to be a nuisance to users of that frequency. + + + + + Radio spam bad. I'm looking at you, circuit makers. + + + + + 0-8 + + + + + Creating a Hazard (N) + + + + + To create a situation which may lead to the harm of others during normal operation in that department. + + + + + Minor unsafe behavior can also be charged under this crime. + + + + + 0-15 + + + + + Unreported Psionics + + + + + Knowingly failing to report the possession or awakening of psionic abilities to the Mantis Authority. + + + + + Transparency with the Mantis is crucial for ensuring station safety and the proper regulation of psionic capabilities. + This act applies to all sophonts, without exception for rank or status. + Non-compliance may result in mindbreaking or designation as a threat to station security. + Failure to report potentially lethal psionics may result in immediate mindbreaking at the discretion of Security and the Mantis Authority and should be charged under 2XX Code as a Moderate Crime. + + +
+ + # Felonies + - The maximum sentence per Felony is 4 minutes + - Minor crimes encompass low-severity offenses that typically do not pose a significant threat to station security or personnel. + + + + Code + + + + + Crime + + + + + Description + + + + + Notes + + + + + 1-01 + + + + + Assault (V) + + + + + To use physical force against someone without the apparent intent to harm them. + + + + + This covers minor criminal uses of force, Without intent to injure. That would be Aggravated Assault, or possibly a flavor of Murder. + + + + + 1-02 + + + + + Pick-pocketing (T) + + + + + To steal items belonging another person. + + + + + Small or easily replaceable items should be charged with this, otherwise consider a higher class of theft. + + + + + 1-03 + + + + + Minor Vandalism (S) + + + + + To damage, destroy, or permanently deface non-critical furniture, vendors, or personal property. + + + + + Large amounts of irreparable damage should be charged with Major Vandalism, Damage to critical infrastructure may be a form of Sabotage. + + + + + 1-04 + + + + + Vigilantism + + + + + To perform the responsibilities and duties of the security department without approval or due cause to act. + + + + + Valid hunting bad. Let the red shirts do their job. + + + + + 1-05 + + + + + Illegal Distribution + + + + + The possession of dangerous or illegal drugs/equipment in a quantity greater than that which is reasonable for personal consumption. + + + + + You should probably try to determine intent from additional evidence before charging someone with this. + + + + + 1-06 + + + + + Disturbing the Peace + + + + + To knowingly organize a movement which disrupts the normal operations of a department, or being a public disturbance. + + + + + Establishing a peaceful strike or otherwise disrupting standard department order without attachment to criminal entities. In the case of criminal attachment, refer to Rioting or Hostile Activity. + + + + + 1-08 + + + + + Negligence (N) + + + + + To be negligent in one's duty to an extent that it may cause harm, illness, or other negative effect, to another. + + + + + This is the charge for the doctor that accidentally pumps pentetic acid into an oozeling, or a scientist who accidentally floods toxins with room temperature CO2 or N2O. + + + + + 1-09 + + + + + Trespass (T) + + + + + To be in an area which a person has either not purposefully been admitted to, does not have access, or has been asked to leave by someone who has access to that area. + + + + + Being in an area, or having access to an area is not permission to that area. This crime covers non forcible entry into areas, such as following someone through a door. + + + + + 1-10 + + + + + Breaking and Entering (T) + + + + + To trespass into an area using a method of forcible entry. + + + + + This is a variant of trespass, but instead of tailgating someone or gaining access the individual had to break or disable something to enter, such as hacking an airlock. + + + + + 1-11 + + + + + Discriminatory Language + + + + + To use language which demeans, generalizes, or otherwise de-personafies the individual at which it is targeted. This counts towards all species. + + + + + Note that actual, OOC racism is not acceptable under the rules. + + +
+ + ## Moderate Crimes + - The maximum sentence per Moderate Crime is 7 minutes + - Moderate crimes involve more serious offenses that can disrupt station operations or endanger personnel, requiring stricter enforcement. + + + + Code + + + + + Crime + + + + + Description + + + + + Notes + + + + + 2-01 + + + + + Aggravated Assault (V) + + + + + To take physical action against a person with intent to grievously harm, but not to kill. + + + + + This covers criminal uses of force, with intent to seriously injure, but no intent to kill. That would be some variation of Murder. This law also constitutes unlawful mindbreaking. + + + + + 2-02 + + + + + Theft (T) + + + + + To steal equipment or items from a workplace, or items of high value from one's person. + + + + + This includes things like insulated gloves, crew pinpointers, normal ID cards, or personal items. + + + + + 2-03 + + + + + Vandalism, Major (S) + + + + + To destroy or damage non-critical furniture, vendors, or personal property in a manor that can not be repaired. + + + + + Spray painting all the lights red and wrecking tables in the bar is fun and all, but it makes it hard to figure out where the fire is, or to have a polite sip of tea. + + + + + 2-04 + + + + + Conspiracy (C) + + + + + To knowingly work with another person in the interest of committing an illegal action. + + + + + It's important to note that an unwitting accomplice is not the same as a conspirator. Timer should be identical to the perpetrator that person conspired with. + + + + + 2-05 + + + + + Hostile Affiliation (A) + + + + + To knowingly act as a recruiter, representative, messenger, ally, benefactor, or associate of an organization criminally opposed to the Corporation or the Biesel Republic. + + + + + Syndicate agents, such as traitors, will generally fall under this charge rather than "Enemy Combatant" (4-05) unless violent actions are confirmed. + + + + + 2-06 + + + + + Possession, Contraband Equipment (P) + + + + + To possess equipment not approved for use or production aboard Nanotrasen stations. This includes equipment produced by The Syndicate, Wizard Federation, or any other hostile organization as defined within Code 405. + + + + + Reminder: Contraband equipment should be stored in evidence as per SOP. It is not candy to hand out to Security. + + + + + 2-07 + + + + + Rioting (R) + + + + + To act as a member in a group which collectively commits acts of vandalism, or other felony crimes. + + + + + A riot typically constitutes five or more people acting in a coordinated effort. This can however vary on the size and circumstances of the station. + + + + + 2-08 + + + + + High Negligence (N) + + + + + To be negligent in one's duty to an extent that it may cause harm to multiple individuals, a department, or in a manor which directly leads to a serious injury of another person which requires emergency medical treatment. + + + + + Virologists releasing Spanish flu on accident, or scientists that flood science/toxins with plasma get charged here. It can also include engineers who delaminate the SM or wander around with highly radioactive material. + + + + + 2-09 + + + + + Trespass, Inherently Dangerous Areas (T) + + + + + Trespassing in an area which may lead to the injury of self, or others. This also includes areas like security or general command areas which do not contain any sensitive items or consoles. + + + + + Engineering spaces specifically related to an engine such as turbine, super-matter room/chamber, or toxins lab count here. This list is not exhaustive, but should not be extorted to increase sentencing. + + + + + 2-10 + + + + + Breaking and Entering, Inherently Dangerous Areas (T) + + + + + To trespass into an area which may lead to the injury of self or others using forcible entry. Refer to 209 for area restrictions. + + + + + Generally this will lead to injury. See breaking and entering, and apply any of the areas for Trespassing to dangerous areas. + + + + + 2-11 + + + + + Insubordination + + + + + To knowingly disobey a lawful order from a superior, or obstructing security from doing it's job. + + + + + Obey your heads of staff if they instruct you to do something within the scope of your job. This crime can normally be accompanied by a demotion at the discretion of the relevant head of staff. + + + + + 2-12 + + + + + Fraud (F) + + + + + To misrepresent ones intention in the interest of gaining property or money from another individual. + + + + + Lying to someone about a cargo bounty, for example. Be honest with your intentions. Don't stretch this, gaining items which normally wouldn't be considered theft likely aren't worth charging under fraud. + + + + + 2-15 + + + + + Mindguard Act + + + + + Prohibits harmful misuse of psionics, causing danger, trauma, or detrimental alterations to others or the station. + + + + + Individuals convicted under this act must wear anti-psionic helmet for the full duration fo their sentence, removing it is akin to breaking out of prison. + Sophonts charged under the Mindguard Act are to be evaluated as potential candidates for mindbreaking or sacrifical use in the events of code white emergency. + Cases involving the misuse of lethal psionic powers or familiars fall under Code 3XX and should be treated as a Major Offense. + + +
+ + ## Major Crimes + - The maximum sentence per Major Crime is 10 minutes + - Major crimes are severe offenses that pose significant threats to station security, personnel safety, or corporate interests. These crimes warrant serious repercussions and careful documentation. + + + + Code + + + + + Crime + + + + + Description + + + + + Notes + + + + + 3-01 + + + + + Murder (V) + + + + + To purposefully kill someone. + + + + + Please note, that negligence is covered under Code 208 + + + + + 3-02 + + + + + Larceny (T) + + + + + To steal rare, extraordinarily expensive (Items of greater than 1000 credit value), or restricted equipment from secure areas or one's person. This also constitutes kidnapping. + + + + + This does not include theft of people's ID cards, which are likely to hold a value of more than 1000 credits. + It does however cover ID cards which could lead into high security areas, such as the Captain's, Head of Personnel's, or Head of Security's. + + + + + 3-03 + + + + + Sabotage (S) + + + + + To destroy station assets or resources critical to normal or emergency station procedures, or cause sections of the station to become uninhabitable. + + + + + Spacing areas, tampering with fire alarms, pipes, wiring, disabling the emitters on the Supermatter and other general station assets. This includes unauthorized construction. + + + + + 3-04 + + + + + High Conspiracy (C) + + + + + To knowingly work with another person in the interest of committing a major or greater crime. + + + + + Generally this will be shown through communications records or other means of surveillance. The most basic proof of course is capturing the two together in the act. + + + + + 3-05 + + + + + Hostile Activity (A) + + + + + To knowingly commit an act which is in direct opposition to the interests of Nanotrasen, Or to directly assist a known enemy of the corporation. + + + + + Impeding security's ability to detain a dangerous convict, or walling off the security department or other critical areas. + + + + + 3-06 + + + + + Posession, Dangerous Contraband (P) + + + + + To possess restricted or illegal equipment which has a primary purpose of causing harm to others, or large amounts of destruction. + + + + + Energy daggers, swords, guns (without a weapons permit), and so on count here. And no, the bartender can not have a captured LMG because they have a weapon permit. Again, security, those are not toys, put them in evidence. + + + + + 3-07 + + + + + Inciting a Riot (R) + + + + + To perform actions in the interest of causing large amounts of unrest up to and including rioting. + + + + + This is for the ring leader in any insurrection or riot. Prisoners may have their radios removed and be contained in areas which are not visible to the general populace. + + + + + 3-08 + + + + + Manslaughter (V) (N) + + + + + To unintentionally kill someone through negligent, but not malicious, actions. + + + + + They didn't mean to do it but someone's dead now. It's important to remember that you may want them to fix what they've done before throwing them in the brig, in the example of medical malpractice. + + + + + 3-09 + + + + + Trespass, High Security Areas (T) + + + + + Trespassing in any of the following without appropriate permission or access: Command areas, Personal offices, Weapons storage, or other high security areas. + + + + + The clown is not legally allowed to trail the captain into the bridge unless it is for a prank according to their Standard Operating Procedures. + + + + + 3-10 + + + + + Breaking and Entering, High Security Areas (T) + + + + + To commit trespassing into a secure area as defined in Code 309 using forcible entry. + + + + + Please note, paramedics may have to commit breaking and entry in order to perform their duties. + + + + + 3-11 + + + + + Dereliction (N) + + + + + To willfully abandon an obligation that is critical to the station's continued operation. + + + + + Engineer didn't set up power? Doctor's doing botany and not treating the five corpses in med-bay? Miners not providing materials for station objectives? That all goes here. + + + + + 3-12 + + + + + Corporate Fraud (F) + + + + + To misrepresent one's intention in the interest of gaining property or money from Nanotrasen, or to gain or give property or money from Nanotrasen without proper authorization. + + + + + If you receive money to order something for a department don't pocket that money. + + + + + 3-13 + + + + + Identity Theft + + + + + To assume the identity of another individual. + + + + + This can include utilizing someone else PDA in order to impersonate them. + + + + + 3-14 + + + + + Kidnapping + + + + + To cause a intellectual being's unlawful confinement or restriction of free movement against their will, This act can involve the use of force, threats, or deception. + + + + + This can include the intent to use the victim as a ransom, as a shield or hostage, or inflict harm. or otherwise exploit them. + + + + + 3-15 + + + + + Mindbreaking + + + + + To unlawfully and maliciously rid a psionic sophont of their powers. + + + + + This law does not apply to lawful mindbreaking of individuals misusing their psionics or having inherently dangerous abilities. + In cases where unlawful mindbreaking results in the loss of a soul, rendering the individual a husked body, this act shall be escalated to 4XX Capital Punishment, as the sophont has been unjustly and irreversibly deprived of all life. + + +
+ + ## Capital Punishments + - The sentences given for Capital Offenses are permanent imprisonment or execution + - Charging someone under Capital Punishments needs to be authorized by Warden, Head of Security or Captain + - Capital crimes are the gravest offenses that represent an existential threat to the station, its personnel, or NanoTrasen's corporate sovereignty. These acts demand the most severe penalties, including permanent imprisonment or execution. + + + + Code + + + + + Crime + + + + + Description + + + + + Notes + + + + + 4-01 + + + + + Prime/Mass Murder (V) + + + + + To commit the act of murder, with clear intent to kill, and clear intent or to have materially taken steps to prevent the revival of the victim + + + + + This includes debraining a corpse with purpose other than cloning. + + + + + 4-02 + + + + + Grand Larceny (T) + + + + + To steal inherently dangerous items from their storage, one's person, or other such methods acquire through illicit means. + + + + + This includes items such as HoS's gun, RD's teleporter, SM sliver, Nuke disk and other High Risk items. + + + + + 4-03 + + + + + Grand Sabotage (S) + + + + + To destroy or modify station assets or equipment without which the station may collapse or otherwise become uninhabitable. + + + + + This may include tampering with station records, purposefully delaminating the SM, destroying the SMES power storage equipment, plasma flooding, or super-heating distro. + + + + + 4-04 + + + + + Espionage (C) + + + + + To knowingly betray critical information to enemies of the station. + + + + + Telling nukies where the disk or a pinpointer is would wind up here. Please note, knowingly assisting antagonists as a non-antag may violate server rules. + + + + + 4-05 + + + + + Enemy Combatant (A) + + + + + To be confirmed without a shadow of a doubt as an active member of an organization that is in violent opposition to the Corporation or the Biesel Republic. + + + + + Membership in an opposition organization without further actions should be charged under Code 2-05. This is a LAST RESORT, and a trial must be held before convicting personnel who were at any time listed on the crew manifest. + + + + + 4-06 + + + + + Possession, Corporate Secrets (P) + + + + + To possess secret documentation or high density tamper-resistant data storage devices (Blackboxes) from any organization without authorization by Nanotrasen. + + + + + Explorers and miners returning with secret documents or black boxes are not committing a crime, as retrieval as such can fall under their normal duties. The greyshirt that just ran off with the black box or documents? That's a criminal. + + + + + 4-07 + + + + + Subversion of the Chain of Command (R) + + + + + Disrupting the chain of command via either murder of a commanding officer or illegally declaring oneself to be a commanding officer. + + + + + Security officers are not considered to be commanding officers. Heads of staff, captains, Centcom Commanders and admirals are. This does not include replacement of heads of staff with solid reasoning backing it. (Derelection, Negligence, unfit for Job) + + + + + 4-08 + + + + + Biological Terror (V)(N) + + + + + To knowingly release, cause, or otherwise cause the station to become affected by a disease, plant, or other biological form which may spread unconstrained and or cause serious physical harm. + + + + + Don't immediately lynch the virologist, but an investigation might be a good idea. + + +
+
\ No newline at end of file diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedGear.xml b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedGear.xml index ce804009a18e61..e9a9ef12823625 100644 --- a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedGear.xml +++ b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedGear.xml @@ -1,21 +1,24 @@  + The following outlines the categories of restricted gear aboard NanoTrasen property. Unauthorized possession or use of these items is considered a violation of corporate regulations and may be met with disciplinary action. Access and permissions are clearly defined based on job roles. + # Space Law: Restricted Gear - - \[ERT/Central Command\] ERT and central command clothing - - \[Command\] Command clothing - - \[Security\] Security clothing - - \[Security\] Less than lethal and non-lethal weapons, excluding disablers and beanbag shotguns - - \[Security/Command\] Disablers - - \[Security/Bartender\] Beanbag shotguns - - \[Security\] Flash technology, excluding handheld flashes - - \[Security/Science/Command\] Handheld flashes - - \[Security\] Helmets and shields - - \[Security/Command/Bartender\] Protective vests and chest rigs - - \[Security/Command\] Restraining gear - - \[Security/Command\] Security HUDs - - \[Engineering\] Engineering goggles - - \[None\] Improvised less lethal and non-lethal weaponry - - \[None\] Unauthorized PDA software - - \[None\] Syndicate clothing - - \[None\] Syndicate equipment, excluding communication equipment - - \[Security\] Syndicate communication equipment equipment + + - [color=#cb0000]\[ERT/Central Command\][/color] Equipment and clothing exclusive to Emergency Response Teams (ERT) or Central Command personnel + - [color=#cb0000]\[Command\][/color] Command-level clothing and equipment, including headsets with encrypted channels or access overlays + - [color=#cb0000]\[Security\][/color] Security clothing, protective gear, and equipment + - [color=#cb0000]\[Security\][/color] Less-than-lethal and non-lethal weaponry, excluding general-purpose disablers and beanbag shotguns + - [color=#cb0000]\[Security\][/color] Flash technology (e.g., flashbang grenades, flash projectors), excluding handheld flashes + - [color=#cb0000]\[Security\][/color] Helmets, riot shields, and ballistic shields + - [color=#cb0000]\[Security\][/color] Security HUDs and restraining gear (e.g., handcuffs) + - [color=#cb0000]\[Security/Command\][/color] Disablers and restraining gear used by authorized personnel + - [color=#cb0000]\[Security/Command\][/color] Security HUDs + - [color=#cb0000]\[Security/Command/Bartender\][/color] Protective vests and chest rigs designed to mitigate damage from projectiles or blunt force + - [color=#cb0000]\[Security/Bartender\][/color] Beanbag shotguns (Bartenders may only use them within station bar premises) + - [color=#cb0000]\[Security/Science/Command\][/color] Handheld flashes + - [color=#cb0000]\[Engineering\][/color] Engineering goggles, and Rapid Construction Devices + - [color=#cb0000]\[None\][/color] Unauthorized PDA software + - [color=#cb0000]\[None\][/color] Ammunition or explosives not issued by NanoTrasen + - [color=#cb0000]\[None\][/color] Body armor or tactical suits unauthorized for use by crew roles + - [color=#cb0000]\[None\][/color] Communication equipment designed to intercept, decrypt, or bypass corporate channels + - [color=#cb0000]\[None\][/color] Terrorist paraphernalia, including items with clear indicators of association with hostile organizations diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedWeapons.xml b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedWeapons.xml index c1d8ff3b02779d..edbd88a5e6f8ca 100644 --- a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedWeapons.xml +++ b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedWeapons.xml @@ -1,11 +1,15 @@  -# Space Law: Restricted Weapons -- \[Security\] Lethal firearms, excluding syndicate firearms, proto kinetic accelerators, glaives, daggers, crushers and the antique laser gun -- \[Security/Salvage\] Proto kinetic accelerators, glaives, daggers, and crushers -- \[Security/Command\] Antique laser gun -- \[None\] Syndicate weapons -- \[None\] Swords -- \[None\] Improvised weaponry, including baseball bats -- \[None\] Lethal implants -- \[None\] Other lethal weapons + The following outlines the restrictions and allowances for weapon possession and usage on NanoTrasen property. Weapon categories and authorized users are clearly defined to maintain order and security aboard the station. + + # Space Law: Restricted Weapons + +- [color=#cb0000]\[Security\][/color] Lethal firearms (excluding unmarked weapons, specialty tools like proto-kinetic accelerators) +- [color=#cb0000]\[Security/Salvage\][/color] Specialty mining tools such as proto-kinetic accelerators, glaives, daggers, and crushers. (Salvage must use these tools off-station or in authorized operations only) +- [color=#cb0000]\[Security/Command\][/color] Command-approved antique weapons (e.g., antique laser gun) +- [color=#cb0000]\[Bartender\][/color] Civilian firearms, limited to less-than-lethal ammunition only +- [color=#cb0000]\[None\][/color] Unlicensed firearms +- [color=#cb0000]\[None\][/color] Exotic weapons (e.g., swords) +- [color=#cb0000]\[None\][/color] Improvised weapons (e.g., baseball bats, pipe tools) +- [color=#cb0000]\[None\][/color] Lethal implants +- [color=#cb0000]\[None\][/color] Other lethal weapons not listed above diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml index f2b913a1714f95..7366862fc1c0c9 100644 --- a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml +++ b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml @@ -3,17 +3,18 @@ On Space Station 14, stations operate under abbreviated space law. All crew, passengers, and visitors aboard the station are expected to follow these laws. Foreign invaders, such as nuclear operatives, ninjas, and pirates, are not protected under space law. Traitors are not foreign invaders so are usually protected by space law. + Exceptions are made in cases of unnatural phenomena similar to changelings and heretics, where their humanity is put to question. Space Law is not the server rules, but some rules reference Space Law and require it to be followed by certain people or to some degree. ## Treatment Of Prisoners Prisoners still have certain rights that must be upheld by law enforcement: - - Prisoners must be granted adequate medical care. - - Prisoners must be allowed access to basic communications equipment (Radios) so long as they are not abused. - - Prisoners must be granted clothing, food, water, shelter and safety. If the brig is no longer safe, confinement must be established in another location. - - Prisoners must be given access to legal counsel during an interrogation if requested and available. - - Prisoners must be given their shift mandated PDA after confinement has finished, unless there is solid proof of PDA tampering. In case of tampering, the PDA is to be secured and replaced with a new unit. - - Prisoners must be granted freedom of movement, and should not be restrained with handcuffs or other devices after incarceration unless there is an undue risk to life and limb. Similarly, any prisoners held for permanent confinement should be held in the communal brig, and should not be confined to a solitary cell unless they pose a risk to life and limb. + - Prisoners must be granted adequate medical care. + - Prisoners must be allowed access to basic communications equipment (Radios) so long as they are not abused. + - Prisoners must be granted clothing, food, water, shelter and safety. If the brig is no longer safe, confinement must be established in another location. + - Prisoners must be given access to legal counsel during an interrogation if requested and available. + - Prisoners must be given their shift mandated PDA after confinement has finished, unless there is solid proof of PDA tampering. In case of tampering, the PDA is to be secured and replaced with a new unit. + - Prisoners must be granted freedom of movement, and should not be restrained with handcuffs or other devices after incarceration unless there is an undue risk to life and limb. Similarly, any prisoners held for permanent confinement should be held in the communal brig, and should not be confined to a solitary cell unless they pose a risk to life and limb. ## Search and Seizure A personnel search is a seizure of the objects in a person's backpack, hands, coat, belt, and pockets. If any contraband is found during a search, the officer may choose to further the search into a detainment or simply confiscate the restricted items. After the search is conducted, all legal items are to be returned to the person. A crewmate may legally decline any search conducted without probable cause or a warrant while the alert level is green. It should be noted that if the alert level is blue or above, all personnel searches are legal. @@ -39,29 +40,42 @@ [color=#a4885c]Stackable Crimes:[/color] Crimes are to be considered 'stackable' in the sense that if you charge someone with two or more different crimes, you should combine the times you would give them for each crime. Linked crimes, shown in matching colors on the Quick Crime Guide, can not be stacked and instead override each other, you should pick the highest crime that matches the case. - - Example: A suspect has committed a 2-01 (possession of restricted gear) and a 3-01 (possession of restricted weapons). The maximum sentence here would be 10 minutes due to them being linked crimes, and 3-01 is the greater crime. - - Example 2: A suspect commits a 3-04 (Secure trespassing) and a 3-06 (manslaughter). Those crimes stack since they are not linked crimes. You could sentence for a maximum of 20 minutes, but context matters heavily, and maximum sentences should only be used for the worst offenders. + - Example: A suspect has committed a 2-01 (possession of restricted gear) and a 3-01 (possession of restricted weapons). The maximum sentence here would be 10 minutes due to them being linked crimes, and 3-01 is the greater crime. + - Example 2: A suspect commits a 3-04 (Secure trespassing) and a 3-06 (manslaughter). Those crimes stack since they are not linked crimes. You could sentence for a maximum of 20 minutes, but context matters heavily, and maximum sentences should only be used for the worst offenders. [color=#a4885c]Repeater Offenders:[/color] Repeated crimes are when someone is released for a crime and then goes to commit the same crime within the same shift. Repeated crimes can be charged with tacked-on time; first repeat: 3:00, second repeat: 6:00, third repeat: permanent confinement. It should be noted each tacked-on time is directly linked to one type of crime, so for example, if someone does their first repeat of trespass and petty theft, you can charge them with an extra 6 minutes. [color=#a4885c]Accessory, Attempting, And Intention:[/color] If someone intentionally, knowingly and substantially assists someone in enacting a crime they can be charged with the relevant crimes, such as an engineer giving someone tools, who says they are going to break into an area. Same goes for a clear and solid attempt at a crime, or a person who shows clear intent to act out a crime, such as a syndicate nuclear operative arming a nuke but getting arrested before it goes off, they can still be charged with terrorism. Does not apply to crimes that have an attempted listing already, like attempted murder. + ## Categories of Crime + Space Law divides offenses into several categories based on severity and nature. These include: + - [color=yellow][bold]Minor Infractions[/bold][/color]: Non-critical disruptions or low-impact crimes. + - [color=orange][bold]Moderate Crimes[/bold][/color]: Actions with moderate consequences, affecting individuals or station operations. + - [color=red][bold]Major Crimes[/bold][/color]: Severe breaches of safety, security, or operational integrity. + - [color=purple][bold]Capital Crimes[/bold][/color]: Offenses warranting the most serious consequences, including potential execution or permanent confinement. + ## Normal Punishments - - [color=#a4885c]Warning:[/color] For minor crimes, fix the issue, then warn the person not to attempt the crime again. If they still proceed to do it at a later date, a brig time may be better. - - [color=#a4885c]Confinement:[/color] The typical punishment, being confined in a cell for a temporary amount of time according to the crimes. - - [color=#a4885c]Demotion:[/color] Entails removing all departmental gear they have on their person and revoking the involved department access off their ID. This requires the captain's or involved department head's approval. Demotions should only be issued if the person pose a threat to their own department or are in a position where they have/can abuse their job's gear to commit further crimes. + - [color=#a4885c]Warning:[/color] For minor crimes, fix the issue, then warn the person not to attempt the crime again. If they still proceed to do it at a later date, a brig time may be better. + - [color=#a4885c]Confinement:[/color] The typical punishment, being confined in a cell for a temporary amount of time according to the crimes. + - [color=#a4885c]Demotion:[/color] Entails removing all departmental gear they have on their person and revoking the involved department access off their ID. This requires the captain's or involved department head's approval. Demotions should only be issued if the person pose a threat to their own department or are in a position where they have/can abuse their job's gear to commit further crimes. ## Major Punishments [color=#a4885c]Permanent Confinement:[/color] Being held in the permanent brig for the entire duration of the shift. A person is eligible for permanent confinement if their timed sentence would exceed 15 minutes. Any persons subject to this punishment are required to be transported in cuffs to CentComm at the end of the shift. A permanent prisoner can not be deprived of anything covered by the section "Treatment Of Prisoners". [color=#a4885c]Execution:[/color] A humane way of dealing with extremely unruly crewmates. A prisoner who has been given the death sentence may pick how they wish to be killed, common methods are firing line, lethal injection, exile, and high voltage electrocution. Another alternate method of "execution" is the process of placing a staff's mind into a borg, this is allowed so long as it is lawful. Execution can only be issued with the captain's or acting captain's approval; if the HoS is acting captain or there is no acting captain, all heads of staff are to hold a vote on the matter. + ## Amendments and Exceptions + Space Law can be amended or overridden under specific circumstances: + - Emergency Situations: Command staff may implement temporary measures to restore order. + - Central Command Overrides: Directives from Central Command supersede Space Law where applicable. + - Executive Discretion: Captains and Heads of Staff have limited authority to interpret and enforce laws based on context. + ## Restricted Items Items in the lists are preceded by an indication of which department or job is legally allowed to use or possess the item on most stations. The station captain may modify these lists as they see fit so long as they exercise due care and provide reasonable notification to the station. Members of command who oversee a department that is permitted to use a restricted item may issue permits to specific people outside of their department to use those items. "None" indicates that there are no departments or roles authorized to use or possess the item. - - [textlink="List of Controlled Substances" link="SpaceLawControlledSubstances"] - - [textlink="List of Restricted Gear" link="SpaceLawRestrictedGear"] - - [textlink="List of Restricted Weapons" link="SpaceLawRestrictedWeapons"] + - [textlink="List of Controlled Substances" link="SpaceLawControlledSubstances"] + - [textlink="List of Restricted Gear" link="SpaceLawRestrictedGear"] + - [textlink="List of Restricted Weapons" link="SpaceLawRestrictedWeapons"] ## Crime Listing - - [textlink="Crime Listing" link="SpaceLawCrimeList"] + - [textlink="Crime Listing" link="SpaceLawCrimeList"] diff --git a/Resources/Textures/Objects/Devices/pda.rsi/meta.json b/Resources/Textures/Objects/Devices/pda.rsi/meta.json index 94bbee3124dfa9..8a78cc821d8d28 100644 --- a/Resources/Textures/Objects/Devices/pda.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/pda.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/59f2a4e10e5ba36033c9734ddebfbbdc6157472d, pda-cluwne made by brainfood1183 (github) ss14 | pda-brigmedic and pda-centcom made by PuroSlavKing (Github) | pda-brigemdic resprited by Hülle#2562 (Discord), pda-pirate made by brainfood1183 (Github), pda-syndi-agent drawn by Ubaser, NTPD, Gamer and merc pdas Made by gulo for Arcadis station", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/59f2a4e10e5ba36033c9734ddebfbbdc6157472d, pda-cluwne made by brainfood1183 (github) ss14 | pda-brigmedic and pda-centcom made by PuroSlavKing (Github) | pda-brigemdic resprited by Hülle#2562 (Discord), pda-pirate made by brainfood1183 (Github), pda-syndi-agent drawn by Ubaser", "size": { "x": 32, "y": 32 @@ -261,4 +261,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json b/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json index 4c6de4982dabee..17a9e4c775173e 100644 --- a/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json @@ -13,6 +13,9 @@ { "name": "centcom" }, + { + "name": "idcentcom" + }, { "name": "gold" }, diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/parkbench_bamboo.rsi/left.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/parkbench_bamboo.rsi/left.png index 8122a89be08403..e91037826f83ed 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/parkbench_bamboo.rsi/left.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/parkbench_bamboo.rsi/left.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/parkbench_bamboo.rsi/right.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/parkbench_bamboo.rsi/right.png index e91037826f83ed..8122a89be08403 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/parkbench_bamboo.rsi/right.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/parkbench_bamboo.rsi/right.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/parkbench_wooden.rsi/left.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/parkbench_wooden.rsi/left.png index b2e4e6650bd99f..35965a297e57c3 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/parkbench_wooden.rsi/left.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/parkbench_wooden.rsi/left.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/parkbench_wooden.rsi/right.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/parkbench_wooden.rsi/right.png index 35965a297e57c3..b2e4e6650bd99f 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/parkbench_wooden.rsi/right.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/parkbench_wooden.rsi/right.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/pews.rsi/left.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/pews.rsi/left.png index beb8cd4a0b298f..c1f2949a71932d 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/pews.rsi/left.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/pews.rsi/left.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/pews.rsi/right.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/pews.rsi/right.png index c1f2949a71932d..beb8cd4a0b298f 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/pews.rsi/right.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/pews.rsi/right.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/sofa.rsi/left.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/sofa.rsi/left.png index dd4dd8e80093c5..fd1d1142702e68 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/sofa.rsi/left.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/sofa.rsi/left.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/sofa.rsi/right.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/sofa.rsi/right.png index fd1d1142702e68..dd4dd8e80093c5 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/sofa.rsi/right.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/sofa.rsi/right.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/sofa_corp.rsi/left.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/sofa_corp.rsi/left.png index 181e9e53de9bf4..78abf84955dd25 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/sofa_corp.rsi/left.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/sofa_corp.rsi/left.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/sofa_corp.rsi/right.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/sofa_corp.rsi/right.png index 78abf84955dd25..181e9e53de9bf4 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/sofa_corp.rsi/right.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/sofa_corp.rsi/right.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi/left.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi/left.png index b6c1ef00fcb980..260c7298f77690 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi/left.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi/left.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi/right.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi/right.png index 260c7298f77690..b6c1ef00fcb980 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi/right.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi/right.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi/left.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi/left.png index a412a51871b66d..d456300e104e59 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi/left.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi/left.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi/right.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi/right.png index d456300e104e59..a412a51871b66d 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi/right.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi/right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Armor/bso_armour.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Goobstation/Clothing/Armor/bso_armour.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000000..4f3819da74ea59 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Armor/bso_armour.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Armor/bso_armour.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/Armor/bso_armour.rsi/icon.png new file mode 100644 index 00000000000000..3a535daf054ab0 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Armor/bso_armour.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Armor/bso_armour.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Armor/bso_armour.rsi/inhand-left.png new file mode 100644 index 00000000000000..afeaf1e4972825 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Armor/bso_armour.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Armor/bso_armour.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Armor/bso_armour.rsi/inhand-right.png new file mode 100644 index 00000000000000..be59dee2c2c7b8 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Armor/bso_armour.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Armor/bso_armour.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Armor/bso_armour.rsi/meta.json new file mode 100644 index 00000000000000..53b3e11ff1a5ca --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Armor/bso_armour.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise Station at commit https://github.com/ParadiseSS13/Paradise/pull/26498/commits/17c167b6648e8b67eb9c2f23f2f5b61e1a86f028", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/blueshield.rsi/equipped-BACKPACK.png b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/blueshield.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000000..eb7ab4cc850d07 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/blueshield.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/blueshield.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/blueshield.rsi/icon.png new file mode 100644 index 00000000000000..765177d91d7925 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/blueshield.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/blueshield.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/blueshield.rsi/inhand-left.png new file mode 100644 index 00000000000000..718edc6d59ead8 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/blueshield.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/blueshield.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/blueshield.rsi/inhand-right.png new file mode 100644 index 00000000000000..ac9f0189c530ae Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/blueshield.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/blueshield.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/blueshield.rsi/meta.json new file mode 100644 index 00000000000000..aefc2d90dfbbbc --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/blueshield.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2e24b7af2221928e4b844a29408e821b60a5fe29, tweak by @mureixlol, resprite by BombasterDS", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/centcom.rsi/equipped-BACKPACK.png b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/centcom.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000000..aa200ffcf9808f Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/centcom.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/centcom.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/centcom.rsi/icon.png new file mode 100644 index 00000000000000..4014fcdf1235f0 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/centcom.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/centcom.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/centcom.rsi/inhand-left.png new file mode 100644 index 00000000000000..6786ce478973a0 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/centcom.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/centcom.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/centcom.rsi/inhand-right.png new file mode 100644 index 00000000000000..17ab409090962e Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/centcom.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/centcom.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/centcom.rsi/meta.json new file mode 100644 index 00000000000000..ed91c56e31f10c --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/centcom.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Modified from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1 by KingFroozy (Github) for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/stasis_back.rsi/equipped-BACKPACK.png b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/stasis_back.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000000..2be4ba5b0667e9 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/stasis_back.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/stasis_back.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/stasis_back.rsi/icon.png new file mode 100644 index 00000000000000..a48fa049ae9365 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/stasis_back.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/stasis_back.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/stasis_back.rsi/inhand-left.png new file mode 100644 index 00000000000000..b3e8657480ea72 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/stasis_back.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/stasis_back.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/stasis_back.rsi/inhand-right.png new file mode 100644 index 00000000000000..e4d2bca44dcdd5 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/stasis_back.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/stasis_back.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/stasis_back.rsi/meta.json new file mode 100644 index 00000000000000..f7fa5f02488c1f --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Back/Backpacks/stasis_back.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by RustedTim - https://github.com/MetalSage/space-stories-archive/commit/26812e79c19c5f998bcbc445afbdceea625bc887", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Duffels/blueshield.rsi/equipped-BACKPACK.png b/Resources/Textures/_Goobstation/Clothing/Back/Duffels/blueshield.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000000..ebce881b585a38 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Duffels/blueshield.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Duffels/blueshield.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/Back/Duffels/blueshield.rsi/icon.png new file mode 100644 index 00000000000000..0904a1bd7ed3ef Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Duffels/blueshield.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Duffels/blueshield.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Back/Duffels/blueshield.rsi/inhand-left.png new file mode 100644 index 00000000000000..3cd408947f9dac Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Duffels/blueshield.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Duffels/blueshield.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Back/Duffels/blueshield.rsi/inhand-right.png new file mode 100644 index 00000000000000..27f583dd410a3b Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Duffels/blueshield.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Duffels/blueshield.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Back/Duffels/blueshield.rsi/meta.json new file mode 100644 index 00000000000000..f60236f7fc7d6e --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Back/Duffels/blueshield.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1, tweak by @DarkenedSynergy", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Satchels/blueshield.rsi/equipped-BACKPACK.png b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/blueshield.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000000..3453e41f536710 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/blueshield.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Satchels/blueshield.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/blueshield.rsi/icon.png new file mode 100644 index 00000000000000..0d20818e352931 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/blueshield.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Satchels/blueshield.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/blueshield.rsi/inhand-left.png new file mode 100644 index 00000000000000..e86db510c74e26 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/blueshield.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Satchels/blueshield.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/blueshield.rsi/inhand-right.png new file mode 100644 index 00000000000000..a7993a0af50a45 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/blueshield.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Satchels/blueshield.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/blueshield.rsi/meta.json new file mode 100644 index 00000000000000..d7575c9e84329a --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/blueshield.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2e24b7af2221928e4b844a29408e821b60a5fe29, tweak by @DarkenedSynergy", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Satchels/nanorep.rsi/equipped-BACKPACK.png b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/nanorep.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000000..fba602fdc39fa4 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/nanorep.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Satchels/nanorep.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/nanorep.rsi/icon.png new file mode 100644 index 00000000000000..e774d376369b54 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/nanorep.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Satchels/nanorep.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/nanorep.rsi/inhand-left.png new file mode 100644 index 00000000000000..64ada33c4f45e0 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/nanorep.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Satchels/nanorep.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/nanorep.rsi/inhand-right.png new file mode 100644 index 00000000000000..033b54e389a34f Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/nanorep.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Back/Satchels/nanorep.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/nanorep.rsi/meta.json new file mode 100644 index 00000000000000..ed91c56e31f10c --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Back/Satchels/nanorep.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Modified from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1 by KingFroozy (Github) for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Eyes/Glasses/medglasses.rsi/equipped-EYES.png b/Resources/Textures/_Goobstation/Clothing/Eyes/Glasses/medglasses.rsi/equipped-EYES.png new file mode 100644 index 00000000000000..6435d3294880de Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Eyes/Glasses/medglasses.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Eyes/Glasses/medglasses.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/Eyes/Glasses/medglasses.rsi/icon.png new file mode 100644 index 00000000000000..e3a1a931d261d5 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Eyes/Glasses/medglasses.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Eyes/Glasses/medglasses.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Eyes/Glasses/medglasses.rsi/inhand-left.png new file mode 100644 index 00000000000000..36f81903f7f58d Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Eyes/Glasses/medglasses.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Eyes/Glasses/medglasses.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Eyes/Glasses/medglasses.rsi/inhand-right.png new file mode 100644 index 00000000000000..4b70792bb5a427 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Eyes/Glasses/medglasses.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Eyes/Glasses/medglasses.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Eyes/Glasses/medglasses.rsi/meta.json new file mode 100644 index 00000000000000..775ddefdb0af39 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Eyes/Glasses/medglasses.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from paradise at commit https://github.com/ParadiseSS13/Paradise/pull/26498/commits/17c167b6648e8b67eb9c2f23f2f5b61e1a86f028", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_navy.rsi/equipped-HELMET.png b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_navy.rsi/equipped-HELMET.png new file mode 100644 index 00000000000000..8080ef32d03996 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_navy.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_navy.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_navy.rsi/icon.png new file mode 100644 index 00000000000000..4a538106ae50e6 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_navy.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_navy.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_navy.rsi/inhand-left.png new file mode 100644 index 00000000000000..69b1932bd7dbba Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_navy.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_navy.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_navy.rsi/inhand-right.png new file mode 100644 index 00000000000000..9ab3a81bdc9524 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_navy.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_navy.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_navy.rsi/meta.json new file mode 100644 index 00000000000000..9f26d95de4aab3 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_navy.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise Station at commit https://github.com/ParadiseSS13/Paradise/pull/26498/commits/17c167b6648e8b67eb9c2f23f2f5b61e1a86f028", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_officer.rsi/equipped-HELMET.png b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_officer.rsi/equipped-HELMET.png new file mode 100644 index 00000000000000..78232e33546d14 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_officer.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_officer.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_officer.rsi/icon.png new file mode 100644 index 00000000000000..4556d582a53224 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_officer.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_officer.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_officer.rsi/inhand-left.png new file mode 100644 index 00000000000000..82298c09dc275a Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_officer.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_officer.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_officer.rsi/inhand-right.png new file mode 100644 index 00000000000000..589ecca61864fd Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_officer.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_officer.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_officer.rsi/meta.json new file mode 100644 index 00000000000000..9f26d95de4aab3 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Head/Hats/beret_bso_officer.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise Station at commit https://github.com/ParadiseSS13/Paradise/pull/26498/commits/17c167b6648e8b67eb9c2f23f2f5b61e1a86f028", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hats/cowboyhatbso.rsi/equipped-HELMET.png b/Resources/Textures/_Goobstation/Clothing/Head/Hats/cowboyhatbso.rsi/equipped-HELMET.png new file mode 100644 index 00000000000000..b161d09704dfad Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hats/cowboyhatbso.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hats/cowboyhatbso.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/Head/Hats/cowboyhatbso.rsi/icon.png new file mode 100644 index 00000000000000..cb8deb80aa0046 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hats/cowboyhatbso.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hats/cowboyhatbso.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Head/Hats/cowboyhatbso.rsi/inhand-left.png new file mode 100644 index 00000000000000..90cac5a0fe1046 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hats/cowboyhatbso.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hats/cowboyhatbso.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Head/Hats/cowboyhatbso.rsi/inhand-right.png new file mode 100644 index 00000000000000..f0ddcf3930dc57 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Head/Hats/cowboyhatbso.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Head/Hats/cowboyhatbso.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Head/Hats/cowboyhatbso.rsi/meta.json new file mode 100644 index 00000000000000..d963dc9ec92b26 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Head/Hats/cowboyhatbso.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation at https://github.com/tgstation/tgstation/commit/8703eac50de6379c26f7eadb47b4f016854d1dcd, Resprited by BombasterDS", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000000..2d4c9fda78e80a Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi/icon.png new file mode 100644 index 00000000000000..160f0e82668c44 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi/inhand-left.png new file mode 100644 index 00000000000000..1acbc1aecefa3e Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi/inhand-right.png new file mode 100644 index 00000000000000..e4f1e494d41ef2 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi/meta.json new file mode 100644 index 00000000000000..d62b0fa6bcc8f0 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_cowboy_jacket.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693, resprited by BombasterDS", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_jacket.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_jacket.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000000..c184df503c397d Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_jacket.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_jacket.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_jacket.rsi/icon.png new file mode 100644 index 00000000000000..ef6613bdbba416 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_jacket.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_jacket.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_jacket.rsi/inhand-left.png new file mode 100644 index 00000000000000..1acbc1aecefa3e Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_jacket.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_jacket.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_jacket.rsi/inhand-right.png new file mode 100644 index 00000000000000..e4f1e494d41ef2 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_jacket.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_jacket.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_jacket.rsi/meta.json new file mode 100644 index 00000000000000..e8dcfe64a65ea4 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/OuterClothing/Armor/blueshield_jacket.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693, pants removed by BombasterDS", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/blueshield_officer.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/blueshield_officer.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000000..30ab9dba75221f Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/blueshield_officer.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/blueshield_officer.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/blueshield_officer.rsi/icon.png new file mode 100644 index 00000000000000..de89a9220c7e51 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/blueshield_officer.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/blueshield_officer.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/blueshield_officer.rsi/inhand-left.png new file mode 100644 index 00000000000000..c8512e4e08685b Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/blueshield_officer.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/blueshield_officer.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/blueshield_officer.rsi/inhand-right.png new file mode 100644 index 00000000000000..08d38ebb33c77a Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/blueshield_officer.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/blueshield_officer.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/blueshield_officer.rsi/meta.json new file mode 100644 index 00000000000000..0079dff8f29645 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/blueshield_officer.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise Station at commit https://github.com/ParadiseSS13/Paradise/pull/26498/commits/17c167b6648e8b67eb9c2f23f2f5b61e1a86f028", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/centcom_agent.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/centcom_agent.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000000..9452ab83130f14 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/centcom_agent.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/centcom_agent.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/centcom_agent.rsi/icon.png new file mode 100644 index 00000000000000..57cfc5469ca79d Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/centcom_agent.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/centcom_agent.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/centcom_agent.rsi/inhand-left.png new file mode 100644 index 00000000000000..9dc326377ef78c Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/centcom_agent.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/centcom_agent.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/centcom_agent.rsi/inhand-right.png new file mode 100644 index 00000000000000..74166e77adb06c Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/centcom_agent.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/centcom_agent.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/centcom_agent.rsi/meta.json new file mode 100644 index 00000000000000..d288a02447aa88 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/centcom_agent.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Stitched together lovingly by BeeRobyn", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/nanotrasen_representative.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/nanotrasen_representative.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000000..7adfb81ac73d31 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/nanotrasen_representative.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/nanotrasen_representative.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/nanotrasen_representative.rsi/icon.png new file mode 100644 index 00000000000000..cd18e0d51aa8bc Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/nanotrasen_representative.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/nanotrasen_representative.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/nanotrasen_representative.rsi/inhand-left.png new file mode 100644 index 00000000000000..6e2cec8ce4d20c Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/nanotrasen_representative.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/nanotrasen_representative.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/nanotrasen_representative.rsi/inhand-right.png new file mode 100644 index 00000000000000..791a983c01b271 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/nanotrasen_representative.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/nanotrasen_representative.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/nanotrasen_representative.rsi/meta.json new file mode 100644 index 00000000000000..66fe2f9230f196 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpskirt/nanotrasen_representative.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from paradise @ https://github.com/ParadiseSS13/Paradise/commit/14a7b74c2aad4002bf575687ed01321c8d66e5ff", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/blueshield_officer.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/blueshield_officer.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000000..624924965ccd4a Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/blueshield_officer.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/blueshield_officer.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/blueshield_officer.rsi/icon.png new file mode 100644 index 00000000000000..3205976ee8887d Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/blueshield_officer.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/blueshield_officer.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/blueshield_officer.rsi/inhand-left.png new file mode 100644 index 00000000000000..b133681071cb04 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/blueshield_officer.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/blueshield_officer.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/blueshield_officer.rsi/inhand-right.png new file mode 100644 index 00000000000000..e21fc75b51404a Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/blueshield_officer.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/blueshield_officer.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/blueshield_officer.rsi/meta.json new file mode 100644 index 00000000000000..0079dff8f29645 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/blueshield_officer.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise Station at commit https://github.com/ParadiseSS13/Paradise/pull/26498/commits/17c167b6648e8b67eb9c2f23f2f5b61e1a86f028", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/nanotrasen_representative.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/nanotrasen_representative.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000000..3bccb78d216127 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/nanotrasen_representative.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/nanotrasen_representative.rsi/icon.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/nanotrasen_representative.rsi/icon.png new file mode 100644 index 00000000000000..237ef281464a72 Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/nanotrasen_representative.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/nanotrasen_representative.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/nanotrasen_representative.rsi/inhand-left.png new file mode 100644 index 00000000000000..98cc05bf5ee1ce Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/nanotrasen_representative.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/nanotrasen_representative.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/nanotrasen_representative.rsi/inhand-right.png new file mode 100644 index 00000000000000..9bb599b35a877b Binary files /dev/null and b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/nanotrasen_representative.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/nanotrasen_representative.rsi/meta.json b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/nanotrasen_representative.rsi/meta.json new file mode 100644 index 00000000000000..66fe2f9230f196 --- /dev/null +++ b/Resources/Textures/_Goobstation/Clothing/Uniforms/Jumpsuit/nanotrasen_representative.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from paradise @ https://github.com/ParadiseSS13/Paradise/commit/14a7b74c2aad4002bf575687ed01321c8d66e5ff", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Goobstation/Interface/Misc/job_icons.rsi/blueshield.png b/Resources/Textures/_Goobstation/Interface/Misc/job_icons.rsi/blueshield.png new file mode 100644 index 00000000000000..87c352c376c151 Binary files /dev/null and b/Resources/Textures/_Goobstation/Interface/Misc/job_icons.rsi/blueshield.png differ diff --git a/Resources/Textures/_Goobstation/Interface/Misc/job_icons.rsi/meta.json b/Resources/Textures/_Goobstation/Interface/Misc/job_icons.rsi/meta.json new file mode 100644 index 00000000000000..1c7da3045b0780 --- /dev/null +++ b/Resources/Textures/_Goobstation/Interface/Misc/job_icons.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Blueshield and Nanotrasen Representative taken from Paradise @ https://github.com/ParadiseSS13/Paradise/commit/5a68c5f6d3b60ee82c06e0287d1eb8108d2e1fe2", + "size": { + "x": 8, + "y": 8 + }, + "states": [ + { + "name": "nanotrasenrepresentative" + }, + { + "name": "blueshield" + } + ] +} diff --git a/Resources/Textures/_Goobstation/Interface/Misc/job_icons.rsi/nanotrasenrepresentative.png b/Resources/Textures/_Goobstation/Interface/Misc/job_icons.rsi/nanotrasenrepresentative.png new file mode 100644 index 00000000000000..a62c65ef24d7f6 Binary files /dev/null and b/Resources/Textures/_Goobstation/Interface/Misc/job_icons.rsi/nanotrasenrepresentative.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Devices/pda.rsi/id_overlay.png b/Resources/Textures/_Goobstation/Objects/Devices/pda.rsi/id_overlay.png new file mode 100644 index 00000000000000..3f5d310e703db6 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Devices/pda.rsi/id_overlay.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Devices/pda.rsi/light_overlay.png b/Resources/Textures/_Goobstation/Objects/Devices/pda.rsi/light_overlay.png new file mode 100644 index 00000000000000..286a6c32558c5a Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Devices/pda.rsi/light_overlay.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Devices/pda.rsi/meta.json b/Resources/Textures/_Goobstation/Objects/Devices/pda.rsi/meta.json new file mode 100644 index 00000000000000..c759f00d96c7d1 --- /dev/null +++ b/Resources/Textures/_Goobstation/Objects/Devices/pda.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "PDA-Blueshield drawn by SolsticeOfTheWinter", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "light_overlay" + }, + { + "name": "id_overlay" + }, + { + "name": "pda-blueshield" + } + ] +} diff --git a/Resources/Textures/_Goobstation/Objects/Devices/pda.rsi/pda-blueshield.png b/Resources/Textures/_Goobstation/Objects/Devices/pda.rsi/pda-blueshield.png new file mode 100644 index 00000000000000..667677f2061cec Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Devices/pda.rsi/pda-blueshield.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Devices/unique_teleporters.rsi/bso.png b/Resources/Textures/_Goobstation/Objects/Devices/unique_teleporters.rsi/bso.png new file mode 100644 index 00000000000000..8290dfe668a969 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Devices/unique_teleporters.rsi/bso.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Devices/unique_teleporters.rsi/meta.json b/Resources/Textures/_Goobstation/Objects/Devices/unique_teleporters.rsi/meta.json new file mode 100644 index 00000000000000..1701d119ac5dfa --- /dev/null +++ b/Resources/Textures/_Goobstation/Objects/Devices/unique_teleporters.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Renee - https://discord.com/channels/1202734573247795300/1288192265319223387/1288254493020131368", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "standard" + }, + { + "name": "ntr" + }, + { + "name": "bso" + } + ] +} diff --git a/Resources/Textures/_Goobstation/Objects/Devices/unique_teleporters.rsi/ntr.png b/Resources/Textures/_Goobstation/Objects/Devices/unique_teleporters.rsi/ntr.png new file mode 100644 index 00000000000000..bcbac38a89406d Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Devices/unique_teleporters.rsi/ntr.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Devices/unique_teleporters.rsi/standard.png b/Resources/Textures/_Goobstation/Objects/Devices/unique_teleporters.rsi/standard.png new file mode 100644 index 00000000000000..af23158a9b8921 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Devices/unique_teleporters.rsi/standard.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Misc/stamps.rsi/meta.json b/Resources/Textures/_Goobstation/Objects/Misc/stamps.rsi/meta.json new file mode 100644 index 00000000000000..cf9e466a53d4b7 --- /dev/null +++ b/Resources/Textures/_Goobstation/Objects/Misc/stamps.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/fb1012102257b7b0a08d861fd2b8ba963c416e93. Resprited centcom sprite by BombasterDS", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "stamp-nanorep" + } + ] +} diff --git a/Resources/Textures/_Goobstation/Objects/Misc/stamps.rsi/stamp-nanorep.png b/Resources/Textures/_Goobstation/Objects/Misc/stamps.rsi/stamp-nanorep.png new file mode 100644 index 00000000000000..e2be05ecac7feb Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Misc/stamps.rsi/stamp-nanorep.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Storage/bso_box.rsi/icon-open.png b/Resources/Textures/_Goobstation/Objects/Storage/bso_box.rsi/icon-open.png new file mode 100644 index 00000000000000..e2dc66a18ce41e Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Storage/bso_box.rsi/icon-open.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Storage/bso_box.rsi/icon.png b/Resources/Textures/_Goobstation/Objects/Storage/bso_box.rsi/icon.png new file mode 100644 index 00000000000000..f15aa41256b286 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Storage/bso_box.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Storage/bso_box.rsi/meta.json b/Resources/Textures/_Goobstation/Objects/Storage/bso_box.rsi/meta.json new file mode 100644 index 00000000000000..5546de6214fc0d --- /dev/null +++ b/Resources/Textures/_Goobstation/Objects/Storage/bso_box.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by BombasterDS", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + } + ] +} diff --git a/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/icon.png b/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/icon.png new file mode 100644 index 00000000000000..020e3bae7361cc Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/idle.png b/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/idle.png new file mode 100644 index 00000000000000..020e3bae7361cc Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/idle.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/inhand-left.png new file mode 100644 index 00000000000000..8f7753973b0cc9 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/inhand-right.png new file mode 100644 index 00000000000000..8f7753973b0cc9 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/inserting.png b/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/inserting.png new file mode 100644 index 00000000000000..c63be6c3f908fc Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/inserting.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/meta.json b/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/meta.json new file mode 100644 index 00000000000000..f1932c77a06ccc --- /dev/null +++ b/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/meta.json @@ -0,0 +1,67 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Theapug - https://discord.com/channels/1202734573247795300/1236697829171527841/1286255122007068742", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "idle" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "scanner", + "delays": [ + [ + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "inserting", + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "printing", + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/printing.png b/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/printing.png new file mode 100644 index 00000000000000..723f2427809454 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/printing.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/scanner.png b/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/scanner.png new file mode 100644 index 00000000000000..4fafc5ffe3d5b1 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Tools/handheld_fax.rsi/scanner.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/base.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/base.png new file mode 100644 index 00000000000000..3ba5792d542f17 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/base.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-1.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-1.png new file mode 100644 index 00000000000000..e20f77f933646b Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-1.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-2.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-2.png new file mode 100644 index 00000000000000..55f002791af207 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-2.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-3.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-3.png new file mode 100644 index 00000000000000..a0ece856ca624e Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-3.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-4.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-4.png new file mode 100644 index 00000000000000..68865887d65689 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-4.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-5.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-5.png new file mode 100644 index 00000000000000..bd2b5db0a46b91 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-5.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-6.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-6.png new file mode 100644 index 00000000000000..e19ce59991ed9c Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-6.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-7.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-7.png new file mode 100644 index 00000000000000..2dbb4d99e5e2b7 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-7.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-8.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-8.png new file mode 100644 index 00000000000000..1ac2caa785f715 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/mag-8.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/meta.json b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/meta.json new file mode 100644 index 00000000000000..9c9b4c5326a587 --- /dev/null +++ b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Ammunition/Magazine/lever_rifle_mags.rsi/meta.json @@ -0,0 +1,38 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by BombasterDS", + "states": [ + { + "name": "base" + }, + { + "name": "mag-1" + }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, + { + "name": "mag-4" + }, + { + "name": "mag-5" + }, + { + "name": "mag-6" + }, + { + "name": "mag-7" + }, + { + "name": "mag-8" + } + ] +} diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/base.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/base.png new file mode 100644 index 00000000000000..fe3088f3b48e53 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/base.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/disabler-inhand-left.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/disabler-inhand-left.png new file mode 100644 index 00000000000000..dcf2130ddb805b Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/disabler-inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/disabler-inhand-right.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/disabler-inhand-right.png new file mode 100644 index 00000000000000..fbfbef6d0d8329 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/disabler-inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/equipped-BACKPACK.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000000..9805a66c58baf8 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/equipped-BELT.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/equipped-BELT.png new file mode 100644 index 00000000000000..33d05e86d80227 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000000..c2a930012b7e22 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/icon.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/icon.png new file mode 100644 index 00000000000000..3edfa8afbb271c Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/icon.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/lethal-inhand-left.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/lethal-inhand-left.png new file mode 100644 index 00000000000000..bf36e60c4b8108 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/lethal-inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/lethal-inhand-right.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/lethal-inhand-right.png new file mode 100644 index 00000000000000..9ebd4a199b603e Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/lethal-inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mag-unshaded-0.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mag-unshaded-0.png new file mode 100644 index 00000000000000..a81248e4845922 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mag-unshaded-0.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mag-unshaded-1.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mag-unshaded-1.png new file mode 100644 index 00000000000000..e437ff3d8f8326 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mag-unshaded-1.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mag-unshaded-2.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mag-unshaded-2.png new file mode 100644 index 00000000000000..d7b53fbd8eaf5c Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mag-unshaded-2.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mag-unshaded-3.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mag-unshaded-3.png new file mode 100644 index 00000000000000..9213df5dd8ab9b Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mag-unshaded-3.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mag-unshaded-4.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mag-unshaded-4.png new file mode 100644 index 00000000000000..fb66acb63185b8 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mag-unshaded-4.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/meta.json b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/meta.json new file mode 100644 index 00000000000000..899c0f279d77ce --- /dev/null +++ b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/meta.json @@ -0,0 +1,67 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Icon, Base, and the mag-unshaded's taken from Paradise Station at commit https://github.com/ParadiseSS13/Paradise/pull/26498/commits/17c167b6648e8b67eb9c2f23f2f5b61e1a86f028 All other sprites are by Icepicked", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "mode-disabler" + }, + { + "name": "mode-lethal" + }, + { + "name": "mag-unshaded-0", + "delays": [[ 0.3, 0.3 ]] + }, + { + "name": "mag-unshaded-1" + }, + { + "name": "mag-unshaded-2" + }, + { + "name": "mag-unshaded-3" + }, + { + "name": "mag-unshaded-4" + }, + { + "name": "disabler-inhand-left", + "directions": 4 + }, + { + "name": "disabler-inhand-right", + "directions": 4 + }, + { + "name": "lethal-inhand-left", + "directions": 4 + }, + { + "name": "lethal-inhand-right", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mode-disabler.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mode-disabler.png new file mode 100644 index 00000000000000..b671549e5b045c Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mode-disabler.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mode-lethal.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mode-lethal.png new file mode 100644 index 00000000000000..ac76824b069157 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Battery/erevolver.rsi/mode-lethal.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/base.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/base.png new file mode 100644 index 00000000000000..45881903ecb51f Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/base.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/bolt-open.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/bolt-open.png new file mode 100644 index 00000000000000..48bea3ae894b72 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/bolt-open.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/equipped-BACKPACK.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000000..5ddc2bbdfa9806 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000000..5ddc2bbdfa9806 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/inhand-left.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/inhand-left.png new file mode 100644 index 00000000000000..d4738f809fcc5a Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/inhand-right.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/inhand-right.png new file mode 100644 index 00000000000000..0ff06bc6793d5d Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/mag-0.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/mag-0.png new file mode 100644 index 00000000000000..c6bcb523f4b86f Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/mag-0.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/meta.json b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/meta.json new file mode 100644 index 00000000000000..c3b395ebe3af73 --- /dev/null +++ b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/meta.json @@ -0,0 +1,44 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by BombasterDS", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "bolt-open" + }, + { + "name": "mag-0" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/wielded-inhand-left.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/wielded-inhand-left.png new file mode 100644 index 00000000000000..0c0cf08a3f5214 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/wielded-inhand-right.png b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/wielded-inhand-right.png new file mode 100644 index 00000000000000..e33f8584339747 Binary files /dev/null and b/Resources/Textures/_Goobstation/Objects/Weapons/Guns/Lever/chester.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/bso.png b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/bso.png new file mode 100644 index 00000000000000..627fef8d542402 Binary files /dev/null and b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/bso.png differ diff --git a/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/bso_door.png b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/bso_door.png new file mode 100644 index 00000000000000..d21aa4c6488c8d Binary files /dev/null and b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/bso_door.png differ diff --git a/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/bso_open.png b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/bso_open.png new file mode 100644 index 00000000000000..e70e4a7e2bac92 Binary files /dev/null and b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/bso_open.png differ diff --git a/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/generic.png b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/generic.png new file mode 100644 index 00000000000000..cd0c0ff2ea19a9 Binary files /dev/null and b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/generic.png differ diff --git a/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/generic_door.png b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/generic_door.png new file mode 100644 index 00000000000000..26498527779b4d Binary files /dev/null and b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/generic_door.png differ diff --git a/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/generic_icon.png b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/generic_icon.png new file mode 100644 index 00000000000000..2487eae1fdd116 Binary files /dev/null and b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/generic_icon.png differ diff --git a/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/generic_open.png b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/generic_open.png new file mode 100644 index 00000000000000..01ed5bf73b6c54 Binary files /dev/null and b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/generic_open.png differ diff --git a/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/locked.png b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/locked.png new file mode 100644 index 00000000000000..d90218d19e26a9 Binary files /dev/null and b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/locked.png differ diff --git a/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/meta.json b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/meta.json new file mode 100644 index 00000000000000..79b82e65e63f1a --- /dev/null +++ b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/meta.json @@ -0,0 +1,50 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "copyright": "Made by Icepick - https://discord.com/channels/1202734573247795300/1236697829171527841/1282401830181277789", + "license": "CC-BY-SA-3.0", + "states": [ + { + "name": "bso" + }, + { + "name": "bso_door" + }, + { + "name": "bso_open" + }, + { + "name": "ntr" + }, + { + "name": "ntr_door" + }, + { + "name": "ntr_open" + }, + { + "name": "generic" + }, + { + "name": "generic_door" + }, + { + "name": "generic_open" + }, + { + "name": "generic_icon" + }, + { + "name": "welded" + }, + { + "name": "unlocked" + }, + { + "name": "locked" + } + ] +} diff --git a/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/ntr.png b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/ntr.png new file mode 100644 index 00000000000000..bcf4bb2431d5e2 Binary files /dev/null and b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/ntr.png differ diff --git a/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/ntr_door.png b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/ntr_door.png new file mode 100644 index 00000000000000..22b15062148903 Binary files /dev/null and b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/ntr_door.png differ diff --git a/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/ntr_open.png b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/ntr_open.png new file mode 100644 index 00000000000000..52e2388275c3f0 Binary files /dev/null and b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/ntr_open.png differ diff --git a/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/unlocked.png b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/unlocked.png new file mode 100644 index 00000000000000..418607bfaf59e0 Binary files /dev/null and b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/unlocked.png differ diff --git a/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/welded.png b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/welded.png new file mode 100644 index 00000000000000..5ba5dcc89629b4 Binary files /dev/null and b/Resources/Textures/_Goobstation/Structures/Storage/closet.rsi/welded.png differ diff --git a/RobustToolbox b/RobustToolbox index e47ba0faea6b11..e4190f4f290063 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit e47ba0faea6b1143f4810547b3d617a110bdb6a5 +Subproject commit e4190f4f2900634e332208a77cd6df9cef75c29a diff --git a/global.json b/global.json index c8526b0a8ba3bb..cdbb589edad71c 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.100", - "rollForward": "patch" + "version": "9.0.100", + "rollForward": "latestFeature" } }