diff --git a/Content.Server/Shuttles/Components/HyperspaceComponent.cs b/Content.Server/Shuttles/Components/HyperspaceComponent.cs index 3be78a0835..a56d69c4a8 100644 --- a/Content.Server/Shuttles/Components/HyperspaceComponent.cs +++ b/Content.Server/Shuttles/Components/HyperspaceComponent.cs @@ -20,6 +20,12 @@ public sealed class HyperspaceComponent : Component [ViewVariables(VVAccess.ReadWrite)] public float Accumulator = 0f; + /// + /// Target Uid to dock with at the end of hyperspace. + /// + [ViewVariables(VVAccess.ReadWrite), DataField("targetUid")] + public EntityUid? TargetUid; + [ViewVariables(VVAccess.ReadWrite), DataField("targetCoordinates")] public EntityCoordinates TargetCoordinates; } diff --git a/Content.Server/Shuttles/Systems/DockingSystem.cs b/Content.Server/Shuttles/Systems/DockingSystem.cs index 905b4a8875..0429b0b7d2 100644 --- a/Content.Server/Shuttles/Systems/DockingSystem.cs +++ b/Content.Server/Shuttles/Systems/DockingSystem.cs @@ -1,3 +1,4 @@ +using Content.Server.Doors.Components; using Content.Server.Doors.Systems; using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; @@ -322,6 +323,16 @@ namespace Content.Server.Shuttles.Systems dockA.DockJoint = joint; dockB.DockJoint = joint; + if (TryComp(dockA.Owner, out var airlockA)) + { + airlockA.SetBoltsWithAudio(true); + } + + if (TryComp(dockB.Owner, out var airlockB)) + { + airlockB.SetBoltsWithAudio(true); + } + if (TryComp(dockA.Owner, out DoorComponent? doorA)) { doorA.ChangeAirtight = false; @@ -406,6 +417,16 @@ namespace Content.Server.Shuttles.Systems if (dock.DockedWith == null) return; + if (TryComp(dock.Owner, out var airlockA)) + { + airlockA.SetBoltsWithAudio(false); + } + + if (TryComp(dock.DockedWith, out var airlockB)) + { + airlockB.SetBoltsWithAudio(false); + } + if (TryComp(dock.Owner, out DoorComponent? doorA)) { doorA.ChangeAirtight = true; diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs index f03a4ec2e9..a77582aafa 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs @@ -44,7 +44,7 @@ public sealed partial class ShuttleSystem /// /// How long after the transit is over to end the round. /// - private readonly TimeSpan _bufferTime = TimeSpan.FromSeconds(3); + private readonly TimeSpan _bufferTime = TimeSpan.FromSeconds(5); /// /// @@ -113,12 +113,19 @@ public sealed partial class ShuttleSystem { if (!TryComp(comp.EmergencyShuttle, out var shuttle)) continue; - // TODO: Add support so Hyperspace will just dock it to Centcomm. - - Hyperspace(shuttle, - new EntityCoordinates( - _mapManager.GetMapEntityId(_centcommMap.Value), - Vector2.One * 1000f), _consoleAccumulator, _transitTime); + if (Deleted(_centcomm)) + { + // TODO: Need to get non-overlapping positions. + Hyperspace(shuttle, + new EntityCoordinates( + _mapManager.GetMapEntityId(_centcommMap.Value), + Vector2.One * 1000f), _consoleAccumulator, _transitTime); + } + else + { + Hyperspace(shuttle, + _centcomm.Value, _consoleAccumulator, _transitTime); + } } } } diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.EmergencyShuttle.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.EmergencyShuttle.cs index 532ea9796d..fc6d186e67 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.EmergencyShuttle.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.EmergencyShuttle.cs @@ -38,6 +38,7 @@ public sealed partial class ShuttleSystem [Dependency] private readonly StationSystem _station = default!; private MapId? _centcommMap; + private EntityUid? _centcomm; /// /// Used for multiple shuttle spawn offsets. @@ -91,18 +92,19 @@ public sealed partial class ShuttleSystem var player = args.SenderSession.AttachedEntity; if (player == null || - !TryComp(_station.GetOwningStation(player.Value), out var stationData)) return; + !TryComp(_station.GetOwningStation(player.Value), out var stationData) || + !TryComp(stationData.EmergencyShuttle, out var shuttle)) return; - var config = GetDockingConfig(stationData); + var targetGrid = GetLargestGrid(stationData); + if (targetGrid == null) return; + var config = GetDockingConfig(shuttle, targetGrid.Value); + if (config == null) return; - if (config != null) + RaiseNetworkEvent(new EmergencyShuttlePositionMessage() { - RaiseNetworkEvent(new EmergencyShuttlePositionMessage() - { - StationUid = config.TargetGrid, - Position = config.Area, - }); - } + StationUid = targetGrid, + Position = config.Area, + }); } /// @@ -113,38 +115,23 @@ public sealed partial class ShuttleSystem return !grid.Grid.GetLocalTilesIntersecting(area).Any(); } - /// - /// Tries to find the most valid docking config for the station. - /// - private DockingConfig? GetDockingConfig(StationDataComponent dataComponent) + private DockingConfig? GetDockingConfig(ShuttleComponent component, EntityUid targetGrid) { - // Find the largest grid associated with the station, then try all combinations of docks on it with - // all of them on the shuttle and try to find the most appropriate. - if (dataComponent.EmergencyShuttle == null) return null; - - var targetGrid = GetLargestGrid(dataComponent); - - if (targetGrid == null) return null; - var gridDocks = GetDocks(targetGrid.Value); + var gridDocks = GetDocks(targetGrid); if (gridDocks.Count <= 0) return null; var xformQuery = GetEntityQuery(); - var targetGridGrid = Comp(targetGrid.Value); - var targetGridXform = xformQuery.GetComponent(targetGrid.Value); - var targetGridMatrix = targetGridXform.WorldMatrix; + var targetGridGrid = Comp(targetGrid); + var targetGridXform = xformQuery.GetComponent(targetGrid); var targetGridAngle = targetGridXform.WorldRotation.Reduced(); var targetGridRotation = targetGridAngle.ToVec(); - var shuttleDocks = GetDocks(dataComponent.EmergencyShuttle.Value); - var shuttleAABB = Comp(dataComponent.EmergencyShuttle.Value).Grid.LocalAABB; + var shuttleDocks = GetDocks(component.Owner); + var shuttleAABB = Comp(component.Owner).Grid.LocalAABB; var validDockConfigs = new List(); - - if (TryComp(dataComponent.EmergencyShuttle, out var shuttle)) - { - SetPilotable(shuttle, false); - } + SetPilotable(component, false); if (shuttleDocks.Count > 0) { @@ -168,7 +155,7 @@ public sealed partial class ShuttleSystem out var targetAngle)) continue; // Can't just use the AABB as we want to get bounds as tight as possible. - var spawnPosition = new EntityCoordinates(targetGrid.Value, matty.Transform(Vector2.Zero)); + var spawnPosition = new EntityCoordinates(targetGrid, matty.Transform(Vector2.Zero)); spawnPosition = new EntityCoordinates(targetGridXform.MapUid!.Value, spawnPosition.ToMapPos(EntityManager)); var dockedBounds = new Box2Rotated(shuttleAABB.Translated(spawnPosition.Position), targetGridAngle, spawnPosition.Position); @@ -240,7 +227,7 @@ public sealed partial class ShuttleSystem .ThenBy(x => Math.Abs(Angle.ShortestDistance(x.Angle.Reduced(), targetGridAngle).Theta)).ToList(); var location = validDockConfigs.First(); - location.TargetGrid = targetGrid.Value; + location.TargetGrid = targetGrid; // TODO: Ideally do a hyperspace warpin, just have it run on like a 10 second timer. return location; @@ -249,72 +236,33 @@ public sealed partial class ShuttleSystem /// /// Calls the emergency shuttle for the station. /// - /// - /// Should we show the debug data and not actually call it. public void CallEmergencyShuttle(EntityUid? stationUid) { if (!TryComp(stationUid, out var stationData) || - !TryComp(stationData.EmergencyShuttle, out var xform)) return; + !TryComp(stationData.EmergencyShuttle, out var xform) || + !TryComp(stationData.EmergencyShuttle, out var shuttle)) return; - var config = GetDockingConfig(stationData); + var targetGrid = GetLargestGrid(stationData); - if (config != null) + // UHH GOOD LUCK + if (targetGrid == null) { - // Set position - xform.Coordinates = config.Coordinates; - xform.WorldRotation = config.Angle; - - // Connect everything - foreach (var (dockA, dockB) in config.Docks) - { - _dockSystem.Dock(dockA, dockB); - } + _logger.Add(LogType.EmergencyShuttle, LogImpact.High, $"Emergency shuttle {ToPrettyString(stationUid.Value)} unable to dock with station {ToPrettyString(stationUid.Value)}"); + _chatSystem.DispatchStationAnnouncement(stationUid.Value, Loc.GetString("emergency-shuttle-good-luck"), playDefaultSound: false); + // TODO: Need filter extensions or something don't blame me. + SoundSystem.Play("/Audio/Misc/notice1.ogg", Filter.Broadcast()); + return; + } + if (TryHyperspaceDock(shuttle, targetGrid.Value)) + { _logger.Add(LogType.EmergencyShuttle, LogImpact.High, $"Emergency shuttle {ToPrettyString(stationUid.Value)} docked with stations"); _chatSystem.DispatchStationAnnouncement(stationUid.Value, Loc.GetString("emergency-shuttle-docked", ("time", $"{_consoleAccumulator:0}")), playDefaultSound: false); // TODO: Need filter extensions or something don't blame me. SoundSystem.Play("/Audio/Announcements/shuttle_dock.ogg", Filter.Broadcast()); - - // Bolt all the airlocks so they don't stuff around with them. - SetDockBolts(stationData.EmergencyShuttle.Value, true); } else { - var shuttleAABB = Comp(stationData.EmergencyShuttle.Value).Grid.WorldAABB; - Box2? aabb = null; - - // Spawn nearby. - foreach (var gridUid in stationData.Grids) - { - var grid = Comp(gridUid).Grid; - var gridAABB = grid.WorldAABB; - aabb = aabb?.Union(gridAABB) ?? gridAABB; - } - - // UHH GOOD LUCK - if (aabb == null) - { - _logger.Add(LogType.EmergencyShuttle, LogImpact.High, $"Emergency shuttle {ToPrettyString(stationUid.Value)} unable to dock with station {ToPrettyString(stationUid.Value)}"); - _chatSystem.DispatchStationAnnouncement(stationUid.Value, Loc.GetString("emergency-shuttle-good-luck"), playDefaultSound: false); - // TODO: Need filter extensions or something don't blame me. - SoundSystem.Play("/Audio/Misc/notice1.ogg", Filter.Broadcast()); - - - return; - } - - var minRadius = MathF.Max(aabb.Value.Width, aabb.Value.Height) + MathF.Max(shuttleAABB.Width, shuttleAABB.Height); - var spawnPos = aabb.Value.Center + _random.NextVector2(minRadius, minRadius + 10f); - - if (TryComp(stationData.EmergencyShuttle, out var shuttleBody)) - { - shuttleBody.LinearVelocity = Vector2.Zero; - shuttleBody.AngularVelocity = 0f; - } - - xform.WorldPosition = spawnPos; - xform.WorldRotation = _random.NextAngle(); - _logger.Add(LogType.EmergencyShuttle, LogImpact.High, $"Emergency shuttle {ToPrettyString(stationUid.Value)} unable to find a valid docking port for {ToPrettyString(stationUid.Value)}"); _chatSystem.DispatchStationAnnouncement(stationUid.Value, Loc.GetString("emergency-shuttle-nearby"), playDefaultSound: false); // TODO: Need filter extensions or something don't blame me. @@ -443,9 +391,18 @@ public sealed partial class ShuttleSystem _centcommMap = _mapManager.CreateMap(); _mapManager.SetMapPaused(_centcommMap.Value, true); - // Load Centcomm, when we get it! - // var (_, centcomm) = _loader.LoadBlueprint(_centcommMap.Value, "/Maps/Salvage/saltern.yml", new MapLoadOptions()); - // _centcomm = centcomm; + // Load Centcomm + var centcommPath = _configManager.GetCVar(CCVars.CentcommMap); + + if (!string.IsNullOrEmpty(centcommPath)) + { + var (_, centcomm) = _loader.LoadBlueprint(_centcommMap.Value, "/Maps/centcomm.yml"); + _centcomm = centcomm; + } + else + { + _sawmill.Info("No centcomm map found, skipping setup."); + } foreach (var comp in EntityQuery(true)) { diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.Hyperspace.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.Hyperspace.cs index d240e93dae..a6dc433c7a 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.Hyperspace.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.Hyperspace.cs @@ -1,3 +1,4 @@ +using System.Diagnostics.CodeAnalysis; using Content.Server.Buckle.Components; using Content.Server.Doors.Components; using Content.Server.Doors.Systems; @@ -51,20 +52,49 @@ public sealed partial class ShuttleSystem float startupTime = DefaultStartupTime, float hyperspaceTime = DefaultTravelTime) { - if (HasComp(component.Owner)) - { - _sawmill.Warning($"Tried queuing {ToPrettyString(component.Owner)} which already has HyperspaceComponent?"); - return; - } + if (!TrySetupHyperspace(component.Owner, out var hyperspace)) + return; - SetDocks(component.Owner, false); - var hyperspace = AddComp(component.Owner); hyperspace.StartupTime = startupTime; hyperspace.TravelTime = hyperspaceTime; hyperspace.Accumulator = hyperspace.StartupTime; hyperspace.TargetCoordinates = coordinates; + } + + /// + /// Moves a shuttle from its current position to docked on the target one. Goes through the hyperspace map while the timer is running. + /// + public void Hyperspace(ShuttleComponent component, + EntityUid target, + float startupTime = DefaultStartupTime, + float hyperspaceTime = DefaultTravelTime) + { + if (!TrySetupHyperspace(component.Owner, out var hyperspace)) + return; + + hyperspace.StartupTime = startupTime; + hyperspace.TravelTime = hyperspaceTime; + hyperspace.Accumulator = hyperspace.StartupTime; + hyperspace.TargetUid = target; + } + + private bool TrySetupHyperspace(EntityUid uid, [NotNullWhen(true)] out HyperspaceComponent? component) + { + component = null; + + if (HasComp(uid)) + { + _sawmill.Warning($"Tried queuing {ToPrettyString(uid)} which already has HyperspaceComponent?"); + return false; + } + + // TODO: Maybe move this to docking instead? + SetDocks(uid, false); + + component = AddComp(uid); // TODO: Need BroadcastGrid to not be bad. SoundSystem.Play(_startupSound.GetSound(), Filter.Pvs(component.Owner, GetSoundRange(component.Owner), entityManager: EntityManager), _startupSound.Params); + return true; } private void UpdateHyperspace(float frameTime) @@ -107,8 +137,8 @@ public sealed partial class ShuttleSystem // Arrive. case HyperspaceState.Travelling: DoTheDinosaur(xform); - SetDocks(comp.Owner, true); SetDockBolts(comp.Owner, false); + SetDocks(comp.Owner, true); if (TryComp(comp.Owner, out body)) { @@ -118,7 +148,15 @@ public sealed partial class ShuttleSystem body.AngularDamping = ShuttleIdleAngularDamping; } - xform.Coordinates = comp.TargetCoordinates; + if (comp.TargetUid != null && TryComp(comp.Owner, out var shuttle)) + { + TryHyperspaceDock(shuttle, comp.TargetUid.Value); + } + else + { + xform.Coordinates = comp.TargetCoordinates; + } + SoundSystem.Play(_arrivalSound.GetSound(), Filter.Pvs(comp.Owner, GetSoundRange(comp.Owner), entityManager: EntityManager)); RemComp(comp.Owner); @@ -141,11 +179,11 @@ public sealed partial class ShuttleSystem private void SetDockBolts(EntityUid uid, bool enabled) { - foreach (var (dock, door, xform) in EntityQuery(true)) + foreach (var (_, door, xform) in EntityQuery(true)) { if (xform.ParentUid != uid) continue; - _doors.TryClose(dock.Owner); + _doors.TryClose(door.Owner); door.SetBoltsWithAudio(enabled); } } @@ -209,4 +247,52 @@ public sealed partial class ShuttleSystem toKnock.Add(child.Value); } } + + private bool TryHyperspaceDock(ShuttleComponent component, EntityUid targetUid) + { + if (!TryComp(component.Owner, out var xform) || + !TryComp(targetUid, out var targetXform)) return false; + + var config = GetDockingConfig(component, targetUid); + + if (config != null) + { + // Set position + xform.Coordinates = config.Coordinates; + xform.WorldRotation = config.Angle; + + // Connect everything + foreach (var (dockA, dockB) in config.Docks) + { + _dockSystem.Dock(dockA, dockB); + } + + return true; + } + + var shuttleAABB = Comp(component.Owner).Grid.WorldAABB; + Box2? aabb = null; + + // Spawn nearby. + foreach (var grid in _mapManager.GetAllMapGrids(targetXform.MapID)) + { + var gridAABB = grid.WorldAABB; + aabb = aabb?.Union(gridAABB) ?? gridAABB; + } + + aabb ??= new Box2(); + + var minRadius = MathF.Max(aabb.Value.Width, aabb.Value.Height) + MathF.Max(shuttleAABB.Width, shuttleAABB.Height); + var spawnPos = aabb.Value.Center + _random.NextVector2(minRadius, minRadius + 10f); + + if (TryComp(component.Owner, out var shuttleBody)) + { + shuttleBody.LinearVelocity = Vector2.Zero; + shuttleBody.AngularVelocity = 0f; + } + + xform.WorldPosition = spawnPos; + xform.WorldRotation = _random.NextAngle(); + return false; + } } diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index b0d706186f..3d52361f53 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -1,5 +1,6 @@ using Robust.Shared; using Robust.Shared.Configuration; +using Robust.Shared.Utility; namespace Content.Shared.CCVar { @@ -934,6 +935,12 @@ namespace Content.Shared.CCVar public static readonly CVarDef EmergencyShuttleEnabled = CVarDef.Create("shuttle.emergency_enabled", true, CVar.SERVERONLY); + /// + /// The map to load for centcomm for the emergency shuttle to dock to. + /// + public static readonly CVarDef CentcommMap = + CVarDef.Create("shuttle.centcomm_map", "/Maps/centcomm.yml", CVar.SERVERONLY); + /* * VIEWPORT */ diff --git a/Resources/Locale/en-US/shuttles/emergency.ftl b/Resources/Locale/en-US/shuttles/emergency.ftl index ad3a962c3c..84fb0957c0 100644 --- a/Resources/Locale/en-US/shuttles/emergency.ftl +++ b/Resources/Locale/en-US/shuttles/emergency.ftl @@ -11,7 +11,7 @@ emergency-shuttle-command-dock-desc = Calls the emergency shuttle and docks it t emergency-shuttle-command-launch-desc = Early launches the emergency shuttle if possible. # Emergency shuttle -emergency-shuttle-left = The Emergency Shuttle has left the station. Estimate {$transitTime} seconds until the shuttle clears the area. +emergency-shuttle-left = The Emergency Shuttle has left the station. Estimate {$transitTime} seconds until the shuttle arives at Centcomm. emergency-shuttle-launch-time = The emergency shuttle will launch in {$consoleAccumulator} seconds. emergency-shuttle-docked = The Emergency Shuttle has docked with the station. It will leave in {$time} seconds. emergency-shuttle-good-luck = The Emergency Shuttle is unable to find a station. Good luck. diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml new file mode 100644 index 0000000000..c159539c5c --- /dev/null +++ b/Resources/Maps/centcomm.yml @@ -0,0 +1,29004 @@ +meta: + format: 2 + name: DemoStation + author: Space-Wizards + postmapinit: false +tilemap: + 0: space + 1: FloorArcadeBlue + 2: FloorArcadeBlue2 + 3: FloorArcadeRed + 4: FloorAsteroidIronsand1 + 5: FloorAsteroidIronsand2 + 6: FloorAsteroidIronsand3 + 7: FloorAsteroidIronsand4 + 8: FloorBoxing + 9: FloorCarpetClown + 10: FloorCarpetOffice + 11: FloorEighties + 12: FloorGrassJungle + 13: FloorGym + 14: FloorMetalDiamond + 15: FloorShuttleBlue + 16: FloorShuttleOrange + 17: FloorShuttlePurple + 18: FloorShuttleRed + 19: FloorShuttleWhite + 20: floor_asteroid_coarse_sand0 + 21: floor_asteroid_coarse_sand1 + 22: floor_asteroid_coarse_sand2 + 23: floor_asteroid_coarse_sand_dug + 24: floor_asteroid_sand + 25: floor_asteroid_tile + 26: floor_bar + 27: floor_blue + 28: floor_blue_circuit + 29: floor_clown + 30: floor_dark + 31: floor_elevator_shaft + 32: floor_freezer + 33: floor_glass + 34: floor_gold + 35: floor_grass + 36: floor_green_circuit + 37: floor_hydro + 38: floor_kitchen + 39: floor_laundry + 40: floor_lino + 41: floor_mime + 42: floor_mono + 43: floor_reinforced + 44: floor_rglass + 45: floor_rock_vault + 46: floor_showroom + 47: floor_silver + 48: floor_snow + 49: floor_steel + 50: floor_steel_dirty + 51: floor_techmaint + 52: floor_white + 53: floor_wood + 54: lattice + 55: plating +grids: +- settings: + chunksize: 16 + tilesize: 1 + chunks: + - ind: -1,2 + tiles: AAAAAAAAAAA3AAAANwAAADcAAAAqAAAANwAAADcAAAA0AAAALAAAADQAAAA1AAAANQAAADUAAAA1AAAANQAAAAAAAAAAAAAAKgAAACoAAAArAAAAKwAAACsAAAAqAAAANAAAACwAAAA0AAAANQAAADUAAAAjAAAANQAAADUAAAAAAAAAAAAAADcAAAA3AAAANwAAACoAAAA3AAAANwAAADQAAAAsAAAANAAAADUAAAAjAAAAIwAAACMAAAA1AAAAAAAAAAAAAAAAAAAANgAAADYAAAA2AAAANgAAACoAAAA0AAAALAAAADQAAAAjAAAAIwAAACMAAAAjAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAA2AAAAAAAAADYAAAAqAAAANAAAACwAAAA0AAAAIwAAACMAAAAjAAAAIwAAACMAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAA2AAAAKgAAADQAAAAsAAAANAAAACMAAAAjAAAAIwAAACMAAAAjAAAAAAAAAAAAAAAAAAAANgAAADYAAAA2AAAANgAAACoAAAA0AAAALAAAADQAAAA1AAAAIwAAACMAAAAjAAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAA3AAAANAAAACwAAAA0AAAANQAAADUAAAAjAAAANQAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAA2AAAAKgAAADQAAAAsAAAANAAAADUAAAA1AAAANQAAADUAAAA1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAACoAAAA0AAAALAAAADQAAAA1AAAANQAAADUAAAA1AAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAAqAAAANAAAACwAAAA0AAAANAAAADUAAAA1AAAANQAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAADQAAAA0AAAALAAAADQAAAA0AAAANQAAADQAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACoAAAAqAAAANAAAADQAAAAsAAAANAAAADQAAAA0AAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAACoAAAA0AAAANAAAACwAAAAsAAAALAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqAAAAKgAAADQAAAA0AAAANAAAADQAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACoAAAAqAAAANwAAACoAAAA3AAAAKgAAAA== + - ind: 0,1 + tiles: NAAAACwAAAA0AAAAKgAAAAAAAAA2AAAAAAAAAAAAAAAAAAAAAAAAADYAAAA2AAAANgAAAAAAAAAAAAAANgAAADQAAAAsAAAANAAAADcAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA0AAAALAAAADQAAAAqAAAAAAAAAAAAAAA2AAAANgAAADYAAAAAAAAAAAAAADYAAAAAAAAAAAAAADYAAAA2AAAANAAAACwAAAA0AAAAKgAAAAAAAAAAAAAAAAAAADYAAAA2AAAANgAAADYAAAAAAAAAAAAAADYAAAA2AAAAAAAAADQAAAAsAAAANAAAACoAAAAAAAAAAAAAADYAAAA2AAAAAAAAAAAAAAA2AAAANgAAADYAAAA2AAAAAAAAAAAAAAA0AAAALAAAADQAAAA3AAAAKgAAADYAAAA2AAAAAAAAAAAAAAA2AAAANgAAAAAAAAA2AAAANgAAADYAAAAAAAAANAAAACwAAAA0AAAANAAAACoAAAAqAAAAAAAAAAAAAAA2AAAANgAAADYAAAA2AAAAAAAAAAAAAAA2AAAANgAAADQAAAA0AAAALAAAADQAAAA0AAAAKgAAACoAAAA2AAAANgAAAAAAAAA2AAAANgAAADYAAAAAAAAANgAAADcAAAA1AAAANAAAADQAAAAsAAAANAAAADQAAAAqAAAAKgAAAAAAAAAAAAAANgAAAAAAAAA2AAAANgAAADcAAAA3AAAANQAAADUAAAA0AAAANAAAACwAAAA0AAAANAAAACoAAAAqAAAAAAAAADYAAAAAAAAAAAAAADcAAAA3AAAAMwAAADUAAAAjAAAAIwAAADQAAAA0AAAALAAAADQAAAA0AAAANwAAACoAAAAqAAAAKgAAADcAAAA3AAAANwAAACoAAAAjAAAAIwAAACMAAAAjAAAANAAAADQAAAAsAAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAKgAAADQAAAA0AAAAIwAAACMAAAAjAAAAIwAAACMAAAA0AAAANAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACoAAAAsAAAALAAAACMAAAAjAAAAIwAAACMAAAA0AAAANAAAACwAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAAqAAAANAAAADQAAAA1AAAAIwAAACMAAAA0AAAANAAAACwAAAA0AAAANAAAADcAAAAqAAAAKgAAACoAAAA3AAAANwAAADcAAAA3AAAANQAAADUAAAA0AAAANAAAACwAAAA0AAAANAAAACoAAAAqAAAAAAAAAAAAAAAAAAAAAAAAADcAAAA3AAAANwAAAA== + - ind: 0,2 + tiles: NQAAADQAAAA0AAAALAAAADQAAAA0AAAAKgAAACoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAA3AAAANwAAADQAAAA0AAAALAAAADQAAAA0AAAAKgAAACoAAAA2AAAANgAAAAAAAAAAAAAAAAAAADYAAAA2AAAANgAAADcAAAA0AAAALAAAADQAAAA0AAAAKgAAACoAAAAAAAAAAAAAADYAAAA2AAAAAAAAADYAAAA2AAAAAAAAAAAAAAAAAAAANAAAACwAAAA0AAAANwAAACoAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAA2AAAAAAAAAAAAAAAAAAAAAAAAADQAAAAsAAAANAAAACoAAAA2AAAANgAAADYAAAAAAAAAAAAAADYAAAA2AAAANgAAAAAAAAAAAAAANgAAADYAAAA0AAAALAAAADQAAAAqAAAAAAAAAAAAAAA2AAAANgAAADYAAAA2AAAAAAAAADYAAAA2AAAANgAAADYAAAAAAAAANAAAACwAAAA0AAAAKgAAAAAAAAAAAAAAAAAAADYAAAA2AAAAAAAAAAAAAAAAAAAANgAAADYAAAAAAAAAAAAAADQAAAAsAAAANAAAADcAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA0AAAALAAAADQAAAAqAAAAAAAAAAAAAAAAAAAANgAAADYAAAAAAAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAANAAAACwAAAA0AAAAKgAAAAAAAAAAAAAANgAAADYAAAAAAAAAAAAAAAAAAAA2AAAANgAAAAAAAAAAAAAANgAAADQAAAAsAAAANAAAACoAAAAAAAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAA2AAAANgAAADYAAAAsAAAANAAAADQAAAA3AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAAAAAAANAAAADQAAAAqAAAAKgAAADYAAAA2AAAAAAAAAAAAAAA2AAAANgAAADYAAAAAAAAAAAAAAAAAAAA2AAAANgAAADQAAAAqAAAAKgAAADYAAAA2AAAAAAAAAAAAAAA2AAAANgAAAAAAAAA2AAAANgAAAAAAAAAAAAAAAAAAADYAAAAqAAAAKgAAADYAAAA2AAAAAAAAAAAAAAA2AAAANgAAAAAAAAAAAAAAAAAAADYAAAA2AAAAAAAAAAAAAAAAAAAAKgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAAA== + - ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAACoAAAA0AAAALAAAADQAAAA1AAAANQAAADUAAAA1AAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAA3AAAANAAAACwAAAA0AAAANQAAADUAAAAjAAAANQAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAA2AAAAKgAAADQAAAAsAAAANAAAADUAAAAjAAAAIwAAACMAAAA1AAAAAAAAAAAAAAAAAAAANgAAADYAAAA2AAAANgAAACoAAAA0AAAALAAAADQAAAAjAAAAIwAAACMAAAAjAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAA2AAAAAAAAADYAAAAqAAAANAAAACwAAAA0AAAAIwAAACMAAAAjAAAAIwAAACMAAAAAAAAAAAAAAAAAAAA2AAAANgAAADYAAAA2AAAAKgAAADQAAAAsAAAANAAAACMAAAAjAAAAIwAAACMAAAAjAAAAAAAAAAAAAAA3AAAANwAAADcAAAAqAAAANwAAADcAAAA0AAAALAAAADQAAAA1AAAAIwAAACMAAAAjAAAANQAAAAAAAAAAAAAAKgAAACoAAAArAAAAKwAAACsAAAAqAAAANAAAACwAAAA0AAAANQAAADUAAAAjAAAANQAAADUAAAAAAAAAAAAAADcAAAA3AAAANwAAACoAAAA3AAAANwAAADQAAAAsAAAANAAAADUAAAA1AAAANQAAADUAAAA1AAAAAAAAAAAAAAAqAAAAKgAAACsAAAArAAAAKwAAACoAAAA0AAAALAAAADQAAAA1AAAANQAAADUAAAA1AAAANQAAAAAAAAAAAAAANwAAADcAAAA3AAAAKgAAADcAAAA3AAAANAAAACwAAAA0AAAAIwAAADUAAAA1AAAANQAAADUAAAAAAAAAAAAAAAAAAAA2AAAANgAAADYAAAA2AAAAKgAAADQAAAAsAAAANAAAACMAAAAjAAAANQAAADUAAAA1AAAAAAAAAAAAAAAAAAAAAAAAADYAAAAAAAAANgAAACoAAAA0AAAALAAAADQAAAAjAAAAIwAAACMAAAAjAAAAIwAAAAAAAAAAAAAAAAAAADYAAAA2AAAANgAAADYAAAAqAAAANAAAACwAAAA0AAAAIwAAACMAAAA1AAAANQAAADUAAAAAAAAAAAAAADcAAAA3AAAANwAAACoAAAA3AAAANwAAADQAAAAsAAAANAAAACMAAAA1AAAANQAAADUAAAA1AAAAAAAAAAAAAAAqAAAAKgAAACsAAAArAAAAKwAAACoAAAA0AAAALAAAADQAAAA1AAAANQAAADUAAAA1AAAANQAAAA== + - ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACoAAAAqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAKgAAACoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAADQAAAAqAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAA0AAAANAAAADcAAAA2AAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAALAAAADQAAAAqAAAAAAAAAAAAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANAAAACwAAAA0AAAAKgAAAAAAAAAAAAAANgAAAAAAAAA2AAAANgAAADYAAAAAAAAAAAAAADYAAAAAAAAAAAAAAA== + - ind: 1,2 + tiles: NwAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADcAAAA3AAAANAAAADQAAAAsAAAAIwAAADcAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANwAAADcAAAA0AAAANAAAACwAAAAqAAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA3AAAANwAAADQAAAA0AAAANwAAADcAAAA3AAAAKgAAADcAAAA3AAAANwAAADcAAAAqAAAAKgAAACoAAAA3AAAANwAAADcAAAA3AAAAKgAAADcAAAA3AAAANAAAADQAAAA0AAAANAAAADcAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANwAAADQAAAAAAAAAKgAAADQAAAA0AAAANAAAADQAAAAqAAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADcAAAA0AAAAAAAAACoAAAA0AAAANAAAADQAAAA0AAAANwAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA3AAAANAAAADYAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADQAAAA2AAAANgAAADcAAAA1AAAANQAAADUAAAA1AAAANQAAADcAAAA1AAAANQAAADUAAAA1AAAANQAAADcAAAA0AAAANgAAAAAAAAA3AAAANQAAADUAAAA1AAAANQAAADUAAAA3AAAANQAAADEAAAAxAAAAMQAAADUAAAA3AAAANAAAAAAAAAAAAAAANwAAADcAAAAqAAAAKgAAACoAAAA3AAAANwAAADUAAAAxAAAAMQAAADEAAAA1AAAAKgAAADQAAAAAAAAAAAAAADcAAAA1AAAANQAAADUAAAA1AAAANQAAADcAAAA1AAAAMQAAADEAAAAxAAAANQAAACoAAAA0AAAAAAAAAAAAAAAqAAAANQAAADEAAAAxAAAAMQAAADUAAAAqAAAANQAAADEAAAAxAAAAMQAAADUAAAA3AAAANAAAADYAAAAAAAAAKgAAADUAAAAxAAAAMQAAADEAAAA1AAAANwAAADUAAAA1AAAANQAAADUAAAA1AAAANwAAADQAAAA2AAAANgAAACoAAAA1AAAAMQAAADEAAAAxAAAANQAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAqAAAANgAAADYAAAA3AAAANQAAADUAAAA1AAAANQAAADUAAAA3AAAANwAAADcAAAA3AAAAKwAAACsAAAArAAAAKwAAAA== + - ind: 1,1 + tiles: NgAAADYAAAA3AAAAKwAAACsAAAArAAAAKgAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAAAcAAAAHAAAADYAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAzAAAAMwAAADMAAAAAAAAAKgAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAzAAAAAAAAACoAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA3AAAANwAAADcAAAA3AAAAKgAAADcAAAA3AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANwAAADQAAAAqAAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAKgAAADcAAAA0AAAAKgAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAKgAAACoAAAA0AAAANAAAADcAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAKgAAACoAAAA0AAAANAAAACwAAAA3AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAKgAAACoAAAA0AAAANAAAACwAAAAjAAAANwAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAKgAAACoAAAA0AAAANAAAACwAAAAjAAAAIwAAADcAAAA3AAAANwAAACoAAAAqAAAAKgAAACoAAAA3AAAANwAAADcAAAA0AAAANAAAACwAAAAjAAAAIwAAACMAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAAqAAAANAAAACwAAAAjAAAAIwAAACMAAAAjAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAAKgAAACwAAAAjAAAAIwAAACMAAAAjAAAAIwAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAACoAAAA0AAAALAAAACMAAAAjAAAAIwAAACMAAAA3AAAANwAAADcAAAAqAAAAKgAAACoAAAAqAAAANwAAADcAAAA3AAAANAAAADQAAAAsAAAAIwAAACMAAAAjAAAANwAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANwAAADcAAAA0AAAANAAAACwAAAAjAAAAIwAAAA== + - ind: 1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAADcAAAAqAAAAKgAAACoAAAAqAAAAKgAAADcAAAA3AAAAKgAAAAAAAAA2AAAANgAAADcAAAA3AAAANwAAADcAAAAzAAAAHAAAABwAAAAcAAAAHAAAABwAAAAzAAAAHAAAACQAAAA2AAAANgAAADcAAAA3AAAAKwAAACsAAAAqAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAABwAAAAkAAAANgAAADYAAAA3AAAAKwAAACsAAAArAAAAKgAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAcAAAAJAAAAA== + - ind: 1,3 + tiles: NgAAADYAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAALAAAACsAAAArAAAAKwAAACsAAAArAAAAKwAAADYAAAAAAAAANwAAADcAAAA3AAAANwAAACwAAAAsAAAALAAAACwAAAAsAAAAKwAAACsAAAArAAAAKwAAACsAAAAAAAAAAAAAACoAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAAKwAAACsAAAArAAAANgAAADYAAAAqAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAArAAAAKwAAAAAAAAAAAAAAKgAAACoAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACsAAAAAAAAAAAAAAAAAAAAqAAAAKgAAACoAAAAqAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAACoAAAAqAAAAKgAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACoAAAAqAAAAKgAAACoAAAAsAAAALAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqAAAAKgAAACoAAAAqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + - ind: 2,3 + tiles: KwAAACsAAAArAAAAKwAAACsAAAArAAAAKwAAACwAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAAAAAACsAAAArAAAAKwAAACsAAAArAAAAKwAAACwAAAAsAAAALAAAACwAAAAsAAAANwAAADcAAAA3AAAANwAAAAAAAAArAAAAKwAAACsAAAArAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACoAAAA2AAAAKwAAACsAAAArAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAqAAAAAAAAACsAAAArAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAqAAAAKgAAAAAAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAAKgAAACoAAAAqAAAAKgAAAAAAAAAAAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACoAAAAqAAAAKgAAACoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAsAAAALAAAACwAAAAqAAAAKgAAACoAAAAqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqAAAAKgAAACoAAAAqAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + - ind: 2,2 + tiles: IwAAACMAAAAsAAAANAAAADQAAAAqAAAAKgAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAACMAAAAsAAAANAAAADQAAAAqAAAAKgAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAAsAAAANAAAADQAAAAqAAAAKgAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAAKgAAACoAAAA3AAAAKgAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAACwAAAA0AAAANwAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADcAAAAqAAAAKgAAACoAAAAqAAAAKgAAADcAAAAsAAAANAAAADcAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAAqAAAANAAAADQAAAA0AAAANAAAADQAAAAqAAAALAAAADQAAAA3AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAAKgAAADQAAAA0AAAANAAAADQAAAA0AAAAKgAAACwAAAA0AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAsAAAANAAAADcAAAArAAAAKwAAACsAAAA3AAAANQAAADUAAAA1AAAANwAAADUAAAA1AAAANQAAADcAAAA2AAAALAAAADQAAAAqAAAAKwAAACsAAAArAAAANwAAADUAAAA1AAAANQAAADcAAAA1AAAANQAAADUAAAA3AAAAAAAAACwAAAA0AAAAKgAAACsAAAArAAAAKwAAADcAAAA3AAAAKgAAADcAAAA3AAAANwAAACoAAAA3AAAANwAAAAAAAAAsAAAANAAAACoAAAArAAAAKwAAACsAAAAqAAAAKwAAACsAAAArAAAAKwAAACsAAAArAAAAKwAAACoAAAAAAAAALAAAADQAAAA3AAAAKwAAACsAAAArAAAAKgAAACsAAAArAAAAKwAAACsAAAArAAAAKwAAACsAAAAqAAAAAAAAACwAAAA0AAAAKgAAACsAAAArAAAAKwAAADcAAAArAAAAKwAAACsAAAA3AAAANwAAACoAAAA3AAAANwAAADYAAAAqAAAAKgAAADcAAAA3AAAANwAAADcAAAA3AAAAKwAAACsAAAArAAAANwAAADUAAAA1AAAANQAAADcAAAA2AAAAKwAAACsAAAArAAAAKwAAACsAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA1AAAANQAAADUAAAA3AAAAAAAAAA== + - ind: 3,2 + tiles: NwAAADcAAAA3AAAANgAAAAAAAAA2AAAANgAAAAAAAAAAAAAANgAAADcAAAA3AAAAKwAAACsAAAArAAAAKwAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAADYAAAA2AAAANgAAADYAAAA2AAAANwAAACoAAAAqAAAAKgAAADcAAAAqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAAKgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAANgAAAAAAAAAAAAAAAAAAAAAAAAA2AAAAKgAAADcAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAACoAAAA2AAAAAAAAADYAAAA2AAAAAAAAAAAAAAAAAAAANgAAADYAAAAAAAAAAAAAADYAAAA2AAAAAAAAADYAAAAqAAAAAAAAAAAAAAAAAAAANgAAADYAAAAAAAAANgAAADYAAAAAAAAAAAAAADYAAAA2AAAAAAAAAAAAAAAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAA2AAAANgAAADYAAAAAAAAAAAAAADYAAAA2AAAAAAAAAAAAAAAAAAAANwAAADcAAAA2AAAAAAAAAAAAAAAAAAAANgAAADYAAAAAAAAAAAAAADYAAAA2AAAAAAAAAAAAAAAAAAAANwAAADcAAAArAAAANgAAADYAAAAAAAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANwAAADcAAAArAAAALAAAAAAAAAA2AAAANgAAADYAAAAAAAAANgAAAAAAAAA2AAAANgAAAAAAAAAAAAAAAAAAADcAAAArAAAALAAAACwAAAAAAAAANgAAADYAAAAAAAAAAAAAADYAAAAAAAAAAAAAADYAAAA2AAAAAAAAAAAAAAAqAAAAKwAAACwAAAAsAAAANgAAADYAAAAAAAAAAAAAAAAAAAA2AAAAAAAAAAAAAAAAAAAANgAAADYAAAAAAAAAKgAAACwAAAAsAAAALAAAADYAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAA2AAAAAAAAACoAAAAsAAAALAAAACwAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA3AAAALAAAACwAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAKgAAACwAAAAsAAAALAAAAA== + - ind: 3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAAAAAAANgAAADYAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqAAAAAAAAAAAAAAAAAAAANgAAADYAAAAAAAAANgAAADYAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAAKgAAAAAAAAAAAAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANwAAADcAAAA3AAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAAAAAAANwAAACoAAAAqAAAAKgAAADcAAAA3AAAANwAAADcAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAAAAAAANwAAADcAAAArAAAAKwAAACsAAAArAAAANwAAADMAAAA3AAAANwAAAAAAAAAAAAAANgAAADYAAAAAAAAANwAAADcAAAArAAAALAAAACwAAAAsAAAALAAAADcAAAAqAAAANwAAADcAAAA3AAAAKgAAACoAAAAqAAAANwAAADcAAAArAAAALAAAACwAAAAsAAAALAAAACwAAAA0AAAANAAAADQAAAAqAAAAKwAAACsAAAArAAAAKwAAACsAAAAqAAAAKwAAACsAAAArAAAAKwAAACsAAAArAAAALAAAACwAAAAsAAAAKgAAACwAAAAsAAAALAAAACwAAAAsAAAAKgAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAADQAAAA0AAAANAAAACoAAAArAAAAKwAAACsAAAArAAAAKwAAACoAAAArAAAAKwAAACsAAAArAAAAKwAAACsAAAA3AAAANwAAADcAAAA3AAAANwAAACoAAAAqAAAAKgAAADcAAAA3AAAAKwAAACwAAAAsAAAALAAAACwAAAAsAAAANwAAADcAAAA3AAAANwAAADYAAAA2AAAAAAAAAAAAAAAAAAAANwAAADcAAAArAAAALAAAACwAAAAsAAAALAAAAA== + - ind: 2,1 + tiles: HAAAABwAAAAcAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAACoAAAArAAAAKwAAACsAAAA3AAAANgAAADcAAAAzAAAAMwAAADMAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAMwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAjAAAAIwAAACMAAAAjAAAAIwAAACMAAAAqAAAAKgAAACoAAAA3AAAANwAAADcAAAA3AAAAIwAAACMAAAAjAAAAIwAAACMAAAA1AAAANQAAACMAAAAjAAAAKgAAACwAAAA0AAAANwAAACMAAAAjAAAAIwAAACMAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAAIwAAADcAAAAsAAAANAAAADcAAAAqAAAAIwAAACMAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAACMAAAAjAAAALAAAADQAAAA0AAAAKgAAACoAAAAjAAAAIwAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAAIwAAACMAAAAsAAAANAAAADQAAAAqAAAAKgAAACMAAAAjAAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAACMAAAAjAAAAIwAAACwAAAA0AAAANAAAACoAAAAqAAAAIwAAACMAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAAjAAAAIwAAACMAAAAjAAAALAAAADQAAAA0AAAAKgAAACoAAAAjAAAAIwAAACMAAAA1AAAANQAAADUAAAAjAAAAIwAAACMAAAAjAAAAIwAAACMAAAAsAAAANAAAADQAAAA3AAAANwAAADcAAAA3AAAAKgAAACoAAAAqAAAANwAAADcAAAAjAAAAIwAAACMAAAAjAAAAIwAAACwAAAA0AAAAKgAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAIwAAACMAAAAjAAAAIwAAACMAAAAjAAAALAAAACoAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACMAAAAjAAAAIwAAACMAAAAjAAAALAAAADQAAAAqAAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAAjAAAAIwAAACMAAAAjAAAALAAAADQAAAA0AAAANwAAADcAAAA3AAAAKgAAACoAAAAqAAAAKgAAADcAAAA3AAAAIwAAACMAAAAjAAAALAAAADQAAAA0AAAAKgAAACoAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAAA== + - ind: 2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAACoAAAA3AAAANwAAACoAAAAqAAAAKgAAACoAAAAqAAAANwAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAkAAAAHAAAADMAAAAcAAAAHAAAABwAAAAcAAAAHAAAADMAAAA3AAAANwAAADcAAAA3AAAAAAAAAAAAAAAkAAAAJAAAABwAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAKgAAACsAAAArAAAANwAAADcAAAAAAAAAJAAAACQAAAAcAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAACoAAAArAAAAKwAAACsAAAA3AAAAAAAAAA== + - ind: 4,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAANgAAADYAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAACoAAAAqAAAANwAAADYAAAA2AAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsAAAAsAAAAKwAAADcAAAAqAAAAKgAAACoAAAA3AAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAALAAAACwAAAArAAAAKwAAACsAAAArAAAANwAAADcAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACsAAAA3AAAANwAAADYAAAA2AAAANgAAADYAAAA3AAAAKgAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAAKwAAADcAAAA3AAAANgAAADYAAAA2AAAAKgAAACsAAAArAAAALAAAACsAAAArAAAAKwAAACsAAAArAAAAKwAAACsAAAA3AAAANwAAACoAAAAqAAAAKgAAADcAAAArAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAAKgAAACsAAAArAAAAKwAAACsAAAAqAAAAKwAAACsAAAAsAAAAKwAAACsAAAArAAAAKwAAACsAAAArAAAAKwAAADcAAAA3AAAAKgAAACoAAAAqAAAANwAAACsAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACsAAAA3AAAANwAAADYAAAA2AAAANgAAACoAAAArAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACsAAAA3AAAANwAAADYAAAA2AAAANgAAADYAAAA3AAAAKgAAAA== + - ind: 4,2 + tiles: LAAAACwAAAAsAAAAKwAAACsAAAArAAAAKwAAADcAAAA3AAAAAAAAAAAAAAAAAAAANgAAADYAAAAAAAAAAAAAACsAAAAsAAAAKwAAADcAAAAqAAAAKgAAACoAAAA3AAAAAAAAAAAAAAAAAAAANgAAADYAAAAAAAAAAAAAAAAAAAAqAAAAKgAAACoAAAA3AAAAAAAAADYAAAAAAAAANgAAAAAAAAAAAAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAKwAAACwAAAArAAAAKgAAAAAAAAA2AAAAAAAAADYAAAAAAAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsAAAAsAAAAKwAAACoAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAAAALAAAACsAAAAqAAAAAAAAADYAAAA2AAAAAAAAAAAAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAACoAAAAqAAAANwAAAAAAAAA2AAAANgAAAAAAAAAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsAAAAsAAAAKwAAADcAAAA3AAAANgAAAAAAAAAAAAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAAAALAAAACsAAAArAAAANwAAADcAAAAAAAAAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAACwAAAArAAAALAAAACsAAAA3AAAANwAAAAAAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAsAAAALAAAACwAAAAsAAAAKwAAADcAAAA2AAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAAAALAAAACsAAAAsAAAALAAAACsAAAAqAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAACwAAAArAAAALAAAACwAAAAsAAAAKgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACoAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAA3AAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + - ind: 4,3 + tiles: KwAAACwAAAArAAAALAAAACwAAAAsAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsAAAAsAAAAKwAAACwAAAAsAAAAKwAAACoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAALAAAACwAAAAsAAAALAAAACsAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAACwAAAArAAAALAAAACsAAAA3AAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsAAAAsAAAAKwAAACsAAAA3AAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAAAAKwAAACsAAAA3AAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAACoAAAAqAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + - ind: 3,3 + tiles: AAAAAAAAAAAAAAAANgAAADYAAAA2AAAAAAAAADYAAAA2AAAAAAAAAAAAAAAAAAAAKgAAACwAAAAsAAAALAAAAAAAAAA2AAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAAAAAAAAAAAACoAAAArAAAALAAAACwAAAA2AAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAANgAAAAAAAAA3AAAAKwAAACwAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAA2AAAANwAAADcAAAArAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAANwAAACsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + - ind: 5,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAACoAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsAAAArAAAANwAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAAAAKwAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAACsAAAAqAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsAAAArAAAANwAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAAAAKwAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAACoAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + - ind: -1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAA2AAAAKgAAACsAAAAqAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAACoAAAArAAAAKgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAAqAAAAKwAAACoAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAACoAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + - ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAAKgAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAAKgAAACsAAAAqAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAACoAAAArAAAAKgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAAqAAAAKwAAACoAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACoAAAAqAAAANwAAACoAAAA3AAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACoAAAAqAAAANAAAADQAAAA0AAAANAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACoAAAAqAAAANAAAADQAAAAsAAAALAAAACwAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACoAAAAqAAAANAAAADQAAAAsAAAANAAAADQAAAA0AAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAANAAAADQAAAAsAAAANAAAADQAAAA1AAAANAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAADQAAAAsAAAANAAAADQAAAA1AAAANQAAADUAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAACoAAAA0AAAALAAAADQAAAA1AAAANQAAADUAAAA1AAAANQAAAA== + - ind: 0,3 + tiles: NgAAADYAAAAAAAAAAAAAAAAAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAA2AAAAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== +entities: +- uid: 0 + type: WallRiveted + components: + - pos: 19.5,14.5 + parent: 55 + type: Transform +- uid: 1 + type: WallRiveted + components: + - pos: 19.5,13.5 + parent: 55 + type: Transform +- uid: 2 + type: WallRiveted + components: + - pos: 20.5,13.5 + parent: 55 + type: Transform +- uid: 3 + type: WallRiveted + components: + - pos: 21.5,13.5 + parent: 55 + type: Transform +- uid: 4 + type: WallRiveted + components: + - pos: 22.5,13.5 + parent: 55 + type: Transform +- uid: 5 + type: WallRiveted + components: + - pos: 22.5,12.5 + parent: 55 + type: Transform +- uid: 6 + type: WallRiveted + components: + - pos: 23.5,12.5 + parent: 55 + type: Transform +- uid: 7 + type: WallRiveted + components: + - pos: 25.5,18.5 + parent: 55 + type: Transform +- uid: 8 + type: WallRiveted + components: + - pos: 26.5,18.5 + parent: 55 + type: Transform +- uid: 9 + type: WallRiveted + components: + - pos: 27.5,18.5 + parent: 55 + type: Transform +- uid: 10 + type: WallRiveted + components: + - pos: 27.5,19.5 + parent: 55 + type: Transform +- uid: 11 + type: WallRiveted + components: + - pos: 28.5,19.5 + parent: 55 + type: Transform +- uid: 12 + type: WallRiveted + components: + - pos: 29.5,19.5 + parent: 55 + type: Transform +- uid: 13 + type: WallRiveted + components: + - pos: 30.5,19.5 + parent: 55 + type: Transform +- uid: 14 + type: WallRiveted + components: + - pos: 30.5,20.5 + parent: 55 + type: Transform +- uid: 15 + type: WallRiveted + components: + - pos: 30.5,21.5 + parent: 55 + type: Transform +- uid: 16 + type: WallRiveted + components: + - pos: 34.5,21.5 + parent: 55 + type: Transform +- uid: 17 + type: WallRiveted + components: + - pos: 18.5,14.5 + parent: 55 + type: Transform +- uid: 18 + type: WallRiveted + components: + - pos: 18.5,15.5 + parent: 55 + type: Transform +- uid: 19 + type: WallRiveted + components: + - pos: 18.5,16.5 + parent: 55 + type: Transform +- uid: 20 + type: WallRiveted + components: + - pos: 23.5,17.5 + parent: 55 + type: Transform +- uid: 21 + type: WallRiveted + components: + - pos: 18.5,17.5 + parent: 55 + type: Transform +- uid: 22 + type: WallRiveted + components: + - pos: 20.5,17.5 + parent: 55 + type: Transform +- uid: 23 + type: WallRiveted + components: + - pos: 19.5,17.5 + parent: 55 + type: Transform +- uid: 24 + type: WallRiveted + components: + - pos: 21.5,17.5 + parent: 55 + type: Transform +- uid: 25 + type: WallRiveted + components: + - pos: 22.5,17.5 + parent: 55 + type: Transform +- uid: 26 + type: WallRiveted + components: + - pos: 24.5,17.5 + parent: 55 + type: Transform +- uid: 27 + type: Catwalk + components: + - pos: 30.5,18.5 + parent: 55 + type: Transform +- uid: 28 + type: Catwalk + components: + - pos: 29.5,18.5 + parent: 55 + type: Transform +- uid: 29 + type: Catwalk + components: + - pos: 28.5,18.5 + parent: 55 + type: Transform +- uid: 30 + type: Catwalk + components: + - pos: 25.5,17.5 + parent: 55 + type: Transform +- uid: 31 + type: Catwalk + components: + - pos: 26.5,17.5 + parent: 55 + type: Transform +- uid: 32 + type: Catwalk + components: + - pos: 27.5,17.5 + parent: 55 + type: Transform +- uid: 33 + type: Catwalk + components: + - pos: 28.5,17.5 + parent: 55 + type: Transform +- uid: 34 + type: Catwalk + components: + - pos: 39.5,17.5 + parent: 55 + type: Transform +- uid: 35 + type: Catwalk + components: + - pos: 38.5,17.5 + parent: 55 + type: Transform +- uid: 36 + type: Catwalk + components: + - pos: 37.5,17.5 + parent: 55 + type: Transform +- uid: 37 + type: Catwalk + components: + - pos: 36.5,17.5 + parent: 55 + type: Transform +- uid: 38 + type: Catwalk + components: + - pos: 36.5,18.5 + parent: 55 + type: Transform +- uid: 39 + type: Catwalk + components: + - pos: 35.5,18.5 + parent: 55 + type: Transform +- uid: 40 + type: Catwalk + components: + - pos: 34.5,18.5 + parent: 55 + type: Transform +- uid: 41 + type: Catwalk + components: + - pos: 41.5,15.5 + parent: 55 + type: Transform +- uid: 42 + type: Catwalk + components: + - pos: 39.5,15.5 + parent: 55 + type: Transform +- uid: 43 + type: Catwalk + components: + - pos: 37.5,15.5 + parent: 55 + type: Transform +- uid: 44 + type: Catwalk + components: + - pos: 36.5,15.5 + parent: 55 + type: Transform +- uid: 45 + type: Catwalk + components: + - pos: 35.5,15.5 + parent: 55 + type: Transform +- uid: 46 + type: Catwalk + components: + - pos: 32.5,18.5 + parent: 55 + type: Transform +- uid: 47 + type: Catwalk + components: + - pos: 32.5,17.5 + parent: 55 + type: Transform +- uid: 48 + type: Catwalk + components: + - pos: 29.5,15.5 + parent: 55 + type: Transform +- uid: 49 + type: Catwalk + components: + - pos: 28.5,15.5 + parent: 55 + type: Transform +- uid: 50 + type: Catwalk + components: + - pos: 27.5,15.5 + parent: 55 + type: Transform +- uid: 51 + type: Catwalk + components: + - pos: 23.5,15.5 + parent: 55 + type: Transform +- uid: 52 + type: Catwalk + components: + - pos: 26.5,15.5 + parent: 55 + type: Transform +- uid: 53 + type: Catwalk + components: + - pos: 25.5,15.5 + parent: 55 + type: Transform +- uid: 54 + type: Catwalk + components: + - pos: 24.5,15.5 + parent: 55 + type: Transform +- uid: 55 + components: + - pos: -1.5406153,-0.3539288 + parent: null + type: Transform + - index: 0 + type: MapGrid + - angularDamping: 100 + linearDamping: 50 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: [] + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + 0,1: + 0: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + coordinates: 17,34 + 1: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 23,34 + 2: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 21,34 + 3: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 20,34 + 4: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 22,34 + 5: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 19,34 + 6: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 18,34 + 7: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 24,34 + 8: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 25,34 + 9: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 26,34 + 10: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 27,34 + 11: + zIndex: 1 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: 27,34 + 12: + zIndex: 1 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 26,34 + 13: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 26,33 + 14: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 25,32 + 17: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: 17,32 + 18: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: 17,33 + 25: + zIndex: 1 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 24,32 + 26: + zIndex: 1 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 25,33 + 27: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + coordinates: 18,38 + 28: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 21,38 + 29: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 19,38 + 30: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 20,38 + 31: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + coordinates: 21,37 + 32: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: 18,37 + 33: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 21,36 + 34: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: 18,36 + 35: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 19,36 + 36: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 20,36 + 76: + zIndex: 1 + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + coordinates: 26,44 + 77: + zIndex: 1 + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + coordinates: 20,46 + 78: + zIndex: 1 + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 22,46 + 79: + zIndex: 1 + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 28,44 + 80: + zIndex: 1 + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: 26,41 + 81: + zIndex: 1 + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: 20,44 + 82: + zIndex: 1 + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 28,41 + 83: + zIndex: 1 + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 22,44 + 84: + zIndex: 1 + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + coordinates: 22,45 + 85: + zIndex: 1 + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + coordinates: 28,43 + 86: + zIndex: 1 + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + coordinates: 28,42 + 87: + zIndex: 1 + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + coordinates: 26,42 + 88: + zIndex: 1 + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + coordinates: 26,43 + 89: + zIndex: 1 + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + coordinates: 20,45 + 90: + zIndex: 1 + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + coordinates: 27,41 + 91: + zIndex: 1 + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + coordinates: 21,44 + 92: + zIndex: 1 + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + coordinates: 21,46 + 93: + zIndex: 1 + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + coordinates: 27,44 + 104: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale270 + coordinates: 31,36 + 105: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale270 + coordinates: 31,37 + 106: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale270 + coordinates: 31,38 + 107: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale270 + coordinates: 31,39 + 108: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale270 + coordinates: 31,40 + 109: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale270 + coordinates: 31,41 + 110: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale270 + coordinates: 31,42 + 111: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale270 + coordinates: 31,43 + 112: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale270 + coordinates: 31,44 + 129: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale + coordinates: 28,32 + 130: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale + coordinates: 29,33 + 131: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale + coordinates: 30,34 + 178: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale + coordinates: 31,34 + 179: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale + coordinates: 30,33 + 180: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale + coordinates: 29,32 + 219: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale270 + coordinates: 31,45 + 220: + zIndex: 1 + color: '#FFFFFFFF' + id: LoadingArea + coordinates: 31,45 + 336: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 5,32 + 337: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 4,33 + 338: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 3,34 + 339: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 2,43 + 340: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 1,44 + 341: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 0,45 + 347: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale90 + coordinates: 2,35 + 348: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale90 + coordinates: 2,36 + 349: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale90 + coordinates: 2,37 + 350: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale90 + coordinates: 2,38 + 351: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale90 + coordinates: 2,39 + 352: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale90 + coordinates: 2,40 + 353: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale90 + coordinates: 2,41 + 354: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale90 + coordinates: 2,42 + 411: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale90 + coordinates: 4,32 + 412: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale90 + coordinates: 3,33 + 413: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale90 + coordinates: 2,34 + 414: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale90 + coordinates: 1,43 + 415: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale90 + coordinates: 0,44 + 0,0: + 15: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 24,31 + 16: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: 17,31 + 19: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 18,31 + 20: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 19,31 + 21: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 20,31 + 22: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 21,31 + 23: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 22,31 + 24: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 23,31 + 37: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: 18,19 + 38: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: 18,20 + 39: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: 17,22 + 40: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: 17,23 + 41: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: 17,24 + 42: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 18,25 + 43: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 19,25 + 44: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 20,25 + 45: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 21,25 + 46: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 22,25 + 47: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 23,25 + 48: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 19,18 + 49: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 20,18 + 50: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 21,18 + 51: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 22,18 + 52: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 24,19 + 53: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 25,19 + 54: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 27,20 + 55: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 28,20 + 56: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 29,20 + 57: + zIndex: 1 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: 29,20 + 58: + zIndex: 1 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: 28,20 + 59: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 28,21 + 60: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 27,22 + 61: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 26,23 + 62: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 25,24 + 63: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 24,25 + 64: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 23,18 + 65: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 26,19 + 66: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: 17,21 + 67: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: 18,18 + 68: + zIndex: 1 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + coordinates: 17,25 + 69: + zIndex: 1 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: 18,21 + 70: + zIndex: 1 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 23,19 + 71: + zIndex: 1 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 26,20 + 72: + zIndex: 1 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: 24,24 + 73: + zIndex: 1 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: 25,23 + 74: + zIndex: 1 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: 26,22 + 75: + zIndex: 1 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: 27,21 + 127: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale + coordinates: 27,31 + 128: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale + coordinates: 26,30 + 137: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: 30,22 + 138: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: 29,23 + 139: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: 28,24 + 140: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: 27,25 + 141: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: 26,26 + 142: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 24,29 + 143: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 23,29 + 144: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 22,29 + 145: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 21,29 + 146: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 20,29 + 147: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 19,29 + 148: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 18,29 + 149: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 17,29 + 150: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 16,29 + 151: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 15,29 + 152: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 14,29 + 153: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 14,27 + 154: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 15,27 + 155: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 16,27 + 156: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 17,27 + 157: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 18,27 + 158: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 19,27 + 159: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 20,27 + 160: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 21,27 + 161: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 22,27 + 162: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 23,27 + 163: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 24,27 + 164: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale270 + coordinates: 31,21 + 165: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale270 + coordinates: 31,20 + 181: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale + coordinates: 28,31 + 182: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale + coordinates: 27,30 + 183: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale + coordinates: 26,29 + 184: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale270 + coordinates: 26,27 + 185: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale270 + coordinates: 27,26 + 186: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale270 + coordinates: 28,25 + 187: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale270 + coordinates: 29,24 + 188: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale270 + coordinates: 30,23 + 189: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale270 + coordinates: 31,22 + 190: + zIndex: 1 + color: '#FFFFFFFF' + id: WarningLine + coordinates: 31,20 + 213: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 12,29 + 214: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 12,27 + 224: + zIndex: 1 + color: '#FFFFFFFF' + id: WarningLine + coordinates: 15,27 + 228: + zIndex: 1 + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: 23,14 + 229: + zIndex: 1 + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: 23,15 + 230: + zIndex: 1 + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: 23,16 + 231: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 31,26 + 233: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 31,28 + 237: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 28,29 + 238: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 30,31 + 239: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 29,26 + 244: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv2 + coordinates: 27,28 + 245: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv2 + coordinates: 29,28 + 246: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv2 + coordinates: 30,30 + 247: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv2 + coordinates: 29,30 + 251: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv2 + coordinates: 30,25 + 258: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv2 + coordinates: 30,27 + 259: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 28,27 + 260: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 28,28 + 261: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 30,26 + 262: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 31,25 + 263: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 31,24 + 266: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 31,27 + 272: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 31,29 + 317: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale180 + coordinates: 11,27 + 318: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale180 + coordinates: 10,27 + 319: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale180 + coordinates: 9,27 + 320: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale180 + coordinates: 8,27 + 321: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 7,26 + 322: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 6,25 + 323: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 5,24 + 324: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 4,23 + 325: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 3,22 + 326: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 2,13 + 327: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 1,12 + 328: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 0,11 + 334: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 7,30 + 335: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 6,31 + 388: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale180 + coordinates: 0,12 + 389: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale180 + coordinates: 1,13 + 390: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale90 + coordinates: 2,14 + 391: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale90 + coordinates: 2,15 + 392: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale90 + coordinates: 2,16 + 393: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale90 + coordinates: 2,17 + 394: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale90 + coordinates: 2,18 + 395: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale90 + coordinates: 2,19 + 396: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale90 + coordinates: 2,20 + 397: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale90 + coordinates: 2,21 + 398: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale180 + coordinates: 2,22 + 399: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale180 + coordinates: 3,23 + 400: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale180 + coordinates: 4,24 + 401: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale180 + coordinates: 5,25 + 402: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale180 + coordinates: 6,26 + 403: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale180 + coordinates: 7,27 + 404: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale + coordinates: 11,29 + 405: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale + coordinates: 10,29 + 406: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale + coordinates: 9,29 + 407: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale + coordinates: 8,29 + 408: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale90 + coordinates: 7,29 + 409: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale90 + coordinates: 6,30 + 410: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale90 + coordinates: 5,31 + 439: + color: '#FFFFFFFF' + id: Flowersbr3 + coordinates: 0,28 + 440: + color: '#FFFFFFFF' + id: Flowersbr3 + coordinates: 2,29 + 441: + color: '#FFFFFFFF' + id: Flowersbr3 + coordinates: 3,27 + 459: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 2,27 + 460: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 0,27 + 461: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 2,28 + 462: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 1,29 + 463: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 1,30 + 467: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 1,28 + 468: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 4,28 + 482: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: 1,27 + 483: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: 3,29 + 484: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: 2,28 + 485: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: 0,29 + 498: + color: '#FFFFFFFF' + id: Rock05 + coordinates: 1,26 + 499: + color: '#FFFFFFFF' + id: Rock05 + coordinates: 3,28 + 507: + color: '#FFFFFFFF' + id: Rock03 + coordinates: 2,26 + 511: + color: '#FFFFFFFF' + id: Rock01 + coordinates: 2,30 + 1,1: + 94: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 46,37 + 95: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: 42,37 + 96: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale + coordinates: 42,38 + 97: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 46,38 + 98: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 43,37 + 99: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 45,37 + 100: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 44,37 + 101: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 43,38 + 102: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 44,38 + 103: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 45,38 + 113: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale90 + coordinates: 33,44 + 114: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale90 + coordinates: 33,43 + 115: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale90 + coordinates: 33,42 + 116: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale90 + coordinates: 33,41 + 117: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale90 + coordinates: 33,40 + 118: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale90 + coordinates: 33,39 + 119: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale90 + coordinates: 33,38 + 120: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale90 + coordinates: 33,37 + 121: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale90 + coordinates: 33,36 + 122: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 34,34 + 123: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 35,33 + 124: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 36,32 + 175: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale90 + coordinates: 35,32 + 176: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale90 + coordinates: 34,33 + 177: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale90 + coordinates: 33,34 + 218: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale90 + coordinates: 33,45 + 221: + zIndex: 1 + color: '#FFFFFFFF' + id: LoadingArea + coordinates: 32,45 + 222: + zIndex: 1 + color: '#FFFFFFFF' + id: LoadingArea + coordinates: 33,45 + 248: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv2 + coordinates: 33,32 + 1,0: + 125: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 37,31 + 126: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 38,30 + 132: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 38,26 + 133: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 37,25 + 134: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 36,24 + 135: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 35,23 + 136: + zIndex: 1 + color: '#334EB7DC' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 34,22 + 166: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale180 + coordinates: 33,22 + 167: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale180 + coordinates: 34,23 + 168: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale180 + coordinates: 35,24 + 169: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale180 + coordinates: 36,25 + 170: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale180 + coordinates: 37,26 + 171: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale180 + coordinates: 38,27 + 172: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale90 + coordinates: 38,29 + 173: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale90 + coordinates: 37,30 + 174: + zIndex: 1 + color: '#334EB7DC' + id: QuarterTileOverlayGreyscale90 + coordinates: 36,31 + 191: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 40,27 + 192: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 41,27 + 193: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 42,27 + 194: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 43,27 + 195: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 44,27 + 196: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 45,27 + 197: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 46,27 + 198: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 47,27 + 199: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 48,27 + 200: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 49,27 + 201: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale180 + coordinates: 50,27 + 202: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 50,29 + 203: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 48,29 + 204: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 49,29 + 205: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 47,29 + 206: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 46,29 + 207: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 45,29 + 208: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 44,29 + 209: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 43,29 + 210: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 42,29 + 211: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 41,29 + 212: + zIndex: 1 + color: '#334EB7DC' + id: HalfTileOverlayGreyscale + coordinates: 40,29 + 223: + zIndex: 1 + color: '#FFFFFFFF' + id: WarningLine + coordinates: 49,27 + 225: + zIndex: 1 + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: 41,16 + 226: + zIndex: 1 + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: 41,15 + 227: + zIndex: 1 + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: 41,14 + 232: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 35,28 + 234: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 35,27 + 235: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 33,31 + 236: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 33,28 + 240: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 32,24 + 241: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 34,26 + 242: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 37,28 + 243: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 34,30 + 249: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv2 + coordinates: 34,25 + 250: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv2 + coordinates: 32,27 + 252: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv2 + coordinates: 32,23 + 253: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv2 + coordinates: 36,27 + 254: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv2 + coordinates: 34,29 + 255: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv2 + coordinates: 35,29 + 256: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv2 + coordinates: 36,29 + 257: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv2 + coordinates: 35,30 + 264: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 32,25 + 265: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 33,24 + 267: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 32,27 + 268: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 32,27 + 269: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 33,29 + 270: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 32,28 + 271: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 32,29 + 273: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 34,31 + 274: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 33,30 + 275: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 35,26 + 276: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + coordinates: 36,28 + 277: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersbr1 + coordinates: 36,20 + 278: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersbr1 + coordinates: 38,22 + 279: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersbr1 + coordinates: 39,24 + 280: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersbr1 + coordinates: 42,25 + 281: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersbr1 + coordinates: 40,25 + 282: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersbr1 + coordinates: 40,19 + 283: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersbr1 + coordinates: 42,18 + 284: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersbr1 + coordinates: 42,19 + 285: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersbr1 + coordinates: 45,18 + 286: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersbr1 + coordinates: 46,19 + 287: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersbr1 + coordinates: 46,21 + 288: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersbr1 + coordinates: 47,23 + 289: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersbr1 + coordinates: 46,25 + 290: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 35,20 + 291: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 37,21 + 292: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 39,19 + 293: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 38,20 + 294: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 38,23 + 295: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 39,23 + 296: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 40,24 + 297: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 47,25 + 298: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 47,22 + 299: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 46,20 + 300: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 45,19 + 301: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 43,18 + 302: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: 41,19 + 303: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 38,19 + 304: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 37,20 + 305: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 36,21 + 306: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 37,22 + 307: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 41,25 + 308: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 47,24 + 309: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 47,21 + 310: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 46,18 + 311: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 44,18 + 312: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: 41,18 + 313: + color: '#0000C7BD' + id: HalfTileOverlayGreyscale90 + coordinates: 33,20 + 314: + color: '#0000C7BD' + id: HalfTileOverlayGreyscale90 + coordinates: 33,21 + 315: + color: '#FFFFFFFF' + id: WarningLine + coordinates: 32,20 + 316: + color: '#FFFFFFFF' + id: WarningLine + coordinates: 33,20 + 2,0: + 215: + zIndex: 1 + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: 72,28 + 216: + zIndex: 1 + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: 74,28 + 217: + zIndex: 1 + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + coordinates: 72,28 + -1,0: + 329: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: -1,10 + 330: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: -5,10 + 331: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: -6,11 + 332: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: -7,12 + 333: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: -8,13 + 367: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,30 + 368: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,29 + 369: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,28 + 370: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,27 + 371: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,26 + 372: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,24 + 373: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,22 + 374: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,21 + 375: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,20 + 376: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,19 + 377: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,18 + 378: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,17 + 379: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,15 + 380: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,16 + 381: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,14 + 382: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale270 + coordinates: -7,13 + 383: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale270 + coordinates: -6,12 + 384: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale270 + coordinates: -5,11 + 385: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale180 + coordinates: -4,10 + 386: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale180 + coordinates: -2,10 + 387: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale180 + coordinates: -1,11 + 420: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -8,23 + 421: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -8,25 + 422: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -8,31 + 425: + color: '#FFFFFFFF' + id: WarningLine + coordinates: -3,10 + 426: + color: '#FFFFFFFF' + id: StandClear + coordinates: -3,8 + 427: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: StandClear + coordinates: -3,6 + 428: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + coordinates: -10,23 + 429: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + coordinates: -10,25 + 430: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + coordinates: -10,31 + 432: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + coordinates: -12,25 + 433: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + coordinates: -12,23 + 434: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + coordinates: -12,31 + 438: + color: '#FFFFFFFF' + id: Flowersbr3 + coordinates: -5,27 + 446: + color: '#FFFFFFFF' + id: Flowersbr3 + coordinates: -5,20 + 447: + color: '#FFFFFFFF' + id: Flowersbr3 + coordinates: -2,20 + 448: + color: '#FFFFFFFF' + id: Flowersbr3 + coordinates: -4,22 + 449: + color: '#FFFFFFFF' + id: Flowersbr3 + coordinates: -3,17 + 450: + color: '#FFFFFFFF' + id: Flowersbr3 + coordinates: -1,20 + 451: + color: '#FFFFFFFF' + id: Flowersbr3 + coordinates: -2,19 + 452: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -5,19 + 453: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -3,18 + 454: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -4,20 + 455: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -1,19 + 456: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -2,22 + 457: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -3,23 + 458: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -3,21 + 464: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -4,27 + 465: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -5,29 + 466: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -4,29 + 469: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -2,28 + 486: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -3,28 + 487: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -5,28 + 488: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -5,26 + 489: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -4,27 + 490: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -4,21 + 491: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -3,20 + 492: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -2,18 + 493: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -4,18 + 494: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -1,21 + 495: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -3,22 + 496: + color: '#FFFFFFFF' + id: Rock05 + coordinates: -4,28 + 497: + color: '#FFFFFFFF' + id: Rock05 + coordinates: -5,30 + 500: + color: '#FFFFFFFF' + id: Rock05 + coordinates: -4,19 + 501: + color: '#FFFFFFFF' + id: Rock05 + coordinates: -2,21 + 508: + color: '#FFFFFFFF' + id: Rock03 + coordinates: -1,28 + 509: + color: '#FFFFFFFF' + id: Rock03 + coordinates: -3,19 + 510: + color: '#FFFFFFFF' + id: Rock01 + coordinates: -5,21 + -1,1: + 342: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: -1,46 + 343: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale + coordinates: -5,46 + 344: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale + coordinates: -6,45 + 345: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale + coordinates: -7,44 + 346: + color: '#2236CAC3' + id: ThreeQuarterTileOverlayGreyscale + coordinates: -8,43 + 355: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale + coordinates: -4,46 + 356: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale + coordinates: -2,46 + 357: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,42 + 358: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,41 + 359: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,40 + 360: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,39 + 361: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,38 + 362: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,37 + 363: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,36 + 364: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,35 + 365: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,34 + 366: + color: '#2236CAC3' + id: HalfTileOverlayGreyscale270 + coordinates: -8,32 + 416: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale90 + coordinates: -1,45 + 417: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale + coordinates: -5,45 + 418: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale + coordinates: -6,44 + 419: + color: '#2236CAC3' + id: QuarterTileOverlayGreyscale + coordinates: -7,43 + 423: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -8,33 + 424: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -3,46 + 431: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + coordinates: -10,33 + 435: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + coordinates: -12,33 + 436: + color: '#FFFFFFFF' + id: StandClear + coordinates: -3,50 + 437: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: StandClear + coordinates: -3,48 + 442: + color: '#FFFFFFFF' + id: Flowersbr3 + coordinates: -3,34 + 443: + color: '#FFFFFFFF' + id: Flowersbr3 + coordinates: -5,35 + 444: + color: '#FFFFFFFF' + id: Flowersbr3 + coordinates: -1,37 + 445: + color: '#FFFFFFFF' + id: Flowersbr3 + coordinates: -3,38 + 470: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -3,34 + 471: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -2,35 + 472: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -5,37 + 473: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -2,38 + 474: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -3,33 + 475: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -4,34 + 476: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -1,36 + 477: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -3,37 + 478: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -4,36 + 479: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -4,38 + 480: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -2,36 + 481: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -3,39 + 502: + color: '#FFFFFFFF' + id: Rock05 + coordinates: -2,34 + 503: + color: '#FFFFFFFF' + id: Rock05 + coordinates: -4,35 + 504: + color: '#FFFFFFFF' + id: Rock05 + coordinates: -2,37 + 505: + color: '#FFFFFFFF' + id: Rock03 + coordinates: -3,36 + 506: + color: '#FFFFFFFF' + id: Rock03 + coordinates: -1,35 + 512: + color: '#FFFFFFFF' + id: Rock01 + coordinates: -3,35 + 513: + color: '#FFFFFFFF' + id: Rock01 + coordinates: -4,37 + 514: + color: '#FFFFFFFF' + id: Rock06 + coordinates: -5,36 + type: DecalGrid + - tiles: + -2,-1: 0 + -1,-1: 0 + 0,-1: 0 + -2,0: 0 + -2,1: 0 + -1,0: 0 + -1,1: 0 + 0,0: 0 + 0,1: 0 + -2,-2: 0 + -1,-2: 0 + 0,-2: 0 + -13,15: 0 + -12,14: 0 + -12,15: 0 + -11,13: 0 + -11,14: 0 + -10,12: 0 + -10,13: 0 + -9,11: 0 + -9,12: 0 + -9,13: 0 + -9,14: 0 + -8,10: 0 + -8,11: 0 + -8,14: 0 + -8,15: 0 + -7,9: 0 + -7,10: 0 + -7,15: 0 + -6,9: 0 + -6,10: 0 + -6,11: 0 + -6,12: 0 + -6,13: 0 + -6,14: 0 + -6,15: 0 + -5,8: 0 + -5,9: 0 + -5,10: 0 + -5,11: 0 + -5,12: 0 + -5,13: 0 + -5,14: 0 + -5,15: 0 + -4,4: 0 + -4,5: 0 + -4,6: 0 + -4,7: 0 + -4,8: 0 + -4,9: 0 + -4,10: 0 + -4,11: 0 + -4,12: 0 + -4,13: 0 + -4,14: 0 + -4,15: 0 + -3,1: 0 + -3,2: 0 + -3,3: 0 + -3,4: 0 + -3,5: 0 + -3,6: 0 + -3,7: 0 + -3,8: 0 + -3,9: 0 + -3,10: 0 + -3,11: 0 + -3,12: 0 + -3,13: 0 + -3,14: 0 + -3,15: 0 + -2,2: 0 + -2,3: 0 + -2,4: 0 + -2,5: 0 + -2,6: 0 + -2,7: 0 + -2,8: 0 + -2,9: 0 + -2,10: 0 + -2,11: 0 + -2,12: 0 + -2,13: 0 + -2,14: 0 + -2,15: 0 + -1,2: 0 + -1,3: 0 + -1,4: 0 + -1,5: 0 + -1,6: 0 + -1,7: 0 + -1,8: 0 + -1,9: 0 + -1,10: 0 + -1,11: 0 + -1,12: 0 + -1,13: 0 + -1,14: 0 + -1,15: 0 + 0,2: 0 + 0,3: 0 + 0,4: 0 + 0,5: 0 + 0,6: 0 + 0,7: 0 + 0,8: 0 + 0,9: 0 + 0,10: 0 + 0,11: 0 + 0,12: 0 + 0,13: 0 + 0,14: 0 + 0,15: 0 + 1,1: 0 + 1,2: 0 + 1,3: 0 + 1,4: 0 + 1,5: 0 + 1,6: 0 + 1,7: 0 + 1,8: 0 + 1,9: 0 + 1,10: 0 + 1,11: 0 + 1,12: 0 + 1,13: 0 + 1,14: 0 + 1,15: 0 + 2,4: 0 + 2,5: 0 + 2,6: 0 + 2,7: 0 + 2,8: 0 + 2,9: 0 + 2,10: 0 + 2,11: 0 + 2,12: 0 + 2,13: 0 + 2,14: 0 + 2,15: 0 + 3,8: 0 + 3,9: 0 + 3,10: 0 + 3,11: 0 + 3,12: 0 + 3,13: 0 + 3,14: 0 + 3,15: 0 + 4,9: 0 + 4,10: 0 + 4,11: 0 + 4,12: 0 + 4,13: 0 + 4,14: 0 + 4,15: 0 + 5,9: 0 + 5,10: 0 + 5,14: 0 + 5,15: 0 + 6,10: 0 + 6,11: 0 + 6,14: 0 + 6,15: 0 + 7,11: 0 + 7,12: 0 + 7,13: 0 + 7,14: 0 + 8,12: 0 + 8,13: 0 + 9,13: 0 + 9,14: 0 + 10,14: 0 + 10,15: 0 + 11,15: 0 + 12,15: 0 + 13,14: 0 + 13,15: 0 + 14,14: 0 + 15,14: 0 + -16,18: 0 + -16,19: 0 + -16,20: 0 + -16,23: 0 + -16,24: 0 + -16,25: 0 + -16,26: 0 + -16,27: 0 + -16,28: 0 + -16,29: 0 + -16,30: 0 + -16,31: 0 + -15,17: 0 + -15,18: 0 + -15,20: 0 + -15,21: 0 + -15,23: 0 + -15,24: 0 + -15,25: 0 + -15,26: 0 + -15,27: 0 + -15,28: 0 + -15,29: 0 + -15,30: 0 + -15,31: 0 + -14,16: 0 + -14,17: 0 + -14,21: 0 + -14,22: 0 + -14,23: 0 + -14,24: 0 + -14,25: 0 + -14,26: 0 + -14,27: 0 + -14,28: 0 + -14,29: 0 + -14,30: 0 + -14,31: 0 + -13,16: 0 + -13,17: 0 + -13,23: 0 + -13,24: 0 + -13,25: 0 + -13,26: 0 + -13,27: 0 + -13,28: 0 + -13,29: 0 + -13,30: 0 + -13,31: 0 + -12,17: 0 + -12,18: 0 + -12,23: 0 + -12,24: 0 + -12,25: 0 + -12,26: 0 + -12,27: 0 + -12,28: 0 + -12,29: 0 + -12,30: 0 + -12,31: 0 + -11,18: 0 + -11,19: 0 + -11,23: 0 + -11,24: 0 + -11,25: 0 + -11,26: 0 + -11,27: 0 + -11,28: 0 + -11,29: 0 + -11,30: 0 + -11,31: 0 + -10,19: 0 + -10,20: 0 + -10,22: 0 + -10,23: 0 + -10,24: 0 + -10,25: 0 + -10,26: 0 + -10,27: 0 + -10,28: 0 + -10,29: 0 + -10,30: 0 + -10,31: 0 + -9,20: 0 + -9,21: 0 + -9,22: 0 + -9,24: 0 + -9,26: 0 + -9,27: 0 + -9,28: 0 + -9,29: 0 + -9,30: 0 + -8,20: 0 + -8,21: 0 + -8,24: 0 + -8,26: 0 + -8,27: 0 + -8,28: 0 + -8,29: 0 + -8,30: 0 + -7,19: 0 + -7,20: 0 + -7,24: 0 + -7,26: 0 + -7,27: 0 + -7,28: 0 + -7,29: 0 + -7,30: 0 + -6,16: 0 + -6,17: 0 + -6,18: 0 + -6,19: 0 + -6,24: 0 + -6,26: 0 + -6,27: 0 + -6,28: 0 + -6,29: 0 + -6,30: 0 + -5,16: 0 + -5,17: 0 + -5,18: 0 + -5,19: 0 + -5,20: 0 + -5,21: 0 + -5,22: 0 + -5,23: 0 + -5,24: 0 + -5,25: 0 + -5,26: 0 + -5,27: 0 + -5,28: 0 + -5,29: 0 + -5,30: 0 + -5,31: 0 + -4,16: 0 + -4,17: 0 + -4,18: 0 + -4,19: 0 + -4,24: 0 + -4,25: 0 + -4,26: 0 + -4,27: 0 + -4,28: 0 + -4,29: 0 + -4,30: 0 + -4,31: 0 + -3,16: 0 + -3,17: 0 + -3,18: 0 + -3,19: 0 + -3,20: 0 + -3,21: 0 + -3,22: 0 + -3,23: 0 + -3,24: 0 + -3,25: 0 + -3,26: 0 + -3,27: 0 + -3,28: 0 + -3,29: 0 + -3,30: 0 + -3,31: 0 + -2,16: 0 + -2,17: 0 + -2,18: 0 + -2,19: 0 + -2,20: 0 + -2,21: 0 + -2,22: 0 + -2,23: 0 + -2,24: 0 + -2,25: 0 + -2,26: 0 + -2,27: 0 + -2,28: 0 + -2,29: 0 + -2,30: 0 + -2,31: 0 + -1,16: 0 + -1,17: 0 + -1,18: 0 + -1,19: 0 + -1,20: 0 + -1,21: 0 + -1,22: 0 + -1,23: 0 + -1,24: 0 + -1,25: 0 + -1,26: 0 + -1,27: 0 + -1,28: 0 + -1,29: 0 + -1,30: 0 + -1,31: 0 + 0,16: 0 + 0,17: 0 + 0,18: 0 + 0,19: 0 + 0,20: 0 + 0,21: 0 + 0,22: 0 + 0,23: 0 + 0,24: 0 + 0,25: 0 + 0,26: 0 + 0,27: 0 + 0,28: 0 + 0,29: 0 + 0,30: 0 + 0,31: 0 + 1,16: 0 + 1,17: 0 + 1,18: 0 + 1,19: 0 + 1,20: 0 + 1,21: 0 + 1,22: 0 + 1,23: 0 + 1,24: 0 + 1,25: 0 + 1,26: 0 + 1,27: 0 + 1,28: 0 + 1,29: 0 + 1,30: 0 + 1,31: 0 + 2,16: 0 + 2,17: 0 + 2,18: 0 + 2,19: 0 + 2,24: 0 + 2,25: 0 + 2,26: 0 + 2,27: 0 + 2,28: 0 + 2,29: 0 + 2,30: 0 + 2,31: 0 + 3,16: 0 + 3,17: 0 + 3,18: 0 + 3,19: 0 + 3,20: 0 + 3,21: 0 + 3,22: 0 + 3,23: 0 + 3,24: 0 + 3,25: 0 + 3,26: 0 + 3,27: 0 + 3,28: 0 + 3,29: 0 + 3,30: 0 + 3,31: 0 + 4,16: 0 + 4,17: 0 + 4,20: 0 + 4,21: 0 + 4,24: 0 + 4,26: 0 + 4,27: 0 + 4,28: 0 + 4,29: 0 + 4,30: 0 + 5,17: 0 + 5,19: 0 + 5,20: 0 + 5,24: 0 + 5,26: 0 + 5,27: 0 + 5,28: 0 + 5,29: 0 + 5,30: 0 + 6,16: 0 + 6,17: 0 + 6,18: 0 + 6,19: 0 + 6,24: 0 + 6,26: 0 + 6,27: 0 + 6,28: 0 + 6,29: 0 + 6,30: 0 + 7,16: 0 + 7,17: 0 + 7,18: 0 + 7,19: 0 + 7,24: 0 + 7,26: 0 + 7,27: 0 + 7,28: 0 + 7,29: 0 + 7,30: 0 + 8,17: 0 + 8,19: 0 + 8,20: 0 + 8,23: 0 + 8,24: 0 + 8,25: 0 + 8,26: 0 + 8,27: 0 + 8,28: 0 + 8,29: 0 + 8,30: 0 + 8,31: 0 + 9,17: 0 + 9,20: 0 + 9,21: 0 + 9,22: 0 + 9,23: 0 + 9,24: 0 + 9,26: 0 + 9,27: 0 + 9,28: 0 + 9,29: 0 + 9,30: 0 + 10,17: 0 + 10,21: 0 + 10,22: 0 + 10,24: 0 + 10,26: 0 + 10,27: 0 + 10,28: 0 + 10,29: 0 + 10,30: 0 + 11,16: 0 + 11,17: 0 + 11,20: 0 + 11,21: 0 + 11,24: 0 + 11,26: 0 + 11,27: 0 + 11,28: 0 + 11,29: 0 + 11,30: 0 + 12,16: 0 + 12,17: 0 + 12,19: 0 + 12,20: 0 + 12,24: 0 + 12,26: 0 + 12,27: 0 + 12,28: 0 + 12,29: 0 + 12,30: 0 + 13,17: 0 + 13,18: 0 + 13,19: 0 + 13,20: 0 + 13,21: 0 + 13,24: 0 + 13,25: 0 + 13,26: 0 + 13,27: 0 + 13,28: 0 + 13,29: 0 + 13,30: 0 + 13,31: 0 + 14,17: 0 + 14,18: 0 + 14,21: 0 + 14,22: 0 + 14,24: 0 + 14,25: 0 + 14,26: 0 + 14,27: 0 + 14,28: 0 + 14,29: 0 + 14,30: 0 + 14,31: 0 + 15,17: 0 + 15,22: 0 + 15,23: 0 + 15,24: 0 + 15,25: 0 + 15,26: 0 + 15,27: 0 + 15,28: 0 + 15,29: 0 + 15,30: 0 + 15,31: 0 + -16,32: 0 + -16,33: 0 + -16,36: 0 + -16,37: 0 + -16,38: 0 + -15,32: 0 + -15,33: 0 + -15,35: 0 + -15,36: 0 + -15,38: 0 + -15,39: 0 + -14,32: 0 + -14,33: 0 + -14,34: 0 + -14,35: 0 + -14,39: 0 + -14,40: 0 + -13,32: 0 + -13,33: 0 + -13,39: 0 + -13,40: 0 + -13,41: 0 + -12,32: 0 + -12,33: 0 + -12,38: 0 + -12,39: 0 + -12,41: 0 + -12,42: 0 + -11,32: 0 + -11,33: 0 + -11,37: 0 + -11,38: 0 + -11,39: 0 + -11,42: 0 + -11,43: 0 + -10,32: 0 + -10,33: 0 + -10,34: 0 + -10,36: 0 + -10,37: 0 + -10,39: 0 + -10,40: 0 + -10,43: 0 + -10,44: 0 + -9,32: 0 + -9,34: 0 + -9,35: 0 + -9,36: 0 + -9,40: 0 + -9,41: 0 + -9,44: 0 + -9,45: 0 + -8,32: 0 + -8,35: 0 + -8,36: 0 + -8,41: 0 + -8,42: 0 + -8,45: 0 + -8,46: 0 + -7,32: 0 + -7,36: 0 + -7,37: 0 + -7,42: 0 + -7,43: 0 + -7,46: 0 + -7,47: 0 + -6,32: 0 + -6,37: 0 + -6,38: 0 + -6,40: 0 + -6,41: 0 + -6,42: 0 + -6,43: 0 + -6,44: 0 + -6,45: 0 + -6,46: 0 + -6,47: 0 + -5,32: 0 + -5,33: 0 + -5,34: 0 + -5,35: 0 + -5,36: 0 + -5,37: 0 + -5,38: 0 + -5,39: 0 + -5,40: 0 + -5,41: 0 + -5,42: 0 + -5,43: 0 + -5,44: 0 + -5,45: 0 + -5,46: 0 + -5,47: 0 + -4,32: 0 + -4,38: 0 + -4,39: 0 + -4,40: 0 + -4,41: 0 + -4,42: 0 + -4,43: 0 + -4,44: 0 + -4,45: 0 + -4,46: 0 + -4,47: 0 + -3,32: 0 + -3,33: 0 + -3,34: 0 + -3,35: 0 + -3,36: 0 + -3,37: 0 + -3,38: 0 + -3,39: 0 + -3,40: 0 + -3,41: 0 + -3,42: 0 + -3,43: 0 + -3,44: 0 + -3,45: 0 + -3,46: 0 + -3,47: 0 + -2,32: 0 + -2,33: 0 + -2,34: 0 + -2,35: 0 + -2,36: 0 + -2,37: 0 + -2,38: 0 + -2,39: 0 + -2,40: 0 + -2,41: 0 + -2,42: 0 + -2,43: 0 + -2,44: 0 + -2,45: 0 + -2,46: 0 + -2,47: 0 + -1,32: 0 + -1,33: 0 + -1,34: 0 + -1,35: 0 + -1,36: 0 + -1,37: 0 + -1,38: 0 + -1,39: 0 + -1,40: 0 + -1,41: 0 + -1,42: 0 + -1,43: 0 + -1,44: 0 + -1,45: 0 + -1,46: 0 + -1,47: 0 + 0,32: 0 + 0,33: 0 + 0,34: 0 + 0,35: 0 + 0,36: 0 + 0,37: 0 + 0,38: 0 + 0,39: 0 + 0,40: 0 + 0,41: 0 + 0,42: 0 + 0,43: 0 + 0,44: 0 + 0,45: 0 + 0,46: 0 + 0,47: 0 + 1,32: 0 + 1,33: 0 + 1,34: 0 + 1,35: 0 + 1,36: 0 + 1,37: 0 + 1,38: 0 + 1,39: 0 + 1,40: 0 + 1,41: 0 + 1,42: 0 + 1,43: 0 + 1,44: 0 + 1,45: 0 + 1,46: 0 + 1,47: 0 + 2,32: 0 + 2,38: 0 + 2,39: 0 + 2,40: 0 + 2,41: 0 + 2,42: 0 + 2,43: 0 + 2,44: 0 + 2,45: 0 + 2,46: 0 + 2,47: 0 + 3,32: 0 + 3,33: 0 + 3,34: 0 + 3,35: 0 + 3,36: 0 + 3,37: 0 + 3,38: 0 + 3,39: 0 + 3,40: 0 + 3,41: 0 + 3,42: 0 + 3,43: 0 + 3,44: 0 + 3,45: 0 + 3,46: 0 + 3,47: 0 + 4,32: 0 + 4,39: 0 + 4,40: 0 + 4,41: 0 + 4,42: 0 + 4,43: 0 + 4,44: 0 + 4,45: 0 + 4,46: 0 + 4,47: 0 + 5,32: 0 + 5,38: 0 + 5,39: 0 + 5,40: 0 + 5,41: 0 + 5,42: 0 + 5,44: 0 + 5,45: 0 + 5,46: 0 + 6,32: 0 + 6,37: 0 + 6,38: 0 + 6,39: 0 + 6,41: 0 + 6,45: 0 + 7,32: 0 + 7,36: 0 + 7,37: 0 + 7,39: 0 + 7,41: 0 + 7,45: 0 + 8,32: 0 + 8,33: 0 + 8,35: 0 + 8,36: 0 + 8,39: 0 + 8,41: 0 + 8,45: 0 + 9,32: 0 + 9,33: 0 + 9,34: 0 + 9,35: 0 + 9,39: 0 + 9,41: 0 + 9,45: 0 + 10,32: 0 + 10,34: 0 + 10,35: 0 + 10,39: 0 + 10,41: 0 + 10,45: 0 + 11,32: 0 + 11,35: 0 + 11,36: 0 + 11,39: 0 + 11,40: 0 + 11,41: 0 + 11,42: 0 + 11,43: 0 + 11,44: 0 + 11,45: 0 + 11,46: 0 + 11,47: 0 + 12,32: 0 + 12,36: 0 + 12,37: 0 + 12,39: 0 + 12,41: 0 + 12,45: 0 + 13,32: 0 + 13,37: 0 + 13,38: 0 + 13,39: 0 + 13,41: 0 + 13,45: 0 + 14,32: 0 + 14,38: 0 + 14,39: 0 + 14,41: 0 + 14,45: 0 + 15,32: 0 + 15,33: 0 + 15,39: 0 + 15,41: 0 + 15,45: 0 + -6,48: 0 + -6,49: 0 + -6,50: 0 + -5,48: 0 + -5,49: 0 + -5,50: 0 + -5,51: 0 + -4,48: 0 + -4,49: 0 + -4,50: 0 + -4,51: 0 + -4,52: 0 + -3,48: 0 + -3,49: 0 + -3,50: 0 + -3,51: 0 + -3,52: 0 + -3,53: 0 + -2,48: 0 + -2,49: 0 + -2,50: 0 + -2,51: 0 + -2,52: 0 + -2,53: 0 + -1,48: 0 + -1,49: 0 + -1,50: 0 + -1,51: 0 + -1,52: 0 + -1,53: 0 + 0,48: 0 + 0,49: 0 + 0,50: 0 + 0,51: 0 + 0,52: 0 + 0,53: 0 + 1,48: 0 + 1,49: 0 + 1,50: 0 + 1,51: 0 + 1,52: 0 + 1,53: 0 + 2,48: 0 + 2,49: 0 + 2,50: 0 + 2,51: 0 + 2,52: 0 + 3,48: 0 + 3,49: 0 + 3,50: 0 + 3,51: 0 + 4,48: 0 + 4,49: 0 + 4,50: 0 + 4,51: 0 + 5,49: 0 + 5,50: 0 + 5,51: 0 + 6,50: 0 + 7,50: 0 + 8,50: 0 + 9,50: 0 + 10,50: 0 + 11,48: 0 + 11,49: 0 + 11,50: 0 + 12,50: 0 + 13,50: 0 + 14,50: 0 + 15,50: 0 + -31,27: 0 + -31,28: 0 + -31,29: 0 + -30,27: 0 + -30,28: 0 + -30,29: 0 + -29,27: 0 + -29,28: 0 + -29,29: 0 + -28,26: 0 + -28,27: 0 + -28,28: 0 + -28,29: 0 + -28,30: 0 + -27,26: 0 + -27,27: 0 + -27,28: 0 + -27,29: 0 + -27,30: 0 + -26,26: 0 + -26,27: 0 + -26,28: 0 + -26,29: 0 + -26,30: 0 + -25,25: 0 + -25,26: 0 + -25,27: 0 + -25,28: 0 + -25,29: 0 + -25,30: 0 + -25,31: 0 + -24,25: 0 + -24,26: 0 + -24,27: 0 + -24,28: 0 + -24,29: 0 + -24,30: 0 + -24,31: 0 + -23,25: 0 + -23,26: 0 + -23,27: 0 + -23,28: 0 + -23,29: 0 + -23,30: 0 + -23,31: 0 + -22,25: 0 + -22,26: 0 + -22,27: 0 + -22,28: 0 + -22,29: 0 + -22,30: 0 + -22,31: 0 + -21,24: 0 + -21,25: 0 + -21,26: 0 + -21,27: 0 + -21,28: 0 + -21,29: 0 + -21,30: 0 + -21,31: 0 + -20,22: 0 + -20,23: 0 + -20,24: 0 + -20,25: 0 + -20,26: 0 + -20,27: 0 + -20,28: 0 + -20,29: 0 + -20,30: 0 + -20,31: 0 + -19,21: 0 + -19,22: 0 + -19,23: 0 + -19,24: 0 + -19,25: 0 + -19,26: 0 + -19,27: 0 + -19,28: 0 + -19,29: 0 + -19,30: 0 + -19,31: 0 + -18,20: 0 + -18,21: 0 + -18,23: 0 + -18,24: 0 + -18,25: 0 + -18,26: 0 + -18,27: 0 + -18,28: 0 + -18,29: 0 + -18,30: 0 + -18,31: 0 + -17,19: 0 + -17,20: 0 + -17,23: 0 + -17,24: 0 + -17,25: 0 + -17,26: 0 + -17,27: 0 + -17,28: 0 + -17,29: 0 + -17,30: 0 + -17,31: 0 + -21,32: 0 + -20,32: 0 + -20,33: 0 + -20,34: 0 + -19,32: 0 + -19,33: 0 + -19,34: 0 + -19,35: 0 + -18,32: 0 + -18,33: 0 + -18,35: 0 + -18,36: 0 + -17,32: 0 + -17,33: 0 + -17,36: 0 + -17,37: 0 + 16,32: 0 + 16,33: 0 + 16,34: 0 + 16,35: 0 + 16,36: 0 + 16,39: 0 + 16,41: 0 + 16,45: 0 + 17,32: 0 + 17,33: 0 + 17,34: 0 + 17,35: 0 + 17,36: 0 + 17,37: 0 + 17,38: 0 + 17,39: 0 + 17,40: 0 + 17,41: 0 + 17,42: 0 + 17,44: 0 + 17,45: 0 + 17,46: 0 + 18,32: 0 + 18,33: 0 + 18,34: 0 + 18,35: 0 + 18,36: 0 + 18,37: 0 + 18,38: 0 + 18,39: 0 + 18,40: 0 + 18,41: 0 + 18,42: 0 + 18,43: 0 + 18,44: 0 + 18,45: 0 + 18,46: 0 + 18,47: 0 + 19,32: 0 + 19,33: 0 + 19,34: 0 + 19,35: 0 + 19,36: 0 + 19,37: 0 + 19,38: 0 + 19,39: 0 + 19,40: 0 + 19,41: 0 + 19,42: 0 + 19,43: 0 + 19,44: 0 + 19,45: 0 + 19,46: 0 + 19,47: 0 + 20,32: 0 + 20,33: 0 + 20,34: 0 + 20,35: 0 + 20,36: 0 + 20,37: 0 + 20,38: 0 + 20,39: 0 + 20,40: 0 + 20,41: 0 + 20,42: 0 + 20,43: 0 + 20,44: 0 + 20,45: 0 + 20,46: 0 + 20,47: 0 + 21,32: 0 + 21,33: 0 + 21,34: 0 + 21,35: 0 + 21,36: 0 + 21,37: 0 + 21,38: 0 + 21,39: 0 + 21,40: 0 + 21,41: 0 + 21,42: 0 + 21,43: 0 + 21,44: 0 + 21,45: 0 + 21,46: 0 + 21,47: 0 + 22,32: 0 + 22,33: 0 + 22,34: 0 + 22,35: 0 + 22,36: 0 + 22,37: 0 + 22,38: 0 + 22,39: 0 + 22,40: 0 + 22,41: 0 + 22,42: 0 + 22,43: 0 + 22,44: 0 + 22,45: 0 + 22,46: 0 + 22,47: 0 + 23,32: 0 + 23,33: 0 + 23,34: 0 + 23,35: 0 + 23,36: 0 + 23,37: 0 + 23,38: 0 + 23,39: 0 + 23,40: 0 + 23,41: 0 + 23,42: 0 + 23,43: 0 + 23,44: 0 + 23,45: 0 + 23,46: 0 + 23,47: 0 + 24,32: 0 + 24,33: 0 + 24,34: 0 + 24,35: 0 + 24,36: 0 + 24,37: 0 + 24,38: 0 + 24,39: 0 + 24,40: 0 + 24,41: 0 + 24,42: 0 + 24,43: 0 + 24,44: 0 + 24,45: 0 + 24,46: 0 + 24,47: 0 + 25,32: 0 + 25,33: 0 + 25,34: 0 + 25,35: 0 + 25,36: 0 + 25,37: 0 + 25,38: 0 + 25,39: 0 + 25,40: 0 + 25,41: 0 + 25,42: 0 + 25,43: 0 + 25,44: 0 + 25,45: 0 + 25,46: 0 + 25,47: 0 + 26,32: 0 + 26,33: 0 + 26,34: 0 + 26,35: 0 + 26,36: 0 + 26,37: 0 + 26,38: 0 + 26,39: 0 + 26,40: 0 + 26,41: 0 + 26,42: 0 + 26,43: 0 + 26,44: 0 + 26,45: 0 + 26,46: 0 + 26,47: 0 + 27,32: 0 + 27,33: 0 + 27,34: 0 + 27,35: 0 + 27,36: 0 + 27,37: 0 + 27,38: 0 + 27,39: 0 + 27,40: 0 + 27,41: 0 + 27,42: 0 + 27,43: 0 + 27,44: 0 + 27,45: 0 + 27,46: 0 + 27,47: 0 + 28,32: 0 + 28,33: 0 + 28,34: 0 + 28,35: 0 + 28,36: 0 + 28,37: 0 + 28,38: 0 + 28,39: 0 + 28,40: 0 + 28,41: 0 + 28,42: 0 + 28,43: 0 + 28,44: 0 + 28,45: 0 + 28,46: 0 + 28,47: 0 + 29,32: 0 + 29,33: 0 + 29,34: 0 + 29,35: 0 + 29,36: 0 + 29,37: 0 + 29,38: 0 + 29,39: 0 + 29,40: 0 + 29,41: 0 + 29,42: 0 + 29,43: 0 + 29,44: 0 + 29,45: 0 + 29,46: 0 + 29,47: 0 + 30,32: 0 + 30,33: 0 + 30,34: 0 + 30,35: 0 + 30,36: 0 + 30,37: 0 + 30,38: 0 + 30,39: 0 + 30,40: 0 + 30,41: 0 + 30,42: 0 + 30,43: 0 + 30,44: 0 + 30,45: 0 + 30,46: 0 + 30,47: 0 + 31,32: 0 + 31,33: 0 + 31,34: 0 + 31,35: 0 + 31,36: 0 + 31,37: 0 + 31,38: 0 + 31,39: 0 + 31,40: 0 + 31,41: 0 + 31,42: 0 + 31,43: 0 + 31,44: 0 + 31,45: 0 + 31,46: 0 + 31,47: 0 + 16,17: 0 + 16,20: 0 + 16,21: 0 + 16,22: 0 + 16,23: 0 + 16,24: 0 + 16,25: 0 + 16,26: 0 + 16,27: 0 + 16,28: 0 + 16,29: 0 + 16,30: 0 + 16,31: 0 + 17,17: 0 + 17,18: 0 + 17,19: 0 + 17,20: 0 + 17,21: 0 + 17,22: 0 + 17,23: 0 + 17,24: 0 + 17,25: 0 + 17,26: 0 + 17,27: 0 + 17,28: 0 + 17,29: 0 + 17,30: 0 + 17,31: 0 + 18,16: 0 + 18,17: 0 + 18,18: 0 + 18,19: 0 + 18,20: 0 + 18,21: 0 + 18,22: 0 + 18,23: 0 + 18,24: 0 + 18,25: 0 + 18,26: 0 + 18,27: 0 + 18,28: 0 + 18,29: 0 + 18,30: 0 + 18,31: 0 + 19,16: 0 + 19,17: 0 + 19,18: 0 + 19,19: 0 + 19,20: 0 + 19,21: 0 + 19,22: 0 + 19,23: 0 + 19,24: 0 + 19,25: 0 + 19,26: 0 + 19,27: 0 + 19,28: 0 + 19,29: 0 + 19,30: 0 + 19,31: 0 + 20,16: 0 + 20,17: 0 + 20,18: 0 + 20,19: 0 + 20,20: 0 + 20,21: 0 + 20,22: 0 + 20,23: 0 + 20,24: 0 + 20,25: 0 + 20,26: 0 + 20,27: 0 + 20,28: 0 + 20,29: 0 + 20,30: 0 + 20,31: 0 + 21,16: 0 + 21,17: 0 + 21,18: 0 + 21,19: 0 + 21,20: 0 + 21,21: 0 + 21,22: 0 + 21,23: 0 + 21,24: 0 + 21,25: 0 + 21,26: 0 + 21,27: 0 + 21,28: 0 + 21,29: 0 + 21,30: 0 + 21,31: 0 + 22,16: 0 + 22,17: 0 + 22,18: 0 + 22,19: 0 + 22,20: 0 + 22,21: 0 + 22,22: 0 + 22,23: 0 + 22,24: 0 + 22,25: 0 + 22,26: 0 + 22,27: 0 + 22,28: 0 + 22,29: 0 + 22,30: 0 + 22,31: 0 + 23,16: 0 + 23,17: 0 + 23,18: 0 + 23,19: 0 + 23,20: 0 + 23,21: 0 + 23,22: 0 + 23,23: 0 + 23,24: 0 + 23,25: 0 + 23,26: 0 + 23,27: 0 + 23,28: 0 + 23,29: 0 + 23,30: 0 + 23,31: 0 + 24,16: 0 + 24,17: 0 + 24,18: 0 + 24,19: 0 + 24,20: 0 + 24,21: 0 + 24,22: 0 + 24,23: 0 + 24,24: 0 + 24,25: 0 + 24,26: 0 + 24,27: 0 + 24,28: 0 + 24,29: 0 + 24,30: 0 + 24,31: 0 + 25,16: 0 + 25,17: 0 + 25,18: 0 + 25,19: 0 + 25,20: 0 + 25,21: 0 + 25,22: 0 + 25,23: 0 + 25,24: 0 + 25,25: 0 + 25,26: 0 + 25,27: 0 + 25,28: 0 + 25,29: 0 + 25,30: 0 + 25,31: 0 + 26,16: 0 + 26,17: 0 + 26,18: 0 + 26,19: 0 + 26,20: 0 + 26,21: 0 + 26,22: 0 + 26,23: 0 + 26,24: 0 + 26,25: 0 + 26,26: 0 + 26,27: 0 + 26,28: 0 + 26,29: 0 + 26,30: 0 + 26,31: 0 + 27,16: 0 + 27,17: 0 + 27,18: 0 + 27,19: 0 + 27,20: 0 + 27,21: 0 + 27,22: 0 + 27,23: 0 + 27,24: 0 + 27,25: 0 + 27,26: 0 + 27,27: 0 + 27,28: 0 + 27,29: 0 + 27,30: 0 + 27,31: 0 + 28,16: 0 + 28,17: 0 + 28,18: 0 + 28,19: 0 + 28,20: 0 + 28,21: 0 + 28,22: 0 + 28,23: 0 + 28,24: 0 + 28,25: 0 + 28,26: 0 + 28,27: 0 + 28,28: 0 + 28,29: 0 + 28,30: 0 + 28,31: 0 + 29,16: 0 + 29,17: 0 + 29,18: 0 + 29,19: 0 + 29,20: 0 + 29,21: 0 + 29,22: 0 + 29,23: 0 + 29,24: 0 + 29,25: 0 + 29,26: 0 + 29,27: 0 + 29,28: 0 + 29,29: 0 + 29,30: 0 + 29,31: 0 + 30,16: 0 + 30,17: 0 + 30,18: 0 + 30,19: 0 + 30,20: 0 + 30,21: 0 + 30,22: 0 + 30,23: 0 + 30,24: 0 + 30,25: 0 + 30,26: 0 + 30,27: 0 + 30,28: 0 + 30,29: 0 + 30,30: 0 + 30,31: 0 + 31,16: 0 + 31,17: 0 + 31,18: 0 + 31,19: 0 + 31,20: 0 + 31,21: 0 + 31,22: 0 + 31,23: 0 + 31,24: 0 + 31,25: 0 + 31,26: 0 + 31,27: 0 + 31,28: 0 + 31,29: 0 + 31,30: 0 + 31,31: 0 + 16,14: 0 + 17,14: 0 + 18,14: 0 + 18,15: 0 + 19,13: 0 + 19,14: 0 + 19,15: 0 + 20,13: 0 + 20,14: 0 + 20,15: 0 + 21,13: 0 + 21,14: 0 + 21,15: 0 + 22,12: 0 + 22,13: 0 + 22,14: 0 + 22,15: 0 + 23,12: 0 + 23,13: 0 + 23,14: 0 + 23,15: 0 + 24,12: 0 + 24,13: 0 + 24,14: 0 + 24,15: 0 + 25,12: 0 + 25,13: 0 + 25,14: 0 + 25,15: 0 + 26,12: 0 + 26,13: 0 + 26,14: 0 + 26,15: 0 + 27,12: 0 + 27,13: 0 + 27,14: 0 + 27,15: 0 + 28,12: 0 + 28,13: 0 + 28,14: 0 + 28,15: 0 + 29,12: 0 + 29,13: 0 + 29,14: 0 + 29,15: 0 + 30,12: 0 + 30,13: 0 + 30,14: 0 + 30,15: 0 + 31,12: 0 + 31,13: 0 + 31,14: 0 + 31,15: 0 + 16,50: 0 + 17,49: 0 + 17,50: 0 + 17,51: 0 + 18,48: 0 + 18,49: 0 + 18,50: 0 + 18,51: 0 + 18,52: 0 + 19,48: 0 + 19,49: 0 + 19,50: 0 + 19,51: 0 + 19,52: 0 + 19,53: 0 + 20,48: 0 + 20,49: 0 + 20,50: 0 + 20,51: 0 + 20,52: 0 + 20,53: 0 + 21,48: 0 + 21,49: 0 + 21,50: 0 + 21,51: 0 + 21,52: 0 + 21,53: 0 + 22,48: 0 + 22,49: 0 + 22,50: 0 + 22,51: 0 + 22,52: 0 + 22,53: 0 + 22,54: 0 + 23,48: 0 + 23,49: 0 + 23,50: 0 + 23,51: 0 + 23,52: 0 + 23,53: 0 + 23,54: 0 + 24,48: 0 + 24,49: 0 + 24,50: 0 + 24,51: 0 + 24,52: 0 + 24,53: 0 + 24,54: 0 + 25,48: 0 + 25,49: 0 + 25,50: 0 + 25,51: 0 + 25,52: 0 + 25,53: 0 + 25,54: 0 + 25,55: 0 + 26,48: 0 + 26,49: 0 + 26,50: 0 + 26,51: 0 + 26,52: 0 + 26,53: 0 + 26,54: 0 + 26,55: 0 + 27,48: 0 + 27,49: 0 + 27,50: 0 + 27,51: 0 + 27,52: 0 + 27,53: 0 + 27,54: 0 + 27,55: 0 + 28,48: 0 + 28,49: 0 + 28,50: 0 + 28,51: 0 + 28,52: 0 + 28,53: 0 + 28,54: 0 + 28,55: 0 + 28,56: 0 + 29,48: 0 + 29,49: 0 + 29,50: 0 + 29,51: 0 + 29,52: 0 + 29,53: 0 + 29,54: 0 + 29,55: 0 + 29,56: 0 + 30,48: 0 + 30,49: 0 + 30,50: 0 + 30,51: 0 + 30,52: 0 + 30,53: 0 + 30,54: 0 + 30,55: 0 + 30,56: 0 + 31,48: 0 + 31,49: 0 + 31,50: 0 + 31,51: 0 + 31,52: 0 + 31,53: 0 + 31,54: 0 + 31,55: 0 + 31,56: 0 + 32,48: 0 + 32,49: 0 + 32,50: 0 + 32,51: 0 + 32,52: 0 + 32,53: 0 + 32,54: 0 + 32,55: 0 + 32,56: 0 + 33,48: 0 + 33,49: 0 + 33,50: 0 + 33,51: 0 + 33,52: 0 + 33,53: 0 + 33,54: 0 + 33,55: 0 + 33,56: 0 + 34,48: 0 + 34,49: 0 + 34,50: 0 + 34,51: 0 + 34,52: 0 + 34,53: 0 + 34,54: 0 + 34,55: 0 + 34,56: 0 + 35,48: 0 + 35,49: 0 + 35,50: 0 + 35,51: 0 + 35,52: 0 + 35,53: 0 + 35,54: 0 + 35,55: 0 + 35,56: 0 + 36,48: 0 + 36,49: 0 + 36,50: 0 + 36,51: 0 + 36,52: 0 + 36,53: 0 + 36,54: 0 + 36,55: 0 + 36,56: 0 + 37,48: 0 + 37,49: 0 + 37,50: 0 + 37,51: 0 + 37,52: 0 + 37,53: 0 + 37,54: 0 + 37,55: 0 + 38,48: 0 + 38,49: 0 + 38,50: 0 + 38,51: 0 + 38,52: 0 + 38,53: 0 + 38,54: 0 + 38,55: 0 + 39,48: 0 + 39,49: 0 + 39,50: 0 + 39,51: 0 + 39,52: 0 + 39,53: 0 + 39,54: 0 + 39,55: 0 + 40,48: 0 + 40,49: 0 + 40,50: 0 + 40,51: 0 + 40,52: 0 + 40,53: 0 + 40,54: 0 + 41,48: 0 + 41,49: 0 + 41,50: 0 + 41,51: 0 + 41,52: 0 + 41,53: 0 + 41,54: 0 + 42,48: 0 + 42,49: 0 + 42,50: 0 + 42,51: 0 + 42,52: 0 + 42,53: 0 + 42,54: 0 + 43,48: 0 + 43,49: 0 + 43,50: 0 + 43,51: 0 + 43,52: 0 + 43,53: 0 + 44,48: 0 + 44,49: 0 + 44,50: 0 + 44,51: 0 + 44,52: 0 + 44,53: 0 + 45,48: 0 + 45,49: 0 + 45,50: 0 + 45,51: 0 + 45,52: 0 + 45,53: 0 + 46,48: 0 + 46,49: 0 + 46,50: 0 + 46,51: 0 + 46,52: 0 + 47,50: 0 + 32,32: 0 + 32,33: 0 + 32,34: 0 + 32,35: 0 + 32,36: 0 + 32,37: 0 + 32,38: 0 + 32,39: 0 + 32,40: 0 + 32,41: 0 + 32,42: 0 + 32,43: 0 + 32,44: 0 + 32,45: 0 + 32,46: 0 + 32,47: 0 + 33,32: 0 + 33,33: 0 + 33,34: 0 + 33,35: 0 + 33,36: 0 + 33,37: 0 + 33,38: 0 + 33,39: 0 + 33,40: 0 + 33,41: 0 + 33,42: 0 + 33,43: 0 + 33,44: 0 + 33,45: 0 + 33,46: 0 + 33,47: 0 + 34,32: 0 + 34,33: 0 + 34,34: 0 + 34,35: 0 + 34,36: 0 + 34,37: 0 + 34,38: 0 + 34,39: 0 + 34,40: 0 + 34,41: 0 + 34,42: 0 + 34,43: 0 + 34,44: 0 + 34,45: 0 + 34,46: 0 + 34,47: 0 + 35,32: 0 + 35,33: 0 + 35,34: 0 + 35,35: 0 + 35,36: 0 + 35,37: 0 + 35,38: 0 + 35,39: 0 + 35,40: 0 + 35,41: 0 + 35,42: 0 + 35,43: 0 + 35,44: 0 + 35,45: 0 + 35,46: 0 + 35,47: 0 + 36,32: 0 + 36,33: 0 + 36,34: 0 + 36,35: 0 + 36,36: 0 + 36,37: 0 + 36,38: 0 + 36,39: 0 + 36,40: 0 + 36,41: 0 + 36,42: 0 + 36,43: 0 + 36,44: 0 + 36,45: 0 + 36,46: 0 + 36,47: 0 + 37,32: 0 + 37,33: 0 + 37,34: 0 + 37,35: 0 + 37,36: 0 + 37,37: 0 + 37,38: 0 + 37,39: 0 + 37,40: 0 + 37,41: 0 + 37,42: 0 + 37,43: 0 + 37,44: 0 + 37,45: 0 + 37,46: 0 + 37,47: 0 + 38,32: 0 + 38,33: 0 + 38,34: 0 + 38,35: 0 + 38,36: 0 + 38,37: 0 + 38,38: 0 + 38,39: 0 + 38,40: 0 + 38,41: 0 + 38,42: 0 + 38,43: 0 + 38,44: 0 + 38,45: 0 + 38,46: 0 + 38,47: 0 + 39,32: 0 + 39,33: 0 + 39,34: 0 + 39,35: 0 + 39,36: 0 + 39,37: 0 + 39,38: 0 + 39,39: 0 + 39,40: 0 + 39,41: 0 + 39,42: 0 + 39,43: 0 + 39,44: 0 + 39,45: 0 + 39,46: 0 + 39,47: 0 + 40,32: 0 + 40,33: 0 + 40,34: 0 + 40,35: 0 + 40,36: 0 + 40,37: 0 + 40,38: 0 + 40,39: 0 + 40,40: 0 + 40,41: 0 + 40,42: 0 + 40,43: 0 + 40,44: 0 + 40,45: 0 + 40,46: 0 + 40,47: 0 + 41,32: 0 + 41,33: 0 + 41,34: 0 + 41,35: 0 + 41,36: 0 + 41,37: 0 + 41,38: 0 + 41,39: 0 + 41,40: 0 + 41,41: 0 + 41,42: 0 + 41,43: 0 + 41,44: 0 + 41,45: 0 + 41,46: 0 + 41,47: 0 + 42,32: 0 + 42,33: 0 + 42,34: 0 + 42,35: 0 + 42,36: 0 + 42,37: 0 + 42,38: 0 + 42,39: 0 + 42,40: 0 + 42,41: 0 + 42,42: 0 + 42,43: 0 + 42,44: 0 + 42,45: 0 + 42,46: 0 + 42,47: 0 + 43,32: 0 + 43,33: 0 + 43,34: 0 + 43,35: 0 + 43,36: 0 + 43,37: 0 + 43,38: 0 + 43,39: 0 + 43,40: 0 + 43,41: 0 + 43,42: 0 + 43,43: 0 + 43,44: 0 + 43,45: 0 + 43,46: 0 + 43,47: 0 + 44,32: 0 + 44,33: 0 + 44,34: 0 + 44,35: 0 + 44,36: 0 + 44,37: 0 + 44,38: 0 + 44,39: 0 + 44,40: 0 + 44,41: 0 + 44,42: 0 + 44,43: 0 + 44,44: 0 + 44,45: 0 + 44,46: 0 + 44,47: 0 + 45,32: 0 + 45,33: 0 + 45,34: 0 + 45,35: 0 + 45,36: 0 + 45,37: 0 + 45,38: 0 + 45,39: 0 + 45,40: 0 + 45,41: 0 + 45,42: 0 + 45,43: 0 + 45,44: 0 + 45,45: 0 + 45,46: 0 + 45,47: 0 + 46,32: 0 + 46,33: 0 + 46,34: 0 + 46,35: 0 + 46,36: 0 + 46,37: 0 + 46,38: 0 + 46,39: 0 + 46,40: 0 + 46,41: 0 + 46,42: 0 + 46,43: 0 + 46,44: 0 + 46,45: 0 + 46,46: 0 + 46,47: 0 + 47,32: 0 + 47,33: 0 + 47,34: 0 + 47,35: 0 + 47,36: 0 + 47,37: 0 + 47,38: 0 + 47,39: 0 + 47,40: 0 + 47,45: 0 + 47,46: 0 + 48,32: 0 + 48,33: 0 + 48,34: 0 + 48,35: 0 + 48,36: 0 + 48,37: 0 + 48,40: 0 + 48,41: 0 + 48,44: 0 + 48,45: 0 + 48,46: 0 + 49,32: 0 + 49,33: 0 + 49,35: 0 + 49,36: 0 + 49,41: 0 + 49,42: 0 + 49,43: 0 + 49,44: 0 + 49,46: 0 + 50,32: 0 + 50,36: 0 + 50,37: 0 + 50,42: 0 + 50,43: 0 + 50,46: 0 + 51,32: 0 + 51,36: 0 + 51,37: 0 + 51,38: 0 + 51,41: 0 + 51,42: 0 + 51,46: 0 + 52,36: 0 + 52,38: 0 + 52,39: 0 + 52,40: 0 + 52,41: 0 + 52,46: 0 + 53,32: 0 + 53,36: 0 + 53,39: 0 + 53,40: 0 + 53,41: 0 + 53,42: 0 + 53,43: 0 + 53,44: 0 + 53,45: 0 + 53,46: 0 + 53,47: 0 + 54,32: 0 + 54,33: 0 + 54,36: 0 + 54,38: 0 + 54,39: 0 + 54,41: 0 + 54,46: 0 + 54,47: 0 + 55,33: 0 + 55,34: 0 + 55,36: 0 + 55,37: 0 + 55,38: 0 + 55,41: 0 + 55,42: 0 + 55,46: 0 + 55,47: 0 + 56,33: 0 + 56,34: 0 + 56,35: 0 + 56,36: 0 + 56,37: 0 + 56,40: 0 + 56,41: 0 + 56,42: 0 + 56,43: 0 + 56,46: 0 + 57,32: 0 + 57,33: 0 + 57,35: 0 + 57,36: 0 + 57,39: 0 + 57,40: 0 + 57,41: 0 + 57,43: 0 + 57,44: 0 + 57,46: 0 + 58,32: 0 + 58,33: 0 + 58,36: 0 + 58,38: 0 + 58,39: 0 + 58,41: 0 + 58,44: 0 + 58,45: 0 + 58,46: 0 + 59,32: 0 + 59,33: 0 + 59,36: 0 + 59,37: 0 + 59,38: 0 + 59,41: 0 + 59,46: 0 + 60,32: 0 + 60,33: 0 + 60,36: 0 + 60,37: 0 + 60,41: 0 + 60,42: 0 + 60,43: 0 + 60,44: 0 + 60,45: 0 + 60,46: 0 + 60,47: 0 + 61,32: 0 + 61,33: 0 + 61,36: 0 + 61,40: 0 + 61,41: 0 + 61,42: 0 + 61,43: 0 + 61,44: 0 + 61,45: 0 + 61,46: 0 + 61,47: 0 + 62,32: 0 + 62,33: 0 + 62,35: 0 + 62,36: 0 + 62,37: 0 + 62,39: 0 + 62,40: 0 + 62,41: 0 + 62,42: 0 + 62,43: 0 + 62,44: 0 + 62,45: 0 + 62,46: 0 + 62,47: 0 + 63,32: 0 + 63,33: 0 + 63,34: 0 + 63,35: 0 + 63,36: 0 + 63,37: 0 + 63,38: 0 + 63,39: 0 + 63,40: 0 + 63,41: 0 + 63,42: 0 + 63,43: 0 + 63,44: 0 + 63,45: 0 + 63,46: 0 + 63,47: 0 + 48,17: 0 + 48,20: 0 + 48,21: 0 + 48,22: 0 + 48,23: 0 + 48,24: 0 + 48,25: 0 + 48,26: 0 + 48,27: 0 + 48,28: 0 + 48,29: 0 + 48,30: 0 + 48,31: 0 + 49,17: 0 + 49,18: 0 + 49,19: 0 + 49,23: 0 + 49,24: 0 + 49,25: 0 + 49,26: 0 + 49,27: 0 + 49,28: 0 + 49,29: 0 + 49,30: 0 + 49,31: 0 + 50,18: 0 + 50,23: 0 + 50,24: 0 + 50,25: 0 + 50,26: 0 + 50,27: 0 + 50,28: 0 + 50,29: 0 + 50,30: 0 + 50,31: 0 + 51,18: 0 + 51,19: 0 + 51,22: 0 + 51,23: 0 + 51,25: 0 + 51,26: 0 + 51,27: 0 + 51,28: 0 + 51,29: 0 + 51,30: 0 + 51,31: 0 + 52,19: 0 + 52,21: 0 + 52,22: 0 + 52,26: 0 + 52,27: 0 + 52,28: 0 + 52,29: 0 + 52,30: 0 + 52,31: 0 + 53,19: 0 + 53,20: 0 + 53,21: 0 + 53,26: 0 + 53,27: 0 + 53,28: 0 + 53,29: 0 + 53,30: 0 + 53,31: 0 + 54,20: 0 + 54,25: 0 + 54,26: 0 + 54,27: 0 + 54,28: 0 + 54,29: 0 + 54,30: 0 + 55,20: 0 + 55,21: 0 + 55,24: 0 + 55,25: 0 + 55,26: 0 + 55,27: 0 + 55,28: 0 + 55,29: 0 + 55,30: 0 + 56,21: 0 + 56,23: 0 + 56,24: 0 + 56,26: 0 + 56,27: 0 + 56,28: 0 + 56,29: 0 + 56,30: 0 + 57,21: 0 + 57,22: 0 + 57,23: 0 + 57,25: 0 + 57,26: 0 + 57,27: 0 + 57,28: 0 + 57,29: 0 + 57,30: 0 + 57,31: 0 + 58,22: 0 + 58,24: 0 + 58,25: 0 + 58,26: 0 + 58,27: 0 + 58,28: 0 + 58,29: 0 + 58,30: 0 + 58,31: 0 + 59,22: 0 + 59,23: 0 + 59,24: 0 + 59,25: 0 + 59,26: 0 + 59,27: 0 + 59,28: 0 + 59,29: 0 + 59,30: 0 + 59,31: 0 + 60,22: 0 + 60,23: 0 + 60,24: 0 + 60,25: 0 + 60,26: 0 + 60,27: 0 + 60,28: 0 + 60,29: 0 + 60,30: 0 + 60,31: 0 + 61,22: 0 + 61,23: 0 + 61,24: 0 + 61,25: 0 + 61,26: 0 + 61,27: 0 + 61,28: 0 + 61,29: 0 + 61,30: 0 + 61,31: 0 + 62,22: 0 + 62,23: 0 + 62,24: 0 + 62,25: 0 + 62,26: 0 + 62,27: 0 + 62,28: 0 + 62,29: 0 + 62,30: 0 + 62,31: 0 + 63,21: 0 + 63,22: 0 + 63,23: 0 + 63,24: 0 + 63,25: 0 + 63,26: 0 + 63,27: 0 + 63,28: 0 + 63,29: 0 + 63,30: 0 + 63,31: 0 + 32,16: 0 + 32,17: 0 + 32,18: 0 + 32,19: 0 + 32,20: 0 + 32,21: 0 + 32,22: 0 + 32,23: 0 + 32,24: 0 + 32,25: 0 + 32,26: 0 + 32,27: 0 + 32,28: 0 + 32,29: 0 + 32,30: 0 + 32,31: 0 + 33,16: 0 + 33,17: 0 + 33,18: 0 + 33,19: 0 + 33,20: 0 + 33,21: 0 + 33,22: 0 + 33,23: 0 + 33,24: 0 + 33,25: 0 + 33,26: 0 + 33,27: 0 + 33,28: 0 + 33,29: 0 + 33,30: 0 + 33,31: 0 + 34,16: 0 + 34,17: 0 + 34,18: 0 + 34,19: 0 + 34,20: 0 + 34,21: 0 + 34,22: 0 + 34,23: 0 + 34,24: 0 + 34,25: 0 + 34,26: 0 + 34,27: 0 + 34,28: 0 + 34,29: 0 + 34,30: 0 + 34,31: 0 + 35,16: 0 + 35,17: 0 + 35,18: 0 + 35,19: 0 + 35,20: 0 + 35,21: 0 + 35,22: 0 + 35,23: 0 + 35,24: 0 + 35,25: 0 + 35,26: 0 + 35,27: 0 + 35,28: 0 + 35,29: 0 + 35,30: 0 + 35,31: 0 + 36,16: 0 + 36,17: 0 + 36,18: 0 + 36,19: 0 + 36,20: 0 + 36,21: 0 + 36,22: 0 + 36,23: 0 + 36,24: 0 + 36,25: 0 + 36,26: 0 + 36,27: 0 + 36,28: 0 + 36,29: 0 + 36,30: 0 + 36,31: 0 + 37,16: 0 + 37,17: 0 + 37,18: 0 + 37,19: 0 + 37,20: 0 + 37,21: 0 + 37,22: 0 + 37,23: 0 + 37,24: 0 + 37,25: 0 + 37,26: 0 + 37,27: 0 + 37,28: 0 + 37,29: 0 + 37,30: 0 + 37,31: 0 + 38,16: 0 + 38,17: 0 + 38,18: 0 + 38,19: 0 + 38,20: 0 + 38,21: 0 + 38,22: 0 + 38,23: 0 + 38,24: 0 + 38,25: 0 + 38,26: 0 + 38,27: 0 + 38,28: 0 + 38,29: 0 + 38,30: 0 + 38,31: 0 + 39,16: 0 + 39,17: 0 + 39,18: 0 + 39,19: 0 + 39,20: 0 + 39,21: 0 + 39,22: 0 + 39,23: 0 + 39,24: 0 + 39,25: 0 + 39,26: 0 + 39,27: 0 + 39,28: 0 + 39,29: 0 + 39,30: 0 + 39,31: 0 + 40,16: 0 + 40,17: 0 + 40,18: 0 + 40,19: 0 + 40,20: 0 + 40,21: 0 + 40,22: 0 + 40,23: 0 + 40,24: 0 + 40,25: 0 + 40,26: 0 + 40,27: 0 + 40,28: 0 + 40,29: 0 + 40,30: 0 + 40,31: 0 + 41,16: 0 + 41,17: 0 + 41,18: 0 + 41,19: 0 + 41,20: 0 + 41,21: 0 + 41,22: 0 + 41,23: 0 + 41,24: 0 + 41,25: 0 + 41,26: 0 + 41,27: 0 + 41,28: 0 + 41,29: 0 + 41,30: 0 + 41,31: 0 + 42,16: 0 + 42,17: 0 + 42,18: 0 + 42,19: 0 + 42,20: 0 + 42,21: 0 + 42,22: 0 + 42,23: 0 + 42,24: 0 + 42,25: 0 + 42,26: 0 + 42,27: 0 + 42,28: 0 + 42,29: 0 + 42,30: 0 + 42,31: 0 + 43,16: 0 + 43,17: 0 + 43,18: 0 + 43,19: 0 + 43,20: 0 + 43,21: 0 + 43,22: 0 + 43,23: 0 + 43,24: 0 + 43,25: 0 + 43,26: 0 + 43,27: 0 + 43,28: 0 + 43,29: 0 + 43,30: 0 + 43,31: 0 + 44,16: 0 + 44,17: 0 + 44,18: 0 + 44,19: 0 + 44,20: 0 + 44,21: 0 + 44,22: 0 + 44,23: 0 + 44,24: 0 + 44,25: 0 + 44,26: 0 + 44,27: 0 + 44,28: 0 + 44,29: 0 + 44,30: 0 + 44,31: 0 + 45,16: 0 + 45,17: 0 + 45,18: 0 + 45,19: 0 + 45,20: 0 + 45,21: 0 + 45,22: 0 + 45,23: 0 + 45,24: 0 + 45,25: 0 + 45,26: 0 + 45,27: 0 + 45,28: 0 + 45,29: 0 + 45,30: 0 + 45,31: 0 + 46,16: 0 + 46,17: 0 + 46,18: 0 + 46,19: 0 + 46,20: 0 + 46,21: 0 + 46,22: 0 + 46,23: 0 + 46,24: 0 + 46,25: 0 + 46,26: 0 + 46,27: 0 + 46,28: 0 + 46,29: 0 + 46,30: 0 + 46,31: 0 + 47,16: 0 + 47,17: 0 + 47,18: 0 + 47,19: 0 + 47,20: 0 + 47,21: 0 + 47,22: 0 + 47,23: 0 + 47,24: 0 + 47,25: 0 + 47,26: 0 + 47,27: 0 + 47,28: 0 + 47,29: 0 + 47,30: 0 + 47,31: 0 + 32,12: 0 + 32,13: 0 + 32,14: 0 + 32,15: 0 + 33,12: 0 + 33,13: 0 + 33,14: 0 + 33,15: 0 + 34,12: 0 + 34,13: 0 + 34,14: 0 + 34,15: 0 + 35,12: 0 + 35,13: 0 + 35,14: 0 + 35,15: 0 + 36,12: 0 + 36,13: 0 + 36,14: 0 + 36,15: 0 + 37,12: 0 + 37,13: 0 + 37,14: 0 + 37,15: 0 + 38,12: 0 + 38,13: 0 + 38,14: 0 + 38,15: 0 + 39,12: 0 + 39,13: 0 + 39,14: 0 + 39,15: 0 + 40,12: 0 + 40,13: 0 + 40,14: 0 + 40,15: 0 + 41,12: 0 + 41,13: 0 + 41,14: 0 + 41,15: 0 + 42,12: 0 + 42,13: 0 + 42,14: 0 + 42,15: 0 + 43,13: 0 + 43,14: 0 + 43,15: 0 + 44,13: 0 + 44,14: 0 + 44,15: 0 + 45,13: 0 + 45,14: 0 + 45,15: 0 + 46,14: 0 + 46,15: 0 + 64,21: 0 + 64,22: 0 + 64,23: 0 + 64,24: 0 + 64,25: 0 + 64,26: 0 + 64,27: 0 + 64,28: 0 + 64,29: 0 + 64,30: 0 + 64,31: 0 + 65,21: 0 + 65,22: 0 + 65,23: 0 + 65,24: 0 + 65,25: 0 + 65,26: 0 + 65,27: 0 + 65,28: 0 + 65,29: 0 + 65,30: 0 + 65,31: 0 + 66,21: 0 + 66,22: 0 + 66,23: 0 + 66,24: 0 + 66,25: 0 + 66,26: 0 + 66,27: 0 + 66,28: 0 + 66,29: 0 + 66,30: 0 + 66,31: 0 + 67,21: 0 + 67,22: 0 + 67,23: 0 + 67,24: 0 + 67,25: 0 + 67,26: 0 + 67,27: 0 + 67,28: 0 + 67,29: 0 + 67,30: 0 + 67,31: 0 + 68,22: 0 + 68,23: 0 + 68,24: 0 + 68,25: 0 + 68,26: 0 + 68,27: 0 + 68,28: 0 + 68,29: 0 + 68,30: 0 + 68,31: 0 + 69,22: 0 + 69,23: 0 + 69,24: 0 + 69,25: 0 + 69,26: 0 + 69,27: 0 + 69,28: 0 + 69,29: 0 + 69,30: 0 + 69,31: 0 + 70,22: 0 + 70,23: 0 + 70,24: 0 + 70,25: 0 + 70,26: 0 + 70,27: 0 + 70,28: 0 + 70,29: 0 + 70,30: 0 + 70,31: 0 + 71,22: 0 + 71,23: 0 + 71,24: 0 + 71,25: 0 + 71,26: 0 + 71,27: 0 + 71,28: 0 + 71,29: 0 + 71,30: 0 + 71,31: 0 + 72,23: 0 + 72,24: 0 + 72,25: 0 + 72,26: 0 + 72,27: 0 + 72,28: 0 + 72,29: 0 + 72,30: 0 + 72,31: 0 + 73,24: 0 + 73,25: 0 + 73,26: 0 + 73,27: 0 + 73,28: 0 + 73,29: 0 + 73,30: 0 + 73,31: 0 + 74,25: 0 + 74,26: 0 + 74,27: 0 + 74,28: 0 + 74,29: 0 + 74,30: 0 + 74,31: 0 + 75,25: 0 + 75,26: 0 + 75,27: 0 + 75,28: 0 + 75,29: 0 + 75,30: 0 + 75,31: 0 + 76,25: 0 + 76,26: 0 + 76,27: 0 + 76,28: 0 + 76,29: 0 + 76,30: 0 + 76,31: 0 + 77,25: 0 + 77,26: 0 + 77,27: 0 + 77,28: 0 + 77,29: 0 + 77,30: 0 + 77,31: 0 + 78,26: 0 + 78,27: 0 + 78,28: 0 + 78,29: 0 + 78,30: 0 + 79,26: 0 + 79,27: 0 + 79,28: 0 + 79,29: 0 + 79,30: 0 + 64,32: 0 + 64,33: 0 + 64,34: 0 + 64,35: 0 + 64,36: 0 + 64,37: 0 + 64,38: 0 + 64,39: 0 + 64,40: 0 + 64,41: 0 + 64,42: 0 + 64,43: 0 + 64,44: 0 + 64,45: 0 + 64,46: 0 + 64,47: 0 + 65,32: 0 + 65,33: 0 + 65,34: 0 + 65,35: 0 + 65,36: 0 + 65,37: 0 + 65,38: 0 + 65,39: 0 + 65,40: 0 + 65,41: 0 + 65,42: 0 + 65,43: 0 + 65,44: 0 + 65,45: 0 + 65,46: 0 + 65,47: 0 + 66,32: 0 + 66,33: 0 + 66,34: 0 + 66,35: 0 + 66,36: 0 + 66,37: 0 + 66,38: 0 + 66,39: 0 + 66,40: 0 + 66,41: 0 + 66,42: 0 + 66,43: 0 + 66,44: 0 + 66,45: 0 + 66,46: 0 + 66,47: 0 + 67,32: 0 + 67,33: 0 + 67,34: 0 + 67,35: 0 + 67,36: 0 + 67,37: 0 + 67,38: 0 + 67,39: 0 + 67,40: 0 + 67,41: 0 + 67,42: 0 + 67,43: 0 + 67,44: 0 + 67,45: 0 + 67,46: 0 + 67,47: 0 + 68,32: 0 + 68,33: 0 + 68,36: 0 + 68,39: 0 + 68,40: 0 + 68,41: 0 + 68,42: 0 + 68,43: 0 + 68,44: 0 + 68,45: 0 + 68,46: 0 + 68,47: 0 + 69,32: 0 + 69,33: 0 + 69,34: 0 + 69,35: 0 + 69,36: 0 + 69,37: 0 + 69,38: 0 + 69,39: 0 + 69,40: 0 + 69,41: 0 + 69,42: 0 + 69,43: 0 + 69,44: 0 + 69,45: 0 + 69,46: 0 + 69,47: 0 + 70,32: 0 + 70,33: 0 + 70,36: 0 + 70,37: 0 + 70,38: 0 + 70,41: 0 + 70,42: 0 + 70,43: 0 + 70,44: 0 + 70,45: 0 + 70,46: 0 + 70,47: 0 + 71,32: 0 + 71,33: 0 + 71,34: 0 + 71,35: 0 + 71,36: 0 + 71,42: 0 + 71,43: 0 + 71,44: 0 + 71,45: 0 + 71,46: 0 + 72,32: 0 + 72,36: 0 + 72,39: 0 + 72,40: 0 + 72,41: 0 + 72,42: 0 + 73,35: 0 + 73,36: 0 + 73,37: 0 + 73,38: 0 + 73,39: 0 + 74,34: 0 + 74,35: 0 + 75,33: 0 + 75,34: 0 + 76,32: 0 + 76,33: 0 + 77,32: 0 + 64,48: 0 + 64,49: 0 + 64,50: 0 + 64,51: 0 + 64,52: 0 + 64,53: 0 + 64,54: 0 + 65,48: 0 + 65,49: 0 + 65,50: 0 + 65,51: 0 + 65,52: 0 + 65,53: 0 + 65,54: 0 + 66,48: 0 + 66,49: 0 + 66,50: 0 + 66,51: 0 + 66,52: 0 + 66,53: 0 + 66,54: 0 + 67,48: 0 + 67,49: 0 + 67,50: 0 + 67,51: 0 + 67,52: 0 + 67,53: 0 + 67,54: 0 + 68,48: 0 + 68,49: 0 + 68,50: 0 + 68,51: 0 + 68,52: 0 + 68,53: 0 + 69,48: 0 + 69,49: 0 + 69,50: 0 + 69,51: 0 + 69,52: 0 + 70,48: 0 + 70,49: 0 + 70,50: 0 + 70,51: 0 + 48,50: 0 + 49,49: 0 + 49,50: 0 + 50,49: 0 + 51,48: 0 + 51,49: 0 + 52,48: 0 + 53,48: 0 + 55,48: 0 + 56,48: 0 + 56,49: 0 + 57,49: 0 + 57,50: 0 + 58,50: 0 + 58,51: 0 + 59,51: 0 + 60,48: 0 + 60,49: 0 + 60,50: 0 + 60,51: 0 + 61,48: 0 + 61,49: 0 + 61,50: 0 + 61,51: 0 + 61,52: 0 + 62,48: 0 + 62,49: 0 + 62,50: 0 + 62,51: 0 + 62,52: 0 + 62,53: 0 + 63,48: 0 + 63,49: 0 + 63,50: 0 + 63,51: 0 + 63,52: 0 + 63,53: 0 + 63,54: 0 + 80,26: 0 + 80,27: 0 + 80,28: 0 + 80,29: 0 + 80,30: 0 + 81,27: 0 + 81,28: 0 + 81,29: 0 + 82,27: 0 + 82,28: 0 + 82,29: 0 + 83,27: 0 + 83,28: 0 + 83,29: 0 + -35,32: 0 + -35,33: 0 + -35,34: 0 + -34,32: 0 + -34,33: 0 + -34,34: 0 + -34,35: 0 + -33,32: 0 + -33,33: 0 + -33,34: 0 + -33,35: 0 + -35,22: 0 + -35,23: 0 + -35,24: 0 + -35,25: 0 + -35,26: 0 + -35,27: 0 + -35,29: 0 + -35,30: 0 + -35,31: 0 + -34,21: 0 + -34,22: 0 + -34,23: 0 + -34,24: 0 + -34,25: 0 + -34,26: 0 + -34,27: 0 + -34,28: 0 + -34,29: 0 + -34,30: 0 + -34,31: 0 + -33,21: 0 + -33,22: 0 + -33,23: 0 + -33,24: 0 + -33,25: 0 + -33,26: 0 + -33,27: 0 + -33,29: 0 + -33,30: 0 + -33,31: 0 + -9,0: 0 + -9,1: 0 + -8,0: 0 + -8,1: 0 + -8,2: 0 + -8,3: 0 + -8,4: 0 + -7,0: 0 + -7,1: 0 + -7,2: 0 + -7,4: 0 + -7,5: 0 + -7,6: 0 + -7,7: 0 + -7,8: 0 + -6,0: 0 + -6,1: 0 + -6,2: 0 + -6,5: 0 + -6,6: 0 + -5,0: 0 + -5,1: 0 + -5,2: 0 + -5,6: 0 + -5,7: 0 + -4,0: 0 + -4,1: 0 + -4,2: 0 + -4,3: 0 + -3,0: 0 + 1,0: 0 + 2,0: 0 + 2,1: 0 + 2,2: 0 + 2,3: 0 + 3,0: 0 + 3,1: 0 + 3,2: 0 + 3,6: 0 + 3,7: 0 + 4,0: 0 + 4,1: 0 + 4,2: 0 + 4,5: 0 + 4,6: 0 + 5,0: 0 + 5,1: 0 + 5,2: 0 + 5,4: 0 + 5,5: 0 + 5,6: 0 + 5,7: 0 + 5,8: 0 + 6,0: 0 + 6,1: 0 + 6,2: 0 + 6,3: 0 + 6,4: 0 + 7,0: 0 + 7,1: 0 + -32,21: 0 + -32,22: 0 + -32,23: 0 + -32,24: 0 + -32,25: 0 + -32,26: 0 + -32,27: 0 + -32,28: 0 + -32,29: 0 + -32,30: 0 + -32,31: 0 + -31,21: 0 + -31,22: 0 + -31,23: 0 + -31,24: 0 + -31,25: 0 + -31,26: 0 + -31,30: 0 + -31,31: 0 + -30,20: 0 + -30,21: 0 + -30,22: 0 + -30,23: 0 + -30,24: 0 + -30,25: 0 + -30,26: 0 + -30,30: 0 + -30,31: 0 + -29,20: 0 + -29,21: 0 + -29,22: 0 + -29,23: 0 + -29,24: 0 + -29,25: 0 + -29,26: 0 + -29,30: 0 + -29,31: 0 + -28,20: 0 + -28,21: 0 + -28,22: 0 + -28,23: 0 + -28,24: 0 + -28,25: 0 + -28,31: 0 + -27,21: 0 + -27,22: 0 + -27,23: 0 + -27,24: 0 + -27,25: 0 + -27,31: 0 + -26,21: 0 + -26,25: 0 + -26,31: 0 + -25,21: 0 + -25,22: 0 + -24,22: 0 + -24,23: 0 + -23,22: 0 + -23,23: 0 + -23,24: 0 + -22,22: 0 + -22,24: 0 + -21,22: 0 + -32,32: 0 + -32,33: 0 + -32,34: 0 + -32,35: 0 + -31,32: 0 + -31,33: 0 + -31,34: 0 + -31,35: 0 + -30,32: 0 + -30,33: 0 + -30,34: 0 + -30,35: 0 + -30,36: 0 + -29,32: 0 + -29,33: 0 + -29,34: 0 + -29,35: 0 + -29,36: 0 + -28,32: 0 + -28,33: 0 + -28,34: 0 + -28,35: 0 + -28,36: 0 + -27,32: 0 + -27,33: 0 + -27,34: 0 + -27,35: 0 + -26,35: 0 + -25,34: 0 + -25,35: 0 + -24,33: 0 + -24,34: 0 + -23,32: 0 + -23,33: 0 + -23,34: 0 + -22,32: 0 + -22,34: 0 + -21,34: 0 + 30,11: 0 + 31,11: 0 + 32,11: 0 + 33,11: 0 + 34,11: 0 + 78,25: 0 + 78,31: 0 + 79,25: 0 + 79,31: 0 + 80,25: 0 + 80,31: 0 + 81,25: 0 + 81,26: 0 + 81,30: 0 + 81,31: 0 + 82,25: 0 + 82,26: 0 + 82,30: 0 + 82,31: 0 + 83,26: 0 + 83,30: 0 + 0,-6: 0 + 0,-5: 0 + 0,-4: 0 + 0,-3: 0 + 1,-6: 0 + 1,-5: 0 + 1,-4: 0 + 1,-3: 0 + 1,-2: 0 + 1,-1: 0 + 2,-6: 0 + 2,-5: 0 + 2,-4: 0 + 2,-3: 0 + 2,-2: 0 + 2,-1: 0 + 3,-6: 0 + 3,-5: 0 + 3,-4: 0 + 3,-3: 0 + 3,-2: 0 + 3,-1: 0 + 4,-6: 0 + 4,-5: 0 + 4,-4: 0 + 4,-3: 0 + 4,-2: 0 + 4,-1: 0 + 5,-6: 0 + 5,-5: 0 + 5,-4: 0 + 5,-3: 0 + 5,-2: 0 + 5,-1: 0 + 6,-5: 0 + 6,-4: 0 + 6,-3: 0 + 6,-2: 0 + 6,-1: 0 + 7,-1: 0 + -9,-1: 0 + -8,-5: 0 + -8,-4: 0 + -8,-3: 0 + -8,-2: 0 + -8,-1: 0 + -7,-6: 0 + -7,-5: 0 + -7,-4: 0 + -7,-3: 0 + -7,-2: 0 + -7,-1: 0 + -6,-6: 0 + -6,-5: 0 + -6,-4: 0 + -6,-3: 0 + -6,-2: 0 + -6,-1: 0 + -5,-6: 0 + -5,-5: 0 + -5,-4: 0 + -5,-3: 0 + -5,-2: 0 + -5,-1: 0 + -4,-6: 0 + -4,-5: 0 + -4,-4: 0 + -4,-3: 0 + -4,-2: 0 + -4,-1: 0 + -3,-6: 0 + -3,-5: 0 + -3,-4: 0 + -3,-3: 0 + -3,-2: 0 + -3,-1: 0 + -2,-6: 0 + -2,-5: 0 + -2,-4: 0 + -2,-3: 0 + -1,-5: 0 + -1,-3: 0 + -13,34: 0 + -13,35: 0 + -13,38: 0 + -12,34: 0 + -12,35: 0 + -12,36: 0 + -12,37: 0 + -11,34: 0 + -11,35: 0 + -11,40: 0 + -10,35: 0 + -10,38: 0 + -10,41: 0 + -10,42: 0 + -9,33: 0 + -9,37: 0 + -9,38: 0 + -9,39: 0 + -9,42: 0 + -9,43: 0 + -8,33: 0 + -8,34: 0 + -8,37: 0 + -8,38: 0 + -8,39: 0 + -8,40: 0 + -8,43: 0 + -8,44: 0 + -7,33: 0 + -7,34: 0 + -7,35: 0 + -7,38: 0 + -7,39: 0 + -7,40: 0 + -7,41: 0 + -7,44: 0 + -7,45: 0 + -6,33: 0 + -6,34: 0 + -6,35: 0 + -6,36: 0 + -6,39: 0 + -4,33: 0 + -4,34: 0 + -4,35: 0 + -4,36: 0 + -4,37: 0 + 2,20: 0 + 2,21: 0 + 2,22: 0 + 2,23: 0 + 4,22: 0 + 4,23: 0 + 4,25: 0 + 4,31: 0 + 5,22: 0 + 5,23: 0 + 5,25: 0 + 5,31: 0 + 6,23: 0 + 6,25: 0 + 6,31: 0 + 7,25: 0 + 7,31: 0 + 2,33: 0 + 2,34: 0 + 2,35: 0 + 2,36: 0 + 2,37: 0 + 4,33: 0 + 4,34: 0 + 4,35: 0 + 5,33: 0 + 5,34: 0 + 6,33: 0 + -13,19: 0 + -13,21: 0 + -13,22: 0 + -12,19: 0 + -12,20: 0 + -12,21: 0 + -12,22: 0 + -11,17: 0 + -11,21: 0 + -11,22: 0 + -10,16: 0 + -10,17: 0 + -10,18: 0 + -10,21: 0 + -9,16: 0 + -9,17: 0 + -9,18: 0 + -9,19: 0 + -9,23: 0 + -9,25: 0 + -9,31: 0 + -8,16: 0 + -8,17: 0 + -8,18: 0 + -8,19: 0 + -8,22: 0 + -8,23: 0 + -8,25: 0 + -8,31: 0 + -7,16: 0 + -7,17: 0 + -7,18: 0 + -7,21: 0 + -7,22: 0 + -7,23: 0 + -7,25: 0 + -7,31: 0 + -6,20: 0 + -6,21: 0 + -6,22: 0 + -6,23: 0 + -6,25: 0 + -6,31: 0 + -4,20: 0 + -4,21: 0 + -4,22: 0 + -4,23: 0 + -10,15: 0 + -9,15: 0 + -8,12: 0 + -8,13: 0 + -7,11: 0 + -7,12: 0 + -7,13: 0 + -7,14: 0 + -6,8: 0 + 5,16: 0 + 5,21: 0 + 6,20: 0 + 6,21: 0 + 7,20: 0 + 7,23: 0 + 8,18: 0 + 8,22: 0 + 9,19: 0 + 10,16: 0 + 10,19: 0 + 10,20: 0 + 10,23: 0 + 10,25: 0 + 11,18: 0 + 11,22: 0 + 11,23: 0 + 12,21: 0 + 12,23: 0 + 14,19: 0 + 14,23: 0 + 15,16: 0 + 15,18: 0 + 4,36: 0 + 5,36: 0 + 5,43: 0 + 5,47: 0 + 6,36: 0 + 6,42: 0 + 6,43: 0 + 6,46: 0 + 6,47: 0 + 7,33: 0 + 7,38: 0 + 7,40: 0 + 7,43: 0 + 7,46: 0 + 7,47: 0 + 8,34: 0 + 8,37: 0 + 8,38: 0 + 8,40: 0 + 8,43: 0 + 8,44: 0 + 8,47: 0 + 9,36: 0 + 9,37: 0 + 9,43: 0 + 9,44: 0 + 9,47: 0 + 10,36: 0 + 10,40: 0 + 10,43: 0 + 10,44: 0 + 10,47: 0 + 11,34: 0 + 11,37: 0 + 12,33: 0 + 12,34: 0 + 12,38: 0 + 12,42: 0 + 12,43: 0 + 12,46: 0 + 12,47: 0 + 13,33: 0 + 13,42: 0 + 13,43: 0 + 13,47: 0 + 14,33: 0 + 14,36: 0 + 14,37: 0 + 14,42: 0 + 14,43: 0 + 14,44: 0 + 14,47: 0 + 15,36: 0 + 15,42: 0 + 15,44: 0 + 15,47: 0 + 5,13: 0 + 6,13: 0 + 8,14: 0 + 8,15: 0 + 9,15: 0 + 11,14: 0 + 12,14: 0 + 16,40: 0 + 16,46: 0 + 16,47: 0 + 17,47: 0 + 16,16: 0 + 17,16: 0 + 16,15: 0 + 17,13: 0 + 17,15: 0 + 18,13: 0 + 16,48: 0 + 16,49: 0 + 16,51: 0 + 17,48: 0 + 5,48: 0 + 6,48: 0 + 7,48: 0 + 8,48: 0 + 9,48: 0 + 10,48: 0 + 12,49: 0 + 13,49: 0 + 15,49: 0 + 15,51: 0 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: GridAtmosphere + - id: centcomm + type: BecomesStation +- uid: 56 + type: Catwalk + components: + - pos: 40.5,15.5 + parent: 55 + type: Transform +- uid: 57 + type: Catwalk + components: + - pos: 38.5,15.5 + parent: 55 + type: Transform +- uid: 58 + type: WallRiveted + components: + - pos: 24.5,18.5 + parent: 55 + type: Transform +- uid: 59 + type: WallRiveted + components: + - pos: 34.5,20.5 + parent: 55 + type: Transform +- uid: 60 + type: WallRiveted + components: + - pos: 34.5,19.5 + parent: 55 + type: Transform +- uid: 61 + type: WallRiveted + components: + - pos: 35.5,19.5 + parent: 55 + type: Transform +- uid: 62 + type: WallRiveted + components: + - pos: 36.5,19.5 + parent: 55 + type: Transform +- uid: 63 + type: WallRiveted + components: + - pos: 37.5,19.5 + parent: 55 + type: Transform +- uid: 64 + type: WallRiveted + components: + - pos: 37.5,18.5 + parent: 55 + type: Transform +- uid: 65 + type: WallRiveted + components: + - pos: 38.5,18.5 + parent: 55 + type: Transform +- uid: 66 + type: WallRiveted + components: + - pos: 39.5,18.5 + parent: 55 + type: Transform +- uid: 67 + type: WallRiveted + components: + - pos: 40.5,18.5 + parent: 55 + type: Transform +- uid: 68 + type: WallRiveted + components: + - pos: 40.5,17.5 + parent: 55 + type: Transform +- uid: 69 + type: WallRiveted + components: + - pos: 41.5,17.5 + parent: 55 + type: Transform +- uid: 70 + type: WallRiveted + components: + - pos: 42.5,17.5 + parent: 55 + type: Transform +- uid: 71 + type: WallRiveted + components: + - pos: 43.5,17.5 + parent: 55 + type: Transform +- uid: 72 + type: WallRiveted + components: + - pos: 44.5,17.5 + parent: 55 + type: Transform +- uid: 73 + type: WallRiveted + components: + - pos: 45.5,17.5 + parent: 55 + type: Transform +- uid: 74 + type: WallRiveted + components: + - pos: 46.5,17.5 + parent: 55 + type: Transform +- uid: 75 + type: WallRiveted + components: + - pos: 47.5,17.5 + parent: 55 + type: Transform +- uid: 76 + type: WallRiveted + components: + - pos: 46.5,16.5 + parent: 55 + type: Transform +- uid: 77 + type: WallRiveted + components: + - pos: 46.5,15.5 + parent: 55 + type: Transform +- uid: 78 + type: WallRiveted + components: + - pos: 46.5,14.5 + parent: 55 + type: Transform +- uid: 79 + type: WallRiveted + components: + - pos: 45.5,14.5 + parent: 55 + type: Transform +- uid: 80 + type: WallRiveted + components: + - pos: 45.5,13.5 + parent: 55 + type: Transform +- uid: 81 + type: WallRiveted + components: + - pos: 44.5,13.5 + parent: 55 + type: Transform +- uid: 82 + type: WallRiveted + components: + - pos: 43.5,13.5 + parent: 55 + type: Transform +- uid: 83 + type: WallRiveted + components: + - pos: 42.5,13.5 + parent: 55 + type: Transform +- uid: 84 + type: WallRiveted + components: + - pos: 42.5,12.5 + parent: 55 + type: Transform +- uid: 85 + type: WallRiveted + components: + - pos: 41.5,12.5 + parent: 55 + type: Transform +- uid: 86 + type: WallRiveted + components: + - pos: 35.5,12.5 + parent: 55 + type: Transform +- uid: 87 + type: WallRiveted + components: + - pos: 34.5,12.5 + parent: 55 + type: Transform +- uid: 88 + type: WallRiveted + components: + - pos: 30.5,12.5 + parent: 55 + type: Transform +- uid: 89 + type: WallRiveted + components: + - pos: 29.5,12.5 + parent: 55 + type: Transform +- uid: 90 + type: WallRiveted + components: + - pos: 25.5,26.5 + parent: 55 + type: Transform +- uid: 91 + type: WallRiveted + components: + - pos: 24.5,26.5 + parent: 55 + type: Transform +- uid: 92 + type: WallRiveted + components: + - pos: 23.5,26.5 + parent: 55 + type: Transform +- uid: 93 + type: WallRiveted + components: + - pos: 18.5,26.5 + parent: 55 + type: Transform +- uid: 94 + type: WallRiveted + components: + - pos: 17.5,26.5 + parent: 55 + type: Transform +- uid: 95 + type: WallRiveted + components: + - pos: 16.5,26.5 + parent: 55 + type: Transform +- uid: 96 + type: WallRiveted + components: + - pos: 16.5,25.5 + parent: 55 + type: Transform +- uid: 97 + type: WallRiveted + components: + - pos: 16.5,24.5 + parent: 55 + type: Transform +- uid: 98 + type: WallRiveted + components: + - pos: 16.5,23.5 + parent: 55 + type: Transform +- uid: 99 + type: WallRiveted + components: + - pos: 17.5,20.5 + parent: 55 + type: Transform +- uid: 100 + type: WallRiveted + components: + - pos: 16.5,20.5 + parent: 55 + type: Transform +- uid: 101 + type: WallRiveted + components: + - pos: 15.5,23.5 + parent: 55 + type: Transform +- uid: 102 + type: WallRiveted + components: + - pos: 15.5,24.5 + parent: 55 + type: Transform +- uid: 103 + type: WallRiveted + components: + - pos: 14.5,24.5 + parent: 55 + type: Transform +- uid: 104 + type: WallRiveted + components: + - pos: 14.5,25.5 + parent: 55 + type: Transform +- uid: 105 + type: WallRiveted + components: + - pos: 14.5,26.5 + parent: 55 + type: Transform +- uid: 106 + type: WallRiveted + components: + - pos: 12.5,26.5 + parent: 55 + type: Transform +- uid: 107 + type: WallRiveted + components: + - pos: 13.5,26.5 + parent: 55 + type: Transform +- uid: 108 + type: WallRiveted + components: + - pos: 13.5,25.5 + parent: 55 + type: Transform +- uid: 109 + type: WallRiveted + components: + - pos: 12.5,30.5 + parent: 55 + type: Transform +- uid: 110 + type: WallRiveted + components: + - pos: 13.5,30.5 + parent: 55 + type: Transform +- uid: 111 + type: WallRiveted + components: + - pos: 14.5,30.5 + parent: 55 + type: Transform +- uid: 112 + type: WallRiveted + components: + - pos: 15.5,30.5 + parent: 55 + type: Transform +- uid: 113 + type: WallRiveted + components: + - pos: 16.5,30.5 + parent: 55 + type: Transform +- uid: 114 + type: WallRiveted + components: + - pos: 17.5,30.5 + parent: 55 + type: Transform +- uid: 115 + type: WallRiveted + components: + - pos: 18.5,30.5 + parent: 55 + type: Transform +- uid: 116 + type: WallRiveted + components: + - pos: 13.5,31.5 + parent: 55 + type: Transform +- uid: 117 + type: WallRiveted + components: + - pos: 14.5,31.5 + parent: 55 + type: Transform +- uid: 118 + type: WallRiveted + components: + - pos: 15.5,31.5 + parent: 55 + type: Transform +- uid: 119 + type: WallRiveted + components: + - pos: 16.5,31.5 + parent: 55 + type: Transform +- uid: 120 + type: WallRiveted + components: + - pos: 14.5,32.5 + parent: 55 + type: Transform +- uid: 121 + type: WallRiveted + components: + - pos: 15.5,32.5 + parent: 55 + type: Transform +- uid: 122 + type: WallRiveted + components: + - pos: 16.5,32.5 + parent: 55 + type: Transform +- uid: 123 + type: WallRiveted + components: + - pos: 15.5,33.5 + parent: 55 + type: Transform +- uid: 124 + type: WallRiveted + components: + - pos: 16.5,33.5 + parent: 55 + type: Transform +- uid: 125 + type: WallRiveted + components: + - pos: 16.5,36.5 + parent: 55 + type: Transform +- uid: 126 + type: WallRiveted + components: + - pos: 16.5,35.5 + parent: 55 + type: Transform +- uid: 127 + type: WallRiveted + components: + - pos: 17.5,36.5 + parent: 55 + type: Transform +- uid: 128 + type: WallRiveted + components: + - pos: 17.5,35.5 + parent: 55 + type: Transform +- uid: 129 + type: WallRiveted + components: + - pos: 18.5,35.5 + parent: 55 + type: Transform +- uid: 130 + type: WallRiveted + components: + - pos: 20.5,35.5 + parent: 55 + type: Transform +- uid: 131 + type: WallRiveted + components: + - pos: 21.5,35.5 + parent: 55 + type: Transform +- uid: 132 + type: WallRiveted + components: + - pos: 22.5,35.5 + parent: 55 + type: Transform +- uid: 133 + type: WallRiveted + components: + - pos: 23.5,35.5 + parent: 55 + type: Transform +- uid: 134 + type: WallRiveted + components: + - pos: 22.5,36.5 + parent: 55 + type: Transform +- uid: 135 + type: WallRiveted + components: + - pos: 23.5,30.5 + parent: 55 + type: Transform +- uid: 136 + type: WallRiveted + components: + - pos: 24.5,30.5 + parent: 55 + type: Transform +- uid: 137 + type: WallRiveted + components: + - pos: 25.5,30.5 + parent: 55 + type: Transform +- uid: 138 + type: WallRiveted + components: + - pos: 25.5,31.5 + parent: 55 + type: Transform +- uid: 139 + type: WallRiveted + components: + - pos: 26.5,31.5 + parent: 55 + type: Transform +- uid: 140 + type: WallRiveted + components: + - pos: 26.5,32.5 + parent: 55 + type: Transform +- uid: 141 + type: WallRiveted + components: + - pos: 27.5,32.5 + parent: 55 + type: Transform +- uid: 142 + type: WallRiveted + components: + - pos: 27.5,33.5 + parent: 55 + type: Transform +- uid: 143 + type: WallRiveted + components: + - pos: 28.5,33.5 + parent: 55 + type: Transform +- uid: 144 + type: WallRiveted + components: + - pos: 28.5,34.5 + parent: 55 + type: Transform +- uid: 145 + type: WallRiveted + components: + - pos: 28.5,35.5 + parent: 55 + type: Transform +- uid: 146 + type: WallRiveted + components: + - pos: 27.5,35.5 + parent: 55 + type: Transform +- uid: 147 + type: WallRiveted + components: + - pos: 29.5,35.5 + parent: 55 + type: Transform +- uid: 148 + type: WallRiveted + components: + - pos: 29.5,34.5 + parent: 55 + type: Transform +- uid: 149 + type: WallRiveted + components: + - pos: 30.5,35.5 + parent: 55 + type: Transform +- uid: 150 + type: WallRiveted + components: + - pos: 30.5,36.5 + parent: 55 + type: Transform +- uid: 151 + type: WallRiveted + components: + - pos: 30.5,37.5 + parent: 55 + type: Transform +- uid: 152 + type: WallRiveted + components: + - pos: 30.5,38.5 + parent: 55 + type: Transform +- uid: 153 + type: WallRiveted + components: + - pos: 30.5,39.5 + parent: 55 + type: Transform +- uid: 154 + type: WallRiveted + components: + - pos: 29.5,39.5 + parent: 55 + type: Transform +- uid: 155 + type: WallRiveted + components: + - pos: 28.5,39.5 + parent: 55 + type: Transform +- uid: 156 + type: WallRiveted + components: + - pos: 27.5,39.5 + parent: 55 + type: Transform +- uid: 157 + type: WallRiveted + components: + - pos: 26.5,39.5 + parent: 55 + type: Transform +- uid: 158 + type: WallRiveted + components: + - pos: 25.5,39.5 + parent: 55 + type: Transform +- uid: 159 + type: WallRiveted + components: + - pos: 24.5,39.5 + parent: 55 + type: Transform +- uid: 160 + type: WallRiveted + components: + - pos: 23.5,39.5 + parent: 55 + type: Transform +- uid: 161 + type: WallRiveted + components: + - pos: 22.5,39.5 + parent: 55 + type: Transform +- uid: 162 + type: WallRiveted + components: + - pos: 22.5,38.5 + parent: 55 + type: Transform +- uid: 163 + type: WallRiveted + components: + - pos: 21.5,39.5 + parent: 55 + type: Transform +- uid: 164 + type: WallRiveted + components: + - pos: 20.5,39.5 + parent: 55 + type: Transform +- uid: 165 + type: WallRiveted + components: + - pos: 19.5,39.5 + parent: 55 + type: Transform +- uid: 166 + type: WallRiveted + components: + - pos: 18.5,39.5 + parent: 55 + type: Transform +- uid: 167 + type: WallRiveted + components: + - pos: 17.5,39.5 + parent: 55 + type: Transform +- uid: 168 + type: WallRiveted + components: + - pos: 18.5,40.5 + parent: 55 + type: Transform +- uid: 169 + type: WallRiveted + components: + - pos: 18.5,41.5 + parent: 55 + type: Transform +- uid: 170 + type: WallRiveted + components: + - pos: 18.5,42.5 + parent: 55 + type: Transform +- uid: 171 + type: WallRiveted + components: + - pos: 18.5,43.5 + parent: 55 + type: Transform +- uid: 172 + type: Grille + components: + - pos: 62.5,23.5 + parent: 55 + type: Transform +- uid: 173 + type: ReinforcedWindow + components: + - pos: 62.5,23.5 + parent: 55 + type: Transform +- uid: 174 + type: Grille + components: + - pos: 78.5,30.5 + parent: 55 + type: Transform +- uid: 175 + type: WallRiveted + components: + - pos: 18.5,47.5 + parent: 55 + type: Transform +- uid: 176 + type: WallRiveted + components: + - pos: 18.5,48.5 + parent: 55 + type: Transform +- uid: 177 + type: WallRiveted + components: + - pos: 18.5,49.5 + parent: 55 + type: Transform +- uid: 178 + type: WallRiveted + components: + - pos: 19.5,49.5 + parent: 55 + type: Transform +- uid: 179 + type: WallRiveted + components: + - pos: 20.5,49.5 + parent: 55 + type: Transform +- uid: 180 + type: WallRiveted + components: + - pos: 21.5,49.5 + parent: 55 + type: Transform +- uid: 181 + type: WallRiveted + components: + - pos: 19.5,48.5 + parent: 55 + type: Transform +- uid: 182 + type: WallRiveted + components: + - pos: 20.5,48.5 + parent: 55 + type: Transform +- uid: 183 + type: WallRiveted + components: + - pos: 21.5,48.5 + parent: 55 + type: Transform +- uid: 184 + type: WallRiveted + components: + - pos: 22.5,48.5 + parent: 55 + type: Transform +- uid: 185 + type: WallRiveted + components: + - pos: 23.5,48.5 + parent: 55 + type: Transform +- uid: 186 + type: WallRiveted + components: + - pos: 24.5,48.5 + parent: 55 + type: Transform +- uid: 187 + type: WallRiveted + components: + - pos: 24.5,47.5 + parent: 55 + type: Transform +- uid: 188 + type: WallRiveted + components: + - pos: 24.5,46.5 + parent: 55 + type: Transform +- uid: 189 + type: WallRiveted + components: + - pos: 24.5,45.5 + parent: 55 + type: Transform +- uid: 190 + type: WallRiveted + components: + - pos: 24.5,43.5 + parent: 55 + type: Transform +- uid: 191 + type: WallRiveted + components: + - pos: 24.5,42.5 + parent: 55 + type: Transform +- uid: 192 + type: WallRiveted + components: + - pos: 24.5,41.5 + parent: 55 + type: Transform +- uid: 193 + type: WallRiveted + components: + - pos: 24.5,40.5 + parent: 55 + type: Transform +- uid: 194 + type: WallRiveted + components: + - pos: 23.5,42.5 + parent: 55 + type: Transform +- uid: 195 + type: WallRiveted + components: + - pos: 19.5,42.5 + parent: 55 + type: Transform +- uid: 196 + type: WallRiveted + components: + - pos: 30.5,46.5 + parent: 55 + type: Transform +- uid: 197 + type: WallRiveted + components: + - pos: 27.5,47.5 + parent: 55 + type: Transform +- uid: 198 + type: WallRiveted + components: + - pos: 26.5,47.5 + parent: 55 + type: Transform +- uid: 199 + type: WallRiveted + components: + - pos: 25.5,47.5 + parent: 55 + type: Transform +- uid: 200 + type: WallRiveted + components: + - pos: 25.5,46.5 + parent: 55 + type: Transform +- uid: 201 + type: WallRiveted + components: + - pos: 26.5,46.5 + parent: 55 + type: Transform +- uid: 202 + type: WallRiveted + components: + - pos: 27.5,46.5 + parent: 55 + type: Transform +- uid: 203 + type: WallRiveted + components: + - pos: 28.5,46.5 + parent: 55 + type: Transform +- uid: 204 + type: WallRiveted + components: + - pos: 29.5,46.5 + parent: 55 + type: Transform +- uid: 205 + type: WallRiveted + components: + - pos: 30.5,45.5 + parent: 55 + type: Transform +- uid: 206 + type: WallRiveted + components: + - pos: 30.5,44.5 + parent: 55 + type: Transform +- uid: 207 + type: WallRiveted + components: + - pos: 30.5,41.5 + parent: 55 + type: Transform +- uid: 208 + type: WallRiveted + components: + - pos: 30.5,40.5 + parent: 55 + type: Transform +- uid: 209 + type: WallRiveted + components: + - pos: 34.5,44.5 + parent: 55 + type: Transform +- uid: 210 + type: WallRiveted + components: + - pos: 34.5,40.5 + parent: 55 + type: Transform +- uid: 211 + type: WallRiveted + components: + - pos: 34.5,39.5 + parent: 55 + type: Transform +- uid: 212 + type: WallRiveted + components: + - pos: 34.5,38.5 + parent: 55 + type: Transform +- uid: 213 + type: WallRiveted + components: + - pos: 34.5,37.5 + parent: 55 + type: Transform +- uid: 214 + type: WallRiveted + components: + - pos: 34.5,36.5 + parent: 55 + type: Transform +- uid: 215 + type: WallRiveted + components: + - pos: 34.5,35.5 + parent: 55 + type: Transform +- uid: 216 + type: WallRiveted + components: + - pos: 35.5,39.5 + parent: 55 + type: Transform +- uid: 217 + type: WallRiveted + components: + - pos: 36.5,39.5 + parent: 55 + type: Transform +- uid: 218 + type: WallRiveted + components: + - pos: 37.5,39.5 + parent: 55 + type: Transform +- uid: 219 + type: WallRiveted + components: + - pos: 38.5,39.5 + parent: 55 + type: Transform +- uid: 220 + type: WallRiveted + components: + - pos: 38.5,40.5 + parent: 55 + type: Transform +- uid: 221 + type: WallRiveted + components: + - pos: 38.5,41.5 + parent: 55 + type: Transform +- uid: 222 + type: WallRiveted + components: + - pos: 38.5,42.5 + parent: 55 + type: Transform +- uid: 223 + type: WallRiveted + components: + - pos: 38.5,45.5 + parent: 55 + type: Transform +- uid: 224 + type: WallRiveted + components: + - pos: 38.5,46.5 + parent: 55 + type: Transform +- uid: 225 + type: WallRiveted + components: + - pos: 38.5,47.5 + parent: 55 + type: Transform +- uid: 226 + type: WallRiveted + components: + - pos: 37.5,47.5 + parent: 55 + type: Transform +- uid: 227 + type: WallRiveted + components: + - pos: 37.5,46.5 + parent: 55 + type: Transform +- uid: 228 + type: WallRiveted + components: + - pos: 36.5,46.5 + parent: 55 + type: Transform +- uid: 229 + type: WallRiveted + components: + - pos: 35.5,46.5 + parent: 55 + type: Transform +- uid: 230 + type: WallRiveted + components: + - pos: 34.5,46.5 + parent: 55 + type: Transform +- uid: 231 + type: WallRiveted + components: + - pos: 39.5,47.5 + parent: 55 + type: Transform +- uid: 232 + type: WallRiveted + components: + - pos: 40.5,47.5 + parent: 55 + type: Transform +- uid: 233 + type: WallRiveted + components: + - pos: 41.5,47.5 + parent: 55 + type: Transform +- uid: 234 + type: WallRiveted + components: + - pos: 42.5,47.5 + parent: 55 + type: Transform +- uid: 235 + type: WallRiveted + components: + - pos: 40.5,48.5 + parent: 55 + type: Transform +- uid: 236 + type: WallRiveted + components: + - pos: 41.5,48.5 + parent: 55 + type: Transform +- uid: 237 + type: WallRiveted + components: + - pos: 42.5,48.5 + parent: 55 + type: Transform +- uid: 238 + type: WallRiveted + components: + - pos: 43.5,48.5 + parent: 55 + type: Transform +- uid: 239 + type: WallRiveted + components: + - pos: 44.5,48.5 + parent: 55 + type: Transform +- uid: 240 + type: WallRiveted + components: + - pos: 45.5,48.5 + parent: 55 + type: Transform +- uid: 241 + type: WallRiveted + components: + - pos: 46.5,48.5 + parent: 55 + type: Transform +- uid: 242 + type: WallRiveted + components: + - pos: 44.5,49.5 + parent: 55 + type: Transform +- uid: 243 + type: WallRiveted + components: + - pos: 45.5,49.5 + parent: 55 + type: Transform +- uid: 244 + type: WallRiveted + components: + - pos: 46.5,49.5 + parent: 55 + type: Transform +- uid: 245 + type: WallRiveted + components: + - pos: 43.5,49.5 + parent: 55 + type: Transform +- uid: 246 + type: WallRiveted + components: + - pos: 42.5,46.5 + parent: 55 + type: Transform +- uid: 247 + type: WallRiveted + components: + - pos: 42.5,45.5 + parent: 55 + type: Transform +- uid: 248 + type: WallRiveted + components: + - pos: 43.5,45.5 + parent: 55 + type: Transform +- uid: 249 + type: WallRiveted + components: + - pos: 39.5,26.5 + parent: 55 + type: Transform +- uid: 250 + type: WallRiveted + components: + - pos: 40.5,26.5 + parent: 55 + type: Transform +- uid: 251 + type: WallRiveted + components: + - pos: 41.5,26.5 + parent: 55 + type: Transform +- uid: 252 + type: WallRiveted + components: + - pos: 42.5,26.5 + parent: 55 + type: Transform +- uid: 253 + type: WallRiveted + components: + - pos: 41.5,30.5 + parent: 55 + type: Transform +- uid: 254 + type: WallRiveted + components: + - pos: 40.5,30.5 + parent: 55 + type: Transform +- uid: 255 + type: WallRiveted + components: + - pos: 39.5,30.5 + parent: 55 + type: Transform +- uid: 256 + type: WallRiveted + components: + - pos: 46.5,30.5 + parent: 55 + type: Transform +- uid: 257 + type: WallRiveted + components: + - pos: 47.5,30.5 + parent: 55 + type: Transform +- uid: 258 + type: WallRiveted + components: + - pos: 48.5,30.5 + parent: 55 + type: Transform +- uid: 259 + type: WallRiveted + components: + - pos: 49.5,30.5 + parent: 55 + type: Transform +- uid: 260 + type: WallRiveted + components: + - pos: 50.5,30.5 + parent: 55 + type: Transform +- uid: 261 + type: WallRiveted + components: + - pos: 51.5,30.5 + parent: 55 + type: Transform +- uid: 262 + type: WallRiveted + components: + - pos: 52.5,30.5 + parent: 55 + type: Transform +- uid: 263 + type: WallRiveted + components: + - pos: 52.5,26.5 + parent: 55 + type: Transform +- uid: 264 + type: WallRiveted + components: + - pos: 51.5,26.5 + parent: 55 + type: Transform +- uid: 265 + type: WallRiveted + components: + - pos: 50.5,26.5 + parent: 55 + type: Transform +- uid: 266 + type: WallRiveted + components: + - pos: 51.5,25.5 + parent: 55 + type: Transform +- uid: 267 + type: WallRiveted + components: + - pos: 50.5,25.5 + parent: 55 + type: Transform +- uid: 268 + type: WallRiveted + components: + - pos: 50.5,24.5 + parent: 55 + type: Transform +- uid: 269 + type: WallRiveted + components: + - pos: 49.5,24.5 + parent: 55 + type: Transform +- uid: 270 + type: WallRiveted + components: + - pos: 48.5,24.5 + parent: 55 + type: Transform +- uid: 271 + type: WallRiveted + components: + - pos: 48.5,25.5 + parent: 55 + type: Transform +- uid: 272 + type: WallRiveted + components: + - pos: 48.5,26.5 + parent: 55 + type: Transform +- uid: 273 + type: WallRiveted + components: + - pos: 47.5,26.5 + parent: 55 + type: Transform +- uid: 274 + type: WallRiveted + components: + - pos: 46.5,26.5 + parent: 55 + type: Transform +- uid: 275 + type: WallRiveted + components: + - pos: 48.5,23.5 + parent: 55 + type: Transform +- uid: 276 + type: WallRiveted + components: + - pos: 49.5,23.5 + parent: 55 + type: Transform +- uid: 277 + type: WallRiveted + components: + - pos: 48.5,20.5 + parent: 55 + type: Transform +- uid: 278 + type: WallRiveted + components: + - pos: 47.5,20.5 + parent: 55 + type: Transform +- uid: 279 + type: WallRiveted + components: + - pos: 51.5,31.5 + parent: 55 + type: Transform +- uid: 280 + type: WallRiveted + components: + - pos: 50.5,31.5 + parent: 55 + type: Transform +- uid: 281 + type: WallRiveted + components: + - pos: 49.5,31.5 + parent: 55 + type: Transform +- uid: 282 + type: WallRiveted + components: + - pos: 48.5,31.5 + parent: 55 + type: Transform +- uid: 283 + type: WallRiveted + components: + - pos: 48.5,32.5 + parent: 55 + type: Transform +- uid: 284 + type: WallRiveted + components: + - pos: 48.5,33.5 + parent: 55 + type: Transform +- uid: 285 + type: WallRiveted + components: + - pos: 49.5,32.5 + parent: 55 + type: Transform +- uid: 286 + type: WallRiveted + components: + - pos: 49.5,33.5 + parent: 55 + type: Transform +- uid: 287 + type: WallRiveted + components: + - pos: 50.5,32.5 + parent: 55 + type: Transform +- uid: 288 + type: WallRiveted + components: + - pos: 48.5,36.5 + parent: 55 + type: Transform +- uid: 289 + type: WallRiveted + components: + - pos: 47.5,36.5 + parent: 55 + type: Transform +- uid: 290 + type: WallRiveted + components: + - pos: 41.5,36.5 + parent: 55 + type: Transform +- uid: 291 + type: WallRiveted + components: + - pos: 39.5,39.5 + parent: 55 + type: Transform +- uid: 292 + type: WallRiveted + components: + - pos: 40.5,39.5 + parent: 55 + type: Transform +- uid: 293 + type: WallRiveted + components: + - pos: 41.5,39.5 + parent: 55 + type: Transform +- uid: 294 + type: WallRiveted + components: + - pos: 42.5,39.5 + parent: 55 + type: Transform +- uid: 295 + type: WallRiveted + components: + - pos: 43.5,39.5 + parent: 55 + type: Transform +- uid: 296 + type: WallRiveted + components: + - pos: 44.5,39.5 + parent: 55 + type: Transform +- uid: 297 + type: WallRiveted + components: + - pos: 45.5,39.5 + parent: 55 + type: Transform +- uid: 298 + type: WallRiveted + components: + - pos: 46.5,39.5 + parent: 55 + type: Transform +- uid: 299 + type: WallRiveted + components: + - pos: 47.5,39.5 + parent: 55 + type: Transform +- uid: 300 + type: WallRiveted + components: + - pos: 39.5,42.5 + parent: 55 + type: Transform +- uid: 301 + type: WallRiveted + components: + - pos: 41.5,42.5 + parent: 55 + type: Transform +- uid: 302 + type: WallRiveted + components: + - pos: 42.5,42.5 + parent: 55 + type: Transform +- uid: 303 + type: WallRiveted + components: + - pos: 43.5,42.5 + parent: 55 + type: Transform +- uid: 304 + type: WallRiveted + components: + - pos: 42.5,41.5 + parent: 55 + type: Transform +- uid: 305 + type: WallRiveted + components: + - pos: 42.5,40.5 + parent: 55 + type: Transform +- uid: 306 + type: WallRiveted + components: + - pos: 45.5,42.5 + parent: 55 + type: Transform +- uid: 307 + type: WallRiveted + components: + - pos: 46.5,42.5 + parent: 55 + type: Transform +- uid: 308 + type: WallRiveted + components: + - pos: 46.5,41.5 + parent: 55 + type: Transform +- uid: 309 + type: WallRiveted + components: + - pos: 46.5,40.5 + parent: 55 + type: Transform +- uid: 310 + type: Grille + components: + - pos: 46.5,44.5 + parent: 55 + type: Transform +- uid: 311 + type: Grille + components: + - pos: 46.5,43.5 + parent: 55 + type: Transform +- uid: 312 + type: WallRiveted + components: + - pos: 46.5,45.5 + parent: 55 + type: Transform +- uid: 313 + type: WallRiveted + components: + - pos: 46.5,46.5 + parent: 55 + type: Transform +- uid: 314 + type: WallRiveted + components: + - pos: 46.5,47.5 + parent: 55 + type: Transform +- uid: 315 + type: WallRiveted + components: + - pos: 45.5,45.5 + parent: 55 + type: Transform +- uid: 316 + type: WallRiveted + components: + - pos: 56.5,26.5 + parent: 55 + type: Transform +- uid: 317 + type: WallRiveted + components: + - pos: 57.5,26.5 + parent: 55 + type: Transform +- uid: 318 + type: WallRiveted + components: + - pos: 57.5,25.5 + parent: 55 + type: Transform +- uid: 319 + type: WallRiveted + components: + - pos: 58.5,25.5 + parent: 55 + type: Transform +- uid: 320 + type: WallRiveted + components: + - pos: 58.5,24.5 + parent: 55 + type: Transform +- uid: 321 + type: WallRiveted + components: + - pos: 59.5,24.5 + parent: 55 + type: Transform +- uid: 322 + type: WallRiveted + components: + - pos: 59.5,23.5 + parent: 55 + type: Transform +- uid: 323 + type: WallRiveted + components: + - pos: 56.5,30.5 + parent: 55 + type: Transform +- uid: 324 + type: WallRiveted + components: + - pos: 57.5,30.5 + parent: 55 + type: Transform +- uid: 325 + type: WallRiveted + components: + - pos: 57.5,31.5 + parent: 55 + type: Transform +- uid: 326 + type: WallRiveted + components: + - pos: 58.5,31.5 + parent: 55 + type: Transform +- uid: 327 + type: WallRiveted + components: + - pos: 58.5,32.5 + parent: 55 + type: Transform +- uid: 328 + type: WallRiveted + components: + - pos: 59.5,32.5 + parent: 55 + type: Transform +- uid: 329 + type: WallRiveted + components: + - pos: 59.5,33.5 + parent: 55 + type: Transform +- uid: 330 + type: WallRiveted + components: + - pos: 63.5,34.5 + parent: 55 + type: Transform +- uid: 331 + type: WallRiveted + components: + - pos: 63.5,33.5 + parent: 55 + type: Transform +- uid: 332 + type: WallRiveted + components: + - pos: 67.5,34.5 + parent: 55 + type: Transform +- uid: 333 + type: WallRiveted + components: + - pos: 67.5,33.5 + parent: 55 + type: Transform +- uid: 334 + type: WallRiveted + components: + - pos: 63.5,23.5 + parent: 55 + type: Transform +- uid: 335 + type: WallRiveted + components: + - pos: 63.5,22.5 + parent: 55 + type: Transform +- uid: 336 + type: WallRiveted + components: + - pos: 67.5,22.5 + parent: 55 + type: Transform +- uid: 337 + type: WallRiveted + components: + - pos: 67.5,23.5 + parent: 55 + type: Transform +- uid: 338 + type: WallRiveted + components: + - pos: 71.5,23.5 + parent: 55 + type: Transform +- uid: 339 + type: WallRiveted + components: + - pos: 71.5,24.5 + parent: 55 + type: Transform +- uid: 340 + type: WallRiveted + components: + - pos: 72.5,24.5 + parent: 55 + type: Transform +- uid: 341 + type: WallRiveted + components: + - pos: 72.5,25.5 + parent: 55 + type: Transform +- uid: 342 + type: WallRiveted + components: + - pos: 73.5,25.5 + parent: 55 + type: Transform +- uid: 343 + type: WallRiveted + components: + - pos: 73.5,26.5 + parent: 55 + type: Transform +- uid: 344 + type: WallRiveted + components: + - pos: 73.5,27.5 + parent: 55 + type: Transform +- uid: 345 + type: WallRiveted + components: + - pos: 74.5,27.5 + parent: 55 + type: Transform +- uid: 346 + type: WallRiveted + components: + - pos: 74.5,26.5 + parent: 55 + type: Transform +- uid: 347 + type: WallRiveted + components: + - pos: 74.5,30.5 + parent: 55 + type: Transform +- uid: 348 + type: WallRiveted + components: + - pos: 74.5,29.5 + parent: 55 + type: Transform +- uid: 349 + type: WallRiveted + components: + - pos: 73.5,30.5 + parent: 55 + type: Transform +- uid: 350 + type: WallRiveted + components: + - pos: 73.5,29.5 + parent: 55 + type: Transform +- uid: 351 + type: WallRiveted + components: + - pos: 73.5,31.5 + parent: 55 + type: Transform +- uid: 352 + type: WallRiveted + components: + - pos: 72.5,31.5 + parent: 55 + type: Transform +- uid: 353 + type: WallRiveted + components: + - pos: 72.5,32.5 + parent: 55 + type: Transform +- uid: 354 + type: WallRiveted + components: + - pos: 71.5,32.5 + parent: 55 + type: Transform +- uid: 355 + type: WallRiveted + components: + - pos: 71.5,33.5 + parent: 55 + type: Transform +- uid: 356 + type: WallRiveted + components: + - pos: 67.5,38.5 + parent: 55 + type: Transform +- uid: 357 + type: WallRiveted + components: + - pos: 67.5,39.5 + parent: 55 + type: Transform +- uid: 358 + type: WallRiveted + components: + - pos: 68.5,39.5 + parent: 55 + type: Transform +- uid: 359 + type: WallRiveted + components: + - pos: 68.5,40.5 + parent: 55 + type: Transform +- uid: 360 + type: WallRiveted + components: + - pos: 69.5,40.5 + parent: 55 + type: Transform +- uid: 361 + type: WallRiveted + components: + - pos: 69.5,41.5 + parent: 55 + type: Transform +- uid: 362 + type: WallRiveted + components: + - pos: 70.5,41.5 + parent: 55 + type: Transform +- uid: 363 + type: WallRiveted + components: + - pos: 70.5,42.5 + parent: 55 + type: Transform +- uid: 364 + type: WallRiveted + components: + - pos: 70.5,46.5 + parent: 55 + type: Transform +- uid: 365 + type: WallRiveted + components: + - pos: 63.5,38.5 + parent: 55 + type: Transform +- uid: 366 + type: WallRiveted + components: + - pos: 63.5,39.5 + parent: 55 + type: Transform +- uid: 367 + type: WallRiveted + components: + - pos: 62.5,39.5 + parent: 55 + type: Transform +- uid: 368 + type: WallRiveted + components: + - pos: 62.5,40.5 + parent: 55 + type: Transform +- uid: 369 + type: WallRiveted + components: + - pos: 61.5,40.5 + parent: 55 + type: Transform +- uid: 370 + type: WallRiveted + components: + - pos: 61.5,41.5 + parent: 55 + type: Transform +- uid: 371 + type: WallRiveted + components: + - pos: 60.5,41.5 + parent: 55 + type: Transform +- uid: 372 + type: WallRiveted + components: + - pos: 60.5,42.5 + parent: 55 + type: Transform +- uid: 373 + type: WallRiveted + components: + - pos: 60.5,46.5 + parent: 55 + type: Transform +- uid: 374 + type: WallRiveted + components: + - pos: 60.5,50.5 + parent: 55 + type: Transform +- uid: 375 + type: WallRiveted + components: + - pos: 60.5,51.5 + parent: 55 + type: Transform +- uid: 376 + type: WallRiveted + components: + - pos: 61.5,51.5 + parent: 55 + type: Transform +- uid: 377 + type: WallRiveted + components: + - pos: 61.5,52.5 + parent: 55 + type: Transform +- uid: 378 + type: WallRiveted + components: + - pos: 62.5,52.5 + parent: 55 + type: Transform +- uid: 379 + type: WallRiveted + components: + - pos: 62.5,53.5 + parent: 55 + type: Transform +- uid: 380 + type: WallRiveted + components: + - pos: 63.5,53.5 + parent: 55 + type: Transform +- uid: 381 + type: WallRiveted + components: + - pos: 63.5,54.5 + parent: 55 + type: Transform +- uid: 382 + type: WallRiveted + components: + - pos: 67.5,54.5 + parent: 55 + type: Transform +- uid: 383 + type: WallRiveted + components: + - pos: 67.5,53.5 + parent: 55 + type: Transform +- uid: 384 + type: WallRiveted + components: + - pos: 68.5,53.5 + parent: 55 + type: Transform +- uid: 385 + type: WallRiveted + components: + - pos: 68.5,52.5 + parent: 55 + type: Transform +- uid: 386 + type: WallRiveted + components: + - pos: 69.5,52.5 + parent: 55 + type: Transform +- uid: 387 + type: WallRiveted + components: + - pos: 69.5,51.5 + parent: 55 + type: Transform +- uid: 388 + type: WallRiveted + components: + - pos: 70.5,51.5 + parent: 55 + type: Transform +- uid: 389 + type: WallRiveted + components: + - pos: 70.5,50.5 + parent: 55 + type: Transform +- uid: 390 + type: WallRiveted + components: + - pos: 78.5,27.5 + parent: 55 + type: Transform +- uid: 391 + type: WallRiveted + components: + - pos: 78.5,29.5 + parent: 55 + type: Transform +- uid: 392 + type: Grille + components: + - pos: 79.5,31.5 + parent: 55 + type: Transform +- uid: 393 + type: WallRiveted + components: + - pos: 82.5,26.5 + parent: 55 + type: Transform +- uid: 394 + type: WallRiveted + components: + - pos: 78.5,31.5 + parent: 55 + type: Transform +- uid: 395 + type: ReinforcedWindow + components: + - pos: 61.5,23.5 + parent: 55 + type: Transform +- uid: 396 + type: GasMinerOxygen + components: + - pos: 19.5,15.5 + parent: 55 + type: Transform + - fixtures: [] + type: Fixtures +- uid: 397 + type: GasMinerNitrogen + components: + - pos: 45.5,15.5 + parent: 55 + type: Transform + - fixtures: [] + type: Fixtures +- uid: 398 + type: GasPressurePump + components: + - rot: 1.5707963267948966 rad + pos: 21.5,15.5 + parent: 55 + type: Transform +- uid: 399 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 55 + type: Transform +- uid: 400 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 23.5,15.5 + parent: 55 + type: Transform +- uid: 401 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 24.5,15.5 + parent: 55 + type: Transform +- uid: 402 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 25.5,15.5 + parent: 55 + type: Transform +- uid: 403 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 26.5,15.5 + parent: 55 + type: Transform +- uid: 404 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 55 + type: Transform +- uid: 405 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 28.5,15.5 + parent: 55 + type: Transform +- uid: 406 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 29.5,15.5 + parent: 55 + type: Transform +- uid: 407 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 30.5,15.5 + parent: 55 + type: Transform +- uid: 408 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 31.5,15.5 + parent: 55 + type: Transform +- uid: 409 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: 32.5,15.5 + parent: 55 + type: Transform +- uid: 410 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: 33.5,15.5 + parent: 55 + type: Transform +- uid: 411 + type: GasPipeBend + components: + - pos: 33.5,16.5 + parent: 55 + type: Transform +- uid: 412 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 55 + type: Transform +- uid: 413 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 35.5,15.5 + parent: 55 + type: Transform +- uid: 414 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 36.5,15.5 + parent: 55 + type: Transform +- uid: 415 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 37.5,15.5 + parent: 55 + type: Transform +- uid: 416 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 38.5,15.5 + parent: 55 + type: Transform +- uid: 417 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 39.5,15.5 + parent: 55 + type: Transform +- uid: 418 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 40.5,15.5 + parent: 55 + type: Transform +- uid: 419 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 41.5,15.5 + parent: 55 + type: Transform +- uid: 420 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 42.5,15.5 + parent: 55 + type: Transform +- uid: 421 + type: GasMixer + components: + - rot: 3.141592653589793 rad + pos: 32.5,16.5 + parent: 55 + type: Transform + - inletTwoConcentration: 0.8 + inletOneConcentration: 0.2 + type: GasMixer +- uid: 422 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: 32.5,17.5 + parent: 55 + type: Transform +- uid: 423 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,18.5 + parent: 55 + type: Transform +- uid: 424 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,19.5 + parent: 55 + type: Transform +- uid: 425 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,20.5 + parent: 55 + type: Transform +- uid: 426 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,21.5 + parent: 55 + type: Transform +- uid: 427 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 55 + type: Transform +- uid: 428 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,23.5 + parent: 55 + type: Transform +- uid: 429 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,24.5 + parent: 55 + type: Transform +- uid: 430 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,25.5 + parent: 55 + type: Transform +- uid: 431 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,26.5 + parent: 55 + type: Transform +- uid: 432 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,27.5 + parent: 55 + type: Transform +- uid: 433 + type: GasPipeFourway + components: + - pos: 32.5,28.5 + parent: 55 + type: Transform +- uid: 434 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,29.5 + parent: 55 + type: Transform +- uid: 435 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,30.5 + parent: 55 + type: Transform +- uid: 436 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,31.5 + parent: 55 + type: Transform +- uid: 437 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,32.5 + parent: 55 + type: Transform +- uid: 438 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,33.5 + parent: 55 + type: Transform +- uid: 439 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,34.5 + parent: 55 + type: Transform +- uid: 440 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,35.5 + parent: 55 + type: Transform +- uid: 441 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,36.5 + parent: 55 + type: Transform +- uid: 442 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,37.5 + parent: 55 + type: Transform +- uid: 443 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,38.5 + parent: 55 + type: Transform +- uid: 444 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,39.5 + parent: 55 + type: Transform +- uid: 445 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,40.5 + parent: 55 + type: Transform +- uid: 446 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,41.5 + parent: 55 + type: Transform +- uid: 447 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 32.5,42.5 + parent: 55 + type: Transform +- uid: 448 + type: GasPipeFourway + components: + - pos: 32.5,43.5 + parent: 55 + type: Transform +- uid: 449 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,44.5 + parent: 55 + type: Transform +- uid: 450 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,45.5 + parent: 55 + type: Transform +- uid: 451 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,46.5 + parent: 55 + type: Transform +- uid: 452 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,47.5 + parent: 55 + type: Transform +- uid: 453 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,48.5 + parent: 55 + type: Transform +- uid: 454 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,49.5 + parent: 55 + type: Transform +- uid: 455 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 32.5,50.5 + parent: 55 + type: Transform +- uid: 456 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 33.5,43.5 + parent: 55 + type: Transform +- uid: 457 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 34.5,43.5 + parent: 55 + type: Transform +- uid: 458 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 35.5,43.5 + parent: 55 + type: Transform +- uid: 459 + type: GasPipeTJunction + components: + - pos: 36.5,43.5 + parent: 55 + type: Transform +- uid: 460 + type: GasPipeTJunction + components: + - pos: 40.5,43.5 + parent: 55 + type: Transform +- uid: 461 + type: GasPipeFourway + components: + - pos: 44.5,43.5 + parent: 55 + type: Transform +- uid: 462 + type: GasPipeStraight + components: + - pos: 44.5,44.5 + parent: 55 + type: Transform +- uid: 463 + type: GasPipeStraight + components: + - pos: 44.5,45.5 + parent: 55 + type: Transform +- uid: 464 + type: GasPipeStraight + components: + - pos: 44.5,46.5 + parent: 55 + type: Transform +- uid: 465 + type: GasPipeStraight + components: + - pos: 44.5,41.5 + parent: 55 + type: Transform +- uid: 466 + type: GasPipeStraight + components: + - pos: 44.5,42.5 + parent: 55 + type: Transform +- uid: 467 + type: GasPipeStraight + components: + - pos: 40.5,42.5 + parent: 55 + type: Transform +- uid: 468 + type: GasPipeStraight + components: + - pos: 40.5,41.5 + parent: 55 + type: Transform +- uid: 469 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 41.5,43.5 + parent: 55 + type: Transform +- uid: 470 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 42.5,43.5 + parent: 55 + type: Transform +- uid: 471 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 43.5,43.5 + parent: 55 + type: Transform +- uid: 472 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 39.5,43.5 + parent: 55 + type: Transform +- uid: 473 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 38.5,43.5 + parent: 55 + type: Transform +- uid: 474 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 37.5,43.5 + parent: 55 + type: Transform +- uid: 475 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 31.5,43.5 + parent: 55 + type: Transform +- uid: 476 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 30.5,43.5 + parent: 55 + type: Transform +- uid: 477 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 29.5,43.5 + parent: 55 + type: Transform +- uid: 478 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 28.5,43.5 + parent: 55 + type: Transform +- uid: 479 + type: GasPipeTJunction + components: + - pos: 27.5,43.5 + parent: 55 + type: Transform +- uid: 480 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 21.5,44.5 + parent: 55 + type: Transform +- uid: 481 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 22.5,44.5 + parent: 55 + type: Transform +- uid: 482 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 23.5,44.5 + parent: 55 + type: Transform +- uid: 483 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 24.5,44.5 + parent: 55 + type: Transform +- uid: 484 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 25.5,44.5 + parent: 55 + type: Transform +- uid: 485 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: 26.5,43.5 + parent: 55 + type: Transform +- uid: 486 + type: GasPipeBend + components: + - pos: 26.5,44.5 + parent: 55 + type: Transform +- uid: 487 + type: GasPipeStraight + components: + - pos: 21.5,43.5 + parent: 55 + type: Transform +- uid: 488 + type: GasPipeStraight + components: + - pos: 21.5,42.5 + parent: 55 + type: Transform +- uid: 489 + type: GasPipeStraight + components: + - pos: 21.5,41.5 + parent: 55 + type: Transform +- uid: 490 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 33.5,28.5 + parent: 55 + type: Transform +- uid: 491 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 34.5,28.5 + parent: 55 + type: Transform +- uid: 492 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 35.5,28.5 + parent: 55 + type: Transform +- uid: 493 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 36.5,28.5 + parent: 55 + type: Transform +- uid: 494 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 37.5,28.5 + parent: 55 + type: Transform +- uid: 495 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 38.5,28.5 + parent: 55 + type: Transform +- uid: 496 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 39.5,28.5 + parent: 55 + type: Transform +- uid: 497 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 40.5,28.5 + parent: 55 + type: Transform +- uid: 498 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 41.5,28.5 + parent: 55 + type: Transform +- uid: 499 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 42.5,28.5 + parent: 55 + type: Transform +- uid: 500 + type: GasPipeTJunction + components: + - pos: 43.5,28.5 + parent: 55 + type: Transform +- uid: 501 + type: GasPipeFourway + components: + - pos: 44.5,28.5 + parent: 55 + type: Transform +- uid: 502 + type: GasPipeStraight + components: + - pos: 44.5,29.5 + parent: 55 + type: Transform +- uid: 503 + type: GasPipeStraight + components: + - pos: 44.5,30.5 + parent: 55 + type: Transform +- uid: 504 + type: GasPipeStraight + components: + - pos: 44.5,31.5 + parent: 55 + type: Transform +- uid: 505 + type: GasPipeStraight + components: + - pos: 44.5,32.5 + parent: 55 + type: Transform +- uid: 506 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: 44.5,33.5 + parent: 55 + type: Transform +- uid: 507 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 44.5,34.5 + parent: 55 + type: Transform +- uid: 508 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 44.5,35.5 + parent: 55 + type: Transform +- uid: 509 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 44.5,36.5 + parent: 55 + type: Transform +- uid: 510 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 44.5,37.5 + parent: 55 + type: Transform +- uid: 511 + type: GasPipeStraight + components: + - pos: 44.5,27.5 + parent: 55 + type: Transform +- uid: 512 + type: GasPipeStraight + components: + - pos: 44.5,26.5 + parent: 55 + type: Transform +- uid: 513 + type: GasPipeStraight + components: + - pos: 44.5,25.5 + parent: 55 + type: Transform +- uid: 514 + type: GasPipeStraight + components: + - pos: 44.5,24.5 + parent: 55 + type: Transform +- uid: 515 + type: GasPipeStraight + components: + - pos: 44.5,23.5 + parent: 55 + type: Transform +- uid: 516 + type: GasPipeStraight + components: + - pos: 44.5,22.5 + parent: 55 + type: Transform +- uid: 517 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 45.5,28.5 + parent: 55 + type: Transform +- uid: 518 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 46.5,28.5 + parent: 55 + type: Transform +- uid: 519 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 47.5,28.5 + parent: 55 + type: Transform +- uid: 520 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 48.5,28.5 + parent: 55 + type: Transform +- uid: 521 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 49.5,28.5 + parent: 55 + type: Transform +- uid: 522 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 50.5,28.5 + parent: 55 + type: Transform +- uid: 523 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 51.5,28.5 + parent: 55 + type: Transform +- uid: 524 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 52.5,28.5 + parent: 55 + type: Transform +- uid: 525 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 53.5,28.5 + parent: 55 + type: Transform +- uid: 526 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 54.5,28.5 + parent: 55 + type: Transform +- uid: 527 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 55.5,28.5 + parent: 55 + type: Transform +- uid: 528 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 56.5,28.5 + parent: 55 + type: Transform +- uid: 529 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 57.5,28.5 + parent: 55 + type: Transform +- uid: 530 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 58.5,28.5 + parent: 55 + type: Transform +- uid: 531 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 59.5,28.5 + parent: 55 + type: Transform +- uid: 532 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 60.5,28.5 + parent: 55 + type: Transform +- uid: 533 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 61.5,28.5 + parent: 55 + type: Transform +- uid: 534 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 62.5,28.5 + parent: 55 + type: Transform +- uid: 535 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 63.5,28.5 + parent: 55 + type: Transform +- uid: 536 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 64.5,28.5 + parent: 55 + type: Transform +- uid: 537 + type: GasPipeFourway + components: + - pos: 65.5,28.5 + parent: 55 + type: Transform +- uid: 538 + type: GasPipeStraight + components: + - pos: 65.5,29.5 + parent: 55 + type: Transform +- uid: 539 + type: GasPipeStraight + components: + - pos: 65.5,30.5 + parent: 55 + type: Transform +- uid: 540 + type: GasPipeStraight + components: + - pos: 65.5,31.5 + parent: 55 + type: Transform +- uid: 541 + type: GasPipeStraight + components: + - pos: 65.5,32.5 + parent: 55 + type: Transform +- uid: 542 + type: GasPipeStraight + components: + - pos: 65.5,33.5 + parent: 55 + type: Transform +- uid: 543 + type: GasPipeStraight + components: + - pos: 65.5,34.5 + parent: 55 + type: Transform +- uid: 544 + type: GasPipeStraight + components: + - pos: 65.5,35.5 + parent: 55 + type: Transform +- uid: 545 + type: GasPipeStraight + components: + - pos: 65.5,36.5 + parent: 55 + type: Transform +- uid: 546 + type: GasPipeStraight + components: + - pos: 65.5,37.5 + parent: 55 + type: Transform +- uid: 547 + type: GasPipeStraight + components: + - pos: 65.5,38.5 + parent: 55 + type: Transform +- uid: 548 + type: GasPipeStraight + components: + - pos: 65.5,39.5 + parent: 55 + type: Transform +- uid: 549 + type: GasPipeStraight + components: + - pos: 65.5,40.5 + parent: 55 + type: Transform +- uid: 550 + type: GasPipeStraight + components: + - pos: 65.5,41.5 + parent: 55 + type: Transform +- uid: 551 + type: GasPipeStraight + components: + - pos: 65.5,42.5 + parent: 55 + type: Transform +- uid: 552 + type: GasPipeStraight + components: + - pos: 65.5,43.5 + parent: 55 + type: Transform +- uid: 553 + type: GasPipeStraight + components: + - pos: 65.5,44.5 + parent: 55 + type: Transform +- uid: 554 + type: GasPipeStraight + components: + - pos: 65.5,45.5 + parent: 55 + type: Transform +- uid: 555 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 66.5,28.5 + parent: 55 + type: Transform +- uid: 556 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 67.5,28.5 + parent: 55 + type: Transform +- uid: 557 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 68.5,28.5 + parent: 55 + type: Transform +- uid: 558 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 69.5,28.5 + parent: 55 + type: Transform +- uid: 559 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 70.5,28.5 + parent: 55 + type: Transform +- uid: 560 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 71.5,28.5 + parent: 55 + type: Transform +- uid: 561 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 72.5,28.5 + parent: 55 + type: Transform +- uid: 562 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 73.5,28.5 + parent: 55 + type: Transform +- uid: 563 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 74.5,28.5 + parent: 55 + type: Transform +- uid: 564 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: 75.5,28.5 + parent: 55 + type: Transform +- uid: 565 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: 77.5,28.5 + parent: 55 + type: Transform +- uid: 566 + type: GasPipeBend + components: + - pos: 77.5,29.5 + parent: 55 + type: Transform +- uid: 567 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: 75.5,29.5 + parent: 55 + type: Transform +- uid: 568 + type: GasPipeTJunction + components: + - pos: 76.5,29.5 + parent: 55 + type: Transform +- uid: 569 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 78.5,28.5 + parent: 55 + type: Transform +- uid: 570 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 79.5,28.5 + parent: 55 + type: Transform +- uid: 571 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 31.5,28.5 + parent: 55 + type: Transform +- uid: 572 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 30.5,28.5 + parent: 55 + type: Transform +- uid: 573 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 29.5,28.5 + parent: 55 + type: Transform +- uid: 574 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 28.5,28.5 + parent: 55 + type: Transform +- uid: 575 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 27.5,28.5 + parent: 55 + type: Transform +- uid: 576 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 26.5,28.5 + parent: 55 + type: Transform +- uid: 577 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 25.5,28.5 + parent: 55 + type: Transform +- uid: 578 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 24.5,28.5 + parent: 55 + type: Transform +- uid: 579 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 23.5,28.5 + parent: 55 + type: Transform +- uid: 580 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 22.5,28.5 + parent: 55 + type: Transform +- uid: 581 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 21.5,28.5 + parent: 55 + type: Transform +- uid: 582 + type: GasPipeFourway + components: + - pos: 20.5,28.5 + parent: 55 + type: Transform +- uid: 583 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 19.5,28.5 + parent: 55 + type: Transform +- uid: 584 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 20.5,29.5 + parent: 55 + type: Transform +- uid: 585 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 20.5,30.5 + parent: 55 + type: Transform +- uid: 586 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 20.5,31.5 + parent: 55 + type: Transform +- uid: 587 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 20.5,32.5 + parent: 55 + type: Transform +- uid: 588 + type: GasPipeTJunction + components: + - pos: 20.5,33.5 + parent: 55 + type: Transform +- uid: 589 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 21.5,33.5 + parent: 55 + type: Transform +- uid: 590 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 22.5,33.5 + parent: 55 + type: Transform +- uid: 591 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 23.5,33.5 + parent: 55 + type: Transform +- uid: 592 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: 24.5,33.5 + parent: 55 + type: Transform +- uid: 593 + type: GasPipeTJunction + components: + - pos: 24.5,37.5 + parent: 55 + type: Transform +- uid: 594 + type: GasPipeStraight + components: + - pos: 24.5,34.5 + parent: 55 + type: Transform +- uid: 595 + type: GasPipeStraight + components: + - pos: 24.5,35.5 + parent: 55 + type: Transform +- uid: 596 + type: GasPipeStraight + components: + - pos: 24.5,36.5 + parent: 55 + type: Transform +- uid: 597 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 23.5,37.5 + parent: 55 + type: Transform +- uid: 598 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 22.5,37.5 + parent: 55 + type: Transform +- uid: 599 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 21.5,37.5 + parent: 55 + type: Transform +- uid: 600 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 20.5,27.5 + parent: 55 + type: Transform +- uid: 601 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 20.5,26.5 + parent: 55 + type: Transform +- uid: 602 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 20.5,25.5 + parent: 55 + type: Transform +- uid: 603 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 20.5,24.5 + parent: 55 + type: Transform +- uid: 604 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 20.5,23.5 + parent: 55 + type: Transform +- uid: 605 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 18.5,28.5 + parent: 55 + type: Transform +- uid: 606 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 17.5,28.5 + parent: 55 + type: Transform +- uid: 607 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 16.5,28.5 + parent: 55 + type: Transform +- uid: 608 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 15.5,28.5 + parent: 55 + type: Transform +- uid: 609 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 14.5,28.5 + parent: 55 + type: Transform +- uid: 610 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 13.5,28.5 + parent: 55 + type: Transform +- uid: 611 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 55 + type: Transform +- uid: 612 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 11.5,28.5 + parent: 55 + type: Transform +- uid: 613 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 10.5,28.5 + parent: 55 + type: Transform +- uid: 614 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 9.5,28.5 + parent: 55 + type: Transform +- uid: 615 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 55 + type: Transform +- uid: 616 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 7.5,28.5 + parent: 55 + type: Transform +- uid: 617 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 6.5,28.5 + parent: 55 + type: Transform +- uid: 618 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 55 + type: Transform +- uid: 619 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 4.5,28.5 + parent: 55 + type: Transform +- uid: 620 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 3.5,28.5 + parent: 55 + type: Transform +- uid: 621 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 2.5,28.5 + parent: 55 + type: Transform +- uid: 622 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 1.5,28.5 + parent: 55 + type: Transform +- uid: 623 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 0.5,28.5 + parent: 55 + type: Transform +- uid: 624 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -0.5,28.5 + parent: 55 + type: Transform +- uid: 625 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -1.5,28.5 + parent: 55 + type: Transform +- uid: 626 + type: GasPipeFourway + components: + - pos: -2.5,28.5 + parent: 55 + type: Transform +- uid: 627 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: -2.5,31.5 + parent: 55 + type: Transform +- uid: 628 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: -2.5,33.5 + parent: 55 + type: Transform +- uid: 629 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: -2.5,25.5 + parent: 55 + type: Transform +- uid: 630 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: -2.5,23.5 + parent: 55 + type: Transform +- uid: 631 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,24.5 + parent: 55 + type: Transform +- uid: 632 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,26.5 + parent: 55 + type: Transform +- uid: 633 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,27.5 + parent: 55 + type: Transform +- uid: 634 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,29.5 + parent: 55 + type: Transform +- uid: 635 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,30.5 + parent: 55 + type: Transform +- uid: 636 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,32.5 + parent: 55 + type: Transform +- uid: 637 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,34.5 + parent: 55 + type: Transform +- uid: 638 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,35.5 + parent: 55 + type: Transform +- uid: 639 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,36.5 + parent: 55 + type: Transform +- uid: 640 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,37.5 + parent: 55 + type: Transform +- uid: 641 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,38.5 + parent: 55 + type: Transform +- uid: 642 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,39.5 + parent: 55 + type: Transform +- uid: 643 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,22.5 + parent: 55 + type: Transform +- uid: 644 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,21.5 + parent: 55 + type: Transform +- uid: 645 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,20.5 + parent: 55 + type: Transform +- uid: 646 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,19.5 + parent: 55 + type: Transform +- uid: 647 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,18.5 + parent: 55 + type: Transform +- uid: 648 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,17.5 + parent: 55 + type: Transform +- uid: 649 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -3.5,23.5 + parent: 55 + type: Transform +- uid: 650 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -4.5,23.5 + parent: 55 + type: Transform +- uid: 651 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -5.5,23.5 + parent: 55 + type: Transform +- uid: 652 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -6.5,23.5 + parent: 55 + type: Transform +- uid: 653 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -7.5,23.5 + parent: 55 + type: Transform +- uid: 654 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -8.5,23.5 + parent: 55 + type: Transform +- uid: 655 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -9.5,23.5 + parent: 55 + type: Transform +- uid: 656 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -3.5,25.5 + parent: 55 + type: Transform +- uid: 657 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -4.5,25.5 + parent: 55 + type: Transform +- uid: 658 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -5.5,25.5 + parent: 55 + type: Transform +- uid: 659 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -6.5,25.5 + parent: 55 + type: Transform +- uid: 660 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -7.5,25.5 + parent: 55 + type: Transform +- uid: 661 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -8.5,25.5 + parent: 55 + type: Transform +- uid: 662 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -9.5,25.5 + parent: 55 + type: Transform +- uid: 663 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -3.5,31.5 + parent: 55 + type: Transform +- uid: 664 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -4.5,31.5 + parent: 55 + type: Transform +- uid: 665 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -5.5,31.5 + parent: 55 + type: Transform +- uid: 666 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -6.5,31.5 + parent: 55 + type: Transform +- uid: 667 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -7.5,31.5 + parent: 55 + type: Transform +- uid: 668 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -8.5,31.5 + parent: 55 + type: Transform +- uid: 669 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -9.5,31.5 + parent: 55 + type: Transform +- uid: 670 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -3.5,33.5 + parent: 55 + type: Transform +- uid: 671 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -4.5,33.5 + parent: 55 + type: Transform +- uid: 672 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -5.5,33.5 + parent: 55 + type: Transform +- uid: 673 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -6.5,33.5 + parent: 55 + type: Transform +- uid: 674 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -7.5,33.5 + parent: 55 + type: Transform +- uid: 675 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -8.5,33.5 + parent: 55 + type: Transform +- uid: 676 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -9.5,33.5 + parent: 55 + type: Transform +- uid: 677 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: 20.5,37.5 + parent: 55 + type: Transform +- uid: 678 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 25.5,37.5 + parent: 55 + type: Transform +- uid: 679 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 21.5,40.5 + parent: 55 + type: Transform +- uid: 680 + type: GasVentPump + components: + - pos: 21.5,45.5 + parent: 55 + type: Transform +- uid: 681 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 27.5,42.5 + parent: 55 + type: Transform +- uid: 682 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 36.5,42.5 + parent: 55 + type: Transform +- uid: 683 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 40.5,40.5 + parent: 55 + type: Transform +- uid: 684 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 44.5,40.5 + parent: 55 + type: Transform +- uid: 685 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 45.5,43.5 + parent: 55 + type: Transform +- uid: 686 + type: GasVentPump + components: + - pos: 44.5,47.5 + parent: 55 + type: Transform +- uid: 687 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: 43.5,33.5 + parent: 55 + type: Transform +- uid: 688 + type: GasVentPump + components: + - pos: 44.5,38.5 + parent: 55 + type: Transform +- uid: 689 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 44.5,21.5 + parent: 55 + type: Transform +- uid: 690 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 43.5,27.5 + parent: 55 + type: Transform +- uid: 691 + type: GasVentPump + components: + - pos: 54.5,29.5 + parent: 55 + type: Transform +- uid: 692 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 65.5,27.5 + parent: 55 + type: Transform +- uid: 693 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 76.5,28.5 + parent: 55 + type: Transform +- uid: 694 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 80.5,28.5 + parent: 55 + type: Transform +- uid: 695 + type: GasVentPump + components: + - pos: 65.5,46.5 + parent: 55 + type: Transform +- uid: 696 + type: GasVentPump + components: + - pos: 34.5,29.5 + parent: 55 + type: Transform +- uid: 697 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 33.5,42.5 + parent: 55 + type: Transform +- uid: 698 + type: GasVentPump + components: + - pos: 32.5,51.5 + parent: 55 + type: Transform +- uid: 699 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: 19.5,33.5 + parent: 55 + type: Transform +- uid: 700 + type: GasVentPump + components: + - pos: 19.5,29.5 + parent: 55 + type: Transform +- uid: 701 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 20.5,22.5 + parent: 55 + type: Transform +- uid: 702 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: 31.5,17.5 + parent: 55 + type: Transform +- uid: 703 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: -3.5,28.5 + parent: 55 + type: Transform +- uid: 704 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: -2.5,16.5 + parent: 55 + type: Transform +- uid: 705 + type: GasVentPump + components: + - pos: -2.5,40.5 + parent: 55 + type: Transform +- uid: 706 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: -10.5,23.5 + parent: 55 + type: Transform +- uid: 707 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: -10.5,25.5 + parent: 55 + type: Transform +- uid: 708 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: -10.5,31.5 + parent: 55 + type: Transform +- uid: 709 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: -10.5,33.5 + parent: 55 + type: Transform +- uid: 710 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 44.5,15.5 + parent: 55 + type: Transform +- uid: 711 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: 20.5,15.5 + parent: 55 + type: Transform +- uid: 712 + type: GasPressurePump + components: + - rot: -1.5707963267948966 rad + pos: 43.5,15.5 + parent: 55 + type: Transform +- uid: 713 + type: Grille + components: + - pos: 31.5,12.5 + parent: 55 + type: Transform +- uid: 714 + type: Grille + components: + - pos: 32.5,12.5 + parent: 55 + type: Transform +- uid: 715 + type: Grille + components: + - pos: 33.5,12.5 + parent: 55 + type: Transform +- uid: 716 + type: Grille + components: + - pos: 24.5,12.5 + parent: 55 + type: Transform +- uid: 717 + type: Grille + components: + - pos: 25.5,12.5 + parent: 55 + type: Transform +- uid: 718 + type: Grille + components: + - pos: 26.5,12.5 + parent: 55 + type: Transform +- uid: 719 + type: Grille + components: + - pos: 27.5,12.5 + parent: 55 + type: Transform +- uid: 720 + type: Grille + components: + - pos: 28.5,12.5 + parent: 55 + type: Transform +- uid: 721 + type: Grille + components: + - pos: 36.5,12.5 + parent: 55 + type: Transform +- uid: 722 + type: Grille + components: + - pos: 37.5,12.5 + parent: 55 + type: Transform +- uid: 723 + type: Grille + components: + - pos: 38.5,12.5 + parent: 55 + type: Transform +- uid: 724 + type: Grille + components: + - pos: 39.5,12.5 + parent: 55 + type: Transform +- uid: 725 + type: Grille + components: + - pos: 40.5,12.5 + parent: 55 + type: Transform +- uid: 726 + type: Grille + components: + - pos: 31.5,19.5 + parent: 55 + type: Transform +- uid: 727 + type: Grille + components: + - pos: 33.5,19.5 + parent: 55 + type: Transform +- uid: 728 + type: Grille + components: + - pos: 22.5,14.5 + parent: 55 + type: Transform +- uid: 729 + type: Grille + components: + - pos: 22.5,15.5 + parent: 55 + type: Transform +- uid: 730 + type: Grille + components: + - pos: 22.5,16.5 + parent: 55 + type: Transform +- uid: 731 + type: Grille + components: + - pos: 42.5,14.5 + parent: 55 + type: Transform +- uid: 732 + type: Grille + components: + - pos: 42.5,15.5 + parent: 55 + type: Transform +- uid: 733 + type: Grille + components: + - pos: 42.5,16.5 + parent: 55 + type: Transform +- uid: 734 + type: Grille + components: + - pos: 47.5,18.5 + parent: 55 + type: Transform +- uid: 735 + type: Grille + components: + - pos: 47.5,19.5 + parent: 55 + type: Transform +- uid: 736 + type: Grille + components: + - pos: 48.5,21.5 + parent: 55 + type: Transform +- uid: 737 + type: Grille + components: + - pos: 48.5,22.5 + parent: 55 + type: Transform +- uid: 738 + type: Grille + components: + - pos: 35.5,21.5 + parent: 55 + type: Transform +- uid: 739 + type: Grille + components: + - pos: 35.5,22.5 + parent: 55 + type: Transform +- uid: 740 + type: Grille + components: + - pos: 36.5,22.5 + parent: 55 + type: Transform +- uid: 741 + type: Grille + components: + - pos: 36.5,23.5 + parent: 55 + type: Transform +- uid: 742 + type: Grille + components: + - pos: 37.5,23.5 + parent: 55 + type: Transform +- uid: 743 + type: Grille + components: + - pos: 37.5,24.5 + parent: 55 + type: Transform +- uid: 744 + type: Grille + components: + - pos: 38.5,25.5 + parent: 55 + type: Transform +- uid: 745 + type: Grille + components: + - pos: 39.5,25.5 + parent: 55 + type: Transform +- uid: 746 + type: Grille + components: + - pos: 38.5,24.5 + parent: 55 + type: Transform +- uid: 747 + type: Grille + components: + - pos: 43.5,26.5 + parent: 55 + type: Transform +- uid: 748 + type: Grille + components: + - pos: 45.5,26.5 + parent: 55 + type: Transform +- uid: 749 + type: Grille + components: + - pos: 42.5,30.5 + parent: 55 + type: Transform +- uid: 750 + type: Grille + components: + - pos: 45.5,30.5 + parent: 55 + type: Transform +- uid: 751 + type: Grille + components: + - pos: 39.5,31.5 + parent: 55 + type: Transform +- uid: 752 + type: Grille + components: + - pos: 38.5,31.5 + parent: 55 + type: Transform +- uid: 753 + type: Grille + components: + - pos: 38.5,32.5 + parent: 55 + type: Transform +- uid: 754 + type: Grille + components: + - pos: 37.5,32.5 + parent: 55 + type: Transform +- uid: 755 + type: Grille + components: + - pos: 37.5,33.5 + parent: 55 + type: Transform +- uid: 756 + type: Grille + components: + - pos: 36.5,33.5 + parent: 55 + type: Transform +- uid: 757 + type: Grille + components: + - pos: 36.5,34.5 + parent: 55 + type: Transform +- uid: 758 + type: Grille + components: + - pos: 36.5,34.5 + parent: 55 + type: Transform +- uid: 759 + type: Grille + components: + - pos: 35.5,34.5 + parent: 55 + type: Transform +- uid: 760 + type: Grille + components: + - pos: 35.5,35.5 + parent: 55 + type: Transform +- uid: 761 + type: Grille + components: + - pos: 31.5,46.5 + parent: 55 + type: Transform +- uid: 762 + type: Grille + components: + - pos: 33.5,46.5 + parent: 55 + type: Transform +- uid: 763 + type: Grille + components: + - pos: 34.5,43.5 + parent: 55 + type: Transform +- uid: 764 + type: Grille + components: + - pos: 34.5,41.5 + parent: 55 + type: Transform +- uid: 765 + type: Grille + components: + - pos: 22.5,42.5 + parent: 55 + type: Transform +- uid: 766 + type: Grille + components: + - pos: 20.5,42.5 + parent: 55 + type: Transform +- uid: 767 + type: Grille + components: + - pos: 18.5,44.5 + parent: 55 + type: Transform +- uid: 768 + type: Grille + components: + - pos: 18.5,45.5 + parent: 55 + type: Transform +- uid: 769 + type: Grille + components: + - pos: 18.5,46.5 + parent: 55 + type: Transform +- uid: 770 + type: Grille + components: + - pos: 18.5,50.5 + parent: 55 + type: Transform +- uid: 771 + type: Grille + components: + - pos: 18.5,51.5 + parent: 55 + type: Transform +- uid: 772 + type: Grille + components: + - pos: 18.5,52.5 + parent: 55 + type: Transform +- uid: 773 + type: Grille + components: + - pos: 19.5,52.5 + parent: 55 + type: Transform +- uid: 774 + type: Grille + components: + - pos: 19.5,53.5 + parent: 55 + type: Transform +- uid: 775 + type: Grille + components: + - pos: 20.5,53.5 + parent: 55 + type: Transform +- uid: 776 + type: Grille + components: + - pos: 21.5,53.5 + parent: 55 + type: Transform +- uid: 777 + type: Grille + components: + - pos: 22.5,53.5 + parent: 55 + type: Transform +- uid: 778 + type: Grille + components: + - pos: 22.5,54.5 + parent: 55 + type: Transform +- uid: 779 + type: Grille + components: + - pos: 23.5,54.5 + parent: 55 + type: Transform +- uid: 780 + type: Grille + components: + - pos: 24.5,54.5 + parent: 55 + type: Transform +- uid: 781 + type: Grille + components: + - pos: 25.5,54.5 + parent: 55 + type: Transform +- uid: 782 + type: Grille + components: + - pos: 25.5,55.5 + parent: 55 + type: Transform +- uid: 783 + type: Grille + components: + - pos: 26.5,55.5 + parent: 55 + type: Transform +- uid: 784 + type: Grille + components: + - pos: 27.5,55.5 + parent: 55 + type: Transform +- uid: 785 + type: Grille + components: + - pos: 28.5,55.5 + parent: 55 + type: Transform +- uid: 786 + type: Grille + components: + - pos: 28.5,56.5 + parent: 55 + type: Transform +- uid: 787 + type: Grille + components: + - pos: 29.5,56.5 + parent: 55 + type: Transform +- uid: 788 + type: Grille + components: + - pos: 30.5,56.5 + parent: 55 + type: Transform +- uid: 789 + type: Grille + components: + - pos: 31.5,56.5 + parent: 55 + type: Transform +- uid: 790 + type: Grille + components: + - pos: 32.5,56.5 + parent: 55 + type: Transform +- uid: 791 + type: Grille + components: + - pos: 33.5,56.5 + parent: 55 + type: Transform +- uid: 792 + type: Grille + components: + - pos: 34.5,56.5 + parent: 55 + type: Transform +- uid: 793 + type: Grille + components: + - pos: 35.5,56.5 + parent: 55 + type: Transform +- uid: 794 + type: Grille + components: + - pos: 36.5,56.5 + parent: 55 + type: Transform +- uid: 795 + type: Grille + components: + - pos: 36.5,55.5 + parent: 55 + type: Transform +- uid: 796 + type: Grille + components: + - pos: 37.5,55.5 + parent: 55 + type: Transform +- uid: 797 + type: Grille + components: + - pos: 38.5,55.5 + parent: 55 + type: Transform +- uid: 798 + type: Grille + components: + - pos: 39.5,55.5 + parent: 55 + type: Transform +- uid: 799 + type: Grille + components: + - pos: 39.5,54.5 + parent: 55 + type: Transform +- uid: 800 + type: Grille + components: + - pos: 40.5,54.5 + parent: 55 + type: Transform +- uid: 801 + type: Grille + components: + - pos: 41.5,54.5 + parent: 55 + type: Transform +- uid: 802 + type: Grille + components: + - pos: 42.5,54.5 + parent: 55 + type: Transform +- uid: 803 + type: Grille + components: + - pos: 42.5,53.5 + parent: 55 + type: Transform +- uid: 804 + type: Grille + components: + - pos: 43.5,53.5 + parent: 55 + type: Transform +- uid: 805 + type: Grille + components: + - pos: 44.5,53.5 + parent: 55 + type: Transform +- uid: 806 + type: Grille + components: + - pos: 45.5,53.5 + parent: 55 + type: Transform +- uid: 807 + type: Grille + components: + - pos: 45.5,52.5 + parent: 55 + type: Transform +- uid: 808 + type: Grille + components: + - pos: 46.5,52.5 + parent: 55 + type: Transform +- uid: 809 + type: Grille + components: + - pos: 46.5,51.5 + parent: 55 + type: Transform +- uid: 810 + type: Grille + components: + - pos: 46.5,50.5 + parent: 55 + type: Transform +- uid: 811 + type: Grille + components: + - pos: 46.5,43.5 + parent: 55 + type: Transform +- uid: 812 + type: Grille + components: + - pos: 46.5,44.5 + parent: 55 + type: Transform +- uid: 813 + type: Grille + components: + - pos: 47.5,37.5 + parent: 55 + type: Transform +- uid: 814 + type: Grille + components: + - pos: 47.5,38.5 + parent: 55 + type: Transform +- uid: 815 + type: Grille + components: + - pos: 48.5,34.5 + parent: 55 + type: Transform +- uid: 816 + type: Grille + components: + - pos: 48.5,35.5 + parent: 55 + type: Transform +- uid: 817 + type: Grille + components: + - pos: 53.5,30.5 + parent: 55 + type: Transform +- uid: 818 + type: Grille + components: + - pos: 54.5,30.5 + parent: 55 + type: Transform +- uid: 819 + type: Grille + components: + - pos: 55.5,30.5 + parent: 55 + type: Transform +- uid: 820 + type: Grille + components: + - pos: 53.5,26.5 + parent: 55 + type: Transform +- uid: 821 + type: Grille + components: + - pos: 54.5,26.5 + parent: 55 + type: Transform +- uid: 822 + type: Grille + components: + - pos: 55.5,26.5 + parent: 55 + type: Transform +- uid: 823 + type: Grille + components: + - pos: 61.5,23.5 + parent: 55 + type: Transform +- uid: 824 + type: Grille + components: + - pos: -8.5,35.5 + parent: 55 + type: Transform +- uid: 825 + type: Grille + components: + - pos: -8.5,36.5 + parent: 55 + type: Transform +- uid: 826 + type: Grille + components: + - pos: 60.5,33.5 + parent: 55 + type: Transform +- uid: 827 + type: Grille + components: + - pos: 61.5,33.5 + parent: 55 + type: Transform +- uid: 828 + type: Grille + components: + - pos: 62.5,33.5 + parent: 55 + type: Transform +- uid: 829 + type: Grille + components: + - pos: 64.5,22.5 + parent: 55 + type: Transform +- uid: 830 + type: Grille + components: + - pos: 65.5,22.5 + parent: 55 + type: Transform +- uid: 831 + type: Grille + components: + - pos: 66.5,22.5 + parent: 55 + type: Transform +- uid: 832 + type: Grille + components: + - pos: 68.5,23.5 + parent: 55 + type: Transform +- uid: 833 + type: Grille + components: + - pos: 69.5,23.5 + parent: 55 + type: Transform +- uid: 834 + type: Grille + components: + - pos: 70.5,23.5 + parent: 55 + type: Transform +- uid: 835 + type: Grille + components: + - pos: 75.5,27.5 + parent: 55 + type: Transform +- uid: 836 + type: Grille + components: + - pos: 76.5,27.5 + parent: 55 + type: Transform +- uid: 837 + type: Grille + components: + - pos: 77.5,27.5 + parent: 55 + type: Transform +- uid: 838 + type: Grille + components: + - pos: 77.5,29.5 + parent: 55 + type: Transform +- uid: 839 + type: Grille + components: + - pos: 76.5,29.5 + parent: 55 + type: Transform +- uid: 840 + type: Grille + components: + - pos: 75.5,29.5 + parent: 55 + type: Transform +- uid: 841 + type: Grille + components: + - pos: 70.5,33.5 + parent: 55 + type: Transform +- uid: 842 + type: Grille + components: + - pos: 69.5,33.5 + parent: 55 + type: Transform +- uid: 843 + type: Grille + components: + - pos: 68.5,33.5 + parent: 55 + type: Transform +- uid: 844 + type: Grille + components: + - pos: 66.5,34.5 + parent: 55 + type: Transform +- uid: 845 + type: Grille + components: + - pos: 64.5,34.5 + parent: 55 + type: Transform +- uid: 846 + type: Grille + components: + - pos: 64.5,38.5 + parent: 55 + type: Transform +- uid: 847 + type: Grille + components: + - pos: 66.5,38.5 + parent: 55 + type: Transform +- uid: 848 + type: Grille + components: + - pos: 67.5,35.5 + parent: 55 + type: Transform +- uid: 849 + type: Grille + components: + - pos: 67.5,36.5 + parent: 55 + type: Transform +- uid: 850 + type: Grille + components: + - pos: 67.5,37.5 + parent: 55 + type: Transform +- uid: 851 + type: Grille + components: + - pos: 63.5,35.5 + parent: 55 + type: Transform +- uid: 852 + type: Grille + components: + - pos: 63.5,36.5 + parent: 55 + type: Transform +- uid: 853 + type: Grille + components: + - pos: 63.5,37.5 + parent: 55 + type: Transform +- uid: 854 + type: Grille + components: + - pos: 60.5,43.5 + parent: 55 + type: Transform +- uid: 855 + type: Grille + components: + - pos: 60.5,44.5 + parent: 55 + type: Transform +- uid: 856 + type: Grille + components: + - pos: 60.5,45.5 + parent: 55 + type: Transform +- uid: 857 + type: Grille + components: + - pos: 60.5,47.5 + parent: 55 + type: Transform +- uid: 858 + type: Grille + components: + - pos: 60.5,48.5 + parent: 55 + type: Transform +- uid: 859 + type: Grille + components: + - pos: 60.5,49.5 + parent: 55 + type: Transform +- uid: 860 + type: Grille + components: + - pos: 70.5,43.5 + parent: 55 + type: Transform +- uid: 861 + type: Grille + components: + - pos: 70.5,44.5 + parent: 55 + type: Transform +- uid: 862 + type: Grille + components: + - pos: 70.5,45.5 + parent: 55 + type: Transform +- uid: 863 + type: Grille + components: + - pos: 70.5,47.5 + parent: 55 + type: Transform +- uid: 864 + type: Grille + components: + - pos: 70.5,48.5 + parent: 55 + type: Transform +- uid: 865 + type: Grille + components: + - pos: 70.5,49.5 + parent: 55 + type: Transform +- uid: 866 + type: Grille + components: + - pos: 65.5,54.5 + parent: 55 + type: Transform +- uid: 867 + type: Grille + components: + - pos: 64.5,54.5 + parent: 55 + type: Transform +- uid: 868 + type: Grille + components: + - pos: 66.5,54.5 + parent: 55 + type: Transform +- uid: 869 + type: Grille + components: + - pos: 29.5,21.5 + parent: 55 + type: Transform +- uid: 870 + type: Grille + components: + - pos: 29.5,22.5 + parent: 55 + type: Transform +- uid: 871 + type: Grille + components: + - pos: 28.5,22.5 + parent: 55 + type: Transform +- uid: 872 + type: Grille + components: + - pos: 28.5,23.5 + parent: 55 + type: Transform +- uid: 873 + type: Grille + components: + - pos: 27.5,23.5 + parent: 55 + type: Transform +- uid: 874 + type: Grille + components: + - pos: 27.5,24.5 + parent: 55 + type: Transform +- uid: 875 + type: Grille + components: + - pos: 26.5,24.5 + parent: 55 + type: Transform +- uid: 876 + type: Grille + components: + - pos: 26.5,25.5 + parent: 55 + type: Transform +- uid: 877 + type: Grille + components: + - pos: 25.5,25.5 + parent: 55 + type: Transform +- uid: 878 + type: Grille + components: + - pos: 17.5,18.5 + parent: 55 + type: Transform +- uid: 879 + type: Grille + components: + - pos: 17.5,19.5 + parent: 55 + type: Transform +- uid: 880 + type: Grille + components: + - pos: 16.5,21.5 + parent: 55 + type: Transform +- uid: 881 + type: Grille + components: + - pos: 16.5,22.5 + parent: 55 + type: Transform +- uid: 882 + type: Grille + components: + - pos: 19.5,26.5 + parent: 55 + type: Transform +- uid: 883 + type: Grille + components: + - pos: 22.5,26.5 + parent: 55 + type: Transform +- uid: 884 + type: Grille + components: + - pos: 19.5,30.5 + parent: 55 + type: Transform +- uid: 885 + type: Grille + components: + - pos: 22.5,30.5 + parent: 55 + type: Transform +- uid: 886 + type: Grille + components: + - pos: 13.5,27.5 + parent: 55 + type: Transform +- uid: 887 + type: Grille + components: + - pos: 13.5,29.5 + parent: 55 + type: Transform +- uid: 888 + type: Grille + components: + - pos: 9.5,30.5 + parent: 55 + type: Transform +- uid: 889 + type: Grille + components: + - pos: 10.5,30.5 + parent: 55 + type: Transform +- uid: 890 + type: Grille + components: + - pos: 11.5,30.5 + parent: 55 + type: Transform +- uid: 891 + type: Grille + components: + - pos: 11.5,26.5 + parent: 55 + type: Transform +- uid: 892 + type: Grille + components: + - pos: 10.5,26.5 + parent: 55 + type: Transform +- uid: 893 + type: Grille + components: + - pos: 9.5,26.5 + parent: 55 + type: Transform +- uid: 894 + type: Grille + components: + - pos: 17.5,37.5 + parent: 55 + type: Transform +- uid: 895 + type: Grille + components: + - pos: 17.5,38.5 + parent: 55 + type: Transform +- uid: 896 + type: Grille + components: + - pos: 16.5,34.5 + parent: 55 + type: Transform +- uid: 897 + type: Grille + components: + - pos: 8.5,25.5 + parent: 55 + type: Transform +- uid: 898 + type: Grille + components: + - pos: 7.5,25.5 + parent: 55 + type: Transform +- uid: 899 + type: Grille + components: + - pos: 7.5,24.5 + parent: 55 + type: Transform +- uid: 900 + type: Grille + components: + - pos: 6.5,24.5 + parent: 55 + type: Transform +- uid: 901 + type: Grille + components: + - pos: 6.5,23.5 + parent: 55 + type: Transform +- uid: 902 + type: Grille + components: + - pos: 5.5,23.5 + parent: 55 + type: Transform +- uid: 903 + type: Grille + components: + - pos: 5.5,22.5 + parent: 55 + type: Transform +- uid: 904 + type: Grille + components: + - pos: 4.5,22.5 + parent: 55 + type: Transform +- uid: 905 + type: Grille + components: + - pos: 4.5,21.5 + parent: 55 + type: Transform +- uid: 906 + type: Grille + components: + - pos: 3.5,20.5 + parent: 55 + type: Transform +- uid: 907 + type: Grille + components: + - pos: 3.5,19.5 + parent: 55 + type: Transform +- uid: 908 + type: Grille + components: + - pos: 3.5,18.5 + parent: 55 + type: Transform +- uid: 909 + type: Grille + components: + - pos: 3.5,16.5 + parent: 55 + type: Transform +- uid: 910 + type: Grille + components: + - pos: 3.5,15.5 + parent: 55 + type: Transform +- uid: 911 + type: Grille + components: + - pos: 3.5,14.5 + parent: 55 + type: Transform +- uid: 912 + type: Grille + components: + - pos: 3.5,12.5 + parent: 55 + type: Transform +- uid: 913 + type: Grille + components: + - pos: 2.5,12.5 + parent: 55 + type: Transform +- uid: 914 + type: Grille + components: + - pos: 2.5,11.5 + parent: 55 + type: Transform +- uid: 915 + type: Grille + components: + - pos: 1.5,11.5 + parent: 55 + type: Transform +- uid: 916 + type: Grille + components: + - pos: 1.5,10.5 + parent: 55 + type: Transform +- uid: 917 + type: Grille + components: + - pos: 0.5,10.5 + parent: 55 + type: Transform +- uid: 918 + type: Grille + components: + - pos: 0.5,9.5 + parent: 55 + type: Transform +- uid: 919 + type: Grille + components: + - pos: -0.5,9.5 + parent: 55 + type: Transform +- uid: 920 + type: Grille + components: + - pos: -4.5,9.5 + parent: 55 + type: Transform +- uid: 921 + type: Grille + components: + - pos: -5.5,9.5 + parent: 55 + type: Transform +- uid: 922 + type: Grille + components: + - pos: -5.5,10.5 + parent: 55 + type: Transform +- uid: 923 + type: Grille + components: + - pos: -6.5,10.5 + parent: 55 + type: Transform +- uid: 924 + type: Grille + components: + - pos: -6.5,11.5 + parent: 55 + type: Transform +- uid: 925 + type: Grille + components: + - pos: -7.5,11.5 + parent: 55 + type: Transform +- uid: 926 + type: Grille + components: + - pos: -7.5,12.5 + parent: 55 + type: Transform +- uid: 927 + type: Grille + components: + - pos: -8.5,12.5 + parent: 55 + type: Transform +- uid: 928 + type: Grille + components: + - pos: -3.5,8.5 + parent: 55 + type: Transform +- uid: 929 + type: Grille + components: + - pos: -3.5,7.5 + parent: 55 + type: Transform +- uid: 930 + type: Grille + components: + - pos: -3.5,6.5 + parent: 55 + type: Transform +- uid: 931 + type: Grille + components: + - pos: -1.5,6.5 + parent: 55 + type: Transform +- uid: 932 + type: Grille + components: + - pos: -1.5,7.5 + parent: 55 + type: Transform +- uid: 933 + type: Grille + components: + - pos: -1.5,8.5 + parent: 55 + type: Transform +- uid: 934 + type: Grille + components: + - pos: -8.5,14.5 + parent: 55 + type: Transform +- uid: 935 + type: Grille + components: + - pos: -8.5,15.5 + parent: 55 + type: Transform +- uid: 936 + type: Grille + components: + - pos: -8.5,16.5 + parent: 55 + type: Transform +- uid: 937 + type: Grille + components: + - pos: -8.5,18.5 + parent: 55 + type: Transform +- uid: 938 + type: Grille + components: + - pos: -8.5,19.5 + parent: 55 + type: Transform +- uid: 939 + type: Grille + components: + - pos: -8.5,20.5 + parent: 55 + type: Transform +- uid: 940 + type: Grille + components: + - pos: -8.5,21.5 + parent: 55 + type: Transform +- uid: 941 + type: Grille + components: + - pos: -10.5,22.5 + parent: 55 + type: Transform +- uid: 942 + type: Grille + components: + - pos: -10.5,24.5 + parent: 55 + type: Transform +- uid: 943 + type: Grille + components: + - pos: -10.5,26.5 + parent: 55 + type: Transform +- uid: 944 + type: Grille + components: + - pos: -8.5,27.5 + parent: 55 + type: Transform +- uid: 945 + type: Grille + components: + - pos: -8.5,28.5 + parent: 55 + type: Transform +- uid: 946 + type: Grille + components: + - pos: -8.5,29.5 + parent: 55 + type: Transform +- uid: 947 + type: Grille + components: + - pos: -10.5,30.5 + parent: 55 + type: Transform +- uid: 948 + type: Grille + components: + - pos: -10.5,32.5 + parent: 55 + type: Transform +- uid: 949 + type: Grille + components: + - pos: -10.5,34.5 + parent: 55 + type: Transform +- uid: 950 + type: Grille + components: + - pos: 8.5,31.5 + parent: 55 + type: Transform +- uid: 951 + type: Grille + components: + - pos: 7.5,31.5 + parent: 55 + type: Transform +- uid: 952 + type: Grille + components: + - pos: 7.5,32.5 + parent: 55 + type: Transform +- uid: 953 + type: Grille + components: + - pos: 6.5,32.5 + parent: 55 + type: Transform +- uid: 954 + type: Grille + components: + - pos: 6.5,33.5 + parent: 55 + type: Transform +- uid: 955 + type: Grille + components: + - pos: 5.5,33.5 + parent: 55 + type: Transform +- uid: 956 + type: Grille + components: + - pos: 5.5,34.5 + parent: 55 + type: Transform +- uid: 957 + type: Grille + components: + - pos: 4.5,34.5 + parent: 55 + type: Transform +- uid: 958 + type: Grille + components: + - pos: 4.5,35.5 + parent: 55 + type: Transform +- uid: 959 + type: Grille + components: + - pos: -8.5,37.5 + parent: 55 + type: Transform +- uid: 960 + type: Grille + components: + - pos: -8.5,38.5 + parent: 55 + type: Transform +- uid: 961 + type: Grille + components: + - pos: -8.5,40.5 + parent: 55 + type: Transform +- uid: 962 + type: Grille + components: + - pos: -8.5,41.5 + parent: 55 + type: Transform +- uid: 963 + type: Grille + components: + - pos: -8.5,42.5 + parent: 55 + type: Transform +- uid: 964 + type: Grille + components: + - pos: -8.5,44.5 + parent: 55 + type: Transform +- uid: 965 + type: Grille + components: + - pos: -7.5,44.5 + parent: 55 + type: Transform +- uid: 966 + type: Grille + components: + - pos: -7.5,45.5 + parent: 55 + type: Transform +- uid: 967 + type: Grille + components: + - pos: -6.5,45.5 + parent: 55 + type: Transform +- uid: 968 + type: Grille + components: + - pos: -6.5,46.5 + parent: 55 + type: Transform +- uid: 969 + type: Grille + components: + - pos: -5.5,46.5 + parent: 55 + type: Transform +- uid: 970 + type: Grille + components: + - pos: -5.5,47.5 + parent: 55 + type: Transform +- uid: 971 + type: Grille + components: + - pos: -4.5,47.5 + parent: 55 + type: Transform +- uid: 972 + type: Grille + components: + - pos: -3.5,48.5 + parent: 55 + type: Transform +- uid: 973 + type: Grille + components: + - pos: -3.5,49.5 + parent: 55 + type: Transform +- uid: 974 + type: Grille + components: + - pos: -3.5,50.5 + parent: 55 + type: Transform +- uid: 975 + type: Grille + components: + - pos: -1.5,50.5 + parent: 55 + type: Transform +- uid: 976 + type: Grille + components: + - pos: -1.5,49.5 + parent: 55 + type: Transform +- uid: 977 + type: Grille + components: + - pos: -1.5,48.5 + parent: 55 + type: Transform +- uid: 978 + type: Grille + components: + - pos: -0.5,47.5 + parent: 55 + type: Transform +- uid: 979 + type: Grille + components: + - pos: 0.5,47.5 + parent: 55 + type: Transform +- uid: 980 + type: Grille + components: + - pos: 0.5,46.5 + parent: 55 + type: Transform +- uid: 981 + type: Grille + components: + - pos: 1.5,46.5 + parent: 55 + type: Transform +- uid: 982 + type: Grille + components: + - pos: 1.5,45.5 + parent: 55 + type: Transform +- uid: 983 + type: Grille + components: + - pos: 2.5,45.5 + parent: 55 + type: Transform +- uid: 984 + type: Grille + components: + - pos: 2.5,44.5 + parent: 55 + type: Transform +- uid: 985 + type: Grille + components: + - pos: 3.5,44.5 + parent: 55 + type: Transform +- uid: 986 + type: Grille + components: + - pos: 3.5,36.5 + parent: 55 + type: Transform +- uid: 987 + type: Grille + components: + - pos: 3.5,37.5 + parent: 55 + type: Transform +- uid: 988 + type: Grille + components: + - pos: 3.5,38.5 + parent: 55 + type: Transform +- uid: 989 + type: Grille + components: + - pos: 3.5,40.5 + parent: 55 + type: Transform +- uid: 990 + type: Grille + components: + - pos: 3.5,41.5 + parent: 55 + type: Transform +- uid: 991 + type: Grille + components: + - pos: 3.5,42.5 + parent: 55 + type: Transform +- uid: 992 + type: WallRiveted + components: + - pos: 78.5,25.5 + parent: 55 + type: Transform +- uid: 993 + type: Grille + components: + - pos: 81.5,31.5 + parent: 55 + type: Transform +- uid: 994 + type: Grille + components: + - pos: 80.5,31.5 + parent: 55 + type: Transform +- uid: 995 + type: WallRiveted + components: + - pos: 82.5,31.5 + parent: 55 + type: Transform +- uid: 996 + type: WallRiveted + components: + - pos: 82.5,30.5 + parent: 55 + type: Transform +- uid: 997 + type: WallRiveted + components: + - pos: 83.5,30.5 + parent: 55 + type: Transform +- uid: 998 + type: WallRiveted + components: + - pos: 83.5,26.5 + parent: 55 + type: Transform +- uid: 999 + type: WallRiveted + components: + - pos: 82.5,25.5 + parent: 55 + type: Transform +- uid: 1000 + type: Grille + components: + - pos: 78.5,26.5 + parent: 55 + type: Transform +- uid: 1001 + type: Grille + components: + - pos: 80.5,25.5 + parent: 55 + type: Transform +- uid: 1002 + type: Grille + components: + - pos: 79.5,25.5 + parent: 55 + type: Transform +- uid: 1003 + type: Grille + components: + - pos: 81.5,25.5 + parent: 55 + type: Transform +- uid: 1004 + type: WallRiveted + components: + - pos: 82.5,27.5 + parent: 55 + type: Transform +- uid: 1005 + type: WallRiveted + components: + - pos: 82.5,29.5 + parent: 55 + type: Transform +- uid: 1006 + type: WallReinforced + components: + - pos: 83.5,29.5 + parent: 55 + type: Transform +- uid: 1007 + type: WallReinforced + components: + - pos: 83.5,27.5 + parent: 55 + type: Transform +- uid: 1008 + type: WallRiveted + components: + - pos: 8.5,26.5 + parent: 55 + type: Transform +- uid: 1009 + type: WallRiveted + components: + - pos: 8.5,30.5 + parent: 55 + type: Transform +- uid: 1010 + type: WallRiveted + components: + - pos: 3.5,35.5 + parent: 55 + type: Transform +- uid: 1011 + type: WallRiveted + components: + - pos: 3.5,39.5 + parent: 55 + type: Transform +- uid: 1012 + type: WallRiveted + components: + - pos: 3.5,21.5 + parent: 55 + type: Transform +- uid: 1013 + type: WallRiveted + components: + - pos: 3.5,17.5 + parent: 55 + type: Transform +- uid: 1014 + type: WallRiveted + components: + - pos: 3.5,13.5 + parent: 55 + type: Transform +- uid: 1015 + type: WallRiveted + components: + - pos: -1.5,9.5 + parent: 55 + type: Transform +- uid: 1016 + type: WallRiveted + components: + - pos: -3.5,9.5 + parent: 55 + type: Transform +- uid: 1017 + type: WallReinforced + components: + - pos: -3.5,5.5 + parent: 55 + type: Transform +- uid: 1018 + type: WallReinforced + components: + - pos: -1.5,5.5 + parent: 55 + type: Transform +- uid: 1019 + type: WallRiveted + components: + - pos: -8.5,13.5 + parent: 55 + type: Transform +- uid: 1020 + type: WallRiveted + components: + - pos: -8.5,17.5 + parent: 55 + type: Transform +- uid: 1021 + type: WallRiveted + components: + - pos: -8.5,22.5 + parent: 55 + type: Transform +- uid: 1022 + type: WallRiveted + components: + - pos: -9.5,22.5 + parent: 55 + type: Transform +- uid: 1023 + type: WallRiveted + components: + - pos: -8.5,24.5 + parent: 55 + type: Transform +- uid: 1024 + type: WallRiveted + components: + - pos: -9.5,24.5 + parent: 55 + type: Transform +- uid: 1025 + type: WallRiveted + components: + - pos: -8.5,26.5 + parent: 55 + type: Transform +- uid: 1026 + type: WallRiveted + components: + - pos: -9.5,26.5 + parent: 55 + type: Transform +- uid: 1027 + type: WallRiveted + components: + - pos: -8.5,30.5 + parent: 55 + type: Transform +- uid: 1028 + type: WallRiveted + components: + - pos: -9.5,30.5 + parent: 55 + type: Transform +- uid: 1029 + type: WallRiveted + components: + - pos: -8.5,32.5 + parent: 55 + type: Transform +- uid: 1030 + type: WallRiveted + components: + - pos: -9.5,32.5 + parent: 55 + type: Transform +- uid: 1031 + type: WallRiveted + components: + - pos: -8.5,34.5 + parent: 55 + type: Transform +- uid: 1032 + type: WallRiveted + components: + - pos: -9.5,34.5 + parent: 55 + type: Transform +- uid: 1033 + type: WallRiveted + components: + - pos: -8.5,39.5 + parent: 55 + type: Transform +- uid: 1034 + type: WallRiveted + components: + - pos: -8.5,43.5 + parent: 55 + type: Transform +- uid: 1035 + type: WallRiveted + components: + - pos: -3.5,47.5 + parent: 55 + type: Transform +- uid: 1036 + type: WallRiveted + components: + - pos: -1.5,47.5 + parent: 55 + type: Transform +- uid: 1037 + type: WallRiveted + components: + - pos: 3.5,43.5 + parent: 55 + type: Transform +- uid: 1038 + type: WallReinforced + components: + - pos: -3.5,51.5 + parent: 55 + type: Transform +- uid: 1039 + type: WallReinforced + components: + - pos: -1.5,51.5 + parent: 55 + type: Transform +- uid: 1040 + type: WallRiveted + components: + - pos: -11.5,30.5 + parent: 55 + type: Transform +- uid: 1041 + type: WallRiveted + components: + - pos: -12.5,30.5 + parent: 55 + type: Transform +- uid: 1042 + type: WallRiveted + components: + - pos: -11.5,32.5 + parent: 55 + type: Transform +- uid: 1043 + type: WallRiveted + components: + - pos: -12.5,32.5 + parent: 55 + type: Transform +- uid: 1044 + type: WallRiveted + components: + - pos: -12.5,34.5 + parent: 55 + type: Transform +- uid: 1045 + type: WallRiveted + components: + - pos: -11.5,34.5 + parent: 55 + type: Transform +- uid: 1046 + type: WallRiveted + components: + - pos: -11.5,24.5 + parent: 55 + type: Transform +- uid: 1047 + type: WallRiveted + components: + - pos: -12.5,24.5 + parent: 55 + type: Transform +- uid: 1048 + type: WallRiveted + components: + - pos: -11.5,26.5 + parent: 55 + type: Transform +- uid: 1049 + type: WallRiveted + components: + - pos: -12.5,26.5 + parent: 55 + type: Transform +- uid: 1050 + type: WallRiveted + components: + - pos: -11.5,22.5 + parent: 55 + type: Transform +- uid: 1051 + type: WallRiveted + components: + - pos: -12.5,22.5 + parent: 55 + type: Transform +- uid: 1052 + type: WallReinforced + components: + - pos: -13.5,22.5 + parent: 55 + type: Transform +- uid: 1053 + type: WallReinforced + components: + - pos: -13.5,24.5 + parent: 55 + type: Transform +- uid: 1054 + type: WallReinforced + components: + - pos: -13.5,26.5 + parent: 55 + type: Transform +- uid: 1055 + type: WallReinforced + components: + - pos: -13.5,30.5 + parent: 55 + type: Transform +- uid: 1056 + type: WallReinforced + components: + - pos: -13.5,32.5 + parent: 55 + type: Transform +- uid: 1057 + type: WallReinforced + components: + - pos: -13.5,34.5 + parent: 55 + type: Transform +- uid: 1058 + type: ReinforcedWindow + components: + - pos: -8.5,12.5 + parent: 55 + type: Transform +- uid: 1059 + type: ReinforcedWindow + components: + - pos: -7.5,12.5 + parent: 55 + type: Transform +- uid: 1060 + type: ReinforcedWindow + components: + - pos: -7.5,11.5 + parent: 55 + type: Transform +- uid: 1061 + type: ReinforcedWindow + components: + - pos: -6.5,11.5 + parent: 55 + type: Transform +- uid: 1062 + type: ReinforcedWindow + components: + - pos: -6.5,10.5 + parent: 55 + type: Transform +- uid: 1063 + type: ReinforcedWindow + components: + - pos: -5.5,10.5 + parent: 55 + type: Transform +- uid: 1064 + type: ReinforcedWindow + components: + - pos: -5.5,9.5 + parent: 55 + type: Transform +- uid: 1065 + type: ReinforcedWindow + components: + - pos: -4.5,9.5 + parent: 55 + type: Transform +- uid: 1066 + type: ReinforcedWindow + components: + - pos: -3.5,8.5 + parent: 55 + type: Transform +- uid: 1067 + type: ReinforcedWindow + components: + - pos: -3.5,7.5 + parent: 55 + type: Transform +- uid: 1068 + type: ReinforcedWindow + components: + - pos: -3.5,6.5 + parent: 55 + type: Transform +- uid: 1069 + type: ReinforcedWindow + components: + - pos: -1.5,6.5 + parent: 55 + type: Transform +- uid: 1070 + type: ReinforcedWindow + components: + - pos: -1.5,7.5 + parent: 55 + type: Transform +- uid: 1071 + type: ReinforcedWindow + components: + - pos: -1.5,8.5 + parent: 55 + type: Transform +- uid: 1072 + type: ReinforcedWindow + components: + - pos: -0.5,9.5 + parent: 55 + type: Transform +- uid: 1073 + type: ReinforcedWindow + components: + - pos: 0.5,9.5 + parent: 55 + type: Transform +- uid: 1074 + type: ReinforcedWindow + components: + - pos: 0.5,10.5 + parent: 55 + type: Transform +- uid: 1075 + type: ReinforcedWindow + components: + - pos: 1.5,10.5 + parent: 55 + type: Transform +- uid: 1076 + type: ReinforcedWindow + components: + - pos: 1.5,11.5 + parent: 55 + type: Transform +- uid: 1077 + type: ReinforcedWindow + components: + - pos: 2.5,11.5 + parent: 55 + type: Transform +- uid: 1078 + type: ReinforcedWindow + components: + - pos: 2.5,12.5 + parent: 55 + type: Transform +- uid: 1079 + type: ReinforcedWindow + components: + - pos: 3.5,12.5 + parent: 55 + type: Transform +- uid: 1080 + type: ReinforcedWindow + components: + - pos: 3.5,14.5 + parent: 55 + type: Transform +- uid: 1081 + type: ReinforcedWindow + components: + - pos: 3.5,15.5 + parent: 55 + type: Transform +- uid: 1082 + type: ReinforcedWindow + components: + - pos: 3.5,16.5 + parent: 55 + type: Transform +- uid: 1083 + type: ReinforcedWindow + components: + - pos: 3.5,18.5 + parent: 55 + type: Transform +- uid: 1084 + type: ReinforcedWindow + components: + - pos: 3.5,19.5 + parent: 55 + type: Transform +- uid: 1085 + type: ReinforcedWindow + components: + - pos: 3.5,20.5 + parent: 55 + type: Transform +- uid: 1086 + type: ReinforcedWindow + components: + - pos: 4.5,21.5 + parent: 55 + type: Transform +- uid: 1087 + type: ReinforcedWindow + components: + - pos: 4.5,22.5 + parent: 55 + type: Transform +- uid: 1088 + type: ReinforcedWindow + components: + - pos: 5.5,22.5 + parent: 55 + type: Transform +- uid: 1089 + type: ReinforcedWindow + components: + - pos: 5.5,23.5 + parent: 55 + type: Transform +- uid: 1090 + type: ReinforcedWindow + components: + - pos: 6.5,23.5 + parent: 55 + type: Transform +- uid: 1091 + type: ReinforcedWindow + components: + - pos: 6.5,24.5 + parent: 55 + type: Transform +- uid: 1092 + type: ReinforcedWindow + components: + - pos: 7.5,24.5 + parent: 55 + type: Transform +- uid: 1093 + type: ReinforcedWindow + components: + - pos: 7.5,25.5 + parent: 55 + type: Transform +- uid: 1094 + type: ReinforcedWindow + components: + - pos: 8.5,25.5 + parent: 55 + type: Transform +- uid: 1095 + type: ReinforcedWindow + components: + - pos: 8.5,31.5 + parent: 55 + type: Transform +- uid: 1096 + type: ReinforcedWindow + components: + - pos: 7.5,31.5 + parent: 55 + type: Transform +- uid: 1097 + type: ReinforcedWindow + components: + - pos: 7.5,32.5 + parent: 55 + type: Transform +- uid: 1098 + type: ReinforcedWindow + components: + - pos: 6.5,32.5 + parent: 55 + type: Transform +- uid: 1099 + type: ReinforcedWindow + components: + - pos: 6.5,33.5 + parent: 55 + type: Transform +- uid: 1100 + type: ReinforcedWindow + components: + - pos: 5.5,33.5 + parent: 55 + type: Transform +- uid: 1101 + type: ReinforcedWindow + components: + - pos: 5.5,34.5 + parent: 55 + type: Transform +- uid: 1102 + type: ReinforcedWindow + components: + - pos: 4.5,34.5 + parent: 55 + type: Transform +- uid: 1103 + type: ReinforcedWindow + components: + - pos: 4.5,35.5 + parent: 55 + type: Transform +- uid: 1104 + type: ReinforcedWindow + components: + - pos: 3.5,36.5 + parent: 55 + type: Transform +- uid: 1105 + type: ReinforcedWindow + components: + - pos: 3.5,37.5 + parent: 55 + type: Transform +- uid: 1106 + type: ReinforcedWindow + components: + - pos: 3.5,38.5 + parent: 55 + type: Transform +- uid: 1107 + type: ReinforcedWindow + components: + - pos: 3.5,40.5 + parent: 55 + type: Transform +- uid: 1108 + type: ReinforcedWindow + components: + - pos: 3.5,41.5 + parent: 55 + type: Transform +- uid: 1109 + type: ReinforcedWindow + components: + - pos: 3.5,42.5 + parent: 55 + type: Transform +- uid: 1110 + type: ReinforcedWindow + components: + - pos: 3.5,44.5 + parent: 55 + type: Transform +- uid: 1111 + type: ReinforcedWindow + components: + - pos: 2.5,44.5 + parent: 55 + type: Transform +- uid: 1112 + type: ReinforcedWindow + components: + - pos: 2.5,45.5 + parent: 55 + type: Transform +- uid: 1113 + type: ReinforcedWindow + components: + - pos: 1.5,45.5 + parent: 55 + type: Transform +- uid: 1114 + type: ReinforcedWindow + components: + - pos: 1.5,46.5 + parent: 55 + type: Transform +- uid: 1115 + type: ReinforcedWindow + components: + - pos: 0.5,46.5 + parent: 55 + type: Transform +- uid: 1116 + type: ReinforcedWindow + components: + - pos: 0.5,47.5 + parent: 55 + type: Transform +- uid: 1117 + type: ReinforcedWindow + components: + - pos: -0.5,47.5 + parent: 55 + type: Transform +- uid: 1118 + type: ReinforcedWindow + components: + - pos: -8.5,14.5 + parent: 55 + type: Transform +- uid: 1119 + type: ReinforcedWindow + components: + - pos: -8.5,15.5 + parent: 55 + type: Transform +- uid: 1120 + type: ReinforcedWindow + components: + - pos: -8.5,16.5 + parent: 55 + type: Transform +- uid: 1121 + type: ReinforcedWindow + components: + - pos: -8.5,18.5 + parent: 55 + type: Transform +- uid: 1122 + type: ReinforcedWindow + components: + - pos: -8.5,19.5 + parent: 55 + type: Transform +- uid: 1123 + type: ReinforcedWindow + components: + - pos: -8.5,20.5 + parent: 55 + type: Transform +- uid: 1124 + type: ReinforcedWindow + components: + - pos: -8.5,21.5 + parent: 55 + type: Transform +- uid: 1125 + type: ReinforcedWindow + components: + - pos: -10.5,22.5 + parent: 55 + type: Transform +- uid: 1126 + type: ReinforcedWindow + components: + - pos: -10.5,24.5 + parent: 55 + type: Transform +- uid: 1127 + type: ReinforcedWindow + components: + - pos: -10.5,26.5 + parent: 55 + type: Transform +- uid: 1128 + type: ReinforcedWindow + components: + - pos: -8.5,27.5 + parent: 55 + type: Transform +- uid: 1129 + type: ReinforcedWindow + components: + - pos: -8.5,28.5 + parent: 55 + type: Transform +- uid: 1130 + type: ReinforcedWindow + components: + - pos: -8.5,29.5 + parent: 55 + type: Transform +- uid: 1131 + type: ReinforcedWindow + components: + - pos: -10.5,30.5 + parent: 55 + type: Transform +- uid: 1132 + type: ReinforcedWindow + components: + - pos: -10.5,32.5 + parent: 55 + type: Transform +- uid: 1133 + type: ReinforcedWindow + components: + - pos: -10.5,34.5 + parent: 55 + type: Transform +- uid: 1134 + type: ReinforcedWindow + components: + - pos: -8.5,35.5 + parent: 55 + type: Transform +- uid: 1135 + type: ReinforcedWindow + components: + - pos: -8.5,36.5 + parent: 55 + type: Transform +- uid: 1136 + type: ReinforcedWindow + components: + - pos: -8.5,37.5 + parent: 55 + type: Transform +- uid: 1137 + type: ReinforcedWindow + components: + - pos: -8.5,38.5 + parent: 55 + type: Transform +- uid: 1138 + type: ReinforcedWindow + components: + - pos: -8.5,40.5 + parent: 55 + type: Transform +- uid: 1139 + type: ReinforcedWindow + components: + - pos: -8.5,41.5 + parent: 55 + type: Transform +- uid: 1140 + type: ReinforcedWindow + components: + - pos: -8.5,42.5 + parent: 55 + type: Transform +- uid: 1141 + type: ReinforcedWindow + components: + - pos: -8.5,44.5 + parent: 55 + type: Transform +- uid: 1142 + type: ReinforcedWindow + components: + - pos: -7.5,44.5 + parent: 55 + type: Transform +- uid: 1143 + type: ReinforcedWindow + components: + - pos: -7.5,45.5 + parent: 55 + type: Transform +- uid: 1144 + type: ReinforcedWindow + components: + - pos: -6.5,45.5 + parent: 55 + type: Transform +- uid: 1145 + type: ReinforcedWindow + components: + - pos: -6.5,46.5 + parent: 55 + type: Transform +- uid: 1146 + type: ReinforcedWindow + components: + - pos: -5.5,46.5 + parent: 55 + type: Transform +- uid: 1147 + type: ReinforcedWindow + components: + - pos: -5.5,47.5 + parent: 55 + type: Transform +- uid: 1148 + type: ReinforcedWindow + components: + - pos: -4.5,47.5 + parent: 55 + type: Transform +- uid: 1149 + type: ReinforcedWindow + components: + - pos: -3.5,48.5 + parent: 55 + type: Transform +- uid: 1150 + type: ReinforcedWindow + components: + - pos: -3.5,49.5 + parent: 55 + type: Transform +- uid: 1151 + type: ReinforcedWindow + components: + - pos: -3.5,50.5 + parent: 55 + type: Transform +- uid: 1152 + type: ReinforcedWindow + components: + - pos: -1.5,48.5 + parent: 55 + type: Transform +- uid: 1153 + type: ReinforcedWindow + components: + - pos: -1.5,49.5 + parent: 55 + type: Transform +- uid: 1154 + type: ReinforcedWindow + components: + - pos: -1.5,50.5 + parent: 55 + type: Transform +- uid: 1155 + type: ReinforcedWindow + components: + - pos: 9.5,26.5 + parent: 55 + type: Transform +- uid: 1156 + type: ReinforcedWindow + components: + - pos: 10.5,26.5 + parent: 55 + type: Transform +- uid: 1157 + type: ReinforcedWindow + components: + - pos: 11.5,26.5 + parent: 55 + type: Transform +- uid: 1158 + type: ReinforcedWindow + components: + - pos: 9.5,30.5 + parent: 55 + type: Transform +- uid: 1159 + type: ReinforcedWindow + components: + - pos: 10.5,30.5 + parent: 55 + type: Transform +- uid: 1160 + type: ReinforcedWindow + components: + - pos: 11.5,30.5 + parent: 55 + type: Transform +- uid: 1161 + type: ReinforcedWindow + components: + - pos: 13.5,29.5 + parent: 55 + type: Transform +- uid: 1162 + type: ReinforcedWindow + components: + - pos: 13.5,27.5 + parent: 55 + type: Transform +- uid: 1163 + type: ReinforcedWindow + components: + - pos: 19.5,26.5 + parent: 55 + type: Transform +- uid: 1164 + type: ReinforcedWindow + components: + - pos: 19.5,30.5 + parent: 55 + type: Transform +- uid: 1165 + type: ReinforcedWindow + components: + - pos: 22.5,30.5 + parent: 55 + type: Transform +- uid: 1166 + type: ReinforcedWindow + components: + - pos: 22.5,26.5 + parent: 55 + type: Transform +- uid: 1167 + type: ReinforcedWindow + components: + - pos: 16.5,34.5 + parent: 55 + type: Transform +- uid: 1168 + type: ReinforcedWindow + components: + - pos: 17.5,37.5 + parent: 55 + type: Transform +- uid: 1169 + type: ReinforcedWindow + components: + - pos: 17.5,38.5 + parent: 55 + type: Transform +- uid: 1170 + type: ReinforcedWindow + components: + - pos: 18.5,44.5 + parent: 55 + type: Transform +- uid: 1171 + type: ReinforcedWindow + components: + - pos: 18.5,45.5 + parent: 55 + type: Transform +- uid: 1172 + type: ReinforcedWindow + components: + - pos: 18.5,46.5 + parent: 55 + type: Transform +- uid: 1173 + type: ReinforcedWindow + components: + - pos: 20.5,42.5 + parent: 55 + type: Transform +- uid: 1174 + type: ReinforcedWindow + components: + - pos: 22.5,42.5 + parent: 55 + type: Transform +- uid: 1175 + type: ReinforcedWindow + components: + - pos: 18.5,50.5 + parent: 55 + type: Transform +- uid: 1176 + type: ReinforcedWindow + components: + - pos: 18.5,51.5 + parent: 55 + type: Transform +- uid: 1177 + type: ReinforcedWindow + components: + - pos: 18.5,52.5 + parent: 55 + type: Transform +- uid: 1178 + type: ReinforcedWindow + components: + - pos: 19.5,52.5 + parent: 55 + type: Transform +- uid: 1179 + type: ReinforcedWindow + components: + - pos: 19.5,53.5 + parent: 55 + type: Transform +- uid: 1180 + type: ReinforcedWindow + components: + - pos: 20.5,53.5 + parent: 55 + type: Transform +- uid: 1181 + type: ReinforcedWindow + components: + - pos: 21.5,53.5 + parent: 55 + type: Transform +- uid: 1182 + type: ReinforcedWindow + components: + - pos: 22.5,53.5 + parent: 55 + type: Transform +- uid: 1183 + type: ReinforcedWindow + components: + - pos: 22.5,54.5 + parent: 55 + type: Transform +- uid: 1184 + type: ReinforcedWindow + components: + - pos: 23.5,54.5 + parent: 55 + type: Transform +- uid: 1185 + type: ReinforcedWindow + components: + - pos: 24.5,54.5 + parent: 55 + type: Transform +- uid: 1186 + type: ReinforcedWindow + components: + - pos: 25.5,54.5 + parent: 55 + type: Transform +- uid: 1187 + type: ReinforcedWindow + components: + - pos: 25.5,55.5 + parent: 55 + type: Transform +- uid: 1188 + type: ReinforcedWindow + components: + - pos: 26.5,55.5 + parent: 55 + type: Transform +- uid: 1189 + type: ReinforcedWindow + components: + - pos: 27.5,55.5 + parent: 55 + type: Transform +- uid: 1190 + type: ReinforcedWindow + components: + - pos: 28.5,55.5 + parent: 55 + type: Transform +- uid: 1191 + type: ReinforcedWindow + components: + - pos: 28.5,56.5 + parent: 55 + type: Transform +- uid: 1192 + type: ReinforcedWindow + components: + - pos: 29.5,56.5 + parent: 55 + type: Transform +- uid: 1193 + type: ReinforcedWindow + components: + - pos: 30.5,56.5 + parent: 55 + type: Transform +- uid: 1194 + type: ReinforcedWindow + components: + - pos: 31.5,56.5 + parent: 55 + type: Transform +- uid: 1195 + type: ReinforcedWindow + components: + - pos: 32.5,56.5 + parent: 55 + type: Transform +- uid: 1196 + type: ReinforcedWindow + components: + - pos: 33.5,56.5 + parent: 55 + type: Transform +- uid: 1197 + type: ReinforcedWindow + components: + - pos: 34.5,56.5 + parent: 55 + type: Transform +- uid: 1198 + type: ReinforcedWindow + components: + - pos: 35.5,56.5 + parent: 55 + type: Transform +- uid: 1199 + type: ReinforcedWindow + components: + - pos: 36.5,56.5 + parent: 55 + type: Transform +- uid: 1200 + type: ReinforcedWindow + components: + - pos: 36.5,55.5 + parent: 55 + type: Transform +- uid: 1201 + type: ReinforcedWindow + components: + - pos: 37.5,55.5 + parent: 55 + type: Transform +- uid: 1202 + type: ReinforcedWindow + components: + - pos: 38.5,55.5 + parent: 55 + type: Transform +- uid: 1203 + type: ReinforcedWindow + components: + - pos: 39.5,55.5 + parent: 55 + type: Transform +- uid: 1204 + type: ReinforcedWindow + components: + - pos: 39.5,54.5 + parent: 55 + type: Transform +- uid: 1205 + type: ReinforcedWindow + components: + - pos: 40.5,54.5 + parent: 55 + type: Transform +- uid: 1206 + type: ReinforcedWindow + components: + - pos: 41.5,54.5 + parent: 55 + type: Transform +- uid: 1207 + type: ReinforcedWindow + components: + - pos: 42.5,54.5 + parent: 55 + type: Transform +- uid: 1208 + type: ReinforcedWindow + components: + - pos: 42.5,53.5 + parent: 55 + type: Transform +- uid: 1209 + type: ReinforcedWindow + components: + - pos: 43.5,53.5 + parent: 55 + type: Transform +- uid: 1210 + type: ReinforcedWindow + components: + - pos: 44.5,53.5 + parent: 55 + type: Transform +- uid: 1211 + type: ReinforcedWindow + components: + - pos: 45.5,53.5 + parent: 55 + type: Transform +- uid: 1212 + type: ReinforcedWindow + components: + - pos: 45.5,52.5 + parent: 55 + type: Transform +- uid: 1213 + type: ReinforcedWindow + components: + - pos: 46.5,52.5 + parent: 55 + type: Transform +- uid: 1214 + type: ReinforcedWindow + components: + - pos: 46.5,51.5 + parent: 55 + type: Transform +- uid: 1215 + type: ReinforcedWindow + components: + - pos: 46.5,50.5 + parent: 55 + type: Transform +- uid: 1216 + type: ReinforcedWindow + components: + - pos: 46.5,43.5 + parent: 55 + type: Transform +- uid: 1217 + type: ReinforcedWindow + components: + - pos: 46.5,44.5 + parent: 55 + type: Transform +- uid: 1218 + type: ReinforcedWindow + components: + - pos: 34.5,41.5 + parent: 55 + type: Transform +- uid: 1219 + type: ReinforcedWindow + components: + - pos: 34.5,43.5 + parent: 55 + type: Transform +- uid: 1220 + type: ReinforcedWindow + components: + - pos: 33.5,46.5 + parent: 55 + type: Transform +- uid: 1221 + type: ReinforcedWindow + components: + - pos: 31.5,46.5 + parent: 55 + type: Transform +- uid: 1222 + type: ReinforcedWindow + components: + - pos: 35.5,35.5 + parent: 55 + type: Transform +- uid: 1223 + type: ReinforcedWindow + components: + - pos: 35.5,34.5 + parent: 55 + type: Transform +- uid: 1224 + type: ReinforcedWindow + components: + - pos: 36.5,34.5 + parent: 55 + type: Transform +- uid: 1225 + type: ReinforcedWindow + components: + - pos: 36.5,33.5 + parent: 55 + type: Transform +- uid: 1226 + type: ReinforcedWindow + components: + - pos: 37.5,33.5 + parent: 55 + type: Transform +- uid: 1227 + type: ReinforcedWindow + components: + - pos: 37.5,32.5 + parent: 55 + type: Transform +- uid: 1228 + type: ReinforcedWindow + components: + - pos: 38.5,32.5 + parent: 55 + type: Transform +- uid: 1229 + type: ReinforcedWindow + components: + - pos: 38.5,31.5 + parent: 55 + type: Transform +- uid: 1230 + type: ReinforcedWindow + components: + - pos: 39.5,31.5 + parent: 55 + type: Transform +- uid: 1231 + type: ReinforcedWindow + components: + - pos: 42.5,30.5 + parent: 55 + type: Transform +- uid: 1232 + type: ReinforcedWindow + components: + - pos: 45.5,30.5 + parent: 55 + type: Transform +- uid: 1233 + type: ReinforcedWindow + components: + - pos: 48.5,34.5 + parent: 55 + type: Transform +- uid: 1234 + type: ReinforcedWindow + components: + - pos: 48.5,35.5 + parent: 55 + type: Transform +- uid: 1235 + type: ReinforcedWindow + components: + - pos: 47.5,37.5 + parent: 55 + type: Transform +- uid: 1236 + type: ReinforcedWindow + components: + - pos: 47.5,38.5 + parent: 55 + type: Transform +- uid: 1237 + type: ReinforcedWindow + components: + - pos: 45.5,26.5 + parent: 55 + type: Transform +- uid: 1238 + type: ReinforcedWindow + components: + - pos: 43.5,26.5 + parent: 55 + type: Transform +- uid: 1239 + type: ReinforcedWindow + components: + - pos: 39.5,25.5 + parent: 55 + type: Transform +- uid: 1240 + type: ReinforcedWindow + components: + - pos: 38.5,25.5 + parent: 55 + type: Transform +- uid: 1241 + type: ReinforcedWindow + components: + - pos: 38.5,24.5 + parent: 55 + type: Transform +- uid: 1242 + type: ReinforcedWindow + components: + - pos: 37.5,24.5 + parent: 55 + type: Transform +- uid: 1243 + type: ReinforcedWindow + components: + - pos: 37.5,23.5 + parent: 55 + type: Transform +- uid: 1244 + type: ReinforcedWindow + components: + - pos: 36.5,23.5 + parent: 55 + type: Transform +- uid: 1245 + type: VendingMachineSecDrobe + components: + - pos: 36.5,45.5 + parent: 55 + type: Transform +- uid: 1246 + type: ReinforcedWindow + components: + - pos: 36.5,22.5 + parent: 55 + type: Transform +- uid: 1247 + type: ReinforcedWindow + components: + - pos: 35.5,22.5 + parent: 55 + type: Transform +- uid: 1248 + type: ReinforcedWindow + components: + - pos: 29.5,21.5 + parent: 55 + type: Transform +- uid: 1249 + type: ReinforcedWindow + components: + - pos: 35.5,21.5 + parent: 55 + type: Transform +- uid: 1250 + type: ReinforcedWindow + components: + - pos: 29.5,22.5 + parent: 55 + type: Transform +- uid: 1251 + type: ReinforcedWindow + components: + - pos: 28.5,22.5 + parent: 55 + type: Transform +- uid: 1252 + type: ReinforcedWindow + components: + - pos: 28.5,23.5 + parent: 55 + type: Transform +- uid: 1253 + type: ReinforcedWindow + components: + - pos: 27.5,23.5 + parent: 55 + type: Transform +- uid: 1254 + type: ReinforcedWindow + components: + - pos: 27.5,24.5 + parent: 55 + type: Transform +- uid: 1255 + type: ReinforcedWindow + components: + - pos: 26.5,24.5 + parent: 55 + type: Transform +- uid: 1256 + type: ReinforcedWindow + components: + - pos: 26.5,25.5 + parent: 55 + type: Transform +- uid: 1257 + type: ReinforcedWindow + components: + - pos: 25.5,25.5 + parent: 55 + type: Transform +- uid: 1258 + type: ReinforcedWindow + components: + - pos: 16.5,22.5 + parent: 55 + type: Transform +- uid: 1259 + type: ReinforcedWindow + components: + - pos: 16.5,21.5 + parent: 55 + type: Transform +- uid: 1260 + type: ReinforcedWindow + components: + - pos: 17.5,19.5 + parent: 55 + type: Transform +- uid: 1261 + type: ReinforcedWindow + components: + - pos: 17.5,18.5 + parent: 55 + type: Transform +- uid: 1262 + type: WallRiveted + components: + - pos: 17.5,17.5 + parent: 55 + type: Transform +- uid: 1263 + type: ReinforcedWindow + components: + - pos: 22.5,16.5 + parent: 55 + type: Transform +- uid: 1264 + type: ReinforcedWindow + components: + - pos: 22.5,15.5 + parent: 55 + type: Transform +- uid: 1265 + type: ReinforcedWindow + components: + - pos: 22.5,14.5 + parent: 55 + type: Transform +- uid: 1266 + type: ReinforcedWindow + components: + - pos: 24.5,12.5 + parent: 55 + type: Transform +- uid: 1267 + type: ReinforcedWindow + components: + - pos: 25.5,12.5 + parent: 55 + type: Transform +- uid: 1268 + type: ReinforcedWindow + components: + - pos: 26.5,12.5 + parent: 55 + type: Transform +- uid: 1269 + type: ReinforcedWindow + components: + - pos: 27.5,12.5 + parent: 55 + type: Transform +- uid: 1270 + type: ReinforcedWindow + components: + - pos: 28.5,12.5 + parent: 55 + type: Transform +- uid: 1271 + type: ReinforcedWindow + components: + - pos: 31.5,12.5 + parent: 55 + type: Transform +- uid: 1272 + type: ReinforcedWindow + components: + - pos: 32.5,12.5 + parent: 55 + type: Transform +- uid: 1273 + type: ReinforcedWindow + components: + - pos: 33.5,12.5 + parent: 55 + type: Transform +- uid: 1274 + type: ReinforcedWindow + components: + - pos: 36.5,12.5 + parent: 55 + type: Transform +- uid: 1275 + type: ReinforcedWindow + components: + - pos: 37.5,12.5 + parent: 55 + type: Transform +- uid: 1276 + type: ReinforcedWindow + components: + - pos: 38.5,12.5 + parent: 55 + type: Transform +- uid: 1277 + type: ReinforcedWindow + components: + - pos: 39.5,12.5 + parent: 55 + type: Transform +- uid: 1278 + type: ReinforcedWindow + components: + - pos: 40.5,12.5 + parent: 55 + type: Transform +- uid: 1279 + type: ReinforcedWindow + components: + - pos: 42.5,14.5 + parent: 55 + type: Transform +- uid: 1280 + type: ReinforcedWindow + components: + - pos: 42.5,15.5 + parent: 55 + type: Transform +- uid: 1281 + type: ReinforcedWindow + components: + - pos: 42.5,16.5 + parent: 55 + type: Transform +- uid: 1282 + type: ReinforcedWindow + components: + - pos: 47.5,18.5 + parent: 55 + type: Transform +- uid: 1283 + type: ReinforcedWindow + components: + - pos: 47.5,19.5 + parent: 55 + type: Transform +- uid: 1284 + type: ReinforcedWindow + components: + - pos: 48.5,21.5 + parent: 55 + type: Transform +- uid: 1285 + type: ReinforcedWindow + components: + - pos: 48.5,22.5 + parent: 55 + type: Transform +- uid: 1286 + type: ReinforcedWindow + components: + - pos: 53.5,30.5 + parent: 55 + type: Transform +- uid: 1287 + type: ReinforcedWindow + components: + - pos: 54.5,30.5 + parent: 55 + type: Transform +- uid: 1288 + type: ReinforcedWindow + components: + - pos: 55.5,30.5 + parent: 55 + type: Transform +- uid: 1289 + type: ReinforcedWindow + components: + - pos: 53.5,26.5 + parent: 55 + type: Transform +- uid: 1290 + type: ReinforcedWindow + components: + - pos: 54.5,26.5 + parent: 55 + type: Transform +- uid: 1291 + type: ReinforcedWindow + components: + - pos: 55.5,26.5 + parent: 55 + type: Transform +- uid: 1292 + type: Grille + components: + - pos: 26.5,35.5 + parent: 55 + type: Transform +- uid: 1293 + type: Grille + components: + - pos: 24.5,35.5 + parent: 55 + type: Transform +- uid: 1294 + type: ReinforcedWindow + components: + - pos: 24.5,35.5 + parent: 55 + type: Transform +- uid: 1295 + type: ReinforcedWindow + components: + - pos: 26.5,35.5 + parent: 55 + type: Transform +- uid: 1296 + type: ReinforcedWindow + components: + - pos: 60.5,23.5 + parent: 55 + type: Transform +- uid: 1297 + type: Grille + components: + - pos: 60.5,23.5 + parent: 55 + type: Transform +- uid: 1298 + type: ReinforcedWindow + components: + - pos: 64.5,22.5 + parent: 55 + type: Transform +- uid: 1299 + type: ReinforcedWindow + components: + - pos: 65.5,22.5 + parent: 55 + type: Transform +- uid: 1300 + type: ReinforcedWindow + components: + - pos: 66.5,22.5 + parent: 55 + type: Transform +- uid: 1301 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 40.5,23.5 + parent: 55 + type: Transform +- uid: 1302 + type: DrinkWhiskeyGlass + components: + - pos: 36.420303,40.76266 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 1303 + type: MedkitBruteFilled + components: + - pos: 26.438868,36.834988 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 1304 + type: WardrobePrisonFilled + components: + - pos: 41.5,41.5 + parent: 55 + type: Transform +- uid: 1305 + type: CableHV + components: + - pos: 24.5,13.5 + parent: 55 + type: Transform +- uid: 1306 + type: APCHyperCapacity + components: + - pos: 3.5,17.5 + parent: 55 + type: Transform +- uid: 1307 + type: APCHyperCapacity + components: + - pos: 3.5,39.5 + parent: 55 + type: Transform +- uid: 1308 + type: APCHyperCapacity + components: + - pos: 40.5,30.5 + parent: 55 + type: Transform +- uid: 1309 + type: APCHyperCapacity + components: + - pos: 24.5,30.5 + parent: 55 + type: Transform +- uid: 1310 + type: APCHyperCapacity + components: + - pos: 34.5,19.5 + parent: 55 + type: Transform +- uid: 1311 + type: APCHyperCapacity + components: + - pos: 34.5,44.5 + parent: 55 + type: Transform +- uid: 1312 + type: APCHyperCapacity + components: + - pos: 67.5,33.5 + parent: 55 + type: Transform +- uid: 1313 + type: SubstationBasic + components: + - pos: 15.5,25.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1314 + type: SubstationBasic + components: + - pos: 49.5,25.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1315 + type: SubstationBasic + components: + - pos: 32.5,17.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1316 + type: GeneratorUranium + components: + - pos: 24.5,13.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1317 + type: GeneratorUranium + components: + - pos: 25.5,13.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1318 + type: GeneratorUranium + components: + - pos: 26.5,13.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1319 + type: GeneratorUranium + components: + - pos: 27.5,13.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1320 + type: GeneratorUranium + components: + - pos: 28.5,13.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1321 + type: GeneratorUranium + components: + - pos: 36.5,13.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1322 + type: GeneratorUranium + components: + - pos: 37.5,13.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1323 + type: GeneratorUranium + components: + - pos: 38.5,13.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1324 + type: GeneratorUranium + components: + - pos: 39.5,13.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1325 + type: GeneratorUranium + components: + - pos: 40.5,13.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1326 + type: GeneratorUranium + components: + - pos: 39.5,17.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1327 + type: GeneratorUranium + components: + - pos: 38.5,17.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1328 + type: GeneratorUranium + components: + - pos: 37.5,17.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1329 + type: GeneratorUranium + components: + - pos: 25.5,17.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1330 + type: GeneratorUranium + components: + - pos: 26.5,17.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1331 + type: GeneratorUranium + components: + - pos: 27.5,17.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1332 + type: ReinforcedWindow + components: + - pos: 31.5,19.5 + parent: 55 + type: Transform +- uid: 1333 + type: ReinforcedWindow + components: + - pos: 33.5,19.5 + parent: 55 + type: Transform +- uid: 1334 + type: CableHV + components: + - pos: 25.5,13.5 + parent: 55 + type: Transform +- uid: 1335 + type: CableHV + components: + - pos: 26.5,13.5 + parent: 55 + type: Transform +- uid: 1336 + type: CableHV + components: + - pos: 27.5,13.5 + parent: 55 + type: Transform +- uid: 1337 + type: CableHV + components: + - pos: 28.5,13.5 + parent: 55 + type: Transform +- uid: 1338 + type: CableHV + components: + - pos: 26.5,14.5 + parent: 55 + type: Transform +- uid: 1339 + type: CableHV + components: + - pos: 26.5,15.5 + parent: 55 + type: Transform +- uid: 1340 + type: CableHV + components: + - pos: 26.5,16.5 + parent: 55 + type: Transform +- uid: 1341 + type: CableHV + components: + - pos: 26.5,17.5 + parent: 55 + type: Transform +- uid: 1342 + type: CableHV + components: + - pos: 25.5,17.5 + parent: 55 + type: Transform +- uid: 1343 + type: CableHV + components: + - pos: 27.5,17.5 + parent: 55 + type: Transform +- uid: 1344 + type: CableHV + components: + - pos: 27.5,15.5 + parent: 55 + type: Transform +- uid: 1345 + type: CableHV + components: + - pos: 28.5,15.5 + parent: 55 + type: Transform +- uid: 1346 + type: CableHV + components: + - pos: 29.5,15.5 + parent: 55 + type: Transform +- uid: 1347 + type: CableHV + components: + - pos: 30.5,15.5 + parent: 55 + type: Transform +- uid: 1348 + type: CableHV + components: + - pos: 31.5,15.5 + parent: 55 + type: Transform +- uid: 1349 + type: CableHV + components: + - pos: 32.5,15.5 + parent: 55 + type: Transform +- uid: 1350 + type: CableHV + components: + - pos: 36.5,13.5 + parent: 55 + type: Transform +- uid: 1351 + type: CableHV + components: + - pos: 37.5,13.5 + parent: 55 + type: Transform +- uid: 1352 + type: CableHV + components: + - pos: 38.5,13.5 + parent: 55 + type: Transform +- uid: 1353 + type: CableHV + components: + - pos: 39.5,13.5 + parent: 55 + type: Transform +- uid: 1354 + type: CableHV + components: + - pos: 40.5,13.5 + parent: 55 + type: Transform +- uid: 1355 + type: CableHV + components: + - pos: 38.5,14.5 + parent: 55 + type: Transform +- uid: 1356 + type: CableHV + components: + - pos: 38.5,15.5 + parent: 55 + type: Transform +- uid: 1357 + type: CableHV + components: + - pos: 39.5,17.5 + parent: 55 + type: Transform +- uid: 1358 + type: CableHV + components: + - pos: 38.5,17.5 + parent: 55 + type: Transform +- uid: 1359 + type: CableHV + components: + - pos: 37.5,17.5 + parent: 55 + type: Transform +- uid: 1360 + type: CableHV + components: + - pos: 38.5,16.5 + parent: 55 + type: Transform +- uid: 1361 + type: CableHV + components: + - pos: 37.5,15.5 + parent: 55 + type: Transform +- uid: 1362 + type: CableHV + components: + - pos: 36.5,15.5 + parent: 55 + type: Transform +- uid: 1363 + type: CableHV + components: + - pos: 35.5,15.5 + parent: 55 + type: Transform +- uid: 1364 + type: CableHV + components: + - pos: 34.5,15.5 + parent: 55 + type: Transform +- uid: 1365 + type: CableHV + components: + - pos: 33.5,15.5 + parent: 55 + type: Transform +- uid: 1366 + type: CableHV + components: + - pos: 32.5,16.5 + parent: 55 + type: Transform +- uid: 1367 + type: CableHV + components: + - pos: 32.5,17.5 + parent: 55 + type: Transform +- uid: 1368 + type: CableHV + components: + - pos: 32.5,18.5 + parent: 55 + type: Transform +- uid: 1369 + type: CableHV + components: + - pos: 32.5,19.5 + parent: 55 + type: Transform +- uid: 1370 + type: CableHV + components: + - pos: 32.5,20.5 + parent: 55 + type: Transform +- uid: 1371 + type: CableHV + components: + - pos: 32.5,21.5 + parent: 55 + type: Transform +- uid: 1372 + type: CableHV + components: + - pos: 32.5,22.5 + parent: 55 + type: Transform +- uid: 1373 + type: CableHV + components: + - pos: 32.5,23.5 + parent: 55 + type: Transform +- uid: 1374 + type: CableHV + components: + - pos: 32.5,24.5 + parent: 55 + type: Transform +- uid: 1375 + type: CableHV + components: + - pos: 32.5,25.5 + parent: 55 + type: Transform +- uid: 1376 + type: CableHV + components: + - pos: 32.5,26.5 + parent: 55 + type: Transform +- uid: 1377 + type: CableHV + components: + - pos: 32.5,27.5 + parent: 55 + type: Transform +- uid: 1378 + type: CableHV + components: + - pos: 32.5,28.5 + parent: 55 + type: Transform +- uid: 1379 + type: CableHV + components: + - pos: 33.5,28.5 + parent: 55 + type: Transform +- uid: 1380 + type: CableHV + components: + - pos: 34.5,28.5 + parent: 55 + type: Transform +- uid: 1381 + type: CableHV + components: + - pos: 35.5,28.5 + parent: 55 + type: Transform +- uid: 1382 + type: CableHV + components: + - pos: 36.5,28.5 + parent: 55 + type: Transform +- uid: 1383 + type: CableHV + components: + - pos: 37.5,28.5 + parent: 55 + type: Transform +- uid: 1384 + type: CableHV + components: + - pos: 38.5,28.5 + parent: 55 + type: Transform +- uid: 1385 + type: CableHV + components: + - pos: 39.5,28.5 + parent: 55 + type: Transform +- uid: 1386 + type: CableHV + components: + - pos: 40.5,28.5 + parent: 55 + type: Transform +- uid: 1387 + type: CableHV + components: + - pos: 41.5,28.5 + parent: 55 + type: Transform +- uid: 1388 + type: CableHV + components: + - pos: 42.5,28.5 + parent: 55 + type: Transform +- uid: 1389 + type: CableHV + components: + - pos: 43.5,28.5 + parent: 55 + type: Transform +- uid: 1390 + type: CableHV + components: + - pos: 44.5,28.5 + parent: 55 + type: Transform +- uid: 1391 + type: CableHV + components: + - pos: 45.5,28.5 + parent: 55 + type: Transform +- uid: 1392 + type: CableHV + components: + - pos: 46.5,28.5 + parent: 55 + type: Transform +- uid: 1393 + type: CableHV + components: + - pos: 47.5,28.5 + parent: 55 + type: Transform +- uid: 1394 + type: CableHV + components: + - pos: 48.5,28.5 + parent: 55 + type: Transform +- uid: 1395 + type: CableHV + components: + - pos: 49.5,28.5 + parent: 55 + type: Transform +- uid: 1396 + type: CableHV + components: + - pos: 49.5,27.5 + parent: 55 + type: Transform +- uid: 1397 + type: CableHV + components: + - pos: 49.5,26.5 + parent: 55 + type: Transform +- uid: 1398 + type: CableHV + components: + - pos: 49.5,25.5 + parent: 55 + type: Transform +- uid: 1399 + type: CableHV + components: + - pos: 31.5,28.5 + parent: 55 + type: Transform +- uid: 1400 + type: CableHV + components: + - pos: 30.5,28.5 + parent: 55 + type: Transform +- uid: 1401 + type: CableHV + components: + - pos: 29.5,28.5 + parent: 55 + type: Transform +- uid: 1402 + type: CableHV + components: + - pos: 28.5,28.5 + parent: 55 + type: Transform +- uid: 1403 + type: CableHV + components: + - pos: 27.5,28.5 + parent: 55 + type: Transform +- uid: 1404 + type: CableHV + components: + - pos: 26.5,28.5 + parent: 55 + type: Transform +- uid: 1405 + type: CableHV + components: + - pos: 25.5,28.5 + parent: 55 + type: Transform +- uid: 1406 + type: CableHV + components: + - pos: 24.5,28.5 + parent: 55 + type: Transform +- uid: 1407 + type: CableHV + components: + - pos: 23.5,28.5 + parent: 55 + type: Transform +- uid: 1408 + type: CableHV + components: + - pos: 22.5,28.5 + parent: 55 + type: Transform +- uid: 1409 + type: CableHV + components: + - pos: 21.5,28.5 + parent: 55 + type: Transform +- uid: 1410 + type: CableHV + components: + - pos: 20.5,28.5 + parent: 55 + type: Transform +- uid: 1411 + type: CableHV + components: + - pos: 19.5,28.5 + parent: 55 + type: Transform +- uid: 1412 + type: CableHV + components: + - pos: 18.5,28.5 + parent: 55 + type: Transform +- uid: 1413 + type: CableHV + components: + - pos: 17.5,28.5 + parent: 55 + type: Transform +- uid: 1414 + type: CableHV + components: + - pos: 16.5,28.5 + parent: 55 + type: Transform +- uid: 1415 + type: CableHV + components: + - pos: 15.5,28.5 + parent: 55 + type: Transform +- uid: 1416 + type: CableHV + components: + - pos: 15.5,27.5 + parent: 55 + type: Transform +- uid: 1417 + type: CableHV + components: + - pos: 15.5,26.5 + parent: 55 + type: Transform +- uid: 1418 + type: CableHV + components: + - pos: 15.5,25.5 + parent: 55 + type: Transform +- uid: 1419 + type: CableMV + components: + - pos: 32.5,17.5 + parent: 55 + type: Transform +- uid: 1420 + type: CableMV + components: + - pos: 32.5,18.5 + parent: 55 + type: Transform +- uid: 1421 + type: CableMV + components: + - pos: 32.5,19.5 + parent: 55 + type: Transform +- uid: 1422 + type: CableMV + components: + - pos: 33.5,19.5 + parent: 55 + type: Transform +- uid: 1423 + type: CableMV + components: + - pos: 34.5,19.5 + parent: 55 + type: Transform +- uid: 1424 + type: CableMV + components: + - pos: 32.5,20.5 + parent: 55 + type: Transform +- uid: 1425 + type: CableMV + components: + - pos: 32.5,21.5 + parent: 55 + type: Transform +- uid: 1426 + type: CableMV + components: + - pos: 32.5,22.5 + parent: 55 + type: Transform +- uid: 1427 + type: CableMV + components: + - pos: 32.5,23.5 + parent: 55 + type: Transform +- uid: 1428 + type: CableMV + components: + - pos: 32.5,24.5 + parent: 55 + type: Transform +- uid: 1429 + type: CableMV + components: + - pos: 32.5,25.5 + parent: 55 + type: Transform +- uid: 1430 + type: CableMV + components: + - pos: 32.5,26.5 + parent: 55 + type: Transform +- uid: 1431 + type: CableMV + components: + - pos: 32.5,27.5 + parent: 55 + type: Transform +- uid: 1432 + type: CableMV + components: + - pos: 32.5,28.5 + parent: 55 + type: Transform +- uid: 1433 + type: CableMV + components: + - pos: 31.5,28.5 + parent: 55 + type: Transform +- uid: 1434 + type: CableMV + components: + - pos: 30.5,28.5 + parent: 55 + type: Transform +- uid: 1435 + type: CableMV + components: + - pos: 29.5,28.5 + parent: 55 + type: Transform +- uid: 1436 + type: CableMV + components: + - pos: 28.5,28.5 + parent: 55 + type: Transform +- uid: 1437 + type: CableMV + components: + - pos: 27.5,28.5 + parent: 55 + type: Transform +- uid: 1438 + type: CableMV + components: + - pos: 26.5,28.5 + parent: 55 + type: Transform +- uid: 1439 + type: CableMV + components: + - pos: 25.5,28.5 + parent: 55 + type: Transform +- uid: 1440 + type: CableMV + components: + - pos: 24.5,28.5 + parent: 55 + type: Transform +- uid: 1441 + type: CableMV + components: + - pos: 24.5,29.5 + parent: 55 + type: Transform +- uid: 1442 + type: CableMV + components: + - pos: 24.5,30.5 + parent: 55 + type: Transform +- uid: 1443 + type: CableMV + components: + - pos: 33.5,28.5 + parent: 55 + type: Transform +- uid: 1444 + type: CableMV + components: + - pos: 34.5,28.5 + parent: 55 + type: Transform +- uid: 1445 + type: CableMV + components: + - pos: 35.5,28.5 + parent: 55 + type: Transform +- uid: 1446 + type: CableMV + components: + - pos: 36.5,28.5 + parent: 55 + type: Transform +- uid: 1447 + type: CableMV + components: + - pos: 37.5,28.5 + parent: 55 + type: Transform +- uid: 1448 + type: CableMV + components: + - pos: 38.5,28.5 + parent: 55 + type: Transform +- uid: 1449 + type: CableMV + components: + - pos: 39.5,28.5 + parent: 55 + type: Transform +- uid: 1450 + type: CableMV + components: + - pos: 40.5,28.5 + parent: 55 + type: Transform +- uid: 1451 + type: CableMV + components: + - pos: 40.5,29.5 + parent: 55 + type: Transform +- uid: 1452 + type: CableMV + components: + - pos: 40.5,30.5 + parent: 55 + type: Transform +- uid: 1453 + type: CableMV + components: + - pos: 32.5,29.5 + parent: 55 + type: Transform +- uid: 1454 + type: CableMV + components: + - pos: 32.5,30.5 + parent: 55 + type: Transform +- uid: 1455 + type: CableMV + components: + - pos: 32.5,31.5 + parent: 55 + type: Transform +- uid: 1456 + type: CableMV + components: + - pos: 32.5,32.5 + parent: 55 + type: Transform +- uid: 1457 + type: CableMV + components: + - pos: 32.5,33.5 + parent: 55 + type: Transform +- uid: 1458 + type: CableMV + components: + - pos: 32.5,34.5 + parent: 55 + type: Transform +- uid: 1459 + type: CableMV + components: + - pos: 32.5,35.5 + parent: 55 + type: Transform +- uid: 1460 + type: CableMV + components: + - pos: 32.5,36.5 + parent: 55 + type: Transform +- uid: 1461 + type: CableMV + components: + - pos: 32.5,37.5 + parent: 55 + type: Transform +- uid: 1462 + type: CableMV + components: + - pos: 32.5,38.5 + parent: 55 + type: Transform +- uid: 1463 + type: CableMV + components: + - pos: 32.5,39.5 + parent: 55 + type: Transform +- uid: 1464 + type: CableMV + components: + - pos: 32.5,40.5 + parent: 55 + type: Transform +- uid: 1465 + type: CableMV + components: + - pos: 32.5,41.5 + parent: 55 + type: Transform +- uid: 1466 + type: CableMV + components: + - pos: 32.5,42.5 + parent: 55 + type: Transform +- uid: 1467 + type: CableMV + components: + - pos: 32.5,43.5 + parent: 55 + type: Transform +- uid: 1468 + type: CableMV + components: + - pos: 32.5,44.5 + parent: 55 + type: Transform +- uid: 1469 + type: CableMV + components: + - pos: 33.5,44.5 + parent: 55 + type: Transform +- uid: 1470 + type: CableMV + components: + - pos: 34.5,44.5 + parent: 55 + type: Transform +- uid: 1471 + type: CableMV + components: + - pos: 49.5,25.5 + parent: 55 + type: Transform +- uid: 1472 + type: CableMV + components: + - pos: 49.5,26.5 + parent: 55 + type: Transform +- uid: 1473 + type: CableMV + components: + - pos: 49.5,27.5 + parent: 55 + type: Transform +- uid: 1474 + type: CableMV + components: + - pos: 49.5,28.5 + parent: 55 + type: Transform +- uid: 1475 + type: CableMV + components: + - pos: 50.5,28.5 + parent: 55 + type: Transform +- uid: 1476 + type: CableMV + components: + - pos: 51.5,28.5 + parent: 55 + type: Transform +- uid: 1477 + type: CableMV + components: + - pos: 52.5,28.5 + parent: 55 + type: Transform +- uid: 1478 + type: CableMV + components: + - pos: 53.5,28.5 + parent: 55 + type: Transform +- uid: 1479 + type: CableMV + components: + - pos: 54.5,28.5 + parent: 55 + type: Transform +- uid: 1480 + type: CableMV + components: + - pos: 55.5,28.5 + parent: 55 + type: Transform +- uid: 1481 + type: CableMV + components: + - pos: 56.5,28.5 + parent: 55 + type: Transform +- uid: 1482 + type: CableMV + components: + - pos: 57.5,28.5 + parent: 55 + type: Transform +- uid: 1483 + type: CableMV + components: + - pos: 58.5,28.5 + parent: 55 + type: Transform +- uid: 1484 + type: CableMV + components: + - pos: 59.5,28.5 + parent: 55 + type: Transform +- uid: 1485 + type: CableMV + components: + - pos: 60.5,28.5 + parent: 55 + type: Transform +- uid: 1486 + type: CableMV + components: + - pos: 61.5,28.5 + parent: 55 + type: Transform +- uid: 1487 + type: CableMV + components: + - pos: 62.5,28.5 + parent: 55 + type: Transform +- uid: 1488 + type: CableMV + components: + - pos: 63.5,28.5 + parent: 55 + type: Transform +- uid: 1489 + type: CableMV + components: + - pos: 64.5,28.5 + parent: 55 + type: Transform +- uid: 1490 + type: CableMV + components: + - pos: 65.5,28.5 + parent: 55 + type: Transform +- uid: 1491 + type: CableMV + components: + - pos: 66.5,28.5 + parent: 55 + type: Transform +- uid: 1492 + type: CableMV + components: + - pos: 67.5,28.5 + parent: 55 + type: Transform +- uid: 1493 + type: CableMV + components: + - pos: 67.5,29.5 + parent: 55 + type: Transform +- uid: 1494 + type: CableMV + components: + - pos: 67.5,30.5 + parent: 55 + type: Transform +- uid: 1495 + type: CableMV + components: + - pos: 67.5,31.5 + parent: 55 + type: Transform +- uid: 1496 + type: CableMV + components: + - pos: 67.5,32.5 + parent: 55 + type: Transform +- uid: 1497 + type: CableMV + components: + - pos: 67.5,33.5 + parent: 55 + type: Transform +- uid: 1498 + type: CableMV + components: + - pos: 15.5,25.5 + parent: 55 + type: Transform +- uid: 1499 + type: CableMV + components: + - pos: 15.5,26.5 + parent: 55 + type: Transform +- uid: 1500 + type: CableMV + components: + - pos: 15.5,27.5 + parent: 55 + type: Transform +- uid: 1501 + type: CableMV + components: + - pos: 15.5,28.5 + parent: 55 + type: Transform +- uid: 1502 + type: CableMV + components: + - pos: 14.5,28.5 + parent: 55 + type: Transform +- uid: 1503 + type: CableMV + components: + - pos: 13.5,28.5 + parent: 55 + type: Transform +- uid: 1504 + type: CableMV + components: + - pos: 12.5,28.5 + parent: 55 + type: Transform +- uid: 1505 + type: CableMV + components: + - pos: 11.5,28.5 + parent: 55 + type: Transform +- uid: 1506 + type: CableMV + components: + - pos: 10.5,28.5 + parent: 55 + type: Transform +- uid: 1507 + type: CableMV + components: + - pos: 9.5,28.5 + parent: 55 + type: Transform +- uid: 1508 + type: CableMV + components: + - pos: 8.5,28.5 + parent: 55 + type: Transform +- uid: 1509 + type: CableMV + components: + - pos: 7.5,28.5 + parent: 55 + type: Transform +- uid: 1510 + type: CableMV + components: + - pos: 6.5,28.5 + parent: 55 + type: Transform +- uid: 1511 + type: CableMV + components: + - pos: 5.5,28.5 + parent: 55 + type: Transform +- uid: 1512 + type: CableMV + components: + - pos: 4.5,28.5 + parent: 55 + type: Transform +- uid: 1513 + type: CableMV + components: + - pos: 3.5,28.5 + parent: 55 + type: Transform +- uid: 1514 + type: CableMV + components: + - pos: 2.5,28.5 + parent: 55 + type: Transform +- uid: 1515 + type: CableMV + components: + - pos: 1.5,28.5 + parent: 55 + type: Transform +- uid: 1516 + type: CableMV + components: + - pos: 0.5,28.5 + parent: 55 + type: Transform +- uid: 1517 + type: CableMV + components: + - pos: -0.5,28.5 + parent: 55 + type: Transform +- uid: 1518 + type: CableMV + components: + - pos: -1.5,28.5 + parent: 55 + type: Transform +- uid: 1519 + type: CableMV + components: + - pos: -2.5,28.5 + parent: 55 + type: Transform +- uid: 1520 + type: CableMV + components: + - pos: -2.5,27.5 + parent: 55 + type: Transform +- uid: 1521 + type: CableMV + components: + - pos: -2.5,26.5 + parent: 55 + type: Transform +- uid: 1522 + type: CableMV + components: + - pos: -2.5,25.5 + parent: 55 + type: Transform +- uid: 1523 + type: CableMV + components: + - pos: -2.5,24.5 + parent: 55 + type: Transform +- uid: 1524 + type: CableMV + components: + - pos: -2.5,23.5 + parent: 55 + type: Transform +- uid: 1525 + type: CableMV + components: + - pos: -2.5,22.5 + parent: 55 + type: Transform +- uid: 1526 + type: CableMV + components: + - pos: -2.5,21.5 + parent: 55 + type: Transform +- uid: 1527 + type: CableMV + components: + - pos: -2.5,20.5 + parent: 55 + type: Transform +- uid: 1528 + type: CableMV + components: + - pos: -2.5,19.5 + parent: 55 + type: Transform +- uid: 1529 + type: CableMV + components: + - pos: -2.5,18.5 + parent: 55 + type: Transform +- uid: 1530 + type: CableMV + components: + - pos: -2.5,17.5 + parent: 55 + type: Transform +- uid: 1531 + type: CableMV + components: + - pos: -1.5,17.5 + parent: 55 + type: Transform +- uid: 1532 + type: CableMV + components: + - pos: -0.5,17.5 + parent: 55 + type: Transform +- uid: 1533 + type: CableMV + components: + - pos: 0.5,17.5 + parent: 55 + type: Transform +- uid: 1534 + type: CableMV + components: + - pos: 1.5,17.5 + parent: 55 + type: Transform +- uid: 1535 + type: CableMV + components: + - pos: 2.5,17.5 + parent: 55 + type: Transform +- uid: 1536 + type: CableMV + components: + - pos: 3.5,17.5 + parent: 55 + type: Transform +- uid: 1537 + type: CableMV + components: + - pos: -2.5,29.5 + parent: 55 + type: Transform +- uid: 1538 + type: CableMV + components: + - pos: -2.5,30.5 + parent: 55 + type: Transform +- uid: 1539 + type: CableMV + components: + - pos: -2.5,31.5 + parent: 55 + type: Transform +- uid: 1540 + type: CableMV + components: + - pos: -2.5,32.5 + parent: 55 + type: Transform +- uid: 1541 + type: CableMV + components: + - pos: -2.5,33.5 + parent: 55 + type: Transform +- uid: 1542 + type: CableMV + components: + - pos: -2.5,34.5 + parent: 55 + type: Transform +- uid: 1543 + type: CableMV + components: + - pos: -2.5,35.5 + parent: 55 + type: Transform +- uid: 1544 + type: CableMV + components: + - pos: -2.5,36.5 + parent: 55 + type: Transform +- uid: 1545 + type: CableMV + components: + - pos: -2.5,37.5 + parent: 55 + type: Transform +- uid: 1546 + type: CableMV + components: + - pos: -2.5,38.5 + parent: 55 + type: Transform +- uid: 1547 + type: CableMV + components: + - pos: -2.5,39.5 + parent: 55 + type: Transform +- uid: 1548 + type: CableMV + components: + - pos: -1.5,39.5 + parent: 55 + type: Transform +- uid: 1549 + type: CableMV + components: + - pos: -0.5,39.5 + parent: 55 + type: Transform +- uid: 1550 + type: CableMV + components: + - pos: 0.5,39.5 + parent: 55 + type: Transform +- uid: 1551 + type: CableMV + components: + - pos: 1.5,39.5 + parent: 55 + type: Transform +- uid: 1552 + type: CableMV + components: + - pos: 2.5,39.5 + parent: 55 + type: Transform +- uid: 1553 + type: CableMV + components: + - pos: 3.5,39.5 + parent: 55 + type: Transform +- uid: 1554 + type: CableApcExtension + components: + - pos: 3.5,17.5 + parent: 55 + type: Transform +- uid: 1555 + type: CableApcExtension + components: + - pos: 2.5,17.5 + parent: 55 + type: Transform +- uid: 1556 + type: CableApcExtension + components: + - pos: 1.5,17.5 + parent: 55 + type: Transform +- uid: 1557 + type: CableApcExtension + components: + - pos: 0.5,17.5 + parent: 55 + type: Transform +- uid: 1558 + type: CableApcExtension + components: + - pos: -0.5,17.5 + parent: 55 + type: Transform +- uid: 1559 + type: CableApcExtension + components: + - pos: -1.5,17.5 + parent: 55 + type: Transform +- uid: 1560 + type: CableApcExtension + components: + - pos: -2.5,17.5 + parent: 55 + type: Transform +- uid: 1561 + type: CableApcExtension + components: + - pos: -3.5,17.5 + parent: 55 + type: Transform +- uid: 1562 + type: CableApcExtension + components: + - pos: -4.5,17.5 + parent: 55 + type: Transform +- uid: 1563 + type: CableApcExtension + components: + - pos: -5.5,17.5 + parent: 55 + type: Transform +- uid: 1564 + type: CableApcExtension + components: + - pos: -6.5,17.5 + parent: 55 + type: Transform +- uid: 1565 + type: CableApcExtension + components: + - pos: 1.5,16.5 + parent: 55 + type: Transform +- uid: 1566 + type: CableApcExtension + components: + - pos: 1.5,15.5 + parent: 55 + type: Transform +- uid: 1567 + type: CableApcExtension + components: + - pos: 1.5,14.5 + parent: 55 + type: Transform +- uid: 1568 + type: CableApcExtension + components: + - pos: 1.5,13.5 + parent: 55 + type: Transform +- uid: 1569 + type: CableApcExtension + components: + - pos: 1.5,12.5 + parent: 55 + type: Transform +- uid: 1570 + type: CableApcExtension + components: + - pos: -2.5,16.5 + parent: 55 + type: Transform +- uid: 1571 + type: CableApcExtension + components: + - pos: -2.5,15.5 + parent: 55 + type: Transform +- uid: 1572 + type: CableApcExtension + components: + - pos: -2.5,14.5 + parent: 55 + type: Transform +- uid: 1573 + type: CableApcExtension + components: + - pos: -2.5,13.5 + parent: 55 + type: Transform +- uid: 1574 + type: CableApcExtension + components: + - pos: -2.5,12.5 + parent: 55 + type: Transform +- uid: 1575 + type: CableApcExtension + components: + - pos: -2.5,11.5 + parent: 55 + type: Transform +- uid: 1576 + type: CableApcExtension + components: + - pos: -2.5,10.5 + parent: 55 + type: Transform +- uid: 1577 + type: CableApcExtension + components: + - pos: -2.5,9.5 + parent: 55 + type: Transform +- uid: 1578 + type: CableApcExtension + components: + - pos: -2.5,8.5 + parent: 55 + type: Transform +- uid: 1579 + type: CableApcExtension + components: + - pos: -2.5,7.5 + parent: 55 + type: Transform +- uid: 1580 + type: CableApcExtension + components: + - pos: -2.5,6.5 + parent: 55 + type: Transform +- uid: 1581 + type: CableApcExtension + components: + - pos: -6.5,16.5 + parent: 55 + type: Transform +- uid: 1582 + type: CableApcExtension + components: + - pos: -6.5,15.5 + parent: 55 + type: Transform +- uid: 1583 + type: CableApcExtension + components: + - pos: -6.5,14.5 + parent: 55 + type: Transform +- uid: 1584 + type: CableApcExtension + components: + - pos: -6.5,13.5 + parent: 55 + type: Transform +- uid: 1585 + type: CableApcExtension + components: + - pos: -6.5,12.5 + parent: 55 + type: Transform +- uid: 1586 + type: CableApcExtension + components: + - pos: -2.5,18.5 + parent: 55 + type: Transform +- uid: 1587 + type: CableApcExtension + components: + - pos: -2.5,19.5 + parent: 55 + type: Transform +- uid: 1588 + type: CableApcExtension + components: + - pos: -2.5,20.5 + parent: 55 + type: Transform +- uid: 1589 + type: CableApcExtension + components: + - pos: -2.5,21.5 + parent: 55 + type: Transform +- uid: 1590 + type: CableApcExtension + components: + - pos: -2.5,22.5 + parent: 55 + type: Transform +- uid: 1591 + type: CableApcExtension + components: + - pos: -2.5,23.5 + parent: 55 + type: Transform +- uid: 1592 + type: CableApcExtension + components: + - pos: -2.5,24.5 + parent: 55 + type: Transform +- uid: 1593 + type: CableApcExtension + components: + - pos: -2.5,25.5 + parent: 55 + type: Transform +- uid: 1594 + type: CableApcExtension + components: + - pos: -2.5,26.5 + parent: 55 + type: Transform +- uid: 1595 + type: CableApcExtension + components: + - pos: -3.5,25.5 + parent: 55 + type: Transform +- uid: 1596 + type: CableApcExtension + components: + - pos: -4.5,25.5 + parent: 55 + type: Transform +- uid: 1597 + type: CableApcExtension + components: + - pos: -5.5,25.5 + parent: 55 + type: Transform +- uid: 1598 + type: CableApcExtension + components: + - pos: -6.5,25.5 + parent: 55 + type: Transform +- uid: 1599 + type: CableApcExtension + components: + - pos: -7.5,25.5 + parent: 55 + type: Transform +- uid: 1600 + type: CableApcExtension + components: + - pos: -8.5,25.5 + parent: 55 + type: Transform +- uid: 1601 + type: CableApcExtension + components: + - pos: -9.5,25.5 + parent: 55 + type: Transform +- uid: 1602 + type: CableApcExtension + components: + - pos: -10.5,25.5 + parent: 55 + type: Transform +- uid: 1603 + type: CableApcExtension + components: + - pos: -11.5,25.5 + parent: 55 + type: Transform +- uid: 1604 + type: CableApcExtension + components: + - pos: -12.5,25.5 + parent: 55 + type: Transform +- uid: 1605 + type: CableApcExtension + components: + - pos: -12.5,23.5 + parent: 55 + type: Transform +- uid: 1606 + type: CableApcExtension + components: + - pos: -11.5,23.5 + parent: 55 + type: Transform +- uid: 1607 + type: CableApcExtension + components: + - pos: -10.5,23.5 + parent: 55 + type: Transform +- uid: 1608 + type: CableApcExtension + components: + - pos: -9.5,23.5 + parent: 55 + type: Transform +- uid: 1609 + type: CableApcExtension + components: + - pos: -8.5,23.5 + parent: 55 + type: Transform +- uid: 1610 + type: CableApcExtension + components: + - pos: -7.5,23.5 + parent: 55 + type: Transform +- uid: 1611 + type: CableApcExtension + components: + - pos: -6.5,23.5 + parent: 55 + type: Transform +- uid: 1612 + type: CableApcExtension + components: + - pos: -5.5,23.5 + parent: 55 + type: Transform +- uid: 1613 + type: CableApcExtension + components: + - pos: -4.5,23.5 + parent: 55 + type: Transform +- uid: 1614 + type: CableApcExtension + components: + - pos: -3.5,23.5 + parent: 55 + type: Transform +- uid: 1615 + type: CableApcExtension + components: + - pos: -7.5,21.5 + parent: 55 + type: Transform +- uid: 1616 + type: CableApcExtension + components: + - pos: -6.5,21.5 + parent: 55 + type: Transform +- uid: 1617 + type: CableApcExtension + components: + - pos: -5.5,21.5 + parent: 55 + type: Transform +- uid: 1618 + type: CableApcExtension + components: + - pos: -4.5,21.5 + parent: 55 + type: Transform +- uid: 1619 + type: CableApcExtension + components: + - pos: -3.5,21.5 + parent: 55 + type: Transform +- uid: 1620 + type: CableApcExtension + components: + - pos: -7.5,19.5 + parent: 55 + type: Transform +- uid: 1621 + type: CableApcExtension + components: + - pos: -6.5,19.5 + parent: 55 + type: Transform +- uid: 1622 + type: CableApcExtension + components: + - pos: -5.5,19.5 + parent: 55 + type: Transform +- uid: 1623 + type: CableApcExtension + components: + - pos: -4.5,19.5 + parent: 55 + type: Transform +- uid: 1624 + type: CableApcExtension + components: + - pos: -3.5,19.5 + parent: 55 + type: Transform +- uid: 1625 + type: CableApcExtension + components: + - pos: -3.5,15.5 + parent: 55 + type: Transform +- uid: 1626 + type: CableApcExtension + components: + - pos: -4.5,15.5 + parent: 55 + type: Transform +- uid: 1627 + type: CableApcExtension + components: + - pos: -3.5,13.5 + parent: 55 + type: Transform +- uid: 1628 + type: CableApcExtension + components: + - pos: -4.5,13.5 + parent: 55 + type: Transform +- uid: 1629 + type: CableApcExtension + components: + - pos: -3.5,11.5 + parent: 55 + type: Transform +- uid: 1630 + type: CableApcExtension + components: + - pos: -4.5,11.5 + parent: 55 + type: Transform +- uid: 1631 + type: CableApcExtension + components: + - pos: -1.5,11.5 + parent: 55 + type: Transform +- uid: 1632 + type: CableApcExtension + components: + - pos: -0.5,11.5 + parent: 55 + type: Transform +- uid: 1633 + type: CableApcExtension + components: + - pos: -1.5,13.5 + parent: 55 + type: Transform +- uid: 1634 + type: CableApcExtension + components: + - pos: -0.5,13.5 + parent: 55 + type: Transform +- uid: 1635 + type: CableApcExtension + components: + - pos: -1.5,15.5 + parent: 55 + type: Transform +- uid: 1636 + type: CableApcExtension + components: + - pos: -0.5,15.5 + parent: 55 + type: Transform +- uid: 1637 + type: CableApcExtension + components: + - pos: -1.5,19.5 + parent: 55 + type: Transform +- uid: 1638 + type: CableApcExtension + components: + - pos: -0.5,19.5 + parent: 55 + type: Transform +- uid: 1639 + type: CableApcExtension + components: + - pos: 0.5,19.5 + parent: 55 + type: Transform +- uid: 1640 + type: CableApcExtension + components: + - pos: 1.5,19.5 + parent: 55 + type: Transform +- uid: 1641 + type: CableApcExtension + components: + - pos: 2.5,19.5 + parent: 55 + type: Transform +- uid: 1642 + type: CableApcExtension + components: + - pos: -1.5,21.5 + parent: 55 + type: Transform +- uid: 1643 + type: CableApcExtension + components: + - pos: -0.5,21.5 + parent: 55 + type: Transform +- uid: 1644 + type: CableApcExtension + components: + - pos: 0.5,21.5 + parent: 55 + type: Transform +- uid: 1645 + type: CableApcExtension + components: + - pos: 1.5,21.5 + parent: 55 + type: Transform +- uid: 1646 + type: CableApcExtension + components: + - pos: 2.5,21.5 + parent: 55 + type: Transform +- uid: 1647 + type: CableApcExtension + components: + - pos: -1.5,23.5 + parent: 55 + type: Transform +- uid: 1648 + type: CableApcExtension + components: + - pos: -0.5,23.5 + parent: 55 + type: Transform +- uid: 1649 + type: CableApcExtension + components: + - pos: 0.5,23.5 + parent: 55 + type: Transform +- uid: 1650 + type: CableApcExtension + components: + - pos: 1.5,23.5 + parent: 55 + type: Transform +- uid: 1651 + type: CableApcExtension + components: + - pos: 2.5,23.5 + parent: 55 + type: Transform +- uid: 1652 + type: CableApcExtension + components: + - pos: 3.5,23.5 + parent: 55 + type: Transform +- uid: 1653 + type: CableApcExtension + components: + - pos: 4.5,23.5 + parent: 55 + type: Transform +- uid: 1654 + type: CableApcExtension + components: + - pos: -1.5,25.5 + parent: 55 + type: Transform +- uid: 1655 + type: CableApcExtension + components: + - pos: -0.5,25.5 + parent: 55 + type: Transform +- uid: 1656 + type: CableApcExtension + components: + - pos: 0.5,25.5 + parent: 55 + type: Transform +- uid: 1657 + type: CableApcExtension + components: + - pos: 1.5,25.5 + parent: 55 + type: Transform +- uid: 1658 + type: CableApcExtension + components: + - pos: 2.5,25.5 + parent: 55 + type: Transform +- uid: 1659 + type: CableApcExtension + components: + - pos: 3.5,25.5 + parent: 55 + type: Transform +- uid: 1660 + type: CableApcExtension + components: + - pos: 4.5,25.5 + parent: 55 + type: Transform +- uid: 1661 + type: CableApcExtension + components: + - pos: 5.5,25.5 + parent: 55 + type: Transform +- uid: 1662 + type: CableApcExtension + components: + - pos: 6.5,25.5 + parent: 55 + type: Transform +- uid: 1663 + type: CableApcExtension + components: + - pos: -2.5,27.5 + parent: 55 + type: Transform +- uid: 1664 + type: CableApcExtension + components: + - pos: -3.5,27.5 + parent: 55 + type: Transform +- uid: 1665 + type: CableApcExtension + components: + - pos: -4.5,27.5 + parent: 55 + type: Transform +- uid: 1666 + type: CableApcExtension + components: + - pos: -5.5,27.5 + parent: 55 + type: Transform +- uid: 1667 + type: CableApcExtension + components: + - pos: -6.5,27.5 + parent: 55 + type: Transform +- uid: 1668 + type: CableApcExtension + components: + - pos: -7.5,27.5 + parent: 55 + type: Transform +- uid: 1669 + type: CableApcExtension + components: + - pos: -2.5,28.5 + parent: 55 + type: Transform +- uid: 1670 + type: CableApcExtension + components: + - pos: -1.5,28.5 + parent: 55 + type: Transform +- uid: 1671 + type: CableApcExtension + components: + - pos: -0.5,28.5 + parent: 55 + type: Transform +- uid: 1672 + type: CableApcExtension + components: + - pos: 0.5,28.5 + parent: 55 + type: Transform +- uid: 1673 + type: CableApcExtension + components: + - pos: 1.5,28.5 + parent: 55 + type: Transform +- uid: 1674 + type: CableApcExtension + components: + - pos: 2.5,28.5 + parent: 55 + type: Transform +- uid: 1675 + type: CableApcExtension + components: + - pos: 3.5,28.5 + parent: 55 + type: Transform +- uid: 1676 + type: CableApcExtension + components: + - pos: 4.5,28.5 + parent: 55 + type: Transform +- uid: 1677 + type: CableApcExtension + components: + - pos: 5.5,28.5 + parent: 55 + type: Transform +- uid: 1678 + type: CableApcExtension + components: + - pos: 6.5,28.5 + parent: 55 + type: Transform +- uid: 1679 + type: CableApcExtension + components: + - pos: 7.5,28.5 + parent: 55 + type: Transform +- uid: 1680 + type: CableApcExtension + components: + - pos: 8.5,28.5 + parent: 55 + type: Transform +- uid: 1681 + type: CableApcExtension + components: + - pos: 9.5,28.5 + parent: 55 + type: Transform +- uid: 1682 + type: CableApcExtension + components: + - pos: 10.5,28.5 + parent: 55 + type: Transform +- uid: 1683 + type: CableApcExtension + components: + - pos: 11.5,28.5 + parent: 55 + type: Transform +- uid: 1684 + type: CableApcExtension + components: + - pos: 12.5,28.5 + parent: 55 + type: Transform +- uid: 1685 + type: CableApcExtension + components: + - pos: 13.5,28.5 + parent: 55 + type: Transform +- uid: 1686 + type: CableApcExtension + components: + - pos: 3.5,39.5 + parent: 55 + type: Transform +- uid: 1687 + type: CableApcExtension + components: + - pos: 2.5,39.5 + parent: 55 + type: Transform +- uid: 1688 + type: CableApcExtension + components: + - pos: 1.5,39.5 + parent: 55 + type: Transform +- uid: 1689 + type: CableApcExtension + components: + - pos: 0.5,39.5 + parent: 55 + type: Transform +- uid: 1690 + type: CableApcExtension + components: + - pos: -0.5,39.5 + parent: 55 + type: Transform +- uid: 1691 + type: CableApcExtension + components: + - pos: -1.5,39.5 + parent: 55 + type: Transform +- uid: 1692 + type: CableApcExtension + components: + - pos: -2.5,39.5 + parent: 55 + type: Transform +- uid: 1693 + type: CableApcExtension + components: + - pos: -2.5,40.5 + parent: 55 + type: Transform +- uid: 1694 + type: CableApcExtension + components: + - pos: -2.5,41.5 + parent: 55 + type: Transform +- uid: 1695 + type: CableApcExtension + components: + - pos: -2.5,42.5 + parent: 55 + type: Transform +- uid: 1696 + type: CableApcExtension + components: + - pos: -2.5,43.5 + parent: 55 + type: Transform +- uid: 1697 + type: CableApcExtension + components: + - pos: -2.5,44.5 + parent: 55 + type: Transform +- uid: 1698 + type: CableApcExtension + components: + - pos: -2.5,45.5 + parent: 55 + type: Transform +- uid: 1699 + type: CableApcExtension + components: + - pos: -2.5,46.5 + parent: 55 + type: Transform +- uid: 1700 + type: CableApcExtension + components: + - pos: -2.5,47.5 + parent: 55 + type: Transform +- uid: 1701 + type: CableApcExtension + components: + - pos: -2.5,48.5 + parent: 55 + type: Transform +- uid: 1702 + type: CableApcExtension + components: + - pos: -2.5,49.5 + parent: 55 + type: Transform +- uid: 1703 + type: CableApcExtension + components: + - pos: -2.5,50.5 + parent: 55 + type: Transform +- uid: 1704 + type: CableApcExtension + components: + - pos: -2.5,38.5 + parent: 55 + type: Transform +- uid: 1705 + type: CableApcExtension + components: + - pos: -2.5,37.5 + parent: 55 + type: Transform +- uid: 1706 + type: CableApcExtension + components: + - pos: -2.5,36.5 + parent: 55 + type: Transform +- uid: 1707 + type: CableApcExtension + components: + - pos: -2.5,35.5 + parent: 55 + type: Transform +- uid: 1708 + type: CableApcExtension + components: + - pos: -2.5,34.5 + parent: 55 + type: Transform +- uid: 1709 + type: CableApcExtension + components: + - pos: -2.5,33.5 + parent: 55 + type: Transform +- uid: 1710 + type: CableApcExtension + components: + - pos: -2.5,32.5 + parent: 55 + type: Transform +- uid: 1711 + type: CableApcExtension + components: + - pos: -2.5,31.5 + parent: 55 + type: Transform +- uid: 1712 + type: CableApcExtension + components: + - pos: -2.5,30.5 + parent: 55 + type: Transform +- uid: 1713 + type: CableApcExtension + components: + - pos: -1.5,45.5 + parent: 55 + type: Transform +- uid: 1714 + type: CableApcExtension + components: + - pos: -0.5,45.5 + parent: 55 + type: Transform +- uid: 1715 + type: CableApcExtension + components: + - pos: -0.5,43.5 + parent: 55 + type: Transform +- uid: 1716 + type: CableApcExtension + components: + - pos: -3.5,45.5 + parent: 55 + type: Transform +- uid: 1717 + type: CableApcExtension + components: + - pos: -4.5,45.5 + parent: 55 + type: Transform +- uid: 1718 + type: CableApcExtension + components: + - pos: -1.5,43.5 + parent: 55 + type: Transform +- uid: 1719 + type: CableApcExtension + components: + - pos: -1.5,41.5 + parent: 55 + type: Transform +- uid: 1720 + type: CableApcExtension + components: + - pos: -0.5,41.5 + parent: 55 + type: Transform +- uid: 1721 + type: CableApcExtension + components: + - pos: -3.5,41.5 + parent: 55 + type: Transform +- uid: 1722 + type: CableApcExtension + components: + - pos: -4.5,41.5 + parent: 55 + type: Transform +- uid: 1723 + type: CableApcExtension + components: + - pos: -3.5,43.5 + parent: 55 + type: Transform +- uid: 1724 + type: CableApcExtension + components: + - pos: -4.5,43.5 + parent: 55 + type: Transform +- uid: 1725 + type: CableApcExtension + components: + - pos: -3.5,39.5 + parent: 55 + type: Transform +- uid: 1726 + type: CableApcExtension + components: + - pos: -4.5,39.5 + parent: 55 + type: Transform +- uid: 1727 + type: CableApcExtension + components: + - pos: -5.5,39.5 + parent: 55 + type: Transform +- uid: 1728 + type: CableApcExtension + components: + - pos: -6.5,39.5 + parent: 55 + type: Transform +- uid: 1729 + type: CableApcExtension + components: + - pos: -6.5,40.5 + parent: 55 + type: Transform +- uid: 1730 + type: CableApcExtension + components: + - pos: -6.5,41.5 + parent: 55 + type: Transform +- uid: 1731 + type: CableApcExtension + components: + - pos: -6.5,42.5 + parent: 55 + type: Transform +- uid: 1732 + type: CableApcExtension + components: + - pos: -6.5,43.5 + parent: 55 + type: Transform +- uid: 1733 + type: CableApcExtension + components: + - pos: -6.5,44.5 + parent: 55 + type: Transform +- uid: 1734 + type: CableApcExtension + components: + - pos: 1.5,40.5 + parent: 55 + type: Transform +- uid: 1735 + type: CableApcExtension + components: + - pos: 1.5,41.5 + parent: 55 + type: Transform +- uid: 1736 + type: CableApcExtension + components: + - pos: 1.5,42.5 + parent: 55 + type: Transform +- uid: 1737 + type: CableApcExtension + components: + - pos: 1.5,43.5 + parent: 55 + type: Transform +- uid: 1738 + type: CableApcExtension + components: + - pos: 1.5,44.5 + parent: 55 + type: Transform +- uid: 1739 + type: CableApcExtension + components: + - pos: -1.5,37.5 + parent: 55 + type: Transform +- uid: 1740 + type: CableApcExtension + components: + - pos: -0.5,37.5 + parent: 55 + type: Transform +- uid: 1741 + type: CableApcExtension + components: + - pos: 0.5,37.5 + parent: 55 + type: Transform +- uid: 1742 + type: CableApcExtension + components: + - pos: 1.5,37.5 + parent: 55 + type: Transform +- uid: 1743 + type: CableApcExtension + components: + - pos: 2.5,37.5 + parent: 55 + type: Transform +- uid: 1744 + type: CableApcExtension + components: + - pos: -1.5,35.5 + parent: 55 + type: Transform +- uid: 1745 + type: CableApcExtension + components: + - pos: -0.5,35.5 + parent: 55 + type: Transform +- uid: 1746 + type: CableApcExtension + components: + - pos: 0.5,35.5 + parent: 55 + type: Transform +- uid: 1747 + type: CableApcExtension + components: + - pos: 1.5,35.5 + parent: 55 + type: Transform +- uid: 1748 + type: CableApcExtension + components: + - pos: 2.5,35.5 + parent: 55 + type: Transform +- uid: 1749 + type: CableApcExtension + components: + - pos: -1.5,33.5 + parent: 55 + type: Transform +- uid: 1750 + type: CableApcExtension + components: + - pos: -0.5,33.5 + parent: 55 + type: Transform +- uid: 1751 + type: CableApcExtension + components: + - pos: 0.5,33.5 + parent: 55 + type: Transform +- uid: 1752 + type: CableApcExtension + components: + - pos: 1.5,33.5 + parent: 55 + type: Transform +- uid: 1753 + type: CableApcExtension + components: + - pos: 2.5,33.5 + parent: 55 + type: Transform +- uid: 1754 + type: CableApcExtension + components: + - pos: 3.5,33.5 + parent: 55 + type: Transform +- uid: 1755 + type: CableApcExtension + components: + - pos: 4.5,33.5 + parent: 55 + type: Transform +- uid: 1756 + type: CableApcExtension + components: + - pos: -1.5,31.5 + parent: 55 + type: Transform +- uid: 1757 + type: CableApcExtension + components: + - pos: -0.5,31.5 + parent: 55 + type: Transform +- uid: 1758 + type: CableApcExtension + components: + - pos: 0.5,31.5 + parent: 55 + type: Transform +- uid: 1759 + type: CableApcExtension + components: + - pos: 1.5,31.5 + parent: 55 + type: Transform +- uid: 1760 + type: CableApcExtension + components: + - pos: 2.5,31.5 + parent: 55 + type: Transform +- uid: 1761 + type: CableApcExtension + components: + - pos: 3.5,31.5 + parent: 55 + type: Transform +- uid: 1762 + type: CableApcExtension + components: + - pos: 4.5,31.5 + parent: 55 + type: Transform +- uid: 1763 + type: CableApcExtension + components: + - pos: 5.5,31.5 + parent: 55 + type: Transform +- uid: 1764 + type: CableApcExtension + components: + - pos: 6.5,31.5 + parent: 55 + type: Transform +- uid: 1765 + type: CableApcExtension + components: + - pos: -3.5,31.5 + parent: 55 + type: Transform +- uid: 1766 + type: CableApcExtension + components: + - pos: -4.5,31.5 + parent: 55 + type: Transform +- uid: 1767 + type: CableApcExtension + components: + - pos: -5.5,31.5 + parent: 55 + type: Transform +- uid: 1768 + type: CableApcExtension + components: + - pos: -6.5,31.5 + parent: 55 + type: Transform +- uid: 1769 + type: CableApcExtension + components: + - pos: -7.5,31.5 + parent: 55 + type: Transform +- uid: 1770 + type: CableApcExtension + components: + - pos: -8.5,31.5 + parent: 55 + type: Transform +- uid: 1771 + type: CableApcExtension + components: + - pos: -9.5,31.5 + parent: 55 + type: Transform +- uid: 1772 + type: CableApcExtension + components: + - pos: -10.5,31.5 + parent: 55 + type: Transform +- uid: 1773 + type: CableApcExtension + components: + - pos: -11.5,31.5 + parent: 55 + type: Transform +- uid: 1774 + type: CableApcExtension + components: + - pos: -12.5,31.5 + parent: 55 + type: Transform +- uid: 1775 + type: CableApcExtension + components: + - pos: -12.5,33.5 + parent: 55 + type: Transform +- uid: 1776 + type: CableApcExtension + components: + - pos: -11.5,33.5 + parent: 55 + type: Transform +- uid: 1777 + type: CableApcExtension + components: + - pos: -10.5,33.5 + parent: 55 + type: Transform +- uid: 1778 + type: CableApcExtension + components: + - pos: -9.5,33.5 + parent: 55 + type: Transform +- uid: 1779 + type: CableApcExtension + components: + - pos: -8.5,33.5 + parent: 55 + type: Transform +- uid: 1780 + type: CableApcExtension + components: + - pos: -7.5,33.5 + parent: 55 + type: Transform +- uid: 1781 + type: CableApcExtension + components: + - pos: -6.5,33.5 + parent: 55 + type: Transform +- uid: 1782 + type: CableApcExtension + components: + - pos: -5.5,33.5 + parent: 55 + type: Transform +- uid: 1783 + type: CableApcExtension + components: + - pos: -4.5,33.5 + parent: 55 + type: Transform +- uid: 1784 + type: CableApcExtension + components: + - pos: -3.5,33.5 + parent: 55 + type: Transform +- uid: 1785 + type: CableApcExtension + components: + - pos: -3.5,35.5 + parent: 55 + type: Transform +- uid: 1786 + type: CableApcExtension + components: + - pos: -4.5,35.5 + parent: 55 + type: Transform +- uid: 1787 + type: CableApcExtension + components: + - pos: -5.5,35.5 + parent: 55 + type: Transform +- uid: 1788 + type: CableApcExtension + components: + - pos: -6.5,35.5 + parent: 55 + type: Transform +- uid: 1789 + type: CableApcExtension + components: + - pos: -7.5,35.5 + parent: 55 + type: Transform +- uid: 1790 + type: CableApcExtension + components: + - pos: -3.5,37.5 + parent: 55 + type: Transform +- uid: 1791 + type: CableApcExtension + components: + - pos: -4.5,37.5 + parent: 55 + type: Transform +- uid: 1792 + type: CableApcExtension + components: + - pos: -5.5,37.5 + parent: 55 + type: Transform +- uid: 1793 + type: CableApcExtension + components: + - pos: -6.5,37.5 + parent: 55 + type: Transform +- uid: 1794 + type: CableApcExtension + components: + - pos: -7.5,37.5 + parent: 55 + type: Transform +- uid: 1795 + type: CableApcExtension + components: + - pos: 24.5,30.5 + parent: 55 + type: Transform +- uid: 1796 + type: CableApcExtension + components: + - pos: 24.5,29.5 + parent: 55 + type: Transform +- uid: 1797 + type: CableApcExtension + components: + - pos: 24.5,28.5 + parent: 55 + type: Transform +- uid: 1798 + type: CableApcExtension + components: + - pos: 23.5,28.5 + parent: 55 + type: Transform +- uid: 1799 + type: CableApcExtension + components: + - pos: 22.5,28.5 + parent: 55 + type: Transform +- uid: 1800 + type: CableApcExtension + components: + - pos: 21.5,28.5 + parent: 55 + type: Transform +- uid: 1801 + type: CableApcExtension + components: + - pos: 20.5,28.5 + parent: 55 + type: Transform +- uid: 1802 + type: CableApcExtension + components: + - pos: 19.5,28.5 + parent: 55 + type: Transform +- uid: 1803 + type: CableApcExtension + components: + - pos: 18.5,28.5 + parent: 55 + type: Transform +- uid: 1804 + type: CableApcExtension + components: + - pos: 17.5,28.5 + parent: 55 + type: Transform +- uid: 1805 + type: CableApcExtension + components: + - pos: 16.5,28.5 + parent: 55 + type: Transform +- uid: 1806 + type: CableApcExtension + components: + - pos: 15.5,28.5 + parent: 55 + type: Transform +- uid: 1807 + type: CableApcExtension + components: + - pos: 21.5,27.5 + parent: 55 + type: Transform +- uid: 1808 + type: CableApcExtension + components: + - pos: 21.5,26.5 + parent: 55 + type: Transform +- uid: 1809 + type: CableApcExtension + components: + - pos: 21.5,25.5 + parent: 55 + type: Transform +- uid: 1810 + type: CableApcExtension + components: + - pos: 21.5,24.5 + parent: 55 + type: Transform +- uid: 1811 + type: CableApcExtension + components: + - pos: 21.5,23.5 + parent: 55 + type: Transform +- uid: 1812 + type: CableApcExtension + components: + - pos: 21.5,22.5 + parent: 55 + type: Transform +- uid: 1813 + type: CableApcExtension + components: + - pos: 21.5,21.5 + parent: 55 + type: Transform +- uid: 1814 + type: CableApcExtension + components: + - pos: 21.5,20.5 + parent: 55 + type: Transform +- uid: 1815 + type: CableApcExtension + components: + - pos: 21.5,19.5 + parent: 55 + type: Transform +- uid: 1816 + type: CableApcExtension + components: + - pos: 21.5,18.5 + parent: 55 + type: Transform +- uid: 1817 + type: CableApcExtension + components: + - pos: 22.5,19.5 + parent: 55 + type: Transform +- uid: 1818 + type: CableApcExtension + components: + - pos: 23.5,19.5 + parent: 55 + type: Transform +- uid: 1819 + type: CableApcExtension + components: + - pos: 24.5,19.5 + parent: 55 + type: Transform +- uid: 1820 + type: CableApcExtension + components: + - pos: 25.5,19.5 + parent: 55 + type: Transform +- uid: 1821 + type: CableApcExtension + components: + - pos: 26.5,19.5 + parent: 55 + type: Transform +- uid: 1822 + type: CableApcExtension + components: + - pos: 20.5,19.5 + parent: 55 + type: Transform +- uid: 1823 + type: CableApcExtension + components: + - pos: 19.5,19.5 + parent: 55 + type: Transform +- uid: 1824 + type: CableApcExtension + components: + - pos: 18.5,19.5 + parent: 55 + type: Transform +- uid: 1825 + type: CableApcExtension + components: + - pos: 17.5,21.5 + parent: 55 + type: Transform +- uid: 1826 + type: CableApcExtension + components: + - pos: 18.5,21.5 + parent: 55 + type: Transform +- uid: 1827 + type: CableApcExtension + components: + - pos: 19.5,21.5 + parent: 55 + type: Transform +- uid: 1828 + type: CableApcExtension + components: + - pos: 20.5,21.5 + parent: 55 + type: Transform +- uid: 1829 + type: CableApcExtension + components: + - pos: 22.5,21.5 + parent: 55 + type: Transform +- uid: 1830 + type: CableApcExtension + components: + - pos: 23.5,21.5 + parent: 55 + type: Transform +- uid: 1831 + type: CableApcExtension + components: + - pos: 24.5,21.5 + parent: 55 + type: Transform +- uid: 1832 + type: CableApcExtension + components: + - pos: 25.5,21.5 + parent: 55 + type: Transform +- uid: 1833 + type: CableApcExtension + components: + - pos: 26.5,21.5 + parent: 55 + type: Transform +- uid: 1834 + type: CableApcExtension + components: + - pos: 27.5,21.5 + parent: 55 + type: Transform +- uid: 1835 + type: CableApcExtension + components: + - pos: 28.5,21.5 + parent: 55 + type: Transform +- uid: 1836 + type: CableApcExtension + components: + - pos: 26.5,23.5 + parent: 55 + type: Transform +- uid: 1837 + type: CableApcExtension + components: + - pos: 25.5,23.5 + parent: 55 + type: Transform +- uid: 1838 + type: CableApcExtension + components: + - pos: 24.5,23.5 + parent: 55 + type: Transform +- uid: 1839 + type: CableApcExtension + components: + - pos: 23.5,23.5 + parent: 55 + type: Transform +- uid: 1840 + type: CableApcExtension + components: + - pos: 22.5,23.5 + parent: 55 + type: Transform +- uid: 1841 + type: CableApcExtension + components: + - pos: 20.5,23.5 + parent: 55 + type: Transform +- uid: 1842 + type: CableApcExtension + components: + - pos: 19.5,23.5 + parent: 55 + type: Transform +- uid: 1843 + type: CableApcExtension + components: + - pos: 18.5,23.5 + parent: 55 + type: Transform +- uid: 1844 + type: CableApcExtension + components: + - pos: 17.5,23.5 + parent: 55 + type: Transform +- uid: 1845 + type: CableApcExtension + components: + - pos: 17.5,25.5 + parent: 55 + type: Transform +- uid: 1846 + type: CableApcExtension + components: + - pos: 18.5,25.5 + parent: 55 + type: Transform +- uid: 1847 + type: CableApcExtension + components: + - pos: 19.5,25.5 + parent: 55 + type: Transform +- uid: 1848 + type: CableApcExtension + components: + - pos: 20.5,25.5 + parent: 55 + type: Transform +- uid: 1849 + type: CableApcExtension + components: + - pos: 22.5,25.5 + parent: 55 + type: Transform +- uid: 1850 + type: CableApcExtension + components: + - pos: 23.5,25.5 + parent: 55 + type: Transform +- uid: 1851 + type: CableApcExtension + components: + - pos: 24.5,25.5 + parent: 55 + type: Transform +- uid: 1852 + type: CableApcExtension + components: + - pos: 21.5,29.5 + parent: 55 + type: Transform +- uid: 1853 + type: CableApcExtension + components: + - pos: 24.5,32.5 + parent: 55 + type: Transform +- uid: 1854 + type: CableApcExtension + components: + - pos: 21.5,31.5 + parent: 55 + type: Transform +- uid: 1855 + type: CableApcExtension + components: + - pos: 22.5,31.5 + parent: 55 + type: Transform +- uid: 1856 + type: CableApcExtension + components: + - pos: 23.5,31.5 + parent: 55 + type: Transform +- uid: 1857 + type: CableApcExtension + components: + - pos: 24.5,31.5 + parent: 55 + type: Transform +- uid: 1858 + type: CableApcExtension + components: + - pos: 20.5,31.5 + parent: 55 + type: Transform +- uid: 1859 + type: CableApcExtension + components: + - pos: 19.5,31.5 + parent: 55 + type: Transform +- uid: 1860 + type: CableApcExtension + components: + - pos: 18.5,31.5 + parent: 55 + type: Transform +- uid: 1861 + type: CableApcExtension + components: + - pos: 17.5,31.5 + parent: 55 + type: Transform +- uid: 1862 + type: CableApcExtension + components: + - pos: 24.5,33.5 + parent: 55 + type: Transform +- uid: 1863 + type: CableApcExtension + components: + - pos: 25.5,33.5 + parent: 55 + type: Transform +- uid: 1864 + type: CableApcExtension + components: + - pos: 25.5,34.5 + parent: 55 + type: Transform +- uid: 1865 + type: CableApcExtension + components: + - pos: 25.5,35.5 + parent: 55 + type: Transform +- uid: 1866 + type: CableApcExtension + components: + - pos: 25.5,36.5 + parent: 55 + type: Transform +- uid: 1867 + type: CableApcExtension + components: + - pos: 25.5,37.5 + parent: 55 + type: Transform +- uid: 1868 + type: CableApcExtension + components: + - pos: 24.5,37.5 + parent: 55 + type: Transform +- uid: 1869 + type: CableApcExtension + components: + - pos: 23.5,37.5 + parent: 55 + type: Transform +- uid: 1870 + type: CableApcExtension + components: + - pos: 22.5,37.5 + parent: 55 + type: Transform +- uid: 1871 + type: CableApcExtension + components: + - pos: 21.5,37.5 + parent: 55 + type: Transform +- uid: 1872 + type: CableApcExtension + components: + - pos: 20.5,37.5 + parent: 55 + type: Transform +- uid: 1873 + type: CableApcExtension + components: + - pos: 19.5,37.5 + parent: 55 + type: Transform +- uid: 1874 + type: CableApcExtension + components: + - pos: 26.5,37.5 + parent: 55 + type: Transform +- uid: 1875 + type: CableApcExtension + components: + - pos: 27.5,37.5 + parent: 55 + type: Transform +- uid: 1876 + type: CableApcExtension + components: + - pos: 28.5,37.5 + parent: 55 + type: Transform +- uid: 1877 + type: CableApcExtension + components: + - pos: 29.5,37.5 + parent: 55 + type: Transform +- uid: 1878 + type: CableApcExtension + components: + - pos: 23.5,33.5 + parent: 55 + type: Transform +- uid: 1879 + type: CableApcExtension + components: + - pos: 22.5,33.5 + parent: 55 + type: Transform +- uid: 1880 + type: CableApcExtension + components: + - pos: 21.5,33.5 + parent: 55 + type: Transform +- uid: 1881 + type: CableApcExtension + components: + - pos: 20.5,33.5 + parent: 55 + type: Transform +- uid: 1882 + type: CableApcExtension + components: + - pos: 19.5,33.5 + parent: 55 + type: Transform +- uid: 1883 + type: CableApcExtension + components: + - pos: 18.5,33.5 + parent: 55 + type: Transform +- uid: 1884 + type: CableApcExtension + components: + - pos: 19.5,34.5 + parent: 55 + type: Transform +- uid: 1885 + type: CableApcExtension + components: + - pos: 19.5,35.5 + parent: 55 + type: Transform +- uid: 1886 + type: CableApcExtension + components: + - pos: 22.5,34.5 + parent: 55 + type: Transform +- uid: 1887 + type: CableApcExtension + components: + - pos: 23.5,36.5 + parent: 55 + type: Transform +- uid: 1888 + type: CableApcExtension + components: + - pos: 27.5,36.5 + parent: 55 + type: Transform +- uid: 1889 + type: CableApcExtension + components: + - pos: 26.5,33.5 + parent: 55 + type: Transform +- uid: 1890 + type: CableApcExtension + components: + - pos: 34.5,19.5 + parent: 55 + type: Transform +- uid: 1891 + type: CableApcExtension + components: + - pos: 33.5,19.5 + parent: 55 + type: Transform +- uid: 1892 + type: CableApcExtension + components: + - pos: 32.5,19.5 + parent: 55 + type: Transform +- uid: 1893 + type: CableApcExtension + components: + - pos: 32.5,18.5 + parent: 55 + type: Transform +- uid: 1894 + type: CableApcExtension + components: + - pos: 32.5,17.5 + parent: 55 + type: Transform +- uid: 1895 + type: CableApcExtension + components: + - pos: 32.5,16.5 + parent: 55 + type: Transform +- uid: 1896 + type: CableApcExtension + components: + - pos: 32.5,15.5 + parent: 55 + type: Transform +- uid: 1897 + type: CableApcExtension + components: + - pos: 32.5,14.5 + parent: 55 + type: Transform +- uid: 1898 + type: CableApcExtension + components: + - pos: 33.5,14.5 + parent: 55 + type: Transform +- uid: 1899 + type: CableApcExtension + components: + - pos: 34.5,14.5 + parent: 55 + type: Transform +- uid: 1900 + type: CableApcExtension + components: + - pos: 35.5,14.5 + parent: 55 + type: Transform +- uid: 1901 + type: CableApcExtension + components: + - pos: 36.5,14.5 + parent: 55 + type: Transform +- uid: 1902 + type: CableApcExtension + components: + - pos: 37.5,14.5 + parent: 55 + type: Transform +- uid: 1903 + type: CableApcExtension + components: + - pos: 38.5,14.5 + parent: 55 + type: Transform +- uid: 1904 + type: CableApcExtension + components: + - pos: 39.5,14.5 + parent: 55 + type: Transform +- uid: 1905 + type: CableApcExtension + components: + - pos: 40.5,14.5 + parent: 55 + type: Transform +- uid: 1906 + type: CableApcExtension + components: + - pos: 41.5,14.5 + parent: 55 + type: Transform +- uid: 1907 + type: CableApcExtension + components: + - pos: 42.5,14.5 + parent: 55 + type: Transform +- uid: 1908 + type: CableApcExtension + components: + - pos: 43.5,14.5 + parent: 55 + type: Transform +- uid: 1909 + type: CableApcExtension + components: + - pos: 44.5,14.5 + parent: 55 + type: Transform +- uid: 1910 + type: CableApcExtension + components: + - pos: 31.5,14.5 + parent: 55 + type: Transform +- uid: 1911 + type: CableApcExtension + components: + - pos: 30.5,14.5 + parent: 55 + type: Transform +- uid: 1912 + type: CableApcExtension + components: + - pos: 29.5,14.5 + parent: 55 + type: Transform +- uid: 1913 + type: CableApcExtension + components: + - pos: 28.5,14.5 + parent: 55 + type: Transform +- uid: 1914 + type: CableApcExtension + components: + - pos: 27.5,14.5 + parent: 55 + type: Transform +- uid: 1915 + type: CableApcExtension + components: + - pos: 26.5,14.5 + parent: 55 + type: Transform +- uid: 1916 + type: CableApcExtension + components: + - pos: 25.5,14.5 + parent: 55 + type: Transform +- uid: 1917 + type: CableApcExtension + components: + - pos: 24.5,14.5 + parent: 55 + type: Transform +- uid: 1918 + type: CableApcExtension + components: + - pos: 23.5,14.5 + parent: 55 + type: Transform +- uid: 1919 + type: CableApcExtension + components: + - pos: 22.5,14.5 + parent: 55 + type: Transform +- uid: 1920 + type: CableApcExtension + components: + - pos: 21.5,14.5 + parent: 55 + type: Transform +- uid: 1921 + type: CableApcExtension + components: + - pos: 20.5,14.5 + parent: 55 + type: Transform +- uid: 1922 + type: CableApcExtension + components: + - pos: 31.5,16.5 + parent: 55 + type: Transform +- uid: 1923 + type: CableApcExtension + components: + - pos: 30.5,16.5 + parent: 55 + type: Transform +- uid: 1924 + type: CableApcExtension + components: + - pos: 29.5,16.5 + parent: 55 + type: Transform +- uid: 1925 + type: CableApcExtension + components: + - pos: 28.5,16.5 + parent: 55 + type: Transform +- uid: 1926 + type: CableApcExtension + components: + - pos: 27.5,16.5 + parent: 55 + type: Transform +- uid: 1927 + type: CableApcExtension + components: + - pos: 26.5,16.5 + parent: 55 + type: Transform +- uid: 1928 + type: CableApcExtension + components: + - pos: 25.5,16.5 + parent: 55 + type: Transform +- uid: 1929 + type: CableApcExtension + components: + - pos: 24.5,16.5 + parent: 55 + type: Transform +- uid: 1930 + type: CableApcExtension + components: + - pos: 23.5,16.5 + parent: 55 + type: Transform +- uid: 1931 + type: CableApcExtension + components: + - pos: 22.5,16.5 + parent: 55 + type: Transform +- uid: 1932 + type: CableApcExtension + components: + - pos: 21.5,16.5 + parent: 55 + type: Transform +- uid: 1933 + type: CableApcExtension + components: + - pos: 20.5,16.5 + parent: 55 + type: Transform +- uid: 1934 + type: CableApcExtension + components: + - pos: 19.5,16.5 + parent: 55 + type: Transform +- uid: 1935 + type: CableApcExtension + components: + - pos: 33.5,16.5 + parent: 55 + type: Transform +- uid: 1936 + type: CableApcExtension + components: + - pos: 34.5,16.5 + parent: 55 + type: Transform +- uid: 1937 + type: CableApcExtension + components: + - pos: 35.5,16.5 + parent: 55 + type: Transform +- uid: 1938 + type: CableApcExtension + components: + - pos: 36.5,16.5 + parent: 55 + type: Transform +- uid: 1939 + type: CableApcExtension + components: + - pos: 37.5,16.5 + parent: 55 + type: Transform +- uid: 1940 + type: CableApcExtension + components: + - pos: 38.5,16.5 + parent: 55 + type: Transform +- uid: 1941 + type: CableApcExtension + components: + - pos: 39.5,16.5 + parent: 55 + type: Transform +- uid: 1942 + type: CableApcExtension + components: + - pos: 40.5,16.5 + parent: 55 + type: Transform +- uid: 1943 + type: CableApcExtension + components: + - pos: 41.5,16.5 + parent: 55 + type: Transform +- uid: 1944 + type: CableApcExtension + components: + - pos: 42.5,16.5 + parent: 55 + type: Transform +- uid: 1945 + type: CableApcExtension + components: + - pos: 43.5,16.5 + parent: 55 + type: Transform +- uid: 1946 + type: CableApcExtension + components: + - pos: 44.5,16.5 + parent: 55 + type: Transform +- uid: 1947 + type: CableApcExtension + components: + - pos: 45.5,16.5 + parent: 55 + type: Transform +- uid: 1948 + type: CableApcExtension + components: + - pos: 34.5,18.5 + parent: 55 + type: Transform +- uid: 1949 + type: CableApcExtension + components: + - pos: 35.5,18.5 + parent: 55 + type: Transform +- uid: 1950 + type: CableApcExtension + components: + - pos: 36.5,18.5 + parent: 55 + type: Transform +- uid: 1951 + type: CableApcExtension + components: + - pos: 31.5,18.5 + parent: 55 + type: Transform +- uid: 1952 + type: CableApcExtension + components: + - pos: 30.5,18.5 + parent: 55 + type: Transform +- uid: 1953 + type: CableApcExtension + components: + - pos: 29.5,18.5 + parent: 55 + type: Transform +- uid: 1954 + type: CableApcExtension + components: + - pos: 28.5,18.5 + parent: 55 + type: Transform +- uid: 1955 + type: CableApcExtension + components: + - pos: 32.5,20.5 + parent: 55 + type: Transform +- uid: 1956 + type: CableApcExtension + components: + - pos: 32.5,21.5 + parent: 55 + type: Transform +- uid: 1957 + type: CableApcExtension + components: + - pos: 32.5,22.5 + parent: 55 + type: Transform +- uid: 1958 + type: CableApcExtension + components: + - pos: 32.5,23.5 + parent: 55 + type: Transform +- uid: 1959 + type: CableApcExtension + components: + - pos: 32.5,24.5 + parent: 55 + type: Transform +- uid: 1960 + type: CableApcExtension + components: + - pos: 32.5,25.5 + parent: 55 + type: Transform +- uid: 1961 + type: CableApcExtension + components: + - pos: 32.5,26.5 + parent: 55 + type: Transform +- uid: 1962 + type: CableApcExtension + components: + - pos: 32.5,27.5 + parent: 55 + type: Transform +- uid: 1963 + type: CableApcExtension + components: + - pos: 32.5,28.5 + parent: 55 + type: Transform +- uid: 1964 + type: CableApcExtension + components: + - pos: 32.5,29.5 + parent: 55 + type: Transform +- uid: 1965 + type: CableApcExtension + components: + - pos: 32.5,30.5 + parent: 55 + type: Transform +- uid: 1966 + type: CableApcExtension + components: + - pos: 32.5,31.5 + parent: 55 + type: Transform +- uid: 1967 + type: CableApcExtension + components: + - pos: 32.5,32.5 + parent: 55 + type: Transform +- uid: 1968 + type: CableApcExtension + components: + - pos: 32.5,33.5 + parent: 55 + type: Transform +- uid: 1969 + type: CableApcExtension + components: + - pos: 32.5,34.5 + parent: 55 + type: Transform +- uid: 1970 + type: CableApcExtension + components: + - pos: 33.5,33.5 + parent: 55 + type: Transform +- uid: 1971 + type: CableApcExtension + components: + - pos: 34.5,33.5 + parent: 55 + type: Transform +- uid: 1972 + type: CableApcExtension + components: + - pos: 35.5,33.5 + parent: 55 + type: Transform +- uid: 1973 + type: CableApcExtension + components: + - pos: 31.5,33.5 + parent: 55 + type: Transform +- uid: 1974 + type: CableApcExtension + components: + - pos: 30.5,33.5 + parent: 55 + type: Transform +- uid: 1975 + type: CableApcExtension + components: + - pos: 29.5,33.5 + parent: 55 + type: Transform +- uid: 1976 + type: CableApcExtension + components: + - pos: 27.5,31.5 + parent: 55 + type: Transform +- uid: 1977 + type: CableApcExtension + components: + - pos: 28.5,31.5 + parent: 55 + type: Transform +- uid: 1978 + type: CableApcExtension + components: + - pos: 29.5,31.5 + parent: 55 + type: Transform +- uid: 1979 + type: CableApcExtension + components: + - pos: 30.5,31.5 + parent: 55 + type: Transform +- uid: 1980 + type: CableApcExtension + components: + - pos: 31.5,31.5 + parent: 55 + type: Transform +- uid: 1981 + type: CableApcExtension + components: + - pos: 33.5,31.5 + parent: 55 + type: Transform +- uid: 1982 + type: CableApcExtension + components: + - pos: 34.5,31.5 + parent: 55 + type: Transform +- uid: 1983 + type: CableApcExtension + components: + - pos: 35.5,31.5 + parent: 55 + type: Transform +- uid: 1984 + type: CableApcExtension + components: + - pos: 36.5,31.5 + parent: 55 + type: Transform +- uid: 1985 + type: CableApcExtension + components: + - pos: 37.5,31.5 + parent: 55 + type: Transform +- uid: 1986 + type: CableApcExtension + components: + - pos: 33.5,29.5 + parent: 55 + type: Transform +- uid: 1987 + type: CableApcExtension + components: + - pos: 34.5,29.5 + parent: 55 + type: Transform +- uid: 1988 + type: CableApcExtension + components: + - pos: 35.5,29.5 + parent: 55 + type: Transform +- uid: 1989 + type: CableApcExtension + components: + - pos: 36.5,29.5 + parent: 55 + type: Transform +- uid: 1990 + type: CableApcExtension + components: + - pos: 37.5,29.5 + parent: 55 + type: Transform +- uid: 1991 + type: CableApcExtension + components: + - pos: 38.5,29.5 + parent: 55 + type: Transform +- uid: 1992 + type: CableApcExtension + components: + - pos: 31.5,29.5 + parent: 55 + type: Transform +- uid: 1993 + type: CableApcExtension + components: + - pos: 30.5,29.5 + parent: 55 + type: Transform +- uid: 1994 + type: CableApcExtension + components: + - pos: 29.5,29.5 + parent: 55 + type: Transform +- uid: 1995 + type: CableApcExtension + components: + - pos: 28.5,29.5 + parent: 55 + type: Transform +- uid: 1996 + type: CableApcExtension + components: + - pos: 27.5,29.5 + parent: 55 + type: Transform +- uid: 1997 + type: CableApcExtension + components: + - pos: 26.5,29.5 + parent: 55 + type: Transform +- uid: 1998 + type: CableApcExtension + components: + - pos: 26.5,27.5 + parent: 55 + type: Transform +- uid: 1999 + type: CableApcExtension + components: + - pos: 27.5,27.5 + parent: 55 + type: Transform +- uid: 2000 + type: CableApcExtension + components: + - pos: 28.5,27.5 + parent: 55 + type: Transform +- uid: 2001 + type: CableApcExtension + components: + - pos: 29.5,27.5 + parent: 55 + type: Transform +- uid: 2002 + type: CableApcExtension + components: + - pos: 30.5,27.5 + parent: 55 + type: Transform +- uid: 2003 + type: CableApcExtension + components: + - pos: 31.5,27.5 + parent: 55 + type: Transform +- uid: 2004 + type: CableApcExtension + components: + - pos: 33.5,27.5 + parent: 55 + type: Transform +- uid: 2005 + type: CableApcExtension + components: + - pos: 34.5,27.5 + parent: 55 + type: Transform +- uid: 2006 + type: CableApcExtension + components: + - pos: 35.5,27.5 + parent: 55 + type: Transform +- uid: 2007 + type: CableApcExtension + components: + - pos: 36.5,27.5 + parent: 55 + type: Transform +- uid: 2008 + type: CableApcExtension + components: + - pos: 37.5,27.5 + parent: 55 + type: Transform +- uid: 2009 + type: CableApcExtension + components: + - pos: 38.5,27.5 + parent: 55 + type: Transform +- uid: 2010 + type: CableApcExtension + components: + - pos: 33.5,25.5 + parent: 55 + type: Transform +- uid: 2011 + type: CableApcExtension + components: + - pos: 34.5,25.5 + parent: 55 + type: Transform +- uid: 2012 + type: CableApcExtension + components: + - pos: 35.5,25.5 + parent: 55 + type: Transform +- uid: 2013 + type: CableApcExtension + components: + - pos: 36.5,25.5 + parent: 55 + type: Transform +- uid: 2014 + type: CableApcExtension + components: + - pos: 37.5,25.5 + parent: 55 + type: Transform +- uid: 2015 + type: CableApcExtension + components: + - pos: 31.5,25.5 + parent: 55 + type: Transform +- uid: 2016 + type: CableApcExtension + components: + - pos: 30.5,25.5 + parent: 55 + type: Transform +- uid: 2017 + type: CableApcExtension + components: + - pos: 29.5,25.5 + parent: 55 + type: Transform +- uid: 2018 + type: CableApcExtension + components: + - pos: 28.5,25.5 + parent: 55 + type: Transform +- uid: 2019 + type: CableApcExtension + components: + - pos: 27.5,25.5 + parent: 55 + type: Transform +- uid: 2020 + type: CableApcExtension + components: + - pos: 29.5,23.5 + parent: 55 + type: Transform +- uid: 2021 + type: CableApcExtension + components: + - pos: 30.5,23.5 + parent: 55 + type: Transform +- uid: 2022 + type: CableApcExtension + components: + - pos: 31.5,23.5 + parent: 55 + type: Transform +- uid: 2023 + type: CableApcExtension + components: + - pos: 33.5,23.5 + parent: 55 + type: Transform +- uid: 2024 + type: CableApcExtension + components: + - pos: 34.5,23.5 + parent: 55 + type: Transform +- uid: 2025 + type: CableApcExtension + components: + - pos: 35.5,23.5 + parent: 55 + type: Transform +- uid: 2026 + type: CableApcExtension + components: + - pos: 33.5,21.5 + parent: 55 + type: Transform +- uid: 2027 + type: CableApcExtension + components: + - pos: 31.5,21.5 + parent: 55 + type: Transform +- uid: 2028 + type: CableApcExtension + components: + - pos: 34.5,44.5 + parent: 55 + type: Transform +- uid: 2029 + type: CableApcExtension + components: + - pos: 33.5,44.5 + parent: 55 + type: Transform +- uid: 2030 + type: CableApcExtension + components: + - pos: 32.5,44.5 + parent: 55 + type: Transform +- uid: 2031 + type: CableApcExtension + components: + - pos: 32.5,43.5 + parent: 55 + type: Transform +- uid: 2032 + type: CableApcExtension + components: + - pos: 32.5,42.5 + parent: 55 + type: Transform +- uid: 2033 + type: CableApcExtension + components: + - pos: 32.5,41.5 + parent: 55 + type: Transform +- uid: 2034 + type: CableApcExtension + components: + - pos: 32.5,40.5 + parent: 55 + type: Transform +- uid: 2035 + type: CableApcExtension + components: + - pos: 32.5,39.5 + parent: 55 + type: Transform +- uid: 2036 + type: CableApcExtension + components: + - pos: 32.5,38.5 + parent: 55 + type: Transform +- uid: 2037 + type: CableApcExtension + components: + - pos: 32.5,37.5 + parent: 55 + type: Transform +- uid: 2038 + type: CableApcExtension + components: + - pos: 32.5,36.5 + parent: 55 + type: Transform +- uid: 2039 + type: CableApcExtension + components: + - pos: 32.5,45.5 + parent: 55 + type: Transform +- uid: 2040 + type: CableApcExtension + components: + - pos: 32.5,46.5 + parent: 55 + type: Transform +- uid: 2041 + type: CableApcExtension + components: + - pos: 32.5,47.5 + parent: 55 + type: Transform +- uid: 2042 + type: CableApcExtension + components: + - pos: 32.5,48.5 + parent: 55 + type: Transform +- uid: 2043 + type: CableApcExtension + components: + - pos: 32.5,49.5 + parent: 55 + type: Transform +- uid: 2044 + type: CableApcExtension + components: + - pos: 32.5,50.5 + parent: 55 + type: Transform +- uid: 2045 + type: CableApcExtension + components: + - pos: 32.5,51.5 + parent: 55 + type: Transform +- uid: 2046 + type: CableApcExtension + components: + - pos: 32.5,52.5 + parent: 55 + type: Transform +- uid: 2047 + type: CableApcExtension + components: + - pos: 32.5,53.5 + parent: 55 + type: Transform +- uid: 2048 + type: CableApcExtension + components: + - pos: 32.5,54.5 + parent: 55 + type: Transform +- uid: 2049 + type: CableApcExtension + components: + - pos: 32.5,55.5 + parent: 55 + type: Transform +- uid: 2050 + type: CableApcExtension + components: + - pos: 31.5,54.5 + parent: 55 + type: Transform +- uid: 2051 + type: CableApcExtension + components: + - pos: 30.5,54.5 + parent: 55 + type: Transform +- uid: 2052 + type: CableApcExtension + components: + - pos: 29.5,54.5 + parent: 55 + type: Transform +- uid: 2053 + type: CableApcExtension + components: + - pos: 28.5,54.5 + parent: 55 + type: Transform +- uid: 2054 + type: CableApcExtension + components: + - pos: 27.5,54.5 + parent: 55 + type: Transform +- uid: 2055 + type: CableApcExtension + components: + - pos: 26.5,54.5 + parent: 55 + type: Transform +- uid: 2056 + type: CableApcExtension + components: + - pos: 33.5,54.5 + parent: 55 + type: Transform +- uid: 2057 + type: CableApcExtension + components: + - pos: 34.5,54.5 + parent: 55 + type: Transform +- uid: 2058 + type: CableApcExtension + components: + - pos: 35.5,54.5 + parent: 55 + type: Transform +- uid: 2059 + type: CableApcExtension + components: + - pos: 36.5,54.5 + parent: 55 + type: Transform +- uid: 2060 + type: CableApcExtension + components: + - pos: 37.5,54.5 + parent: 55 + type: Transform +- uid: 2061 + type: CableApcExtension + components: + - pos: 38.5,54.5 + parent: 55 + type: Transform +- uid: 2062 + type: CableApcExtension + components: + - pos: 44.5,52.5 + parent: 55 + type: Transform +- uid: 2063 + type: CableApcExtension + components: + - pos: 43.5,52.5 + parent: 55 + type: Transform +- uid: 2064 + type: CableApcExtension + components: + - pos: 42.5,52.5 + parent: 55 + type: Transform +- uid: 2065 + type: CableApcExtension + components: + - pos: 41.5,52.5 + parent: 55 + type: Transform +- uid: 2066 + type: CableApcExtension + components: + - pos: 40.5,52.5 + parent: 55 + type: Transform +- uid: 2067 + type: CableApcExtension + components: + - pos: 39.5,52.5 + parent: 55 + type: Transform +- uid: 2068 + type: CableApcExtension + components: + - pos: 38.5,52.5 + parent: 55 + type: Transform +- uid: 2069 + type: CableApcExtension + components: + - pos: 37.5,52.5 + parent: 55 + type: Transform +- uid: 2070 + type: CableApcExtension + components: + - pos: 36.5,52.5 + parent: 55 + type: Transform +- uid: 2071 + type: CableApcExtension + components: + - pos: 35.5,52.5 + parent: 55 + type: Transform +- uid: 2072 + type: CableApcExtension + components: + - pos: 34.5,52.5 + parent: 55 + type: Transform +- uid: 2073 + type: CableApcExtension + components: + - pos: 33.5,52.5 + parent: 55 + type: Transform +- uid: 2074 + type: CableApcExtension + components: + - pos: 31.5,52.5 + parent: 55 + type: Transform +- uid: 2075 + type: CableApcExtension + components: + - pos: 30.5,52.5 + parent: 55 + type: Transform +- uid: 2076 + type: CableApcExtension + components: + - pos: 29.5,52.5 + parent: 55 + type: Transform +- uid: 2077 + type: CableApcExtension + components: + - pos: 28.5,52.5 + parent: 55 + type: Transform +- uid: 2078 + type: CableApcExtension + components: + - pos: 27.5,52.5 + parent: 55 + type: Transform +- uid: 2079 + type: CableApcExtension + components: + - pos: 26.5,52.5 + parent: 55 + type: Transform +- uid: 2080 + type: CableApcExtension + components: + - pos: 25.5,52.5 + parent: 55 + type: Transform +- uid: 2081 + type: CableApcExtension + components: + - pos: 24.5,52.5 + parent: 55 + type: Transform +- uid: 2082 + type: CableApcExtension + components: + - pos: 23.5,52.5 + parent: 55 + type: Transform +- uid: 2083 + type: CableApcExtension + components: + - pos: 22.5,52.5 + parent: 55 + type: Transform +- uid: 2084 + type: CableApcExtension + components: + - pos: 21.5,52.5 + parent: 55 + type: Transform +- uid: 2085 + type: CableApcExtension + components: + - pos: 20.5,52.5 + parent: 55 + type: Transform +- uid: 2086 + type: CableApcExtension + components: + - pos: 19.5,50.5 + parent: 55 + type: Transform +- uid: 2087 + type: CableApcExtension + components: + - pos: 20.5,50.5 + parent: 55 + type: Transform +- uid: 2088 + type: CableApcExtension + components: + - pos: 21.5,50.5 + parent: 55 + type: Transform +- uid: 2089 + type: CableApcExtension + components: + - pos: 22.5,50.5 + parent: 55 + type: Transform +- uid: 2090 + type: CableApcExtension + components: + - pos: 23.5,50.5 + parent: 55 + type: Transform +- uid: 2091 + type: CableApcExtension + components: + - pos: 24.5,50.5 + parent: 55 + type: Transform +- uid: 2092 + type: CableApcExtension + components: + - pos: 25.5,50.5 + parent: 55 + type: Transform +- uid: 2093 + type: CableApcExtension + components: + - pos: 26.5,50.5 + parent: 55 + type: Transform +- uid: 2094 + type: CableApcExtension + components: + - pos: 27.5,50.5 + parent: 55 + type: Transform +- uid: 2095 + type: CableApcExtension + components: + - pos: 28.5,50.5 + parent: 55 + type: Transform +- uid: 2096 + type: CableApcExtension + components: + - pos: 29.5,50.5 + parent: 55 + type: Transform +- uid: 2097 + type: CableApcExtension + components: + - pos: 30.5,50.5 + parent: 55 + type: Transform +- uid: 2098 + type: CableApcExtension + components: + - pos: 31.5,50.5 + parent: 55 + type: Transform +- uid: 2099 + type: CableApcExtension + components: + - pos: 33.5,50.5 + parent: 55 + type: Transform +- uid: 2100 + type: CableApcExtension + components: + - pos: 34.5,50.5 + parent: 55 + type: Transform +- uid: 2101 + type: CableApcExtension + components: + - pos: 35.5,50.5 + parent: 55 + type: Transform +- uid: 2102 + type: CableApcExtension + components: + - pos: 36.5,50.5 + parent: 55 + type: Transform +- uid: 2103 + type: CableApcExtension + components: + - pos: 37.5,50.5 + parent: 55 + type: Transform +- uid: 2104 + type: CableApcExtension + components: + - pos: 38.5,50.5 + parent: 55 + type: Transform +- uid: 2105 + type: CableApcExtension + components: + - pos: 39.5,50.5 + parent: 55 + type: Transform +- uid: 2106 + type: CableApcExtension + components: + - pos: 40.5,50.5 + parent: 55 + type: Transform +- uid: 2107 + type: CableApcExtension + components: + - pos: 41.5,50.5 + parent: 55 + type: Transform +- uid: 2108 + type: CableApcExtension + components: + - pos: 42.5,50.5 + parent: 55 + type: Transform +- uid: 2109 + type: CableApcExtension + components: + - pos: 43.5,50.5 + parent: 55 + type: Transform +- uid: 2110 + type: CableApcExtension + components: + - pos: 44.5,50.5 + parent: 55 + type: Transform +- uid: 2111 + type: CableApcExtension + components: + - pos: 45.5,50.5 + parent: 55 + type: Transform +- uid: 2112 + type: CableApcExtension + components: + - pos: 39.5,48.5 + parent: 55 + type: Transform +- uid: 2113 + type: CableApcExtension + components: + - pos: 38.5,48.5 + parent: 55 + type: Transform +- uid: 2114 + type: CableApcExtension + components: + - pos: 37.5,48.5 + parent: 55 + type: Transform +- uid: 2115 + type: CableApcExtension + components: + - pos: 36.5,48.5 + parent: 55 + type: Transform +- uid: 2116 + type: CableApcExtension + components: + - pos: 35.5,48.5 + parent: 55 + type: Transform +- uid: 2117 + type: CableApcExtension + components: + - pos: 34.5,48.5 + parent: 55 + type: Transform +- uid: 2118 + type: CableApcExtension + components: + - pos: 33.5,48.5 + parent: 55 + type: Transform +- uid: 2119 + type: CableApcExtension + components: + - pos: 31.5,48.5 + parent: 55 + type: Transform +- uid: 2120 + type: CableApcExtension + components: + - pos: 30.5,48.5 + parent: 55 + type: Transform +- uid: 2121 + type: CableApcExtension + components: + - pos: 29.5,48.5 + parent: 55 + type: Transform +- uid: 2122 + type: CableApcExtension + components: + - pos: 28.5,48.5 + parent: 55 + type: Transform +- uid: 2123 + type: CableApcExtension + components: + - pos: 27.5,48.5 + parent: 55 + type: Transform +- uid: 2124 + type: CableApcExtension + components: + - pos: 26.5,48.5 + parent: 55 + type: Transform +- uid: 2125 + type: CableApcExtension + components: + - pos: 25.5,48.5 + parent: 55 + type: Transform +- uid: 2126 + type: CableApcExtension + components: + - pos: 35.5,44.5 + parent: 55 + type: Transform +- uid: 2127 + type: CableApcExtension + components: + - pos: 36.5,44.5 + parent: 55 + type: Transform +- uid: 2128 + type: CableApcExtension + components: + - pos: 36.5,43.5 + parent: 55 + type: Transform +- uid: 2129 + type: CableApcExtension + components: + - pos: 36.5,42.5 + parent: 55 + type: Transform +- uid: 2130 + type: CableApcExtension + components: + - pos: 36.5,41.5 + parent: 55 + type: Transform +- uid: 2131 + type: CableApcExtension + components: + - pos: 37.5,43.5 + parent: 55 + type: Transform +- uid: 2132 + type: CableApcExtension + components: + - pos: 38.5,43.5 + parent: 55 + type: Transform +- uid: 2133 + type: CableApcExtension + components: + - pos: 39.5,43.5 + parent: 55 + type: Transform +- uid: 2134 + type: CableApcExtension + components: + - pos: 40.5,43.5 + parent: 55 + type: Transform +- uid: 2135 + type: CableApcExtension + components: + - pos: 41.5,43.5 + parent: 55 + type: Transform +- uid: 2136 + type: CableApcExtension + components: + - pos: 42.5,43.5 + parent: 55 + type: Transform +- uid: 2137 + type: CableApcExtension + components: + - pos: 43.5,43.5 + parent: 55 + type: Transform +- uid: 2138 + type: CableApcExtension + components: + - pos: 44.5,43.5 + parent: 55 + type: Transform +- uid: 2139 + type: CableApcExtension + components: + - pos: 40.5,44.5 + parent: 55 + type: Transform +- uid: 2140 + type: CableApcExtension + components: + - pos: 40.5,45.5 + parent: 55 + type: Transform +- uid: 2141 + type: CableApcExtension + components: + - pos: 44.5,44.5 + parent: 55 + type: Transform +- uid: 2142 + type: CableApcExtension + components: + - pos: 44.5,45.5 + parent: 55 + type: Transform +- uid: 2143 + type: CableApcExtension + components: + - pos: 44.5,46.5 + parent: 55 + type: Transform +- uid: 2144 + type: CableApcExtension + components: + - pos: 44.5,47.5 + parent: 55 + type: Transform +- uid: 2145 + type: CableApcExtension + components: + - pos: 40.5,46.5 + parent: 55 + type: Transform +- uid: 2146 + type: CableApcExtension + components: + - pos: 40.5,42.5 + parent: 55 + type: Transform +- uid: 2147 + type: CableApcExtension + components: + - pos: 40.5,41.5 + parent: 55 + type: Transform +- uid: 2148 + type: CableApcExtension + components: + - pos: 40.5,40.5 + parent: 55 + type: Transform +- uid: 2149 + type: CableApcExtension + components: + - pos: 44.5,42.5 + parent: 55 + type: Transform +- uid: 2150 + type: CableApcExtension + components: + - pos: 44.5,41.5 + parent: 55 + type: Transform +- uid: 2151 + type: CableApcExtension + components: + - pos: 44.5,40.5 + parent: 55 + type: Transform +- uid: 2152 + type: CableApcExtension + components: + - pos: 36.5,40.5 + parent: 55 + type: Transform +- uid: 2153 + type: CableApcExtension + components: + - pos: 36.5,45.5 + parent: 55 + type: Transform +- uid: 2154 + type: CableApcExtension + components: + - pos: 34.5,45.5 + parent: 55 + type: Transform +- uid: 2155 + type: CableApcExtension + components: + - pos: 35.5,42.5 + parent: 55 + type: Transform +- uid: 2156 + type: CableApcExtension + components: + - pos: 31.5,42.5 + parent: 55 + type: Transform +- uid: 2157 + type: CableApcExtension + components: + - pos: 30.5,42.5 + parent: 55 + type: Transform +- uid: 2158 + type: CableApcExtension + components: + - pos: 29.5,42.5 + parent: 55 + type: Transform +- uid: 2159 + type: CableApcExtension + components: + - pos: 28.5,42.5 + parent: 55 + type: Transform +- uid: 2160 + type: CableApcExtension + components: + - pos: 27.5,42.5 + parent: 55 + type: Transform +- uid: 2161 + type: CableApcExtension + components: + - pos: 26.5,42.5 + parent: 55 + type: Transform +- uid: 2162 + type: CableApcExtension + components: + - pos: 25.5,42.5 + parent: 55 + type: Transform +- uid: 2163 + type: CableApcExtension + components: + - pos: 27.5,41.5 + parent: 55 + type: Transform +- uid: 2164 + type: CableApcExtension + components: + - pos: 27.5,40.5 + parent: 55 + type: Transform +- uid: 2165 + type: CableApcExtension + components: + - pos: 26.5,40.5 + parent: 55 + type: Transform +- uid: 2166 + type: CableApcExtension + components: + - pos: 25.5,40.5 + parent: 55 + type: Transform +- uid: 2167 + type: CableApcExtension + components: + - pos: 28.5,40.5 + parent: 55 + type: Transform +- uid: 2168 + type: CableApcExtension + components: + - pos: 29.5,40.5 + parent: 55 + type: Transform +- uid: 2169 + type: CableApcExtension + components: + - pos: 27.5,43.5 + parent: 55 + type: Transform +- uid: 2170 + type: CableApcExtension + components: + - pos: 27.5,44.5 + parent: 55 + type: Transform +- uid: 2171 + type: CableApcExtension + components: + - pos: 28.5,44.5 + parent: 55 + type: Transform +- uid: 2172 + type: CableApcExtension + components: + - pos: 29.5,44.5 + parent: 55 + type: Transform +- uid: 2173 + type: CableApcExtension + components: + - pos: 26.5,44.5 + parent: 55 + type: Transform +- uid: 2174 + type: CableApcExtension + components: + - pos: 25.5,44.5 + parent: 55 + type: Transform +- uid: 2175 + type: CableApcExtension + components: + - pos: 27.5,45.5 + parent: 55 + type: Transform +- uid: 2176 + type: CableApcExtension + components: + - pos: 24.5,44.5 + parent: 55 + type: Transform +- uid: 2177 + type: CableApcExtension + components: + - pos: 23.5,44.5 + parent: 55 + type: Transform +- uid: 2178 + type: CableApcExtension + components: + - pos: 22.5,44.5 + parent: 55 + type: Transform +- uid: 2179 + type: CableApcExtension + components: + - pos: 21.5,44.5 + parent: 55 + type: Transform +- uid: 2180 + type: CableApcExtension + components: + - pos: 20.5,44.5 + parent: 55 + type: Transform +- uid: 2181 + type: CableApcExtension + components: + - pos: 19.5,44.5 + parent: 55 + type: Transform +- uid: 2182 + type: CableApcExtension + components: + - pos: 21.5,43.5 + parent: 55 + type: Transform +- uid: 2183 + type: CableApcExtension + components: + - pos: 21.5,42.5 + parent: 55 + type: Transform +- uid: 2184 + type: CableApcExtension + components: + - pos: 21.5,41.5 + parent: 55 + type: Transform +- uid: 2185 + type: CableApcExtension + components: + - pos: 21.5,40.5 + parent: 55 + type: Transform +- uid: 2186 + type: CableApcExtension + components: + - pos: 21.5,45.5 + parent: 55 + type: Transform +- uid: 2187 + type: CableApcExtension + components: + - pos: 21.5,46.5 + parent: 55 + type: Transform +- uid: 2188 + type: CableApcExtension + components: + - pos: 21.5,47.5 + parent: 55 + type: Transform +- uid: 2189 + type: CableApcExtension + components: + - pos: 22.5,46.5 + parent: 55 + type: Transform +- uid: 2190 + type: CableApcExtension + components: + - pos: 23.5,46.5 + parent: 55 + type: Transform +- uid: 2191 + type: CableApcExtension + components: + - pos: 20.5,46.5 + parent: 55 + type: Transform +- uid: 2192 + type: CableApcExtension + components: + - pos: 19.5,46.5 + parent: 55 + type: Transform +- uid: 2193 + type: CableApcExtension + components: + - pos: 19.5,42.5 + parent: 55 + type: Transform +- uid: 2194 + type: CableApcExtension + components: + - pos: 20.5,42.5 + parent: 55 + type: Transform +- uid: 2195 + type: CableApcExtension + components: + - pos: 22.5,42.5 + parent: 55 + type: Transform +- uid: 2196 + type: CableApcExtension + components: + - pos: 23.5,42.5 + parent: 55 + type: Transform +- uid: 2197 + type: CableApcExtension + components: + - pos: 23.5,40.5 + parent: 55 + type: Transform +- uid: 2198 + type: CableApcExtension + components: + - pos: 22.5,40.5 + parent: 55 + type: Transform +- uid: 2199 + type: CableApcExtension + components: + - pos: 20.5,40.5 + parent: 55 + type: Transform +- uid: 2200 + type: CableApcExtension + components: + - pos: 19.5,40.5 + parent: 55 + type: Transform +- uid: 2201 + type: CableApcExtension + components: + - pos: 40.5,30.5 + parent: 55 + type: Transform +- uid: 2202 + type: CableApcExtension + components: + - pos: 40.5,29.5 + parent: 55 + type: Transform +- uid: 2203 + type: CableApcExtension + components: + - pos: 40.5,28.5 + parent: 55 + type: Transform +- uid: 2204 + type: CableApcExtension + components: + - pos: 41.5,28.5 + parent: 55 + type: Transform +- uid: 2205 + type: CableApcExtension + components: + - pos: 42.5,28.5 + parent: 55 + type: Transform +- uid: 2206 + type: CableApcExtension + components: + - pos: 43.5,28.5 + parent: 55 + type: Transform +- uid: 2207 + type: CableApcExtension + components: + - pos: 44.5,28.5 + parent: 55 + type: Transform +- uid: 2208 + type: CableApcExtension + components: + - pos: 45.5,28.5 + parent: 55 + type: Transform +- uid: 2209 + type: CableApcExtension + components: + - pos: 46.5,28.5 + parent: 55 + type: Transform +- uid: 2210 + type: CableApcExtension + components: + - pos: 47.5,28.5 + parent: 55 + type: Transform +- uid: 2211 + type: CableApcExtension + components: + - pos: 48.5,28.5 + parent: 55 + type: Transform +- uid: 2212 + type: CableApcExtension + components: + - pos: 49.5,28.5 + parent: 55 + type: Transform +- uid: 2213 + type: CableApcExtension + components: + - pos: 50.5,28.5 + parent: 55 + type: Transform +- uid: 2214 + type: CableApcExtension + components: + - pos: 44.5,29.5 + parent: 55 + type: Transform +- uid: 2215 + type: CableApcExtension + components: + - pos: 44.5,27.5 + parent: 55 + type: Transform +- uid: 2216 + type: CableApcExtension + components: + - pos: 44.5,31.5 + parent: 55 + type: Transform +- uid: 2217 + type: CableApcExtension + components: + - pos: 44.5,32.5 + parent: 55 + type: Transform +- uid: 2218 + type: CableApcExtension + components: + - pos: 44.5,33.5 + parent: 55 + type: Transform +- uid: 2219 + type: CableApcExtension + components: + - pos: 44.5,34.5 + parent: 55 + type: Transform +- uid: 2220 + type: CableApcExtension + components: + - pos: 44.5,35.5 + parent: 55 + type: Transform +- uid: 2221 + type: CableApcExtension + components: + - pos: 44.5,36.5 + parent: 55 + type: Transform +- uid: 2222 + type: CableApcExtension + components: + - pos: 44.5,37.5 + parent: 55 + type: Transform +- uid: 2223 + type: CableApcExtension + components: + - pos: 44.5,38.5 + parent: 55 + type: Transform +- uid: 2224 + type: CableApcExtension + components: + - pos: 43.5,37.5 + parent: 55 + type: Transform +- uid: 2225 + type: CableApcExtension + components: + - pos: 42.5,37.5 + parent: 55 + type: Transform +- uid: 2226 + type: CableApcExtension + components: + - pos: 41.5,37.5 + parent: 55 + type: Transform +- uid: 2227 + type: CableApcExtension + components: + - pos: 40.5,37.5 + parent: 55 + type: Transform +- uid: 2228 + type: CableApcExtension + components: + - pos: 39.5,37.5 + parent: 55 + type: Transform +- uid: 2229 + type: CableApcExtension + components: + - pos: 38.5,37.5 + parent: 55 + type: Transform +- uid: 2230 + type: CableApcExtension + components: + - pos: 37.5,37.5 + parent: 55 + type: Transform +- uid: 2231 + type: CableApcExtension + components: + - pos: 36.5,37.5 + parent: 55 + type: Transform +- uid: 2232 + type: CableApcExtension + components: + - pos: 35.5,37.5 + parent: 55 + type: Transform +- uid: 2233 + type: CableApcExtension + components: + - pos: 45.5,37.5 + parent: 55 + type: Transform +- uid: 2234 + type: CableApcExtension + components: + - pos: 46.5,37.5 + parent: 55 + type: Transform +- uid: 2235 + type: CableApcExtension + components: + - pos: 47.5,35.5 + parent: 55 + type: Transform +- uid: 2236 + type: CableApcExtension + components: + - pos: 46.5,35.5 + parent: 55 + type: Transform +- uid: 2237 + type: CableApcExtension + components: + - pos: 45.5,35.5 + parent: 55 + type: Transform +- uid: 2238 + type: CableApcExtension + components: + - pos: 43.5,35.5 + parent: 55 + type: Transform +- uid: 2239 + type: CableApcExtension + components: + - pos: 42.5,35.5 + parent: 55 + type: Transform +- uid: 2240 + type: CableApcExtension + components: + - pos: 41.5,35.5 + parent: 55 + type: Transform +- uid: 2241 + type: CableApcExtension + components: + - pos: 40.5,35.5 + parent: 55 + type: Transform +- uid: 2242 + type: CableApcExtension + components: + - pos: 39.5,35.5 + parent: 55 + type: Transform +- uid: 2243 + type: CableApcExtension + components: + - pos: 38.5,35.5 + parent: 55 + type: Transform +- uid: 2244 + type: CableApcExtension + components: + - pos: 37.5,35.5 + parent: 55 + type: Transform +- uid: 2245 + type: CableApcExtension + components: + - pos: 36.5,35.5 + parent: 55 + type: Transform +- uid: 2246 + type: CableApcExtension + components: + - pos: 38.5,33.5 + parent: 55 + type: Transform +- uid: 2247 + type: CableApcExtension + components: + - pos: 39.5,33.5 + parent: 55 + type: Transform +- uid: 2248 + type: CableApcExtension + components: + - pos: 40.5,33.5 + parent: 55 + type: Transform +- uid: 2249 + type: CableApcExtension + components: + - pos: 41.5,33.5 + parent: 55 + type: Transform +- uid: 2250 + type: CableApcExtension + components: + - pos: 42.5,33.5 + parent: 55 + type: Transform +- uid: 2251 + type: CableApcExtension + components: + - pos: 43.5,33.5 + parent: 55 + type: Transform +- uid: 2252 + type: CableApcExtension + components: + - pos: 45.5,33.5 + parent: 55 + type: Transform +- uid: 2253 + type: CableApcExtension + components: + - pos: 46.5,33.5 + parent: 55 + type: Transform +- uid: 2254 + type: CableApcExtension + components: + - pos: 47.5,33.5 + parent: 55 + type: Transform +- uid: 2255 + type: CableApcExtension + components: + - pos: 47.5,31.5 + parent: 55 + type: Transform +- uid: 2256 + type: CableApcExtension + components: + - pos: 46.5,31.5 + parent: 55 + type: Transform +- uid: 2257 + type: CableApcExtension + components: + - pos: 45.5,31.5 + parent: 55 + type: Transform +- uid: 2258 + type: CableApcExtension + components: + - pos: 43.5,31.5 + parent: 55 + type: Transform +- uid: 2259 + type: CableApcExtension + components: + - pos: 42.5,31.5 + parent: 55 + type: Transform +- uid: 2260 + type: CableApcExtension + components: + - pos: 41.5,31.5 + parent: 55 + type: Transform +- uid: 2261 + type: CableApcExtension + components: + - pos: 40.5,31.5 + parent: 55 + type: Transform +- uid: 2262 + type: CableApcExtension + components: + - pos: 44.5,26.5 + parent: 55 + type: Transform +- uid: 2263 + type: CableApcExtension + components: + - pos: 44.5,25.5 + parent: 55 + type: Transform +- uid: 2264 + type: CableApcExtension + components: + - pos: 44.5,24.5 + parent: 55 + type: Transform +- uid: 2265 + type: CableApcExtension + components: + - pos: 44.5,23.5 + parent: 55 + type: Transform +- uid: 2266 + type: CableApcExtension + components: + - pos: 44.5,22.5 + parent: 55 + type: Transform +- uid: 2267 + type: CableApcExtension + components: + - pos: 44.5,21.5 + parent: 55 + type: Transform +- uid: 2268 + type: CableApcExtension + components: + - pos: 44.5,20.5 + parent: 55 + type: Transform +- uid: 2269 + type: CableApcExtension + components: + - pos: 44.5,19.5 + parent: 55 + type: Transform +- uid: 2270 + type: CableApcExtension + components: + - pos: 44.5,18.5 + parent: 55 + type: Transform +- uid: 2271 + type: CableApcExtension + components: + - pos: 43.5,19.5 + parent: 55 + type: Transform +- uid: 2272 + type: CableApcExtension + components: + - pos: 42.5,19.5 + parent: 55 + type: Transform +- uid: 2273 + type: CableApcExtension + components: + - pos: 41.5,19.5 + parent: 55 + type: Transform +- uid: 2274 + type: CableApcExtension + components: + - pos: 40.5,19.5 + parent: 55 + type: Transform +- uid: 2275 + type: CableApcExtension + components: + - pos: 39.5,19.5 + parent: 55 + type: Transform +- uid: 2276 + type: CableApcExtension + components: + - pos: 38.5,19.5 + parent: 55 + type: Transform +- uid: 2277 + type: CableApcExtension + components: + - pos: 36.5,21.5 + parent: 55 + type: Transform +- uid: 2278 + type: CableApcExtension + components: + - pos: 37.5,21.5 + parent: 55 + type: Transform +- uid: 2279 + type: CableApcExtension + components: + - pos: 38.5,21.5 + parent: 55 + type: Transform +- uid: 2280 + type: CableApcExtension + components: + - pos: 39.5,21.5 + parent: 55 + type: Transform +- uid: 2281 + type: CableApcExtension + components: + - pos: 40.5,21.5 + parent: 55 + type: Transform +- uid: 2282 + type: CableApcExtension + components: + - pos: 41.5,21.5 + parent: 55 + type: Transform +- uid: 2283 + type: CableApcExtension + components: + - pos: 42.5,21.5 + parent: 55 + type: Transform +- uid: 2284 + type: CableApcExtension + components: + - pos: 43.5,21.5 + parent: 55 + type: Transform +- uid: 2285 + type: CableApcExtension + components: + - pos: 38.5,23.5 + parent: 55 + type: Transform +- uid: 2286 + type: CableApcExtension + components: + - pos: 39.5,23.5 + parent: 55 + type: Transform +- uid: 2287 + type: CableApcExtension + components: + - pos: 40.5,23.5 + parent: 55 + type: Transform +- uid: 2288 + type: CableApcExtension + components: + - pos: 41.5,23.5 + parent: 55 + type: Transform +- uid: 2289 + type: CableApcExtension + components: + - pos: 42.5,23.5 + parent: 55 + type: Transform +- uid: 2290 + type: CableApcExtension + components: + - pos: 43.5,23.5 + parent: 55 + type: Transform +- uid: 2291 + type: CableApcExtension + components: + - pos: 40.5,25.5 + parent: 55 + type: Transform +- uid: 2292 + type: CableApcExtension + components: + - pos: 41.5,25.5 + parent: 55 + type: Transform +- uid: 2293 + type: CableApcExtension + components: + - pos: 42.5,25.5 + parent: 55 + type: Transform +- uid: 2294 + type: CableApcExtension + components: + - pos: 43.5,25.5 + parent: 55 + type: Transform +- uid: 2295 + type: CableApcExtension + components: + - pos: 45.5,25.5 + parent: 55 + type: Transform +- uid: 2296 + type: CableApcExtension + components: + - pos: 46.5,25.5 + parent: 55 + type: Transform +- uid: 2297 + type: CableApcExtension + components: + - pos: 47.5,25.5 + parent: 55 + type: Transform +- uid: 2298 + type: CableApcExtension + components: + - pos: 45.5,23.5 + parent: 55 + type: Transform +- uid: 2299 + type: CableApcExtension + components: + - pos: 46.5,23.5 + parent: 55 + type: Transform +- uid: 2300 + type: CableApcExtension + components: + - pos: 47.5,23.5 + parent: 55 + type: Transform +- uid: 2301 + type: CableApcExtension + components: + - pos: 45.5,21.5 + parent: 55 + type: Transform +- uid: 2302 + type: CableApcExtension + components: + - pos: 46.5,21.5 + parent: 55 + type: Transform +- uid: 2303 + type: CableApcExtension + components: + - pos: 47.5,21.5 + parent: 55 + type: Transform +- uid: 2304 + type: CableApcExtension + components: + - pos: 45.5,19.5 + parent: 55 + type: Transform +- uid: 2305 + type: CableApcExtension + components: + - pos: 46.5,19.5 + parent: 55 + type: Transform +- uid: 2306 + type: CableApcExtension + components: + - pos: 51.5,28.5 + parent: 55 + type: Transform +- uid: 2307 + type: CableApcExtension + components: + - pos: 52.5,28.5 + parent: 55 + type: Transform +- uid: 2308 + type: CableApcExtension + components: + - pos: 53.5,28.5 + parent: 55 + type: Transform +- uid: 2309 + type: CableApcExtension + components: + - pos: 81.5,28.5 + parent: 55 + type: Transform +- uid: 2310 + type: CableApcExtension + components: + - pos: 82.5,28.5 + parent: 55 + type: Transform +- uid: 2311 + type: CableApcExtension + components: + - pos: 55.5,28.5 + parent: 55 + type: Transform +- uid: 2312 + type: CableApcExtension + components: + - pos: 56.5,28.5 + parent: 55 + type: Transform +- uid: 2313 + type: CableApcExtension + components: + - pos: 57.5,28.5 + parent: 55 + type: Transform +- uid: 2314 + type: CableApcExtension + components: + - pos: 58.5,28.5 + parent: 55 + type: Transform +- uid: 2315 + type: CableApcExtension + components: + - pos: 59.5,28.5 + parent: 55 + type: Transform +- uid: 2316 + type: CableApcExtension + components: + - pos: 60.5,28.5 + parent: 55 + type: Transform +- uid: 2317 + type: CableApcExtension + components: + - pos: 61.5,28.5 + parent: 55 + type: Transform +- uid: 2318 + type: CableApcExtension + components: + - pos: 62.5,28.5 + parent: 55 + type: Transform +- uid: 2319 + type: CableApcExtension + components: + - pos: 63.5,28.5 + parent: 55 + type: Transform +- uid: 2320 + type: CableApcExtension + components: + - pos: 64.5,28.5 + parent: 55 + type: Transform +- uid: 2321 + type: CableApcExtension + components: + - pos: 65.5,28.5 + parent: 55 + type: Transform +- uid: 2322 + type: CableApcExtension + components: + - pos: 66.5,28.5 + parent: 55 + type: Transform +- uid: 2323 + type: CableApcExtension + components: + - pos: 67.5,28.5 + parent: 55 + type: Transform +- uid: 2324 + type: CableApcExtension + components: + - pos: 68.5,28.5 + parent: 55 + type: Transform +- uid: 2325 + type: CableApcExtension + components: + - pos: 69.5,28.5 + parent: 55 + type: Transform +- uid: 2326 + type: CableApcExtension + components: + - pos: 70.5,28.5 + parent: 55 + type: Transform +- uid: 2327 + type: CableApcExtension + components: + - pos: 71.5,28.5 + parent: 55 + type: Transform +- uid: 2328 + type: CableApcExtension + components: + - pos: 72.5,28.5 + parent: 55 + type: Transform +- uid: 2329 + type: CableApcExtension + components: + - pos: 73.5,28.5 + parent: 55 + type: Transform +- uid: 2330 + type: CableApcExtension + components: + - pos: 74.5,28.5 + parent: 55 + type: Transform +- uid: 2331 + type: CableApcExtension + components: + - pos: 75.5,28.5 + parent: 55 + type: Transform +- uid: 2332 + type: CableApcExtension + components: + - pos: 76.5,28.5 + parent: 55 + type: Transform +- uid: 2333 + type: CableApcExtension + components: + - pos: 77.5,28.5 + parent: 55 + type: Transform +- uid: 2334 + type: CableApcExtension + components: + - pos: 78.5,28.5 + parent: 55 + type: Transform +- uid: 2335 + type: CableApcExtension + components: + - pos: 79.5,28.5 + parent: 55 + type: Transform +- uid: 2336 + type: CableApcExtension + components: + - pos: 80.5,28.5 + parent: 55 + type: Transform +- uid: 2337 + type: CableApcExtension + components: + - pos: 80.5,27.5 + parent: 55 + type: Transform +- uid: 2338 + type: CableApcExtension + components: + - pos: 80.5,26.5 + parent: 55 + type: Transform +- uid: 2339 + type: CableApcExtension + components: + - pos: 80.5,29.5 + parent: 55 + type: Transform +- uid: 2340 + type: CableApcExtension + components: + - pos: 80.5,30.5 + parent: 55 + type: Transform +- uid: 2341 + type: CableApcExtension + components: + - pos: 71.5,27.5 + parent: 55 + type: Transform +- uid: 2342 + type: CableApcExtension + components: + - pos: 71.5,26.5 + parent: 55 + type: Transform +- uid: 2343 + type: CableApcExtension + components: + - pos: 71.5,25.5 + parent: 55 + type: Transform +- uid: 2344 + type: CableApcExtension + components: + - pos: 71.5,30.5 + parent: 55 + type: Transform +- uid: 2345 + type: CableApcExtension + components: + - pos: 71.5,31.5 + parent: 55 + type: Transform +- uid: 2346 + type: CableApcExtension + components: + - pos: 71.5,29.5 + parent: 55 + type: Transform +- uid: 2347 + type: CableApcExtension + components: + - pos: 69.5,32.5 + parent: 55 + type: Transform +- uid: 2348 + type: CableApcExtension + components: + - pos: 69.5,31.5 + parent: 55 + type: Transform +- uid: 2349 + type: CableApcExtension + components: + - pos: 69.5,30.5 + parent: 55 + type: Transform +- uid: 2350 + type: CableApcExtension + components: + - pos: 69.5,29.5 + parent: 55 + type: Transform +- uid: 2351 + type: CableApcExtension + components: + - pos: 69.5,27.5 + parent: 55 + type: Transform +- uid: 2352 + type: CableApcExtension + components: + - pos: 69.5,26.5 + parent: 55 + type: Transform +- uid: 2353 + type: CableApcExtension + components: + - pos: 69.5,25.5 + parent: 55 + type: Transform +- uid: 2354 + type: CableApcExtension + components: + - pos: 69.5,24.5 + parent: 55 + type: Transform +- uid: 2355 + type: CableApcExtension + components: + - pos: 67.5,32.5 + parent: 55 + type: Transform +- uid: 2356 + type: CableApcExtension + components: + - pos: 67.5,31.5 + parent: 55 + type: Transform +- uid: 2357 + type: CableApcExtension + components: + - pos: 67.5,30.5 + parent: 55 + type: Transform +- uid: 2358 + type: CableApcExtension + components: + - pos: 67.5,29.5 + parent: 55 + type: Transform +- uid: 2359 + type: CableApcExtension + components: + - pos: 67.5,27.5 + parent: 55 + type: Transform +- uid: 2360 + type: CableApcExtension + components: + - pos: 67.5,26.5 + parent: 55 + type: Transform +- uid: 2361 + type: CableApcExtension + components: + - pos: 67.5,25.5 + parent: 55 + type: Transform +- uid: 2362 + type: CableApcExtension + components: + - pos: 67.5,24.5 + parent: 55 + type: Transform +- uid: 2363 + type: CableApcExtension + components: + - pos: 65.5,27.5 + parent: 55 + type: Transform +- uid: 2364 + type: CableApcExtension + components: + - pos: 65.5,26.5 + parent: 55 + type: Transform +- uid: 2365 + type: CableApcExtension + components: + - pos: 65.5,25.5 + parent: 55 + type: Transform +- uid: 2366 + type: CableApcExtension + components: + - pos: 65.5,24.5 + parent: 55 + type: Transform +- uid: 2367 + type: CableApcExtension + components: + - pos: 65.5,23.5 + parent: 55 + type: Transform +- uid: 2368 + type: CableApcExtension + components: + - pos: 65.5,29.5 + parent: 55 + type: Transform +- uid: 2369 + type: CableApcExtension + components: + - pos: 65.5,30.5 + parent: 55 + type: Transform +- uid: 2370 + type: CableApcExtension + components: + - pos: 65.5,31.5 + parent: 55 + type: Transform +- uid: 2371 + type: CableApcExtension + components: + - pos: 65.5,32.5 + parent: 55 + type: Transform +- uid: 2372 + type: CableApcExtension + components: + - pos: 65.5,33.5 + parent: 55 + type: Transform +- uid: 2373 + type: CableApcExtension + components: + - pos: 65.5,34.5 + parent: 55 + type: Transform +- uid: 2374 + type: CableApcExtension + components: + - pos: 65.5,35.5 + parent: 55 + type: Transform +- uid: 2375 + type: CableApcExtension + components: + - pos: 65.5,36.5 + parent: 55 + type: Transform +- uid: 2376 + type: CableApcExtension + components: + - pos: 65.5,37.5 + parent: 55 + type: Transform +- uid: 2377 + type: CableApcExtension + components: + - pos: 65.5,38.5 + parent: 55 + type: Transform +- uid: 2378 + type: CableApcExtension + components: + - pos: 65.5,39.5 + parent: 55 + type: Transform +- uid: 2379 + type: CableApcExtension + components: + - pos: 65.5,40.5 + parent: 55 + type: Transform +- uid: 2380 + type: CableApcExtension + components: + - pos: 65.5,41.5 + parent: 55 + type: Transform +- uid: 2381 + type: CableApcExtension + components: + - pos: 65.5,42.5 + parent: 55 + type: Transform +- uid: 2382 + type: CableApcExtension + components: + - pos: 65.5,43.5 + parent: 55 + type: Transform +- uid: 2383 + type: CableApcExtension + components: + - pos: 65.5,44.5 + parent: 55 + type: Transform +- uid: 2384 + type: CableApcExtension + components: + - pos: 65.5,45.5 + parent: 55 + type: Transform +- uid: 2385 + type: CableApcExtension + components: + - pos: 65.5,46.5 + parent: 55 + type: Transform +- uid: 2386 + type: CableApcExtension + components: + - pos: 65.5,47.5 + parent: 55 + type: Transform +- uid: 2387 + type: CableApcExtension + components: + - pos: 65.5,48.5 + parent: 55 + type: Transform +- uid: 2388 + type: CableApcExtension + components: + - pos: 65.5,49.5 + parent: 55 + type: Transform +- uid: 2389 + type: CableApcExtension + components: + - pos: 65.5,50.5 + parent: 55 + type: Transform +- uid: 2390 + type: CableApcExtension + components: + - pos: 65.5,51.5 + parent: 55 + type: Transform +- uid: 2391 + type: CableApcExtension + components: + - pos: 65.5,52.5 + parent: 55 + type: Transform +- uid: 2392 + type: CableApcExtension + components: + - pos: 65.5,53.5 + parent: 55 + type: Transform +- uid: 2393 + type: CableApcExtension + components: + - pos: 63.5,32.5 + parent: 55 + type: Transform +- uid: 2394 + type: CableApcExtension + components: + - pos: 63.5,31.5 + parent: 55 + type: Transform +- uid: 2395 + type: CableApcExtension + components: + - pos: 63.5,30.5 + parent: 55 + type: Transform +- uid: 2396 + type: CableApcExtension + components: + - pos: 63.5,29.5 + parent: 55 + type: Transform +- uid: 2397 + type: CableApcExtension + components: + - pos: 63.5,27.5 + parent: 55 + type: Transform +- uid: 2398 + type: CableApcExtension + components: + - pos: 63.5,26.5 + parent: 55 + type: Transform +- uid: 2399 + type: CableApcExtension + components: + - pos: 63.5,25.5 + parent: 55 + type: Transform +- uid: 2400 + type: CableApcExtension + components: + - pos: 63.5,24.5 + parent: 55 + type: Transform +- uid: 2401 + type: CableApcExtension + components: + - pos: 61.5,27.5 + parent: 55 + type: Transform +- uid: 2402 + type: CableApcExtension + components: + - pos: 61.5,26.5 + parent: 55 + type: Transform +- uid: 2403 + type: CableApcExtension + components: + - pos: 61.5,25.5 + parent: 55 + type: Transform +- uid: 2404 + type: CableApcExtension + components: + - pos: 61.5,24.5 + parent: 55 + type: Transform +- uid: 2405 + type: CableApcExtension + components: + - pos: 61.5,32.5 + parent: 55 + type: Transform +- uid: 2406 + type: CableApcExtension + components: + - pos: 61.5,31.5 + parent: 55 + type: Transform +- uid: 2407 + type: CableApcExtension + components: + - pos: 61.5,30.5 + parent: 55 + type: Transform +- uid: 2408 + type: CableApcExtension + components: + - pos: 61.5,29.5 + parent: 55 + type: Transform +- uid: 2409 + type: CableApcExtension + components: + - pos: 59.5,31.5 + parent: 55 + type: Transform +- uid: 2410 + type: CableApcExtension + components: + - pos: 59.5,30.5 + parent: 55 + type: Transform +- uid: 2411 + type: CableApcExtension + components: + - pos: 59.5,29.5 + parent: 55 + type: Transform +- uid: 2412 + type: CableApcExtension + components: + - pos: 59.5,27.5 + parent: 55 + type: Transform +- uid: 2413 + type: CableApcExtension + components: + - pos: 59.5,26.5 + parent: 55 + type: Transform +- uid: 2414 + type: CableApcExtension + components: + - pos: 59.5,25.5 + parent: 55 + type: Transform +- uid: 2415 + type: CableApcExtension + components: + - pos: 64.5,40.5 + parent: 55 + type: Transform +- uid: 2416 + type: CableApcExtension + components: + - pos: 63.5,40.5 + parent: 55 + type: Transform +- uid: 2417 + type: CableApcExtension + components: + - pos: 66.5,40.5 + parent: 55 + type: Transform +- uid: 2418 + type: CableApcExtension + components: + - pos: 67.5,40.5 + parent: 55 + type: Transform +- uid: 2419 + type: CableApcExtension + components: + - pos: 66.5,42.5 + parent: 55 + type: Transform +- uid: 2420 + type: CableApcExtension + components: + - pos: 67.5,42.5 + parent: 55 + type: Transform +- uid: 2421 + type: CableApcExtension + components: + - pos: 68.5,42.5 + parent: 55 + type: Transform +- uid: 2422 + type: CableApcExtension + components: + - pos: 69.5,42.5 + parent: 55 + type: Transform +- uid: 2423 + type: CableApcExtension + components: + - pos: 66.5,44.5 + parent: 55 + type: Transform +- uid: 2424 + type: CableApcExtension + components: + - pos: 67.5,44.5 + parent: 55 + type: Transform +- uid: 2425 + type: CableApcExtension + components: + - pos: 68.5,44.5 + parent: 55 + type: Transform +- uid: 2426 + type: CableApcExtension + components: + - pos: 69.5,44.5 + parent: 55 + type: Transform +- uid: 2427 + type: CableApcExtension + components: + - pos: 66.5,46.5 + parent: 55 + type: Transform +- uid: 2428 + type: CableApcExtension + components: + - pos: 67.5,46.5 + parent: 55 + type: Transform +- uid: 2429 + type: CableApcExtension + components: + - pos: 68.5,46.5 + parent: 55 + type: Transform +- uid: 2430 + type: CableApcExtension + components: + - pos: 69.5,46.5 + parent: 55 + type: Transform +- uid: 2431 + type: CableApcExtension + components: + - pos: 66.5,48.5 + parent: 55 + type: Transform +- uid: 2432 + type: CableApcExtension + components: + - pos: 67.5,48.5 + parent: 55 + type: Transform +- uid: 2433 + type: CableApcExtension + components: + - pos: 68.5,48.5 + parent: 55 + type: Transform +- uid: 2434 + type: CableApcExtension + components: + - pos: 69.5,48.5 + parent: 55 + type: Transform +- uid: 2435 + type: CableApcExtension + components: + - pos: 66.5,50.5 + parent: 55 + type: Transform +- uid: 2436 + type: CableApcExtension + components: + - pos: 67.5,50.5 + parent: 55 + type: Transform +- uid: 2437 + type: CableApcExtension + components: + - pos: 68.5,50.5 + parent: 55 + type: Transform +- uid: 2438 + type: CableApcExtension + components: + - pos: 69.5,50.5 + parent: 55 + type: Transform +- uid: 2439 + type: CableApcExtension + components: + - pos: 66.5,52.5 + parent: 55 + type: Transform +- uid: 2440 + type: CableApcExtension + components: + - pos: 67.5,52.5 + parent: 55 + type: Transform +- uid: 2441 + type: CableApcExtension + components: + - pos: 63.5,52.5 + parent: 55 + type: Transform +- uid: 2442 + type: CableApcExtension + components: + - pos: 64.5,52.5 + parent: 55 + type: Transform +- uid: 2443 + type: CableApcExtension + components: + - pos: 61.5,50.5 + parent: 55 + type: Transform +- uid: 2444 + type: CableApcExtension + components: + - pos: 62.5,50.5 + parent: 55 + type: Transform +- uid: 2445 + type: CableApcExtension + components: + - pos: 63.5,50.5 + parent: 55 + type: Transform +- uid: 2446 + type: CableApcExtension + components: + - pos: 64.5,50.5 + parent: 55 + type: Transform +- uid: 2447 + type: CableApcExtension + components: + - pos: 61.5,48.5 + parent: 55 + type: Transform +- uid: 2448 + type: CableApcExtension + components: + - pos: 62.5,48.5 + parent: 55 + type: Transform +- uid: 2449 + type: CableApcExtension + components: + - pos: 63.5,48.5 + parent: 55 + type: Transform +- uid: 2450 + type: CableApcExtension + components: + - pos: 64.5,48.5 + parent: 55 + type: Transform +- uid: 2451 + type: CableApcExtension + components: + - pos: 61.5,46.5 + parent: 55 + type: Transform +- uid: 2452 + type: CableApcExtension + components: + - pos: 62.5,46.5 + parent: 55 + type: Transform +- uid: 2453 + type: CableApcExtension + components: + - pos: 63.5,46.5 + parent: 55 + type: Transform +- uid: 2454 + type: CableApcExtension + components: + - pos: 64.5,46.5 + parent: 55 + type: Transform +- uid: 2455 + type: CableApcExtension + components: + - pos: 61.5,44.5 + parent: 55 + type: Transform +- uid: 2456 + type: CableApcExtension + components: + - pos: 62.5,44.5 + parent: 55 + type: Transform +- uid: 2457 + type: CableApcExtension + components: + - pos: 63.5,44.5 + parent: 55 + type: Transform +- uid: 2458 + type: CableApcExtension + components: + - pos: 64.5,44.5 + parent: 55 + type: Transform +- uid: 2459 + type: CableApcExtension + components: + - pos: 61.5,42.5 + parent: 55 + type: Transform +- uid: 2460 + type: CableApcExtension + components: + - pos: 62.5,42.5 + parent: 55 + type: Transform +- uid: 2461 + type: CableApcExtension + components: + - pos: 63.5,42.5 + parent: 55 + type: Transform +- uid: 2462 + type: CableApcExtension + components: + - pos: 64.5,42.5 + parent: 55 + type: Transform +- uid: 2463 + type: ReinforcedWindow + components: + - pos: 68.5,23.5 + parent: 55 + type: Transform +- uid: 2464 + type: ReinforcedWindow + components: + - pos: 69.5,23.5 + parent: 55 + type: Transform +- uid: 2465 + type: ReinforcedWindow + components: + - pos: 70.5,23.5 + parent: 55 + type: Transform +- uid: 2466 + type: ReinforcedWindow + components: + - pos: 75.5,27.5 + parent: 55 + type: Transform +- uid: 2467 + type: ReinforcedWindow + components: + - pos: 76.5,27.5 + parent: 55 + type: Transform +- uid: 2468 + type: ReinforcedWindow + components: + - pos: 77.5,27.5 + parent: 55 + type: Transform +- uid: 2469 + type: ReinforcedWindow + components: + - pos: 75.5,29.5 + parent: 55 + type: Transform +- uid: 2470 + type: ReinforcedWindow + components: + - pos: 76.5,29.5 + parent: 55 + type: Transform +- uid: 2471 + type: ReinforcedWindow + components: + - pos: 77.5,29.5 + parent: 55 + type: Transform +- uid: 2472 + type: ReinforcedWindow + components: + - pos: 78.5,30.5 + parent: 55 + type: Transform +- uid: 2473 + type: ReinforcedWindow + components: + - pos: 79.5,31.5 + parent: 55 + type: Transform +- uid: 2474 + type: ReinforcedWindow + components: + - pos: 80.5,31.5 + parent: 55 + type: Transform +- uid: 2475 + type: ReinforcedWindow + components: + - pos: 81.5,31.5 + parent: 55 + type: Transform +- uid: 2476 + type: ReinforcedWindow + components: + - pos: 78.5,26.5 + parent: 55 + type: Transform +- uid: 2477 + type: ReinforcedWindow + components: + - pos: 79.5,25.5 + parent: 55 + type: Transform +- uid: 2478 + type: ReinforcedWindow + components: + - pos: 80.5,25.5 + parent: 55 + type: Transform +- uid: 2479 + type: ReinforcedWindow + components: + - pos: 81.5,25.5 + parent: 55 + type: Transform +- uid: 2480 + type: ReinforcedWindow + components: + - pos: 70.5,33.5 + parent: 55 + type: Transform +- uid: 2481 + type: ReinforcedWindow + components: + - pos: 69.5,33.5 + parent: 55 + type: Transform +- uid: 2482 + type: ReinforcedWindow + components: + - pos: 68.5,33.5 + parent: 55 + type: Transform +- uid: 2483 + type: ReinforcedWindow + components: + - pos: 66.5,34.5 + parent: 55 + type: Transform +- uid: 2484 + type: ReinforcedWindow + components: + - pos: 64.5,34.5 + parent: 55 + type: Transform +- uid: 2485 + type: ReinforcedWindow + components: + - pos: 64.5,38.5 + parent: 55 + type: Transform +- uid: 2486 + type: ReinforcedWindow + components: + - pos: 66.5,38.5 + parent: 55 + type: Transform +- uid: 2487 + type: ReinforcedWindow + components: + - pos: 67.5,37.5 + parent: 55 + type: Transform +- uid: 2488 + type: ReinforcedWindow + components: + - pos: 67.5,36.5 + parent: 55 + type: Transform +- uid: 2489 + type: ReinforcedWindow + components: + - pos: 67.5,35.5 + parent: 55 + type: Transform +- uid: 2490 + type: ReinforcedWindow + components: + - pos: 63.5,35.5 + parent: 55 + type: Transform +- uid: 2491 + type: ReinforcedWindow + components: + - pos: 63.5,36.5 + parent: 55 + type: Transform +- uid: 2492 + type: ReinforcedWindow + components: + - pos: 63.5,37.5 + parent: 55 + type: Transform +- uid: 2493 + type: ReinforcedWindow + components: + - pos: 62.5,33.5 + parent: 55 + type: Transform +- uid: 2494 + type: ReinforcedWindow + components: + - pos: 61.5,33.5 + parent: 55 + type: Transform +- uid: 2495 + type: ReinforcedWindow + components: + - pos: 60.5,33.5 + parent: 55 + type: Transform +- uid: 2496 + type: ReinforcedWindow + components: + - pos: 60.5,43.5 + parent: 55 + type: Transform +- uid: 2497 + type: ReinforcedWindow + components: + - pos: 60.5,44.5 + parent: 55 + type: Transform +- uid: 2498 + type: ReinforcedWindow + components: + - pos: 60.5,45.5 + parent: 55 + type: Transform +- uid: 2499 + type: ReinforcedWindow + components: + - pos: 60.5,47.5 + parent: 55 + type: Transform +- uid: 2500 + type: ReinforcedWindow + components: + - pos: 60.5,48.5 + parent: 55 + type: Transform +- uid: 2501 + type: ReinforcedWindow + components: + - pos: 60.5,49.5 + parent: 55 + type: Transform +- uid: 2502 + type: ReinforcedWindow + components: + - pos: 70.5,47.5 + parent: 55 + type: Transform +- uid: 2503 + type: ReinforcedWindow + components: + - pos: 70.5,48.5 + parent: 55 + type: Transform +- uid: 2504 + type: ReinforcedWindow + components: + - pos: 70.5,49.5 + parent: 55 + type: Transform +- uid: 2505 + type: ReinforcedWindow + components: + - pos: 70.5,43.5 + parent: 55 + type: Transform +- uid: 2506 + type: ReinforcedWindow + components: + - pos: 70.5,44.5 + parent: 55 + type: Transform +- uid: 2507 + type: ReinforcedWindow + components: + - pos: 70.5,45.5 + parent: 55 + type: Transform +- uid: 2508 + type: ReinforcedWindow + components: + - pos: 66.5,54.5 + parent: 55 + type: Transform +- uid: 2509 + type: ReinforcedWindow + components: + - pos: 65.5,54.5 + parent: 55 + type: Transform +- uid: 2510 + type: ReinforcedWindow + components: + - pos: 64.5,54.5 + parent: 55 + type: Transform +- uid: 2511 + type: Grille + components: + - pos: 57.5,27.5 + parent: 55 + type: Transform +- uid: 2512 + type: Grille + components: + - pos: 57.5,29.5 + parent: 55 + type: Transform +- uid: 2513 + type: ReinforcedWindow + components: + - pos: 57.5,27.5 + parent: 55 + type: Transform +- uid: 2514 + type: ReinforcedWindow + components: + - pos: 57.5,29.5 + parent: 55 + type: Transform +- uid: 2515 + type: FloraTreeLarge02 + components: + - pos: 2.0100522,29.959734 + parent: 55 + type: Transform +- uid: 2516 + type: FloraTreeLarge05 + components: + - pos: -2.4586978,21.709734 + parent: 55 + type: Transform +- uid: 2517 + type: FloraTreeLarge06 + components: + - pos: -2.4586978,38.1041 + parent: 55 + type: Transform +- uid: 2518 + type: FloraTreeLarge05 + components: + - pos: 32.515247,30.01122 + parent: 55 + type: Transform +- uid: 2519 + type: FloraTree01 + components: + - pos: 29.140247,28.91747 + parent: 55 + type: Transform +- uid: 2520 + type: FloraTree01 + components: + - pos: 35.983997,29.85497 + parent: 55 + type: Transform +- uid: 2521 + type: FloraTree05 + components: + - pos: 34.015247,26.54247 + parent: 55 + type: Transform +- uid: 2522 + type: FloraTree05 + components: + - pos: 31.546497,32.04247 + parent: 55 + type: Transform +- uid: 2523 + type: FloraTree04 + components: + - pos: 31.140247,27.036436 + parent: 55 + type: Transform +- uid: 2524 + type: FloraTree06 + components: + - pos: 32.577747,25.223936 + parent: 55 + type: Transform +- uid: 2525 + type: FloraTree01 + components: + - pos: -4.0332193,30.221994 + parent: 55 + type: Transform +- uid: 2526 + type: FloraTree05 + components: + - pos: 0.71678066,28.690744 + parent: 55 + type: Transform +- uid: 2527 + type: FloraTree04 + components: + - pos: -0.84571934,21.034494 + parent: 55 + type: Transform +- uid: 2528 + type: FloraTree02 + components: + - pos: -3.001969,19.534494 + parent: 55 + type: Transform +- uid: 2529 + type: FloraTree01 + components: + - pos: -4.0019693,36.440742 + parent: 55 + type: Transform +- uid: 2530 + type: FloraTree06 + components: + - pos: -1.6894693,35.503242 + parent: 55 + type: Transform +- uid: 2531 + type: FloraTree06 + components: + - pos: -4.2519693,27.971994 + parent: 55 + type: Transform +- uid: 2532 + type: AirlockExternalGlass + components: + - pos: -12.5,31.5 + parent: 55 + type: Transform +- uid: 2533 + type: AirlockExternalGlass + components: + - pos: -8.5,31.5 + parent: 55 + type: Transform +- uid: 2534 + type: AirlockExternalGlass + components: + - pos: -8.5,33.5 + parent: 55 + type: Transform +- uid: 2535 + type: AirlockExternalGlass + components: + - pos: -12.5,33.5 + parent: 55 + type: Transform +- uid: 2536 + type: AirlockExternalGlass + components: + - pos: -12.5,25.5 + parent: 55 + type: Transform +- uid: 2537 + type: AirlockExternalGlass + components: + - pos: -12.5,23.5 + parent: 55 + type: Transform +- uid: 2538 + type: AirlockExternalGlass + components: + - pos: -8.5,23.5 + parent: 55 + type: Transform +- uid: 2539 + type: AirlockExternalGlass + components: + - pos: -8.5,25.5 + parent: 55 + type: Transform +- uid: 2540 + type: AirlockExternalGlass + components: + - pos: -2.5,47.5 + parent: 55 + type: Transform +- uid: 2541 + type: AirlockExternalGlass + components: + - pos: -2.5,9.5 + parent: 55 + type: Transform +- uid: 2542 + type: AirlockGlassShuttle + components: + - rot: 3.141592653589793 rad + pos: -2.5,51.5 + parent: 55 + type: Transform + - fixtures: + - shape: !type:PolygonShape + vertices: + - 0.49,-0.49 + - 0.49,0.49 + - -0.49,0.49 + - -0.49,-0.49 + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + layer: + - MidImpassable + - HighImpassable + - BulletImpassable + - InteractImpassable + - Opaque + mass: 100 + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures +- uid: 2543 + type: AirlockExternalGlassShuttleLocked + components: + - pos: -2.5,5.5 + parent: 55 + type: Transform + - fixtures: + - shape: !type:PolygonShape + vertices: + - 0.49,-0.49 + - 0.49,0.49 + - -0.49,0.49 + - -0.49,-0.49 + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + layer: + - MidImpassable + - HighImpassable + - BulletImpassable + - InteractImpassable + - Opaque + mass: 100 + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures +- uid: 2544 + type: WindoorSecure + components: + - pos: -2.5,6.5 + parent: 55 + type: Transform +- uid: 2545 + type: WindoorSecure + components: + - rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 55 + type: Transform +- uid: 2546 + type: WindoorSecure + components: + - rot: 1.5707963267948966 rad + pos: -9.5,23.5 + parent: 55 + type: Transform +- uid: 2547 + type: WindoorSecure + components: + - rot: 1.5707963267948966 rad + pos: -9.5,25.5 + parent: 55 + type: Transform +- uid: 2548 + type: WindoorSecure + components: + - rot: 1.5707963267948966 rad + pos: -9.5,31.5 + parent: 55 + type: Transform +- uid: 2549 + type: WindoorSecure + components: + - rot: 1.5707963267948966 rad + pos: -9.5,33.5 + parent: 55 + type: Transform +- uid: 2550 + type: WindoorSecure + components: + - pos: -2.5,48.5 + parent: 55 + type: Transform +- uid: 2551 + type: WindoorSecure + components: + - rot: 3.141592653589793 rad + pos: -2.5,50.5 + parent: 55 + type: Transform +- uid: 2552 + type: AirlockExternalGlassShuttleEmergencyLocked + components: + - rot: -1.5707963267948966 rad + pos: -13.5,25.5 + parent: 55 + type: Transform + - fixtures: + - shape: !type:PolygonShape + vertices: + - 0.49,-0.49 + - 0.49,0.49 + - -0.49,0.49 + - -0.49,-0.49 + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + layer: + - MidImpassable + - HighImpassable + - BulletImpassable + - InteractImpassable + - Opaque + mass: 100 + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures +- uid: 2553 + type: AirlockExternalGlassShuttleEmergencyLocked + components: + - rot: -1.5707963267948966 rad + pos: -13.5,23.5 + parent: 55 + type: Transform + - fixtures: + - shape: !type:PolygonShape + vertices: + - 0.49,-0.49 + - 0.49,0.49 + - -0.49,0.49 + - -0.49,-0.49 + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + layer: + - MidImpassable + - HighImpassable + - BulletImpassable + - InteractImpassable + - Opaque + mass: 100 + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures +- uid: 2554 + type: AirlockExternalGlassShuttleEmergencyLocked + components: + - rot: -1.5707963267948966 rad + pos: -13.5,33.5 + parent: 55 + type: Transform + - fixtures: + - shape: !type:PolygonShape + vertices: + - 0.49,-0.49 + - 0.49,0.49 + - -0.49,0.49 + - -0.49,-0.49 + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + layer: + - MidImpassable + - HighImpassable + - BulletImpassable + - InteractImpassable + - Opaque + mass: 100 + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures +- uid: 2555 + type: AirlockExternalGlassShuttleEmergencyLocked + components: + - rot: -1.5707963267948966 rad + pos: -13.5,31.5 + parent: 55 + type: Transform + - fixtures: + - shape: !type:PolygonShape + vertices: + - 0.49,-0.49 + - 0.49,0.49 + - -0.49,0.49 + - -0.49,-0.49 + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + layer: + - MidImpassable + - HighImpassable + - BulletImpassable + - InteractImpassable + - Opaque + mass: 100 + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures +- uid: 2556 + type: AirlockGlass + components: + - pos: 13.5,28.5 + parent: 55 + type: Transform +- uid: 2557 + type: AirlockMedicalGlassLocked + components: + - pos: 20.5,26.5 + parent: 55 + type: Transform +- uid: 2558 + type: AirlockMedicalGlassLocked + components: + - pos: 21.5,26.5 + parent: 55 + type: Transform +- uid: 2559 + type: AirlockMedicalGlass + components: + - pos: 20.5,30.5 + parent: 55 + type: Transform +- uid: 2560 + type: AirlockMedicalGlass + components: + - pos: 21.5,30.5 + parent: 55 + type: Transform +- uid: 2561 + type: AirlockMedicalGlassLocked + components: + - pos: 25.5,35.5 + parent: 55 + type: Transform +- uid: 2562 + type: AirlockChemistryLocked + components: + - pos: 22.5,37.5 + parent: 55 + type: Transform +- uid: 2563 + type: AirlockEngineeringGlassLocked + components: + - pos: 32.5,19.5 + parent: 55 + type: Transform +- uid: 2564 + type: AirlockGlass + components: + - pos: 44.5,26.5 + parent: 55 + type: Transform +- uid: 2565 + type: AirlockGlass + components: + - pos: 43.5,30.5 + parent: 55 + type: Transform +- uid: 2566 + type: AirlockGlass + components: + - pos: 44.5,30.5 + parent: 55 + type: Transform +- uid: 2567 + type: AirlockCommandGlassLocked + components: + - pos: 32.5,46.5 + parent: 55 + type: Transform +- uid: 2568 + type: AirlockHeadOfSecurityGlassLocked + components: + - pos: 21.5,42.5 + parent: 55 + type: Transform +- uid: 2569 + type: AirlockSecurityGlassLocked + components: + - pos: 30.5,42.5 + parent: 55 + type: Transform +- uid: 2570 + type: AirlockSecurityGlassLocked + components: + - pos: 30.5,43.5 + parent: 55 + type: Transform +- uid: 2571 + type: AirlockArmoryGlassLocked + components: + - pos: 24.5,44.5 + parent: 55 + type: Transform +- uid: 2572 + type: AirlockBrigGlassLocked + components: + - pos: 34.5,45.5 + parent: 55 + type: Transform +- uid: 2573 + type: AirlockBrigGlassLocked + components: + - pos: 38.5,44.5 + parent: 55 + type: Transform +- uid: 2574 + type: AirlockBrigGlassLocked + components: + - pos: 38.5,43.5 + parent: 55 + type: Transform +- uid: 2575 + type: AirlockSecurityGlassLocked + components: + - pos: 40.5,42.5 + parent: 55 + type: Transform +- uid: 2576 + type: AirlockSecurityGlassLocked + components: + - pos: 44.5,42.5 + parent: 55 + type: Transform +- uid: 2577 + type: AirlockSecurityGlassLocked + components: + - pos: 44.5,45.5 + parent: 55 + type: Transform +- uid: 2578 + type: AirlockCommandGlassLocked + components: + - pos: 57.5,28.5 + parent: 55 + type: Transform +- uid: 2579 + type: AirlockCommandGlassLocked + components: + - pos: 65.5,34.5 + parent: 55 + type: Transform +- uid: 2580 + type: AirlockCommandGlassLocked + components: + - pos: 65.5,38.5 + parent: 55 + type: Transform +- uid: 2581 + type: AirlockCommandGlassLocked + components: + - pos: 73.5,28.5 + parent: 55 + type: Transform +- uid: 2582 + type: AirlockExternalGlassLocked + components: + - pos: 78.5,28.5 + parent: 55 + type: Transform +- uid: 2583 + type: AirlockExternalGlassLocked + components: + - pos: 82.5,28.5 + parent: 55 + type: Transform +- uid: 2584 + type: AirlockExternalGlassShuttleLocked + components: + - rot: 1.5707963267948966 rad + pos: 83.5,28.5 + parent: 55 + type: Transform + - fixtures: + - shape: !type:PolygonShape + vertices: + - 0.49,-0.49 + - 0.49,0.49 + - -0.49,0.49 + - -0.49,-0.49 + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + layer: + - MidImpassable + - HighImpassable + - BulletImpassable + - InteractImpassable + - Opaque + mass: 100 + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures +- uid: 2585 + type: FirelockGlass + components: + - pos: 39.5,27.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2586 + type: FirelockGlass + components: + - pos: 39.5,28.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2587 + type: FirelockGlass + components: + - pos: 39.5,29.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2588 + type: FirelockGlass + components: + - pos: 33.5,35.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2589 + type: FirelockGlass + components: + - pos: 32.5,35.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2590 + type: FirelockGlass + components: + - pos: 31.5,35.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2591 + type: FirelockGlass + components: + - pos: 25.5,27.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2592 + type: FirelockGlass + components: + - pos: 25.5,28.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2593 + type: FirelockGlass + components: + - pos: 25.5,29.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2594 + type: FirelockEdge + components: + - pos: -2.5,10.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2595 + type: FirelockEdge + components: + - rot: -1.5707963267948966 rad + pos: -7.5,23.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2596 + type: FirelockEdge + components: + - rot: -1.5707963267948966 rad + pos: -7.5,25.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2597 + type: FirelockEdge + components: + - rot: -1.5707963267948966 rad + pos: -7.5,31.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2598 + type: FirelockEdge + components: + - rot: -1.5707963267948966 rad + pos: -7.5,33.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2599 + type: FirelockEdge + components: + - rot: 3.141592653589793 rad + pos: -2.5,46.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2600 + type: FirelockEdge + components: + - rot: 1.5707963267948966 rad + pos: 12.5,27.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2601 + type: FirelockEdge + components: + - rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2602 + type: FirelockEdge + components: + - rot: 1.5707963267948966 rad + pos: 12.5,29.5 + parent: 55 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2603 + type: BlastDoor + components: + - pos: 51.5,27.5 + parent: 55 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 2606 + type: SignalReceiver +- uid: 2604 + type: BlastDoor + components: + - pos: 51.5,28.5 + parent: 55 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 2606 + type: SignalReceiver +- uid: 2605 + type: BlastDoor + components: + - pos: 51.5,29.5 + parent: 55 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 2606 + type: SignalReceiver +- uid: 2606 + type: SignalButton + components: + - pos: 49.5,30.5 + parent: 55 + type: Transform + - fixtures: [] + type: Fixtures + - outputs: + Pressed: + - port: Toggle + uid: 2605 + - port: Toggle + uid: 2604 + - port: Toggle + uid: 2603 + type: SignalTransmitter +- uid: 2607 + type: AirlockMaintLocked + components: + - pos: 49.5,26.5 + parent: 55 + type: Transform +- uid: 2608 + type: AirlockMaintLocked + components: + - pos: 15.5,26.5 + parent: 55 + type: Transform +- uid: 2609 + type: ComfyChair + components: + - pos: -2.5,27.5 + parent: 55 + type: Transform +- uid: 2610 + type: ComfyChair + components: + - pos: -0.5,27.5 + parent: 55 + type: Transform +- uid: 2611 + type: ComfyChair + components: + - rot: 3.141592653589793 rad + pos: -0.5,29.5 + parent: 55 + type: Transform +- uid: 2612 + type: ComfyChair + components: + - rot: 3.141592653589793 rad + pos: -2.5,29.5 + parent: 55 + type: Transform +- uid: 2613 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -7.5,21.5 + parent: 55 + type: Transform +- uid: 2614 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -7.5,20.5 + parent: 55 + type: Transform +- uid: 2615 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -7.5,19.5 + parent: 55 + type: Transform +- uid: 2616 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -7.5,18.5 + parent: 55 + type: Transform +- uid: 2617 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -7.5,16.5 + parent: 55 + type: Transform +- uid: 2618 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 55 + type: Transform +- uid: 2619 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -7.5,27.5 + parent: 55 + type: Transform +- uid: 2620 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -7.5,29.5 + parent: 55 + type: Transform +- uid: 2621 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -7.5,35.5 + parent: 55 + type: Transform +- uid: 2622 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -7.5,36.5 + parent: 55 + type: Transform +- uid: 2623 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -7.5,37.5 + parent: 55 + type: Transform +- uid: 2624 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -7.5,38.5 + parent: 55 + type: Transform +- uid: 2625 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -7.5,40.5 + parent: 55 + type: Transform +- uid: 2626 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -7.5,42.5 + parent: 55 + type: Transform +- uid: 2627 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 2.5,42.5 + parent: 55 + type: Transform +- uid: 2628 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 2.5,41.5 + parent: 55 + type: Transform +- uid: 2629 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 2.5,40.5 + parent: 55 + type: Transform +- uid: 2630 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 2.5,38.5 + parent: 55 + type: Transform +- uid: 2631 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 2.5,36.5 + parent: 55 + type: Transform +- uid: 2632 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 2.5,18.5 + parent: 55 + type: Transform +- uid: 2633 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 55 + type: Transform +- uid: 2634 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 2.5,16.5 + parent: 55 + type: Transform +- uid: 2635 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 55 + type: Transform +- uid: 2636 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 55 + type: Transform +- uid: 2637 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -1.5,17.5 + parent: 55 + type: Transform +- uid: 2638 + type: ComfyChair + components: + - pos: -0.5,18.5 + parent: 55 + type: Transform +- uid: 2639 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: -3.5,17.5 + parent: 55 + type: Transform +- uid: 2640 + type: ComfyChair + components: + - pos: -4.5,18.5 + parent: 55 + type: Transform +- uid: 2641 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: -1.5,15.5 + parent: 55 + type: Transform +- uid: 2642 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -3.5,15.5 + parent: 55 + type: Transform +- uid: 2643 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -3.5,14.5 + parent: 55 + type: Transform +- uid: 2644 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 55 + type: Transform +- uid: 2645 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: -1.5,42.5 + parent: 55 + type: Transform +- uid: 2646 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: -1.5,41.5 + parent: 55 + type: Transform +- uid: 2647 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -3.5,42.5 + parent: 55 + type: Transform +- uid: 2648 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -3.5,41.5 + parent: 55 + type: Transform +- uid: 2649 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -1.5,39.5 + parent: 55 + type: Transform +- uid: 2650 + type: ComfyChair + components: + - rot: 3.141592653589793 rad + pos: -0.5,38.5 + parent: 55 + type: Transform +- uid: 2651 + type: ComfyChair + components: + - rot: 3.141592653589793 rad + pos: -4.5,38.5 + parent: 55 + type: Transform +- uid: 2652 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: -3.5,39.5 + parent: 55 + type: Transform +- uid: 2653 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -1.5,33.5 + parent: 55 + type: Transform +- uid: 2654 + type: ComfyChair + components: + - pos: -0.5,34.5 + parent: 55 + type: Transform +- uid: 2655 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: -3.5,33.5 + parent: 55 + type: Transform +- uid: 2656 + type: ComfyChair + components: + - pos: -4.5,34.5 + parent: 55 + type: Transform +- uid: 2657 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -2.5,31.5 + parent: 55 + type: Transform +- uid: 2658 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: -0.5,31.5 + parent: 55 + type: Transform +- uid: 2659 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: -0.5,25.5 + parent: 55 + type: Transform +- uid: 2660 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -2.5,25.5 + parent: 55 + type: Transform +- uid: 2661 + type: ComfyChair + components: + - rot: 3.141592653589793 rad + pos: -0.5,22.5 + parent: 55 + type: Transform +- uid: 2662 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -1.5,23.5 + parent: 55 + type: Transform +- uid: 2663 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: -3.5,23.5 + parent: 55 + type: Transform +- uid: 2664 + type: ComfyChair + components: + - rot: 3.141592653589793 rad + pos: -4.5,22.5 + parent: 55 + type: Transform +- uid: 2665 + type: TableGlass + components: + - pos: -4.5,23.5 + parent: 55 + type: Transform +- uid: 2666 + type: TableGlass + components: + - pos: -0.5,23.5 + parent: 55 + type: Transform +- uid: 2667 + type: TableGlass + components: + - pos: -1.5,25.5 + parent: 55 + type: Transform +- uid: 2668 + type: TableGlass + components: + - pos: -1.5,31.5 + parent: 55 + type: Transform +- uid: 2669 + type: TableGlass + components: + - pos: -0.5,33.5 + parent: 55 + type: Transform +- uid: 2670 + type: TableGlass + components: + - pos: -4.5,33.5 + parent: 55 + type: Transform +- uid: 2671 + type: TableGlass + components: + - pos: -2.5,42.5 + parent: 55 + type: Transform +- uid: 2672 + type: TableGlass + components: + - pos: -2.5,41.5 + parent: 55 + type: Transform +- uid: 2673 + type: TableGlass + components: + - pos: -0.5,39.5 + parent: 55 + type: Transform +- uid: 2674 + type: TableGlass + components: + - pos: -4.5,39.5 + parent: 55 + type: Transform +- uid: 2675 + type: TableGlass + components: + - pos: -4.5,17.5 + parent: 55 + type: Transform +- uid: 2676 + type: TableGlass + components: + - pos: -0.5,17.5 + parent: 55 + type: Transform +- uid: 2677 + type: TableGlass + components: + - pos: -2.5,15.5 + parent: 55 + type: Transform +- uid: 2678 + type: TableGlass + components: + - pos: -2.5,14.5 + parent: 55 + type: Transform +- uid: 2679 + type: WaterTankFull + components: + - pos: -7.5,15.5 + parent: 55 + type: Transform +- uid: 2680 + type: WaterTankFull + components: + - pos: -7.5,41.5 + parent: 55 + type: Transform +- uid: 2681 + type: VendingMachineDiscount + components: + - pos: 2.5,37.5 + parent: 55 + type: Transform +- uid: 2682 + type: VendingMachineDiscount + components: + - pos: 2.5,19.5 + parent: 55 + type: Transform +- uid: 2683 + type: VendingMachineSnack + components: + - pos: -7.5,28.5 + parent: 55 + type: Transform +- uid: 2684 + type: VendingMachineCola + components: + - pos: -1.5,27.5 + parent: 55 + type: Transform +- uid: 2685 + type: VendingMachineCoffee + components: + - name: Hot drinks machine + type: MetaData + - pos: -1.5,29.5 + parent: 55 + type: Transform +- uid: 2686 + type: PottedPlantRandom + components: + - pos: -3.5,46.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2687 + type: PottedPlantRandom + components: + - pos: -1.5,46.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2688 + type: PottedPlantRandom + components: + - pos: -1.5,10.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2689 + type: PottedPlantRandom + components: + - pos: -3.5,10.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2690 + type: PottedPlantRandom + components: + - pos: 1.5,12.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2691 + type: PottedPlantRandom + components: + - pos: -6.5,12.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2692 + type: PottedPlantRandom + components: + - pos: -6.5,44.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2693 + type: PottedPlantRandom + components: + - pos: 1.5,44.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2694 + type: PottedPlantRandom + components: + - pos: 5.5,32.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2695 + type: PottedPlantRandom + components: + - pos: 5.5,24.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2696 + type: PottedPlantRandom + components: + - pos: 3.5,22.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2697 + type: PottedPlantRandom + components: + - pos: 3.5,34.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2698 + type: PottedPlantRandom + components: + - pos: 7.5,30.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2699 + type: PottedPlantRandom + components: + - pos: 7.5,26.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2700 + type: PottedPlantRandom + components: + - pos: 10.5,27.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2701 + type: PottedPlantRandom + components: + - pos: 10.5,29.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2702 + type: PottedPlantRandom + components: + - pos: 24.5,29.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2703 + type: PottedPlantRandom + components: + - pos: 24.5,27.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2704 + type: PottedPlantRandom + components: + - pos: 40.5,27.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2705 + type: PottedPlantRandom + components: + - pos: 40.5,29.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2706 + type: PottedPlantRandom + components: + - pos: 14.5,27.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2707 + type: PottedPlantRandom + components: + - pos: 14.5,29.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2708 + type: PottedPlantRandom + components: + - pos: 50.5,27.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2709 + type: PottedPlantRandom + components: + - pos: 50.5,29.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2710 + type: PottedPlantRandom + components: + - pos: 33.5,37.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2711 + type: PottedPlantRandom + components: + - pos: 31.5,37.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2712 + type: BannerSecurity + components: + - pos: 42.5,44.5 + parent: 55 + type: Transform +- uid: 2713 + type: PottedPlantRandom + components: + - pos: 33.5,44.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2714 + type: PottedPlantRandom + components: + - pos: 33.5,21.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2715 + type: PottedPlantRandom + components: + - pos: 31.5,21.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2716 + type: PottedPlantRandom + components: + - pos: 35.5,25.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2717 + type: PottedPlantRandom + components: + - pos: 29.5,25.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2718 + type: PottedPlantRandom + components: + - pos: 29.5,31.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2719 + type: PottedPlantRandom + components: + - pos: 35.5,31.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2720 + type: GravityGenerator + components: + - pos: 32.5,14.5 + parent: 55 + type: Transform + - enabled: False + type: AmbientSound + - powerLoad: 2500 + type: ApcPowerReceiver + - radius: 2.5 + type: PointLight +- uid: 2721 + type: VendingMachineSnack + components: + - pos: 18.5,29.5 + parent: 55 + type: Transform +- uid: 2722 + type: VendingMachineChang + components: + - pos: 17.5,29.5 + parent: 55 + type: Transform + - sprite: Structures/Machines/VendingMachines/cigs.rsi + type: Sprite +- uid: 2723 + type: VendingMachineChang + components: + - pos: 33.5,40.5 + parent: 55 + type: Transform + - sprite: Structures/Machines/VendingMachines/cigs.rsi + type: Sprite +- uid: 2724 + type: VendingMachineCola + components: + - pos: 33.5,39.5 + parent: 55 + type: Transform +- uid: 2725 + type: VendingMachineCola + components: + - pos: 47.5,27.5 + parent: 55 + type: Transform +- uid: 2726 + type: VendingMachineCoffee + components: + - name: Hot drinks machine + type: MetaData + - pos: 34.5,22.5 + parent: 55 + type: Transform +- uid: 2727 + type: WindowTintedDirectional + components: + - rot: 3.141592653589793 rad + pos: 24.5,21.5 + parent: 55 + type: Transform +- uid: 2728 + type: VendingMachineDiscount + components: + - pos: 48.5,27.5 + parent: 55 + type: Transform +- uid: 2729 + type: WindowTintedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 19.5,25.5 + parent: 55 + type: Transform +- uid: 2730 + type: WindowTintedDirectional + components: + - rot: 3.141592653589793 rad + pos: 18.5,24.5 + parent: 55 + type: Transform +- uid: 2731 + type: WindowTintedDirectional + components: + - pos: 18.5,23.5 + parent: 55 + type: Transform +- uid: 2732 + type: WindowTintedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 19.5,22.5 + parent: 55 + type: Transform +- uid: 2733 + type: WindowTintedDirectional + components: + - rot: 3.141592653589793 rad + pos: 18.5,21.5 + parent: 55 + type: Transform +- uid: 2734 + type: WindowTintedDirectional + components: + - rot: 3.141592653589793 rad + pos: 20.5,21.5 + parent: 55 + type: Transform +- uid: 2735 + type: WindowTintedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 21.5,22.5 + parent: 55 + type: Transform +- uid: 2736 + type: WindowTintedDirectional + components: + - pos: 20.5,23.5 + parent: 55 + type: Transform +- uid: 2737 + type: WindowTintedDirectional + components: + - pos: 22.5,23.5 + parent: 55 + type: Transform +- uid: 2738 + type: WindowTintedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 23.5,22.5 + parent: 55 + type: Transform +- uid: 2739 + type: WindowTintedDirectional + components: + - rot: 3.141592653589793 rad + pos: 22.5,21.5 + parent: 55 + type: Transform +- uid: 2740 + type: WindowTintedDirectional + components: + - pos: 24.5,23.5 + parent: 55 + type: Transform +- uid: 2741 + type: WindowTintedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 25.5,22.5 + parent: 55 + type: Transform +- uid: 2742 + type: WindowTintedDirectional + components: + - pos: 26.5,23.5 + parent: 55 + type: Transform +- uid: 2743 + type: WindowTintedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 27.5,22.5 + parent: 55 + type: Transform +- uid: 2744 + type: WindowTintedDirectional + components: + - rot: 3.141592653589793 rad + pos: 26.5,21.5 + parent: 55 + type: Transform +- uid: 2745 + type: WindowTintedDirectional + components: + - pos: 18.5,20.5 + parent: 55 + type: Transform +- uid: 2746 + type: WindowTintedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 19.5,19.5 + parent: 55 + type: Transform +- uid: 2747 + type: WindowTintedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 21.5,19.5 + parent: 55 + type: Transform +- uid: 2748 + type: WindowTintedDirectional + components: + - pos: 20.5,20.5 + parent: 55 + type: Transform +- uid: 2749 + type: WindowTintedDirectional + components: + - rot: 3.141592653589793 rad + pos: 20.5,18.5 + parent: 55 + type: Transform +- uid: 2750 + type: WindowTintedDirectional + components: + - rot: 3.141592653589793 rad + pos: 22.5,18.5 + parent: 55 + type: Transform +- uid: 2751 + type: WindowTintedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 23.5,19.5 + parent: 55 + type: Transform +- uid: 2752 + type: WindowTintedDirectional + components: + - pos: 22.5,20.5 + parent: 55 + type: Transform +- uid: 2753 + type: WindowTintedDirectional + components: + - pos: 24.5,20.5 + parent: 55 + type: Transform +- uid: 2754 + type: WindowTintedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 25.5,19.5 + parent: 55 + type: Transform +- uid: 2755 + type: WindowTintedDirectional + components: + - pos: 26.5,20.5 + parent: 55 + type: Transform +- uid: 2756 + type: WindowTintedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 22.5,25.5 + parent: 55 + type: Transform +- uid: 2757 + type: WindowTintedDirectional + components: + - rot: 3.141592653589793 rad + pos: 23.5,24.5 + parent: 55 + type: Transform +- uid: 2758 + type: WindowTintedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 24.5,25.5 + parent: 55 + type: Transform +- uid: 2759 + type: MedicalBed + components: + - pos: 26.5,22.5 + parent: 55 + type: Transform +- uid: 2760 + type: MedicalBed + components: + - pos: 23.5,25.5 + parent: 55 + type: Transform +- uid: 2761 + type: MedicalBed + components: + - pos: 26.5,19.5 + parent: 55 + type: Transform +- uid: 2762 + type: MedicalBed + components: + - pos: 24.5,19.5 + parent: 55 + type: Transform +- uid: 2763 + type: MedicalBed + components: + - pos: 22.5,19.5 + parent: 55 + type: Transform +- uid: 2764 + type: MedicalBed + components: + - pos: 20.5,19.5 + parent: 55 + type: Transform +- uid: 2765 + type: MedicalBed + components: + - pos: 18.5,19.5 + parent: 55 + type: Transform +- uid: 2766 + type: MedicalBed + components: + - pos: 22.5,22.5 + parent: 55 + type: Transform +- uid: 2767 + type: MedicalBed + components: + - pos: 20.5,22.5 + parent: 55 + type: Transform +- uid: 2768 + type: MedicalBed + components: + - pos: 18.5,22.5 + parent: 55 + type: Transform +- uid: 2769 + type: MedicalBed + components: + - pos: 18.5,25.5 + parent: 55 + type: Transform +- uid: 2770 + type: MedicalBed + components: + - pos: 24.5,22.5 + parent: 55 + type: Transform +- uid: 2771 + type: BedsheetMedical + components: + - pos: 18.5,25.5 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2772 + type: BedsheetMedical + components: + - pos: 18.5,22.5 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2773 + type: BedsheetMedical + components: + - pos: 18.5,19.5 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2774 + type: BedsheetMedical + components: + - pos: 20.5,19.5 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2775 + type: BedsheetMedical + components: + - pos: 20.5,22.5 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2776 + type: BedsheetMedical + components: + - pos: 22.5,22.5 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2777 + type: BedsheetMedical + components: + - pos: 22.5,19.5 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2778 + type: BedsheetMedical + components: + - pos: 24.5,19.5 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2779 + type: BedsheetMedical + components: + - pos: 24.5,22.5 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2780 + type: BedsheetMedical + components: + - pos: 26.5,22.5 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2781 + type: BedsheetMedical + components: + - pos: 26.5,19.5 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2782 + type: BedsheetMedical + components: + - pos: 23.5,25.5 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2783 + type: VendingMachineMedical + components: + - pos: 29.5,20.5 + parent: 55 + type: Transform +- uid: 2784 + type: VendingMachineMedical + components: + - pos: 28.5,21.5 + parent: 55 + type: Transform +- uid: 2785 + type: VendingMachineMedical + components: + - pos: 25.5,24.5 + parent: 55 + type: Transform +- uid: 2786 + type: WindowTintedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 19.5,31.5 + parent: 55 + type: Transform +- uid: 2787 + type: WindowTintedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 19.5,32.5 + parent: 55 + type: Transform +- uid: 2788 + type: WindowTintedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 19.5,33.5 + parent: 55 + type: Transform +- uid: 2789 + type: MedicalScanner + components: + - pos: 17.5,33.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + MedicalScanner-bodyContainer: !type:ContainerSlot {} + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 2790 + type: CloningPod + components: + - pos: 17.5,31.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + CloningPod-bodyContainer: !type:ContainerSlot {} + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 2791 + type: TableReinforced + components: + - pos: 19.5,35.5 + parent: 55 + type: Transform +- uid: 2792 + type: TableReinforced + components: + - pos: 34.5,42.5 + parent: 55 + type: Transform +- uid: 2793 + type: WindoorChemistryLocked + components: + - rot: 3.141592653589793 rad + pos: 19.5,35.5 + parent: 55 + type: Transform +- uid: 2794 + type: WindoorSecure + components: + - pos: 19.5,35.5 + parent: 55 + type: Transform +- uid: 2795 + type: WindoorSecure + components: + - rot: -1.5707963267948966 rad + pos: 34.5,42.5 + parent: 55 + type: Transform +- uid: 2796 + type: WindoorBrigLocked + components: + - rot: 1.5707963267948966 rad + pos: 34.5,42.5 + parent: 55 + type: Transform +- uid: 2797 + type: TableGlass + components: + - pos: 17.5,34.5 + parent: 55 + type: Transform +- uid: 2798 + type: VendingMachineWallMedical + components: + - pos: 22.5,35.5 + parent: 55 + type: Transform +- uid: 2799 + type: VendingMachineMedical + components: + - pos: 27.5,34.5 + parent: 55 + type: Transform +- uid: 2800 + type: VendingMachineMedical + components: + - pos: 26.5,33.5 + parent: 55 + type: Transform +- uid: 2801 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 22.5,31.5 + parent: 55 + type: Transform +- uid: 2802 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 22.5,32.5 + parent: 55 + type: Transform +- uid: 2803 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 22.5,33.5 + parent: 55 + type: Transform +- uid: 2804 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 23.5,33.5 + parent: 55 + type: Transform +- uid: 2805 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 23.5,32.5 + parent: 55 + type: Transform +- uid: 2806 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 23.5,31.5 + parent: 55 + type: Transform +- uid: 2807 + type: EmergencyRollerBed + components: + - pos: 19.913242,33.47151 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2808 + type: EmergencyRollerBed + components: + - pos: 19.913242,32.84651 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2809 + type: EmergencyRollerBed + components: + - pos: 19.881992,32.19026 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2810 + type: MedkitBruteFilled + components: + - pos: 17.350742,34.84651 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2811 + type: ComfyChair + components: + - rot: 3.141592653589793 rad + pos: 41.5,22.5 + parent: 55 + type: Transform +- uid: 2812 + type: ComfyChair + components: + - rot: 3.141592653589793 rad + pos: 39.5,20.5 + parent: 55 + type: Transform +- uid: 2813 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 40.5,21.5 + parent: 55 + type: Transform +- uid: 2814 + type: ComfyChair + components: + - pos: 39.5,22.5 + parent: 55 + type: Transform +- uid: 2815 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 38.5,21.5 + parent: 55 + type: Transform +- uid: 2816 + type: VendingMachineCoffee + components: + - name: Hot drinks machine + type: MetaData + - pos: 46.5,23.5 + parent: 55 + type: Transform +- uid: 2817 + type: MedkitBurnFilled + components: + - pos: 17.600742,34.53401 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2818 + type: LockerMedicineFilled + components: + - pos: 23.5,36.5 + parent: 55 + type: Transform +- uid: 2819 + type: LockerMedicineFilled + components: + - pos: 24.5,36.5 + parent: 55 + type: Transform +- uid: 2820 + type: LockerMedicalFilled + components: + - pos: 24.5,38.5 + parent: 55 + type: Transform +- uid: 2821 + type: LockerMedicalFilled + components: + - pos: 25.5,38.5 + parent: 55 + type: Transform +- uid: 2822 + type: LockerMedicalFilled + components: + - pos: 27.5,38.5 + parent: 55 + type: Transform +- uid: 2823 + type: LockerMedicalFilled + components: + - pos: 28.5,38.5 + parent: 55 + type: Transform +- uid: 2824 + type: LockerMedicalFilled + components: + - pos: 29.5,38.5 + parent: 55 + type: Transform +- uid: 2825 + type: WardrobeMedicalDoctorFilled + components: + - pos: 29.5,36.5 + parent: 55 + type: Transform +- uid: 2826 + type: LockerChiefMedicalOfficerFilled + components: + - pos: 26.5,38.5 + parent: 55 + type: Transform +- uid: 2827 + type: TableGlass + components: + - pos: 28.5,36.5 + parent: 55 + type: Transform +- uid: 2828 + type: TableGlass + components: + - pos: 27.5,36.5 + parent: 55 + type: Transform +- uid: 2829 + type: TableGlass + components: + - pos: 26.5,36.5 + parent: 55 + type: Transform +- uid: 2830 + type: MedkitBruteFilled + components: + - pos: 26.438868,36.553738 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2831 + type: MedkitBurnFilled + components: + - pos: 26.970118,36.834988 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2832 + type: MedkitBurnFilled + components: + - pos: 26.970118,36.522488 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2833 + type: MedkitOxygenFilled + components: + - pos: 27.501368,36.803738 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2834 + type: MedkitOxygenFilled + components: + - pos: 27.501368,36.522488 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2835 + type: MedkitRadiationFilled + components: + - pos: 28.063868,36.491238 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2836 + type: MedkitRadiationFilled + components: + - pos: 28.063868,36.772488 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2837 + type: MedkitToxinFilled + components: + - pos: 28.599234,36.459988 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2838 + type: MedkitToxinFilled + components: + - pos: 28.599234,36.741238 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2839 + type: chem_dispenser + components: + - pos: 18.5,38.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + ReagentDispenser-beaker: !type:ContainerSlot {} + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 2840 + type: CrateChemistrySupplies + components: + - pos: 20.5,36.5 + parent: 55 + type: Transform + - containers: + - EntityStorageComponent + type: Construction + - isPlaceable: False + type: PlaceableSurface +- uid: 2841 + type: WardrobeChemistryFilled + components: + - pos: 21.5,36.5 + parent: 55 + type: Transform +- uid: 2842 + type: VendingMachineSecDrobe + components: + - pos: 37.5,45.5 + parent: 55 + type: Transform +- uid: 2843 + type: ChairOfficeDark + components: + - rot: 1.5707963267948966 rad + pos: 36.5,42.5 + parent: 55 + type: Transform +- uid: 2844 + type: ChairOfficeDark + components: + - rot: 1.5707963267948966 rad + pos: 36.5,41.5 + parent: 55 + type: Transform +- uid: 2845 + type: ChairOfficeDark + components: + - pos: 35.5,41.5 + parent: 55 + type: Transform +- uid: 2846 + type: ChairOfficeDark + components: + - rot: -1.5707963267948966 rad + pos: 35.5,42.5 + parent: 55 + type: Transform +- uid: 2847 + type: chem_master + components: + - pos: 19.5,38.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + ChemMaster-beaker: !type:ContainerSlot {} + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer + - solutions: + buffer: + reagents: [] + type: SolutionContainerManager +- uid: 2848 + type: DrinkWhiskeyGlass + components: + - pos: 37.389053,41.23141 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 2849 + type: DrinkWhiskeyBottleFull + components: + - pos: 37.670303,42.98141 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 2850 + type: FoodDonutPlain + components: + - pos: 37.420303,41.60641 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2851 + type: FoodDonutPink + components: + - pos: 36.076553,40.51266 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2852 + type: FoodDonutPink + components: + - pos: 35.482803,40.76266 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2853 + type: FoodBoxDonut + components: + - pos: 37.076553,40.70016 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2854 + type: FoodBoxDonut + components: + - pos: 37.514053,42.35641 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2855 + type: TableReinforcedGlass + components: + - pos: 18.5,36.5 + parent: 55 + type: Transform +- uid: 2856 + type: LockerChemistryFilled + components: + - pos: 23.5,38.5 + parent: 55 + type: Transform +- uid: 2857 + type: TableReinforcedGlass + components: + - pos: 21.5,38.5 + parent: 55 + type: Transform +- uid: 2858 + type: TableReinforcedGlass + components: + - pos: 20.5,38.5 + parent: 55 + type: Transform +- uid: 2859 + type: Sink + components: + - rot: 1.5707963267948966 rad + pos: 43.5,47.5 + parent: 55 + type: Transform +- uid: 2860 + type: Sink + components: + - rot: 1.5707963267948966 rad + pos: 43.5,40.5 + parent: 55 + type: Transform +- uid: 2861 + type: Sink + components: + - rot: 1.5707963267948966 rad + pos: 39.5,40.5 + parent: 55 + type: Transform +- uid: 2862 + type: BoxBeaker + components: + - pos: 20.324379,38.741825 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2863 + type: BoxBeaker + components: + - pos: 20.605629,38.554325 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2864 + type: LargeBeaker + components: + - pos: 18.699379,36.773075 + parent: 55 + type: Transform + - solution: beaker + type: Drink + - canCollide: False + type: Physics +- uid: 2865 + type: Beaker + components: + - pos: 18.293129,36.741825 + parent: 55 + type: Transform + - solution: beaker + type: Drink + - canCollide: False + type: Physics +- uid: 2866 + type: Syringe + components: + - pos: 18.511879,36.554325 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2867 + type: BoxSyringe + components: + - pos: 21.105629,38.679325 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2868 + type: BoxPillCanister + components: + - pos: 21.636879,38.554325 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2869 + type: TableReinforced + components: + - pos: 42.5,36.5 + parent: 55 + type: Transform +- uid: 2870 + type: TableReinforced + components: + - pos: 43.5,36.5 + parent: 55 + type: Transform +- uid: 2871 + type: TableReinforced + components: + - pos: 44.5,36.5 + parent: 55 + type: Transform +- uid: 2872 + type: TableReinforced + components: + - pos: 45.5,36.5 + parent: 55 + type: Transform +- uid: 2873 + type: TableReinforced + components: + - pos: 46.5,36.5 + parent: 55 + type: Transform +- uid: 2874 + type: TableReinforced + components: + - pos: 41.5,37.5 + parent: 55 + type: Transform +- uid: 2875 + type: TableReinforced + components: + - pos: 41.5,38.5 + parent: 55 + type: Transform +- uid: 2876 + type: ClosetChefFilled + components: + - pos: 45.5,38.5 + parent: 55 + type: Transform +- uid: 2877 + type: VendingMachineDinnerware + components: + - name: Dinnerware + type: MetaData + - pos: 46.5,38.5 + parent: 55 + type: Transform +- uid: 2878 + type: TableReinforced + components: + - pos: 44.5,38.5 + parent: 55 + type: Transform +- uid: 2879 + type: TableReinforced + components: + - pos: 43.5,38.5 + parent: 55 + type: Transform +- uid: 2880 + type: KitchenMicrowave + components: + - pos: 43.5,38.5 + parent: 55 + type: Transform + - containers: + microwave_entity_container: !type:Container + ents: [] + type: ContainerContainer +- uid: 2881 + type: KitchenReagentGrinder + components: + - pos: 44.5,38.5 + parent: 55 + type: Transform + - containers: + ReagentGrinder-reagentContainerContainer: !type:ContainerSlot {} + ReagentGrinder-entityContainerContainer: !type:Container + ents: [] + type: ContainerContainer +- uid: 2882 + type: FoodBreadBananaSlice + components: + - pos: 44.242214,36.8436 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2883 + type: FoodBreadBananaSlice + components: + - pos: 45.867214,36.62485 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2884 + type: FoodBreadBananaSlice + components: + - pos: 41.398464,37.87485 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2885 + type: FoodBurgerCheese + components: + - pos: 42.648464,36.68735 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2886 + type: FoodBurgerCheese + components: + - pos: 44.992214,36.5936 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2887 + type: FoodBurgerCheese + components: + - pos: 41.585964,38.3436 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2888 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 35.5,38.5 + parent: 55 + type: Transform +- uid: 2889 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 35.5,37.5 + parent: 55 + type: Transform +- uid: 2890 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 37.5,38.5 + parent: 55 + type: Transform +- uid: 2891 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 37.5,37.5 + parent: 55 + type: Transform +- uid: 2892 + type: ComfyChair + components: + - rot: 3.141592653589793 rad + pos: 38.5,37.5 + parent: 55 + type: Transform +- uid: 2893 + type: ComfyChair + components: + - rot: 3.141592653589793 rad + pos: 39.5,37.5 + parent: 55 + type: Transform +- uid: 2894 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 36.5,35.5 + parent: 55 + type: Transform +- uid: 2895 + type: ComfyChair + components: + - rot: 3.141592653589793 rad + pos: 37.5,34.5 + parent: 55 + type: Transform +- uid: 2896 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 38.5,33.5 + parent: 55 + type: Transform +- uid: 2897 + type: ComfyChair + components: + - rot: 3.141592653589793 rad + pos: 39.5,32.5 + parent: 55 + type: Transform +- uid: 2898 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 41.5,34.5 + parent: 55 + type: Transform +- uid: 2899 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 41.5,33.5 + parent: 55 + type: Transform +- uid: 2900 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 43.5,33.5 + parent: 55 + type: Transform +- uid: 2901 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 43.5,34.5 + parent: 55 + type: Transform +- uid: 2902 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 45.5,34.5 + parent: 55 + type: Transform +- uid: 2903 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 45.5,33.5 + parent: 55 + type: Transform +- uid: 2904 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 47.5,34.5 + parent: 55 + type: Transform +- uid: 2905 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 47.5,33.5 + parent: 55 + type: Transform +- uid: 2906 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 40.5,31.5 + parent: 55 + type: Transform +- uid: 2907 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 42.5,31.5 + parent: 55 + type: Transform +- uid: 2908 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 45.5,31.5 + parent: 55 + type: Transform +- uid: 2909 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 47.5,31.5 + parent: 55 + type: Transform +- uid: 2910 + type: TableGlass + components: + - pos: 41.5,31.5 + parent: 55 + type: Transform +- uid: 2911 + type: TableGlass + components: + - pos: 39.5,33.5 + parent: 55 + type: Transform +- uid: 2912 + type: TableGlass + components: + - pos: 37.5,35.5 + parent: 55 + type: Transform +- uid: 2913 + type: TableGlass + components: + - pos: 36.5,37.5 + parent: 55 + type: Transform +- uid: 2914 + type: TableGlass + components: + - pos: 36.5,38.5 + parent: 55 + type: Transform +- uid: 2915 + type: TableGlass + components: + - pos: 38.5,38.5 + parent: 55 + type: Transform +- uid: 2916 + type: TableGlass + components: + - pos: 39.5,38.5 + parent: 55 + type: Transform +- uid: 2917 + type: TableGlass + components: + - pos: 42.5,34.5 + parent: 55 + type: Transform +- uid: 2918 + type: TableGlass + components: + - pos: 42.5,33.5 + parent: 55 + type: Transform +- uid: 2919 + type: TableGlass + components: + - pos: 46.5,33.5 + parent: 55 + type: Transform +- uid: 2920 + type: TableGlass + components: + - pos: 46.5,34.5 + parent: 55 + type: Transform +- uid: 2921 + type: TableGlass + components: + - pos: 46.5,31.5 + parent: 55 + type: Transform +- uid: 2922 + type: VendingMachineDiscount + components: + - pos: 45.5,25.5 + parent: 55 + type: Transform +- uid: 2923 + type: VendingMachineSnack + components: + - pos: 43.5,25.5 + parent: 55 + type: Transform +- uid: 2924 + type: VendingMachineCola + components: + - pos: 46.5,24.5 + parent: 55 + type: Transform +- uid: 2925 + type: ComfyChair + components: + - pos: 41.5,24.5 + parent: 55 + type: Transform +- uid: 2926 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 42.5,23.5 + parent: 55 + type: Transform +- uid: 2927 + type: ComfyChair + components: + - rot: 3.141592653589793 rad + pos: 43.5,19.5 + parent: 55 + type: Transform +- uid: 2928 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 44.5,20.5 + parent: 55 + type: Transform +- uid: 2929 + type: ComfyChair + components: + - pos: 43.5,21.5 + parent: 55 + type: Transform +- uid: 2930 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 42.5,20.5 + parent: 55 + type: Transform +- uid: 2931 + type: TableGlass + components: + - pos: 39.5,21.5 + parent: 55 + type: Transform +- uid: 2932 + type: TableGlass + components: + - pos: 41.5,23.5 + parent: 55 + type: Transform +- uid: 2933 + type: TableGlass + components: + - pos: 43.5,20.5 + parent: 55 + type: Transform +- uid: 2934 + type: PottedPlantRandom + components: + - pos: 44.5,23.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2935 + type: PottedPlantRandom + components: + - pos: 40.5,25.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2936 + type: PottedPlantRandom + components: + - pos: 37.5,22.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2937 + type: PottedPlantRandom + components: + - pos: 36.5,20.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2938 + type: PottedPlantRandom + components: + - pos: 41.5,18.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2939 + type: PottedPlantRandom + components: + - pos: 46.5,20.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2940 + type: PottedPlantRandom + components: + - pos: 47.5,24.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2941 + type: TableReinforced + components: + - pos: 35.5,40.5 + parent: 55 + type: Transform +- uid: 2942 + type: TableReinforced + components: + - pos: 36.5,40.5 + parent: 55 + type: Transform +- uid: 2943 + type: TableReinforced + components: + - pos: 37.5,40.5 + parent: 55 + type: Transform +- uid: 2944 + type: TableReinforced + components: + - pos: 37.5,41.5 + parent: 55 + type: Transform +- uid: 2945 + type: TableReinforced + components: + - pos: 37.5,42.5 + parent: 55 + type: Transform +- uid: 2946 + type: LockerEvidence + components: + - pos: 41.5,46.5 + parent: 55 + type: Transform +- uid: 2947 + type: LockerEvidence + components: + - pos: 41.5,45.5 + parent: 55 + type: Transform +- uid: 2948 + type: LockerWardenFilled + components: + - pos: 39.5,46.5 + parent: 55 + type: Transform +- uid: 2949 + type: Bed + components: + - pos: 41.5,40.5 + parent: 55 + type: Transform +- uid: 2950 + type: Bed + components: + - pos: 45.5,40.5 + parent: 55 + type: Transform +- uid: 2951 + type: Bed + components: + - pos: 45.5,47.5 + parent: 55 + type: Transform +- uid: 2952 + type: BedsheetOrange + components: + - pos: 41.5,40.5 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2953 + type: BedsheetOrange + components: + - pos: 45.5,40.5 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2954 + type: BedsheetOrange + components: + - pos: 45.5,47.5 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2955 + type: WardrobePrisonFilled + components: + - pos: 45.5,41.5 + parent: 55 + type: Transform +- uid: 2956 + type: VendingMachineChang + components: + - pos: 39.5,41.5 + parent: 55 + type: Transform + - sprite: Structures/Machines/VendingMachines/cigs.rsi + type: Sprite +- uid: 2957 + type: WardrobePrisonFilled + components: + - pos: 45.5,46.5 + parent: 55 + type: Transform +- uid: 2958 + type: VendingMachineChang + components: + - pos: 43.5,41.5 + parent: 55 + type: Transform + - sprite: Structures/Machines/VendingMachines/cigs.rsi + type: Sprite +- uid: 2959 + type: VendingMachineChang + components: + - pos: 43.5,46.5 + parent: 55 + type: Transform + - sprite: Structures/Machines/VendingMachines/cigs.rsi + type: Sprite +- uid: 2960 + type: LockerSecurityFilled + components: + - pos: 25.5,41.5 + parent: 55 + type: Transform +- uid: 2961 + type: LockerSecurityFilled + components: + - pos: 25.5,40.5 + parent: 55 + type: Transform +- uid: 2962 + type: LockerSecurityFilled + components: + - pos: 29.5,41.5 + parent: 55 + type: Transform +- uid: 2963 + type: LockerSecurityFilled + components: + - pos: 29.5,40.5 + parent: 55 + type: Transform +- uid: 2964 + type: LockerSecurityFilled + components: + - pos: 27.5,41.5 + parent: 55 + type: Transform +- uid: 2965 + type: LockerSecurityFilled + components: + - pos: 27.5,40.5 + parent: 55 + type: Transform +- uid: 2966 + type: VendingMachineSecDrobe + components: + - pos: 29.5,45.5 + parent: 55 + type: Transform +- uid: 2967 + type: VendingMachineSec + components: + - pos: 28.5,45.5 + parent: 55 + type: Transform +- uid: 2968 + type: VendingMachineSec + components: + - pos: 27.5,45.5 + parent: 55 + type: Transform +- uid: 2969 + type: Rack + components: + - pos: 25.5,42.5 + parent: 55 + type: Transform +- uid: 2970 + type: Rack + components: + - pos: 25.5,43.5 + parent: 55 + type: Transform +- uid: 2971 + type: WeaponPistolMk58 + components: + - pos: 25.419039,42.66891 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2972 + type: WeaponPistolMk58 + components: + - pos: 25.700289,42.35641 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2973 + type: WeaponPistolMk58 + components: + - pos: 25.700289,43.32516 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2974 + type: WeaponPistolMk58 + components: + - pos: 25.419039,43.63766 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2975 + type: MagazinePistolHighVelocity + components: + - pos: 25.249691,42.371334 + parent: 55 + type: Transform + - unspawnedCount: 10 + type: BallisticAmmoProvider + - canCollide: False + type: Physics +- uid: 2976 + type: MagazinePistolHighVelocity + components: + - pos: 25.812191,42.308834 + parent: 55 + type: Transform + - unspawnedCount: 10 + type: BallisticAmmoProvider + - canCollide: False + type: Physics +- uid: 2977 + type: MagazinePistolHighVelocity + components: + - pos: 25.780941,43.340084 + parent: 55 + type: Transform + - unspawnedCount: 10 + type: BallisticAmmoProvider + - canCollide: False + type: Physics +- uid: 2978 + type: MagazinePistolHighVelocity + components: + - pos: 25.280941,43.433834 + parent: 55 + type: Transform + - unspawnedCount: 10 + type: BallisticAmmoProvider + - canCollide: False + type: Physics +- uid: 2979 + type: TableReinforced + components: + - pos: 27.5,42.5 + parent: 55 + type: Transform +- uid: 2980 + type: TableReinforced + components: + - pos: 27.5,43.5 + parent: 55 + type: Transform +- uid: 2981 + type: Stunbaton + components: + - pos: 27.766798,42.340084 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2982 + type: Stunbaton + components: + - pos: 27.485548,42.340084 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2983 + type: Stunbaton + components: + - pos: 27.298048,42.621334 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2984 + type: WeaponTaser + components: + - pos: 27.485548,43.777584 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2985 + type: WeaponCapacitorRecharger + components: + - pos: 27.5,43.5 + parent: 55 + type: Transform + - containers: + charger-slot: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2986 + type: WeaponTaser + components: + - pos: 27.485548,43.183834 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2987 + type: Rack + components: + - pos: 25.5,45.5 + parent: 55 + type: Transform +- uid: 2988 + type: Rack + components: + - pos: 26.5,45.5 + parent: 55 + type: Transform +- uid: 2989 + type: WindoorSecurityLocked + components: + - rot: 3.141592653589793 rad + pos: 25.5,44.5 + parent: 55 + type: Transform +- uid: 2990 + type: WindoorSecurityLocked + components: + - rot: 3.141592653589793 rad + pos: 26.5,44.5 + parent: 55 + type: Transform +- uid: 2991 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 27.5,45.5 + parent: 55 + type: Transform +- uid: 2992 + type: ClothingOuterHardsuitSecurity + components: + - pos: 25.371721,45.527584 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + toggleable-clothing: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2993 + type: ClothingOuterHardsuitSecurity + components: + - pos: 26.340471,45.558834 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + toggleable-clothing: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2994 + type: AirTankFilled + components: + - pos: 25.652971,45.496334 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2995 + type: AirTankFilled + components: + - pos: 26.652971,45.433834 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 2996 + type: TableReinforced + components: + - pos: 21.5,44.5 + parent: 55 + type: Transform +- uid: 2997 + type: TableReinforced + components: + - pos: 21.5,45.5 + parent: 55 + type: Transform +- uid: 2998 + type: TableReinforced + components: + - pos: 21.5,46.5 + parent: 55 + type: Transform +- uid: 2999 + type: Rack + components: + - pos: 19.5,47.5 + parent: 55 + type: Transform +- uid: 3000 + type: Rack + components: + - pos: 19.5,46.5 + parent: 55 + type: Transform +- uid: 3001 + type: Rack + components: + - pos: 23.5,47.5 + parent: 55 + type: Transform +- uid: 3002 + type: Rack + components: + - pos: 23.5,46.5 + parent: 55 + type: Transform +- uid: 3003 + type: Rack + components: + - pos: 23.5,43.5 + parent: 55 + type: Transform +- uid: 3004 + type: Rack + components: + - pos: 19.5,43.5 + parent: 55 + type: Transform +- uid: 3005 + type: WeaponShotgunEnforcer + components: + - pos: 19.516994,43.72559 + parent: 55 + type: Transform + - unspawnedCount: 7 + type: BallisticAmmoProvider + - canCollide: False + type: Physics + - containers: + ballistic-ammo: !type:Container + ents: [] + type: ContainerContainer +- uid: 3006 + type: WeaponShotgunEnforcer + components: + - pos: 23.454494,43.66309 + parent: 55 + type: Transform + - unspawnedCount: 7 + type: BallisticAmmoProvider + - canCollide: False + type: Physics + - containers: + ballistic-ammo: !type:Container + ents: [] + type: ContainerContainer +- uid: 3007 + type: BoxShotgunSlug + components: + - pos: 19.579494,43.38184 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3008 + type: BoxShotgunSlug + components: + - pos: 23.610744,43.31934 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3009 + type: WeaponRifleLecter + components: + - pos: 19.533005,47.69004 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3010 + type: WeaponRifleLecter + components: + - pos: 19.595505,47.37754 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3011 + type: WeaponRifleLecter + components: + - pos: 23.376755,47.69004 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3012 + type: WeaponRifleLecter + components: + - pos: 23.595505,47.37754 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3013 + type: MagazineRifleHighVelocity + components: + - pos: 19.269817,46.724854 + parent: 55 + type: Transform + - unspawnedCount: 25 + type: BallisticAmmoProvider + - canCollide: False + type: Physics +- uid: 3014 + type: MagazineRifleHighVelocity + components: + - pos: 19.269817,46.318604 + parent: 55 + type: Transform + - unspawnedCount: 25 + type: BallisticAmmoProvider + - canCollide: False + type: Physics +- uid: 3015 + type: MagazineRifleHighVelocity + components: + - pos: 19.644817,46.724854 + parent: 55 + type: Transform + - unspawnedCount: 25 + type: BallisticAmmoProvider + - canCollide: False + type: Physics +- uid: 3016 + type: MagazineRifleHighVelocity + components: + - pos: 19.644817,46.287354 + parent: 55 + type: Transform + - unspawnedCount: 25 + type: BallisticAmmoProvider + - canCollide: False + type: Physics +- uid: 3017 + type: MagazineRifleHighVelocity + components: + - pos: 23.332317,46.756104 + parent: 55 + type: Transform + - unspawnedCount: 25 + type: BallisticAmmoProvider + - canCollide: False + type: Physics +- uid: 3018 + type: MagazineRifleHighVelocity + components: + - pos: 23.332317,46.287354 + parent: 55 + type: Transform + - unspawnedCount: 25 + type: BallisticAmmoProvider + - canCollide: False + type: Physics +- uid: 3019 + type: MagazineRifleHighVelocity + components: + - pos: 23.676067,46.756104 + parent: 55 + type: Transform + - unspawnedCount: 25 + type: BallisticAmmoProvider + - canCollide: False + type: Physics +- uid: 3020 + type: MagazineRifleHighVelocity + components: + - pos: 23.676067,46.287354 + parent: 55 + type: Transform + - unspawnedCount: 25 + type: BallisticAmmoProvider + - canCollide: False + type: Physics +- uid: 3021 + type: WeaponLaserCarbine + components: + - pos: 21.551067,46.693604 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3022 + type: WeaponLaserCarbine + components: + - pos: 21.519817,46.224854 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3023 + type: WeaponLaserCarbine + components: + - pos: 21.519817,44.506104 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3024 + type: WeaponLaserCarbine + components: + - pos: 21.551067,44.943604 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3025 + type: WeaponCapacitorRecharger + components: + - pos: 21.5,45.5 + parent: 55 + type: Transform + - containers: + charger-slot: !type:ContainerSlot {} + type: ContainerContainer +- uid: 3026 + type: TableReinforcedGlass + components: + - pos: 19.5,44.5 + parent: 55 + type: Transform +- uid: 3027 + type: TableReinforcedGlass + components: + - pos: 19.5,45.5 + parent: 55 + type: Transform +- uid: 3028 + type: ClosetBombFilled + components: + - pos: 23.5,45.5 + parent: 55 + type: Transform +- uid: 3029 + type: ClothingOuterArmorRiot + components: + - pos: 19.636213,45.64704 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3030 + type: ClothingOuterArmorRiot + components: + - pos: 19.604963,45.11579 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3031 + type: ClothingOuterArmorRiot + components: + - pos: 19.604963,44.58454 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3032 + type: ClothingOuterArmorRiot + components: + - pos: 19.323713,44.58454 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3033 + type: ClothingOuterArmorRiot + components: + - pos: 19.292463,45.11579 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3034 + type: ClothingOuterArmorRiot + components: + - pos: 19.198713,45.74079 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3035 + type: ComputerSurveillanceCameraMonitor + components: + - pos: 20.5,41.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3036 + type: SurveillanceCameraRouterSecurity + components: + - pos: 19.5,41.5 + parent: 55 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 3037 + type: ComputerCriminalRecords + components: + - rot: 1.5707963267948966 rad + pos: 19.5,40.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3038 + type: ChairOfficeDark + components: + - rot: -1.5707963267948966 rad + pos: 20.5,40.5 + parent: 55 + type: Transform +- uid: 3039 + type: TableWood + components: + - pos: 23.5,40.5 + parent: 55 + type: Transform +- uid: 3040 + type: TableWood + components: + - pos: 23.5,41.5 + parent: 55 + type: Transform +- uid: 3041 + type: LampGold + components: + - pos: 23.729963,41.730354 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3042 + type: Paper + components: + - pos: 23.604963,40.730354 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3043 + type: Paper + components: + - pos: 23.667463,41.042854 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3044 + type: Pen + components: + - pos: 23.323713,41.011604 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3045 + type: LockerHeadOfSecurityFilled + components: + - pos: 22.5,41.5 + parent: 55 + type: Transform +- uid: 3046 + type: ComputerShuttle + components: + - pos: 32.5,52.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3047 + type: ComputerId + components: + - pos: 31.5,52.5 + parent: 55 + type: Transform + - containers: + IdCardConsole-privilegedId: !type:ContainerSlot {} + IdCardConsole-targetId: !type:ContainerSlot {} + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3048 + type: ComputerComms + components: + - pos: 33.5,52.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3049 + type: ComputerId + components: + - rot: 1.5707963267948966 rad + pos: 29.5,50.5 + parent: 55 + type: Transform + - containers: + IdCardConsole-privilegedId: !type:ContainerSlot {} + IdCardConsole-targetId: !type:ContainerSlot {} + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3050 + type: ComputerComms + components: + - pos: 30.5,51.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3051 + type: AlwaysPoweredLightLED + components: + - rot: 1.5707963267948966 rad + pos: 17.5,22.5 + parent: 55 + type: Transform +- uid: 3052 + type: AlwaysPoweredLightLED + components: + - pos: 22.5,25.5 + parent: 55 + type: Transform +- uid: 3053 + type: ComputerSolarControl + components: + - rot: -1.5707963267948966 rad + pos: 33.5,48.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3054 + type: ComputerPowerMonitoring + components: + - rot: 1.5707963267948966 rad + pos: 31.5,48.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3055 + type: ComputerRadar + components: + - pos: 32.5,49.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3056 + type: ComputerCrewMonitoring + components: + - rot: -1.5707963267948966 rad + pos: 36.5,47.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3057 + type: ComputerMedicalRecords + components: + - rot: 1.5707963267948966 rad + pos: 28.5,47.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3058 + type: ComputerFrame + components: + - rot: 1.5707963267948966 rad + pos: 26.5,48.5 + parent: 55 + type: Transform +- uid: 3059 + type: ComputerComms + components: + - pos: 27.5,49.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3060 + type: ComputerComms + components: + - rot: -1.5707963267948966 rad + pos: 38.5,48.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3061 + type: ComputerFrame + components: + - pos: 37.5,49.5 + parent: 55 + type: Transform +- uid: 3062 + type: StatueVenusBlue + components: + - pos: 2.5,26.5 + parent: 55 + type: Transform +- uid: 3063 + type: ComputerFrame + components: + - pos: 30.5,55.5 + parent: 55 + type: Transform +- uid: 3064 + type: ComputerFrame + components: + - pos: 31.5,55.5 + parent: 55 + type: Transform +- uid: 3065 + type: BaseResearchAndDevelopmentPointSource + components: + - pos: 32.5,55.5 + parent: 55 + type: Transform +- uid: 3066 + type: ComputerFrame + components: + - pos: 33.5,55.5 + parent: 55 + type: Transform +- uid: 3067 + type: ComputerComms + components: + - pos: 34.5,55.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3068 + type: ComputerFrame + components: + - pos: 35.5,55.5 + parent: 55 + type: Transform +- uid: 3069 + type: ComputerFrame + components: + - rot: -1.5707963267948966 rad + pos: 42.5,52.5 + parent: 55 + type: Transform +- uid: 3070 + type: StatueVenusRed + components: + - pos: 2.5,31.5 + parent: 55 + type: Transform +- uid: 3071 + type: ComputerFrame + components: + - pos: 38.5,54.5 + parent: 55 + type: Transform +- uid: 3072 + type: ComputerComms + components: + - rot: -1.5707963267948966 rad + pos: 39.5,53.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3073 + type: ComputerFrame + components: + - pos: 40.5,53.5 + parent: 55 + type: Transform +- uid: 3074 + type: ComputerComms + components: + - pos: 41.5,53.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3075 + type: ComputerFrame + components: + - rot: -1.5707963267948966 rad + pos: 36.5,54.5 + parent: 55 + type: Transform +- uid: 3076 + type: ComputerFrame + components: + - pos: 43.5,52.5 + parent: 55 + type: Transform +- uid: 3077 + type: ComputerFrame + components: + - pos: 44.5,52.5 + parent: 55 + type: Transform +- uid: 3078 + type: ComputerComms + components: + - rot: -1.5707963267948966 rad + pos: 45.5,51.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3079 + type: ComputerCargoOrders + components: + - pos: 23.5,50.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3080 + type: ComputerFrame + components: + - rot: 1.5707963267948966 rad + pos: 22.5,52.5 + parent: 55 + type: Transform +- uid: 3081 + type: ComputerComms + components: + - pos: 27.5,54.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3082 + type: ComputerFrame + components: + - pos: 26.5,54.5 + parent: 55 + type: Transform +- uid: 3083 + type: ComputerFrame + components: + - rot: 1.5707963267948966 rad + pos: 25.5,53.5 + parent: 55 + type: Transform +- uid: 3084 + type: ComputerFrame + components: + - pos: 24.5,53.5 + parent: 55 + type: Transform +- uid: 3085 + type: ComputerCargoOrders + components: + - pos: 23.5,53.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3086 + type: ComputerFrame + components: + - rot: 1.5707963267948966 rad + pos: 28.5,54.5 + parent: 55 + type: Transform +- uid: 3087 + type: ComputerCargoOrders + components: + - pos: 29.5,55.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3088 + type: ComputerFrame + components: + - pos: 20.5,52.5 + parent: 55 + type: Transform +- uid: 3089 + type: ComputerCargoOrders + components: + - pos: 34.5,51.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3090 + type: ComputerFrame + components: + - rot: 1.5707963267948966 rad + pos: 19.5,50.5 + parent: 55 + type: Transform +- uid: 3091 + type: ComputerComms + components: + - pos: 22.5,50.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3092 + type: ComputerCargoShuttle + components: + - rot: -1.5707963267948966 rad + pos: 35.5,50.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3093 + type: ComputerFrame + components: + - pos: 24.5,50.5 + parent: 55 + type: Transform +- uid: 3094 + type: ComputerFrame + components: + - pos: 42.5,50.5 + parent: 55 + type: Transform +- uid: 3095 + type: ComputerCargoShuttle + components: + - rot: 3.141592653589793 rad + pos: 34.5,52.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3096 + type: ComputerCargoShuttle + components: + - pos: 37.5,51.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3097 + type: ComputerCargoShuttle + components: + - pos: 41.5,50.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3098 + type: ComputerFrame + components: + - pos: 38.5,51.5 + parent: 55 + type: Transform +- uid: 3099 + type: ComputerComms + components: + - pos: 26.5,51.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3100 + type: ComputerFrame + components: + - pos: 27.5,51.5 + parent: 55 + type: Transform +- uid: 3101 + type: ComputerComms + components: + - pos: 29.5,52.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3102 + type: ComputerFrame + components: + - pos: 35.5,52.5 + parent: 55 + type: Transform +- uid: 3103 + type: ComputerCargoOrders + components: + - pos: 40.5,50.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3104 + type: ComputerFrame + components: + - rot: 3.141592653589793 rad + pos: 30.5,52.5 + parent: 55 + type: Transform +- uid: 3105 + type: ComputerFrame + components: + - rot: 1.5707963267948966 rad + pos: 33.5,53.5 + parent: 55 + type: Transform +- uid: 3106 + type: ComputerCargoOrders + components: + - rot: -1.5707963267948966 rad + pos: 45.5,50.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3107 + type: ResearchAndDevelopmentServer + components: + - pos: 32.5,53.5 + parent: 55 + type: Transform +- uid: 3108 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 32.5,51.5 + parent: 55 + type: Transform +- uid: 3109 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 34.5,50.5 + parent: 55 + type: Transform +- uid: 3110 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 30.5,50.5 + parent: 55 + type: Transform +- uid: 3111 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 32.5,48.5 + parent: 55 + type: Transform +- uid: 3112 + type: ChairPilotSeat + components: + - rot: 1.5707963267948966 rad + pos: 35.5,47.5 + parent: 55 + type: Transform +- uid: 3113 + type: ChairPilotSeat + components: + - rot: -1.5707963267948966 rad + pos: 29.5,47.5 + parent: 55 + type: Transform +- uid: 3114 + type: ChairPilotSeat + components: + - rot: -1.5707963267948966 rad + pos: 27.5,48.5 + parent: 55 + type: Transform +- uid: 3115 + type: ChairPilotSeat + components: + - rot: 1.5707963267948966 rad + pos: 37.5,48.5 + parent: 55 + type: Transform +- uid: 3116 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 29.5,51.5 + parent: 55 + type: Transform +- uid: 3117 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 35.5,51.5 + parent: 55 + type: Transform +- uid: 3118 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 37.5,50.5 + parent: 55 + type: Transform +- uid: 3119 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 38.5,50.5 + parent: 55 + type: Transform +- uid: 3120 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 42.5,49.5 + parent: 55 + type: Transform +- uid: 3121 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 41.5,49.5 + parent: 55 + type: Transform +- uid: 3122 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 40.5,49.5 + parent: 55 + type: Transform +- uid: 3123 + type: ChairPilotSeat + components: + - rot: 1.5707963267948966 rad + pos: 44.5,50.5 + parent: 55 + type: Transform +- uid: 3124 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 44.5,51.5 + parent: 55 + type: Transform +- uid: 3125 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 43.5,51.5 + parent: 55 + type: Transform +- uid: 3126 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 41.5,52.5 + parent: 55 + type: Transform +- uid: 3127 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 40.5,52.5 + parent: 55 + type: Transform +- uid: 3128 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 38.5,53.5 + parent: 55 + type: Transform +- uid: 3129 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 37.5,53.5 + parent: 55 + type: Transform +- uid: 3130 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 35.5,54.5 + parent: 55 + type: Transform +- uid: 3131 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 34.5,54.5 + parent: 55 + type: Transform +- uid: 3132 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 33.5,54.5 + parent: 55 + type: Transform +- uid: 3133 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 31.5,54.5 + parent: 55 + type: Transform +- uid: 3134 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 30.5,54.5 + parent: 55 + type: Transform +- uid: 3135 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 29.5,54.5 + parent: 55 + type: Transform +- uid: 3136 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 26.5,53.5 + parent: 55 + type: Transform +- uid: 3137 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 27.5,53.5 + parent: 55 + type: Transform +- uid: 3138 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 23.5,52.5 + parent: 55 + type: Transform +- uid: 3139 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 24.5,52.5 + parent: 55 + type: Transform +- uid: 3140 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 21.5,51.5 + parent: 55 + type: Transform +- uid: 3141 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 20.5,51.5 + parent: 55 + type: Transform +- uid: 3142 + type: ChairPilotSeat + components: + - rot: -1.5707963267948966 rad + pos: 20.5,50.5 + parent: 55 + type: Transform +- uid: 3143 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 22.5,49.5 + parent: 55 + type: Transform +- uid: 3144 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 23.5,49.5 + parent: 55 + type: Transform +- uid: 3145 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 24.5,49.5 + parent: 55 + type: Transform +- uid: 3146 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 26.5,50.5 + parent: 55 + type: Transform +- uid: 3147 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 27.5,50.5 + parent: 55 + type: Transform +- uid: 3148 + type: ChairPilotSeat + components: + - rot: 1.5707963267948966 rad + pos: 30.5,53.5 + parent: 55 + type: Transform +- uid: 3149 + type: ChairPilotSeat + components: + - rot: -1.5707963267948966 rad + pos: 34.5,53.5 + parent: 55 + type: Transform +- uid: 3150 + type: TableReinforced + components: + - pos: 63.5,27.5 + parent: 55 + type: Transform +- uid: 3151 + type: TableReinforced + components: + - pos: 64.5,27.5 + parent: 55 + type: Transform +- uid: 3152 + type: TableReinforced + components: + - pos: 65.5,27.5 + parent: 55 + type: Transform +- uid: 3153 + type: TableReinforced + components: + - pos: 66.5,27.5 + parent: 55 + type: Transform +- uid: 3154 + type: TableReinforced + components: + - pos: 67.5,27.5 + parent: 55 + type: Transform +- uid: 3155 + type: TableReinforced + components: + - pos: 68.5,27.5 + parent: 55 + type: Transform +- uid: 3156 + type: TableReinforced + components: + - pos: 68.5,28.5 + parent: 55 + type: Transform +- uid: 3157 + type: TableReinforced + components: + - pos: 68.5,29.5 + parent: 55 + type: Transform +- uid: 3158 + type: TableReinforced + components: + - pos: 67.5,29.5 + parent: 55 + type: Transform +- uid: 3159 + type: TableReinforced + components: + - pos: 66.5,29.5 + parent: 55 + type: Transform +- uid: 3160 + type: TableReinforced + components: + - pos: 65.5,29.5 + parent: 55 + type: Transform +- uid: 3161 + type: TableReinforced + components: + - pos: 64.5,29.5 + parent: 55 + type: Transform +- uid: 3162 + type: TableReinforced + components: + - pos: 63.5,29.5 + parent: 55 + type: Transform +- uid: 3163 + type: TableGlass + components: + - pos: 63.5,28.5 + parent: 55 + type: Transform +- uid: 3164 + type: TableReinforced + components: + - pos: 62.5,27.5 + parent: 55 + type: Transform +- uid: 3165 + type: TableReinforced + components: + - pos: 62.5,28.5 + parent: 55 + type: Transform +- uid: 3166 + type: TableReinforced + components: + - pos: 62.5,29.5 + parent: 55 + type: Transform +- uid: 3167 + type: TableGlass + components: + - pos: 64.5,28.5 + parent: 55 + type: Transform +- uid: 3168 + type: TableGlass + components: + - pos: 65.5,28.5 + parent: 55 + type: Transform +- uid: 3169 + type: TableGlass + components: + - pos: 66.5,28.5 + parent: 55 + type: Transform +- uid: 3170 + type: TableGlass + components: + - pos: 67.5,28.5 + parent: 55 + type: Transform +- uid: 3171 + type: ChairPilotSeat + components: + - rot: 1.5707963267948966 rad + pos: 61.5,29.5 + parent: 55 + type: Transform +- uid: 3172 + type: ChairPilotSeat + components: + - rot: 1.5707963267948966 rad + pos: 61.5,28.5 + parent: 55 + type: Transform +- uid: 3173 + type: ChairPilotSeat + components: + - rot: 1.5707963267948966 rad + pos: 61.5,27.5 + parent: 55 + type: Transform +- uid: 3174 + type: ChairPilotSeat + components: + - pos: 62.5,30.5 + parent: 55 + type: Transform +- uid: 3175 + type: ChairPilotSeat + components: + - pos: 63.5,30.5 + parent: 55 + type: Transform +- uid: 3176 + type: ChairPilotSeat + components: + - pos: 64.5,30.5 + parent: 55 + type: Transform +- uid: 3177 + type: ChairPilotSeat + components: + - pos: 65.5,30.5 + parent: 55 + type: Transform +- uid: 3178 + type: ChairPilotSeat + components: + - pos: 66.5,30.5 + parent: 55 + type: Transform +- uid: 3179 + type: ChairPilotSeat + components: + - pos: 67.5,30.5 + parent: 55 + type: Transform +- uid: 3180 + type: ChairPilotSeat + components: + - pos: 68.5,30.5 + parent: 55 + type: Transform +- uid: 3181 + type: ChairPilotSeat + components: + - rot: -1.5707963267948966 rad + pos: 69.5,29.5 + parent: 55 + type: Transform +- uid: 3182 + type: ChairPilotSeat + components: + - rot: -1.5707963267948966 rad + pos: 69.5,28.5 + parent: 55 + type: Transform +- uid: 3183 + type: ChairPilotSeat + components: + - rot: -1.5707963267948966 rad + pos: 69.5,27.5 + parent: 55 + type: Transform +- uid: 3184 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 68.5,26.5 + parent: 55 + type: Transform +- uid: 3185 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 67.5,26.5 + parent: 55 + type: Transform +- uid: 3186 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 66.5,26.5 + parent: 55 + type: Transform +- uid: 3187 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 65.5,26.5 + parent: 55 + type: Transform +- uid: 3188 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 64.5,26.5 + parent: 55 + type: Transform +- uid: 3189 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 63.5,26.5 + parent: 55 + type: Transform +- uid: 3190 + type: ChairPilotSeat + components: + - rot: 3.141592653589793 rad + pos: 62.5,26.5 + parent: 55 + type: Transform +- uid: 3191 + type: PosterMapSaltern + components: + - pos: 73.5,29.5 + parent: 55 + type: Transform +- uid: 3192 + type: PosterMapBagel + components: + - pos: 71.5,32.5 + parent: 55 + type: Transform +- uid: 3193 + type: PosterMapPillar + components: + - pos: 73.5,26.5 + parent: 55 + type: Transform +- uid: 3194 + type: PosterMapDelta + components: + - pos: 71.5,24.5 + parent: 55 + type: Transform +- uid: 3195 + type: PosterMapMarathon + components: + - pos: 72.5,31.5 + parent: 55 + type: Transform +- uid: 3196 + type: PosterMapPacked + components: + - pos: 73.5,30.5 + parent: 55 + type: Transform +- uid: 3197 + type: PosterMapMoose + components: + - pos: 72.5,25.5 + parent: 55 + type: Transform +- uid: 3198 + type: PosterMapSplit + components: + - pos: 73.5,27.5 + parent: 55 + type: Transform +- uid: 3199 + type: TableReinforced + components: + - pos: 61.5,32.5 + parent: 55 + type: Transform +- uid: 3200 + type: TableReinforced + components: + - pos: 62.5,32.5 + parent: 55 + type: Transform +- uid: 3201 + type: TableReinforced + components: + - pos: 68.5,32.5 + parent: 55 + type: Transform +- uid: 3202 + type: TableReinforced + components: + - pos: 69.5,32.5 + parent: 55 + type: Transform +- uid: 3203 + type: TableReinforced + components: + - pos: 69.5,24.5 + parent: 55 + type: Transform +- uid: 3204 + type: TableReinforced + components: + - pos: 68.5,24.5 + parent: 55 + type: Transform +- uid: 3205 + type: TableReinforced + components: + - pos: 61.5,24.5 + parent: 55 + type: Transform +- uid: 3206 + type: TableReinforced + components: + - pos: 62.5,24.5 + parent: 55 + type: Transform +- uid: 3207 + type: TableReinforced + components: + - pos: 64.5,23.5 + parent: 55 + type: Transform +- uid: 3208 + type: TableReinforced + components: + - pos: 65.5,23.5 + parent: 55 + type: Transform +- uid: 3209 + type: TableReinforced + components: + - pos: 66.5,23.5 + parent: 55 + type: Transform +- uid: 3210 + type: VendingMachineYouTool + components: + - pos: 58.5,30.5 + parent: 55 + type: Transform +- uid: 3211 + type: VendingMachineYouTool + components: + - pos: 58.5,26.5 + parent: 55 + type: Transform +- uid: 3212 + type: VendingMachineEngivend + components: + - pos: 59.5,25.5 + parent: 55 + type: Transform +- uid: 3213 + type: VendingMachineEngivend + components: + - pos: 59.5,31.5 + parent: 55 + type: Transform +- uid: 3214 + type: VendingMachineDiscount + components: + - pos: 63.5,24.5 + parent: 55 + type: Transform +- uid: 3215 + type: VendingMachineSnack + components: + - pos: 67.5,24.5 + parent: 55 + type: Transform +- uid: 3216 + type: VendingMachineCola + components: + - pos: 63.5,32.5 + parent: 55 + type: Transform +- uid: 3217 + type: VendingMachineCoffee + components: + - name: Hot drinks machine + type: MetaData + - pos: 67.5,32.5 + parent: 55 + type: Transform +- uid: 3218 + type: PottedPlantRandom + components: + - pos: 60.5,24.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 3219 + type: PottedPlantRandom + components: + - pos: 70.5,24.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 3220 + type: PottedPlantRandom + components: + - pos: 70.5,32.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 3221 + type: PottedPlantRandom + components: + - pos: 60.5,32.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 3222 + type: PottedPlantRandom + components: + - pos: 59.5,28.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 3223 + type: PottedPlantRandom + components: + - pos: 71.5,28.5 + parent: 55 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 3224 + type: FoodBoxDonut + components: + - pos: 64.48102,23.643291 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3225 + type: FoodBoxDonut + components: + - pos: 65.51227,23.612041 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3226 + type: FoodBoxDonut + components: + - pos: 66.41852,23.612041 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3227 + type: FoodBoxDonkpocketHonk + components: + - pos: 61.418518,32.643288 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3228 + type: FoodBoxDonkpocketHonk + components: + - pos: 61.918518,32.549538 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3229 + type: FoodBoxDonkpocketBerry + components: + - pos: 62.512268,32.674538 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3230 + type: FoodBoxDonkpocketBerry + components: + - pos: 68.60602,32.705788 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3231 + type: FoodBoxDonkpocketDink + components: + - pos: 69.10602,32.549538 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3232 + type: FoodBoxDonkpocketDink + components: + - pos: 69.66852,32.674538 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3233 + type: FoodBoxDonkpocket + components: + - pos: 61.356018,24.737041 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3234 + type: FoodBoxDonkpocket + components: + - pos: 61.887268,24.580791 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3235 + type: FoodBoxDonkpocketGondola + components: + - pos: 62.512268,24.737041 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3236 + type: FoodBoxPizzaFilled + components: + - pos: 68.57477,24.830791 + parent: 55 + type: Transform + - isPlaceable: False + type: PlaceableSurface + - canCollide: False + type: Physics + - containers: + entity_storage: !type:Container + ents: [] + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3237 + type: FoodBoxPizzaFilled + components: + - pos: 69.32477,24.643291 + parent: 55 + type: Transform + - isPlaceable: False + type: PlaceableSurface + - canCollide: False + type: Physics + - containers: + entity_storage: !type:Container + ents: [] + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3238 + type: Paper + components: + - pos: 63.324768,27.674541 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3239 + type: Paper + components: + - pos: 63.637268,27.737041 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3240 + type: Paper + components: + - pos: 66.41852,27.674541 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3241 + type: Paper + components: + - pos: 68.54352,28.112041 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3242 + type: Paper + components: + - pos: 68.23102,28.455791 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3243 + type: Paper + components: + - pos: 68.60602,28.893291 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3244 + type: Paper + components: + - pos: 67.23102,29.205791 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3245 + type: Paper + components: + - pos: 66.23102,29.643291 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3246 + type: Paper + components: + - pos: 65.91852,29.518291 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3247 + type: Paper + components: + - pos: 64.44977,29.612041 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3248 + type: Paper + components: + - pos: 63.949768,29.643291 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3249 + type: Paper + components: + - pos: 64.51227,29.424541 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3250 + type: Paper + components: + - pos: 63.106018,29.705791 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3251 + type: Paper + components: + - pos: 62.481018,28.424541 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3252 + type: Pen + components: + - pos: 62.449768,28.112041 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3253 + type: Pen + components: + - pos: 66.79352,27.612041 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3254 + type: Pen + components: + - pos: 65.54352,29.705791 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3255 + type: SurvivalKnife + components: + - pos: 64.41852,27.737041 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3256 + type: WeaponPulsePistol + components: + - pos: 67.63727,29.674541 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3257 + type: PosterLegitNanotrasenLogo + components: + - pos: 65.5,28.5 + parent: 55 + type: Transform +- uid: 3258 + type: BannerNanotrasen + components: + - pos: 64.5,33.5 + parent: 55 + type: Transform +- uid: 3259 + type: BannerNanotrasen + components: + - pos: 66.5,33.5 + parent: 55 + type: Transform +- uid: 3260 + type: BannerNanotrasen + components: + - pos: 66.5,24.5 + parent: 55 + type: Transform +- uid: 3261 + type: BannerNanotrasen + components: + - pos: 64.5,24.5 + parent: 55 + type: Transform +- uid: 3262 + type: BannerNanotrasen + components: + - pos: 64.5,39.5 + parent: 55 + type: Transform +- uid: 3263 + type: BannerNanotrasen + components: + - pos: 66.5,39.5 + parent: 55 + type: Transform +- uid: 3264 + type: BannerNanotrasen + components: + - pos: 64.5,53.5 + parent: 55 + type: Transform +- uid: 3265 + type: BannerNanotrasen + components: + - pos: 66.5,53.5 + parent: 55 + type: Transform +- uid: 3266 + type: BannerNanotrasen + components: + - pos: 69.5,50.5 + parent: 55 + type: Transform +- uid: 3267 + type: BannerNanotrasen + components: + - pos: 69.5,42.5 + parent: 55 + type: Transform +- uid: 3268 + type: BannerNanotrasen + components: + - pos: 61.5,42.5 + parent: 55 + type: Transform +- uid: 3269 + type: BannerNanotrasen + components: + - pos: 61.5,50.5 + parent: 55 + type: Transform +- uid: 3270 + type: BannerNanotrasen + components: + - pos: 54.5,29.5 + parent: 55 + type: Transform +- uid: 3271 + type: BannerNanotrasen + components: + - pos: 54.5,27.5 + parent: 55 + type: Transform +- uid: 3272 + type: BannerNanotrasen + components: + - pos: 26.5,26.5 + parent: 55 + type: Transform +- uid: 3273 + type: BannerNanotrasen + components: + - pos: 26.5,30.5 + parent: 55 + type: Transform +- uid: 3274 + type: BannerNanotrasen + components: + - pos: 38.5,30.5 + parent: 55 + type: Transform +- uid: 3275 + type: BannerNanotrasen + components: + - pos: 38.5,26.5 + parent: 55 + type: Transform +- uid: 3276 + type: BannerNanotrasen + components: + - pos: -2.5,13.5 + parent: 55 + type: Transform +- uid: 3277 + type: BannerNanotrasen + components: + - pos: -2.5,43.5 + parent: 55 + type: Transform +- uid: 3278 + type: BannerNanotrasen + components: + - pos: 5.5,28.5 + parent: 55 + type: Transform +- uid: 3279 + type: BannerNanotrasen + components: + - pos: -5.5,28.5 + parent: 55 + type: Transform +- uid: 3280 + type: BannerMedical + components: + - pos: 19.5,29.5 + parent: 55 + type: Transform +- uid: 3281 + type: BannerMedical + components: + - pos: 22.5,29.5 + parent: 55 + type: Transform +- uid: 3282 + type: BannerMedical + components: + - pos: 22.5,27.5 + parent: 55 + type: Transform +- uid: 3283 + type: BannerMedical + components: + - pos: 19.5,27.5 + parent: 55 + type: Transform +- uid: 3284 + type: BannerEngineering + components: + - pos: 31.5,20.5 + parent: 55 + type: Transform +- uid: 3285 + type: BannerEngineering + components: + - pos: 33.5,20.5 + parent: 55 + type: Transform +- uid: 3286 + type: BannerSecurity + components: + - pos: 31.5,41.5 + parent: 55 + type: Transform +- uid: 3287 + type: BannerSecurity + components: + - pos: 31.5,44.5 + parent: 55 + type: Transform +- uid: 3288 + type: BannerNanotrasen + components: + - pos: 39.5,48.5 + parent: 55 + type: Transform +- uid: 3289 + type: BannerNanotrasen + components: + - pos: 25.5,48.5 + parent: 55 + type: Transform +- uid: 3290 + type: BannerNanotrasen + components: + - pos: 29.5,49.5 + parent: 55 + type: Transform +- uid: 3291 + type: BannerNanotrasen + components: + - pos: 35.5,49.5 + parent: 55 + type: Transform +- uid: 3292 + type: BannerNanotrasen + components: + - pos: 21.5,50.5 + parent: 55 + type: Transform +- uid: 3293 + type: BannerNanotrasen + components: + - pos: 43.5,50.5 + parent: 55 + type: Transform +- uid: 3294 + type: BannerNanotrasen + components: + - pos: 35.5,53.5 + parent: 55 + type: Transform +- uid: 3295 + type: BannerNanotrasen + components: + - pos: 29.5,53.5 + parent: 55 + type: Transform +- uid: 3296 + type: VendingMachineSec + components: + - pos: 61.5,47.5 + parent: 55 + type: Transform +- uid: 3297 + type: VendingMachineSec + components: + - pos: 61.5,48.5 + parent: 55 + type: Transform +- uid: 3298 + type: VendingMachineSec + components: + - pos: 61.5,45.5 + parent: 55 + type: Transform +- uid: 3299 + type: VendingMachineSec + components: + - pos: 61.5,44.5 + parent: 55 + type: Transform +- uid: 3300 + type: TableReinforced + components: + - pos: 61.5,43.5 + parent: 55 + type: Transform +- uid: 3301 + type: TableReinforced + components: + - pos: 61.5,46.5 + parent: 55 + type: Transform +- uid: 3302 + type: TableReinforced + components: + - pos: 61.5,49.5 + parent: 55 + type: Transform +- uid: 3303 + type: TableReinforced + components: + - pos: 69.5,49.5 + parent: 55 + type: Transform +- uid: 3304 + type: TableReinforced + components: + - pos: 69.5,46.5 + parent: 55 + type: Transform +- uid: 3305 + type: TableReinforced + components: + - pos: 69.5,43.5 + parent: 55 + type: Transform +- uid: 3306 + type: ClosetJanitorFilled + components: + - pos: 69.5,48.5 + parent: 55 + type: Transform +- uid: 3307 + type: ClosetJanitorFilled + components: + - pos: 69.5,44.5 + parent: 55 + type: Transform +- uid: 3308 + type: WeaponCapacitorRecharger + components: + - pos: 61.5,43.5 + parent: 55 + type: Transform + - containers: + charger-slot: !type:ContainerSlot {} + type: ContainerContainer +- uid: 3309 + type: CrateServiceJanitorialSupplies + components: + - pos: 69.5,45.5 + parent: 55 + type: Transform + - containers: + - EntityStorageComponent + type: Construction + - isPlaceable: False + type: PlaceableSurface +- uid: 3310 + type: CrateServiceJanitorialSupplies + components: + - pos: 69.5,47.5 + parent: 55 + type: Transform + - containers: + - EntityStorageComponent + type: Construction + - isPlaceable: False + type: PlaceableSurface +- uid: 3311 + type: LightReplacer + components: + - pos: 69.30726,46.751568 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + light_replacer_storage: !type:Container + ents: [] + type: ContainerContainer +- uid: 3312 + type: WeaponCapacitorRecharger + components: + - pos: 61.5,49.5 + parent: 55 + type: Transform + - containers: + charger-slot: !type:ContainerSlot {} + type: ContainerContainer +- uid: 3313 + type: WeaponCapacitorRecharger + components: + - pos: 69.5,49.5 + parent: 55 + type: Transform + - containers: + charger-slot: !type:ContainerSlot {} + type: ContainerContainer +- uid: 3314 + type: BoxLightMixed + components: + - pos: 69.68226,46.720318 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3315 + type: WeaponCapacitorRecharger + components: + - pos: 69.5,43.5 + parent: 55 + type: Transform + - containers: + charger-slot: !type:ContainerSlot {} + type: ContainerContainer +- uid: 3316 + type: Rack + components: + - pos: 64.5,41.5 + parent: 55 + type: Transform +- uid: 3317 + type: Rack + components: + - pos: 64.5,40.5 + parent: 55 + type: Transform +- uid: 3318 + type: Rack + components: + - pos: 66.5,40.5 + parent: 55 + type: Transform +- uid: 3319 + type: Rack + components: + - pos: 66.5,41.5 + parent: 55 + type: Transform +- uid: 3320 + type: Rack + components: + - pos: 66.5,43.5 + parent: 55 + type: Transform +- uid: 3321 + type: Rack + components: + - pos: 66.5,44.5 + parent: 55 + type: Transform +- uid: 3322 + type: Rack + components: + - pos: 64.5,44.5 + parent: 55 + type: Transform +- uid: 3323 + type: Rack + components: + - pos: 64.5,43.5 + parent: 55 + type: Transform +- uid: 3324 + type: WeaponPulseRifle + components: + - pos: 64.43226,40.595318 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3325 + type: WeaponPulseRifle + components: + - pos: 66.49476,40.657818 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3326 + type: WeaponPulseCarbine + components: + - pos: 64.46351,41.595318 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3327 + type: WeaponPulseCarbine + components: + - pos: 66.49476,41.595318 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3328 + type: WeaponPulsePistol + components: + - pos: 64.52601,43.564068 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3329 + type: WeaponPulsePistol + components: + - pos: 64.55726,44.595318 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3330 + type: WeaponPulsePistol + components: + - pos: 66.52601,44.626568 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3331 + type: WeaponPulsePistol + components: + - pos: 66.49476,43.564068 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3332 + type: Rack + components: + - pos: 64.5,48.5 + parent: 55 + type: Transform +- uid: 3333 + type: Rack + components: + - pos: 64.5,49.5 + parent: 55 + type: Transform +- uid: 3334 + type: Rack + components: + - pos: 66.5,49.5 + parent: 55 + type: Transform +- uid: 3335 + type: Rack + components: + - pos: 66.5,48.5 + parent: 55 + type: Transform +- uid: 3336 + type: AirTankFilled + components: + - pos: 64.30726,48.657818 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3337 + type: AirTankFilled + components: + - pos: 64.33851,48.251568 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3338 + type: AirTankFilled + components: + - pos: 64.80726,48.314068 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3339 + type: AirTankFilled + components: + - pos: 64.24476,49.689068 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3340 + type: AirTankFilled + components: + - pos: 64.27601,49.220318 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3341 + type: AirTankFilled + components: + - pos: 64.77601,49.407818 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3342 + type: Stunbaton + components: + - pos: 66.18226,48.564068 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3343 + type: Stunbaton + components: + - pos: 66.15101,48.189068 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3344 + type: Stunbaton + components: + - pos: 66.55726,48.251568 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3345 + type: Stunbaton + components: + - pos: 66.80726,49.282818 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3346 + type: Stunbaton + components: + - pos: 66.33851,49.220318 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3347 + type: Stunbaton + components: + - pos: 66.27601,49.501568 + parent: 55 + type: Transform + - canCollide: False + type: Physics +- uid: 3348 + type: BoxFlashbang + components: + - pos: 61.307255,46.751568 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3349 + type: BoxFlashbang + components: + - pos: 61.619755,46.564068 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3350 + type: VendingMachineMedical + components: + - pos: 62.5,51.5 + parent: 55 + type: Transform +- uid: 3351 + type: VendingMachineMedical + components: + - pos: 63.5,52.5 + parent: 55 + type: Transform +- uid: 3352 + type: VendingMachineMedical + components: + - pos: 67.5,52.5 + parent: 55 + type: Transform +- uid: 3353 + type: VendingMachineMedical + components: + - pos: 68.5,51.5 + parent: 55 + type: Transform +- uid: 3354 + type: TableReinforced + components: + - pos: 65.5,51.5 + parent: 55 + type: Transform +- uid: 3355 + type: TableReinforced + components: + - pos: 65.5,52.5 + parent: 55 + type: Transform +- uid: 3356 + type: TableReinforced + components: + - pos: 65.5,53.5 + parent: 55 + type: Transform +- uid: 3357 + type: MedkitToxinFilled + components: + - pos: 65.36976,51.782818 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3358 + type: MedkitToxinFilled + components: + - pos: 65.61976,51.564068 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3359 + type: MedkitRadiationFilled + components: + - pos: 65.30726,52.384933 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3360 + type: MedkitRadiationFilled + components: + - pos: 65.68226,52.166183 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3361 + type: MedkitOxygenFilled + components: + - pos: 65.33851,53.009933 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3362 + type: MedkitOxygenFilled + components: + - pos: 65.65101,52.853683 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3363 + type: MedkitCombatFilled + components: + - pos: 65.30726,53.791183 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3364 + type: MedkitCombatFilled + components: + - pos: 65.71351,53.478683 + parent: 55 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3365 + type: VendingMachineTankDispenserEVA + components: + - name: tank dispenser + type: MetaData + - pos: 79.5,30.5 + parent: 55 + type: Transform +- uid: 3366 + type: VendingMachineTankDispenserEVA + components: + - name: tank dispenser + type: MetaData + - pos: 81.5,30.5 + parent: 55 + type: Transform +- uid: 3367 + type: VendingMachineTankDispenserEVA + components: + - name: tank dispenser + type: MetaData + - pos: 81.5,26.5 + parent: 55 + type: Transform +- uid: 3368 + type: VendingMachineTankDispenserEVA + components: + - name: tank dispenser + type: MetaData + - pos: 79.5,26.5 + parent: 55 + type: Transform +- uid: 3369 + type: LightPostSmall + components: + - pos: 37.5,28.5 + parent: 55 + type: Transform +- uid: 3370 + type: LightPostSmall + components: + - pos: 32.5,23.5 + parent: 55 + type: Transform +- uid: 3371 + type: LightPostSmall + components: + - pos: 32.5,33.5 + parent: 55 + type: Transform +- uid: 3372 + type: LightPostSmall + components: + - pos: 27.5,28.5 + parent: 55 + type: Transform +- uid: 3373 + type: LightPostSmall + components: + - pos: 30.5,30.5 + parent: 55 + type: Transform +- uid: 3374 + type: LightPostSmall + components: + - pos: 34.5,30.5 + parent: 55 + type: Transform +- uid: 3375 + type: LightPostSmall + components: + - pos: 34.5,26.5 + parent: 55 + type: Transform +- uid: 3376 + type: LightPostSmall + components: + - pos: 30.5,26.5 + parent: 55 + type: Transform +- uid: 3377 + type: LightPostSmall + components: + - pos: 32.5,28.5 + parent: 55 + type: Transform +- uid: 3378 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: 29.5,13.5 + parent: 55 + type: Transform +- uid: 3379 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: 35.5,13.5 + parent: 55 + type: Transform +- uid: 3380 + type: AlwaysPoweredLightSodium + components: + - pos: 35.5,18.5 + parent: 55 + type: Transform +- uid: 3381 + type: AlwaysPoweredLightSodium + components: + - pos: 29.5,18.5 + parent: 55 + type: Transform +- uid: 3382 + type: AlwaysPoweredLightSodium + components: + - rot: 1.5707963267948966 rad + pos: 23.5,15.5 + parent: 55 + type: Transform +- uid: 3383 + type: AlwaysPoweredLightSodium + components: + - rot: -1.5707963267948966 rad + pos: 41.5,15.5 + parent: 55 + type: Transform +- uid: 3384 + type: AlwaysPoweredLightSodium + components: + - pos: 54.5,29.5 + parent: 55 + type: Transform +- uid: 3385 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: 54.5,27.5 + parent: 55 + type: Transform +- uid: 3386 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: 61.5,24.5 + parent: 55 + type: Transform +- uid: 3387 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: 69.5,24.5 + parent: 55 + type: Transform +- uid: 3388 + type: AlwaysPoweredLightSodium + components: + - pos: 69.5,32.5 + parent: 55 + type: Transform +- uid: 3389 + type: AlwaysPoweredLightSodium + components: + - pos: 61.5,32.5 + parent: 55 + type: Transform +- uid: 3390 + type: AlwaysPoweredLightSodium + components: + - rot: -1.5707963267948966 rad + pos: 64.5,28.5 + parent: 55 + type: Transform +- uid: 3391 + type: AlwaysPoweredLightSodium + components: + - rot: 1.5707963267948966 rad + pos: 66.5,28.5 + parent: 55 + type: Transform +- uid: 3392 + type: AlwaysPoweredLightSodium + components: + - rot: -1.5707963267948966 rad + pos: 69.5,46.5 + parent: 55 + type: Transform +- uid: 3393 + type: AlwaysPoweredLightSodium + components: + - rot: 1.5707963267948966 rad + pos: 61.5,46.5 + parent: 55 + type: Transform +- uid: 3394 + type: AlwaysPoweredLightSodium + components: + - pos: 65.5,53.5 + parent: 55 + type: Transform +- uid: 3395 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: 65.5,39.5 + parent: 55 + type: Transform +- uid: 3396 + type: AlwaysPoweredLightSodium + components: + - pos: 80.5,30.5 + parent: 55 + type: Transform +- uid: 3397 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: 80.5,26.5 + parent: 55 + type: Transform +- uid: 3398 + type: AlwaysPoweredLightSodium + components: + - rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 55 + type: Transform +- uid: 3399 + type: AlwaysPoweredLightSodium + components: + - rot: -1.5707963267948966 rad + pos: -2.5,49.5 + parent: 55 + type: Transform +- uid: 3400 + type: AlwaysPoweredLightSodium + components: + - pos: -10.5,33.5 + parent: 55 + type: Transform +- uid: 3401 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: -10.5,31.5 + parent: 55 + type: Transform +- uid: 3402 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: -10.5,23.5 + parent: 55 + type: Transform +- uid: 3403 + type: AlwaysPoweredLightSodium + components: + - pos: -10.5,25.5 + parent: 55 + type: Transform +- uid: 3404 + type: AlwaysPoweredLightLED + components: + - rot: -1.5707963267948966 rad + pos: 2.5,21.5 + parent: 55 + type: Transform +- uid: 3405 + type: AlwaysPoweredLightLED + components: + - rot: -1.5707963267948966 rad + pos: 2.5,35.5 + parent: 55 + type: Transform +- uid: 3406 + type: AlwaysPoweredLightLED + components: + - rot: 1.5707963267948966 rad + pos: -7.5,39.5 + parent: 55 + type: Transform +- uid: 3407 + type: AlwaysPoweredLightLED + components: + - rot: 1.5707963267948966 rad + pos: -7.5,17.5 + parent: 55 + type: Transform +- uid: 3408 + type: AlwaysPoweredLightLED + components: + - rot: 1.5707963267948966 rad + pos: -7.5,26.5 + parent: 55 + type: Transform +- uid: 3409 + type: AlwaysPoweredLightLED + components: + - rot: 1.5707963267948966 rad + pos: -7.5,30.5 + parent: 55 + type: Transform +- uid: 3410 + type: AlwaysPoweredWallLight + components: + - pos: 10.5,29.5 + parent: 55 + type: Transform +- uid: 3411 + type: AlwaysPoweredWallLight + components: + - rot: 3.141592653589793 rad + pos: 10.5,27.5 + parent: 55 + type: Transform +- uid: 3412 + type: AlwaysPoweredWallLight + components: + - rot: 3.141592653589793 rad + pos: 23.5,27.5 + parent: 55 + type: Transform +- uid: 3413 + type: AlwaysPoweredWallLight + components: + - pos: 17.5,29.5 + parent: 55 + type: Transform +- uid: 3414 + type: AlwaysPoweredWallLight + components: + - pos: 22.5,34.5 + parent: 55 + type: Transform +- uid: 3415 + type: AlwaysPoweredWallLight + components: + - rot: 3.141592653589793 rad + pos: 24.5,31.5 + parent: 55 + type: Transform +- uid: 3416 + type: AlwaysPoweredWallLight + components: + - rot: -1.5707963267948966 rad + pos: 29.5,37.5 + parent: 55 + type: Transform +- uid: 3417 + type: AlwaysPoweredWallLight + components: + - rot: 1.5707963267948966 rad + pos: 23.5,37.5 + parent: 55 + type: Transform +- uid: 3418 + type: AlwaysPoweredWallLight + components: + - rot: -1.5707963267948966 rad + pos: 21.5,37.5 + parent: 55 + type: Transform +- uid: 3419 + type: ComputerCargoShuttle + components: + - pos: 37.5,54.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3420 + type: AlwaysPoweredWallLight + components: + - rot: 3.141592653589793 rad + pos: 24.5,19.5 + parent: 55 + type: Transform +- uid: 3421 + type: ComputerCargoShuttle + components: + - rot: -1.5707963267948966 rad + pos: 31.5,53.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3422 + type: AlwaysPoweredWallLight + components: + - rot: 1.5707963267948966 rad + pos: 31.5,38.5 + parent: 55 + type: Transform +- uid: 3423 + type: AlwaysPoweredWallLight + components: + - rot: -1.5707963267948966 rad + pos: 33.5,44.5 + parent: 55 + type: Transform +- uid: 3424 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: 27.5,40.5 + parent: 55 + type: Transform +- uid: 3425 + type: AlwaysPoweredLightSodium + components: + - pos: 27.5,45.5 + parent: 55 + type: Transform +- uid: 3426 + type: AlwaysPoweredLightSodium + components: + - pos: 21.5,47.5 + parent: 55 + type: Transform +- uid: 3427 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: 21.5,40.5 + parent: 55 + type: Transform +- uid: 3428 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: 40.5,40.5 + parent: 55 + type: Transform +- uid: 3429 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: 44.5,40.5 + parent: 55 + type: Transform +- uid: 3430 + type: AlwaysPoweredLightSodium + components: + - pos: 44.5,47.5 + parent: 55 + type: Transform +- uid: 3431 + type: AlwaysPoweredWallLight + components: + - pos: 40.5,46.5 + parent: 55 + type: Transform +- uid: 3432 + type: AlwaysPoweredWallLight + components: + - pos: 36.5,45.5 + parent: 55 + type: Transform +- uid: 3433 + type: AlwaysPoweredWallLight + components: + - rot: 3.141592653589793 rad + pos: 36.5,40.5 + parent: 55 + type: Transform +- uid: 3434 + type: AlwaysPoweredLightExterior + components: + - rot: 1.5707963267948966 rad + pos: 28.5,47.5 + parent: 55 + type: Transform +- uid: 3435 + type: AlwaysPoweredLightExterior + components: + - rot: 3.141592653589793 rad + pos: 27.5,48.5 + parent: 55 + type: Transform +- uid: 3436 + type: AlwaysPoweredLightExterior + components: + - rot: -1.5707963267948966 rad + pos: 36.5,47.5 + parent: 55 + type: Transform +- uid: 3437 + type: AlwaysPoweredLightExterior + components: + - rot: 3.141592653589793 rad + pos: 37.5,48.5 + parent: 55 + type: Transform +- uid: 3438 + type: AlwaysPoweredLightExterior + components: + - pos: 37.5,54.5 + parent: 55 + type: Transform +- uid: 3439 + type: AlwaysPoweredLightExterior + components: + - pos: 27.5,54.5 + parent: 55 + type: Transform +- uid: 3440 + type: AlwaysPoweredLightExterior + components: + - rot: -1.5707963267948966 rad + pos: 45.5,51.5 + parent: 55 + type: Transform +- uid: 3441 + type: AlwaysPoweredLightExterior + components: + - rot: 1.5707963267948966 rad + pos: 19.5,51.5 + parent: 55 + type: Transform +- uid: 3442 + type: AlwaysPoweredWallLight + components: + - rot: 3.141592653589793 rad + pos: 42.5,27.5 + parent: 55 + type: Transform +- uid: 3443 + type: AlwaysPoweredWallLight + components: + - pos: 49.5,29.5 + parent: 55 + type: Transform +- uid: 3444 + type: AlwaysPoweredWallLight + components: + - rot: -1.5707963267948966 rad + pos: 47.5,24.5 + parent: 55 + type: Transform +- uid: 3445 + type: AlwaysPoweredWallLight + components: + - rot: 3.141592653589793 rad + pos: 40.5,19.5 + parent: 55 + type: Transform +- uid: 3446 + type: AlwaysPoweredWallLight + components: + - rot: -1.5707963267948966 rad + pos: 47.5,32.5 + parent: 55 + type: Transform +- uid: 3447 + type: AlwaysPoweredWallLight + components: + - rot: -1.5707963267948966 rad + pos: 40.5,36.5 + parent: 55 + type: Transform +- uid: 3448 + type: AlwaysPoweredWallLight + components: + - pos: 41.5,35.5 + parent: 55 + type: Transform +- uid: 3449 + type: CableApcExtension + components: + - pos: 67.5,33.5 + parent: 55 + type: Transform +- uid: 3450 + type: ComputerCargoShuttle + components: + - pos: 21.5,52.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3451 + type: ComputerCargoShuttle + components: + - rot: 1.5707963267948966 rad + pos: 19.5,51.5 + parent: 55 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 3452 + type: AlwaysPoweredLightSodium + components: + - pos: 10.5,35.5 + parent: 55 + type: Transform +- uid: 3453 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: 10.5,36.5 + parent: 55 + type: Transform +- uid: 3454 + type: AlwaysPoweredLightSodium + components: + - pos: 8.5,47.5 + parent: 55 + type: Transform +- uid: 3455 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: 8.5,48.5 + parent: 55 + type: Transform +- uid: 3456 + type: AlwaysPoweredLightSodium + components: + - rot: -1.5707963267948966 rad + pos: 17.5,47.5 + parent: 55 + type: Transform +- uid: 3457 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: 17.5,40.5 + parent: 55 + type: Transform +- uid: 3458 + type: AlwaysPoweredLightSodium + components: + - rot: 1.5707963267948966 rad + pos: 4.5,39.5 + parent: 55 + type: Transform +- uid: 3459 + type: AlwaysPoweredLightSodium + components: + - rot: 1.5707963267948966 rad + pos: 4.5,43.5 + parent: 55 + type: Transform +- uid: 3460 + type: AlwaysPoweredLightSodium + components: + - rot: 1.5707963267948966 rad + pos: 4.5,36.5 + parent: 55 + type: Transform +- uid: 3461 + type: AlwaysPoweredLightSodium + components: + - rot: 1.5707963267948966 rad + pos: 7.5,23.5 + parent: 55 + type: Transform +- uid: 3462 + type: AlwaysPoweredLightSodium + components: + - rot: 1.5707963267948966 rad + pos: 5.5,21.5 + parent: 55 + type: Transform +- uid: 3463 + type: AlwaysPoweredLightSodium + components: + - rot: 1.5707963267948966 rad + pos: 4.5,17.5 + parent: 55 + type: Transform +- uid: 3464 + type: AlwaysPoweredLightSodium + components: + - rot: 1.5707963267948966 rad + pos: 4.5,13.5 + parent: 55 + type: Transform +- uid: 3465 + type: AlwaysPoweredLightSodium + components: + - rot: 1.5707963267948966 rad + pos: 7.5,33.5 + parent: 55 + type: Transform +- uid: 3466 + type: AlwaysPoweredLightSodium + components: + - rot: 1.5707963267948966 rad + pos: -0.5,48.5 + parent: 55 + type: Transform +- uid: 3467 + type: AlwaysPoweredLightSodium + components: + - rot: -1.5707963267948966 rad + pos: -4.5,48.5 + parent: 55 + type: Transform +- uid: 3468 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: -9.5,35.5 + parent: 55 + type: Transform +- uid: 3469 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: -12.5,35.5 + parent: 55 + type: Transform +- uid: 3470 + type: AlwaysPoweredLightSodium + components: + - pos: -9.5,29.5 + parent: 55 + type: Transform +- uid: 3471 + type: AlwaysPoweredLightSodium + components: + - pos: -12.5,29.5 + parent: 55 + type: Transform +- uid: 3472 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: -9.5,27.5 + parent: 55 + type: Transform +- uid: 3473 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: -12.5,27.5 + parent: 55 + type: Transform +- uid: 3474 + type: AlwaysPoweredLightSodium + components: + - pos: -12.5,21.5 + parent: 55 + type: Transform +- uid: 3475 + type: AlwaysPoweredLightSodium + components: + - pos: -9.5,21.5 + parent: 55 + type: Transform +- uid: 3476 + type: AlwaysPoweredLightSodium + components: + - rot: -1.5707963267948966 rad + pos: -9.5,17.5 + parent: 55 + type: Transform +- uid: 3477 + type: AlwaysPoweredLightSodium + components: + - rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 55 + type: Transform +- uid: 3478 + type: AlwaysPoweredLightSodium + components: + - rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 55 + type: Transform +- uid: 3479 + type: AlwaysPoweredLightSodium + components: + - pos: 11.5,16.5 + parent: 55 + type: Transform +- uid: 3480 + type: AlwaysPoweredLightSodium + components: + - pos: 30.5,11.5 + parent: 55 + type: Transform +- uid: 3481 + type: AlwaysPoweredLightSodium + components: + - rot: 3.141592653589793 rad + pos: 11.5,17.5 + parent: 55 + type: Transform +- uid: 3482 + type: AlwaysPoweredLightSodium + components: + - rot: -1.5707963267948966 rad + pos: -9.5,39.5 + parent: 55 + type: Transform +- uid: 3483 + type: AlwaysPoweredLightSodium + components: + - pos: 34.5,11.5 + parent: 55 + type: Transform +- uid: 3484 + type: AlwaysPoweredLightLED + components: + - rot: 3.141592653589793 rad + pos: 21.5,18.5 + parent: 55 + type: Transform +- uid: 3485 + type: AlwaysPoweredLightLED + components: + - rot: -1.5707963267948966 rad + pos: 28.5,21.5 + parent: 55 + type: Transform +- uid: 3486 + type: LightPostSmall + components: + - pos: -2.5,17.5 + parent: 55 + type: Transform +- uid: 3487 + type: LightPostSmall + components: + - pos: -2.5,33.5 + parent: 55 + type: Transform +- uid: 3488 + type: LightPostSmall + components: + - pos: -2.5,39.5 + parent: 55 + type: Transform +- uid: 3489 + type: LightPostSmall + components: + - pos: -2.5,28.5 + parent: 55 + type: Transform +- uid: 3490 + type: LightPostSmall + components: + - pos: 4.5,28.5 + parent: 55 + type: Transform +... diff --git a/Resources/Prototypes/Maps/centcomm.yml b/Resources/Prototypes/Maps/centcomm.yml new file mode 100644 index 0000000000..bb6660c35d --- /dev/null +++ b/Resources/Prototypes/Maps/centcomm.yml @@ -0,0 +1,15 @@ +- type: gameMap + id: centcomm + mapName: 'Central Command' + mapPath: /Maps/centcomm.yml + minPlayers: 10 + stations: + centcomm: + mapNameTemplate: '{0} Central Command {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'TG' + overflowJobs: + - Passenger + availableJobs: + Passenger: [ 0, 1 ] \ No newline at end of file