diff --git a/Content.Server/GameTicking/Rules/SP14/Components/LockdownRuleComponent.cs b/Content.Server/GameTicking/Rules/SP14/Components/LockdownRuleComponent.cs new file mode 100644 index 0000000000..cb264d8e1a --- /dev/null +++ b/Content.Server/GameTicking/Rules/SP14/Components/LockdownRuleComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Server.GameTicking.Rules.Components; + +[RegisterComponent, Access(typeof(LockdownRuleSystem))] +public sealed partial class LockdownRuleComponent : Component +{ + /// + /// The gamerules that get added by lockdown. + /// + [DataField("additionalGameRules")] + public HashSet AdditionalGameRules = new(); +} diff --git a/Content.Server/GameTicking/Rules/SP14/LockdownRuleSystem.cs b/Content.Server/GameTicking/Rules/SP14/LockdownRuleSystem.cs new file mode 100644 index 0000000000..67d4fc37db --- /dev/null +++ b/Content.Server/GameTicking/Rules/SP14/LockdownRuleSystem.cs @@ -0,0 +1,174 @@ +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using Content.Server.Administration.Logs; +using Content.Server.Chat.Managers; +using Content.Server.GameTicking.Presets; +using Content.Server.GameTicking.Rules.Components; +using Content.Shared.GameTicking.Components; +using Content.Shared.Random; +using Content.Shared.CCVar; +using Content.Shared.Database; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using Robust.Shared.Configuration; +using Robust.Shared.Utility; + +namespace Content.Server.GameTicking.Rules; + +// is this wildly inefficient? yes. do i care? not really. + +public sealed class LockdownRuleSystem : GameRuleSystem +{ + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly IConfigurationManager _configurationManager = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly IComponentFactory _compFact = default!; + + private string _ruleCompName = default!; + + public override void Initialize() + { + base.Initialize(); + _ruleCompName = _compFact.GetComponentName(typeof(GameRuleComponent)); + } + + protected override void Added(EntityUid uid, LockdownRuleComponent component, GameRuleComponent gameRule, GameRuleAddedEvent args) + { + base.Added(uid, component, gameRule, args); + var weights = _configurationManager.GetCVar(CCVars.LockdownWeightPrototype); + + if (!TryPickPreset(weights, out var preset)) + { + Log.Error($"{ToPrettyString(uid)} failed to pick any preset. Removing rule."); + Del(uid); + return; + } + + Log.Info($"Selected {preset.ID} as the lockdown preset."); + _adminLogger.Add(LogType.EventStarted, $"Selected {preset.ID} as the lockdown preset."); + + foreach (var rule in preset.Rules) + { + EntityUid ruleEnt; + + // if we're pre-round (i.e. will only be added) + // then just add rules. if we're added in the middle of the round (or at any other point really) + // then we want to start them as well + if (GameTicker.RunLevel <= GameRunLevel.InRound) + ruleEnt = GameTicker.AddGameRule(rule); + else + GameTicker.StartGameRule(rule, out ruleEnt); + + component.AdditionalGameRules.Add(ruleEnt); + } + } + + protected override void Ended(EntityUid uid, LockdownRuleComponent component, GameRuleComponent gameRule, GameRuleEndedEvent args) + { + base.Ended(uid, component, gameRule, args); + + foreach (var rule in component.AdditionalGameRules) + { + GameTicker.EndGameRule(rule); + } + } + + private bool TryPickPreset(ProtoId weights, [NotNullWhen(true)] out GamePresetPrototype? preset) + { + var options = _prototypeManager.Index(weights).Weights.ShallowClone(); + var players = GameTicker.ReadyPlayerCount(); + + GamePresetPrototype? selectedPreset = null; + var sum = options.Values.Sum(); + while (options.Count > 0) + { + var accumulated = 0f; + var rand = _random.NextFloat(sum); + foreach (var (key, weight) in options) + { + accumulated += weight; + if (accumulated < rand) + continue; + + if (!_prototypeManager.TryIndex(key, out selectedPreset)) + Log.Error($"Invalid preset {selectedPreset} in lockdown rule weights: {weights}"); + + options.Remove(key); + sum -= weight; + break; + } + + if (CanPick(selectedPreset, players)) + { + preset = selectedPreset; + return true; + } + + if (selectedPreset != null) + Log.Info($"Excluding {selectedPreset.ID} from lockdown preset selection."); + } + + preset = null; + return false; + } + + public bool CanPickAny() + { + var secretPresetId = _configurationManager.GetCVar(CCVars.SecretWeightPrototype); + return CanPickAny(secretPresetId); + } + + /// + /// Can any of the given presets be picked, taking into account the currently available player count? + /// + public bool CanPickAny(ProtoId weightedPresets) + { + var ids = _prototypeManager.Index(weightedPresets).Weights.Keys + .Select(x => new ProtoId(x)); + + return CanPickAny(ids); + } + + /// + /// Can any of the given presets be picked, taking into account the currently available player count? + /// + public bool CanPickAny(IEnumerable> protos) + { + var players = GameTicker.ReadyPlayerCount(); + foreach (var id in protos) + { + if (!_prototypeManager.TryIndex(id, out var selectedPreset)) + Log.Error($"Invalid preset {selectedPreset} in lockdown rule weights: {id}"); + + if (CanPick(selectedPreset, players)) + return true; + } + + return false; + } + + /// + /// Can the given preset be picked, taking into account the currently available player count? + /// + private bool CanPick([NotNullWhen(true)] GamePresetPrototype? selected, int players) + { + if (selected == null) + return false; + + foreach (var ruleId in selected.Rules) + { + if (!_prototypeManager.TryIndex(ruleId, out EntityPrototype? rule) + || !rule.TryGetComponent(_ruleCompName, out GameRuleComponent? ruleComp)) + { + Log.Error($"Encountered invalid rule {ruleId} in preset {selected.ID}"); + return false; + } + + if (ruleComp.MinPlayers > players && ruleComp.CancelPresetOnTooFewPlayers) + return false; + } + + return true; + } +} diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 7e61ec8a58..dfb126c739 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -14,6 +14,16 @@ public sealed class CCVars : CVars * Server */ + /// SP14 + + /// + /// The prototype to use for sp14's lockdown weights. + /// + public static readonly CVarDef LockdownWeightPrototype = + CVarDef.Create("game.lockdown_weight_prototype", "Lockdown", CVar.SERVERONLY); + + /// SS14 + /// /// Change this to have the changelog and rules "last seen" date stored separately. /// @@ -142,7 +152,7 @@ public static readonly CVarDef /// Controls the default game preset. /// public static readonly CVarDef - GameLobbyDefaultPreset = CVarDef.Create("game.defaultpreset", "secret", CVar.ARCHIVE); + GameLobbyDefaultPreset = CVarDef.Create("game.defaultpreset", "lockdown", CVar.ARCHIVE); /// /// Controls if the game can force a different preset if the current preset's criteria are not met. @@ -1550,7 +1560,7 @@ public static readonly CVarDef /// Any value equal to or less than zero will disable this check. /// public static readonly CVarDef FTLMassLimit = - CVarDef.Create("shuttle.mass_limit", 300f, CVar.SERVERONLY); + CVarDef.Create("shuttle.mass_limit", 650f, CVar.SERVERONLY); /// SP14 doubled mass for liberator shuttle :) /// /// How long to knock down entities for if they aren't buckled when FTL starts and stops. diff --git a/Resources/Locale/en-US/game-ticking/game-presets/SP14/preset-liberator.ftl b/Resources/Locale/en-US/game-ticking/game-presets/SP14/preset-liberator.ftl new file mode 100644 index 0000000000..d011566f4b --- /dev/null +++ b/Resources/Locale/en-US/game-ticking/game-presets/SP14/preset-liberator.ftl @@ -0,0 +1,16 @@ +Liberator-title = Liberation +Liberator-description = Liberators have been called in to extract inmates. stage your escape or defend the prison. + +Liberator-welcome = + You are a liberator. Your goal is to extract any and all prisoners from {$station}. ensure minimal harm comes to any inmates. Your benefactors, the Syndicate, have provided you with the tools you'll need for the task. + Free the people! Death to Nanotrasen! + +Liberator-opsmajor = [color=crimson]Liberator major victory![/color] +Liberator-opsminor = [color=crimson]Liberator minor victory![/color] +Liberator-neutral = [color=yellow]Neutral outcome![/color] +Liberator-crewminor = [color=green]Crew minor victory![/color] +Liberator-crewmajor = [color=green]Crew major victory![/color] + +Liberator-role-commander = Commander +Liberator-role-agent = Agent +Liberator-role-operator = Operator diff --git a/Resources/Locale/en-US/game-ticking/game-presets/SP14/preset-lockdown.ftl b/Resources/Locale/en-US/game-ticking/game-presets/SP14/preset-lockdown.ftl new file mode 100644 index 0000000000..6bde9cc903 --- /dev/null +++ b/Resources/Locale/en-US/game-ticking/game-presets/SP14/preset-lockdown.ftl @@ -0,0 +1,2 @@ +lockdown-title = Lockdown +lockdown-description = It's a secret to everyone. The threats you encounter are randomized. diff --git a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl index 79b98691b8..c695edd947 100644 --- a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl @@ -238,3 +238,6 @@ ghost-role-information-artifact-description = Enact your eldritch whims. Forcibl ghost-role-information-syndie-assaultborg-name = Syndicate Assault Borg ghost-role-information-syndie-assaultborg-description = Nuclear operatives needs reinforcements. You, a cold silicon killing machine, will help them. More dakka! + +#SP14 +ghost-role-information-liberator-rules = You are a [color=red][bold]Team Antagonist[/bold][/color] with all other liberators. Prisoners are not guaranteed to help you. diff --git a/Resources/Locale/en-US/prototypes/roles/antags.ftl b/Resources/Locale/en-US/prototypes/roles/antags.ftl index ba43d4ff85..e0a86a2001 100644 --- a/Resources/Locale/en-US/prototypes/roles/antags.ftl +++ b/Resources/Locale/en-US/prototypes/roles/antags.ftl @@ -36,3 +36,14 @@ roles-antag-thief-objective = Add some NT property to your personal collection w roles-antag-dragon-name = Space Dragon roles-antag-dragon-objective = Create a carp army to take over this quadrant. + +#sp14 + +roles-antag-liberator-commander-name = Liberaton commander +roles-antag-liberator-commander-objective = Lead the liberation. Ensure resources are properly allocated and the operation is not at risk. + +roles-antag-liberator-agent-name = Liberaton agent +roles-antag-liberator-agent-objective = The liberation efforts finest medic, keep your teammates in the fight. + +roles-antag-liberator-name = Liberator +roles-antag-liberator-objective = break into the prison, break others out. \ No newline at end of file diff --git a/Resources/Maps/SP14/Shuttles/liberator.yml b/Resources/Maps/SP14/Shuttles/liberator.yml new file mode 100644 index 0000000000..ed0fb4e986 --- /dev/null +++ b/Resources/Maps/SP14/Shuttles/liberator.yml @@ -0,0 +1,11644 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 8: FloorBar + 9: FloorBrokenWood + 32: FloorDark + 5: FloorDarkMono + 12: FloorHull + 2: FloorHullReinforced + 6: FloorMining + 82: FloorRGlass + 83: FloorReinforced + 10: FloorReinforcedHardened + 11: FloorRockVault + 87: FloorShuttleBlack + 92: FloorShuttleRed + 4: FloorWhite + 3: FloorWhiteMono + 125: FloorWhitePlastic + 7: FloorWood + 129: Lattice + 130: Plating + 1: PlatingBurnt +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + name: Liberator + - type: Transform + pos: 0.5,0.515625 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: VwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAggAAAAAAVwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAggAAAAAAVwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAXAAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAVwAAAAAAIAAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAVwAAAAAAVwAAAAAAAQAAAAAAVwAAAAAAAgAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAVwAAAAAAVwAAAAAAAQAAAAAAVwAAAAAAAgAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAVwAAAAAAVwAAAAAAAQAAAAAAVwAAAAAAAgAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: ggAAAAAAVwAAAAAABQAAAAAABQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAABQAAAAAABQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAABAAAAAAABAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAABAAAAAAABAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAABgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAVwAAAAAAIAAAAAAAIAAAAAAABgAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAIAAAAAAABgAAAAAABgAAAAAABgAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAIAAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAgAAAAAAgQAAAAAAUwAAAAAAgQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAUwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAABwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVwAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAIAAAAAAAIAAAAAAAggAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAIAAAAAAAggAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAIAAAAAAAggAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAABQAAAAAABQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAVwAAAAAABQAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAQAAAAAAggAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAIAAAAAAAAgAAAAAACgAAAAAAggAAAAAAIAAAAAAAAgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAIAAAAAAACgAAAAAACgAAAAAAggAAAAAAIAAAAAAAAgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAACgAAAAAACgAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAVwAAAAAACwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAXAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAVwAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: IAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAVwAAAAAAIAAAAAAAIAAAAAAAVwAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAVwAAAAAAIAAAAAAAUwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAVwAAAAAAIAAAAAAAUwAAAAAAggAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAVwAAAAAAIAAAAAAAUwAAAAAAggAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAACwAAAAAAVwAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAAXAAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAVwAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: XAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 313: 1,19 + 314: 1,15 + 315: 1,11 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 267: 1,11 + 268: 1,15 + 269: 1,19 + - node: + color: '#571212FF' + id: Bot + decals: + 368: 3,21 + - node: + color: '#37789BFF' + id: BrickTileSteelCornerNe + decals: + 159: 6,-4 + - node: + color: '#571212FF' + id: BrickTileSteelCornerNe + decals: + 343: 4,25 + 352: 1,26 + - node: + color: '#9C2020FF' + id: BrickTileSteelCornerNe + decals: + 16: 4,5 + 67: 6,-4 + 282: 5,11 + 289: 5,16 + - node: + color: '#37789BFF' + id: BrickTileSteelCornerNw + decals: + 51: -2,-4 + - node: + color: '#571212FF' + id: BrickTileSteelCornerNw + decals: + 332: -6,25 + 349: -3,26 + - node: + color: '#9C2020FF' + id: BrickTileSteelCornerNw + decals: + 0: 0,5 + 293: -1,8 + - node: + color: '#37789BFF' + id: BrickTileSteelCornerSe + decals: + 145: 3,-13 + 153: 6,-8 + - node: + color: '#571212FF' + id: BrickTileSteelCornerSe + decals: + 341: 4,23 + - node: + color: '#9C2020FF' + id: BrickTileSteelCornerSe + decals: + 17: 6,-2 + 68: 6,-8 + 69: 3,-13 + 281: 5,10 + 283: 5,15 + 290: 1,7 + - node: + color: '#37789BFF' + id: BrickTileSteelCornerSw + decals: + 144: 2,-13 + - node: + color: '#4B709CFF' + id: BrickTileSteelCornerSw + decals: + 187: -2,-11 + - node: + color: '#571212FF' + id: BrickTileSteelCornerSw + decals: + 334: -6,23 + - node: + color: '#9C2020FF' + id: BrickTileSteelCornerSw + decals: + 1: 0,-2 + 58: 2,-13 + 273: -1,7 + - node: + color: '#FA7500FF' + id: BrickTileSteelCornerSw + decals: + 194: -2,-13 + - node: + color: '#9C2020FF' + id: BrickTileSteelEndE + decals: + 19: 6,-2 + - node: + color: '#37789BFF' + id: BrickTileSteelEndN + decals: + 121: 1,-6 + - node: + color: '#571212FF' + id: BrickTileSteelEndN + decals: + 324: -5,27 + 325: 3,27 + - node: + color: '#9C2020FF' + id: BrickTileSteelEndN + decals: + 307: 1,20 + - node: + color: '#37789BFF' + id: BrickTileSteelEndS + decals: + 122: 1,-9 + - node: + color: '#37789BFF' + id: BrickTileSteelInnerNe + decals: + 110: 0,-10 + - node: + color: '#571212FF' + id: BrickTileSteelInnerNe + decals: + 327: -5,25 + 344: 3,25 + 347: 1,25 + - node: + color: '#9C2020FF' + id: BrickTileSteelInnerNe + decals: + 27: 4,-2 + 288: 4,11 + 311: 1,16 + - node: + color: '#37789BFF' + id: BrickTileSteelInnerNw + decals: + 138: 2,-10 + - node: + color: '#571212FF' + id: BrickTileSteelInnerNw + decals: + 328: 3,25 + 331: -5,25 + 348: -3,25 + 366: 4,17 + - node: + color: '#9C2020FF' + id: BrickTileSteelInnerNw + decals: + 115: 2,-10 + 294: 1,8 + - node: + color: '#37789BFF' + id: BrickTileSteelInnerSe + decals: + 111: 0,-5 + 150: 3,-8 + - node: + color: '#9C2020FF' + id: BrickTileSteelInnerSe + decals: + 72: 3,-8 + 287: 4,15 + 312: 1,10 + - node: + color: '#37789BFF' + id: BrickTileSteelInnerSw + decals: + 137: 2,-5 + 142: 2,-11 + - node: + color: '#571212FF' + id: BrickTileSteelInnerSw + decals: + 367: 4,22 + - node: + color: '#9C2020FF' + id: BrickTileSteelInnerSw + decals: + 114: 2,-5 + 139: 2,-11 + - node: + color: '#37789BFF' + id: BrickTileSteelLineE + decals: + 48: 1,-12 + 108: 0,-9 + 109: 0,-8 + 123: 1,-8 + 124: 1,-7 + 129: 1,-6 + 130: 1,-7 + 131: 1,-8 + 132: 1,-9 + 146: 3,-12 + 147: 3,-11 + 148: 3,-10 + 149: 3,-9 + 154: 6,-7 + 155: 6,-6 + 156: 6,-5 + 184: 0,-7 + - node: + color: '#571212FF' + id: BrickTileSteelLineE + decals: + 330: -5,26 + 342: 4,24 + 345: 3,26 + - node: + color: '#9C2020FF' + id: BrickTileSteelLineE + decals: + 21: 4,-1 + 22: 4,0 + 23: 4,1 + 24: 4,2 + 25: 4,3 + 26: 4,4 + 71: 3,-9 + 74: 6,-7 + 75: 6,-6 + 76: 6,-5 + 77: 3,-12 + 78: 3,-11 + 79: 3,-10 + 125: 1,-7 + 126: 1,-8 + 127: 1,-6 + 128: 1,-9 + 284: 4,12 + 285: 4,13 + 286: 4,14 + 291: 1,8 + 292: 1,9 + 308: 1,19 + 309: 1,18 + 310: 1,17 + - node: + color: '#37789BFF' + id: BrickTileSteelLineN + decals: + 49: 0,-4 + 50: -1,-4 + 112: 1,-4 + 116: 1,-10 + 140: 2,-4 + 141: 3,-4 + 157: 4,-4 + 158: 5,-4 + - node: + color: '#571212FF' + id: BrickTileSteelLineN + decals: + 322: -4,25 + 323: 2,25 + 346: -1,26 + 350: -2,26 + 351: 0,26 + - node: + color: '#9C2020FF' + id: BrickTileSteelLineN + decals: + 8: 1,5 + 9: 2,5 + 10: 3,5 + 11: 4,5 + 20: 5,-2 + 64: 3,-4 + 65: 4,-4 + 66: 5,-4 + 113: 2,-4 + 278: 2,16 + 279: 3,16 + 280: 4,16 + 295: 0,8 + - node: + color: '#37789BFF' + id: BrickTileSteelLineS + decals: + 120: 1,-5 + 151: 4,-8 + 152: 5,-8 + - node: + color: '#4B709CFF' + id: BrickTileSteelLineS + decals: + 185: -1,-11 + 186: 0,-11 + 188: 1,-11 + - node: + color: '#571212FF' + id: BrickTileSteelLineS + decals: + 335: -2,23 + 336: -1,23 + 337: 0,23 + 338: 1,23 + 339: 2,23 + 340: 3,23 + - node: + color: '#9C2020FF' + id: BrickTileSteelLineS + decals: + 12: 1,-2 + 13: 2,-2 + 14: 3,-2 + 15: 4,-2 + 18: 5,-2 + 70: 4,-8 + 73: 5,-8 + 274: 0,7 + 275: 2,10 + 276: 3,10 + 277: 4,10 + - node: + color: '#FA7500FF' + id: BrickTileSteelLineS + decals: + 195: -1,-13 + 196: 0,-13 + 197: 1,-13 + - node: + color: '#37789BFF' + id: BrickTileSteelLineW + decals: + 52: -2,-5 + 53: -2,-6 + 117: 1,-9 + 118: 1,-8 + 119: 1,-7 + 133: 2,-9 + 134: 2,-8 + 135: 2,-7 + 136: 2,-6 + 143: 2,-12 + - node: + color: '#4B709CFF' + id: BrickTileSteelLineW + decals: + 54: -2,-7 + 55: -2,-8 + 56: -2,-9 + 57: -2,-10 + - node: + color: '#571212FF' + id: BrickTileSteelLineW + decals: + 326: 3,26 + 329: -5,26 + 333: -6,24 + 362: 4,18 + 363: 4,19 + 364: 4,20 + 365: 4,21 + - node: + color: '#9C2020FF' + id: BrickTileSteelLineW + decals: + 2: 0,-1 + 3: 0,0 + 4: 0,1 + 5: 0,2 + 6: 0,3 + 7: 0,4 + 59: 2,-12 + 60: 2,-9 + 61: 2,-8 + 62: 2,-7 + 63: 2,-6 + 296: 1,9 + 297: 1,10 + 298: 1,11 + 299: 1,12 + 300: 1,13 + 301: 1,14 + 302: 1,15 + 303: 1,16 + 304: 1,17 + 305: 1,18 + 306: 1,19 + - node: + color: '#FA7500FF' + id: BrickTileSteelLineW + decals: + 193: -2,-12 + - node: + color: '#571212FF' + id: ConcreteTrimInnerNe + decals: + 361: 5,18 + - node: + color: '#571212FF' + id: ConcreteTrimInnerSe + decals: + 360: 5,21 + - node: + color: '#571212FF' + id: ConcreteTrimLineE + decals: + 358: 5,20 + 359: 5,19 + - node: + color: '#571212FF' + id: ConcreteTrimLineS + decals: + 353: -5,23 + 354: -4,23 + 355: -3,23 + - node: + color: '#571212FF' + id: Delivery + decals: + 356: -4,26 + 357: 2,26 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 204: -1,-12 + 205: 0,-12 + 253: -6,-18 + 321: 5,-10 + 369: 6,-6 + 370: 7,-24 + 371: -8,-14 + 372: 0,20 + 373: -5,27 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 236: 9,-23 + 237: -6,-21 + 238: -6,-20 + 239: -6,-16 + 240: -6,-15 + 264: -1,13 + 265: -1,17 + 266: -1,9 + 316: 5,12 + 317: 5,13 + 318: 5,14 + 319: 5,10 + 320: 5,16 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 41: 6,5 + 45: 6,-11 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 36: 5,5 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 271: 0,9 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 35: 5,-1 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 43: 6,4 + 219: 7,-18 + 250: -7,-22 + 251: -7,-17 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 215: 7,-23 + 226: 2,-18 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 217: 3,-18 + 218: 7,-16 + 248: -7,-14 + 249: -7,-19 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 216: 7,-18 + 225: 2,-15 + 235: 6,-23 + 379: -9,-19 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 374: -10,-21 + 375: -9,-21 + 376: -10,-20 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 44: 6,-12 + 46: 6,-13 + 222: 7,-17 + 227: 3,-15 + 228: 3,-16 + 229: 3,-17 + 230: 3,-18 + 243: -7,-21 + 244: -7,-20 + 245: -7,-16 + 246: -7,-15 + 254: 0,11 + 255: 0,12 + 256: 0,13 + 257: 0,14 + 258: 0,15 + 259: 0,16 + 260: 0,17 + 261: 0,18 + 262: 0,19 + 263: 0,20 + 270: 0,10 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 37: 6,-1 + 39: 7,-1 + 212: 4,-18 + 213: 5,-18 + 214: 6,-18 + 234: 5,-23 + 247: -6,-14 + 252: -6,-19 + 272: -1,9 + 378: -10,-19 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 28: 5,-1 + 29: 5,0 + 30: 5,1 + 31: 5,2 + 32: 5,3 + 33: 5,4 + 34: 5,5 + 208: 7,-22 + 209: 7,-21 + 210: 7,-20 + 211: 7,-19 + 223: 2,-17 + 224: 2,-16 + 231: 6,-26 + 232: 6,-25 + 233: 6,-24 + 377: -9,-20 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 38: 6,5 + 40: 7,5 + 42: 7,4 + 47: 5,-11 + 189: -1,-12 + 190: 0,-12 + 191: 1,-12 + 192: -2,-12 + 198: -2,-12 + 206: 5,-23 + 207: 6,-23 + 220: 8,-18 + 221: 9,-18 + 241: -6,-17 + 242: -6,-22 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 93: -2,5 + 95: -3,7 + 172: -4,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 80: -7,7 + 177: -8,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 86: -2,-2 + 160: -4,-12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 161: -8,-12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 83: -7,4 + 84: -4,-2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 94: -3,5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 105: -4,4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 87: -2,-1 + 88: -2,0 + 89: -2,1 + 90: -2,2 + 91: -2,3 + 92: -2,4 + 99: -3,6 + 165: -4,-11 + 166: -4,-10 + 167: -4,-9 + 168: -4,-8 + 169: -4,-7 + 170: -4,-7 + 171: -4,-6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 96: -4,7 + 97: -5,7 + 98: -6,7 + 173: -5,-5 + 174: -6,-5 + 175: -7,-5 + 176: -8,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 85: -3,-2 + 106: -5,4 + 107: -6,4 + 162: -7,-12 + 163: -6,-12 + 164: -5,-12 + 199: -7,6 + 200: -6,6 + 201: -5,6 + 202: -4,6 + 203: -3,6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 81: -7,6 + 82: -7,5 + 100: -4,-1 + 101: -4,0 + 102: -4,1 + 103: -4,2 + 104: -4,3 + 178: -8,-6 + 179: -8,-7 + 180: -8,-8 + 181: -8,-9 + 182: -8,-10 + 183: -8,-11 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65423 + -1,0: + 0: 32759 + 0,1: + 0: 47359 + 0,2: + 0: 65467 + -1,1: + 0: 45943 + -1,2: + 0: 57480 + 0,3: + 0: 65535 + -1,3: + 0: 57472 + 0,4: + 0: 47935 + 1,0: + 0: 65535 + 1,1: + 0: 12671 + 1: 32768 + 1,2: + 0: 13075 + 1: 2184 + 1,3: + 0: 13107 + 1: 34816 + 1,-1: + 0: 63255 + 1,4: + 0: 13075 + 1: 34952 + 2,0: + 1: 4369 + 2,1: + 1: 4369 + 2,-1: + 1: 4368 + 0,-4: + 0: 64735 + 0,-5: + 0: 64768 + 1: 15 + -1,-4: + 0: 49628 + 1: 12835 + 0,-3: + 0: 65535 + -1,-3: + 0: 56797 + 0,-2: + 0: 65535 + -1,-2: + 0: 56797 + -1,-1: + 0: 30493 + 1,-4: + 0: 57599 + 1,-3: + 0: 3838 + 1,-2: + 0: 30583 + 1,-5: + 0: 65535 + 2,-4: + 1: 32223 + 0: 544 + 2,-2: + 1: 4112 + 2,-5: + 0: 62259 + 1: 2184 + 2,-3: + 1: 38 + 3,-4: + 1: 4369 + 3,-5: + 0: 4096 + 1: 273 + 3,-3: + 1: 17 + -3,0: + 1: 19652 + -3,-1: + 1: 18146 + -2,0: + 0: 61166 + -2,1: + 0: 61166 + -2,2: + 1: 1 + -2,-1: + 0: 60942 + -4,-4: + 1: 34952 + -4,-5: + 0: 32768 + 1: 2184 + -3,-4: + 1: 8465 + 0: 192 + -4,-3: + 1: 136 + -3,-5: + 0: 64716 + 1: 273 + -3,-3: + 1: 25158 + -3,-2: + 1: 8742 + -2,-4: + 0: 10103 + 1: 34952 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-5: + 0: 30583 + -1,-5: + 0: 65280 + 1: 14 + 0,-8: + 1: 64480 + -1,-8: + 1: 64880 + 0,-7: + 1: 65228 + -1,-7: + 1: 63283 + 0,-6: + 1: 62122 + -1,-6: + 1: 62805 + 1,-8: + 1: 65520 + 1,-7: + 1: 4377 + 0: 26144 + 1,-6: + 1: 17 + 0: 65518 + 2,-8: + 1: 29440 + 2,-7: + 1: 17511 + 0: 4368 + 2,-6: + 0: 13105 + 1: 34952 + 3,-6: + 1: 4369 + 3,-7: + 1: 4096 + -4,-7: + 1: 34952 + -3,-7: + 1: 4415 + 0: 17472 + -4,-6: + 1: 34952 + -3,-6: + 1: 4369 + 0: 52292 + -3,-8: + 1: 65152 + -2,-8: + 1: 65520 + -2,-7: + 1: 52429 + 0: 13056 + -2,-6: + 0: 32547 + 1: 12 + -2,5: + 1: 4096 + 0: 49152 + -2,6: + 1: 563 + 0: 35020 + -2,7: + 1: 35008 + -1,5: + 0: 63488 + 1: 32 + -1,6: + 0: 61439 + -1,7: + 1: 4096 + 0: 3278 + -1,8: + 1: 61043 + -1,4: + 0: 57472 + 0,5: + 0: 62347 + 0,6: + 0: 49151 + 0,7: + 0: 275 + 1: 51328 + 0,8: + 1: 13174 + 1,5: + 0: 4403 + 1: 16512 + 1,6: + 0: 17 + 1: 614 + 1,7: + 1: 16 + -1,9: + 1: 36044 + 0,9: + 1: 273 + -1,10: + 1: 2184 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: ActionToggleInternals + entities: + - uid: 984 + components: + - type: Transform + parent: 983 + - type: InstantAction + container: 983 + - uid: 1377 + components: + - type: Transform + parent: 1375 + - type: InstantAction + container: 1375 + - uid: 1380 + components: + - type: Transform + parent: 1378 + - type: InstantAction + container: 1378 + - uid: 1383 + components: + - type: Transform + parent: 1381 + - type: InstantAction + container: 1381 +- proto: ActionToggleJetpack + entities: + - uid: 1376 + components: + - type: Transform + parent: 1375 + - type: InstantAction + container: 1375 + - uid: 1379 + components: + - type: Transform + parent: 1378 + - type: InstantAction + container: 1378 + - uid: 1382 + components: + - type: Transform + parent: 1381 + - type: InstantAction + container: 1381 +- proto: ActionToggleLight + entities: + - uid: 1442 + components: + - type: Transform + parent: 1441 + - type: InstantAction + container: 1441 +- proto: AirCanister + entities: + - uid: 212 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 +- proto: AirlockExternalGlassShuttleSyndicateLocked + entities: + - uid: 123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 313: + - DoorStatus: Close + - DockStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,19.5 + parent: 2 + - type: GridFill + addComponents: [] + - uid: 229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,11.5 + parent: 2 + - type: GridFill + addComponents: [] + - uid: 233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,15.5 + parent: 2 + - type: GridFill + addComponents: [] + - uid: 1128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1102: + - DoorStatus: Close + - DockStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 +- proto: AirlockExternalGlassSyndicateLocked + entities: + - uid: 469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-24.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 468: + - DoorStatus: DoorBolt + - uid: 470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 467: + - DoorStatus: DoorBolt +- proto: AirlockExternalSyndicateLocked + entities: + - uid: 206 + components: + - type: Transform + pos: -0.5,19.5 + parent: 2 + - uid: 313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 123: + - DoorStatus: Close + - uid: 389 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-26.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 470: + - DoorStatus: DoorBolt + - uid: 468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 469: + - DoorStatus: DoorBolt + - uid: 1102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1128: + - DoorStatus: Close +- proto: AirlockHatchSyndicate + entities: + - uid: 1239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 2 +- proto: AirlockSyndicateGlassLocked + entities: + - uid: 38 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 87 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 2 + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 2 + - uid: 225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 + - uid: 258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + - uid: 412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + - uid: 413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 2 + - uid: 530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 2 +- proto: AirlockSyndicateNukeopGlassLocked + entities: + - uid: 22 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,22.5 + parent: 2 + - type: Door + secondsUntilStateChange: -9841.991 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,17.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 451 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-23.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,27.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 2 +- proto: Ashtray + entities: + - uid: 1487 + components: + - type: Transform + pos: -0.5299108,22.757854 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 2 + - uid: 126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 2 + - uid: 127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 2 + - uid: 129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + - uid: 130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 1451 + components: + - type: Transform + pos: -3.5,23.5 + parent: 2 +- proto: BarSign + entities: + - uid: 597 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 +- proto: BaseComputer + entities: + - uid: 1424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,28.5 + parent: 2 +- proto: BlastDoorOpen + entities: + - uid: 5 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 6 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 7 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 8 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - uid: 9 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - uid: 879 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 +- proto: BodyBagFolded + entities: + - uid: 1662 + components: + - type: Transform + pos: -7.4752235,-23.216917 + parent: 2 +- proto: BookHowToSurvive + entities: + - uid: 833 + components: + - type: Transform + pos: -7.4844465,-6.1679235 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 2 +- proto: BorgCharger + entities: + - uid: 1438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,25.5 + parent: 2 +- proto: BoxBeaker + entities: + - uid: 520 + components: + - type: Transform + pos: -0.14031786,-12.513503 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 55 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: -6.5,-29.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 + - uid: 487 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 1143 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 1151 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 2 + - uid: 1156 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 2 + - uid: 1163 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: 3.5,-27.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + pos: -9.5,-25.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: -3.5,27.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + pos: -2.5,27.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + pos: -2.5,26.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + pos: -2.5,24.5 + parent: 2 + - uid: 1567 + components: + - type: Transform + pos: -1.5,24.5 + parent: 2 + - uid: 1568 + components: + - type: Transform + pos: -0.5,24.5 + parent: 2 + - uid: 1569 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + pos: 1.5,24.5 + parent: 2 + - uid: 1571 + components: + - type: Transform + pos: 2.5,24.5 + parent: 2 + - uid: 1572 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 1573 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 1574 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 1575 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 + - uid: 1576 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 1577 + components: + - type: Transform + pos: -0.5,25.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + pos: -0.5,26.5 + parent: 2 + - uid: 1579 + components: + - type: Transform + pos: -0.5,27.5 + parent: 2 + - uid: 1580 + components: + - type: Transform + pos: -0.5,28.5 + parent: 2 + - uid: 1581 + components: + - type: Transform + pos: -0.5,29.5 + parent: 2 + - uid: 1582 + components: + - type: Transform + pos: -0.5,30.5 + parent: 2 + - uid: 1583 + components: + - type: Transform + pos: -3.5,24.5 + parent: 2 + - uid: 1584 + components: + - type: Transform + pos: -4.5,24.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: -5.5,24.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 1587 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + pos: 4.5,21.5 + parent: 2 + - uid: 1589 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 1590 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 1591 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 1614 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 1620 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 1625 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 1626 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 1627 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 1629 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 1630 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 1632 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 1636 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 1637 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 1638 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 1639 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - uid: 1642 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 1643 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 1644 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 1648 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 1651 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 2 + - uid: 1652 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - uid: 1653 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 1654 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 1655 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 1656 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 1786 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 1791 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 1804 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + pos: -4.5,-29.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + pos: -5.5,-29.5 + parent: 2 + - uid: 1808 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 1826 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 2 + - uid: 1827 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 1828 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 1829 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 1830 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 1831 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 1833 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 1834 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 1852 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 2 + - uid: 1854 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 2 +- proto: CableHV + entities: + - uid: 707 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 994 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - uid: 1261 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 1278 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 1593 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 +- proto: CableMV + entities: + - uid: 310 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 1063 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: -9.5,-25.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + pos: 4.5,21.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: 1.5,23.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + pos: 2.5,23.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: 1.5,24.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + pos: -0.5,24.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: -1.5,24.5 + parent: 2 + - uid: 1554 + components: + - type: Transform + pos: -2.5,24.5 + parent: 2 + - uid: 1555 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - uid: 1556 + components: + - type: Transform + pos: -2.5,26.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + pos: -2.5,27.5 + parent: 2 + - uid: 1558 + components: + - type: Transform + pos: -3.5,27.5 + parent: 2 + - uid: 1595 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 1596 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 1597 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 1598 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 1599 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 1601 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 1602 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 +- proto: CableTerminal + entities: + - uid: 1491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,18.5 + parent: 2 +- proto: Carpet + entities: + - uid: 519 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 2 + - uid: 872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 2 + - uid: 878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 2 + - uid: 881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 2 + - uid: 882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 2 + - uid: 883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 2 + - uid: 885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 2 + - uid: 886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 2 + - uid: 912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 2 + - uid: 913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 2 + - uid: 914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 2 + - uid: 915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 2 + - uid: 916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 2 +- proto: CarpetGreen + entities: + - uid: 898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - uid: 899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 + - uid: 900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 2 + - uid: 901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 2 + - uid: 902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 2 + - uid: 903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 72 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 73 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 74 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 76 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 78 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 99 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-27.5 + parent: 2 + - uid: 479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-28.5 + parent: 2 + - uid: 480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-28.5 + parent: 2 + - uid: 481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-28.5 + parent: 2 + - uid: 482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-29.5 + parent: 2 + - uid: 483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-29.5 + parent: 2 + - uid: 484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-29.5 + parent: 2 + - uid: 485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-29.5 + parent: 2 + - uid: 486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-29.5 + parent: 2 + - uid: 488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-28.5 + parent: 2 + - uid: 489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-28.5 + parent: 2 + - uid: 491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-27.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-28.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-29.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,24.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,13.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,12.5 + parent: 2 + - uid: 1542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,24.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,24.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 2 + - uid: 1777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,8.5 + parent: 2 + - uid: 1782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-28.5 + parent: 2 + - uid: 1803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-27.5 + parent: 2 + - uid: 1809 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 2 + - uid: 1810 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 1811 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 +- proto: Chair + entities: + - uid: 906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 2 + - uid: 907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-25.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 1427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,28.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,28.5 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 524 + components: + - type: Transform + pos: 0.5628071,-11.451983 + parent: 2 +- proto: ChairPilotSeat + entities: + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 2 + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 2 + - uid: 136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 2 + - uid: 137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - uid: 139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - uid: 140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2 + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 2 + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 2 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 2 + - uid: 261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - uid: 272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 + - uid: 392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 + - uid: 393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 2 + - uid: 504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - uid: 867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,23.5 + parent: 2 + - uid: 868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,23.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,29.5 + parent: 2 +- proto: ChairWood + entities: + - uid: 548 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: -4.4661827,3.3918004 + parent: 2 + - uid: 568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 2 + - uid: 569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 2 + - uid: 570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 2 + - uid: 870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.6302795,-5.5116735 + parent: 2 + - uid: 874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.682363,-6.2616735 + parent: 2 + - uid: 875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.2969465,-5.49084 + parent: 2 + - uid: 892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.2969465,-6.1887565 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 526 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 498 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 +- proto: ChemMaster + entities: + - uid: 500 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 +- proto: CigarGoldCase + entities: + - uid: 1447 + components: + - type: Transform + pos: -0.11616886,22.59023 + parent: 2 +- proto: CigPackSyndicate + entities: + - uid: 1404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.712275,2.5860498 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: 2.631271,14.566097 + parent: 2 + - uid: 1482 + components: + - type: Transform + pos: 2.475021,14.394222 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: 3.3257031,18.710852 + parent: 2 +- proto: ClearPDA + entities: + - uid: 475 + components: + - type: Transform + pos: -6.4587836,-20.670572 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: -6.6150336,-20.592447 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: -6.2712836,-19.529947 + parent: 2 + - uid: 1097 + components: + - type: Transform + pos: -6.6931586,-19.498697 + parent: 2 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 970 + components: + - type: Transform + pos: 5.897957,-14.501975 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: -2.6121283,23.623762 + parent: 2 + - uid: 1456 + components: + - type: Transform + pos: 6.491707,-14.29582 + parent: 2 + - uid: 1457 + components: + - type: Transform + pos: -2.3933783,23.358137 + parent: 2 +- proto: ClothingEyesGlassesGarOrange + entities: + - uid: 596 + components: + - type: Transform + pos: -4.5850344,6.5351844 + parent: 2 +- proto: ClothingMaskMuzzle + entities: + - uid: 1665 + components: + - type: Transform + pos: -6.535678,-25.531553 + parent: 2 +- proto: ClothingNeckStethoscope + entities: + - uid: 579 + components: + - type: Transform + pos: -1.4945617,-9.416796 + parent: 2 +- proto: ClothingUniformJumpskirtPrisoner + entities: + - uid: 374 + components: + - type: Transform + pos: -5.5525336,-16.529947 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: -5.5525336,-16.201822 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: -5.2869086,-16.092447 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: -5.2869086,-16.373697 + parent: 2 +- proto: ClothingUniformJumpsuitPrisoner + entities: + - uid: 432 + components: + - type: Transform + pos: -5.3337836,-18.186197 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: -5.5525336,-18.326822 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: -5.2712836,-18.467447 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: -5.5681586,-18.717447 + parent: 2 +- proto: ComputerId + entities: + - uid: 1796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 2 +- proto: ComputerIFFSyndicate + entities: + - uid: 1188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,28.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 1420 + components: + - type: Transform + pos: 0.5,30.5 + parent: 2 +- proto: ComputerShuttleSyndie + entities: + - uid: 843 + components: + - type: Transform + pos: -0.5,30.5 + parent: 2 +- proto: CrateEngineeringMiniJetpack + entities: + - uid: 1389 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 +- proto: CrateMedicalSupplies + entities: + - uid: 220 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 +- proto: CrateMedicalSurgery + entities: + - uid: 643 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 +- proto: Crematorium + entities: + - uid: 510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 +- proto: Crowbar + entities: + - uid: 1612 + components: + - type: Transform + pos: -7.3546233,-24.136593 + parent: 2 +- proto: d6Dice + entities: + - uid: 571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5078497,-0.2602135 + parent: 2 + - uid: 572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.330766,-0.43729687 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 499 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 2 + - uid: 586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 2 +- proto: DiceBag + entities: + - uid: 893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.463613,-5.33459 + parent: 2 +- proto: DisposalBend + entities: + - uid: 1425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 2 + - uid: 1687 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 1688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-16.5 + parent: 2 + - uid: 1696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 2 + - uid: 1698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 + - uid: 1714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 2 + - uid: 1737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,24.5 + parent: 2 + - uid: 1758 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,16.5 + parent: 2 + - uid: 1760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 2 +- proto: DisposalJunction + entities: + - uid: 1422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 2 + - uid: 1715 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 27 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 2 + - uid: 200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 2 + - uid: 841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-22.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,24.5 + parent: 2 + - uid: 1677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-21.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 2 + - uid: 1679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-19.5 + parent: 2 + - uid: 1680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-18.5 + parent: 2 + - uid: 1681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 2 + - uid: 1683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 2 + - uid: 1684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 2 + - uid: 1685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 2 + - uid: 1686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 2 + - uid: 1689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-15.5 + parent: 2 + - uid: 1690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-12.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 2 + - uid: 1699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 2 + - uid: 1700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-11.5 + parent: 2 + - uid: 1701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-10.5 + parent: 2 + - uid: 1702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 1705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 2 + - uid: 1709 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 1710 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + - uid: 1718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + - uid: 1719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 + - uid: 1720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 1724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 2 + - uid: 1726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 2 + - uid: 1727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 1735 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 1736 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 2 + - uid: 1739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 2 + - uid: 1741 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 1743 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 1749 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 1755 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 1756 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 + - uid: 1762 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 1763 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 1764 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 1765 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + pos: 4.5,21.5 + parent: 2 + - uid: 1767 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 1768 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 1769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,24.5 + parent: 2 + - uid: 1770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,24.5 + parent: 2 + - uid: 1771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,24.5 + parent: 2 + - uid: 1772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,24.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,24.5 + parent: 2 + - uid: 1774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,24.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,24.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 1213 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-23.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 1181 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 1754 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 2 +- proto: DogBed + entities: + - uid: 1231 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 +- proto: DrinkGlass + entities: + - uid: 605 + components: + - type: Transform + pos: -3.6702015,6.6973825 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: -4.1688585,6.5422773 + parent: 2 +- proto: DrinkGlassCoupeShaped + entities: + - uid: 602 + components: + - type: Transform + pos: -5.0827312,6.587008 + parent: 2 +- proto: DrinkMugBlue + entities: + - uid: 877 + components: + - type: Transform + pos: -7.3281965,-4.67834 + parent: 2 +- proto: DrinkMugDog + entities: + - uid: 888 + components: + - type: Transform + pos: -7.6094465,-4.574173 + parent: 2 +- proto: DrinkMugOne + entities: + - uid: 865 + components: + - type: Transform + pos: -7.276113,-4.36584 + parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 1433 + components: + - type: Transform + pos: -0.246243,25.730341 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: -0.589993,25.667841 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: 0.035007,25.527216 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: -0.324368,25.417841 + parent: 2 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 1443 + components: + - type: Transform + pos: -0.964993,25.777216 + parent: 2 +- proto: FaxMachineSyndie + entities: + - uid: 1086 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 1385 + components: + - type: Transform + pos: 0.8185525,7.6900606 + parent: 2 + - uid: 1464 + components: + - type: Transform + pos: 0.8498025,7.4556856 + parent: 2 +- proto: FloorDrain + entities: + - uid: 601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 613 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FoodBoxPizzaFilled + entities: + - uid: 1173 + components: + - type: Transform + pos: -5.5151863,2.8172534 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: -5.5151863,-0.18274665 + parent: 2 +- proto: FoodBurgerSoy + entities: + - uid: 1478 + components: + - type: Transform + pos: 3.3495817,19.840353 + parent: 2 + - uid: 1479 + components: + - type: Transform + pos: 3.5839567,19.652853 + parent: 2 + - uid: 1480 + components: + - type: Transform + pos: 3.3183317,19.480978 + parent: 2 +- proto: GasAnalyzer + entities: + - uid: 1088 + components: + - type: Transform + pos: 9.684773,-19.669502 + parent: 2 +- proto: GasMinerNitrogen + entities: + - uid: 262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 2 +- proto: GasMinerOxygen + entities: + - uid: 251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-13.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-16.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.78 + inletOneConcentration: 0.22 + enabled: True +- proto: GasPassiveVent + entities: + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 2 + - uid: 265 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 +- proto: GasPipeBend + entities: + - uid: 36 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 2 + - uid: 277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 2 + - uid: 289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 2 + - uid: 291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 2 + - uid: 380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-17.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - uid: 758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + - uid: 759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 2 + - uid: 778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,23.5 + parent: 2 + - uid: 779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,24.5 + parent: 2 +- proto: GasPipeFourway + entities: + - uid: 79 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 +- proto: GasPipeStraight + entities: + - uid: 19 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 68 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 2 + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 2 + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 2 + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 2 + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 2 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 2 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 2 + - uid: 155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,7.5 + parent: 2 + - uid: 186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 2 + - uid: 189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 2 + - uid: 202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 2 + - uid: 227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 2 + - uid: 278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 2 + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 2 + - uid: 280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 2 + - uid: 281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 2 + - uid: 282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 2 + - uid: 283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 2 + - uid: 284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 2 + - uid: 285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 + - uid: 287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 + - uid: 295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - uid: 301 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 307 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 308 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 2 + - uid: 322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-16.5 + parent: 2 + - uid: 324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 2 + - uid: 325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 2 + - uid: 326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-12.5 + parent: 2 + - uid: 327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 2 + - uid: 328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 2 + - uid: 329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 2 + - uid: 330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 2 + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 2 + - uid: 343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 2 + - uid: 344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 2 + - uid: 345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 2 + - uid: 356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 2 + - uid: 359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 2 + - uid: 369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-16.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 701 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: 4.5,21.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,16.5 + parent: 2 + - uid: 733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,18.5 + parent: 2 + - uid: 734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - uid: 735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + - uid: 736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 + - uid: 737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + - uid: 738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + - uid: 739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + - uid: 740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 2 + - uid: 741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2 + - uid: 742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 + - uid: 743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 2 + - uid: 745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,23.5 + parent: 2 + - uid: 746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,24.5 + parent: 2 + - uid: 747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,24.5 + parent: 2 + - uid: 748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,24.5 + parent: 2 + - uid: 749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,24.5 + parent: 2 + - uid: 750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,24.5 + parent: 2 + - uid: 752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,26.5 + parent: 2 + - uid: 753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,25.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 2 + - uid: 763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 2 + - uid: 764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 2 + - uid: 765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 2 + - uid: 766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 2 + - uid: 767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 2 + - uid: 768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,23.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 +- proto: GasPipeTJunction + entities: + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-17.5 + parent: 2 + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 2 + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 2 + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 2 + - uid: 298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 2 + - uid: 306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 2 + - uid: 323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 2 + - uid: 333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 2 + - uid: 705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 2 + - uid: 714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,10.5 + parent: 2 + - uid: 725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,18.5 + parent: 2 + - uid: 744 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,20.5 + parent: 2 +- proto: GasPort + entities: + - uid: 825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 2 +- proto: GasPressurePump + entities: + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 2 + - uid: 286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 2 + - type: GasPressurePump + enabled: True + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-15.5 + parent: 2 + - type: GasPressurePump + enabled: True + - uid: 379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 2 + - type: GasPressurePump + enabled: True + - uid: 668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 2 + - type: GasPressurePump + enabled: True +- proto: GasVentPump + entities: + - uid: 244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 2 + - uid: 296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2 + - uid: 361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 + - uid: 363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 2 + - uid: 730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,16.5 + parent: 2 + - uid: 731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,18.5 + parent: 2 + - uid: 755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 +- proto: GasVentScrubber + entities: + - uid: 15 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 2 + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 2 + - uid: 360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + - uid: 729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 2 + - uid: 756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: -1.5,27.5 + parent: 2 + - uid: 855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,20.5 + parent: 2 +- proto: GeneratorRTG + entities: + - uid: 905 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 951 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 +- proto: GravityGeneratorMini + entities: + - uid: 1781 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 +- proto: Grille + entities: + - uid: 16 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 166 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: -7.5,7.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: -7.5,6.5 + parent: 2 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,12.5 + parent: 2 + - uid: 260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-15.5 + parent: 2 + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-15.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 341 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 342 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 + - uid: 349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,20.5 + parent: 2 + - uid: 397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-25.5 + parent: 2 + - uid: 446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,28.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: -3.5,22.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,13.5 + parent: 2 + - uid: 666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 2 + - uid: 672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,14.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,28.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: 1.5,31.5 + parent: 2 + - uid: 696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,15.5 + parent: 2 + - uid: 780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-21.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 2 + - uid: 926 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - uid: 927 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: -1.5,32.5 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: -1.5,31.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: -2.5,31.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: -2.5,30.5 + parent: 2 + - uid: 932 + components: + - type: Transform + pos: -2.5,29.5 + parent: 2 + - uid: 940 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 2 + - uid: 941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,33.5 + parent: 2 + - uid: 945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,33.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 2 + - uid: 1792 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 1815 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 1816 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 2 + - uid: 1818 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - uid: 1819 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - uid: 1820 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 2 + - uid: 1822 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 + - uid: 1835 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 2 + - uid: 1836 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 + - uid: 1843 + components: + - type: Transform + pos: -4.5,-31.5 + parent: 2 + - uid: 1844 + components: + - type: Transform + pos: -9.5,-30.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + pos: -9.5,-31.5 + parent: 2 + - uid: 1851 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 2 +- proto: GrilleBroken + entities: + - uid: 458 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 1814 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 + - uid: 1832 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 +- proto: GrilleSpawner + entities: + - uid: 1112 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + pos: -9.5,-32.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 2 +- proto: Gyroscope + entities: + - uid: 1116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 2 + - uid: 1824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 2 + - uid: 1825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 2 +- proto: Handcuffs + entities: + - uid: 1119 + components: + - type: Transform + pos: -8.577452,-20.514322 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: -8.686827,-20.342447 + parent: 2 +- proto: HandLabeler + entities: + - uid: 513 + components: + - type: Transform + pos: -0.5637588,-12.215218 + parent: 2 +- proto: HospitalCurtainsOpen + entities: + - uid: 614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - uid: 615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 + - uid: 617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 +- proto: JetpackBlackFilled + entities: + - uid: 1375 + components: + - type: Transform + pos: 3.4154167,21.537567 + parent: 2 + - type: GasTank + toggleActionEntity: 1377 + - type: Jetpack + toggleActionEntity: 1376 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 1376 + - 1377 + - uid: 1378 + components: + - type: Transform + pos: 3.3685417,21.680199 + parent: 2 + - type: GasTank + toggleActionEntity: 1380 + - type: Jetpack + toggleActionEntity: 1379 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 1379 + - 1380 + - uid: 1381 + components: + - type: Transform + pos: 3.5091667,21.414574 + parent: 2 + - type: GasTank + toggleActionEntity: 1383 + - type: Jetpack + toggleActionEntity: 1382 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 1382 + - 1383 +- proto: JetpackMiniFilled + entities: + - uid: 864 + components: + - type: Transform + pos: 5.5873613,14.384791 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: 5.4467363,14.634791 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: 5.3686113,14.775416 + parent: 2 + - uid: 1461 + components: + - type: Transform + pos: 5.3998613,12.792834 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: 5.5404863,12.652209 + parent: 2 + - uid: 1463 + components: + - type: Transform + pos: 5.6342363,12.480334 + parent: 2 +- proto: Jukebox + entities: + - uid: 1436 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 +- proto: Lamp + entities: + - uid: 449 + components: + - type: Transform + pos: -6.9431586,-16.592447 + parent: 2 + - uid: 1441 + components: + - type: Transform + pos: 1.484652,22.67492 + parent: 2 + - type: HandheldLight + toggleActionEntity: 1442 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 1442 + - type: Physics + canCollide: True + - type: ActionsContainer +- proto: Lighter + entities: + - uid: 1484 + components: + - type: Transform + pos: 3.5757031,18.460852 + parent: 2 +- proto: LockerSyndicate + entities: + - uid: 1370 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 +- proto: MedicalBed + entities: + - uid: 527 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 522 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 +- proto: MedkitAdvancedFilled + entities: + - uid: 211 + components: + - type: Transform + pos: 1.4250653,-5.5795445 + parent: 2 +- proto: MedkitBruteFilled + entities: + - uid: 509 + components: + - type: Transform + pos: 5.3802075,-12.597301 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: 5.4221134,-12.349092 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: 1.3940517,-7.0482945 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: 1.6440516,-6.8764195 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 514 + components: + - type: Transform + pos: 5.4221134,-12.474092 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: 5.4427075,-12.534801 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 1.6440516,-7.6576695 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: 1.3784267,-7.8607945 + parent: 2 +- proto: MedkitCombatFilled + entities: + - uid: 235 + components: + - type: Transform + pos: 1.5813153,-5.6889195 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 517 + components: + - type: Transform + pos: 5.6145825,-12.595114 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: 5.6145825,-12.454489 + parent: 2 +- proto: MedkitOxygenFilled + entities: + - uid: 556 + components: + - type: Transform + pos: 1.66314,-6.2045445 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 1.35064,-6.3451695 + parent: 2 +- proto: Morgue + entities: + - uid: 506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 2 + - uid: 508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 986 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 +- proto: NitrousOxideTankFilled + entities: + - uid: 983 + components: + - type: Transform + pos: 9.278523,-19.289736 + parent: 2 + - type: GasTank + toggleActionEntity: 984 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 984 +- proto: OperatingTable + entities: + - uid: 608 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 598 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 +- proto: PaintingAmogusTriptych + entities: + - uid: 1323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 +- proto: Paper + entities: + - uid: 894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.463613,-6.39709 + parent: 2 + - uid: 895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.3594465,-6.27209 + parent: 2 + - uid: 896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5677795,-6.24084 + parent: 2 +- proto: PaperBin10 + entities: + - uid: 1431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,25.5 + parent: 2 +- proto: PartRodMetal + entities: + - uid: 1473 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 +- proto: PianoInstrument + entities: + - uid: 592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 +- proto: PinpointerStation + entities: + - uid: 1393 + components: + - type: Transform + pos: 3.3004484,20.610846 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: 3.5816984,20.329596 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: 3.4723234,20.485846 + parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 375 + components: + - type: Transform + pos: -2.5,32.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 2 + - uid: 448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-17.5 + parent: 2 + - uid: 512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 2 + - uid: 525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 + - uid: 587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 2 + - uid: 595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + - uid: 676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,27.5 + parent: 2 + - uid: 691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,27.5 + parent: 2 + - uid: 948 + components: + - type: Transform + pos: 1.5,32.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-20.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - uid: 1166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-17.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-17.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-17.5 + parent: 2 + - uid: 1216 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 2 + - uid: 1778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-17.5 + parent: 2 + - uid: 1785 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + - uid: 1787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 1790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 2 + - uid: 1793 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 +- proto: PosterContrabandC20r + entities: + - uid: 150 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 +- proto: PosterContrabandCommunistState + entities: + - uid: 149 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 +- proto: PosterContrabandFreeSyndicateEncryptionKey + entities: + - uid: 148 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 +- proto: PosterContrabandInterdyne + entities: + - uid: 1211 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 +- proto: PosterContrabandMoth + entities: + - uid: 153 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 +- proto: PosterContrabandPunchShit + entities: + - uid: 151 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 +- proto: PosterContrabandRebelsUnite + entities: + - uid: 909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 2 +- proto: PosterContrabandRevolt + entities: + - uid: 1562 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 2 +- proto: PosterContrabandSmoke + entities: + - uid: 910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 2 +- proto: PottedPlant10 + entities: + - uid: 1429 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: -5.5,23.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 +- proto: PottedPlant18 + entities: + - uid: 1672 + components: + - type: Transform + pos: -6.648778,7.5870075 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 +- proto: PowerCellSmall + entities: + - uid: 1392 + components: + - type: Transform + pos: 0.3029275,7.5181856 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: 0.3966775,7.7525606 + parent: 2 +- proto: PoweredLEDSmallLight + entities: + - uid: 476 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-14.5 + parent: 2 + - uid: 1673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-25.5 + parent: 2 + - uid: 1784 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 +- proto: PoweredlightLED + entities: + - uid: 94 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 2 + - uid: 133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 2 + - uid: 219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 2 + - uid: 782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 2 + - uid: 783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 2 + - uid: 784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,17.5 + parent: 2 + - uid: 785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 2 + - uid: 786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 2 + - uid: 788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 2 + - uid: 789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 2 + - uid: 790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 2 + - uid: 791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,20.5 + parent: 2 + - uid: 792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,18.5 + parent: 2 + - uid: 793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,16.5 + parent: 2 + - uid: 794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,20.5 + parent: 2 + - uid: 795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,20.5 + parent: 2 + - uid: 796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,21.5 + parent: 2 + - uid: 797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + - uid: 798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,26.5 + parent: 2 + - uid: 799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,23.5 + parent: 2 + - uid: 800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,22.5 + parent: 2 + - uid: 801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,22.5 + parent: 2 + - uid: 802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,23.5 + parent: 2 + - uid: 803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 2 + - uid: 804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 2 + - uid: 805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - uid: 806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 2 + - uid: 807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 + - uid: 808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 2 + - uid: 810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 2 + - uid: 811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 2 + - uid: 812 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 2 + - uid: 815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-22.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,30.5 + parent: 2 + - uid: 939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,30.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-11.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-23.5 + parent: 2 + - uid: 1682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 1331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-25.5 + parent: 2 + - uid: 1668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 2 + - uid: 1669 + components: + - type: Transform + pos: -1.5,11.5 + parent: 2 + - uid: 1670 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + pos: -1.5,19.5 + parent: 2 + - uid: 1674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 2 +- proto: Rack + entities: + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: -6.5,-20.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 860 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,12.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,14.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,23.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: -2.5,23.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 +- proto: Railing + entities: + - uid: 100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 1087 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 2 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-15.5 + parent: 2 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 2 + - uid: 274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-15.5 + parent: 2 + - uid: 338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-25.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: -7.5,7.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: -7.5,6.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,12.5 + parent: 2 + - uid: 631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,13.5 + parent: 2 + - uid: 632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,15.5 + parent: 2 + - uid: 633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,14.5 + parent: 2 + - uid: 640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: -3.5,22.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 654 + components: + - type: Transform + pos: 6.5,20.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: -2.5,31.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: -2.5,30.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: -1.5,31.5 + parent: 2 + - uid: 689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,28.5 + parent: 2 + - uid: 692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,28.5 + parent: 2 + - uid: 831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,33.5 + parent: 2 + - uid: 919 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - uid: 921 + components: + - type: Transform + pos: -1.5,32.5 + parent: 2 + - uid: 922 + components: + - type: Transform + pos: -2.5,29.5 + parent: 2 + - uid: 923 + components: + - type: Transform + pos: 1.5,31.5 + parent: 2 + - uid: 924 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 925 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,33.5 + parent: 2 + - uid: 946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,32.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 +- proto: RollerBedSpawnFolded + entities: + - uid: 492 + components: + - type: Transform + pos: 5.7674675,-3.138586 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: 5.9705925,-3.263586 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: 5.8455925,-3.185461 + parent: 2 +- proto: RubberStampApproved + entities: + - uid: 1780 + components: + - type: Transform + pos: 1.0202303,22.528563 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 1448 + components: + - type: Transform + pos: 1.1296053,22.778563 + parent: 2 +- proto: RubberStampSyndicate + entities: + - uid: 1415 + components: + - type: Transform + pos: -0.6639201,22.539104 + parent: 2 +- proto: SheetGlass + entities: + - uid: 1184 + components: + - type: Transform + pos: 9.534588,-17.452873 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: 9.534588,-17.452873 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + pos: -4.4796834,23.543156 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: 9.422848,-17.551054 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 1471 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 +- proto: SheetSteel + entities: + - uid: 1175 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + pos: -4.477605,23.581188 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: 9.422848,-22.53912 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 +- proto: ShuttersNormalOpen + entities: + - uid: 1485 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 +- proto: ShuttersWindowOpen + entities: + - uid: 1207 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 +- proto: SignalButton + entities: + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5: + - Pressed: Toggle + 6: + - Pressed: Toggle + 7: + - Pressed: Toggle + 8: + - Pressed: Toggle + 9: + - Pressed: Toggle + 10: + - Pressed: Toggle + - uid: 169 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5: + - Pressed: Toggle + 6: + - Pressed: Toggle + 7: + - Pressed: Toggle + 8: + - Pressed: Toggle + 9: + - Pressed: Toggle + 10: + - Pressed: Toggle + - uid: 1729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1207: + - Pressed: Toggle + 1485: + - Pressed: Toggle +- proto: SignDisposalSpace + entities: + - uid: 1663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 2 +- proto: SignInterrogation + entities: + - uid: 1658 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 +- proto: SignSecureMedRed + entities: + - uid: 263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-14.5 + parent: 2 + - uid: 264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-14.5 + parent: 2 +- proto: SignSecureSmallRed + entities: + - uid: 390 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 677 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 + - uid: 956 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 +- proto: SmokingPipe + entities: + - uid: 589 + components: + - type: Transform + pos: -3.0199814,6.601751 + parent: 2 +- proto: SodaDispenser + entities: + - uid: 1667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 +- proto: SpawnMobCat + entities: + - uid: 1409 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 +- proto: SpawnMobMedibot + entities: + - uid: 501 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 +- proto: StasisBed + entities: + - uid: 497 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - uid: 528 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 +- proto: Stool + entities: + - uid: 1444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.468491,-1.2913637 + parent: 2 +- proto: StoolBar + entities: + - uid: 505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 2 + - uid: 555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 2 + - uid: 580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 2 + - uid: 581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 248 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 1169 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 2 +- proto: SuitStorageEVASyndicate + entities: + - uid: 625 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: -0.5,17.5 + parent: 2 +- proto: SyndicateComputerComms + entities: + - uid: 842 + components: + - type: Transform + pos: -1.5,30.5 + parent: 2 +- proto: SyndicateMicrowave + entities: + - uid: 890 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 2 +- proto: SyndicatePersonalAI + entities: + - uid: 1465 + components: + - type: Transform + pos: 3.6069531,19.101477 + parent: 2 +- proto: Table + entities: + - uid: 1659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-25.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 876 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 +- proto: TableCounterWood + entities: + - uid: 523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 2 + - uid: 573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 2 + - uid: 574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 2 + - uid: 575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 2 + - uid: 576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 2 +- proto: TablePlasmaGlass + entities: + - uid: 496 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 4 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 2 + - uid: 493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 2 + - uid: 495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 2 + - uid: 588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 2 + - uid: 593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 2 + - uid: 594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 2 + - uid: 600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 2 + - uid: 604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 2 + - uid: 694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 846 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - uid: 884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 2 + - uid: 889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + - uid: 891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 2 + - uid: 950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 2 + - uid: 964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 2 + - uid: 965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 2 + - uid: 981 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-20.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-20.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,25.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,25.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,25.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 +- proto: TableWood + entities: + - uid: 543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 2 + - uid: 546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 2 + - uid: 547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 2 + - uid: 549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 +- proto: Thruster + entities: + - uid: 373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-30.5 + parent: 2 + - uid: 384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-30.5 + parent: 2 + - uid: 427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-29.5 + parent: 2 + - uid: 441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-30.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,24.5 + parent: 2 + - type: Thruster + enabled: False + - uid: 826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,25.5 + parent: 2 + - uid: 848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-27.5 + parent: 2 + - uid: 861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,25.5 + parent: 2 + - type: Thruster + enabled: False + - uid: 1082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-24.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,24.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-30.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-30.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-30.5 + parent: 2 + - uid: 1215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-26.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-29.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 +- proto: ToolboxElectricalFilled + entities: + - uid: 1084 + components: + - type: Transform + pos: 9.4032345,-19.920208 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: 9.6219845,-20.279583 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 967 + components: + - type: Transform + pos: 2.5273147,-17.20117 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: 2.7773147,-17.48242 + parent: 2 +- proto: ToolboxSyndicateFilled + entities: + - uid: 969 + components: + - type: Transform + pos: 5.5116897,-14.20117 + parent: 2 +- proto: TurboItemRecharger + entities: + - uid: 1395 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 529 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 +- proto: VendingMachineChang + entities: + - uid: 603 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 578 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 1220 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 2 +- proto: VendingMachineCoffee + entities: + - uid: 866 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 +- proto: VendingMachineColaBlack + entities: + - uid: 606 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 +- proto: VendingMachineDiscount + entities: + - uid: 920 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 955 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - type: AccessReader + access: + - - SyndicateAgent +- proto: VendingMachineGames + entities: + - uid: 917 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 585 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - type: AccessReader + access: + - - SyndicateAgent +- proto: VendingMachineSnack + entities: + - uid: 911 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 165 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 +- proto: WallPlastitanium + entities: + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-24.5 + parent: 2 + - uid: 11 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-28.5 + parent: 2 + - uid: 14 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 17 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 + - uid: 20 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-5.5 + parent: 2 + - uid: 21 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 24 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 25 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 28 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 31 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 33 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 35 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-22.5 + parent: 2 + - uid: 40 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 41 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 + - uid: 43 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-27.5 + parent: 2 + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-23.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - uid: 53 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 54 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - uid: 56 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 58 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 59 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 60 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 61 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 62 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 63 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 64 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-24.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 82 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 2 + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 2 + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 2 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 2 + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 2 + - uid: 112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 2 + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 2 + - uid: 114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 2 + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 2 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 2 + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 + - uid: 118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 2 + - uid: 119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 2 + - uid: 120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 2 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,35.5 + parent: 2 + - uid: 160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 2 + - uid: 162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 2 + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-22.5 + parent: 2 + - uid: 170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-26.5 + parent: 2 + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-14.5 + parent: 2 + - uid: 172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-14.5 + parent: 2 + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 2 + - uid: 174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 2 + - uid: 175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-16.5 + parent: 2 + - uid: 176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-17.5 + parent: 2 + - uid: 177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 2 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-22.5 + parent: 2 + - uid: 183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-13.5 + parent: 2 + - uid: 184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-14.5 + parent: 2 + - uid: 185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-11.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: -1.5,16.5 + parent: 2 + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 2 + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-9.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: -1.5,17.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: -1.5,21.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 2 + - uid: 228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-10.5 + parent: 2 + - uid: 234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 2 + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-26.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - uid: 242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 2 + - uid: 245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-19.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 2 + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-27.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - uid: 255 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: -2.5,18.5 + parent: 2 + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-15.5 + parent: 2 + - uid: 271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 2 + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-12.5 + parent: 2 + - uid: 288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 2 + - uid: 309 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - uid: 311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 2 + - uid: 312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 2 + - uid: 315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 2 + - uid: 316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-23.5 + parent: 2 + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-18.5 + parent: 2 + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 2 + - uid: 319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-20.5 + parent: 2 + - uid: 321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-21.5 + parent: 2 + - uid: 334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-22.5 + parent: 2 + - uid: 337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-23.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-24.5 + parent: 2 + - uid: 347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-23.5 + parent: 2 + - uid: 348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-23.5 + parent: 2 + - uid: 350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 2 + - uid: 351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-25.5 + parent: 2 + - uid: 353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 2 + - uid: 354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-24.5 + parent: 2 + - uid: 355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-26.5 + parent: 2 + - uid: 357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-26.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 2 + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-27.5 + parent: 2 + - uid: 364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-20.5 + parent: 2 + - uid: 365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-28.5 + parent: 2 + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-27.5 + parent: 2 + - uid: 367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-22.5 + parent: 2 + - uid: 368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 2 + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-25.5 + parent: 2 + - uid: 372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-19.5 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 381 + components: + - type: Transform + pos: -1.5,18.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 2 + - uid: 394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,27.5 + parent: 2 + - uid: 395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: -7.5,3.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 418 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: -1.5,14.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 423 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 424 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 428 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 + - uid: 430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-26.5 + parent: 2 + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-27.5 + parent: 2 + - uid: 434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-27.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 2 + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-26.5 + parent: 2 + - uid: 443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-20.5 + parent: 2 + - uid: 445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,29.5 + parent: 2 + - uid: 453 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - uid: 455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-19.5 + parent: 2 + - uid: 456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-19.5 + parent: 2 + - uid: 457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-24.5 + parent: 2 + - uid: 459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-27.5 + parent: 2 + - uid: 461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-26.5 + parent: 2 + - uid: 462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-26.5 + parent: 2 + - uid: 463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 2 + - uid: 464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 2 + - uid: 465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-24.5 + parent: 2 + - uid: 466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-25.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: -0.5,34.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: 6.5,16.5 + parent: 2 + - uid: 639 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 655 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,23.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: -5.5,26.5 + parent: 2 + - uid: 679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,27.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,28.5 + parent: 2 + - uid: 685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,28.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: -6.5,24.5 + parent: 2 + - uid: 822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,28.5 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: -5.5,27.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 + - uid: 835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,28.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: 2.5,30.5 + parent: 2 + - uid: 837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,29.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: -3.5,30.5 + parent: 2 + - uid: 847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-27.5 + parent: 2 + - uid: 851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 2 + - uid: 854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: -0.5,31.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: -0.5,32.5 + parent: 2 + - uid: 904 + components: + - type: Transform + pos: -0.5,33.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-14.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-21.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-23.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-19.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-22.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-22.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-23.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-26.5 + parent: 2 + - uid: 1799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-27.5 + parent: 2 + - uid: 1800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-28.5 + parent: 2 + - uid: 1805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-28.5 + parent: 2 + - uid: 1840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,36.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,37.5 + parent: 2 + - uid: 1842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,38.5 + parent: 2 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,29.5 + parent: 2 + - uid: 66 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-30.5 + parent: 2 + - uid: 86 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,18.5 + parent: 2 + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,21.5 + parent: 2 + - uid: 181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 2 + - uid: 246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-29.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - uid: 376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-23.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 426 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 2 + - uid: 429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-28.5 + parent: 2 + - uid: 433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-27.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-29.5 + parent: 2 + - uid: 444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,16.5 + parent: 2 + - uid: 452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-20.5 + parent: 2 + - uid: 454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-19.5 + parent: 2 + - uid: 460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-23.5 + parent: 2 + - uid: 471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-24.5 + parent: 2 + - uid: 472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 2 + - uid: 473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-19.5 + parent: 2 + - uid: 629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 2 + - uid: 663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,23.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: -7.5,23.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: -6.5,26.5 + parent: 2 + - uid: 829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-28.5 + parent: 2 + - uid: 839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,26.5 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: -3.5,31.5 + parent: 2 + - uid: 935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,31.5 + parent: 2 + - uid: 942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,34.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: -1.5,34.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: -5.5,29.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-17.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-29.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-27.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-28.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-28.5 + parent: 2 + - uid: 1779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 2 + - uid: 1801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-30.5 + parent: 2 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 1388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: 2.5,27.5 + parent: 2 +- proto: WarningN2 + entities: + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 2 +- proto: WarningO2 + entities: + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-15.5 + parent: 2 +- proto: WaterCooler + entities: + - uid: 897 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 1439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,25.5 + parent: 2 +- proto: WeaponMakeshiftLaser + entities: + - uid: 830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.546202,-20.295572 + parent: 2 +- proto: WeaponPistolFlintlock + entities: + - uid: 823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.233702,-20.279947 + parent: 2 +- proto: WindoorPlasma + entities: + - uid: 577 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 2 + - uid: 963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 2 +- proto: WindoorSecurePlasma + entities: + - uid: 450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-19.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 619 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-19.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-22.5 + parent: 2 + - uid: 869 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-22.5 + parent: 2 + - uid: 961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 2 +- proto: Wrench + entities: + - uid: 611 + components: + - type: Transform + pos: 6.52859,-3.3414764 + parent: 2 +... diff --git a/Resources/Maps/SP14/Shuttles/titan.yml b/Resources/Maps/SP14/Shuttles/titan.yml new file mode 100644 index 0000000000..8f48aca617 --- /dev/null +++ b/Resources/Maps/SP14/Shuttles/titan.yml @@ -0,0 +1,291 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 87: FloorShuttleBlack + 129: Lattice +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 + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.7495575,2.3447607 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: VwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: RadiationGridResistance + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay +- proto: AirlockGlassShuttleSyndicate + entities: + - uid: 19 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 35 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 11 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 25 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 27 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 28 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 +- proto: CableHV + entities: + - uid: 22 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 24 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 +- proto: CableMV + entities: + - uid: 33 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 +- proto: ChairPilotSeat + entities: + - uid: 20 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 +- proto: ComputerShuttleSyndie + entities: + - uid: 32 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 +- proto: GeneratorWallmountAPU + entities: + - uid: 21 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 +- proto: Grille + entities: + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 +- proto: GrilleDiagonal + entities: + - uid: 8 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 +- proto: Gyroscope + entities: + - uid: 30 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 +- proto: PlastitaniumWindow + entities: + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 2 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 +- proto: PlastitaniumWindowDiagonal + entities: + - uid: 6 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 7 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 +- proto: SubstationWallBasic + entities: + - uid: 26 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 +- proto: Thruster + entities: + - uid: 14 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 2 + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2 + - uid: 17 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 2 +- proto: WallPlastitanium + entities: + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 2 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 +... diff --git a/Resources/Maps/SP14/outpost.yml b/Resources/Maps/SP14/liboutpost.yml similarity index 82% rename from Resources/Maps/SP14/outpost.yml rename to Resources/Maps/SP14/liboutpost.yml index 5a4ea3b074..e9383798c7 100644 --- a/Resources/Maps/SP14/outpost.yml +++ b/Resources/Maps/SP14/liboutpost.yml @@ -28,7 +28,7 @@ entities: name: Map Entity - type: Transform - type: Map - mapPaused: True + mapPaused: False - type: PhysicsMap - type: GridTree - type: MovedGrids @@ -46,7 +46,7 @@ entities: chunks: 0,0: ind: 0,0 - tiles: BwAAAAAABwAAAAAABwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAAADAAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAAADAAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 @@ -54,11 +54,11 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA version: 6 0,-2: ind: 0,-2 @@ -74,7 +74,7 @@ entities: version: 6 1,0: ind: 1,0 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-2: ind: 2,-2 @@ -82,7 +82,7 @@ entities: version: 6 2,-1: ind: 2,-1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAACwAAAAAACAAAAAAACwAAAAAACAAAAAAACwAAAAAACwAAAAAAAAAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACwAAAAAACAAAAAAACwAAAAAACAAAAAAACwAAAAAACwAAAAAAAAAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAAAIAAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAAAIAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACAAAAAAAIAAAAAAAIAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAAAIAAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACAAAAAAAIAAAAAAAIAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAACwAAAAAACAAAAAAACwAAAAAACAAAAAAACwAAAAAACwAAAAAAAAAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACwAAAAAACAAAAAAACwAAAAAACAAAAAAACwAAAAAACwAAAAAAAAAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA version: 6 1,-3: ind: 1,-3 @@ -94,12 +94,20 @@ entities: version: 6 3,-1: ind: 3,-1 - tiles: ggAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ggAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + 2,0: + ind: 2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: AAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -120,11 +128,48 @@ entities: chunkCollection: version: 2 nodes: + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 238: 17,-20 + 244: 26,-4 + 245: 16,-2 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 233: 21,-18 + 243: 27,-7 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 239: 23,-15 + 240: 24,-26 + 241: 13,-9 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 232: 16,-14 + - node: + color: '#FFFFFFFF' + id: Basalt9 + decals: + 234: 20,-6 - node: color: '#FFFFFFFF' id: Bot decals: 204: 33,-22 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 217: 47,-12 + 218: 47,-13 + 219: 47,-14 - node: color: '#1A394AFF' id: BrickLineOverlayN @@ -455,11 +500,91 @@ entities: 145: 37,-24 160: 42,-19 161: 35,-19 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 209: 43,-15 + 210: 45,-15 + 211: 45,-13 + 212: 43,-13 + 213: 44,-12 + 214: 44,-13 + 215: 44,-14 + 216: 44,-15 + - node: + color: '#FFFFFFFF' + id: Grassc1 + decals: + 254: 26,-8 + 255: 19,-20 + 256: 24,-12 + - node: + color: '#FFFFFFFF' + id: Grassc3 + decals: + 250: 17,-8 + - node: + color: '#FFFFFFFF' + id: Grassc4 + decals: + 252: 23,-3 + 253: 14,-3 + - node: + color: '#FFFFFFFF' + id: Rock02 + decals: + 261: 11,-14 + - node: + color: '#FFFFFFFF' + id: Rock03 + decals: + 262: 8,-15 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 229: 29,-3 + 230: 11,-18 + 231: 25,-24 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 228: 20,-7 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 224: 46,-15 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 220: 46,-12 + 221: 46,-13 + 222: 46,-14 - node: color: '#808080FF' id: WarnLineN decals: 196: 38,-21 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 205: 44,-11 + 206: 43,-11 + 207: 42,-11 + 208: 41,-11 + 225: 45,-11 + 226: 46,-11 + 227: 46,-11 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 223: 47,-15 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe @@ -494,7 +619,7 @@ entities: 3,0: 0: 5 3,-1: - 0: 6621 + 0: 4573 0,-3: 0: 61056 0,-2: @@ -538,8 +663,7 @@ entities: 5,-5: 0: 65528 5,-4: - 0: 65531 - 1: 4 + 0: 65535 5,-6: 0: 34816 6,-7: @@ -619,28 +743,28 @@ entities: 10,-3: 0: 61182 9,-1: - 2: 128 + 1: 128 10,-1: - 2: 250 - 3: 4 + 1: 250 + 2: 4 10,-2: 0: 14 - 2: 44544 - 3: 16384 + 1: 44544 + 2: 16384 11,-3: 0: 16383 11,-2: 0: 15 - 2: 28416 - 4: 4096 + 1: 28416 + 3: 4096 11,-1: - 4: 1 - 2: 118 + 3: 1 + 1: 118 12,-2: 0: 1 - 2: 802 + 1: 802 12,-3: - 2: 8192 + 1: 8192 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -657,21 +781,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 immutable: True moles: @@ -720,6 +829,58 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - type: BecomesStation + id: LiberatorOutpost +- proto: AirlockExternalGlassShuttleSyndicateLocked + entities: + - uid: 1629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 2 + - type: GridFill + addComponents: [] + path: /Maps/SP14/Shuttles/liberator.yml + - uid: 1630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,5.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,0.5 + parent: 2 + - type: GridFill + addComponents: [] + path: /Maps/SP14/Shuttles/titan.yml + - uid: 1809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,0.5 + parent: 2 + - type: GridFill + addComponents: [] + path: /Maps/SP14/Shuttles/titan.yml + - uid: 1813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,0.5 + parent: 2 + - type: GridFill + addComponents: [] + path: /Maps/SP14/Shuttles/titan.yml - proto: AirlockExternalGlassSyndicateLocked entities: - uid: 573 @@ -743,6 +904,14 @@ entities: - type: AccessReader access: - - SyndicateAgent + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 305: + - DoorStatus: Close + 302: + - DoorStatus: Close - uid: 15 components: - type: Transform @@ -751,6 +920,14 @@ entities: - type: AccessReader access: - - SyndicateAgent + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 305: + - DoorStatus: Close + 302: + - DoorStatus: Close - proto: AirlockSyndicateGlassLocked entities: - uid: 56 @@ -795,11 +972,27 @@ entities: - type: Transform pos: 7.5,-1.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 15: + - DoorStatus: Close + 14: + - DoorStatus: Close - uid: 305 components: - type: Transform pos: 7.5,-2.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 15: + - DoorStatus: Close + 14: + - DoorStatus: Close - uid: 310 components: - type: Transform @@ -872,11 +1065,6 @@ entities: parent: 2 - proto: AsteroidRock entities: - - uid: 11 - components: - - type: Transform - pos: -0.5,3.5 - parent: 2 - uid: 20 components: - type: Transform @@ -1042,6 +1230,11 @@ entities: - type: Transform pos: 6.5,1.5 parent: 2 + - uid: 111 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 - uid: 117 components: - type: Transform @@ -2073,6 +2266,31 @@ entities: parent: 2 - proto: CableApcExtension entities: + - uid: 11 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 - uid: 664 components: - type: Transform @@ -3068,4351 +3286,5893 @@ entities: - type: Transform pos: 24.5,-26.5 parent: 2 -- proto: CableHV - entities: - - uid: 452 + - uid: 1527 components: - type: Transform - pos: 46.5,-10.5 + pos: 2.5,-0.5 parent: 2 - - uid: 633 + - uid: 1528 components: - type: Transform - pos: 44.5,-11.5 + pos: 2.5,0.5 parent: 2 - - uid: 635 + - uid: 1539 components: - type: Transform - pos: 44.5,-12.5 + pos: 3.5,-2.5 parent: 2 - - uid: 636 + - uid: 1540 components: - type: Transform - pos: 44.5,-13.5 + pos: 2.5,-2.5 parent: 2 - - uid: 637 + - uid: 1541 components: - type: Transform - pos: 44.5,-14.5 + pos: 1.5,-2.5 parent: 2 - - uid: 638 + - uid: 1543 components: - type: Transform - pos: 43.5,-12.5 + pos: 0.5,-1.5 parent: 2 - - uid: 639 + - uid: 1544 components: - type: Transform - pos: 42.5,-12.5 + pos: -0.5,-0.5 parent: 2 - - uid: 640 + - uid: 1545 components: - type: Transform - pos: 42.5,-14.5 + pos: 0.5,-0.5 parent: 2 - - uid: 641 + - uid: 1546 components: - type: Transform - pos: 43.5,-14.5 + pos: 0.5,0.5 parent: 2 - - uid: 642 + - uid: 1547 components: - type: Transform - pos: 46.5,-14.5 + pos: 1.5,-3.5 parent: 2 - - uid: 643 + - uid: 1548 components: - type: Transform - pos: 45.5,-14.5 + pos: 1.5,-4.5 parent: 2 - - uid: 644 + - uid: 1549 components: - type: Transform - pos: 46.5,-12.5 + pos: 1.5,-5.5 parent: 2 - - uid: 645 + - uid: 1582 components: - type: Transform - pos: 45.5,-12.5 + pos: 2.5,4.5 parent: 2 - - uid: 646 + - uid: 1583 components: - type: Transform - pos: 44.5,-10.5 + pos: 2.5,4.5 parent: 2 - - uid: 648 + - uid: 1584 components: - type: Transform - pos: 47.5,-9.5 + pos: 3.5,4.5 parent: 2 - - uid: 649 + - uid: 1585 components: - type: Transform - pos: 47.5,-10.5 + pos: 4.5,4.5 parent: 2 - - uid: 650 + - uid: 1586 components: - type: Transform - pos: 45.5,-10.5 + pos: 5.5,4.5 parent: 2 - - uid: 994 + - uid: 1587 components: - type: Transform - pos: 39.5,-10.5 + pos: 6.5,4.5 parent: 2 - - uid: 997 + - uid: 1588 components: - type: Transform - pos: 38.5,-10.5 + pos: 7.5,4.5 parent: 2 - - uid: 1010 + - uid: 1589 components: - type: Transform - pos: 41.5,-10.5 + pos: 8.5,4.5 parent: 2 - - uid: 1011 + - uid: 1590 components: - type: Transform - pos: 42.5,-10.5 + pos: 9.5,4.5 parent: 2 - - uid: 1012 + - uid: 1591 components: - type: Transform - pos: 43.5,-10.5 + pos: 10.5,4.5 parent: 2 - - uid: 1017 + - uid: 1592 components: - type: Transform - pos: 40.5,-10.5 + pos: 11.5,4.5 parent: 2 - - uid: 1038 + - uid: 1593 components: - type: Transform - pos: 38.5,-11.5 + pos: 12.5,4.5 parent: 2 - - uid: 1039 + - uid: 1594 components: - type: Transform - pos: 38.5,-12.5 + pos: 13.5,4.5 parent: 2 - - uid: 1040 + - uid: 1595 components: - type: Transform - pos: 38.5,-13.5 + pos: 14.5,4.5 parent: 2 - - uid: 1041 + - uid: 1596 components: - type: Transform - pos: 37.5,-13.5 + pos: 15.5,4.5 parent: 2 - - uid: 1042 + - uid: 1597 components: - type: Transform - pos: 36.5,-13.5 + pos: 16.5,4.5 parent: 2 - - uid: 1043 + - uid: 1598 components: - type: Transform - pos: 35.5,-13.5 + pos: 17.5,4.5 parent: 2 - - uid: 1044 + - uid: 1599 components: - type: Transform - pos: 34.5,-13.5 + pos: 18.5,4.5 parent: 2 - - uid: 1045 + - uid: 1600 components: - type: Transform - pos: 33.5,-13.5 + pos: 19.5,4.5 parent: 2 - - uid: 1046 + - uid: 1601 components: - type: Transform - pos: 33.5,-12.5 + pos: 20.5,4.5 parent: 2 - - uid: 1047 + - uid: 1602 components: - type: Transform - pos: 33.5,-11.5 + pos: 21.5,4.5 parent: 2 - - uid: 1048 + - uid: 1603 components: - type: Transform - pos: 33.5,-10.5 + pos: 22.5,4.5 parent: 2 - - uid: 1049 + - uid: 1604 components: - type: Transform - pos: 33.5,-9.5 + pos: 23.5,4.5 parent: 2 - - uid: 1050 + - uid: 1605 components: - type: Transform - pos: 32.5,-9.5 + pos: 24.5,4.5 parent: 2 - - uid: 1051 + - uid: 1606 components: - type: Transform - pos: 31.5,-9.5 + pos: 25.5,4.5 parent: 2 - - uid: 1052 + - uid: 1607 components: - type: Transform - pos: 30.5,-9.5 + pos: 26.5,4.5 parent: 2 - - uid: 1053 + - uid: 1608 components: - type: Transform - pos: 29.5,-9.5 + pos: 27.5,4.5 parent: 2 - - uid: 1054 + - uid: 1768 components: - type: Transform - pos: 28.5,-9.5 + pos: 28.5,4.5 parent: 2 - - uid: 1055 + - uid: 1782 components: - type: Transform - pos: 27.5,-9.5 + pos: 29.5,4.5 parent: 2 - - uid: 1056 + - uid: 1783 components: - type: Transform - pos: 26.5,-9.5 + pos: 30.5,4.5 parent: 2 - - uid: 1057 + - uid: 1784 components: - type: Transform - pos: 25.5,-9.5 + pos: 31.5,4.5 parent: 2 - - uid: 1058 + - uid: 1785 components: - type: Transform - pos: 24.5,-9.5 + pos: 32.5,4.5 parent: 2 - - uid: 1059 + - uid: 1786 components: - type: Transform - pos: 23.5,-9.5 + pos: 33.5,4.5 parent: 2 - - uid: 1060 + - uid: 1787 components: - type: Transform - pos: 22.5,-9.5 + pos: 34.5,4.5 parent: 2 - - uid: 1061 + - uid: 1788 components: - type: Transform - pos: 21.5,-9.5 + pos: 35.5,4.5 parent: 2 - - uid: 1062 + - uid: 1789 components: - type: Transform - pos: 20.5,-9.5 + pos: 36.5,4.5 parent: 2 - - uid: 1063 + - uid: 1790 components: - type: Transform - pos: 19.5,-9.5 + pos: 37.5,4.5 parent: 2 - - uid: 1064 + - uid: 1791 components: - type: Transform - pos: 18.5,-9.5 + pos: 38.5,4.5 parent: 2 - - uid: 1065 + - uid: 1792 components: - type: Transform - pos: 17.5,-9.5 + pos: 38.5,3.5 parent: 2 - - uid: 1066 + - uid: 1793 components: - type: Transform - pos: 16.5,-9.5 + pos: 38.5,2.5 parent: 2 - - uid: 1067 + - uid: 1794 components: - type: Transform - pos: 15.5,-9.5 + pos: 38.5,1.5 parent: 2 - - uid: 1068 + - uid: 1795 components: - type: Transform - pos: 14.5,-9.5 + pos: 38.5,0.5 parent: 2 - - uid: 1069 + - uid: 1796 components: - type: Transform - pos: 13.5,-9.5 + pos: 38.5,-0.5 parent: 2 - - uid: 1070 + - uid: 1797 components: - type: Transform - pos: 13.5,-10.5 + pos: 39.5,-0.5 parent: 2 - - uid: 1071 + - uid: 1798 components: - type: Transform - pos: 13.5,-11.5 + pos: 40.5,-0.5 parent: 2 - - uid: 1072 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 2 - - uid: 1073 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 2 - - uid: 1074 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 2 - - uid: 1075 + - uid: 1799 components: - type: Transform - pos: 12.5,-14.5 + pos: 41.5,-0.5 parent: 2 - - uid: 1076 + - uid: 1800 components: - type: Transform - pos: 11.5,-14.5 + pos: 42.5,-0.5 parent: 2 - - uid: 1077 + - uid: 1801 components: - type: Transform - pos: 10.5,-14.5 + pos: 43.5,-0.5 parent: 2 - - uid: 1078 + - uid: 1802 components: - type: Transform - pos: 10.5,-13.5 + pos: 44.5,-0.5 parent: 2 - - uid: 1079 + - uid: 1803 components: - type: Transform - pos: 10.5,-12.5 + pos: 45.5,-0.5 parent: 2 - - uid: 1080 + - uid: 1804 components: - type: Transform - pos: 10.5,-11.5 + pos: 46.5,-0.5 parent: 2 - - uid: 1381 + - uid: 1805 components: - type: Transform - pos: 10.5,-10.5 + pos: 47.5,-0.5 parent: 2 - - uid: 1382 + - uid: 1827 components: - type: Transform - pos: 10.5,-8.5 + pos: 45.5,-9.5 parent: 2 - - uid: 1383 + - uid: 1828 components: - type: Transform - pos: 10.5,-7.5 + pos: 45.5,-8.5 parent: 2 - - uid: 1384 + - uid: 1829 components: - type: Transform - pos: 10.5,-9.5 + pos: 45.5,-7.5 parent: 2 - - uid: 1385 + - uid: 1830 components: - type: Transform - pos: 10.5,-6.5 + pos: 46.5,-7.5 parent: 2 - - uid: 1386 + - uid: 1831 components: - type: Transform - pos: 10.5,-5.5 + pos: 47.5,-7.5 parent: 2 - - uid: 1387 + - uid: 1832 components: - type: Transform - pos: 10.5,-4.5 + pos: 48.5,-7.5 parent: 2 - - uid: 1388 +- proto: CableHV + entities: + - uid: 452 components: - type: Transform - pos: 10.5,-3.5 + pos: 46.5,-10.5 parent: 2 - - uid: 1389 + - uid: 633 components: - type: Transform - pos: 10.5,-2.5 + pos: 44.5,-11.5 parent: 2 - - uid: 1390 + - uid: 635 components: - type: Transform - pos: 9.5,-2.5 + pos: 44.5,-12.5 parent: 2 - - uid: 1391 + - uid: 636 components: - type: Transform - pos: 8.5,-2.5 + pos: 44.5,-13.5 parent: 2 - - uid: 1392 + - uid: 637 components: - type: Transform - pos: 7.5,-2.5 + pos: 44.5,-14.5 parent: 2 - - uid: 1393 + - uid: 638 components: - type: Transform - pos: 6.5,-2.5 + pos: 43.5,-12.5 parent: 2 - - uid: 1394 + - uid: 641 components: - type: Transform - pos: 5.5,-2.5 + pos: 43.5,-14.5 parent: 2 - - uid: 1395 + - uid: 643 components: - type: Transform - pos: 6.5,-3.5 + pos: 45.5,-14.5 parent: 2 -- proto: CableMV - entities: - - uid: 561 + - uid: 645 components: - type: Transform - pos: 39.5,-10.5 + pos: 45.5,-12.5 parent: 2 - - uid: 634 + - uid: 646 components: - type: Transform - pos: 42.5,-11.5 + pos: 44.5,-10.5 parent: 2 - - uid: 647 + - uid: 648 components: - type: Transform pos: 47.5,-9.5 parent: 2 - - uid: 651 + - uid: 649 components: - type: Transform - pos: 44.5,-10.5 + pos: 47.5,-10.5 parent: 2 - - uid: 652 + - uid: 650 components: - type: Transform pos: 45.5,-10.5 parent: 2 - - uid: 653 + - uid: 994 components: - type: Transform - pos: 42.5,-12.5 + pos: 39.5,-10.5 parent: 2 - - uid: 654 + - uid: 997 components: - type: Transform - pos: 47.5,-10.5 + pos: 38.5,-10.5 parent: 2 - - uid: 655 + - uid: 1010 components: - type: Transform - pos: 43.5,-10.5 + pos: 41.5,-10.5 parent: 2 - - uid: 656 + - uid: 1011 components: - type: Transform pos: 42.5,-10.5 parent: 2 - - uid: 659 - components: - - type: Transform - pos: 40.5,-10.5 - parent: 2 - - uid: 660 - components: - - type: Transform - pos: 46.5,-10.5 - parent: 2 - - uid: 662 - components: - - type: Transform - pos: 41.5,-12.5 - parent: 2 - - uid: 663 + - uid: 1012 components: - type: Transform - pos: 40.5,-12.5 + pos: 43.5,-10.5 parent: 2 - - uid: 694 + - uid: 1017 components: - type: Transform - pos: 38.5,-10.5 + pos: 40.5,-10.5 parent: 2 - - uid: 695 + - uid: 1038 components: - type: Transform pos: 38.5,-11.5 parent: 2 - - uid: 696 + - uid: 1039 components: - type: Transform pos: 38.5,-12.5 parent: 2 - - uid: 697 + - uid: 1040 components: - type: Transform pos: 38.5,-13.5 parent: 2 - - uid: 698 + - uid: 1041 components: - type: Transform pos: 37.5,-13.5 parent: 2 - - uid: 699 + - uid: 1042 components: - type: Transform pos: 36.5,-13.5 parent: 2 - - uid: 700 + - uid: 1043 components: - type: Transform pos: 35.5,-13.5 parent: 2 - - uid: 701 + - uid: 1044 components: - type: Transform pos: 34.5,-13.5 parent: 2 - - uid: 702 + - uid: 1045 components: - type: Transform pos: 33.5,-13.5 parent: 2 - - uid: 703 + - uid: 1046 components: - type: Transform - pos: 32.5,-13.5 + pos: 33.5,-12.5 parent: 2 - - uid: 705 + - uid: 1047 components: - type: Transform - pos: 31.5,-13.5 + pos: 33.5,-11.5 parent: 2 - - uid: 706 + - uid: 1048 components: - type: Transform - pos: 30.5,-13.5 + pos: 33.5,-10.5 parent: 2 - - uid: 707 + - uid: 1049 components: - type: Transform - pos: 29.5,-13.5 + pos: 33.5,-9.5 parent: 2 - - uid: 708 + - uid: 1050 components: - type: Transform - pos: 28.5,-13.5 + pos: 32.5,-9.5 parent: 2 - - uid: 709 + - uid: 1051 components: - type: Transform - pos: 27.5,-13.5 + pos: 31.5,-9.5 parent: 2 - - uid: 710 + - uid: 1052 components: - type: Transform - pos: 27.5,-12.5 + pos: 30.5,-9.5 parent: 2 - - uid: 711 + - uid: 1053 components: - type: Transform - pos: 27.5,-11.5 + pos: 29.5,-9.5 parent: 2 - - uid: 782 + - uid: 1054 components: - type: Transform - pos: 41.5,-10.5 + pos: 28.5,-9.5 parent: 2 - - uid: 1398 + - uid: 1055 components: - type: Transform - pos: 6.5,-3.5 + pos: 27.5,-9.5 parent: 2 - - uid: 1399 + - uid: 1056 components: - type: Transform - pos: 6.5,-2.5 + pos: 26.5,-9.5 parent: 2 - - uid: 1400 + - uid: 1057 components: - type: Transform - pos: 7.5,-2.5 + pos: 25.5,-9.5 parent: 2 - - uid: 1401 + - uid: 1058 components: - type: Transform - pos: 8.5,-2.5 + pos: 24.5,-9.5 parent: 2 - - uid: 1402 + - uid: 1059 components: - type: Transform - pos: 9.5,-2.5 + pos: 23.5,-9.5 parent: 2 - - uid: 1403 + - uid: 1060 components: - type: Transform - pos: 10.5,-2.5 + pos: 22.5,-9.5 parent: 2 - - uid: 1404 + - uid: 1061 components: - type: Transform - pos: 10.5,-3.5 + pos: 21.5,-9.5 parent: 2 - - uid: 1405 + - uid: 1062 components: - type: Transform - pos: 10.5,-4.5 + pos: 20.5,-9.5 parent: 2 - - uid: 1406 + - uid: 1063 components: - type: Transform - pos: 11.5,-4.5 + pos: 19.5,-9.5 parent: 2 - - uid: 1407 + - uid: 1064 components: - type: Transform - pos: 11.5,-5.5 + pos: 18.5,-9.5 parent: 2 -- proto: Carpet - entities: - - uid: 1278 + - uid: 1065 components: - type: Transform - pos: 21.5,-15.5 + pos: 17.5,-9.5 parent: 2 - - uid: 1279 + - uid: 1066 components: - type: Transform - pos: 21.5,-14.5 + pos: 16.5,-9.5 parent: 2 - - uid: 1280 + - uid: 1067 components: - type: Transform - pos: 19.5,-15.5 + pos: 15.5,-9.5 parent: 2 - - uid: 1281 + - uid: 1068 components: - type: Transform - pos: 20.5,-14.5 + pos: 14.5,-9.5 parent: 2 - - uid: 1282 + - uid: 1069 components: - type: Transform - pos: 19.5,-14.5 + pos: 13.5,-9.5 parent: 2 - - uid: 1284 + - uid: 1070 components: - type: Transform - pos: 20.5,-15.5 + pos: 13.5,-10.5 parent: 2 -- proto: Catwalk - entities: - - uid: 64 + - uid: 1071 components: - type: Transform - pos: 13.5,-10.5 + pos: 13.5,-11.5 parent: 2 - - uid: 65 + - uid: 1072 components: - type: Transform - pos: 13.5,-9.5 + pos: 13.5,-12.5 parent: 2 - - uid: 66 + - uid: 1073 components: - type: Transform - pos: 14.5,-11.5 + pos: 13.5,-13.5 parent: 2 - - uid: 73 + - uid: 1074 components: - type: Transform - pos: 14.5,-9.5 + pos: 13.5,-14.5 parent: 2 - - uid: 74 + - uid: 1075 components: - type: Transform pos: 12.5,-14.5 parent: 2 - - uid: 75 + - uid: 1076 components: - type: Transform - pos: 14.5,-12.5 + pos: 11.5,-14.5 parent: 2 - - uid: 76 + - uid: 1077 components: - type: Transform - pos: 14.5,-13.5 + pos: 10.5,-14.5 parent: 2 - - uid: 77 + - uid: 1078 components: - type: Transform - pos: 14.5,-14.5 + pos: 10.5,-13.5 parent: 2 - - uid: 78 + - uid: 1079 components: - type: Transform - pos: 14.5,-15.5 + pos: 10.5,-12.5 parent: 2 - - uid: 79 + - uid: 1080 components: - type: Transform - pos: 13.5,-12.5 + pos: 10.5,-11.5 parent: 2 - - uid: 80 + - uid: 1381 components: - type: Transform - pos: 13.5,-11.5 + pos: 10.5,-10.5 parent: 2 - - uid: 81 + - uid: 1382 components: - type: Transform - pos: 13.5,-15.5 + pos: 10.5,-8.5 parent: 2 - - uid: 82 + - uid: 1383 components: - type: Transform - pos: 13.5,-13.5 + pos: 10.5,-7.5 parent: 2 - - uid: 85 + - uid: 1384 components: - type: Transform - pos: 16.5,-9.5 + pos: 10.5,-9.5 parent: 2 - - uid: 156 + - uid: 1385 components: - type: Transform - pos: 17.5,-10.5 + pos: 10.5,-6.5 parent: 2 - - uid: 160 + - uid: 1386 components: - type: Transform - pos: 17.5,-9.5 + pos: 10.5,-5.5 parent: 2 - - uid: 163 + - uid: 1387 components: - type: Transform - pos: 14.5,-10.5 + pos: 10.5,-4.5 parent: 2 - - uid: 164 + - uid: 1388 components: - type: Transform - pos: 16.5,-10.5 + pos: 10.5,-3.5 parent: 2 - - uid: 167 + - uid: 1389 components: - type: Transform - pos: 15.5,-10.5 + pos: 10.5,-2.5 parent: 2 - - uid: 168 + - uid: 1390 components: - type: Transform - pos: 15.5,-9.5 + pos: 9.5,-2.5 parent: 2 - - uid: 370 + - uid: 1391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-23.5 + pos: 8.5,-2.5 parent: 2 - - uid: 371 + - uid: 1392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-24.5 + pos: 7.5,-2.5 parent: 2 - - uid: 372 + - uid: 1393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-24.5 + pos: 6.5,-2.5 parent: 2 - - uid: 373 + - uid: 1394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-23.5 + pos: 5.5,-2.5 parent: 2 - - uid: 374 + - uid: 1395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-22.5 + pos: 6.5,-3.5 parent: 2 - - uid: 375 +- proto: CableMV + entities: + - uid: 561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-22.5 + pos: 39.5,-10.5 parent: 2 - - uid: 376 + - uid: 634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-22.5 + pos: 42.5,-11.5 parent: 2 - - uid: 377 + - uid: 647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-23.5 + pos: 47.5,-9.5 parent: 2 - - uid: 378 + - uid: 651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-24.5 + pos: 44.5,-10.5 parent: 2 - - uid: 612 + - uid: 652 components: - type: Transform - pos: 49.5,-7.5 + pos: 45.5,-10.5 parent: 2 - - uid: 613 + - uid: 653 components: - type: Transform - pos: 49.5,-6.5 + pos: 42.5,-12.5 parent: 2 - - uid: 614 + - uid: 654 components: - type: Transform - pos: 49.5,-5.5 + pos: 47.5,-10.5 parent: 2 - - uid: 615 + - uid: 655 components: - type: Transform - pos: 48.5,-5.5 + pos: 43.5,-10.5 parent: 2 - - uid: 616 + - uid: 656 components: - type: Transform - pos: 47.5,-5.5 + pos: 42.5,-10.5 parent: 2 - - uid: 993 + - uid: 659 components: - type: Transform - pos: 18.5,-9.5 + pos: 40.5,-10.5 parent: 2 - - uid: 996 + - uid: 660 components: - type: Transform - pos: 18.5,-10.5 + pos: 46.5,-10.5 parent: 2 - - uid: 1005 + - uid: 662 components: - type: Transform - pos: 26.5,-10.5 + pos: 41.5,-12.5 parent: 2 - - uid: 1006 + - uid: 663 components: - type: Transform - pos: 26.5,-9.5 + pos: 40.5,-12.5 parent: 2 - - uid: 1007 + - uid: 694 components: - type: Transform - pos: 25.5,-10.5 + pos: 38.5,-10.5 parent: 2 - - uid: 1008 + - uid: 695 components: - type: Transform - pos: 25.5,-9.5 + pos: 38.5,-11.5 parent: 2 - - uid: 1013 + - uid: 696 components: - type: Transform - pos: 9.5,-13.5 + pos: 38.5,-12.5 parent: 2 - - uid: 1014 + - uid: 697 components: - type: Transform - pos: 10.5,-13.5 + pos: 38.5,-13.5 parent: 2 - - uid: 1015 + - uid: 698 components: - type: Transform - pos: 9.5,-14.5 + pos: 37.5,-13.5 parent: 2 - - uid: 1018 + - uid: 699 components: - type: Transform - pos: 9.5,-15.5 + pos: 36.5,-13.5 parent: 2 - - uid: 1019 + - uid: 700 components: - type: Transform - pos: 10.5,-14.5 + pos: 35.5,-13.5 parent: 2 - - uid: 1020 + - uid: 701 components: - type: Transform - pos: 10.5,-15.5 + pos: 34.5,-13.5 parent: 2 - - uid: 1021 + - uid: 702 components: - type: Transform - pos: 11.5,-14.5 + pos: 33.5,-13.5 parent: 2 - - uid: 1022 + - uid: 703 components: - type: Transform - pos: 11.5,-15.5 + pos: 32.5,-13.5 parent: 2 - - uid: 1026 + - uid: 705 components: - type: Transform - pos: 23.5,-10.5 + pos: 31.5,-13.5 parent: 2 - - uid: 1027 + - uid: 706 components: - type: Transform - pos: 24.5,-10.5 + pos: 30.5,-13.5 parent: 2 - - uid: 1028 + - uid: 707 components: - type: Transform - pos: 24.5,-9.5 + pos: 29.5,-13.5 parent: 2 - - uid: 1029 + - uid: 708 components: - type: Transform - pos: 23.5,-9.5 + pos: 28.5,-13.5 parent: 2 - - uid: 1030 + - uid: 709 components: - type: Transform - pos: 22.5,-10.5 + pos: 27.5,-13.5 parent: 2 - - uid: 1031 + - uid: 710 components: - type: Transform - pos: 19.5,-9.5 + pos: 27.5,-12.5 parent: 2 - - uid: 1032 + - uid: 711 components: - type: Transform - pos: 21.5,-9.5 + pos: 27.5,-11.5 parent: 2 - - uid: 1033 + - uid: 782 components: - type: Transform - pos: 20.5,-10.5 + pos: 41.5,-10.5 parent: 2 - - uid: 1034 + - uid: 1398 components: - type: Transform - pos: 20.5,-9.5 + pos: 6.5,-3.5 parent: 2 - - uid: 1035 + - uid: 1399 components: - type: Transform - pos: 21.5,-10.5 + pos: 6.5,-2.5 parent: 2 - - uid: 1036 + - uid: 1400 components: - type: Transform - pos: 22.5,-9.5 + pos: 7.5,-2.5 parent: 2 - - uid: 1037 + - uid: 1401 components: - type: Transform - pos: 19.5,-10.5 + pos: 8.5,-2.5 parent: 2 - - uid: 1153 + - uid: 1402 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-14.5 + pos: 9.5,-2.5 parent: 2 - - uid: 1154 + - uid: 1403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-15.5 + pos: 10.5,-2.5 parent: 2 -- proto: ChairOfficeDark - entities: - - uid: 507 + - uid: 1404 components: - type: Transform - pos: 38.426044,-23.429129 + pos: 10.5,-3.5 parent: 2 - - uid: 508 + - uid: 1405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.71917,-22.1811 + pos: 10.5,-4.5 parent: 2 -- proto: ChairWood - entities: - - uid: 188 + - uid: 1406 components: - type: Transform - pos: 30.454718,-13.58216 + pos: 11.5,-4.5 parent: 2 - - uid: 199 + - uid: 1407 components: - type: Transform - pos: 29.485968,-13.535285 + pos: 11.5,-5.5 parent: 2 - - uid: 280 +- proto: Carpet + entities: + - uid: 1278 components: - type: Transform - pos: 28.517218,-13.55091 + pos: 21.5,-15.5 parent: 2 - - uid: 283 + - uid: 1279 components: - type: Transform - pos: 27.517218,-13.55091 + pos: 21.5,-14.5 parent: 2 - - uid: 286 + - uid: 1280 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.470343,-16.42591 + pos: 19.5,-15.5 parent: 2 - - uid: 287 + - uid: 1281 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.485968,-16.39466 + pos: 20.5,-14.5 parent: 2 - - uid: 288 + - uid: 1282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.485968,-16.410286 + pos: 19.5,-14.5 parent: 2 - - uid: 289 + - uid: 1284 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.517218,-16.410286 + pos: 20.5,-15.5 parent: 2 - - uid: 290 +- proto: Catwalk + entities: + - uid: 64 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.57972,-14.89466 + pos: 13.5,-10.5 parent: 2 -- proto: ChemDispenser - entities: - - uid: 492 + - uid: 65 components: - type: Transform - pos: 40.5,-21.5 + pos: 13.5,-9.5 parent: 2 -- proto: ChemicalSynthesisKit - entities: - - uid: 504 + - uid: 66 components: - type: Transform - pos: 39.907455,-24.258587 + pos: 14.5,-11.5 parent: 2 -- proto: ChemistryHotplate - entities: - - uid: 552 + - uid: 73 components: - type: Transform - pos: 40.5,-24.5 + pos: 14.5,-9.5 parent: 2 -- proto: ChemMaster - entities: - - uid: 490 + - uid: 74 components: - type: Transform - pos: 40.5,-22.5 + pos: 12.5,-14.5 parent: 2 -- proto: CigaretteSyndicate - entities: - - uid: 408 + - uid: 75 components: - type: Transform - pos: 30.220615,-15.354802 + pos: 14.5,-12.5 parent: 2 - - uid: 409 + - uid: 76 components: - type: Transform - pos: 30.36124,-15.151677 + pos: 14.5,-13.5 parent: 2 -- proto: CigPackSyndicate - entities: - - uid: 396 + - uid: 77 components: - type: Transform - pos: 29.98624,-15.120427 + pos: 14.5,-14.5 parent: 2 - - uid: 398 + - uid: 78 components: - type: Transform - pos: 34.033115,-15.323552 + pos: 14.5,-15.5 parent: 2 - - uid: 400 + - uid: 79 components: - type: Transform - pos: 33.95499,-15.448552 + pos: 13.5,-12.5 parent: 2 - - uid: 1177 + - uid: 80 components: - type: Transform - pos: 24.618813,-4.9789915 + pos: 13.5,-11.5 parent: 2 -- proto: ClothingBackpackDuffelSyndicateCostumeCentcom - entities: - - uid: 1169 + - uid: 81 components: - type: Transform - pos: 24.59482,-25.402824 + pos: 13.5,-15.5 parent: 2 -- proto: ClothingBackpackDuffelSyndicateFilledMedical - entities: - - uid: 536 + - uid: 82 components: - type: Transform - pos: 35.528732,-20.289867 + pos: 13.5,-13.5 parent: 2 -- proto: ClothingBeltMedicalFilled - entities: - - uid: 540 + - uid: 85 components: - type: Transform - pos: 40.600166,-20.074007 + pos: 16.5,-9.5 parent: 2 - - uid: 541 + - uid: 156 components: - type: Transform - pos: 40.52204,-20.308382 + pos: 17.5,-10.5 parent: 2 -- proto: CrateFreezer - entities: - - uid: 1288 + - uid: 160 components: - type: Transform - pos: 22.5,-15.5 + pos: 17.5,-9.5 parent: 2 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True -- proto: CrateMedicalSupplies - entities: - - uid: 556 + - uid: 163 components: - type: Transform - pos: 43.5,-19.5 + pos: 14.5,-10.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 557 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateVendingMachineRestockMedicalFilled - entities: - - uid: 555 + - uid: 164 components: - type: Transform - pos: 42.5,-19.5 + pos: 16.5,-10.5 parent: 2 -- proto: CryostasisBeaker - entities: - - uid: 515 + - uid: 167 components: - type: Transform - pos: 38.05073,-24.375154 + pos: 15.5,-10.5 parent: 2 -- proto: Dart - entities: - - uid: 1170 + - uid: 168 components: - type: Transform - pos: 24.716452,-5.5295506 + pos: 15.5,-9.5 parent: 2 - - uid: 1171 + - uid: 370 components: - type: Transform - pos: 24.419577,-5.5295506 + rot: -1.5707963267948966 rad + pos: 33.5,-23.5 parent: 2 - - uid: 1172 + - uid: 371 components: - type: Transform - pos: 24.263327,-5.4983006 + rot: -1.5707963267948966 rad + pos: 33.5,-24.5 parent: 2 -- proto: DrinkBeerBottleFull - entities: - - uid: 1292 + - uid: 372 components: - type: Transform - pos: 22.30592,-15.34323 + rot: -1.5707963267948966 rad + pos: 34.5,-24.5 parent: 2 - - uid: 1295 + - uid: 373 components: - type: Transform - pos: 22.477795,-15.358855 + rot: -1.5707963267948966 rad + pos: 34.5,-23.5 parent: 2 - - uid: 1296 + - uid: 374 components: - type: Transform - pos: 22.64967,-15.34323 + rot: -1.5707963267948966 rad + pos: 33.5,-22.5 parent: 2 - - uid: 1297 + - uid: 375 components: - type: Transform - pos: 22.571545,-15.34323 + rot: -1.5707963267948966 rad + pos: 34.5,-22.5 parent: 2 - - uid: 1298 + - uid: 376 components: - type: Transform - pos: 22.384045,-15.358855 + rot: -1.5707963267948966 rad + pos: 35.5,-22.5 parent: 2 - - uid: 1299 + - uid: 377 components: - type: Transform - pos: 19.477795,-15.46823 + rot: -1.5707963267948966 rad + pos: 35.5,-23.5 parent: 2 -- proto: DrinkBottleBeer - entities: - - uid: 1291 + - uid: 378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.21217,-16.233856 + rot: -1.5707963267948966 rad + pos: 35.5,-24.5 parent: 2 - - uid: 1300 + - uid: 612 components: - type: Transform - pos: 19.759045,-15.577605 + pos: 49.5,-7.5 parent: 2 - - uid: 1307 + - uid: 613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.55357,-19.735222 + pos: 49.5,-6.5 parent: 2 -- proto: DrinkCanPack - entities: - - uid: 344 + - uid: 614 components: - type: Transform - pos: 26.62158,-15.567358 + pos: 49.5,-5.5 parent: 2 -- proto: DrinkGlass - entities: - - uid: 295 + - uid: 615 components: - type: Transform - pos: 27.7975,-14.494545 + pos: 48.5,-5.5 parent: 2 - - uid: 296 + - uid: 616 components: - type: Transform - pos: 33.375626,-18.76017 + pos: 47.5,-5.5 parent: 2 - - uid: 297 + - uid: 993 components: - type: Transform - pos: 33.469376,-18.69767 + pos: 18.5,-9.5 parent: 2 - - uid: 298 + - uid: 996 components: - type: Transform - pos: 29.34941,-15.368719 + pos: 18.5,-10.5 parent: 2 -- proto: DrinkMugMetal - entities: - - uid: 1301 + - uid: 1005 components: - type: Transform - pos: 20.352795,-15.421355 + pos: 26.5,-10.5 parent: 2 -- proto: DrinkMugOne - entities: - - uid: 328 + - uid: 1006 components: - type: Transform - pos: 30.693357,-14.582983 + pos: 26.5,-9.5 parent: 2 -- proto: DrinkShotGlass - entities: - - uid: 299 + - uid: 1007 components: - type: Transform - pos: 33.71449,-18.29142 + pos: 25.5,-10.5 parent: 2 -- proto: DrinkSodaWaterCan - entities: - - uid: 1293 + - uid: 1008 components: - type: Transform - pos: 21.602795,-15.53073 + pos: 25.5,-9.5 parent: 2 - - uid: 1294 + - uid: 1013 components: - type: Transform - pos: 21.509045,-15.62448 + pos: 9.5,-13.5 parent: 2 -- proto: EmergencyRollerBedSpawnFolded - entities: - - uid: 529 + - uid: 1014 components: - type: Transform - pos: 36.591232,-20.289867 + pos: 10.5,-13.5 parent: 2 - - uid: 531 + - uid: 1015 components: - type: Transform - pos: 36.294357,-20.555492 + pos: 9.5,-14.5 parent: 2 -- proto: Fireplace - entities: - - uid: 571 + - uid: 1018 components: - type: Transform - pos: 31.5,-12.5 + pos: 9.5,-15.5 parent: 2 -- proto: FoodSnackChips - entities: - - uid: 1283 + - uid: 1019 components: - type: Transform - pos: 21.361141,-14.62472 + pos: 10.5,-14.5 parent: 2 - - uid: 1285 + - uid: 1020 components: - type: Transform - pos: 21.220516,-14.78097 + pos: 10.5,-15.5 parent: 2 -- proto: FoodSnackPopcorn - entities: - - uid: 1286 + - uid: 1021 components: - type: Transform - pos: 19.736141,-14.53097 + pos: 11.5,-14.5 parent: 2 -- proto: GasMinerNitrogenStation - entities: - - uid: 622 + - uid: 1022 components: - type: Transform - pos: 44.5,-4.5 + pos: 11.5,-15.5 parent: 2 -- proto: GasMinerOxygenStation - entities: - - uid: 621 + - uid: 1026 components: - type: Transform - pos: 42.5,-4.5 + pos: 23.5,-10.5 parent: 2 -- proto: GasMixer - entities: - - uid: 804 + - uid: 1027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-9.5 + pos: 24.5,-10.5 parent: 2 - - type: GasMixer - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 -- proto: GasPassiveVent - entities: - - uid: 785 + - uid: 1028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-5.5 + pos: 24.5,-9.5 parent: 2 -- proto: GasPipeBend - entities: - - uid: 783 + - uid: 1029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-7.5 + pos: 23.5,-9.5 parent: 2 - - uid: 784 + - uid: 1030 components: - type: Transform - pos: 49.5,-5.5 + pos: 22.5,-10.5 parent: 2 - - uid: 786 + - uid: 1031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-10.5 + pos: 19.5,-9.5 parent: 2 - - uid: 787 + - uid: 1032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-7.5 + pos: 21.5,-9.5 parent: 2 - - uid: 808 + - uid: 1033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-9.5 + pos: 20.5,-10.5 parent: 2 - - uid: 817 + - uid: 1034 components: - type: Transform - pos: 39.5,-6.5 + pos: 20.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 827 + - uid: 1035 components: - type: Transform - pos: 37.5,-5.5 + pos: 21.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 834 + - uid: 1036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-5.5 + pos: 22.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 861 + - uid: 1037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-13.5 + pos: 19.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 862 + - uid: 1153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-14.5 + rot: 3.141592653589793 rad + pos: 13.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 904 + - uid: 1154 components: - type: Transform - pos: 32.5,-10.5 + rot: 3.141592653589793 rad + pos: 12.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 905 + - uid: 1531 components: - type: Transform - pos: 35.5,-9.5 + pos: 2.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 931 + - uid: 1532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-9.5 + pos: 2.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 932 + - uid: 1533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-10.5 + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 934 + - uid: 1534 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-15.5 + pos: 2.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 935 + - uid: 1542 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-14.5 + pos: 2.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 936 + - uid: 1551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-15.5 + pos: 2.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1136 + - uid: 1552 components: - type: Transform - pos: 10.5,-2.5 + pos: 2.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1138 + - uid: 1553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 + pos: 2.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeStraight - entities: - - uid: 84 + - uid: 1554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-9.5 + pos: 2.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 623 + - uid: 1555 components: - type: Transform - pos: 44.5,-4.5 + pos: 3.5,4.5 parent: 2 - - uid: 624 + - uid: 1556 components: - type: Transform - pos: 42.5,-4.5 + pos: 4.5,4.5 parent: 2 - - uid: 625 + - uid: 1558 components: - type: Transform - pos: 42.5,-5.5 + pos: 6.5,4.5 parent: 2 - - uid: 626 + - uid: 1559 components: - type: Transform - pos: 44.5,-5.5 + pos: 7.5,4.5 parent: 2 - - uid: 627 + - uid: 1560 components: - type: Transform - pos: 44.5,-6.5 + pos: 8.5,4.5 parent: 2 - - uid: 628 + - uid: 1561 components: - type: Transform - pos: 42.5,-6.5 + pos: 9.5,4.5 parent: 2 - - uid: 777 + - uid: 1562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-9.5 + pos: 10.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 778 + - uid: 1563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-10.5 + pos: 11.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 780 + - uid: 1564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-9.5 + pos: 12.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 788 + - uid: 1565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-10.5 + pos: 13.5,4.5 parent: 2 - - uid: 789 + - uid: 1566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-10.5 + pos: 14.5,4.5 parent: 2 - - uid: 790 + - uid: 1567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-10.5 + pos: 15.5,4.5 parent: 2 - - uid: 791 + - uid: 1568 components: - type: Transform - pos: 45.5,-9.5 + pos: 16.5,4.5 parent: 2 - - uid: 792 + - uid: 1569 components: - type: Transform - pos: 45.5,-8.5 + pos: 17.5,4.5 parent: 2 - - uid: 793 + - uid: 1570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-7.5 + pos: 18.5,4.5 parent: 2 - - uid: 794 + - uid: 1571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-7.5 + pos: 19.5,4.5 parent: 2 - - uid: 795 + - uid: 1572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-7.5 + pos: 20.5,4.5 parent: 2 - - uid: 796 + - uid: 1573 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-6.5 + pos: 21.5,4.5 parent: 2 - - uid: 797 + - uid: 1574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-5.5 + pos: 22.5,4.5 parent: 2 - - uid: 798 + - uid: 1575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-5.5 + pos: 23.5,4.5 parent: 2 - - uid: 799 + - uid: 1576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-5.5 + pos: 24.5,4.5 parent: 2 - - uid: 800 + - uid: 1577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-5.5 + pos: 25.5,4.5 parent: 2 - - uid: 801 + - uid: 1578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-5.5 + pos: 26.5,4.5 parent: 2 - - uid: 802 + - uid: 1579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-5.5 + pos: 27.5,4.5 parent: 2 - - uid: 803 + - uid: 1580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-5.5 + pos: 28.5,4.5 parent: 2 - - uid: 805 + - uid: 1581 components: - type: Transform rot: 3.141592653589793 rad - pos: 42.5,-8.5 + pos: 26.5,3.5 parent: 2 - - uid: 806 + - uid: 1609 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-8.5 + pos: 24.5,3.5 parent: 2 - - uid: 807 + - uid: 1610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-9.5 + rot: 3.141592653589793 rad + pos: 22.5,3.5 parent: 2 - - uid: 810 + - uid: 1611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-9.5 + rot: 3.141592653589793 rad + pos: 23.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 811 + - uid: 1612 components: - type: Transform - pos: 37.5,-8.5 + rot: 3.141592653589793 rad + pos: 21.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 812 + - uid: 1613 components: - type: Transform - pos: 37.5,-7.5 + rot: 3.141592653589793 rad + pos: 20.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 813 + - uid: 1614 components: - type: Transform - pos: 37.5,-6.5 + rot: 3.141592653589793 rad + pos: 19.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 814 + - uid: 1615 components: - type: Transform - pos: 39.5,-9.5 + rot: 3.141592653589793 rad + pos: 18.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 816 + - uid: 1616 components: - type: Transform - pos: 39.5,-7.5 + rot: 3.141592653589793 rad + pos: 17.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 819 + - uid: 1617 components: - type: Transform - pos: 37.5,-11.5 + rot: 3.141592653589793 rad + pos: 16.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 820 + - uid: 1618 components: - type: Transform - pos: 37.5,-12.5 + rot: 3.141592653589793 rad + pos: 15.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 822 + - uid: 1619 components: - type: Transform - pos: 37.5,-14.5 + rot: 3.141592653589793 rad + pos: 14.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 823 + - uid: 1620 components: - type: Transform - pos: 39.5,-11.5 + rot: 3.141592653589793 rad + pos: 6.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 824 + - uid: 1621 components: - type: Transform - pos: 39.5,-12.5 + rot: 3.141592653589793 rad + pos: 5.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 825 + - uid: 1622 components: - type: Transform - pos: 39.5,-13.5 + rot: 3.141592653589793 rad + pos: 7.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 828 + - uid: 1623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-6.5 + rot: 3.141592653589793 rad + pos: 13.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 829 + - uid: 1625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-6.5 + rot: 3.141592653589793 rad + pos: 27.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 830 + - uid: 1626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-6.5 + pos: 5.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 832 + - uid: 1632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-5.5 + rot: 3.141592653589793 rad + pos: 25.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 833 + - uid: 1633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-5.5 + rot: 3.141592653589793 rad + pos: 28.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 837 + - uid: 1634 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-15.5 + pos: 29.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 838 + - uid: 1635 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-16.5 + pos: 29.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 839 + - uid: 1636 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-17.5 + pos: 30.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 840 + - uid: 1637 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,-15.5 + pos: 30.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 841 + - uid: 1638 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,-16.5 + pos: 31.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 842 + - uid: 1639 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,-17.5 + pos: 31.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 846 + - uid: 1640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-14.5 + rot: 3.141592653589793 rad + pos: 32.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 847 + - uid: 1641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-14.5 + rot: 3.141592653589793 rad + pos: 32.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 848 + - uid: 1642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-14.5 + rot: 3.141592653589793 rad + pos: 33.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 849 + - uid: 1643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-14.5 + rot: 3.141592653589793 rad + pos: 33.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 850 + - uid: 1644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-13.5 + rot: 3.141592653589793 rad + pos: 34.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 853 + - uid: 1645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-13.5 + rot: 3.141592653589793 rad + pos: 34.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 854 + - uid: 1646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-13.5 + rot: 3.141592653589793 rad + pos: 35.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 855 + - uid: 1647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-14.5 + rot: 3.141592653589793 rad + pos: 35.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 858 + - uid: 1648 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,-13.5 + pos: 36.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 863 + - uid: 1649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-14.5 + rot: 3.141592653589793 rad + pos: 36.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 864 + - uid: 1650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-13.5 + rot: 3.141592653589793 rad + pos: 37.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 865 + - uid: 1651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-13.5 + rot: 3.141592653589793 rad + pos: 37.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 866 + - uid: 1652 components: - type: Transform - pos: 29.5,-14.5 + rot: 3.141592653589793 rad + pos: 38.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 867 + - uid: 1653 components: - type: Transform - pos: 29.5,-15.5 + rot: 3.141592653589793 rad + pos: 38.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 868 + - uid: 1654 components: - type: Transform - pos: 29.5,-16.5 + rot: 3.141592653589793 rad + pos: 37.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 869 + - uid: 1655 components: - type: Transform - pos: 29.5,-17.5 + rot: 3.141592653589793 rad + pos: 37.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 870 + - uid: 1656 components: - type: Transform - pos: 29.5,-18.5 + rot: 3.141592653589793 rad + pos: 37.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 871 + - uid: 1657 components: - type: Transform - pos: 29.5,-19.5 + rot: 3.141592653589793 rad + pos: 37.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 872 + - uid: 1658 components: - type: Transform - pos: 29.5,-20.5 + rot: 3.141592653589793 rad + pos: 37.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 873 + - uid: 1659 components: - type: Transform - pos: 29.5,-21.5 + rot: 3.141592653589793 rad + pos: 38.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 874 + - uid: 1660 components: - type: Transform - pos: 30.5,-15.5 + rot: 3.141592653589793 rad + pos: 38.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 875 + - uid: 1661 components: - type: Transform - pos: 30.5,-16.5 + rot: 3.141592653589793 rad + pos: 38.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 876 + - uid: 1662 components: - type: Transform - pos: 30.5,-17.5 + rot: 3.141592653589793 rad + pos: 38.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 877 + - uid: 1663 components: - type: Transform - pos: 30.5,-18.5 + rot: 3.141592653589793 rad + pos: 38.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 878 + - uid: 1664 components: - type: Transform - pos: 30.5,-19.5 + rot: 3.141592653589793 rad + pos: 39.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 879 + - uid: 1665 components: - type: Transform - pos: 30.5,-20.5 + rot: 3.141592653589793 rad + pos: 39.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 880 + - uid: 1666 components: - type: Transform - pos: 30.5,-21.5 + rot: 3.141592653589793 rad + pos: 40.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 883 + - uid: 1668 components: - type: Transform - pos: 29.5,-22.5 + rot: 3.141592653589793 rad + pos: 41.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 884 + - uid: 1669 components: - type: Transform - pos: 30.5,-23.5 + rot: 3.141592653589793 rad + pos: 41.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 885 + - uid: 1670 components: - type: Transform - pos: 30.5,-24.5 + rot: 3.141592653589793 rad + pos: 42.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 886 + - uid: 1671 components: - type: Transform - pos: 30.5,-25.5 + rot: 3.141592653589793 rad + pos: 42.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 887 + - uid: 1672 components: - type: Transform - pos: 30.5,-26.5 + rot: 3.141592653589793 rad + pos: 43.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 888 + - uid: 1673 components: - type: Transform - pos: 30.5,-27.5 + rot: 3.141592653589793 rad + pos: 43.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 889 + - uid: 1674 components: - type: Transform - pos: 29.5,-24.5 + rot: 3.141592653589793 rad + pos: 44.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 890 + - uid: 1675 components: - type: Transform - pos: 29.5,-25.5 + rot: 3.141592653589793 rad + pos: 44.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 891 + - uid: 1676 components: - type: Transform - pos: 29.5,-26.5 + rot: 3.141592653589793 rad + pos: 45.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 892 + - uid: 1677 components: - type: Transform - pos: 29.5,-27.5 + rot: 3.141592653589793 rad + pos: 45.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 893 + - uid: 1678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-23.5 + rot: 3.141592653589793 rad + pos: 46.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 898 + - uid: 1679 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,-13.5 + pos: 46.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 899 + - uid: 1680 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,-12.5 + pos: 47.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 900 + - uid: 1681 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,-11.5 + pos: 47.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 901 + - uid: 1764 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-12.5 + pos: 46.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 902 + - uid: 1767 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-11.5 + pos: 40.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 903 + - uid: 1771 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-10.5 + pos: 46.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 906 + - uid: 1772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 + pos: 49.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 907 + - uid: 1774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-10.5 + pos: 49.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 908 + - uid: 1775 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-10.5 + pos: 48.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 909 + - uid: 1777 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-10.5 + pos: 48.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 910 + - uid: 1807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-10.5 + pos: 50.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 911 + - uid: 1808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-10.5 + pos: 50.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 912 + - uid: 1824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-9.5 + rot: 1.5707963267948966 rad + pos: 46.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 913 + - uid: 1825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-9.5 + rot: 1.5707963267948966 rad + pos: 46.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 914 +- proto: ChairOfficeDark + entities: + - uid: 507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-9.5 + pos: 38.426044,-23.429129 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 915 + - uid: 508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-9.5 + rot: 1.5707963267948966 rad + pos: 39.71917,-22.1811 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 916 +- proto: ChairWood + entities: + - uid: 188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-9.5 + pos: 30.454718,-13.58216 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 917 + - uid: 199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-9.5 + pos: 29.485968,-13.535285 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 918 + - uid: 280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-9.5 + pos: 28.517218,-13.55091 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 919 + - uid: 283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-9.5 + pos: 27.517218,-13.55091 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 921 + - uid: 286 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-9.5 + rot: 3.141592653589793 rad + pos: 27.470343,-16.42591 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 922 + - uid: 287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-9.5 + rot: 3.141592653589793 rad + pos: 28.485968,-16.39466 + parent: 2 + - uid: 288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.485968,-16.410286 + parent: 2 + - uid: 289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.517218,-16.410286 + parent: 2 + - uid: 290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.57972,-14.89466 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 492 + components: + - type: Transform + pos: 40.5,-21.5 + parent: 2 +- proto: ChemicalSynthesisKit + entities: + - uid: 504 + components: + - type: Transform + pos: 39.907455,-24.258587 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 552 + components: + - type: Transform + pos: 40.5,-24.5 + parent: 2 +- proto: ChemMaster + entities: + - uid: 490 + components: + - type: Transform + pos: 40.5,-22.5 + parent: 2 +- proto: CigaretteSyndicate + entities: + - uid: 408 + components: + - type: Transform + pos: 30.220615,-15.354802 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: 30.36124,-15.151677 + parent: 2 +- proto: CigPackSyndicate + entities: + - uid: 396 + components: + - type: Transform + pos: 29.98624,-15.120427 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: 34.033115,-15.323552 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: 33.95499,-15.448552 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: 24.618813,-4.9789915 + parent: 2 +- proto: ClothingBackpackDuffelSyndicateFilledMedical + entities: + - uid: 536 + components: + - type: Transform + pos: 35.528732,-20.289867 + parent: 2 +- proto: ClothingBeltMedicalFilled + entities: + - uid: 540 + components: + - type: Transform + pos: 40.600166,-20.074007 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: 40.52204,-20.308382 + parent: 2 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 1815 + components: + - type: Transform + pos: 47.612225,-14.338102 + parent: 2 + - uid: 1816 + components: + - type: Transform + pos: 47.4091,-14.478727 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-12.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 1288 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateMedicalSupplies + entities: + - uid: 556 + components: + - type: Transform + pos: 43.5,-19.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 557 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateVendingMachineRestockMedicalFilled + entities: + - uid: 555 + components: + - type: Transform + pos: 42.5,-19.5 + parent: 2 +- proto: CryostasisBeaker + entities: + - uid: 515 + components: + - type: Transform + pos: 38.05073,-24.375154 + parent: 2 +- proto: Dart + entities: + - uid: 1170 + components: + - type: Transform + pos: 24.716452,-5.5295506 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: 24.419577,-5.5295506 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: 24.263327,-5.4983006 + parent: 2 +- proto: DrinkBeerBottleFull + entities: + - uid: 1292 + components: + - type: Transform + pos: 22.30592,-15.34323 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: 22.477795,-15.358855 + parent: 2 + - uid: 1296 + components: + - type: Transform + pos: 22.64967,-15.34323 + parent: 2 + - uid: 1297 + components: + - type: Transform + pos: 22.571545,-15.34323 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: 22.384045,-15.358855 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: 19.477795,-15.46823 + parent: 2 +- proto: DrinkBottleBeer + entities: + - uid: 1291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.21217,-16.233856 + parent: 2 + - uid: 1300 + components: + - type: Transform + pos: 19.759045,-15.577605 + parent: 2 + - uid: 1307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.55357,-19.735222 + parent: 2 +- proto: DrinkCanPack + entities: + - uid: 344 + components: + - type: Transform + pos: 26.62158,-15.567358 + parent: 2 +- proto: DrinkGlass + entities: + - uid: 295 + components: + - type: Transform + pos: 27.7975,-14.494545 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: 33.375626,-18.76017 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: 33.469376,-18.69767 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: 29.34941,-15.368719 + parent: 2 +- proto: DrinkMugMetal + entities: + - uid: 1301 + components: + - type: Transform + pos: 20.352795,-15.421355 + parent: 2 +- proto: DrinkMugOne + entities: + - uid: 328 + components: + - type: Transform + pos: 30.693357,-14.582983 + parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 299 + components: + - type: Transform + pos: 33.71449,-18.29142 + parent: 2 +- proto: DrinkSodaWaterCan + entities: + - uid: 1293 + components: + - type: Transform + pos: 21.602795,-15.53073 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: 21.509045,-15.62448 + parent: 2 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 529 + components: + - type: Transform + pos: 36.591232,-20.289867 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: 36.294357,-20.555492 + parent: 2 +- proto: Fireplace + entities: + - uid: 571 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 +- proto: FoodSnackChips + entities: + - uid: 1283 + components: + - type: Transform + pos: 21.361141,-14.62472 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: 21.220516,-14.78097 + parent: 2 +- proto: FoodSnackPopcorn + entities: + - uid: 1286 + components: + - type: Transform + pos: 19.736141,-14.53097 + parent: 2 +- proto: GasAnalyzer + entities: + - uid: 384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5518,-15.476769 + parent: 2 +- proto: GasMinerNitrogenStation + entities: + - uid: 622 + components: + - type: Transform + pos: 44.5,-4.5 + parent: 2 +- proto: GasMinerOxygenStation + entities: + - uid: 621 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-9.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 +- proto: GasPassiveVent + entities: + - uid: 785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-5.5 + parent: 2 +- proto: GasPipeBend + entities: + - uid: 783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-7.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: 49.5,-5.5 + parent: 2 + - uid: 786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-10.5 + parent: 2 + - uid: 787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-7.5 + parent: 2 + - uid: 808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-9.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 827 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 904 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 905 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1136 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 84 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 623 + components: + - type: Transform + pos: 44.5,-4.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 2 + - uid: 777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-10.5 + parent: 2 + - uid: 789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-10.5 + parent: 2 + - uid: 790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-10.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: 45.5,-9.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: 45.5,-8.5 + parent: 2 + - uid: 793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-7.5 + parent: 2 + - uid: 794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-7.5 + parent: 2 + - uid: 795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-7.5 + parent: 2 + - uid: 796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-6.5 + parent: 2 + - uid: 797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-5.5 + parent: 2 + - uid: 798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-5.5 + parent: 2 + - uid: 799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-5.5 + parent: 2 + - uid: 800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-5.5 + parent: 2 + - uid: 801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 2 + - uid: 802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-5.5 + parent: 2 + - uid: 803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-5.5 + parent: 2 + - uid: 805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-8.5 + parent: 2 + - uid: 806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-8.5 + parent: 2 + - uid: 807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-9.5 + parent: 2 + - uid: 810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 811 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 812 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 813 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 814 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 816 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 819 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 820 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 822 + components: + - type: Transform + pos: 37.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 823 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 824 + components: + - type: Transform + pos: 39.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 825 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 866 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 867 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 868 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 869 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 870 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 871 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 872 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 873 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 874 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 875 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 876 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 877 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 878 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 879 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 880 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 883 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 884 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 885 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 886 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 887 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 888 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 889 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 890 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 891 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 892 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 950 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 951 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 952 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 953 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 954 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 955 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 956 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 957 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1009 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1024 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1025 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 924 + - uid: 1149 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-9.5 + pos: 3.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 925 + - uid: 1151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 83 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 942 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 949 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 579 + components: + - type: Transform + pos: 44.5,-3.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 2 +- proto: GasPressurePump + entities: + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 173 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 2 + - uid: 174 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 2 + - uid: 781 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-9.5 + pos: 41.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 927 +- proto: GasVentPump + entities: + - uid: 835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-10.5 + rot: 3.141592653589793 rad + pos: 34.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 928 + color: '#0055CCFF' + - uid: 836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-10.5 + rot: 3.141592653589793 rad + pos: 37.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 929 + color: '#0055CCFF' + - uid: 844 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-10.5 + pos: 38.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 937 + color: '#0055CCFF' + - uid: 859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-10.5 + pos: 34.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 938 + color: '#0055CCFF' + - uid: 895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-10.5 + rot: -1.5707963267948966 rad + pos: 31.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 939 + color: '#0055CCFF' + - uid: 897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-10.5 + rot: 3.141592653589793 rad + pos: 29.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 940 + color: '#0055CCFF' + - uid: 923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-10.5 + rot: 3.141592653589793 rad + pos: 13.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 941 + color: '#0055CCFF' + - uid: 995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-10.5 + rot: 3.141592653589793 rad + pos: 20.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 944 + color: '#0055CCFF' + - uid: 998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 + pos: 26.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 945 + - uid: 1004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-9.5 + pos: 14.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 946 + - uid: 1100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-9.5 + rot: -1.5707963267948966 rad + pos: 11.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 947 + - uid: 1129 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-9.5 + pos: 9.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 948 +- proto: GasVentScrubber + entities: + - uid: 831 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-9.5 + pos: 35.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 950 + color: '#990000FF' + - uid: 843 components: - type: Transform - pos: 13.5,-10.5 + rot: 3.141592653589793 rad + pos: 39.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 951 + color: '#990000FF' + - uid: 845 components: - type: Transform - pos: 13.5,-11.5 + rot: 1.5707963267948966 rad + pos: 38.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 952 + color: '#990000FF' + - uid: 860 components: - type: Transform - pos: 13.5,-12.5 + pos: 33.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 953 + color: '#990000FF' + - uid: 894 components: - type: Transform - pos: 13.5,-13.5 + rot: -1.5707963267948966 rad + pos: 31.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 954 + color: '#990000FF' + - uid: 896 components: - type: Transform - pos: 14.5,-14.5 + rot: 3.141592653589793 rad + pos: 30.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 955 + - uid: 933 components: - type: Transform - pos: 14.5,-13.5 + rot: 3.141592653589793 rad + pos: 12.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 956 + - uid: 1001 components: - type: Transform - pos: 14.5,-12.5 + pos: 25.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 957 + - uid: 1002 components: - type: Transform - pos: 14.5,-11.5 + rot: 3.141592653589793 rad + pos: 21.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 958 + - uid: 1003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-15.5 + pos: 15.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 960 + - uid: 1130 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-15.5 + pos: 10.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 961 + - uid: 1131 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-15.5 + pos: 11.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 962 +- proto: GeneratorRTG + entities: + - uid: 1817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-14.5 + pos: 45.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 963 + - uid: 1818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-14.5 + pos: 45.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 964 + - uid: 1819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-13.5 + pos: 43.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 965 + - uid: 1820 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-12.5 + pos: 43.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 966 +- proto: GravityGenerator + entities: + - uid: 486 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-11.5 + pos: 34.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 967 +- proto: Grille + entities: + - uid: 46 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-10.5 + pos: 7.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 969 + - uid: 47 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-8.5 + pos: 7.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 970 + - uid: 49 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-7.5 + pos: 7.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 971 + - uid: 50 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-6.5 + pos: 7.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 972 + - uid: 261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-5.5 + pos: 25.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 973 + - uid: 263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-4.5 + pos: 25.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 974 + - uid: 264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-14.5 + pos: 25.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 975 + - uid: 265 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - uid: 1513 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-13.5 + pos: 45.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 976 + - uid: 1514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-12.5 + pos: 44.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 977 + - uid: 1515 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-11.5 + pos: 43.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 978 + - uid: 1516 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-10.5 + pos: 42.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 979 + - uid: 1517 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-9.5 + pos: 41.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 981 +- proto: HandheldHealthAnalyzerUnpowered + entities: + - uid: 553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-7.5 + pos: 40.55329,-19.324007 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 982 + - uid: 554 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-6.5 + pos: 40.443916,-19.527132 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 983 +- proto: HandLabeler + entities: + - uid: 494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-5.5 + pos: 39.47292,-24.407106 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 984 + - uid: 557 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-4.5 + parent: 556 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: HypoDart + entities: + - uid: 1173 + components: + - type: Transform + pos: 24.575827,-5.5139256 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1009 +- proto: Jukebox + entities: + - uid: 301 components: - type: Transform - pos: 15.5,-9.5 + pos: 27.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1024 +- proto: KitchenReagentGrinder + entities: + - uid: 503 components: - type: Transform - pos: 25.5,-9.5 + pos: 38.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1025 +- proto: LockerSyndicatePersonalFilled + entities: + - uid: 379 components: - type: Transform - pos: 20.5,-10.5 + pos: 27.5,-21.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1134 + - uid: 381 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-3.5 + pos: 27.5,-23.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1135 + - uid: 383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-2.5 + pos: 27.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1137 + - uid: 392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-2.5 + pos: 28.5,-23.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1139 + - uid: 568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 + pos: 28.5,-21.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1140 + - uid: 569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 + pos: 28.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1141 +- proto: MachineCentrifuge + entities: + - uid: 506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 + pos: 37.5,-23.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1142 +- proto: MachineElectrolysisUnit + entities: + - uid: 502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 + pos: 37.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1143 +- proto: MedkitAdvancedFilled + entities: + - uid: 519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 + pos: 42.618423,-17.429865 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1144 + - uid: 520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 + pos: 42.368423,-17.492365 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1145 +- proto: MedkitCombatFilled + entities: + - uid: 521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 + pos: 42.50905,-17.148615 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1146 + - uid: 522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 + pos: 42.32155,-17.211115 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1147 +- proto: MedkitFilled + entities: + - uid: 523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 + pos: 43.32155,-17.523615 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1148 +- proto: MedkitOxygenFilled + entities: + - uid: 525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 + pos: 43.462173,-17.38299 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1149 +- proto: MedkitRadiationFilled + entities: + - uid: 524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-1.5 + pos: 43.712173,-17.32049 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1150 +- proto: NitrogenCanister + entities: + - uid: 631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 + anchored: True + pos: 44.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1151 + - type: Physics + bodyType: Static + - uid: 1822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-0.5 + pos: 47.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1152 +- proto: OperatingTable + entities: + - uid: 534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-15.5 + pos: 35.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasPipeTJunction +- proto: OxygenCanister entities: - - uid: 83 + - uid: 26 components: - type: Transform - pos: 12.5,-15.5 + pos: 5.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 779 + - uid: 632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-10.5 + anchored: True + pos: 42.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 809 + - type: Physics + bodyType: Static + - uid: 1821 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 2 +- proto: PhoneInstrumentSyndicate + entities: + - uid: 334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-9.5 + pos: 28.97358,-14.899969 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 815 +- proto: PinpointerSyndicateNuclear + entities: + - uid: 359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-8.5 + pos: 28.0253,-15.227896 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 818 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-10.5 + rot: 3.141592653589793 rad + pos: 44.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 821 + - uid: 618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-14.5 + pos: 44.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 826 + - uid: 619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-13.5 + rot: 3.141592653589793 rad + pos: 42.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 851 + - uid: 620 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-14.5 + pos: 42.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 852 +- proto: PlasmaWindowDirectional + entities: + - uid: 499 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-14.5 + pos: 40.5,-20.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 856 + - uid: 500 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-13.5 + pos: 39.5,-20.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 857 + - uid: 501 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-13.5 + pos: 37.5,-20.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 881 +- proto: PlushieLizard + entities: + - uid: 1253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-22.5 + pos: 12.603237,0.54709053 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 882 +- proto: PlushieNar + entities: + - uid: 177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-23.5 + pos: 14.488451,0.5632949 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 920 +- proto: PosterContrabandFreeSyndicateEncryptionKey + entities: + - uid: 331 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-10.5 + rot: -1.5707963267948966 rad + pos: 33.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 926 +- proto: PosterContrabandRebelsUnite + entities: + - uid: 1165 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-9.5 + pos: 9.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 930 +- proto: PosterContrabandSyndicatePistol + entities: + - uid: 332 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-10.5 + rot: -1.5707963267948966 rad + pos: 26.5,-20.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 942 +- proto: PosterLegit12Gauge + entities: + - uid: 570 components: - type: Transform - pos: 20.5,-9.5 + pos: 28.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 943 +- proto: PottedPlantRandom + entities: + - uid: 27 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-9.5 + pos: 12.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 949 +- proto: PottedPlantRandomPlastic + entities: + - uid: 537 components: - type: Transform - pos: 21.5,-10.5 + pos: 39.5,-20.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 959 + - uid: 538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-14.5 + pos: 37.5,-20.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 968 +- proto: PoweredLEDLightPostSmall + entities: + - uid: 1272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-8.5 + rot: -1.5707963267948966 rad + pos: 25.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 980 + - uid: 1334 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-9.5 + pos: 14.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1132 + - uid: 1336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-3.5 + rot: -1.5707963267948966 rad + pos: 16.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1133 + - uid: 1338 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-1.5 + pos: 23.5,-21.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPort - entities: - - uid: 579 + - uid: 1339 components: - type: Transform - pos: 44.5,-3.5 + rot: -1.5707963267948966 rad + pos: 18.5,-18.5 parent: 2 - - uid: 602 + - uid: 1340 components: - type: Transform - pos: 42.5,-3.5 + rot: -1.5707963267948966 rad + pos: 22.5,-11.5 parent: 2 -- proto: GasPressurePump - entities: - - uid: 52 + - uid: 1342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-10.5 + rot: -1.5707963267948966 rad + pos: 28.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 173 + - uid: 1343 components: - type: Transform - pos: 44.5,-7.5 + rot: -1.5707963267948966 rad + pos: 24.5,-0.5 parent: 2 - - uid: 174 + - uid: 1344 components: - type: Transform - pos: 42.5,-7.5 + rot: -1.5707963267948966 rad + pos: 14.5,-6.5 parent: 2 - - uid: 781 + - uid: 1345 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,-9.5 + pos: 30.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasVentPump +- proto: PoweredlightLED entities: - - uid: 835 + - uid: 1306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-6.5 + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 836 + - uid: 1308 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-18.5 + rot: 1.5707963267948966 rad + pos: 8.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 844 + - uid: 1309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-10.5 + pos: 8.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 859 + - uid: 1310 components: - type: Transform - pos: 34.5,-12.5 + pos: 11.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 895 + - uid: 1311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 2 + - uid: 1312 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-23.5 + pos: 12.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 897 + - uid: 1313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-28.5 + pos: 4.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 923 + - uid: 1314 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-16.5 + pos: 4.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 995 + - uid: 1315 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-11.5 + pos: 6.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 998 + - uid: 1316 components: - type: Transform - pos: 26.5,-8.5 + pos: 6.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1004 + - uid: 1317 components: - type: Transform - pos: 14.5,-8.5 + rot: 3.141592653589793 rad + pos: 8.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1100 + - uid: 1318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-3.5 + rot: 3.141592653589793 rad + pos: 11.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1129 + - uid: 1319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-9.5 + pos: 11.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasVentScrubber - entities: - - uid: 831 + - uid: 1320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-6.5 + pos: 8.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 843 + - uid: 1321 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-18.5 + rot: -1.5707963267948966 rad + pos: 26.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 845 + - uid: 1322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-8.5 + rot: -1.5707963267948966 rad + pos: 26.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 860 + - uid: 1323 components: - type: Transform - pos: 33.5,-12.5 + rot: 1.5707963267948966 rad + pos: 28.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 894 + - uid: 1324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-22.5 + rot: 1.5707963267948966 rad + pos: 28.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 896 + - uid: 1325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-28.5 + rot: -1.5707963267948966 rad + pos: 30.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 933 + - uid: 1326 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-16.5 + rot: -1.5707963267948966 rad + pos: 30.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1001 + - uid: 1327 components: - type: Transform - pos: 25.5,-8.5 + rot: 1.5707963267948966 rad + pos: 32.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1002 + - uid: 1328 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-11.5 + rot: 1.5707963267948966 rad + pos: 32.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1003 + - uid: 1329 components: - type: Transform - pos: 15.5,-8.5 + rot: -1.5707963267948966 rad + pos: 35.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1130 + - uid: 1330 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-8.5 + pos: 35.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1131 + - uid: 1331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-0.5 + pos: 26.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GeneratorRTG - entities: - - uid: 380 + - uid: 1332 components: - type: Transform - pos: 42.5,-14.5 + rot: 3.141592653589793 rad + pos: 26.5,-19.5 parent: 2 - - uid: 382 + - uid: 1333 components: - type: Transform - pos: 46.5,-14.5 + rot: -1.5707963267948966 rad + pos: 33.5,-19.5 parent: 2 - - uid: 566 + - uid: 1335 components: - type: Transform - pos: 46.5,-12.5 + rot: -1.5707963267948966 rad + pos: 33.5,-17.5 parent: 2 - - uid: 567 + - uid: 1346 components: - type: Transform - pos: 42.5,-12.5 + rot: -1.5707963267948966 rad + pos: 35.5,-23.5 parent: 2 -- proto: GravityGenerator - entities: - - uid: 486 + - uid: 1347 components: - type: Transform - pos: 34.5,-3.5 + pos: 31.5,-21.5 parent: 2 -- proto: Grille - entities: - - uid: 46 + - uid: 1348 components: - type: Transform - pos: 7.5,-7.5 + pos: 28.5,-21.5 parent: 2 - - uid: 47 + - uid: 1349 components: - type: Transform - pos: 7.5,-8.5 + rot: 3.141592653589793 rad + pos: 28.5,-25.5 parent: 2 - - uid: 49 + - uid: 1350 components: - type: Transform - pos: 7.5,-10.5 + rot: 3.141592653589793 rad + pos: 30.5,-25.5 parent: 2 - - uid: 50 + - uid: 1351 components: - type: Transform - pos: 7.5,-9.5 + pos: 30.5,-27.5 parent: 2 - - uid: 261 + - uid: 1352 components: - type: Transform - pos: 25.5,-17.5 + pos: 28.5,-27.5 parent: 2 - - uid: 263 + - uid: 1353 components: - type: Transform - pos: 25.5,-12.5 + rot: 1.5707963267948966 rad + pos: 35.5,-17.5 parent: 2 - - uid: 264 + - uid: 1354 components: - type: Transform - pos: 25.5,-13.5 + rot: -1.5707963267948966 rad + pos: 40.5,-17.5 parent: 2 - - uid: 265 + - uid: 1355 components: - type: Transform - pos: 25.5,-14.5 + rot: -1.5707963267948966 rad + pos: 40.5,-24.5 parent: 2 - - uid: 266 + - uid: 1356 components: - type: Transform - pos: 25.5,-15.5 + rot: 1.5707963267948966 rad + pos: 37.5,-24.5 parent: 2 - - uid: 267 + - uid: 1357 components: - type: Transform - pos: 25.5,-16.5 + rot: -1.5707963267948966 rad + pos: 43.5,-18.5 parent: 2 -- proto: HandheldHealthAnalyzerUnpowered - entities: - - uid: 553 + - uid: 1358 components: - type: Transform - pos: 40.55329,-19.324007 + rot: 3.141592653589793 rad + pos: 41.5,-15.5 parent: 2 - - uid: 554 + - uid: 1359 components: - type: Transform - pos: 40.443916,-19.527132 + rot: 3.141592653589793 rad + pos: 47.5,-15.5 parent: 2 -- proto: HandLabeler - entities: - - uid: 494 + - uid: 1360 components: - type: Transform - pos: 39.47292,-24.407106 + pos: 47.5,-9.5 parent: 2 - - uid: 557 + - uid: 1361 components: - type: Transform - parent: 556 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: HypoDart - entities: - - uid: 1173 + pos: 41.5,-5.5 + parent: 2 + - uid: 1362 components: - type: Transform - pos: 24.575827,-5.5139256 + pos: 45.5,-5.5 parent: 2 -- proto: Jukebox - entities: - - uid: 301 + - uid: 1363 components: - type: Transform - pos: 27.5,-19.5 + rot: -1.5707963267948966 rad + pos: 39.5,-4.5 parent: 2 -- proto: KitchenReagentGrinder - entities: - - uid: 503 + - uid: 1364 components: - type: Transform - pos: 38.5,-24.5 + rot: 1.5707963267948966 rad + pos: 37.5,-4.5 parent: 2 -- proto: LockerSyndicatePersonalFilled - entities: - - uid: 379 + - uid: 1365 components: - type: Transform - pos: 27.5,-21.5 + rot: 1.5707963267948966 rad + pos: 37.5,-15.5 parent: 2 - - uid: 381 + - uid: 1366 components: - type: Transform - pos: 27.5,-23.5 + rot: -1.5707963267948966 rad + pos: 39.5,-15.5 parent: 2 - - uid: 383 + - uid: 1367 components: - type: Transform - pos: 27.5,-25.5 + rot: 3.141592653589793 rad + pos: 33.5,-6.5 parent: 2 - - uid: 392 + - uid: 1368 components: - type: Transform - pos: 28.5,-23.5 + rot: 3.141592653589793 rad + pos: 35.5,-6.5 parent: 2 - - uid: 568 +- proto: PoweredlightSodium + entities: + - uid: 110 components: - type: Transform - pos: 28.5,-21.5 + rot: 1.5707963267948966 rad + pos: 1.5,1.5 parent: 2 - - uid: 569 + - uid: 112 components: - type: Transform - pos: 28.5,-25.5 + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 parent: 2 -- proto: MachineCentrifuge - entities: - - uid: 506 + - uid: 1557 components: - type: Transform - pos: 37.5,-23.5 + rot: 3.141592653589793 rad + pos: 10.5,4.5 parent: 2 -- proto: MachineElectrolysisUnit - entities: - - uid: 502 + - uid: 1624 components: - type: Transform - pos: 37.5,-24.5 + rot: 3.141592653589793 rad + pos: 15.5,2.5 parent: 2 -- proto: MedkitAdvancedFilled - entities: - - uid: 519 + - uid: 1628 components: - type: Transform - pos: 42.618423,-17.429865 + rot: 3.141592653589793 rad + pos: 27.5,2.5 parent: 2 - - uid: 520 + - uid: 1806 components: - type: Transform - pos: 42.368423,-17.492365 + rot: 3.141592653589793 rad + pos: 43.5,-1.5 parent: 2 -- proto: MedkitCombatFilled +- proto: Rack entities: - - uid: 521 + - uid: 550 components: - type: Transform - pos: 42.50905,-17.148615 + pos: 42.5,-17.5 parent: 2 - - uid: 522 + - uid: 551 components: - type: Transform - pos: 42.32155,-17.211115 + pos: 43.5,-17.5 parent: 2 -- proto: MedkitFilled - entities: - - uid: 523 + - uid: 560 components: - type: Transform - pos: 43.32155,-17.523615 + pos: 33.5,-6.5 parent: 2 -- proto: MedkitOxygenFilled - entities: - - uid: 525 + - uid: 1814 components: - type: Transform - pos: 43.462173,-17.38299 + rot: 3.141592653589793 rad + pos: 47.5,-14.5 parent: 2 -- proto: MedkitRadiationFilled +- proto: Railing entities: - - uid: 524 + - uid: 103 components: - type: Transform - pos: 43.712173,-17.32049 + pos: 2.5,-9.5 parent: 2 -- proto: NitrogenCanister - entities: - - uid: 631 + - uid: 105 components: - type: Transform - anchored: True - pos: 44.5,-3.5 + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 parent: 2 - - type: Physics - bodyType: Static -- proto: OperatingTable - entities: - - uid: 534 + - uid: 307 components: - type: Transform - pos: 35.5,-19.5 + pos: 35.5,-9.5 parent: 2 -- proto: OxygenCanister - entities: - - uid: 26 + - uid: 322 components: - type: Transform - pos: 5.5,-3.5 + rot: -1.5707963267948966 rad + pos: 33.5,-8.5 parent: 2 - - uid: 632 + - uid: 349 components: - type: Transform - anchored: True - pos: 42.5,-3.5 + rot: 1.5707963267948966 rad + pos: 24.5,-12.5 parent: 2 - - type: Physics - bodyType: Static -- proto: PhoneInstrumentSyndicate - entities: - - uid: 334 + - uid: 350 components: - type: Transform - pos: 28.97358,-14.899969 + rot: 1.5707963267948966 rad + pos: 24.5,-13.5 parent: 2 -- proto: PinpointerSyndicateNuclear - entities: - - uid: 359 + - uid: 351 components: - type: Transform - pos: 28.0253,-15.227896 + rot: 1.5707963267948966 rad + pos: 24.5,-14.5 parent: 2 -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 617 + - uid: 352 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-5.5 + rot: 1.5707963267948966 rad + pos: 24.5,-15.5 parent: 2 - - uid: 618 + - uid: 353 components: - type: Transform - pos: 44.5,-4.5 + rot: 1.5707963267948966 rad + pos: 24.5,-16.5 parent: 2 - - uid: 619 + - uid: 354 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-5.5 + rot: 1.5707963267948966 rad + pos: 24.5,-17.5 parent: 2 - - uid: 620 + - uid: 380 components: - type: Transform - pos: 42.5,-4.5 + rot: 3.141592653589793 rad + pos: 44.5,-0.5 parent: 2 -- proto: PlasmaWindowDirectional - entities: - - uid: 499 + - uid: 644 components: - type: Transform - pos: 40.5,-20.5 + rot: 3.141592653589793 rad + pos: 47.5,-0.5 parent: 2 - - uid: 500 + - uid: 1083 components: - type: Transform - pos: 39.5,-20.5 + rot: 3.141592653589793 rad + pos: 24.5,-9.5 parent: 2 - - uid: 501 + - uid: 1084 components: - type: Transform - pos: 37.5,-20.5 + rot: 3.141592653589793 rad + pos: 23.5,-9.5 parent: 2 -- proto: PlushieLizard - entities: - - uid: 1253 + - uid: 1085 components: - type: Transform - pos: 12.603237,0.54709053 + rot: 3.141592653589793 rad + pos: 22.5,-9.5 parent: 2 -- proto: PlushieNar - entities: - - uid: 177 + - uid: 1086 components: - type: Transform - pos: 14.488451,0.5632949 + rot: 3.141592653589793 rad + pos: 21.5,-9.5 parent: 2 -- proto: PosterContrabandFreeSyndicateEncryptionKey - entities: - - uid: 331 + - uid: 1087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-16.5 + rot: 3.141592653589793 rad + pos: 20.5,-9.5 parent: 2 -- proto: PosterContrabandRebelsUnite - entities: - - uid: 1165 + - uid: 1088 components: - type: Transform - pos: 9.5,1.5 + rot: 3.141592653589793 rad + pos: 19.5,-9.5 parent: 2 -- proto: PosterContrabandSyndicatePistol - entities: - - uid: 332 + - uid: 1089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-20.5 + rot: 3.141592653589793 rad + pos: 18.5,-9.5 parent: 2 -- proto: PosterLegit12Gauge - entities: - - uid: 570 + - uid: 1090 components: - type: Transform - pos: 28.5,-11.5 + rot: 3.141592653589793 rad + pos: 17.5,-9.5 parent: 2 -- proto: PottedPlantRandom - entities: - - uid: 27 + - uid: 1091 components: - type: Transform - pos: 12.5,-4.5 + rot: 3.141592653589793 rad + pos: 16.5,-9.5 parent: 2 -- proto: PottedPlantRandomPlastic - entities: - - uid: 537 + - uid: 1095 components: - type: Transform - pos: 39.5,-20.5 + pos: 26.5,-10.5 parent: 2 - - uid: 538 + - uid: 1096 components: - type: Transform - pos: 37.5,-20.5 + pos: 25.5,-10.5 parent: 2 -- proto: PoweredLEDLightPostSmall - entities: - - uid: 1272 + - uid: 1097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-26.5 + pos: 24.5,-10.5 parent: 2 - - uid: 1334 + - uid: 1098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-16.5 + pos: 23.5,-10.5 parent: 2 - - uid: 1336 + - uid: 1099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-2.5 + pos: 22.5,-10.5 parent: 2 - - uid: 1338 + - uid: 1102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-21.5 + pos: 19.5,-10.5 parent: 2 - - uid: 1339 + - uid: 1103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-18.5 + pos: 18.5,-10.5 parent: 2 - - uid: 1340 + - uid: 1104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-11.5 + pos: 17.5,-10.5 parent: 2 - - uid: 1342 + - uid: 1105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-0.5 + pos: 16.5,-10.5 parent: 2 - - uid: 1343 + - uid: 1106 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-0.5 + pos: 15.5,-10.5 parent: 2 - - uid: 1344 + - uid: 1107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-6.5 + rot: 1.5707963267948966 rad + pos: 14.5,-11.5 parent: 2 - - uid: 1345 + - uid: 1108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-6.5 + rot: 1.5707963267948966 rad + pos: 14.5,-12.5 parent: 2 -- proto: PoweredlightLED - entities: - - uid: 1306 + - uid: 1109 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-0.5 + pos: 14.5,-13.5 parent: 2 - - uid: 1308 + - uid: 1110 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-3.5 + pos: 14.5,-14.5 parent: 2 - - uid: 1309 + - uid: 1113 components: - type: Transform - pos: 8.5,-6.5 + pos: 11.5,-15.5 parent: 2 - - uid: 1310 + - uid: 1114 components: - type: Transform - pos: 11.5,-6.5 + pos: 10.5,-15.5 parent: 2 - - uid: 1311 + - uid: 1115 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-3.5 + pos: 13.5,-13.5 parent: 2 - - uid: 1312 + - uid: 1116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-0.5 + rot: 3.141592653589793 rad + pos: 12.5,-14.5 parent: 2 - - uid: 1313 + - uid: 1117 components: - type: Transform - pos: 4.5,-0.5 + rot: 3.141592653589793 rad + pos: 11.5,-14.5 parent: 2 - - uid: 1314 + - uid: 1118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-3.5 + rot: 1.5707963267948966 rad + pos: 10.5,-13.5 parent: 2 - - uid: 1315 + - uid: 1119 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-3.5 + rot: -1.5707963267948966 rad + pos: 9.5,-13.5 parent: 2 - - uid: 1316 + - uid: 1120 components: - type: Transform - pos: 6.5,-0.5 + rot: -1.5707963267948966 rad + pos: 9.5,-14.5 parent: 2 - - uid: 1317 + - uid: 1121 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-11.5 + rot: -1.5707963267948966 rad + pos: 13.5,-12.5 parent: 2 - - uid: 1318 + - uid: 1122 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-11.5 + rot: -1.5707963267948966 rad + pos: 13.5,-11.5 parent: 2 - - uid: 1319 + - uid: 1123 components: - type: Transform - pos: 11.5,-13.5 + rot: -1.5707963267948966 rad + pos: 13.5,-10.5 parent: 2 - - uid: 1320 + - uid: 1162 components: - type: Transform - pos: 8.5,-13.5 + pos: 27.5,-4.5 parent: 2 - - uid: 1321 + - uid: 1163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-10.5 + pos: 25.5,-4.5 parent: 2 - - uid: 1322 + - uid: 1164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-8.5 + pos: 26.5,-4.5 parent: 2 - - uid: 1323 + - uid: 1529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-8.5 + rot: -1.5707963267948966 rad + pos: -0.5,0.5 parent: 2 - - uid: 1324 + - uid: 1536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-10.5 + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 parent: 2 - - uid: 1325 + - uid: 1537 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-10.5 + pos: -0.5,1.5 parent: 2 - - uid: 1326 + - uid: 1538 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-8.5 + pos: -0.5,-0.5 parent: 2 - - uid: 1327 + - uid: 1627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-8.5 + rot: 3.141592653589793 rad + pos: 3.5,3.5 parent: 2 - - uid: 1328 + - uid: 1682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-11.5 + pos: 13.5,3.5 parent: 2 - - uid: 1329 + - uid: 1683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-15.5 + pos: 5.5,3.5 parent: 2 - - uid: 1330 + - uid: 1684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-8.5 + pos: 6.5,3.5 parent: 2 - - uid: 1331 + - uid: 1685 components: - type: Transform - pos: 26.5,-12.5 + pos: 7.5,3.5 parent: 2 - - uid: 1332 + - uid: 1686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-19.5 + pos: 14.5,3.5 parent: 2 - - uid: 1333 + - uid: 1687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-19.5 + pos: 15.5,3.5 parent: 2 - - uid: 1335 + - uid: 1688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-17.5 + pos: 16.5,3.5 parent: 2 - - uid: 1346 + - uid: 1689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-23.5 + pos: 17.5,3.5 parent: 2 - - uid: 1347 + - uid: 1690 components: - type: Transform - pos: 31.5,-21.5 + pos: 18.5,3.5 parent: 2 - - uid: 1348 + - uid: 1691 components: - type: Transform - pos: 28.5,-21.5 + pos: 19.5,3.5 parent: 2 - - uid: 1349 + - uid: 1692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-25.5 + pos: 20.5,3.5 parent: 2 - - uid: 1350 + - uid: 1693 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-25.5 + pos: 21.5,3.5 parent: 2 - - uid: 1351 + - uid: 1694 components: - type: Transform - pos: 30.5,-27.5 + pos: 22.5,3.5 parent: 2 - - uid: 1352 + - uid: 1695 components: - type: Transform - pos: 28.5,-27.5 + pos: 23.5,3.5 parent: 2 - - uid: 1353 + - uid: 1696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-17.5 + pos: 24.5,3.5 parent: 2 - - uid: 1354 + - uid: 1697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-17.5 + pos: 25.5,3.5 parent: 2 - - uid: 1355 + - uid: 1698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-24.5 + pos: 26.5,3.5 parent: 2 - - uid: 1356 + - uid: 1699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-24.5 + pos: 27.5,3.5 parent: 2 - - uid: 1357 + - uid: 1700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-18.5 + pos: 28.5,3.5 parent: 2 - - uid: 1358 + - uid: 1701 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-15.5 + pos: 29.5,3.5 parent: 2 - - uid: 1359 + - uid: 1702 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-15.5 + pos: 30.5,3.5 parent: 2 - - uid: 1360 + - uid: 1703 components: - type: Transform - pos: 47.5,-9.5 + pos: 31.5,3.5 parent: 2 - - uid: 1361 + - uid: 1704 components: - type: Transform - pos: 41.5,-5.5 + pos: 32.5,3.5 parent: 2 - - uid: 1362 + - uid: 1705 components: - type: Transform - pos: 45.5,-5.5 + pos: 33.5,3.5 parent: 2 - - uid: 1363 + - uid: 1706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-4.5 + pos: 34.5,3.5 parent: 2 - - uid: 1364 + - uid: 1707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-4.5 + pos: 35.5,3.5 parent: 2 - - uid: 1365 + - uid: 1708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-15.5 + pos: 36.5,3.5 parent: 2 - - uid: 1366 + - uid: 1709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-15.5 + pos: 38.5,-1.5 parent: 2 - - uid: 1367 + - uid: 1710 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-6.5 + pos: 3.5,5.5 parent: 2 - - uid: 1368 + - uid: 1711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-6.5 + pos: 2.5,5.5 parent: 2 -- proto: PoweredlightSodium - entities: - - uid: 110 + - uid: 1713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,1.5 + pos: 5.5,5.5 parent: 2 - - uid: 112 + - uid: 1714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-7.5 + pos: 6.5,5.5 parent: 2 -- proto: Rack - entities: - - uid: 550 + - uid: 1715 components: - type: Transform - pos: 42.5,-17.5 + pos: 7.5,5.5 parent: 2 - - uid: 551 + - uid: 1716 components: - type: Transform - pos: 43.5,-17.5 + pos: 8.5,5.5 parent: 2 - - uid: 560 + - uid: 1717 components: - type: Transform - pos: 33.5,-6.5 + pos: 9.5,5.5 parent: 2 -- proto: Railing - entities: - - uid: 103 + - uid: 1718 components: - type: Transform - pos: 2.5,-9.5 + pos: 11.5,5.5 parent: 2 - - uid: 105 + - uid: 1719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 + pos: 12.5,5.5 parent: 2 - - uid: 106 + - uid: 1720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,2.5 + pos: 13.5,5.5 parent: 2 - - uid: 109 + - uid: 1721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 + pos: 14.5,5.5 parent: 2 - - uid: 111 + - uid: 1722 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,3.5 + pos: 15.5,5.5 parent: 2 - - uid: 113 + - uid: 1723 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,3.5 + pos: 18.5,4.5 parent: 2 - - uid: 114 + - uid: 1724 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,3.5 + pos: 17.5,4.5 parent: 2 - - uid: 307 + - uid: 1725 components: - type: Transform - pos: 35.5,-9.5 + rot: 3.141592653589793 rad + pos: 19.5,4.5 parent: 2 - - uid: 322 + - uid: 1726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-8.5 + rot: 3.141592653589793 rad + pos: 20.5,4.5 parent: 2 - - uid: 349 + - uid: 1727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-12.5 + rot: 3.141592653589793 rad + pos: 21.5,4.5 parent: 2 - - uid: 350 + - uid: 1728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-13.5 + rot: 3.141592653589793 rad + pos: 22.5,4.5 parent: 2 - - uid: 351 + - uid: 1729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-14.5 + rot: 3.141592653589793 rad + pos: 23.5,4.5 parent: 2 - - uid: 352 + - uid: 1730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-15.5 + rot: 3.141592653589793 rad + pos: 24.5,4.5 parent: 2 - - uid: 353 + - uid: 1731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-16.5 + rot: 3.141592653589793 rad + pos: 25.5,4.5 parent: 2 - - uid: 354 + - uid: 1732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-17.5 + rot: 3.141592653589793 rad + pos: 26.5,4.5 parent: 2 - - uid: 1083 + - uid: 1733 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-9.5 + pos: 27.5,4.5 parent: 2 - - uid: 1084 + - uid: 1734 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-9.5 + pos: 28.5,4.5 parent: 2 - - uid: 1085 + - uid: 1735 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-9.5 + pos: 29.5,4.5 parent: 2 - - uid: 1086 + - uid: 1736 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-9.5 + pos: 30.5,4.5 parent: 2 - - uid: 1087 + - uid: 1737 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-9.5 + pos: 31.5,4.5 parent: 2 - - uid: 1088 + - uid: 1738 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-9.5 + pos: 32.5,4.5 parent: 2 - - uid: 1089 + - uid: 1739 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-9.5 + pos: 33.5,4.5 parent: 2 - - uid: 1090 + - uid: 1740 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,-9.5 + pos: 34.5,4.5 parent: 2 - - uid: 1091 + - uid: 1741 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-9.5 + pos: 35.5,4.5 parent: 2 - - uid: 1095 + - uid: 1742 components: - type: Transform - pos: 26.5,-10.5 + rot: 3.141592653589793 rad + pos: 36.5,4.5 parent: 2 - - uid: 1096 + - uid: 1743 components: - type: Transform - pos: 25.5,-10.5 + rot: 3.141592653589793 rad + pos: 37.5,4.5 parent: 2 - - uid: 1097 + - uid: 1748 components: - type: Transform - pos: 24.5,-10.5 + rot: 1.5707963267948966 rad + pos: 38.5,3.5 parent: 2 - - uid: 1098 + - uid: 1749 components: - type: Transform - pos: 23.5,-10.5 + rot: 1.5707963267948966 rad + pos: 38.5,2.5 parent: 2 - - uid: 1099 + - uid: 1750 components: - type: Transform - pos: 22.5,-10.5 + rot: 1.5707963267948966 rad + pos: 38.5,1.5 parent: 2 - - uid: 1102 + - uid: 1751 components: - type: Transform - pos: 19.5,-10.5 + rot: 1.5707963267948966 rad + pos: 38.5,0.5 parent: 2 - - uid: 1103 + - uid: 1752 components: - type: Transform - pos: 18.5,-10.5 + rot: -1.5707963267948966 rad + pos: 37.5,2.5 parent: 2 - - uid: 1104 + - uid: 1753 components: - type: Transform - pos: 17.5,-10.5 + rot: -1.5707963267948966 rad + pos: 37.5,1.5 parent: 2 - - uid: 1105 + - uid: 1754 components: - type: Transform - pos: 16.5,-10.5 + rot: -1.5707963267948966 rad + pos: 37.5,0.5 parent: 2 - - uid: 1106 + - uid: 1755 components: - type: Transform - pos: 15.5,-10.5 + rot: -1.5707963267948966 rad + pos: 37.5,-0.5 parent: 2 - - uid: 1107 + - uid: 1757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-11.5 + pos: 39.5,-1.5 parent: 2 - - uid: 1108 + - uid: 1758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-12.5 + pos: 40.5,-1.5 parent: 2 - - uid: 1109 + - uid: 1759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-13.5 + pos: 41.5,-1.5 parent: 2 - - uid: 1110 + - uid: 1760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-14.5 + pos: 42.5,-1.5 parent: 2 - - uid: 1113 + - uid: 1761 components: - type: Transform - pos: 11.5,-15.5 + pos: 43.5,-1.5 parent: 2 - - uid: 1114 + - uid: 1762 components: - type: Transform - pos: 10.5,-15.5 + pos: 44.5,-1.5 parent: 2 - - uid: 1115 + - uid: 1763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-13.5 + pos: 45.5,-1.5 parent: 2 - - uid: 1116 + - uid: 1765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-14.5 + pos: 47.5,-1.5 parent: 2 - - uid: 1117 + - uid: 1766 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-14.5 + pos: 39.5,-0.5 parent: 2 - - uid: 1118 + - uid: 1769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-13.5 + rot: 3.141592653589793 rad + pos: 42.5,-0.5 parent: 2 - - uid: 1119 + - uid: 1770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-13.5 + rot: 3.141592653589793 rad + pos: 40.5,-0.5 parent: 2 - - uid: 1120 + - uid: 1778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-14.5 + rot: 3.141592653589793 rad + pos: 48.5,-0.5 parent: 2 - - uid: 1121 + - uid: 1779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-12.5 + pos: 48.5,-1.5 parent: 2 - - uid: 1122 + - uid: 1780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-11.5 + rot: 3.141592653589793 rad + pos: 43.5,-0.5 parent: 2 - - uid: 1123 + - uid: 1781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-10.5 + rot: 3.141592653589793 rad + pos: 46.5,-0.5 parent: 2 - - uid: 1162 + - uid: 1810 components: - type: Transform - pos: 27.5,-4.5 + rot: 3.141592653589793 rad + pos: 50.5,-0.5 parent: 2 - - uid: 1163 + - uid: 1811 components: - type: Transform - pos: 25.5,-4.5 + pos: 49.5,-1.5 parent: 2 - - uid: 1164 + - uid: 1812 components: - type: Transform - pos: 26.5,-4.5 + pos: 50.5,-1.5 parent: 2 - proto: RailingCorner entities: @@ -7428,11 +9188,10 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-10.5 parent: 2 - - uid: 115 + - uid: 113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,3.5 + pos: 1.5,4.5 parent: 2 - uid: 1094 components: @@ -7451,6 +9210,30 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-15.5 parent: 2 + - uid: 1535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,4.5 + parent: 2 + - uid: 1756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 2 - proto: RailingCornerSmall entities: - uid: 101 @@ -7569,6 +9352,41 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-4.5 parent: 2 + - uid: 1530 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,4.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,3.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-0.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,5.5 + parent: 2 - proto: RandomDrinkSoda entities: - uid: 1287 @@ -7769,6 +9587,53 @@ entities: - type: Transform pos: 39.5,-18.5 parent: 2 +- proto: SpawnPointNukies + entities: + - uid: 1518 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 - proto: StasisBed entities: - uid: 516 @@ -7851,6 +9716,13 @@ entities: rot: 3.141592653589793 rad pos: 35.545902,-11.2817745 parent: 2 +- proto: StorageCanister + entities: + - uid: 1823 + components: + - type: Transform + pos: 47.5,-11.5 + parent: 2 - proto: SubstationBasic entities: - uid: 597 @@ -7875,10 +9747,10 @@ entities: - type: Transform pos: 5.5,-0.5 parent: 2 - - uid: 598 + - uid: 1169 components: - type: Transform - pos: 46.5,-9.5 + pos: 32.5,-25.5 parent: 2 - uid: 1275 components: @@ -7895,17 +9767,15 @@ entities: - type: Transform pos: 6.5,-0.5 parent: 2 -- proto: SuitStorageSyndie - entities: - - uid: 384 + - uid: 1667 components: - type: Transform - pos: 32.5,-25.5 + pos: 31.5,-25.5 parent: 2 - - uid: 385 + - uid: 1826 components: - type: Transform - pos: 31.5,-25.5 + pos: 47.5,-10.5 parent: 2 - proto: SyndicateMicrowave entities: @@ -8030,6 +9900,12 @@ entities: - type: Transform pos: 34.5,-15.5 parent: 2 + - uid: 385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-15.5 + parent: 2 - uid: 493 components: - type: Transform @@ -8077,6 +9953,12 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,-20.5 parent: 2 + - uid: 566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-14.5 + parent: 2 - proto: TableReinforcedGlass entities: - uid: 1159 @@ -8137,6 +10019,18 @@ entities: - type: Transform pos: 33.37362,-6.275597 parent: 2 + - uid: 598 + components: + - type: Transform + pos: 41.39555,-14.445519 + parent: 2 +- proto: ToolboxEmergencyFilled + entities: + - uid: 640 + components: + - type: Transform + pos: 34.59008,-15.4909115 + parent: 2 - proto: ToolboxMechanicalFilled entities: - uid: 29 @@ -8144,6 +10038,11 @@ entities: - type: Transform pos: 4.5002494,-3.430543 parent: 2 + - uid: 642 + components: + - type: Transform + pos: 41.5518,-14.664269 + parent: 2 - proto: ToyFigurineClown entities: - uid: 1305 @@ -8241,6 +10140,9 @@ entities: - type: Transform pos: 33.5,-17.5 parent: 2 + - type: AccessReader + access: + - - SyndicateAgent - proto: VendingMachineChemicalsSyndicate entities: - uid: 491 @@ -8274,6 +10176,16 @@ entities: - type: Transform pos: 11.5,-6.5 parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 382 + components: + - type: Transform + pos: 47.5,-15.5 + parent: 2 + - type: AccessReader + access: + - - SyndicateAgent - proto: VendingMachineGames entities: - uid: 318 @@ -8288,6 +10200,9 @@ entities: - type: Transform pos: 35.5,-17.5 parent: 2 + - type: AccessReader + access: + - - SyndicateAgent - proto: VendingMachineTankDispenserEVA entities: - uid: 1256 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/SP14/ghost_roles.yml b/Resources/Prototypes/Entities/Markers/Spawners/SP14/ghost_roles.yml new file mode 100644 index 0000000000..a514b4eac7 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/SP14/ghost_roles.yml @@ -0,0 +1,47 @@ +- type: entity + parent: BaseAntagSpawner + name: Liberator spawner + id: SpawnPointLiberator + components: + - type: GhostRole + name: roles-antag-liberator-name + description: roles-antag-liberator-objective + rules: ghost-role-information-liberator-rules + - type: Sprite + sprite: Markers/jobs.rsi + layers: + - state: green + - sprite: Objects/Misc/handcuffs.rsi + state: handcuff + +- type: entity + parent: BaseAntagSpawner + name: lib commander spawner + id: SpawnPointLiberatorCommander + components: + - type: GhostRole + name: roles-antag-liberator-commander-name + description: roles-antag-liberator-commander-objective + rules: ghost-role-information-liberator-rules + - type: Sprite + sprite: Markers/jobs.rsi + layers: + - state: green + - sprite: Objects/Misc/handcuffs.rsi + state: handcuff + +- type: entity + parent: BaseAntagSpawner + name: lib medic spawner + id: SpawnPointLiberatorMedic + components: + - type: GhostRole + name: roles-antag-liberator-agent-name + description: roles-antag-liberator-agent-objective + rules: ghost-role-information-liberator-rules + - type: Sprite + sprite: Markers/jobs.rsi + layers: + - state: green + - sprite: Objects/Misc/handcuffs.rsi + state: handcuff \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Markers/Spawners/SP14/sp14 jobs.yml b/Resources/Prototypes/Entities/Markers/Spawners/SP14/jobs.yml similarity index 100% rename from Resources/Prototypes/Entities/Markers/Spawners/SP14/sp14 jobs.yml rename to Resources/Prototypes/Entities/Markers/Spawners/SP14/jobs.yml diff --git a/Resources/Prototypes/GameRules/SP14/roundstart.yml b/Resources/Prototypes/GameRules/SP14/roundstart.yml new file mode 100644 index 0000000000..a45141c316 --- /dev/null +++ b/Resources/Prototypes/GameRules/SP14/roundstart.yml @@ -0,0 +1,80 @@ +- type: entity + id: Lockdown + parent: BaseGameRule + components: + - type: LockdownRule + +- type: entity + abstract: true + parent: BaseGameRule + id: BaseLiberatorRule + components: + - type: RuleGrids + - type: AntagSelection + - type: AntagLoadProfileRule + speciesOverride: Human + speciesOverrideBlacklist: + #Species that do not work with nukies should be included in this list. + #Once the issues are fixed the species should be removed from this list to be enabled. + #Balance concerns are not a valid reason to disable a species, except for high-impact Nukie-specific exploits. + - Vox + +- type: entity + parent: BaseLiberatorRule + id: Liberator + components: + - type: GameRule + minPlayers: 8 + - type: LoadMapRule + gameMap: LiberatorOutpost + - type: AntagSelection + selectionTime: PrePlayerSpawn + definitions: + - prefRoles: [ LiberatorCommander ] + fallbackRoles: [ Liberator, LiberatorMedic ] + spawnerPrototype: SpawnPointLiberatorCommander + startingGear: SyndicateCommanderGearFull + components: +# - type: NukeOperative # add antag identifier? + - type: RandomMetadata + nameSegments: + - nukeops-role-commander + - SyndicateNamesElite + - type: NpcFactionMember + factions: + - Syndicate + mindComponents: + - type: NukeopsRole + prototype: LiberatorCommander + - prefRoles: [ LiberatorMedic ] + fallbackRoles: [ Liberator, LiberatorCommander ] + spawnerPrototype: SpawnPointLiberatorMedic + startingGear: SyndicateOperativeMedicFull + components: +# - type: NukeOperative # add antag identifier? + - type: RandomMetadata + nameSegments: + - nukeops-role-agent + - SyndicateNamesNormal + - type: NpcFactionMember + factions: + - Syndicate + mindComponents: + - type: NukeopsRole + prototype: LiberatorMedic + - prefRoles: [ Liberator ] + fallbackRoles: [ LiberatorCommander, LiberatorMedic ] + spawnerPrototype: SpawnPointLiberator + startingGear: SyndicateOperativeGearFull + components: +# - type: NukeOperative # add antag identifier? + - type: RandomMetadata + nameSegments: + - nukeops-role-operator + - SyndicateNamesNormal + - type: NpcFactionMember + factions: + - Syndicate + mindComponents: + - type: NukeopsRole + prototype: Liberator diff --git a/Resources/Prototypes/Maps/SP14/liboutpost.yml b/Resources/Prototypes/Maps/SP14/liboutpost.yml new file mode 100644 index 0000000000..a5e02b350c --- /dev/null +++ b/Resources/Prototypes/Maps/SP14/liboutpost.yml @@ -0,0 +1,11 @@ +- type: gameMap + id: LiberatorOutpost + mapName: Liberator Outpost + mapPath: /Maps/SP14/liboutpost.yml + minPlayers: 0 + stations: + LiberatorOutpost: + stationProto: StandardNukieOutpost + components: + - type: StationNameSetup + mapNameTemplate: "Liberator Outpost" diff --git a/Resources/Prototypes/Roles/Antags/SP14/Liberators.yml b/Resources/Prototypes/Roles/Antags/SP14/Liberators.yml new file mode 100644 index 0000000000..d6f3b068b1 --- /dev/null +++ b/Resources/Prototypes/Roles/Antags/SP14/Liberators.yml @@ -0,0 +1,39 @@ +- type: antag + id: Liberator + name: roles-antag-liberator-name + antagonist: true + setPreference: true + objective: roles-antag-liberator-objective + requirements: + - !type:OverallPlaytimeRequirement + time: 18000 # 5h + guides: [ NuclearOperatives ] + +- type: antag + id: LiberatorMedic + name: roles-antag-liberator-agent-name + antagonist: true + setPreference: true + objective: roles-antag-liberator-agent-objective + requirements: + - !type:OverallPlaytimeRequirement + time: 18000 # 5h + - !type:RoleTimeRequirement + role: JobSPChemist + time: 10800 # 3h + guides: [ NuclearOperatives ] + +- type: antag + id: LiberatorCommander + name: roles-antag-liberator-commander-name + antagonist: true + setPreference: true + objective: roles-antag-liberator-commander-objective + requirements: + - !type:OverallPlaytimeRequirement + time: 18000 # 5h + - !type:DepartmentTimeRequirement + department: SPSecurity + time: 36000 # 10h + # should be changed to nukie playtime when thats tracked (wyci) + guides: [ NuclearOperatives ] \ No newline at end of file diff --git a/Resources/Prototypes/Roles/Antags/SP14/Smuggler.yml b/Resources/Prototypes/Roles/Antags/SP14/Smuggler.yml new file mode 100644 index 0000000000..d85d366f6b --- /dev/null +++ b/Resources/Prototypes/Roles/Antags/SP14/Smuggler.yml @@ -0,0 +1,13 @@ +- type: antag + id: Thief + name: roles-antag-thief-name + antagonist: true + setPreference: true + objective: roles-antag-thief-objective + +- type: startingGear + id: ThiefGear + storage: + back: + - ToolboxThief + - ClothingHandsChameleonThief \ No newline at end of file diff --git a/Resources/Prototypes/_SP14/game_presets.yml b/Resources/Prototypes/_SP14/game_presets.yml new file mode 100644 index 0000000000..a8239f2a7f --- /dev/null +++ b/Resources/Prototypes/_SP14/game_presets.yml @@ -0,0 +1,25 @@ +- type: gamePreset + id: Liberator + alias: + - liberator + name: Liberator-title + description: Liberator-description + showInVote: false + rules: + - Liberator + - SubGamemodesRule + - BasicStationEventScheduler + - MeteorSwarmScheduler + - SpaceTrafficControlEventScheduler + - BasicRoundstartVariation + +- type: gamePreset + id: Lockdown + alias: + - lockdown + - serket + name: lockdown-title + showInVote: true + description: lockdown-description + rules: + - Lockdown \ No newline at end of file diff --git a/Resources/Prototypes/_SP14/lockdown_weights.yml b/Resources/Prototypes/_SP14/lockdown_weights.yml new file mode 100644 index 0000000000..5bf8a52941 --- /dev/null +++ b/Resources/Prototypes/_SP14/lockdown_weights.yml @@ -0,0 +1,5 @@ +- type: weightedRandom + id: Lockdown + weights: + Liberator: 1 +