diff --git a/Content.Client/GameObjects/Components/ClickableComponent.cs b/Content.Client/GameObjects/Components/ClickableComponent.cs index 33ea2e3fd5..3cf8cae618 100644 --- a/Content.Client/GameObjects/Components/ClickableComponent.cs +++ b/Content.Client/GameObjects/Components/ClickableComponent.cs @@ -2,6 +2,7 @@ using System; using Robust.Client.GameObjects; using Robust.Client.Graphics; +using Robust.Client.Utility; using Robust.Shared.GameObjects; using Robust.Shared.IoC; using Robust.Shared.Maths; @@ -43,21 +44,14 @@ namespace Content.Client.GameObjects.Components return false; } - var localPos = Owner.Transform.InvWorldMatrix.Transform(worldPos); + var transform = Owner.Transform; + var localPos = transform.InvWorldMatrix.Transform(worldPos); + var spriteMatrix = Matrix3.Invert(sprite.GetLocalMatrix()); - var worldRotation = new Angle(Owner.Transform.WorldRotation - sprite.Rotation); - if (sprite.Directional) - { - localPos = new Angle(worldRotation).RotateVec(localPos); - } - else - { - localPos = new Angle(MathHelper.PiOver2).RotateVec(localPos); - } - - var localOffset = localPos * EyeManager.PixelsPerMeter * (1, -1); + localPos = spriteMatrix.Transform(localPos); var found = false; + var worldRotation = transform.WorldRotation; if (_data.All.Contains(localPos)) { @@ -66,7 +60,14 @@ namespace Content.Client.GameObjects.Components else { // TODO: diagonal support? - var dir = sprite.Directional ? worldRotation.GetCardinalDir() : Direction.South; + + var modAngle = sprite.NoRotation ? SpriteComponent.CalcRectWorldAngle(worldRotation, 4) : Angle.Zero; + var dir = sprite.EnableDirectionOverride ? sprite.DirectionOverride : worldRotation.GetCardinalDir(); + + modAngle += dir.ToAngle(); + + var layerPos = modAngle.RotateVec(localPos); + var boundsForDir = dir switch { Direction.East => _data.East, @@ -76,7 +77,7 @@ namespace Content.Client.GameObjects.Components _ => throw new InvalidOperationException() }; - if (boundsForDir.Contains(localPos)) + if (boundsForDir.Contains(layerPos)) { found = true; } @@ -88,6 +89,14 @@ namespace Content.Client.GameObjects.Components { if (!layer.Visible) continue; + var dirCount = sprite.GetLayerDirectionCount(layer); + var dir = layer.EffectiveDirection(worldRotation); + var modAngle = sprite.NoRotation ? SpriteComponent.CalcRectWorldAngle(worldRotation, dirCount) : Angle.Zero; + modAngle += dir.Convert().ToAngle(); + + var layerPos = modAngle.RotateVec(localPos); + + var localOffset = layerPos * EyeManager.PixelsPerMeter * (1, -1); if (layer.Texture != null) { if (_clickMapManager.IsOccluding(layer.Texture, @@ -107,7 +116,6 @@ namespace Content.Client.GameObjects.Components var (mX, mY) = localOffset + rsi.Size / 2; - var dir = layer.EffectiveDirection(worldRotation); if (_clickMapManager.IsOccluding(rsi, layer.RsiState, dir, layer.AnimationFrame, ((int) mX, (int) mY))) { diff --git a/Content.Client/GameObjects/Components/Mobs/MeleeLungeComponent.cs b/Content.Client/GameObjects/Components/Mobs/MeleeLungeComponent.cs index ded0d2509d..2e9cb29e48 100644 --- a/Content.Client/GameObjects/Components/Mobs/MeleeLungeComponent.cs +++ b/Content.Client/GameObjects/Components/Mobs/MeleeLungeComponent.cs @@ -34,16 +34,13 @@ namespace Content.Client.GameObjects.Components.Mobs } else { - offset = _angle.RotateVec((BaseOffset, 0)); + offset = _angle.RotateVec((0, -BaseOffset)); offset *= (ResetTime - _time) / ResetTime; } if (Owner.TryGetComponent(out ISpriteComponent spriteComponent)) { - // We have to account for rotation so the offset still checks out. - // SpriteComponent.Offset is applied before transform rotation (as expected). - var worldRotation = Owner.Transform.WorldRotation; - spriteComponent.Offset = new Angle(-worldRotation).RotateVec(offset); + spriteComponent.Offset = offset; } if (deleteSelf) diff --git a/Content.Client/GameObjects/Components/Weapons/Melee/MeleeWeaponArcAnimationComponent.cs b/Content.Client/GameObjects/Components/Weapons/Melee/MeleeWeaponArcAnimationComponent.cs index c15bb84c6c..0e3aa52d51 100644 --- a/Content.Client/GameObjects/Components/Weapons/Melee/MeleeWeaponArcAnimationComponent.cs +++ b/Content.Client/GameObjects/Components/Weapons/Melee/MeleeWeaponArcAnimationComponent.cs @@ -56,7 +56,7 @@ namespace Content.Client.GameObjects.Components.Weapons.Melee case WeaponArcType.Poke: Owner.Transform.WorldRotation = _baseAngle; - _sprite.Offset += (_meleeWeaponAnimation.Speed * frameTime, 0); + _sprite.Offset -= (0, _meleeWeaponAnimation.Speed * frameTime); break; } diff --git a/Content.IntegrationTests/Tests/ClickableTest.cs b/Content.IntegrationTests/Tests/ClickableTest.cs new file mode 100644 index 0000000000..7c17e29192 --- /dev/null +++ b/Content.IntegrationTests/Tests/ClickableTest.cs @@ -0,0 +1,81 @@ +using System; +using System.Threading.Tasks; +using Content.Client.GameObjects.Components; +using NUnit.Framework; +using Robust.Server.GameObjects; +using Robust.Shared.GameObjects; +using Robust.Shared.IoC; +using Robust.Shared.Map; + +namespace Content.IntegrationTests.Tests +{ + [TestFixture] + public sealed class ClickableTest : ContentIntegrationTest + { + private const double DirSouth = 0; + private const double DirNorth = Math.PI; + private const double DirEast = Math.PI / 2; + private const double DirSouthEast = Math.PI / 4; + private const double DirSouthEastJustShy = Math.PI / 4 - 0.1; + + [Parallelizable(ParallelScope.None)] + [Test] + [TestCase("ClickTestRotatingCornerVisible", 0.25f, 0.25f, DirSouth, 1, ExpectedResult = true)] + [TestCase("ClickTestRotatingCornerVisible", 0.35f, 0.5f, DirSouth, 2, ExpectedResult = true)] + [TestCase("ClickTestRotatingCornerVisible", -0.25f, -0.25f, DirSouth, 1, ExpectedResult = false)] + [TestCase("ClickTestRotatingCornerVisible", 0.25f, 0.25f, DirNorth, 1, ExpectedResult = false)] + [TestCase("ClickTestRotatingCornerVisible", -0.25f, -0.25f, DirNorth, 1, ExpectedResult = true)] + [TestCase("ClickTestRotatingCornerVisible", -0.25f, 0.25f, DirEast, 1, ExpectedResult = true)] + [TestCase("ClickTestRotatingCornerVisible", 0, 0.25f, DirSouthEast, 1, ExpectedResult = true)] + [TestCase("ClickTestRotatingCornerVisibleNoRot", 0.25f, 0.25f, DirSouth, 1, ExpectedResult = true)] + [TestCase("ClickTestRotatingCornerVisibleNoRot", -0.25f, -0.25f, DirSouth, 1, ExpectedResult = false)] + [TestCase("ClickTestRotatingCornerVisibleNoRot", 0.25f, 0.25f, DirNorth, 1, ExpectedResult = false)] + [TestCase("ClickTestRotatingCornerVisibleNoRot", -0.25f, -0.25f, DirNorth, 1, ExpectedResult = true)] + [TestCase("ClickTestRotatingCornerVisibleNoRot", 0, 0.35f, DirSouthEastJustShy, 1, ExpectedResult = false)] + [TestCase("ClickTestRotatingCornerVisibleNoRot", 0.25f, 0.25f, DirSouthEastJustShy, 1, ExpectedResult = true)] + [TestCase("ClickTestRotatingCornerInvisible", 0.25f, 0.25f, DirSouth, 1, ExpectedResult = true)] + [TestCase("ClickTestRotatingCornerInvisible", 0.35f, 0.5f, DirSouth, 2, ExpectedResult = true)] + [TestCase("ClickTestRotatingCornerInvisible", -0.25f, -0.25f, DirSouth, 1, ExpectedResult = false)] + [TestCase("ClickTestRotatingCornerInvisible", 0.25f, 0.25f, DirNorth, 1, ExpectedResult = false)] + [TestCase("ClickTestRotatingCornerInvisible", -0.25f, -0.25f, DirNorth, 1, ExpectedResult = true)] + [TestCase("ClickTestRotatingCornerInvisible", -0.25f, 0.25f, DirEast, 1, ExpectedResult = true)] + [TestCase("ClickTestRotatingCornerInvisible", 0, 0.25f, DirSouthEast, 1, ExpectedResult = true)] + [TestCase("ClickTestRotatingCornerInvisibleNoRot", 0.25f, 0.25f, DirSouth, 1, ExpectedResult = true)] + [TestCase("ClickTestRotatingCornerInvisibleNoRot", -0.25f, -0.25f, DirSouth, 1, ExpectedResult = false)] + [TestCase("ClickTestRotatingCornerInvisibleNoRot", 0.25f, 0.25f, DirNorth, 1, ExpectedResult = false)] + [TestCase("ClickTestRotatingCornerInvisibleNoRot", -0.25f, -0.25f, DirNorth, 1, ExpectedResult = true)] + [TestCase("ClickTestRotatingCornerInvisibleNoRot", 0, 0.35f, DirSouthEastJustShy, 1, ExpectedResult = false)] + [TestCase("ClickTestRotatingCornerInvisibleNoRot", 0.25f, 0.25f, DirSouthEastJustShy, 1, ExpectedResult = true)] + public async Task Test(string prototype, float clickPosX, float clickPosY, double angle, float scale) + { + var (client, server) = await StartConnectedServerClientPair(); + + EntityUid entity = default; + + await server.WaitPost(() => + { + var entMgr = IoCManager.Resolve(); + var ent = entMgr.SpawnEntity(prototype, new MapCoordinates(0, 0, new MapId(1))); + ent.Transform.LocalRotation = angle; + ent.GetComponent().Scale = (scale, scale); + entity = ent.Uid; + }); + + // Let client sync up. + await RunTicksSync(client, server, 5); + + var hit = false; + + await client.WaitPost(() => + { + var entMgr = IoCManager.Resolve(); + var ent = entMgr.GetEntity(entity); + var clickable = ent.GetComponent(); + + hit = clickable.CheckClick((clickPosX, clickPosY), out _, out _); + }); + + return hit; + } + } +} diff --git a/Content.Server/Actions/DisarmAction.cs b/Content.Server/Actions/DisarmAction.cs index f6b46c24eb..10a6971469 100644 --- a/Content.Server/Actions/DisarmAction.cs +++ b/Content.Server/Actions/DisarmAction.cs @@ -64,7 +64,8 @@ namespace Content.Server.Actions var audio = EntitySystem.Get(); var system = EntitySystem.Get(); - var angle = new Angle(args.Target.Transform.MapPosition.Position - args.Performer.Transform.MapPosition.Position); + var diff = args.Target.Transform.MapPosition.Position - args.Performer.Transform.MapPosition.Position; + var angle = Angle.FromWorldVec(diff); actions.Cooldown(ActionType.Disarm, Cooldowns.SecondsFromNow(_cooldown)); diff --git a/Content.Server/GameObjects/Components/Chemistry/HyposprayComponent.cs b/Content.Server/GameObjects/Components/Chemistry/HyposprayComponent.cs index e78036b393..50bf2b5b9f 100644 --- a/Content.Server/GameObjects/Components/Chemistry/HyposprayComponent.cs +++ b/Content.Server/GameObjects/Components/Chemistry/HyposprayComponent.cs @@ -86,7 +86,7 @@ namespace Content.Server.GameObjects.Components.Chemistry { target.PopupMessage(Loc.GetString("You feel a tiny prick!")); var meleeSys = EntitySystem.Get(); - var angle = new Angle(target.Transform.WorldPosition - user.Transform.WorldPosition); + var angle = Angle.FromWorldVec(target.Transform.WorldPosition - user.Transform.WorldPosition); meleeSys.SendLunge(angle, user); } diff --git a/Content.Server/GameObjects/Components/Mobs/ServerActionsComponent.cs b/Content.Server/GameObjects/Components/Mobs/ServerActionsComponent.cs index ff71cf9b85..3e196663bc 100644 --- a/Content.Server/GameObjects/Components/Mobs/ServerActionsComponent.cs +++ b/Content.Server/GameObjects/Components/Mobs/ServerActionsComponent.cs @@ -189,7 +189,7 @@ namespace Content.Server.GameObjects.Components.Mobs var diff = targetWorldPos - player.Transform.WorldPosition; if (diff.LengthSquared > 0.01f) { - player.Transform.LocalRotation = new Angle(diff); + player.Transform.LocalRotation = Angle.FromWorldVec(diff); } return true; diff --git a/Content.Server/GameObjects/Components/Weapon/Melee/MeleeWeaponComponent.cs b/Content.Server/GameObjects/Components/Weapon/Melee/MeleeWeaponComponent.cs index 364837a117..3feb2f9703 100644 --- a/Content.Server/GameObjects/Components/Weapon/Melee/MeleeWeaponComponent.cs +++ b/Content.Server/GameObjects/Components/Weapon/Melee/MeleeWeaponComponent.cs @@ -86,7 +86,8 @@ namespace Content.Server.GameObjects.Components.Weapon.Melee return true; var location = eventArgs.User.Transform.Coordinates; - var angle = new Angle(eventArgs.ClickLocation.ToMapPos(Owner.EntityManager) - location.ToMapPos(Owner.EntityManager)); + var diff = eventArgs.ClickLocation.ToMapPos(Owner.EntityManager) - location.ToMapPos(Owner.EntityManager); + var angle = Angle.FromWorldVec(diff); // This should really be improved. GetEntitiesInArc uses pos instead of bounding boxes. var entities = ArcRayCast(eventArgs.User.Transform.WorldPosition, angle, eventArgs.User); @@ -143,7 +144,8 @@ namespace Content.Server.GameObjects.Components.Weapon.Melee var target = eventArgs.TargetEntity; var location = eventArgs.User.Transform.Coordinates; - var angle = new Angle(eventArgs.ClickLocation.ToMapPos(Owner.EntityManager) - location.ToMapPos(Owner.EntityManager)); + var diff = eventArgs.ClickLocation.ToMapPos(Owner.EntityManager) - location.ToMapPos(Owner.EntityManager); + var angle = Angle.FromWorldVec(diff); var audioSystem = EntitySystem.Get(); if (target != null) @@ -194,7 +196,7 @@ namespace Content.Server.GameObjects.Components.Weapon.Melee for (var i = 0; i < increments; i++) { var castAngle = new Angle(baseAngle + increment * i); - var res = _physicsManager.IntersectRay(mapId, new CollisionRay(position, castAngle.ToVec(), (int) (CollisionGroup.Impassable|CollisionGroup.MobImpassable)), Range, ignore).FirstOrDefault(); + var res = _physicsManager.IntersectRay(mapId, new CollisionRay(position, castAngle.ToWorldVec(), (int) (CollisionGroup.Impassable|CollisionGroup.MobImpassable)), Range, ignore).FirstOrDefault(); if (res.HitEntity != null) { resSet.Add(res.HitEntity); diff --git a/Content.Server/GameObjects/Components/Weapon/Ranged/Barrels/ServerRangedBarrelComponent.cs b/Content.Server/GameObjects/Components/Weapon/Ranged/Barrels/ServerRangedBarrelComponent.cs index aedb113b28..af66bc9ccc 100644 --- a/Content.Server/GameObjects/Components/Weapon/Ranged/Barrels/ServerRangedBarrelComponent.cs +++ b/Content.Server/GameObjects/Components/Weapon/Ranged/Barrels/ServerRangedBarrelComponent.cs @@ -394,7 +394,7 @@ namespace Content.Server.GameObjects.Components.Weapon.Ranged.Barrels .EnsureController() .LinearVelocity = projectileAngle.ToVec() * velocity; - projectile.Transform.LocalRotation = projectileAngle.Theta; + projectile.Transform.LocalRotation = projectileAngle + MathHelper.PiOver2; } ammo.SendMessage(this, new BarrelFiredMessage(firedProjectiles)); } diff --git a/Content.Server/GameObjects/EntitySystems/Click/InteractionSystem.cs b/Content.Server/GameObjects/EntitySystems/Click/InteractionSystem.cs index b513339e49..79c21d5900 100644 --- a/Content.Server/GameObjects/EntitySystems/Click/InteractionSystem.cs +++ b/Content.Server/GameObjects/EntitySystems/Click/InteractionSystem.cs @@ -395,7 +395,7 @@ namespace Content.Server.GameObjects.EntitySystems.Click var diff = coordinates.ToMapPos(EntityManager) - player.Transform.MapPosition.Position; if (diff.LengthSquared > 0.01f) { - player.Transform.LocalRotation = new Angle(diff); + player.Transform.LocalRotation = Angle.FromWorldVec(diff); } } } diff --git a/Content.Server/HardRotateVerbs.cs b/Content.Server/HardRotateVerbs.cs new file mode 100644 index 0000000000..82c8a05e0c --- /dev/null +++ b/Content.Server/HardRotateVerbs.cs @@ -0,0 +1,47 @@ +using System; +using Content.Shared.GameObjects.Verbs; +using Robust.Shared.GameObjects; +using Robust.Shared.Maths; + +namespace Content.Server +{ + // Mapping tools + // Uncomment if you need them, I guess. + + /* + [GlobalVerb] + public sealed class HardRotateCcwVerb : GlobalVerb + { + public override bool RequireInteractionRange => false; + + public override void GetData(IEntity user, IEntity target, VerbData data) + { + data.Visibility = VerbVisibility.Visible; + data.Text = "Rotate CCW"; + data.IconTexture = "/Textures/Interface/VerbIcons/rotate_ccw.svg.96dpi.png"; + } + + public override void Activate(IEntity user, IEntity target) + { + target.Transform.LocalRotation += Math.PI / 2; + } + } + + [GlobalVerb] + public sealed class HardRotateCwVerb : GlobalVerb + { + public override bool RequireInteractionRange => false; + + public override void GetData(IEntity user, IEntity target, VerbData data) + { + data.Visibility = VerbVisibility.Visible; + data.Text = "Rotate CW"; + data.IconTexture = "/Textures/Interface/VerbIcons/rotate_cw.svg.96dpi.png"; + } + + public override void Activate(IEntity user, IEntity target) + { + target.Transform.LocalRotation -= Math.PI / 2; + } + }*/ +} diff --git a/Content.Server/Throw/ThrowHelper.cs b/Content.Server/Throw/ThrowHelper.cs index 359a73f2f0..ede0856ef6 100644 --- a/Content.Server/Throw/ThrowHelper.cs +++ b/Content.Server/Throw/ThrowHelper.cs @@ -83,7 +83,7 @@ namespace Content.Server.Throw if (ActionBlockerSystem.CanChangeDirection(throwSourceEnt)) { - throwSourceEnt.Transform.LocalRotation = angle.GetCardinalDir().ToAngle(); + throwSourceEnt.Transform.LocalRotation = (angle + MathHelper.PiOver2).GetCardinalDir().ToAngle(); } } @@ -112,7 +112,7 @@ namespace Content.Server.Throw /// /// Throw an entity at the position of from , /// without overshooting. - /// + /// cl /// The entity to throw. /// /// The MAXIMUM force to throw the entity with. diff --git a/Content.Shared/Atmos/AtmosDirection.cs b/Content.Shared/Atmos/AtmosDirection.cs index 9ea2057e17..eae089962f 100644 --- a/Content.Shared/Atmos/AtmosDirection.cs +++ b/Content.Shared/Atmos/AtmosDirection.cs @@ -87,15 +87,15 @@ namespace Content.Shared.Atmos { return direction switch { - AtmosDirection.East => Angle.FromDegrees(0), - AtmosDirection.North => Angle.FromDegrees(90), - AtmosDirection.West => Angle.FromDegrees(180), - AtmosDirection.South => Angle.FromDegrees(270), + AtmosDirection.East => Angle.FromDegrees(90), + AtmosDirection.North => Angle.FromDegrees(180), + AtmosDirection.West => Angle.FromDegrees(-90), + AtmosDirection.South => Angle.FromDegrees(0), - AtmosDirection.NorthEast => Angle.FromDegrees(45), - AtmosDirection.NorthWest => Angle.FromDegrees(135), - AtmosDirection.SouthWest => Angle.FromDegrees(225), - AtmosDirection.SouthEast => Angle.FromDegrees(315), + AtmosDirection.NorthEast => Angle.FromDegrees(135), + AtmosDirection.NorthWest => Angle.FromDegrees(-135), + AtmosDirection.SouthWest => Angle.FromDegrees(-45), + AtmosDirection.SouthEast => Angle.FromDegrees(45), _ => throw new ArgumentOutOfRangeException(nameof(direction), $"It was {direction}."), }; diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index 38f7cee3ee..00000438c2 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -105,84 +105,84 @@ entities: components: - parent: 853 pos: -15.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1 type: SuspicionShotgunSpawner components: - parent: 853 pos: -15.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2 type: SuspicionShotgunMagazineSpawner components: - parent: 853 pos: -23.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3 type: SuspicionPistolMagazineSpawner components: - parent: 853 pos: -35.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4 type: SuspicionRifleMagazineSpawner components: - parent: 853 pos: -35.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 5 type: SuspicionRifleMagazineSpawner components: - parent: 853 pos: -35.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 6 type: SuspicionShotgunMagazineSpawner components: - parent: 853 pos: -35.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 7 type: SuspicionShotgunMagazineSpawner components: - parent: 853 pos: -35.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 8 type: SuspicionGrenadesSpawner components: - parent: 853 pos: -11.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 9 type: Carpet components: - parent: 853 pos: -0.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 10 type: SpawnPointStationEngineer components: - parent: 853 pos: 33.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 11 type: SuspicionLaunchersSpawner components: - parent: 853 pos: -12.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 12 type: AirlockServiceGlassLocked @@ -191,35 +191,40 @@ entities: type: MetaData - parent: 853 pos: -7.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 13 type: SuspicionShotgunSpawner components: - parent: 853 pos: -12.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 14 type: SuspicionSMGSpawner components: - parent: 853 pos: -13.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 15 type: BikeHornInstrument components: - parent: 853 pos: -18.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 16 type: FirelockGlass components: - parent: 853 pos: 1.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -228,231 +233,231 @@ entities: components: - parent: 853 pos: -14.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 18 type: SuspicionHitscanSpawner components: - parent: 853 pos: -14.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 19 type: SuspicionPistolSpawner components: - parent: 853 pos: -10.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 20 type: SuspicionPistolSpawner components: - parent: 853 pos: -5.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 21 type: SuspicionPistolMagazineSpawner components: - parent: 853 pos: -31.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 22 type: SuspicionPistolMagazineSpawner components: - parent: 853 pos: -29.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 23 type: SuspicionPistolMagazineSpawner components: - parent: 853 pos: -9.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 24 type: SuspicionPistolMagazineSpawner components: - parent: 853 pos: -10.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 25 type: SuspicionPistolMagazineSpawner components: - parent: 853 pos: -3.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 26 type: SuspicionShotgunMagazineSpawner components: - parent: 853 pos: -29.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 27 type: SuspicionShotgunMagazineSpawner components: - parent: 853 pos: -30.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 28 type: SuspicionShotgunSpawner components: - parent: 853 pos: -29.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 29 type: SuspicionRifleMagazineSpawner components: - parent: 853 pos: -7.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 30 type: SuspicionSMGSpawner components: - parent: 853 pos: -7.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 31 type: SuspicionMagnumMagazineSpawner components: - parent: 853 pos: 16.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 32 type: SuspicionRevolverSpawner components: - parent: 853 pos: 15.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 33 type: SuspicionMagnumMagazineSpawner components: - parent: 853 pos: 14.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 34 type: SuspicionGrenadesSpawner components: - parent: 853 pos: -8.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 35 type: SuspicionGrenadesSpawner components: - parent: 853 pos: 0.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 36 type: SuspicionHitscanSpawner components: - parent: 853 pos: 25.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 37 type: SuspicionGrenadesSpawner components: - parent: 853 pos: 18.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 38 type: SuspicionGrenadesSpawner components: - parent: 853 pos: 15.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 39 type: SuspicionRifleMagazineSpawner components: - parent: 853 pos: -13.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 40 type: SuspicionSniperSpawner components: - parent: 853 pos: -8.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 41 type: SuspicionShotgunSpawner components: - parent: 853 pos: -7.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 42 type: SuspicionShotgunMagazineSpawner components: - parent: 853 pos: -7.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 43 type: SuspicionShotgunMagazineSpawner components: - parent: 853 pos: -6.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 44 type: FoodBananaCreamPie components: - parent: 853 pos: -18.509874,-9.279623 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 45 type: FoodBananaCreamPie components: - parent: 853 pos: -18.947374,-9.467123 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 46 type: FoodBanana components: - parent: 853 pos: -19.463,-9.482748 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 47 type: FoodBanana components: - parent: 853 pos: -19.603624,-9.388998 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 48 type: FoodBanana components: - parent: 853 pos: -19.728624,-9.576498 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 49 type: Poweredlight components: - parent: 853 pos: -18.5,-7 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -465,28 +470,28 @@ entities: components: - parent: 853 pos: -19.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 51 type: BoneSaw components: - parent: 853 pos: 19.49593,-21.552101 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 52 type: ClothingUnderSocksCoder components: - parent: 853 pos: 47.437466,-6.6893435 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 53 type: JawsOfLife components: - parent: 853 pos: 39.53893,-0.77325034 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - useSound: /Audio/Items/jaws_pry.ogg type: Tool @@ -495,21 +500,21 @@ entities: components: - parent: 853 pos: 22.086878,-4.4133806 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 55 type: ClothingHandsGlovesLatex components: - parent: 853 pos: 21.618128,-4.4133806 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 56 type: FirelockGlass components: - parent: 853 pos: 5.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -518,21 +523,21 @@ entities: components: - parent: 853 pos: 9.449931,16.636608 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 58 type: Scalpel components: - parent: 853 pos: 19.190952,-21.29313 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 59 type: DrinkBottleRum components: - parent: 853 pos: -15.694785,24.608267 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - caps: Refillable, Drainable type: SolutionContainer @@ -541,63 +546,63 @@ entities: components: - parent: 853 pos: -14.96041,24.545767 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 61 type: Retractor components: - parent: 853 pos: 19.482815,-21.853302 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 62 type: ToyMouse components: - parent: 853 pos: 31.376545,-7.1625524 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 63 type: SignSurgery components: - parent: 853 pos: 18.296293,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 64 type: Drill components: - parent: 853 pos: 19.515043,-22.566078 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 65 type: BedsheetMedical components: - parent: 853 pos: 18.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 66 type: Bed components: - parent: 853 pos: 18.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 67 type: Hemostat components: - parent: 853 pos: 19.655668,-21.300453 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 68 type: LockerCursed components: - parent: 853 pos: -8.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -610,7 +615,7 @@ entities: components: - parent: 853 pos: 39.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - anchored: False type: Physics @@ -623,7 +628,7 @@ entities: components: - parent: 853 pos: 1.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -632,14 +637,14 @@ entities: components: - parent: 853 pos: 8.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 72 type: ToolboxGoldFilled components: - parent: 853 pos: -3.454914,18.643616 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: storagebase: @@ -650,7 +655,7 @@ entities: components: - parent: 853 pos: -3.470539,16.956116 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - caps: Refillable, Drainable type: SolutionContainer @@ -659,49 +664,46 @@ entities: components: - parent: 853 pos: -1.5,-1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 75 type: FoodDonkPocket components: - parent: 853 pos: 33.274685,-1.5622956 - rot: 1.5707963267948966 rad type: Transform - uid: 76 type: Table components: - parent: 853 pos: 33.5,-2.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 77 type: Carpet components: - parent: 853 pos: -0.5,-1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 78 type: Table components: - parent: 853 pos: 33.5,-1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 79 type: FoodDonkPocket components: - parent: 853 pos: 33.66531,-1.3435456 - rot: 1.5707963267948966 rad type: Transform - uid: 80 type: DrinkFlask components: - parent: 853 pos: 8.439846,26.712742 - rot: 1.5707963267948966 rad type: Transform - caps: Refillable, Drainable type: SolutionContainer @@ -710,161 +712,161 @@ entities: components: - parent: 853 pos: 32.5,-2.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 82 type: ClothingNeckBling components: - parent: 853 pos: -2.861164,18.612366 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 83 type: ClothingNeckBling components: - parent: 853 pos: -2.564289,18.643616 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 84 type: Table components: - parent: 853 pos: -3.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 85 type: Table components: - parent: 853 pos: -2.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 86 type: Table components: - parent: 853 pos: -2.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 87 type: Table components: - parent: 853 pos: -3.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 88 type: ReinforcedWindow components: - parent: 853 pos: 28.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 89 type: ReinforcedWindow components: - parent: 853 pos: 27.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 90 type: ReinforcedWindow components: - parent: 853 pos: 26.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 91 type: LowWall components: - parent: 853 pos: 28.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 92 type: LowWall components: - parent: 853 pos: 27.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 93 type: LowWall components: - parent: 853 pos: 26.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 94 type: solid_wall components: - parent: 853 pos: -22.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 95 type: solid_wall components: - parent: 853 pos: -23.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 96 type: solid_wall components: - parent: 853 pos: -24.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 97 type: solid_wall components: - parent: 853 pos: -25.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 98 type: solid_wall components: - parent: 853 pos: -25.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 99 type: solid_wall components: - parent: 853 pos: -25.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 100 type: solid_wall components: - parent: 853 pos: -25.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 101 type: solid_wall components: - parent: 853 pos: -25.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 102 type: Brutepack components: - parent: 853 pos: 6.839255,-3.3712535 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 103 type: Carpet components: - parent: 853 pos: -1.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 104 type: RCD @@ -883,12 +885,14 @@ entities: components: - parent: 853 pos: -1.5,-11.5 + rot: 1.5707963705062866 rad type: Transform - uid: 107 type: WaterTankFull components: - parent: 853 pos: 0.5,-11.5 + rot: 1.5707963705062866 rad type: Transform - uid: 108 type: Basketball @@ -901,21 +905,21 @@ entities: components: - parent: 853 pos: 24.996767,-0.60842 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 110 type: SignSomethingOld components: - parent: 853 pos: 17.158585,-23.619913 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 111 type: SignAtmos components: - parent: 853 pos: 31.498556,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 112 type: Paper @@ -936,7 +940,6 @@ entities: components: - parent: 853 pos: 33.57156,-2.0622954 - rot: 1.5707963267948966 rad type: Transform - containers: storagebase: @@ -1001,35 +1004,35 @@ entities: components: - parent: 853 pos: -13.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 121 type: Chair components: - parent: 853 pos: 10.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 122 type: Chair components: - parent: 853 pos: 9.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 123 type: Chair components: - parent: 853 pos: 8.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 124 type: Stunbaton components: - parent: 853 pos: -14.484581,20.641253 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: stunbaton_cell_container: @@ -1042,7 +1045,7 @@ entities: components: - parent: 853 pos: -14.609581,20.969378 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: stunbaton_cell_container: @@ -1060,7 +1063,7 @@ entities: components: - parent: 853 pos: -14.515831,21.735003 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: BatteryBarrel-powercell-container: @@ -1080,7 +1083,7 @@ entities: components: - parent: 853 pos: -13.672081,21.719378 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: BatteryBarrel-powercell-container: @@ -1095,35 +1098,35 @@ entities: components: - parent: 853 pos: -14.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 131 type: Table components: - parent: 853 pos: -13.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 132 type: Table components: - parent: 853 pos: -14.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 133 type: SignEngineering components: - parent: 853 pos: 30.305984,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 134 type: Poweredlight components: - parent: 853 pos: 41.000477,14 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -1136,6 +1139,7 @@ entities: components: - parent: 853 pos: -10,13.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -1148,6 +1152,7 @@ entities: components: - parent: 853 pos: -26,-3.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -1163,25 +1168,28 @@ entities: type: MetaData - parent: 853 pos: 33.498077,11.399912 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 138 type: SignDirectionalEng components: - parent: 853 pos: 5.987236,6.2578936 + rot: 1.5707963705062866 rad type: Transform - uid: 139 type: SignBridge components: - parent: 853 pos: 5.6507263,22.5 + rot: 1.5707963705062866 rad type: Transform - uid: 140 type: Poweredlight components: - parent: 853 pos: -25.939785,7 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -1194,7 +1202,7 @@ entities: components: - parent: 853 pos: -15.231159,-17 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -1207,35 +1215,35 @@ entities: components: - parent: 853 pos: -5.506548,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 143 type: SignMedical components: - parent: 853 pos: 6.500677,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 144 type: SignGravity components: - parent: 853 pos: 48.325787,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 145 type: SignToolStorage components: - parent: 853 pos: -26.694574,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 146 type: Poweredlight components: - parent: 853 pos: 28.73304,7 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -1248,89 +1256,89 @@ entities: components: - parent: 853 pos: 10.691145,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 148 type: SignChem components: - parent: 853 pos: 14.317627,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 149 type: SignCargoDock components: - parent: 853 pos: 18.501179,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 150 type: solid_wall components: - parent: 853 pos: 24.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 151 type: solid_wall components: - parent: 853 pos: 18.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 152 type: HVWire components: - parent: 853 pos: 58.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 153 type: HVWire components: - parent: 853 pos: 58.5,-29.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 154 type: SignDirectionalEvac components: - parent: 853 pos: -20.488556,6.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 155 type: SignDirectionalSupply components: - parent: 853 pos: -25.704908,7.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 156 type: ConveyorBelt components: - parent: 853 pos: -23.5,-13.5 + rot: 1.5707963705062866 rad type: Transform - uid: 157 type: LargeBeaker components: - parent: 853 pos: 18.611881,1.2455455 - rot: 3.141592653589793 rad type: Transform - uid: 158 type: Beaker components: - parent: 853 pos: 18.361881,1.6674205 - rot: 3.141592653589793 rad type: Transform - uid: 159 type: DisposalBend components: - parent: 853 pos: 17.5,-0.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalBend: @@ -1341,7 +1349,7 @@ entities: components: - parent: 853 pos: 17.5,-1.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalBend: @@ -1352,6 +1360,7 @@ entities: components: - parent: 853 pos: 16.5,-1.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -1362,7 +1371,6 @@ entities: components: - parent: 853 pos: -23.467268,-14.347846 - rot: 3.141592653589793 rad type: Transform - signalReceivers: [] type: TwoWayLever @@ -1371,7 +1379,7 @@ entities: components: - parent: 853 pos: 34.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalJunction: @@ -1382,7 +1390,7 @@ entities: components: - parent: 853 pos: 24.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalJunction: @@ -1393,7 +1401,7 @@ entities: components: - parent: 853 pos: 12.5,-1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalJunction: @@ -1404,7 +1412,7 @@ entities: components: - parent: 853 pos: 12.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalJunction: @@ -1415,7 +1423,7 @@ entities: components: - parent: 853 pos: 2.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalJunction: @@ -1426,7 +1434,7 @@ entities: components: - parent: 853 pos: 2.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalJunction: @@ -1437,7 +1445,7 @@ entities: components: - parent: 853 pos: -10.5,-15.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalJunction: @@ -1448,7 +1456,7 @@ entities: components: - parent: 853 pos: -17.5,-15.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalJunction: @@ -1459,7 +1467,7 @@ entities: components: - parent: 853 pos: -23.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalJunction: @@ -1470,6 +1478,7 @@ entities: components: - parent: 853 pos: -27.5,-10.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalJunction: @@ -1480,7 +1489,7 @@ entities: components: - parent: 853 pos: -28.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalJunction: @@ -1491,7 +1500,7 @@ entities: components: - parent: 853 pos: -22.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalJunction: @@ -1502,7 +1511,7 @@ entities: components: - parent: 853 pos: -12.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalJunction: @@ -1513,7 +1522,7 @@ entities: components: - parent: 853 pos: 0.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalJunction: @@ -1524,7 +1533,7 @@ entities: components: - parent: 853 pos: 2.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalJunction: @@ -1535,7 +1544,7 @@ entities: components: - parent: 853 pos: 3.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalJunction: @@ -1546,7 +1555,7 @@ entities: components: - parent: 853 pos: -17.5,-14.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -1557,7 +1566,7 @@ entities: components: - parent: 853 pos: -17.5,-13.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -1568,7 +1577,7 @@ entities: components: - parent: 853 pos: -17.5,-12.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -1579,7 +1588,7 @@ entities: components: - parent: 853 pos: -17.5,-11.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -1590,7 +1599,7 @@ entities: components: - parent: 853 pos: -17.5,-22.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalEntry: @@ -1601,7 +1610,7 @@ entities: components: - parent: 853 pos: -17.5,-22.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalUnit: @@ -1612,6 +1621,7 @@ entities: components: - parent: 853 pos: -16.5,-15.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -1622,7 +1632,7 @@ entities: components: - parent: 853 pos: -28.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -1633,7 +1643,7 @@ entities: components: - parent: 853 pos: -28.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -1644,7 +1654,7 @@ entities: components: - parent: 853 pos: -28.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -1655,7 +1665,7 @@ entities: components: - parent: 853 pos: -28.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -1666,7 +1676,7 @@ entities: components: - parent: 853 pos: -28.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -1677,14 +1687,14 @@ entities: components: - parent: 853 pos: -28.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 192 type: DisposalUnit components: - parent: 853 pos: -29.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalUnit: @@ -1695,7 +1705,7 @@ entities: components: - parent: 853 pos: -8.5,-15.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalBend: @@ -1706,7 +1716,7 @@ entities: components: - parent: 853 pos: -17.5,-16.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -1717,6 +1727,7 @@ entities: components: - parent: 853 pos: 0.5,17.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -1727,6 +1738,7 @@ entities: components: - parent: 853 pos: -0.5,17.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -1737,6 +1749,7 @@ entities: components: - parent: 853 pos: -1.5,17.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -1747,6 +1760,7 @@ entities: components: - parent: 853 pos: -2.5,17.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -1757,6 +1771,7 @@ entities: components: - parent: 853 pos: -3.5,17.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -1767,6 +1782,7 @@ entities: components: - parent: 853 pos: -4.5,17.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -1777,6 +1793,7 @@ entities: components: - parent: 853 pos: -5.5,17.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalEntry: @@ -1787,7 +1804,7 @@ entities: components: - parent: 853 pos: -5.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalUnit: @@ -1798,7 +1815,7 @@ entities: components: - parent: 853 pos: -17.5,-17.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -1809,7 +1826,7 @@ entities: components: - parent: 853 pos: 4.5,11.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -1820,7 +1837,7 @@ entities: components: - parent: 853 pos: 5.5,11.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -1831,7 +1848,7 @@ entities: components: - parent: 853 pos: 6.5,11.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalEntry: @@ -1842,7 +1859,6 @@ entities: components: - parent: 853 pos: 6.5,11.5 - rot: 3.141592653589793 rad type: Transform - containers: DisposalUnit: @@ -1853,7 +1869,7 @@ entities: components: - parent: 853 pos: -17.5,-18.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -1864,7 +1880,7 @@ entities: components: - parent: 853 pos: 24.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -1875,7 +1891,7 @@ entities: components: - parent: 853 pos: 24.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -1886,7 +1902,7 @@ entities: components: - parent: 853 pos: 24.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -1897,7 +1913,7 @@ entities: components: - parent: 853 pos: 24.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalEntry: @@ -1908,7 +1924,7 @@ entities: components: - parent: 853 pos: 24.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalUnit: @@ -1919,6 +1935,7 @@ entities: components: - parent: 853 pos: 13.5,-1.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -1929,6 +1946,7 @@ entities: components: - parent: 853 pos: 14.5,-1.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -1939,6 +1957,7 @@ entities: components: - parent: 853 pos: 15.5,-1.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -1949,7 +1968,7 @@ entities: components: - parent: 853 pos: -17.5,-19.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -1966,7 +1985,7 @@ entities: components: - parent: 853 pos: -17.5,-20.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -1977,7 +1996,7 @@ entities: components: - parent: 853 pos: 34.5,1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -1988,7 +2007,7 @@ entities: components: - parent: 853 pos: 34.5,0.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -1999,7 +2018,7 @@ entities: components: - parent: 853 pos: 34.5,-0.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2010,7 +2029,7 @@ entities: components: - parent: 853 pos: 34.5,-1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2021,7 +2040,7 @@ entities: components: - parent: 853 pos: 34.5,-2.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2032,7 +2051,7 @@ entities: components: - parent: 853 pos: 34.5,-3.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2043,7 +2062,7 @@ entities: components: - parent: 853 pos: 34.5,-4.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalEntry: @@ -2054,7 +2073,7 @@ entities: components: - parent: 853 pos: 34.5,-4.5 - rot: 3.141592653589793 rad + rot: 6.283185350890976 rad type: Transform - containers: DisposalUnit: @@ -2065,7 +2084,7 @@ entities: components: - parent: 853 pos: 30.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2076,7 +2095,7 @@ entities: components: - parent: 853 pos: 36.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2087,7 +2106,7 @@ entities: components: - parent: 853 pos: 35.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2098,7 +2117,7 @@ entities: components: - parent: 853 pos: 34.5,2.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2109,7 +2128,7 @@ entities: components: - parent: 853 pos: 33.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2120,7 +2139,7 @@ entities: components: - parent: 853 pos: 32.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2131,7 +2150,7 @@ entities: components: - parent: 853 pos: 31.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2142,7 +2161,7 @@ entities: components: - parent: 853 pos: 37.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalBend: @@ -2153,7 +2172,7 @@ entities: components: - parent: 853 pos: 37.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2164,7 +2183,7 @@ entities: components: - parent: 853 pos: 37.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2175,7 +2194,7 @@ entities: components: - parent: 853 pos: 37.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalEntry: @@ -2186,7 +2205,7 @@ entities: components: - parent: 853 pos: 37.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalUnit: @@ -2197,7 +2216,7 @@ entities: components: - parent: 853 pos: 2.5,29.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalBend: @@ -2208,7 +2227,7 @@ entities: components: - parent: 853 pos: 2.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2219,7 +2238,7 @@ entities: components: - parent: 853 pos: 2.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2230,7 +2249,7 @@ entities: components: - parent: 853 pos: 2.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2241,7 +2260,7 @@ entities: components: - parent: 853 pos: 2.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2252,7 +2271,7 @@ entities: components: - parent: 853 pos: 2.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2263,7 +2282,7 @@ entities: components: - parent: 853 pos: 2.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2274,7 +2293,7 @@ entities: components: - parent: 853 pos: 3.5,11.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2285,7 +2304,7 @@ entities: components: - parent: 853 pos: 2.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2296,7 +2315,7 @@ entities: components: - parent: 853 pos: 2.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2307,7 +2326,7 @@ entities: components: - parent: 853 pos: 2.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2318,7 +2337,7 @@ entities: components: - parent: 853 pos: 2.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2329,7 +2348,7 @@ entities: components: - parent: 853 pos: 2.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2340,6 +2359,7 @@ entities: components: - parent: 853 pos: 1.5,17.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -2350,7 +2370,7 @@ entities: components: - parent: 853 pos: 2.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2361,7 +2381,7 @@ entities: components: - parent: 853 pos: 2.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2372,7 +2392,7 @@ entities: components: - parent: 853 pos: 2.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2383,7 +2403,7 @@ entities: components: - parent: 853 pos: 2.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2394,7 +2414,7 @@ entities: components: - parent: 853 pos: 2.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2405,7 +2425,7 @@ entities: components: - parent: 853 pos: 2.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2416,7 +2436,7 @@ entities: components: - parent: 853 pos: 2.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2427,7 +2447,7 @@ entities: components: - parent: 853 pos: 2.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2438,7 +2458,7 @@ entities: components: - parent: 853 pos: 2.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2449,7 +2469,7 @@ entities: components: - parent: 853 pos: 2.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2460,14 +2480,14 @@ entities: components: - parent: 853 pos: 37.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 265 type: DisposalPipe components: - parent: 853 pos: 2.5,28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -2478,7 +2498,7 @@ entities: components: - parent: 853 pos: -17.5,-21.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2489,6 +2509,7 @@ entities: components: - parent: 853 pos: 1.5,29.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -2499,6 +2520,7 @@ entities: components: - parent: 853 pos: 0.5,29.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -2509,6 +2531,7 @@ entities: components: - parent: 853 pos: -0.5,29.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -2519,6 +2542,7 @@ entities: components: - parent: 853 pos: -1.5,29.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -2529,6 +2553,7 @@ entities: components: - parent: 853 pos: -2.5,29.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalEntry: @@ -2539,7 +2564,7 @@ entities: components: - parent: 853 pos: -2.5,29.5 - rot: 3.141592653589793 rad + rot: 6.283185350890976 rad type: Transform - containers: DisposalUnit: @@ -2550,6 +2575,7 @@ entities: components: - parent: 853 pos: -18.5,-10.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -2560,7 +2586,7 @@ entities: components: - parent: 853 pos: 3.5,-8.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2571,7 +2597,7 @@ entities: components: - parent: 853 pos: 3.5,-7.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2582,7 +2608,7 @@ entities: components: - parent: 853 pos: 3.5,-6.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2593,7 +2619,7 @@ entities: components: - parent: 853 pos: 3.5,-5.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2604,7 +2630,7 @@ entities: components: - parent: 853 pos: 3.5,-4.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2615,7 +2641,7 @@ entities: components: - parent: 853 pos: 3.5,-3.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2626,7 +2652,7 @@ entities: components: - parent: 853 pos: 3.5,-2.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2637,7 +2663,7 @@ entities: components: - parent: 853 pos: 3.5,-1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2648,7 +2674,7 @@ entities: components: - parent: 853 pos: 3.5,-0.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2659,7 +2685,7 @@ entities: components: - parent: 853 pos: 3.5,0.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2670,7 +2696,7 @@ entities: components: - parent: 853 pos: 3.5,1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2681,7 +2707,7 @@ entities: components: - parent: 853 pos: 3.5,2.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2692,7 +2718,7 @@ entities: components: - parent: 853 pos: 3.5,-10.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2703,7 +2729,7 @@ entities: components: - parent: 853 pos: 3.5,-11.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalBend: @@ -2714,7 +2740,7 @@ entities: components: - parent: 853 pos: 5.5,-11.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2725,7 +2751,7 @@ entities: components: - parent: 853 pos: 6.5,-11.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2736,7 +2762,7 @@ entities: components: - parent: 853 pos: 7.5,-11.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2747,7 +2773,7 @@ entities: components: - parent: 853 pos: 8.5,-11.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2758,7 +2784,7 @@ entities: components: - parent: 853 pos: 4.5,-11.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2769,7 +2795,7 @@ entities: components: - parent: 853 pos: 9.5,-11.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2780,7 +2806,7 @@ entities: components: - parent: 853 pos: 10.5,-11.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2791,7 +2817,7 @@ entities: components: - parent: 853 pos: 11.5,-11.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalEntry: @@ -2802,7 +2828,7 @@ entities: components: - parent: 853 pos: 11.5,-11.5 - rot: 3.141592653589793 rad + rot: 6.283185350890976 rad type: Transform - containers: DisposalUnit: @@ -2813,6 +2839,7 @@ entities: components: - parent: 853 pos: -19.5,-10.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -2823,7 +2850,7 @@ entities: components: - parent: 853 pos: 12.5,1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2834,7 +2861,7 @@ entities: components: - parent: 853 pos: 12.5,0.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2845,7 +2872,7 @@ entities: components: - parent: 853 pos: 12.5,-0.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2856,7 +2883,7 @@ entities: components: - parent: 853 pos: 12.5,-2.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalEntry: @@ -2867,7 +2894,7 @@ entities: components: - parent: 853 pos: 12.5,-2.5 - rot: 3.141592653589793 rad + rot: 6.283185350890976 rad type: Transform - containers: DisposalUnit: @@ -2878,21 +2905,21 @@ entities: components: - parent: 853 pos: 36.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 304 type: Window components: - parent: 853 pos: 34.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 305 type: DisposalPipe components: - parent: 853 pos: 5.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2903,7 +2930,7 @@ entities: components: - parent: 853 pos: 6.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2914,7 +2941,7 @@ entities: components: - parent: 853 pos: 7.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2925,7 +2952,7 @@ entities: components: - parent: 853 pos: 8.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2936,7 +2963,7 @@ entities: components: - parent: 853 pos: 9.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2947,7 +2974,7 @@ entities: components: - parent: 853 pos: 10.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2958,7 +2985,7 @@ entities: components: - parent: 853 pos: 11.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2969,7 +2996,7 @@ entities: components: - parent: 853 pos: 12.5,2.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -2980,7 +3007,7 @@ entities: components: - parent: 853 pos: 13.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -2991,7 +3018,7 @@ entities: components: - parent: 853 pos: 14.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3002,7 +3029,7 @@ entities: components: - parent: 853 pos: 15.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3013,7 +3040,7 @@ entities: components: - parent: 853 pos: 16.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3024,7 +3051,7 @@ entities: components: - parent: 853 pos: 17.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3035,7 +3062,7 @@ entities: components: - parent: 853 pos: 18.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3046,7 +3073,7 @@ entities: components: - parent: 853 pos: 19.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3057,7 +3084,7 @@ entities: components: - parent: 853 pos: 20.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3068,7 +3095,7 @@ entities: components: - parent: 853 pos: 21.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3079,7 +3106,7 @@ entities: components: - parent: 853 pos: 22.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3090,7 +3117,7 @@ entities: components: - parent: 853 pos: 23.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3101,7 +3128,7 @@ entities: components: - parent: 853 pos: 24.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3112,7 +3139,6 @@ entities: components: - parent: 853 pos: -22.5,14.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -3121,7 +3147,7 @@ entities: components: - parent: 853 pos: 26.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3132,7 +3158,7 @@ entities: components: - parent: 853 pos: 27.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3143,7 +3169,7 @@ entities: components: - parent: 853 pos: 28.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3154,7 +3180,7 @@ entities: components: - parent: 853 pos: 29.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3165,7 +3191,7 @@ entities: components: - parent: 853 pos: 4.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3176,7 +3202,7 @@ entities: components: - parent: 853 pos: 3.5,-9.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -3187,7 +3213,7 @@ entities: components: - parent: 853 pos: 2.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3198,6 +3224,7 @@ entities: components: - parent: 853 pos: -20.5,-10.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -3208,7 +3235,7 @@ entities: components: - parent: 853 pos: 0.5,1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalEntry: @@ -3219,7 +3246,7 @@ entities: components: - parent: 853 pos: 0.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalUnit: @@ -3230,7 +3257,7 @@ entities: components: - parent: 853 pos: -27.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3241,7 +3268,7 @@ entities: components: - parent: 853 pos: -27.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalEntry: @@ -3252,6 +3279,7 @@ entities: components: - parent: 853 pos: -21.5,-10.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -3262,7 +3290,7 @@ entities: components: - parent: 853 pos: -12.5,2.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -3273,7 +3301,7 @@ entities: components: - parent: 853 pos: -12.5,1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalEntry: @@ -3284,6 +3312,7 @@ entities: components: - parent: 853 pos: -22.5,-10.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -3294,7 +3323,7 @@ entities: components: - parent: 853 pos: -23.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3305,7 +3334,7 @@ entities: components: - parent: 853 pos: -23.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3316,6 +3345,7 @@ entities: components: - parent: 853 pos: -32.5,3.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalBend: @@ -3326,7 +3356,7 @@ entities: components: - parent: 853 pos: -22.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3337,7 +3367,7 @@ entities: components: - parent: 853 pos: -22.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3348,7 +3378,7 @@ entities: components: - parent: 853 pos: -22.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalEntry: @@ -3359,7 +3389,7 @@ entities: components: - parent: 853 pos: -17.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalBend: @@ -3370,7 +3400,7 @@ entities: components: - parent: 853 pos: -7.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3381,7 +3411,7 @@ entities: components: - parent: 853 pos: -6.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3392,7 +3422,7 @@ entities: components: - parent: 853 pos: -5.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3403,7 +3433,7 @@ entities: components: - parent: 853 pos: -4.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3414,7 +3444,7 @@ entities: components: - parent: 853 pos: -3.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3425,7 +3455,7 @@ entities: components: - parent: 853 pos: -2.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3436,7 +3466,7 @@ entities: components: - parent: 853 pos: -1.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3447,7 +3477,7 @@ entities: components: - parent: 853 pos: -0.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3458,7 +3488,7 @@ entities: components: - parent: 853 pos: 0.5,2.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -3469,7 +3499,7 @@ entities: components: - parent: 853 pos: 1.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3480,7 +3510,7 @@ entities: components: - parent: 853 pos: -8.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3491,7 +3521,7 @@ entities: components: - parent: 853 pos: -9.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3502,7 +3532,7 @@ entities: components: - parent: 853 pos: -10.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3513,7 +3543,7 @@ entities: components: - parent: 853 pos: -11.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3524,7 +3554,7 @@ entities: components: - parent: 853 pos: -12.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalUnit: @@ -3535,7 +3565,7 @@ entities: components: - parent: 853 pos: -13.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3546,7 +3576,7 @@ entities: components: - parent: 853 pos: -14.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3557,7 +3587,7 @@ entities: components: - parent: 853 pos: -15.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3568,7 +3598,7 @@ entities: components: - parent: 853 pos: -16.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3579,7 +3609,7 @@ entities: components: - parent: 853 pos: -17.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3590,7 +3620,7 @@ entities: components: - parent: 853 pos: -18.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3601,7 +3631,7 @@ entities: components: - parent: 853 pos: -19.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3612,7 +3642,7 @@ entities: components: - parent: 853 pos: -20.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3623,7 +3653,7 @@ entities: components: - parent: 853 pos: -21.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3634,7 +3664,7 @@ entities: components: - parent: 853 pos: -22.5,6.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalUnit: @@ -3645,7 +3675,7 @@ entities: components: - parent: 853 pos: -23.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3656,7 +3686,7 @@ entities: components: - parent: 853 pos: -24.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3667,7 +3697,7 @@ entities: components: - parent: 853 pos: -25.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3678,7 +3708,7 @@ entities: components: - parent: 853 pos: -26.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3689,7 +3719,7 @@ entities: components: - parent: 853 pos: -27.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3700,7 +3730,7 @@ entities: components: - parent: 853 pos: -28.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3711,7 +3741,7 @@ entities: components: - parent: 853 pos: -29.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3722,7 +3752,7 @@ entities: components: - parent: 853 pos: -30.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3733,7 +3763,7 @@ entities: components: - parent: 853 pos: -31.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3744,7 +3774,7 @@ entities: components: - parent: 853 pos: -32.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3755,7 +3785,7 @@ entities: components: - parent: 853 pos: -32.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3766,7 +3796,7 @@ entities: components: - parent: 853 pos: -32.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3777,7 +3807,7 @@ entities: components: - parent: 853 pos: -32.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3788,7 +3818,7 @@ entities: components: - parent: 853 pos: -32.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3799,7 +3829,7 @@ entities: components: - parent: 853 pos: -32.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3810,7 +3840,7 @@ entities: components: - parent: 853 pos: -32.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3821,7 +3851,7 @@ entities: components: - parent: 853 pos: -32.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3832,7 +3862,7 @@ entities: components: - parent: 853 pos: -32.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3843,7 +3873,7 @@ entities: components: - parent: 853 pos: -32.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3854,7 +3884,7 @@ entities: components: - parent: 853 pos: -32.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3865,7 +3895,7 @@ entities: components: - parent: 853 pos: -32.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3876,7 +3906,7 @@ entities: components: - parent: 853 pos: -32.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalTransit: @@ -3887,7 +3917,7 @@ entities: components: - parent: 853 pos: -32.5,-10.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalBend: @@ -3898,7 +3928,7 @@ entities: components: - parent: 853 pos: -31.5,-10.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3909,7 +3939,7 @@ entities: components: - parent: 853 pos: -30.5,-10.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3920,7 +3950,7 @@ entities: components: - parent: 853 pos: -29.5,-10.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3931,7 +3961,7 @@ entities: components: - parent: 853 pos: -28.5,-10.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3942,7 +3972,7 @@ entities: components: - parent: 853 pos: -27.5,-8.5 - rot: 1.5707963267948966 rad + rot: 6.283185350890976 rad type: Transform - containers: DisposalUnit: @@ -3953,7 +3983,7 @@ entities: components: - parent: 853 pos: -26.5,-10.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3964,7 +3994,7 @@ entities: components: - parent: 853 pos: -25.5,-10.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3975,7 +4005,7 @@ entities: components: - parent: 853 pos: -24.5,-10.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -3986,7 +4016,7 @@ entities: components: - parent: 853 pos: -10.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalUnit: @@ -3997,7 +4027,7 @@ entities: components: - parent: 853 pos: -6.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -4006,672 +4036,672 @@ entities: components: - parent: 853 pos: 32.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 408 type: ReinforcedWindow components: - parent: 853 pos: 30.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 409 type: solid_wall components: - parent: 853 pos: -23.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 410 type: solid_wall components: - parent: 853 pos: -22.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 411 type: solid_wall components: - parent: 853 pos: -21.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 412 type: solid_wall components: - parent: 853 pos: -20.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 413 type: solid_wall components: - parent: 853 pos: -19.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 414 type: solid_wall components: - parent: 853 pos: -19.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 415 type: solid_wall components: - parent: 853 pos: -19.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 416 type: solid_wall components: - parent: 853 pos: -19.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 417 type: TrashSpawner components: - parent: 853 pos: 9.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 418 type: TrashSpawner components: - parent: 853 pos: 12.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 419 type: TrashSpawner components: - parent: 853 pos: 13.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 420 type: TrashSpawner components: - parent: 853 pos: 1.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 421 type: TrashSpawner components: - parent: 853 pos: 4.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 422 type: TrashSpawner components: - parent: 853 pos: -22.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 423 type: TrashSpawner components: - parent: 853 pos: -25.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 424 type: TrashSpawner components: - parent: 853 pos: -17.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 425 type: TrashSpawner components: - parent: 853 pos: -8.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 426 type: TrashSpawner components: - parent: 853 pos: -1.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 427 type: TrashSpawner components: - parent: 853 pos: -7.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 428 type: TrashSpawner components: - parent: 853 pos: 19.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 429 type: TrashSpawner components: - parent: 853 pos: 25.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 430 type: TrashSpawner components: - parent: 853 pos: 6.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 431 type: TrashSpawner components: - parent: 853 pos: 12.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 432 type: TrashSpawner components: - parent: 853 pos: 12.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 433 type: TrashSpawner components: - parent: 853 pos: 24.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 434 type: TrashSpawner components: - parent: 853 pos: 27.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 435 type: TrashSpawner components: - parent: 853 pos: 26.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 436 type: TrashSpawner components: - parent: 853 pos: 28.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 437 type: TrashSpawner components: - parent: 853 pos: 27.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 438 type: TrashSpawner components: - parent: 853 pos: 35.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 439 type: TrashSpawner components: - parent: 853 pos: 44.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 440 type: TrashSpawner components: - parent: 853 pos: 42.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 441 type: TrashSpawner components: - parent: 853 pos: 37.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 442 type: TrashSpawner components: - parent: 853 pos: 37.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 443 type: TrashSpawner components: - parent: 853 pos: 32.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 444 type: TrashSpawner components: - parent: 853 pos: 20.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 445 type: TrashSpawner components: - parent: 853 pos: 21.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 446 type: TrashSpawner components: - parent: 853 pos: 25.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 447 type: TrashSpawner components: - parent: 853 pos: 27.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 448 type: TrashSpawner components: - parent: 853 pos: 27.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 449 type: TrashSpawner components: - parent: 853 pos: 24.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 450 type: TrashSpawner components: - parent: 853 pos: 27.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 451 type: TrashSpawner components: - parent: 853 pos: 26.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 452 type: solid_wall components: - parent: 853 pos: 0.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 453 type: TrashSpawner components: - parent: 853 pos: 21.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 454 type: TrashSpawner components: - parent: 853 pos: 21.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 455 type: TrashSpawner components: - parent: 853 pos: 22.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 456 type: TrashSpawner components: - parent: 853 pos: 18.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 457 type: TrashSpawner components: - parent: 853 pos: 14.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 458 type: TrashSpawner components: - parent: 853 pos: 14.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 459 type: TrashSpawner components: - parent: 853 pos: 12.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 460 type: TrashSpawner components: - parent: 853 pos: 7.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 461 type: TrashSpawner components: - parent: 853 pos: -10.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 462 type: TrashSpawner components: - parent: 853 pos: -0.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 463 type: TrashSpawner components: - parent: 853 pos: -2.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 464 type: TrashSpawner components: - parent: 853 pos: -5.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 465 type: Catwalk components: - parent: 853 pos: -32.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 466 type: TrashSpawner components: - parent: 853 pos: -9.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 467 type: LowWall components: - parent: 853 pos: -35.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 468 type: TrashSpawner components: - parent: 853 pos: -11.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 469 type: TrashSpawner components: - parent: 853 pos: -11.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 470 type: TrashSpawner components: - parent: 853 pos: 0.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 471 type: TrashSpawner components: - parent: 853 pos: -0.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 472 type: TrashSpawner components: - parent: 853 pos: -0.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 473 type: TrashSpawner components: - parent: 853 pos: -2.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 474 type: TrashSpawner components: - parent: 853 pos: -6.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 475 type: TrashSpawner components: - parent: 853 pos: -16.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 476 type: TrashSpawner components: - parent: 853 pos: -11.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 477 type: TrashSpawner components: - parent: 853 pos: -8.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 478 type: TrashSpawner components: - parent: 853 pos: -9.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 479 type: TrashSpawner components: - parent: 853 pos: -8.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 480 type: TrashSpawner components: - parent: 853 pos: -12.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 481 type: TrashSpawner components: - parent: 853 pos: -18.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 482 type: SuspicionPistolMagazineSpawner components: - parent: 853 pos: -35.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 483 type: TrashSpawner components: - parent: 853 pos: -21.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 484 type: TrashSpawner components: - parent: 853 pos: -28.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 485 type: TrashSpawner components: - parent: 853 pos: -32.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 486 type: TrashSpawner components: - parent: 853 pos: -33.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 487 type: TrashSpawner components: - parent: 853 pos: -33.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 488 type: TrashSpawner components: - parent: 853 pos: -32.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 489 type: TrashSpawner components: - parent: 853 pos: -19.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 490 type: TrashSpawner components: - parent: 853 pos: -30.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 491 type: TrashSpawner components: - parent: 853 pos: -30.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 492 type: SpawnPointMime components: - parent: 853 pos: -19.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 493 type: TrashSpawner components: - parent: 853 pos: -32.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 494 type: TrashSpawner components: - parent: 853 pos: -35.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 495 type: TrashSpawner components: - parent: 853 pos: -36.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 496 type: TrashSpawner components: - parent: 853 pos: 0.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 497 type: TrashSpawner components: - parent: 853 pos: -3.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 498 type: TrashSpawner components: - parent: 853 pos: -2.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 499 type: TrashSpawner components: - parent: 853 pos: -4.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 500 type: TrashSpawner components: - parent: 853 pos: -7.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 501 type: TrashSpawner components: - parent: 853 pos: -8.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 502 type: Poweredlight components: - parent: 853 pos: -38.60578,1.9956734 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -4684,84 +4714,84 @@ entities: components: - parent: 853 pos: -18.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 504 type: TrashSpawner components: - parent: 853 pos: -18.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 505 type: TrashSpawner components: - parent: 853 pos: -15.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 506 type: TrashSpawner components: - parent: 853 pos: -17.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 507 type: TrashSpawner components: - parent: 853 pos: -21.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 508 type: TrashSpawner components: - parent: 853 pos: -23.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 509 type: TrashSpawner components: - parent: 853 pos: -25.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 510 type: TrashSpawner components: - parent: 853 pos: -30.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 511 type: TrashSpawner components: - parent: 853 pos: -32.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 512 type: TrashSpawner components: - parent: 853 pos: -31.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 513 type: TrashSpawner components: - parent: 853 pos: -21.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 514 type: Poweredlight components: - parent: 853 pos: -16,-1.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -4774,7 +4804,7 @@ entities: components: - parent: 853 pos: -20.5,-3 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -4787,7 +4817,7 @@ entities: components: - parent: 853 pos: -20.5,2 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -4800,35 +4830,35 @@ entities: components: - parent: 853 pos: -15.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 518 type: Catwalk components: - parent: 853 pos: -16.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 519 type: Catwalk components: - parent: 853 pos: -15.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 520 type: Catwalk components: - parent: 853 pos: -15.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 521 type: Catwalk components: - parent: 853 pos: -16.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 522 type: Airlock @@ -4837,224 +4867,239 @@ entities: type: MetaData - parent: 853 pos: -16.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 523 type: AirlockMaintCommonLocked components: - parent: 853 pos: -16.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 524 type: AirlockMaintCommonLocked components: - parent: 853 pos: -14.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 525 type: Table components: - parent: 853 pos: -15.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 526 type: solid_wall components: - parent: 853 pos: -14.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 527 type: solid_wall components: - parent: 853 pos: -21.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 528 type: SuspicionRifleSpawner components: - parent: 853 pos: 5.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 529 type: SuspicionMeleeSpawner components: - parent: 853 pos: -4.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 530 type: SuspicionPistolSpawner components: - parent: 853 pos: -13.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 531 type: SuspicionRifleSpawner components: - parent: 853 pos: 6.5,28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 532 type: SuspicionRifleSpawner components: - parent: 853 pos: 0.5,28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 533 type: SuspicionPistolSpawner components: - parent: 853 pos: 6.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 534 type: SuspicionRifleSpawner components: - parent: 853 pos: -7.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 535 type: SuspicionRifleSpawner components: - parent: 853 pos: -7.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 536 type: SuspicionPistolSpawner components: - parent: 853 pos: -20.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 537 type: SuspicionPistolSpawner components: - parent: 853 pos: -31.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 538 type: SuspicionPistolSpawner components: - parent: 853 pos: -18.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 539 type: SuspicionRifleSpawner components: - parent: 853 pos: -32.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 540 type: SuspicionRifleSpawner components: - parent: 853 pos: -14.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 541 type: SuspicionRifleSpawner components: - parent: 853 pos: -2.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 542 type: SuspicionRifleSpawner components: - parent: 853 pos: 23.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 543 type: SuspicionMeleeSpawner components: - parent: 853 pos: 22.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 544 type: SuspicionMeleeSpawner components: - parent: 853 pos: 17.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 545 type: SuspicionMeleeSpawner components: - parent: 853 pos: 18.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 546 type: SuspicionMeleeSpawner components: - parent: 853 pos: 10.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 547 type: SuspicionMeleeSpawner components: - parent: 853 pos: 15.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 548 type: SuspicionMeleeSpawner components: - parent: 853 pos: 10.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 549 type: SuspicionMeleeSpawner components: - parent: 853 pos: 6.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 550 type: SuspicionMeleeSpawner components: - parent: 853 pos: -0.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 551 type: SuspicionMeleeSpawner components: - parent: 853 pos: -29.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 552 type: SuspicionMeleeSpawner components: - parent: 853 pos: -28.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 553 type: SuspicionMeleeSpawner components: - parent: 853 pos: -27.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 554 type: AirlockSecurityGlassLocked @@ -5063,8 +5108,13 @@ entities: type: MetaData - parent: 853 pos: 0.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 555 type: AirlockSecurityGlassLocked components: @@ -5072,28 +5122,33 @@ entities: type: MetaData - parent: 853 pos: -2.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 556 type: Catwalk components: - parent: 853 pos: -1.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 557 type: reinforced_wall components: - parent: 853 pos: 13.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 558 type: Poweredlight components: - parent: 853 pos: 20,-17.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -5108,7 +5163,7 @@ entities: components: - parent: 853 pos: 15.5,-18 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -5123,6 +5178,7 @@ entities: components: - parent: 853 pos: 17,-20.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -5139,19 +5195,29 @@ entities: type: MetaData - parent: 853 pos: -8.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - access: - - Security - Command type: AccessReader + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 562 type: AirlockExternalLocked components: - parent: 853 pos: 14.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 563 type: SupplyComputerCircuitboard components: @@ -5162,7 +5228,7 @@ entities: components: - parent: 853 pos: 21.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: board: @@ -5175,7 +5241,7 @@ entities: components: - parent: 853 pos: 21.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 566 type: AirlockCargoGlassLocked @@ -5184,8 +5250,13 @@ entities: type: MetaData - parent: 853 pos: 17.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 567 type: AirlockCargoGlassLocked components: @@ -5193,8 +5264,13 @@ entities: type: MetaData - parent: 853 pos: 17.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 568 type: AirlockCargoGlassLocked components: @@ -5202,18 +5278,28 @@ entities: type: MetaData - parent: 853 pos: 13.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 569 type: AirlockMaintCommandLocked components: - parent: 853 pos: 8.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - access: - - External type: AccessReader + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 570 type: AirlockCommandGlassLocked components: @@ -5221,11 +5307,16 @@ entities: type: MetaData - parent: 853 pos: 9.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - access: - - External type: AccessReader + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 571 type: AirlockCommandGlassLocked components: @@ -5233,11 +5324,16 @@ entities: type: MetaData - parent: 853 pos: 7.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - access: - - External type: AccessReader + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 572 type: AirlockCommandGlassLocked components: @@ -5245,8 +5341,13 @@ entities: type: MetaData - parent: 853 pos: 4.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 573 type: AirlockCommandGlassLocked components: @@ -5254,8 +5355,13 @@ entities: type: MetaData - parent: 853 pos: 2.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 574 type: AirlockVaultLocked components: @@ -5263,8 +5369,13 @@ entities: type: MetaData - parent: 853 pos: -10.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 575 type: AirlockVaultLocked components: @@ -5272,13 +5383,19 @@ entities: type: MetaData - parent: 853 pos: -12.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 576 type: ChairOfficeDark components: - parent: 853 pos: -8.5,8.5 + rot: 1.5707963705062866 rad type: Transform - anchored: False type: Physics @@ -5287,7 +5404,7 @@ entities: components: - parent: 853 pos: -9.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - anchored: False type: Physics @@ -5296,53 +5413,63 @@ entities: components: - parent: 853 pos: -8.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 579 type: TableR components: - parent: 853 pos: -9.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 580 type: SuspicionHitscanSpawner components: - parent: 853 pos: -27.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 581 type: SuspicionGrenadesSpawner components: - parent: 853 pos: -20.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 582 type: AirlockMaintCommonLocked components: - parent: 853 pos: 27.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 583 type: solid_wall components: - parent: 853 pos: -29.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 584 type: AirlockMaintCommonLocked components: - parent: 853 pos: -16.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - access: - - Service type: AccessReader + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 585 type: Airlock components: @@ -5350,14 +5477,19 @@ entities: type: MetaData - parent: 853 pos: -21.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 586 type: StoolBar components: - parent: 853 pos: -1.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 587 type: AirlockServiceLocked @@ -5366,17 +5498,22 @@ entities: type: MetaData - parent: 853 pos: -20.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - access: - - Theatre type: AccessReader + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 588 type: TableGlass components: - parent: 853 pos: -0.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 589 type: AirlockServiceGlassLocked @@ -5385,11 +5522,16 @@ entities: type: MetaData - parent: 853 pos: -25.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - access: - - Maintenance type: AccessReader + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 590 type: AirlockServiceGlassLocked components: @@ -5397,11 +5539,16 @@ entities: type: MetaData - parent: 853 pos: -25.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - access: - - Maintenance type: AccessReader + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 591 type: AirlockScienceLocked components: @@ -5409,8 +5556,13 @@ entities: type: MetaData - parent: 853 pos: -12.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 592 type: AirlockScienceLocked components: @@ -5418,8 +5570,13 @@ entities: type: MetaData - parent: 853 pos: -12.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 593 type: AirlockCommandGlassLocked components: @@ -5427,12 +5584,17 @@ entities: type: MetaData - parent: 853 pos: -3.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - access: - - Research - Command type: AccessReader + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 594 type: AirlockCommandGlassLocked components: @@ -5440,12 +5602,17 @@ entities: type: MetaData - parent: 853 pos: -8.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - access: - - Research - Command type: AccessReader + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 595 type: AirlockCommandGlassLocked components: @@ -5453,12 +5620,17 @@ entities: type: MetaData - parent: 853 pos: 20.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - access: - - Medical - Command type: AccessReader + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 596 type: AirlockMedicalGlassLocked components: @@ -5466,8 +5638,13 @@ entities: type: MetaData - parent: 853 pos: 17.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 597 type: AirlockMedicalGlassLocked components: @@ -5475,8 +5652,13 @@ entities: type: MetaData - parent: 853 pos: 7.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 598 type: AirlockEngineeringGlassLocked components: @@ -5484,8 +5666,13 @@ entities: type: MetaData - parent: 853 pos: 30.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 599 type: AirlockEngineeringGlassLocked components: @@ -5493,60 +5680,100 @@ entities: type: MetaData - parent: 853 pos: 30.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 600 type: AirlockMaintCommonLocked components: - parent: 853 pos: -20.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - access: - - Janitor type: AccessReader + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 601 type: AirlockMaintCommonLocked components: - parent: 853 pos: -32.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 602 type: AirlockMaintIntLocked components: - parent: 853 pos: -13.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 603 type: AirlockMaintIntLocked components: - parent: 853 pos: -12.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 604 type: AirlockMaintRnDLocked components: - parent: 853 pos: -4.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 605 type: AirlockMaintCommonLocked components: - parent: 853 pos: 5.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 606 type: AirlockMaintCommonLocked components: - parent: 853 pos: -16.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 607 type: AirlockSecurityGlassLocked components: @@ -5554,22 +5781,31 @@ entities: type: MetaData - parent: 853 pos: -6.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 608 type: ApcExtensionCable components: - parent: 853 pos: -4.5,4.5 - rot: 3.141592653589793 rad type: Transform - uid: 609 type: AirlockMaintEngiLocked components: - parent: 853 pos: 28.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 610 type: AirlockServiceGlassLocked components: @@ -5577,14 +5813,19 @@ entities: type: MetaData - parent: 853 pos: -10.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 611 type: solid_wall components: - parent: 853 pos: -7.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 612 type: AirlockVaultLocked @@ -5593,29 +5834,49 @@ entities: type: MetaData - parent: 853 pos: 0.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 613 type: AirlockMaintCommonLocked components: - parent: 853 pos: 1.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 614 type: AirlockMaintCommonLocked components: - parent: 853 pos: -23.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 615 type: AirlockMaintCommonLocked components: - parent: 853 pos: -34.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 616 type: Airlock components: @@ -5623,8 +5884,13 @@ entities: type: MetaData - parent: 853 pos: -22.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - access: - - Janitor type: AccessReader @@ -5633,24 +5899,34 @@ entities: components: - parent: 853 pos: 15.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 618 type: AirlockMaintCommandLocked components: - parent: 853 pos: 11.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - access: - - HeadOfPersonnel type: AccessReader + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 619 type: Catwalk components: - parent: 853 pos: 26.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 620 type: AirlockCommandGlassLocked @@ -5659,19 +5935,29 @@ entities: type: MetaData - parent: 853 pos: 38.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - access: - - Engineering - Command type: AccessReader + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 621 type: AirlockMaintCommonLocked components: - parent: 853 pos: -33.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 622 type: AirlockScienceGlassLocked components: @@ -5679,8 +5965,13 @@ entities: type: MetaData - parent: 853 pos: -3.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 623 type: AirlockScienceLocked components: @@ -5688,8 +5979,13 @@ entities: type: MetaData - parent: 853 pos: 0.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 624 type: AirlockScienceLocked components: @@ -5697,36 +5993,61 @@ entities: type: MetaData - parent: 853 pos: 0.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 625 type: AirlockMaintRnDLocked components: - parent: 853 pos: -11.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 626 type: AirlockMaintMedLocked components: - parent: 853 pos: 20.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 627 type: AirlockMaintMedLocked components: - parent: 853 pos: 14.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 628 type: AirlockMaintCommonLocked components: - parent: 853 pos: 0.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 629 type: AirlockSecurityGlassLocked components: @@ -5734,8 +6055,13 @@ entities: type: MetaData - parent: 853 pos: -9.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 630 type: AirlockSecurityGlassLocked components: @@ -5743,8 +6069,13 @@ entities: type: MetaData - parent: 853 pos: -10.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 631 type: AirlockMedicalGlassLocked components: @@ -5752,8 +6083,13 @@ entities: type: MetaData - parent: 853 pos: 8.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 632 type: AirlockMedicalGlassLocked components: @@ -5761,8 +6097,13 @@ entities: type: MetaData - parent: 853 pos: 19.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 633 type: AirlockMedicalGlassLocked components: @@ -5770,8 +6111,13 @@ entities: type: MetaData - parent: 853 pos: 20.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 634 type: AirlockMedicalGlassLocked components: @@ -5779,8 +6125,13 @@ entities: type: MetaData - parent: 853 pos: 11.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 635 type: AirlockMedicalGlassLocked components: @@ -5788,29 +6139,49 @@ entities: type: MetaData - parent: 853 pos: 10.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 636 type: AirlockMaintCommandLocked components: - parent: 853 pos: -1.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 637 type: AirlockMaintCommonLocked components: - parent: 853 pos: 21.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 638 type: AirlockMaintCommonLocked components: - parent: 853 pos: 6.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 639 type: AirlockCommandLocked components: @@ -5818,11 +6189,16 @@ entities: type: MetaData - parent: 853 pos: 5.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - access: - - Captain type: AccessReader + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 640 type: AirlockCommandGlassLocked components: @@ -5830,8 +6206,13 @@ entities: type: MetaData - parent: 853 pos: 1.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 641 type: AirlockCommandGlassLocked components: @@ -5839,36 +6220,61 @@ entities: type: MetaData - parent: 853 pos: 1.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 642 type: AirlockMaintRnDLocked components: - parent: 853 pos: -16.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 643 type: AirlockMaintCargoLocked components: - parent: 853 pos: 25.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 644 type: AirlockMaintEngiLocked components: - parent: 853 pos: 43.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 645 type: AirlockMaintEngiLocked components: - parent: 853 pos: 29.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 646 type: AirlockEngineeringLocked components: @@ -5876,8 +6282,13 @@ entities: type: MetaData - parent: 853 pos: 40.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 647 type: AirlockEngineeringLocked components: @@ -5885,8 +6296,13 @@ entities: type: MetaData - parent: 853 pos: 41.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 648 type: AirlockEngineeringGlassLocked components: @@ -5894,8 +6310,13 @@ entities: type: MetaData - parent: 853 pos: 33.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 649 type: AirlockEngineeringGlassLocked components: @@ -5903,8 +6324,13 @@ entities: type: MetaData - parent: 853 pos: 33.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 650 type: AirlockEngineeringLocked components: @@ -5912,8 +6338,13 @@ entities: type: MetaData - parent: 853 pos: 49.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 651 type: AirlockSecurityGlassLocked components: @@ -5921,8 +6352,13 @@ entities: type: MetaData - parent: 853 pos: -6.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 652 type: AirlockSecurityGlassLocked components: @@ -5930,8 +6366,13 @@ entities: type: MetaData - parent: 853 pos: -5.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 653 type: AirlockSecurityGlassLocked components: @@ -5939,8 +6380,13 @@ entities: type: MetaData - parent: 853 pos: -5.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 654 type: AirlockExternalLocked components: @@ -5948,8 +6394,13 @@ entities: type: MetaData - parent: 853 pos: -39.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 655 type: AirlockExternalLocked components: @@ -5957,8 +6408,13 @@ entities: type: MetaData - parent: 853 pos: -37.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 656 type: AirlockExternalLocked components: @@ -5966,21 +6422,26 @@ entities: type: MetaData - parent: 853 pos: -41.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 657 type: LowWall components: - parent: 853 pos: -36.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 658 type: LowWall components: - parent: 853 pos: -37.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 659 type: AirlockExternalLocked @@ -5989,8 +6450,13 @@ entities: type: MetaData - parent: 853 pos: -39.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 660 type: AirlockExternalLocked components: @@ -5998,8 +6464,13 @@ entities: type: MetaData - parent: 853 pos: -39.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 661 type: AirlockExternalLocked components: @@ -6007,14 +6478,19 @@ entities: type: MetaData - parent: 853 pos: -41.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 662 type: WardrobeWhite components: - parent: 853 pos: 17.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -6027,21 +6503,21 @@ entities: components: - parent: 853 pos: 19.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 664 type: solid_wall components: - parent: 853 pos: -40.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 665 type: Poweredlight components: - parent: 853 pos: -34.001373,10.342238 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -6054,539 +6530,539 @@ entities: components: - parent: 853 pos: -40.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 667 type: Table components: - parent: 853 pos: 19.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 668 type: Window components: - parent: 853 pos: 18.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 669 type: Window components: - parent: 853 pos: 17.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 670 type: LowWall components: - parent: 853 pos: 18.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 671 type: LowWall components: - parent: 853 pos: 17.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 672 type: solid_wall components: - parent: 853 pos: 16.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 673 type: LowWall components: - parent: 853 pos: -41.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 674 type: solid_wall components: - parent: 853 pos: 16.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 675 type: solid_wall components: - parent: 853 pos: 16.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 676 type: solid_wall components: - parent: 853 pos: 16.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 677 type: solid_wall components: - parent: 853 pos: 16.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 678 type: LowWall components: - parent: 853 pos: -40.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 679 type: solid_wall components: - parent: 853 pos: 17.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 680 type: solid_wall components: - parent: 853 pos: 20.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 681 type: solid_wall components: - parent: 853 pos: 20.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 682 type: solid_wall components: - parent: 853 pos: 20.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 683 type: LowWall components: - parent: 853 pos: -39.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 684 type: solid_wall components: - parent: 853 pos: 20.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 685 type: solid_wall components: - parent: 853 pos: 20.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 686 type: solid_wall components: - parent: 853 pos: 13.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 687 type: LowWall components: - parent: 853 pos: -39.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 688 type: solid_wall components: - parent: 853 pos: 13.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 689 type: solid_wall components: - parent: 853 pos: 13.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 690 type: solid_wall components: - parent: 853 pos: 13.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 691 type: solid_wall components: - parent: 853 pos: 13.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 692 type: solid_wall components: - parent: 853 pos: 14.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 693 type: LowWall components: - parent: 853 pos: -41.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 694 type: LowWall components: - parent: 853 pos: -40.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 695 type: solid_wall components: - parent: 853 pos: 15.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 696 type: solid_wall components: - parent: 853 pos: 16.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 697 type: LowWall components: - parent: 853 pos: -40.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 698 type: solid_wall components: - parent: 853 pos: 17.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 699 type: solid_wall components: - parent: 853 pos: 18.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 700 type: solid_wall components: - parent: 853 pos: 19.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 701 type: solid_wall components: - parent: 853 pos: 20.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 702 type: LowWall components: - parent: 853 pos: -41.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 703 type: solid_wall components: - parent: 853 pos: 21.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 704 type: solid_wall components: - parent: 853 pos: 22.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 705 type: solid_wall components: - parent: 853 pos: 23.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 706 type: LowWall components: - parent: 853 pos: -40.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 707 type: solid_wall components: - parent: 853 pos: 23.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 708 type: solid_wall components: - parent: 853 pos: 23.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 709 type: solid_wall components: - parent: 853 pos: 23.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 710 type: solid_wall components: - parent: 853 pos: 23.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 711 type: LowWall components: - parent: 853 pos: -39.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 712 type: solid_wall components: - parent: 853 pos: 45.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 713 type: SpawnPointStationEngineer components: - parent: 853 pos: 30.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 714 type: LowWall components: - parent: 853 pos: -39.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 715 type: SpawnPointChiefEngineer components: - parent: 853 pos: 40.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 716 type: SpawnPointHeadOfPersonnel components: - parent: 853 pos: 7.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 717 type: SpawnPointCaptain components: - parent: 853 pos: 9.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 718 type: LowWall components: - parent: 853 pos: -41.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 719 type: TableWood components: - parent: 853 pos: -6.5,21.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 720 type: SpawnPointJanitor components: - parent: 853 pos: -20.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 721 type: SpawnPointClown components: - parent: 853 pos: -18.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 722 type: SpawnPointBartender components: - parent: 853 pos: -5.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 723 type: LowWall components: - parent: 853 pos: -40.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 724 type: SpawnPointScientist components: - parent: 853 pos: -15.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 725 type: SpawnPointScientist components: - parent: 853 pos: -4.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 726 type: SpawnPointScientist components: - parent: 853 pos: -0.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 727 type: SpawnPointScientist components: - parent: 853 pos: -8.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 728 type: SpawnPointScientist components: - parent: 853 pos: -9.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 729 type: SpawnPointResearchDirector components: - parent: 853 pos: -5.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 730 type: LowWall components: - parent: 853 pos: -40.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 731 type: solid_wall components: - parent: 853 pos: 14.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 732 type: SpawnPointMedicalDoctor components: - parent: 853 pos: 11.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 733 type: SpawnPointMedicalDoctor components: - parent: 853 pos: 16.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 734 type: SpawnPointMedicalDoctor components: - parent: 853 pos: 22.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 735 type: LowWall components: - parent: 853 pos: -40.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 736 type: SpawnPointMedicalDoctor components: - parent: 853 pos: 14.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 737 type: SpawnPointMedicalDoctor components: - parent: 853 pos: 6.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 738 type: SpawnPointChiefMedicalOfficer components: - parent: 853 pos: 24.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 739 type: SpawnPointCargoTechnician components: - parent: 853 pos: 21.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 740 type: SpawnPointCargoTechnician components: - parent: 853 pos: 14.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 741 type: LowWall components: - parent: 853 pos: -39.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 742 type: PottedPlantRandomPlastic components: - parent: 853 pos: -12.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: potted_plant_hide: @@ -6599,14 +7075,14 @@ entities: components: - parent: 853 pos: -37.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 744 type: PottedPlantRandom components: - parent: 853 pos: 21.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: potted_plant_hide: @@ -6619,7 +7095,7 @@ entities: components: - parent: 853 pos: 29.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: potted_plant_hide: @@ -6632,7 +7108,7 @@ entities: components: - parent: 853 pos: 12.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: potted_plant_hide: @@ -6645,56 +7121,56 @@ entities: components: - parent: 853 pos: -38.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 748 type: LowWall components: - parent: 853 pos: -38.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 749 type: LowWall components: - parent: 853 pos: -38.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 750 type: LowWall components: - parent: 853 pos: -37.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 751 type: LowWall components: - parent: 853 pos: -38.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 752 type: LowWall components: - parent: 853 pos: -39.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 753 type: LowWall components: - parent: 853 pos: -37.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 754 type: PottedPlantRandom components: - parent: 853 pos: 5.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: potted_plant_hide: @@ -6707,35 +7183,35 @@ entities: components: - parent: 853 pos: -39.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 756 type: reinforced_wall components: - parent: 853 pos: 11.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 757 type: Table components: - parent: 853 pos: -5.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 758 type: Table components: - parent: 853 pos: -6.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 759 type: PottedPlantRandom components: - parent: 853 pos: 1.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: potted_plant_hide: @@ -6748,7 +7224,7 @@ entities: components: - parent: 853 pos: 5.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -6761,7 +7237,7 @@ entities: components: - parent: 853 pos: -24.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: potted_plant_hide: @@ -6774,7 +7250,7 @@ entities: components: - parent: 853 pos: -23.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -6787,7 +7263,7 @@ entities: components: - parent: 853 pos: 24.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -6800,7 +7276,7 @@ entities: components: - parent: 853 pos: 10.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: potted_plant_hide: @@ -6813,7 +7289,7 @@ entities: components: - parent: 853 pos: 7.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: potted_plant_hide: @@ -6826,7 +7302,7 @@ entities: components: - parent: 853 pos: -2.5,30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -6839,7 +7315,7 @@ entities: components: - parent: 853 pos: 9.5,30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -6852,7 +7328,7 @@ entities: components: - parent: 853 pos: -0.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -6865,7 +7341,7 @@ entities: components: - parent: 853 pos: -2.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: potted_plant_hide: @@ -6878,7 +7354,7 @@ entities: components: - parent: 853 pos: -21.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -6891,7 +7367,7 @@ entities: components: - parent: 853 pos: -25.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: potted_plant_hide: @@ -6904,7 +7380,7 @@ entities: components: - parent: 853 pos: -39.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: potted_plant_hide: @@ -6917,7 +7393,7 @@ entities: components: - parent: 853 pos: -37.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -6930,7 +7406,7 @@ entities: components: - parent: 853 pos: -11.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -6943,7 +7419,7 @@ entities: components: - parent: 853 pos: -17.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -6956,7 +7432,7 @@ entities: components: - parent: 853 pos: -12.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -6969,7 +7445,7 @@ entities: components: - parent: 853 pos: 13.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -6982,7 +7458,7 @@ entities: components: - parent: 853 pos: 12.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -6995,7 +7471,7 @@ entities: components: - parent: 853 pos: 28.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7008,7 +7484,7 @@ entities: components: - parent: 853 pos: 43.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7021,7 +7497,7 @@ entities: components: - parent: 853 pos: 44.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7034,7 +7510,7 @@ entities: components: - parent: 853 pos: 23.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7047,7 +7523,7 @@ entities: components: - parent: 853 pos: 8.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7060,7 +7536,7 @@ entities: components: - parent: 853 pos: 9.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7073,7 +7549,7 @@ entities: components: - parent: 853 pos: -15.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7086,7 +7562,7 @@ entities: components: - parent: 853 pos: -7.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7099,7 +7575,7 @@ entities: components: - parent: 853 pos: 26.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7112,7 +7588,7 @@ entities: components: - parent: 853 pos: 23.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7125,7 +7601,7 @@ entities: components: - parent: 853 pos: -14.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7138,7 +7614,7 @@ entities: components: - parent: 853 pos: -11.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7151,7 +7627,7 @@ entities: components: - parent: 853 pos: -37.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7164,7 +7640,7 @@ entities: components: - parent: 853 pos: -39.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7177,7 +7653,7 @@ entities: components: - parent: 853 pos: -34.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7190,7 +7666,7 @@ entities: components: - parent: 853 pos: 6.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7203,7 +7679,7 @@ entities: components: - parent: 853 pos: 23.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7216,7 +7692,7 @@ entities: components: - parent: 853 pos: 0.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: potted_plant_hide: @@ -7229,7 +7705,7 @@ entities: components: - parent: 853 pos: 0.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7242,7 +7718,7 @@ entities: components: - parent: 853 pos: -19.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7255,7 +7731,7 @@ entities: components: - parent: 853 pos: -19.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7268,7 +7744,7 @@ entities: components: - parent: 853 pos: -14.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7281,7 +7757,7 @@ entities: components: - parent: 853 pos: 7.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7294,7 +7770,7 @@ entities: components: - parent: 853 pos: 18.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7307,7 +7783,7 @@ entities: components: - parent: 853 pos: 24.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7320,7 +7796,7 @@ entities: components: - parent: 853 pos: -12.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7333,7 +7809,7 @@ entities: components: - parent: 853 pos: -13.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7346,7 +7822,7 @@ entities: components: - parent: 853 pos: -14.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7359,7 +7835,7 @@ entities: components: - parent: 853 pos: 23.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7372,7 +7848,7 @@ entities: components: - parent: 853 pos: -11.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7385,7 +7861,7 @@ entities: components: - parent: 853 pos: 21.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7398,14 +7874,14 @@ entities: components: - parent: 853 pos: -2.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 811 type: LockerHeadOfPersonnelFilled components: - parent: 853 pos: 10.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7418,14 +7894,14 @@ entities: components: - parent: 853 pos: -38.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 813 type: WardrobeEngineeringFilled components: - parent: 853 pos: 32.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7438,7 +7914,7 @@ entities: components: - parent: 853 pos: 36.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7451,7 +7927,7 @@ entities: components: - parent: 853 pos: 36.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7464,7 +7940,7 @@ entities: components: - parent: 853 pos: 36.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7477,7 +7953,7 @@ entities: components: - parent: 853 pos: 37.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7490,7 +7966,7 @@ entities: components: - parent: 853 pos: 35.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7503,7 +7979,7 @@ entities: components: - parent: 853 pos: 35.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7516,7 +7992,7 @@ entities: components: - parent: 853 pos: -2.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7529,7 +8005,7 @@ entities: components: - parent: 853 pos: -11.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7542,7 +8018,7 @@ entities: components: - parent: 853 pos: -13.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7555,7 +8031,7 @@ entities: components: - parent: 853 pos: -11.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -7568,14 +8044,14 @@ entities: components: - parent: 853 pos: -1.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 825 type: soda_dispenser components: - parent: 853 pos: -4.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: ReagentDispenser-reagentContainerContainer: @@ -7586,91 +8062,91 @@ entities: components: - parent: 853 pos: 47.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 827 type: Catwalk components: - parent: 853 pos: 47.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 828 type: Catwalk components: - parent: 853 pos: 47.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 829 type: Catwalk components: - parent: 853 pos: 48.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 830 type: Catwalk components: - parent: 853 pos: 49.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 831 type: Catwalk components: - parent: 853 pos: 50.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 832 type: Catwalk components: - parent: 853 pos: 51.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 833 type: Catwalk components: - parent: 853 pos: 51.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 834 type: Catwalk components: - parent: 853 pos: 51.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 835 type: Catwalk components: - parent: 853 pos: 51.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 836 type: Catwalk components: - parent: 853 pos: 51.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 837 type: Catwalk components: - parent: 853 pos: 50.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 838 type: DisposalTrunk components: - parent: 853 pos: -29.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalEntry: @@ -7681,7 +8157,7 @@ entities: components: - parent: 853 pos: -29.5,10.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalBend: @@ -7692,7 +8168,7 @@ entities: components: - parent: 853 pos: -28.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalBend: @@ -7703,6 +8179,7 @@ entities: components: - parent: 853 pos: -8.5,-14.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalBend: @@ -7713,7 +8190,7 @@ entities: components: - parent: 853 pos: -7.5,-14.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -7724,7 +8201,7 @@ entities: components: - parent: 853 pos: -6.5,-14.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -7735,7 +8212,7 @@ entities: components: - parent: 853 pos: -5.5,-14.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalEntry: @@ -7746,7 +8223,7 @@ entities: components: - parent: 853 pos: -5.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalUnit: @@ -7757,7 +8234,7 @@ entities: components: - parent: 853 pos: -9.5,-15.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -7768,6 +8245,7 @@ entities: components: - parent: 853 pos: -15.5,-15.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -7778,6 +8256,7 @@ entities: components: - parent: 853 pos: -13.5,-15.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -7788,6 +8267,7 @@ entities: components: - parent: 853 pos: -14.5,-15.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -7798,6 +8278,7 @@ entities: components: - parent: 853 pos: -12.5,-15.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -7808,6 +8289,7 @@ entities: components: - parent: 853 pos: -11.5,-15.5 + rot: 1.5707963705062866 rad type: Transform - containers: DisposalTransit: @@ -7818,7 +8300,7 @@ entities: components: - parent: 853 pos: -10.5,-16.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalTransit: @@ -7858,4004 +8340,4004 @@ entities: - 0 temperature: 293.15 tiles: - "-16, -16": 0 - "-16, -15": 0 - "-16, -14": 0 - "-16, -13": 0 - "-16, -12": 0 - "-16, -11": 0 - "-16, -10": 0 - "-16, -9": 0 - "-16, -8": 0 - "-16, -7": 0 - "-16, -6": 0 - "-16, -5": 0 - "-16, -4": 0 - "-16, -3": 0 - "-16, -2": 0 - "-16, -1": 0 - "-15, -16": 0 - "-15, -15": 0 - "-15, -14": 0 - "-15, -13": 0 - "-15, -12": 0 - "-15, -11": 0 - "-15, -10": 0 - "-15, -9": 0 - "-15, -8": 0 - "-15, -7": 0 - "-15, -6": 0 - "-15, -5": 0 - "-15, -4": 0 - "-15, -3": 0 - "-15, -2": 0 - "-15, -1": 0 - "-14, -16": 0 - "-14, -15": 0 - "-14, -14": 0 - "-14, -13": 0 - "-14, -12": 0 - "-14, -11": 0 - "-14, -10": 0 - "-14, -9": 0 - "-14, -8": 0 - "-14, -7": 0 - "-14, -6": 0 - "-14, -5": 0 - "-14, -4": 0 - "-14, -3": 0 - "-14, -2": 0 - "-14, -1": 0 - "-13, -16": 0 - "-13, -15": 0 - "-13, -14": 0 - "-13, -13": 0 - "-13, -12": 0 - "-13, -11": 0 - "-13, -10": 0 - "-13, -9": 0 - "-13, -8": 0 - "-13, -7": 0 - "-13, -6": 0 - "-13, -5": 0 - "-13, -4": 0 - "-13, -3": 0 - "-13, -2": 0 - "-13, -1": 0 - "-12, -16": 0 - "-12, -15": 0 - "-12, -14": 0 - "-12, -13": 0 - "-12, -12": 0 - "-12, -11": 0 - "-12, -10": 0 - "-12, -9": 0 - "-12, -8": 0 - "-12, -7": 0 - "-12, -6": 0 - "-12, -5": 0 - "-12, -4": 0 - "-12, -3": 0 - "-12, -2": 0 - "-12, -1": 0 - "-11, -16": 0 - "-11, -15": 0 - "-11, -14": 0 - "-11, -13": 0 - "-11, -12": 0 - "-11, -11": 0 - "-11, -10": 0 - "-11, -9": 0 - "-11, -8": 0 - "-11, -7": 0 - "-11, -6": 0 - "-11, -5": 0 - "-11, -4": 0 - "-11, -3": 0 - "-11, -2": 0 - "-11, -1": 0 - "-10, -16": 0 - "-10, -15": 0 - "-10, -14": 0 - "-10, -13": 0 - "-10, -12": 0 - "-10, -11": 0 - "-10, -10": 0 - "-10, -9": 0 - "-10, -8": 0 - "-10, -7": 0 - "-10, -6": 0 - "-10, -5": 0 - "-10, -4": 0 - "-10, -3": 0 - "-10, -2": 0 - "-10, -1": 0 - "-9, -16": 0 - "-9, -15": 0 - "-9, -14": 0 - "-9, -13": 0 - "-9, -12": 0 - "-9, -11": 0 - "-9, -10": 0 - "-9, -9": 0 - "-9, -8": 0 - "-9, -7": 0 - "-9, -6": 0 - "-9, -5": 0 - "-9, -4": 0 - "-9, -3": 0 - "-9, -2": 0 - "-9, -1": 0 - "-8, -16": 0 - "-8, -15": 0 - "-8, -14": 0 - "-8, -13": 0 - "-8, -12": 0 - "-8, -11": 0 - "-8, -10": 0 - "-8, -9": 0 - "-8, -8": 0 - "-8, -7": 0 - "-8, -6": 0 - "-8, -5": 0 - "-8, -4": 0 - "-8, -3": 0 - "-8, -2": 0 - "-8, -1": 0 - "-7, -16": 0 - "-7, -15": 0 - "-7, -14": 0 - "-7, -13": 0 - "-7, -12": 0 - "-7, -11": 0 - "-7, -10": 0 - "-7, -9": 0 - "-7, -8": 0 - "-7, -7": 0 - "-7, -6": 0 - "-7, -5": 0 - "-7, -4": 0 - "-7, -3": 0 - "-7, -2": 0 - "-7, -1": 0 - "-6, -16": 0 - "-6, -15": 0 - "-6, -14": 0 - "-6, -13": 0 - "-6, -12": 0 - "-6, -11": 0 - "-6, -10": 0 - "-6, -9": 0 - "-6, -8": 0 - "-6, -7": 0 - "-6, -6": 0 - "-6, -5": 0 - "-6, -4": 0 - "-6, -3": 0 - "-6, -2": 0 - "-6, -1": 0 - "-5, -16": 0 - "-5, -15": 0 - "-5, -14": 0 - "-5, -13": 0 - "-5, -12": 0 - "-5, -11": 0 - "-5, -10": 0 - "-5, -9": 0 - "-5, -8": 0 - "-5, -7": 0 - "-5, -6": 0 - "-5, -5": 0 - "-5, -4": 0 - "-5, -3": 0 - "-5, -2": 0 - "-5, -1": 0 - "-4, -16": 0 - "-4, -15": 0 - "-4, -14": 0 - "-4, -13": 0 - "-4, -12": 0 - "-4, -11": 0 - "-4, -10": 0 - "-4, -9": 0 - "-4, -8": 0 - "-4, -7": 0 - "-4, -6": 0 - "-4, -5": 0 - "-4, -4": 0 - "-4, -3": 0 - "-4, -2": 0 - "-4, -1": 0 - "-3, -16": 0 - "-3, -15": 0 - "-3, -14": 0 - "-3, -13": 0 - "-3, -12": 0 - "-3, -11": 0 - "-3, -10": 0 - "-3, -9": 0 - "-3, -8": 0 - "-3, -7": 0 - "-3, -6": 0 - "-3, -5": 0 - "-3, -4": 0 - "-3, -3": 0 - "-3, -2": 0 - "-3, -1": 0 - "-2, -16": 0 - "-2, -15": 0 - "-2, -14": 0 - "-2, -13": 0 - "-2, -12": 0 - "-2, -11": 0 - "-2, -10": 0 - "-2, -9": 0 - "-2, -8": 0 - "-2, -7": 0 - "-2, -6": 0 - "-2, -5": 0 - "-2, -4": 0 - "-2, -3": 0 - "-2, -2": 0 - "-2, -1": 0 - "-1, -16": 0 - "-1, -15": 0 - "-1, -14": 0 - "-1, -13": 0 - "-1, -12": 0 - "-1, -11": 0 - "-1, -10": 0 - "-1, -9": 0 - "-1, -8": 0 - "-1, -7": 0 - "-1, -6": 0 - "-1, -5": 0 - "-1, -4": 0 - "-1, -3": 0 - "-1, -2": 0 - "-1, -1": 0 - "-16, 0": 0 - "-16, 1": 0 - "-16, 2": 0 - "-16, 3": 0 - "-16, 4": 0 - "-16, 5": 0 - "-16, 6": 0 - "-16, 7": 0 - "-16, 8": 0 - "-16, 9": 0 - "-16, 10": 0 - "-16, 11": 0 - "-16, 12": 0 - "-16, 13": 0 - "-16, 14": 0 - "-16, 15": 0 - "-15, 0": 0 - "-15, 1": 0 - "-15, 2": 0 - "-15, 3": 0 - "-15, 4": 0 - "-15, 5": 0 - "-15, 6": 0 - "-15, 7": 0 - "-15, 8": 0 - "-15, 9": 0 - "-15, 10": 0 - "-15, 11": 0 - "-15, 12": 0 - "-15, 13": 0 - "-15, 14": 0 - "-15, 15": 0 - "-14, 0": 0 - "-14, 1": 0 - "-14, 2": 0 - "-14, 3": 0 - "-14, 4": 0 - "-14, 5": 0 - "-14, 6": 0 - "-14, 7": 0 - "-14, 8": 0 - "-14, 9": 0 - "-14, 10": 0 - "-14, 11": 0 - "-14, 12": 0 - "-14, 13": 0 - "-14, 14": 0 - "-14, 15": 0 - "-13, 0": 0 - "-13, 1": 0 - "-13, 2": 0 - "-13, 3": 0 - "-13, 4": 0 - "-13, 5": 0 - "-13, 6": 0 - "-13, 7": 0 - "-13, 8": 0 - "-13, 9": 0 - "-13, 10": 0 - "-13, 11": 0 - "-13, 12": 0 - "-13, 13": 0 - "-13, 14": 0 - "-13, 15": 0 - "-12, 0": 0 - "-12, 1": 0 - "-12, 2": 0 - "-12, 3": 0 - "-12, 4": 0 - "-12, 5": 0 - "-12, 6": 0 - "-12, 7": 0 - "-12, 8": 0 - "-12, 9": 0 - "-12, 10": 0 - "-12, 11": 0 - "-12, 12": 0 - "-12, 13": 0 - "-12, 14": 0 - "-12, 15": 0 - "-11, 0": 0 - "-11, 1": 0 - "-11, 2": 0 - "-11, 3": 0 - "-11, 4": 0 - "-11, 5": 0 - "-11, 6": 0 - "-11, 7": 0 - "-11, 8": 0 - "-11, 9": 0 - "-11, 10": 0 - "-11, 11": 0 - "-11, 12": 0 - "-11, 13": 0 - "-11, 14": 0 - "-11, 15": 0 - "-10, 0": 0 - "-10, 1": 0 - "-10, 2": 0 - "-10, 3": 0 - "-10, 4": 0 - "-10, 5": 0 - "-10, 6": 0 - "-10, 7": 0 - "-10, 8": 0 - "-10, 9": 0 - "-10, 10": 0 - "-10, 11": 0 - "-10, 12": 0 - "-10, 13": 0 - "-10, 14": 0 - "-10, 15": 0 - "-9, 0": 0 - "-9, 1": 0 - "-9, 2": 0 - "-9, 3": 0 - "-9, 4": 0 - "-9, 5": 0 - "-9, 6": 0 - "-9, 7": 0 - "-9, 8": 0 - "-9, 9": 0 - "-9, 10": 0 - "-9, 11": 0 - "-9, 12": 0 - "-9, 13": 0 - "-9, 14": 0 - "-9, 15": 0 - "-8, 0": 0 - "-8, 1": 0 - "-8, 2": 0 - "-8, 3": 0 - "-8, 4": 0 - "-8, 5": 0 - "-8, 6": 0 - "-8, 7": 0 - "-8, 8": 0 - "-8, 9": 0 - "-8, 10": 0 - "-8, 11": 0 - "-8, 12": 0 - "-8, 13": 0 - "-8, 14": 0 - "-8, 15": 0 - "-7, 0": 0 - "-7, 1": 0 - "-7, 2": 0 - "-7, 3": 0 - "-7, 4": 0 - "-7, 5": 0 - "-7, 6": 0 - "-7, 7": 0 - "-7, 8": 0 - "-7, 9": 0 - "-7, 10": 0 - "-7, 11": 0 - "-7, 12": 0 - "-7, 13": 0 - "-7, 14": 0 - "-7, 15": 0 - "-6, 0": 0 - "-6, 1": 0 - "-6, 2": 0 - "-6, 3": 0 - "-6, 4": 0 - "-6, 5": 0 - "-6, 6": 0 - "-6, 7": 0 - "-6, 8": 0 - "-6, 9": 0 - "-6, 10": 0 - "-6, 11": 0 - "-6, 12": 0 - "-6, 13": 0 - "-6, 14": 0 - "-6, 15": 0 - "-5, 0": 0 - "-5, 1": 0 - "-5, 2": 0 - "-5, 3": 0 - "-5, 4": 0 - "-5, 5": 0 - "-5, 6": 0 - "-5, 7": 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, 0": 0 - "-4, 1": 0 - "-4, 2": 0 - "-4, 3": 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, 0": 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, 0": 0 - "-2, 1": 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, 0": 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 - "0, -16": 0 - "0, -15": 0 - "0, -14": 0 - "0, -13": 0 - "0, -12": 0 - "0, -11": 0 - "0, -10": 0 - "0, -9": 0 - "0, -8": 0 - "0, -7": 0 - "0, -6": 0 - "0, -5": 0 - "0, -4": 0 - "0, -3": 0 - "0, -2": 0 - "0, -1": 0 - "1, -16": 0 - "1, -15": 0 - "1, -14": 0 - "1, -13": 0 - "1, -12": 0 - "1, -11": 0 - "1, -10": 0 - "1, -9": 0 - "1, -8": 0 - "1, -7": 0 - "1, -6": 0 - "1, -5": 0 - "1, -4": 0 - "1, -3": 0 - "1, -2": 0 - "1, -1": 0 - "2, -16": 0 - "2, -15": 0 - "2, -14": 0 - "2, -13": 0 - "2, -12": 0 - "2, -11": 0 - "2, -10": 0 - "2, -9": 0 - "2, -8": 0 - "2, -7": 0 - "2, -6": 0 - "2, -5": 0 - "2, -4": 0 - "2, -3": 0 - "2, -2": 0 - "2, -1": 0 - "3, -16": 0 - "3, -15": 0 - "3, -14": 0 - "3, -13": 0 - "3, -12": 0 - "3, -11": 0 - "3, -10": 0 - "3, -9": 0 - "3, -8": 0 - "3, -7": 0 - "3, -6": 0 - "3, -5": 0 - "3, -4": 0 - "3, -3": 0 - "3, -2": 0 - "3, -1": 0 - "4, -16": 0 - "4, -15": 0 - "4, -14": 0 - "4, -13": 0 - "4, -12": 0 - "4, -11": 0 - "4, -10": 0 - "4, -9": 0 - "4, -8": 0 - "4, -7": 0 - "4, -6": 0 - "4, -5": 0 - "4, -4": 0 - "4, -3": 0 - "4, -2": 0 - "4, -1": 0 - "5, -16": 0 - "5, -15": 0 - "5, -14": 0 - "5, -13": 0 - "5, -12": 0 - "5, -11": 0 - "5, -10": 0 - "5, -9": 0 - "5, -8": 0 - "5, -7": 0 - "5, -6": 0 - "5, -5": 0 - "5, -4": 0 - "5, -3": 0 - "5, -2": 0 - "5, -1": 0 - "6, -16": 0 - "6, -15": 0 - "6, -14": 0 - "6, -13": 0 - "6, -12": 0 - "6, -11": 0 - "6, -10": 0 - "6, -9": 0 - "6, -8": 0 - "6, -7": 0 - "6, -6": 0 - "6, -5": 0 - "6, -4": 0 - "6, -3": 0 - "6, -2": 0 - "6, -1": 0 - "7, -16": 0 - "7, -15": 0 - "7, -14": 0 - "7, -13": 0 - "7, -12": 0 - "7, -11": 0 - "7, -10": 0 - "7, -9": 0 - "7, -8": 0 - "7, -7": 0 - "7, -6": 0 - "7, -5": 0 - "7, -4": 0 - "7, -3": 0 - "7, -2": 0 - "7, -1": 0 - "8, -16": 0 - "8, -15": 0 - "8, -14": 0 - "8, -13": 0 - "8, -12": 0 - "8, -11": 0 - "8, -10": 0 - "8, -9": 0 - "8, -8": 0 - "8, -7": 0 - "8, -6": 0 - "8, -5": 0 - "8, -4": 0 - "8, -3": 0 - "8, -2": 0 - "8, -1": 0 - "9, -16": 0 - "9, -15": 0 - "9, -14": 0 - "9, -13": 0 - "9, -12": 0 - "9, -11": 0 - "9, -10": 0 - "9, -9": 0 - "9, -8": 0 - "9, -7": 0 - "9, -6": 0 - "9, -5": 0 - "9, -4": 0 - "9, -3": 0 - "9, -2": 0 - "9, -1": 0 - "10, -16": 0 - "10, -15": 0 - "10, -14": 0 - "10, -13": 0 - "10, -12": 0 - "10, -11": 0 - "10, -10": 0 - "10, -9": 0 - "10, -8": 0 - "10, -7": 0 - "10, -6": 0 - "10, -5": 0 - "10, -4": 0 - "10, -3": 0 - "10, -2": 0 - "10, -1": 0 - "11, -16": 0 - "11, -15": 0 - "11, -14": 0 - "11, -13": 0 - "11, -12": 0 - "11, -11": 0 - "11, -10": 0 - "11, -9": 0 - "11, -8": 0 - "11, -7": 0 - "11, -6": 0 - "11, -5": 0 - "11, -4": 0 - "11, -3": 0 - "11, -2": 0 - "11, -1": 0 - "12, -16": 0 - "12, -15": 0 - "12, -14": 0 - "12, -13": 0 - "12, -12": 0 - "12, -11": 0 - "12, -10": 0 - "12, -9": 0 - "12, -8": 0 - "12, -7": 0 - "12, -6": 0 - "12, -5": 0 - "12, -4": 0 - "12, -3": 0 - "12, -2": 0 - "12, -1": 0 - "13, -16": 0 - "13, -15": 0 - "13, -14": 0 - "13, -13": 0 - "13, -12": 0 - "13, -11": 0 - "13, -10": 0 - "13, -9": 0 - "13, -8": 0 - "13, -7": 0 - "13, -6": 0 - "13, -5": 0 - "13, -4": 0 - "13, -3": 0 - "13, -2": 0 - "13, -1": 0 - "14, -16": 0 - "14, -15": 0 - "14, -14": 0 - "14, -13": 0 - "14, -12": 0 - "14, -11": 0 - "14, -10": 0 - "14, -9": 0 - "14, -8": 0 - "14, -7": 0 - "14, -6": 0 - "14, -5": 0 - "14, -4": 0 - "14, -3": 0 - "14, -2": 0 - "14, -1": 0 - "15, -16": 0 - "15, -15": 0 - "15, -14": 0 - "15, -13": 0 - "15, -12": 0 - "15, -11": 0 - "15, -10": 0 - "15, -9": 0 - "15, -8": 0 - "15, -7": 0 - "15, -6": 0 - "15, -5": 0 - "15, -4": 0 - "15, -3": 0 - "15, -2": 0 - "15, -1": 0 - "0, 0": 0 - "0, 1": 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, 0": 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, 0": 0 - "2, 1": 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 - "3, 0": 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 - "4, 0": 0 - "4, 1": 0 - "4, 2": 0 - "4, 3": 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 - "5, 0": 0 - "5, 1": 0 - "5, 2": 0 - "5, 3": 0 - "5, 4": 0 - "5, 5": 0 - "5, 6": 0 - "5, 7": 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 - "6, 0": 0 - "6, 1": 0 - "6, 2": 0 - "6, 3": 0 - "6, 4": 0 - "6, 5": 0 - "6, 6": 0 - "6, 7": 0 - "6, 8": 0 - "6, 9": 0 - "6, 10": 0 - "6, 11": 0 - "6, 12": 0 - "6, 13": 0 - "6, 14": 0 - "6, 15": 0 - "7, 0": 0 - "7, 1": 0 - "7, 2": 0 - "7, 3": 0 - "7, 4": 0 - "7, 5": 0 - "7, 6": 0 - "7, 7": 0 - "7, 8": 0 - "7, 9": 0 - "7, 10": 0 - "7, 11": 0 - "7, 12": 0 - "7, 13": 0 - "7, 14": 0 - "7, 15": 0 - "8, 0": 0 - "8, 1": 0 - "8, 2": 0 - "8, 3": 0 - "8, 4": 0 - "8, 5": 0 - "8, 6": 0 - "8, 7": 0 - "8, 8": 0 - "8, 9": 0 - "8, 10": 0 - "8, 11": 0 - "8, 12": 0 - "8, 13": 0 - "8, 14": 0 - "8, 15": 0 - "9, 0": 0 - "9, 1": 0 - "9, 2": 0 - "9, 3": 0 - "9, 4": 0 - "9, 5": 0 - "9, 6": 0 - "9, 7": 0 - "9, 8": 0 - "9, 9": 0 - "9, 10": 0 - "9, 11": 0 - "9, 12": 0 - "9, 13": 0 - "9, 14": 0 - "9, 15": 0 - "10, 0": 0 - "10, 1": 0 - "10, 2": 0 - "10, 3": 0 - "10, 4": 0 - "10, 5": 0 - "10, 6": 0 - "10, 7": 0 - "10, 8": 0 - "10, 9": 0 - "10, 10": 0 - "10, 11": 0 - "10, 12": 0 - "10, 13": 0 - "10, 14": 0 - "10, 15": 0 - "11, 0": 0 - "11, 1": 0 - "11, 2": 0 - "11, 3": 0 - "11, 4": 0 - "11, 5": 0 - "11, 6": 0 - "11, 7": 0 - "11, 8": 0 - "11, 9": 0 - "11, 10": 0 - "11, 11": 0 - "11, 12": 0 - "11, 13": 0 - "11, 14": 0 - "11, 15": 0 - "12, 0": 0 - "12, 1": 0 - "12, 2": 0 - "12, 3": 0 - "12, 4": 0 - "12, 5": 0 - "12, 6": 0 - "12, 7": 0 - "12, 8": 0 - "12, 9": 0 - "12, 10": 0 - "12, 11": 0 - "12, 12": 0 - "12, 13": 0 - "12, 14": 0 - "12, 15": 0 - "13, 0": 0 - "13, 1": 0 - "13, 2": 0 - "13, 3": 0 - "13, 4": 0 - "13, 5": 0 - "13, 6": 0 - "13, 7": 0 - "13, 8": 0 - "13, 9": 0 - "13, 10": 0 - "13, 11": 0 - "13, 12": 0 - "13, 13": 0 - "13, 14": 0 - "13, 15": 0 - "14, 0": 0 - "14, 1": 0 - "14, 2": 0 - "14, 3": 0 - "14, 4": 0 - "14, 5": 0 - "14, 6": 0 - "14, 7": 0 - "14, 8": 0 - "14, 9": 0 - "14, 10": 0 - "14, 11": 0 - "14, 12": 0 - "14, 13": 0 - "14, 14": 0 - "14, 15": 0 - "15, 0": 0 - "15, 1": 0 - "15, 2": 0 - "15, 3": 0 - "15, 4": 0 - "15, 5": 0 - "15, 6": 0 - "15, 7": 0 - "15, 8": 0 - "15, 9": 0 - "15, 10": 0 - "15, 11": 0 - "15, 12": 0 - "15, 13": 0 - "15, 14": 0 - "15, 15": 0 - "16, 0": 0 - "16, 1": 0 - "16, 2": 0 - "16, 3": 0 - "16, 4": 0 - "16, 5": 0 - "16, 6": 0 - "16, 7": 0 - "16, 8": 0 - "16, 9": 0 - "16, 10": 0 - "16, 11": 0 - "16, 12": 0 - "16, 13": 0 - "16, 14": 0 - "16, 15": 0 - "17, 0": 0 - "17, 1": 0 - "17, 2": 0 - "17, 3": 0 - "17, 4": 0 - "17, 5": 0 - "17, 6": 0 - "17, 7": 0 - "17, 8": 0 - "17, 9": 0 - "17, 10": 0 - "17, 11": 0 - "17, 12": 0 - "17, 13": 0 - "17, 14": 0 - "17, 15": 0 - "18, 0": 0 - "18, 1": 0 - "18, 2": 0 - "18, 3": 0 - "18, 4": 0 - "18, 5": 0 - "18, 6": 0 - "18, 7": 0 - "18, 8": 0 - "18, 9": 0 - "18, 10": 0 - "18, 11": 0 - "18, 12": 0 - "18, 13": 0 - "18, 14": 0 - "19, 0": 0 - "19, 1": 0 - "19, 2": 0 - "19, 3": 0 - "19, 4": 0 - "19, 5": 0 - "19, 6": 0 - "19, 7": 0 - "19, 8": 0 - "19, 9": 0 - "19, 10": 0 - "19, 11": 0 - "19, 12": 0 - "19, 13": 0 - "19, 14": 0 - "19, 15": 0 - "20, 0": 0 - "20, 1": 0 - "20, 2": 0 - "20, 3": 0 - "20, 4": 0 - "20, 5": 0 - "20, 6": 0 - "20, 7": 0 - "20, 8": 0 - "20, 9": 0 - "20, 10": 0 - "20, 11": 0 - "20, 12": 0 - "20, 13": 0 - "20, 14": 0 - "20, 15": 0 - "21, 0": 0 - "21, 1": 0 - "21, 2": 0 - "21, 3": 0 - "21, 4": 0 - "21, 5": 0 - "21, 6": 0 - "21, 7": 0 - "21, 8": 0 - "21, 9": 0 - "21, 10": 0 - "21, 11": 0 - "21, 12": 0 - "21, 13": 0 - "21, 14": 0 - "21, 15": 0 - "22, 0": 0 - "22, 1": 0 - "22, 2": 0 - "22, 3": 0 - "22, 4": 0 - "22, 5": 0 - "22, 6": 0 - "22, 7": 0 - "22, 8": 0 - "22, 9": 0 - "22, 10": 0 - "22, 11": 0 - "22, 12": 0 - "22, 13": 0 - "22, 14": 0 - "22, 15": 0 - "23, 0": 0 - "23, 1": 0 - "23, 2": 0 - "23, 3": 0 - "23, 4": 0 - "23, 5": 0 - "23, 6": 0 - "23, 7": 0 - "23, 8": 0 - "23, 9": 0 - "23, 10": 0 - "23, 11": 0 - "23, 12": 0 - "23, 13": 0 - "23, 14": 0 - "23, 15": 0 - "24, 0": 0 - "24, 1": 0 - "24, 2": 0 - "24, 3": 0 - "24, 4": 0 - "24, 5": 0 - "24, 6": 0 - "24, 7": 0 - "24, 8": 0 - "24, 9": 0 - "24, 10": 0 - "24, 11": 0 - "24, 12": 0 - "24, 13": 0 - "24, 14": 0 - "25, 0": 0 - "25, 1": 0 - "25, 2": 0 - "25, 3": 0 - "25, 4": 0 - "25, 5": 0 - "25, 6": 0 - "25, 7": 0 - "25, 8": 0 - "25, 9": 0 - "25, 10": 0 - "25, 11": 0 - "25, 12": 0 - "25, 13": 0 - "25, 14": 0 - "26, 0": 0 - "26, 1": 0 - "26, 2": 0 - "26, 3": 0 - "26, 4": 0 - "26, 5": 0 - "26, 6": 0 - "26, 7": 0 - "26, 8": 0 - "26, 9": 0 - "26, 10": 0 - "26, 11": 0 - "26, 12": 0 - "26, 13": 0 - "26, 14": 0 - "27, 0": 0 - "27, 1": 0 - "27, 2": 0 - "27, 3": 0 - "27, 4": 0 - "27, 5": 0 - "27, 6": 0 - "27, 7": 0 - "27, 8": 0 - "27, 9": 0 - "27, 10": 0 - "27, 11": 0 - "27, 12": 0 - "27, 13": 0 - "27, 14": 0 - "28, 0": 0 - "28, 1": 0 - "28, 2": 0 - "28, 3": 0 - "28, 4": 0 - "28, 5": 0 - "28, 6": 0 - "28, 7": 0 - "28, 8": 0 - "28, 9": 0 - "28, 10": 0 - "28, 11": 0 - "28, 12": 0 - "28, 13": 0 - "28, 14": 0 - "29, 0": 0 - "29, 1": 0 - "29, 2": 0 - "29, 3": 0 - "29, 4": 0 - "29, 5": 0 - "29, 6": 0 - "29, 7": 0 - "29, 8": 0 - "29, 9": 0 - "29, 10": 0 - "29, 11": 0 - "29, 12": 0 - "29, 13": 0 - "29, 14": 0 - "30, 0": 0 - "30, 1": 0 - "30, 2": 0 - "30, 3": 0 - "30, 4": 0 - "30, 5": 0 - "30, 6": 0 - "30, 7": 0 - "30, 8": 0 - "30, 9": 0 - "30, 10": 0 - "30, 11": 0 - "30, 12": 0 - "30, 13": 0 - "30, 14": 0 - "30, 15": 0 - "31, 0": 0 - "31, 1": 0 - "31, 2": 0 - "31, 3": 0 - "31, 4": 0 - "31, 5": 0 - "31, 6": 0 - "31, 7": 0 - "31, 8": 0 - "31, 9": 0 - "31, 10": 0 - "31, 11": 0 - "31, 12": 0 - "31, 13": 0 - "31, 14": 0 - "31, 15": 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, 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 - "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, 18": 0 - "4, 19": 0 - "4, 20": 0 - "4, 21": 0 - "4, 22": 0 - "4, 23": 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 - "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 - "6, 16": 0 - "6, 17": 0 - "6, 18": 0 - "6, 19": 0 - "6, 20": 0 - "6, 21": 0 - "6, 22": 0 - "6, 23": 0 - "6, 24": 0 - "6, 25": 0 - "6, 26": 0 - "6, 27": 0 - "6, 28": 0 - "6, 29": 0 - "6, 30": 0 - "6, 31": 0 - "7, 16": 0 - "7, 17": 0 - "7, 18": 0 - "7, 19": 0 - "7, 20": 0 - "7, 21": 0 - "7, 22": 0 - "7, 23": 0 - "7, 24": 0 - "7, 25": 0 - "7, 26": 0 - "7, 27": 0 - "7, 28": 0 - "7, 29": 0 - "7, 30": 0 - "7, 31": 0 - "8, 16": 0 - "8, 17": 0 - "8, 18": 0 - "8, 19": 0 - "8, 20": 0 - "8, 21": 0 - "8, 22": 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, 16": 0 - "9, 17": 0 - "9, 18": 0 - "9, 19": 0 - "9, 20": 0 - "9, 21": 0 - "9, 22": 0 - "9, 23": 0 - "9, 24": 0 - "9, 25": 0 - "9, 26": 0 - "9, 27": 0 - "9, 28": 0 - "9, 29": 0 - "9, 30": 0 - "9, 31": 0 - "10, 16": 0 - "10, 17": 0 - "10, 18": 0 - "10, 19": 0 - "10, 20": 0 - "10, 21": 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 - "11, 16": 0 - "11, 17": 0 - "11, 18": 0 - "11, 19": 0 - "11, 20": 0 - "11, 21": 0 - "11, 22": 0 - "12, 16": 0 - "12, 17": 0 - "12, 18": 0 - "12, 19": 0 - "12, 20": 0 - "12, 21": 0 - "12, 22": 0 - "13, 16": 0 - "13, 17": 0 - "13, 18": 0 - "13, 19": 0 - "13, 20": 0 - "13, 21": 0 - "13, 22": 0 - "14, 16": 0 - "14, 17": 0 - "14, 18": 0 - "14, 19": 0 - "14, 20": 0 - "14, 21": 0 - "14, 22": 0 - "15, 16": 0 - "-32, 0": 0 - "-32, 1": 0 - "-32, 2": 0 - "-32, 3": 0 - "-32, 4": 0 - "-32, 5": 0 - "-32, 6": 0 - "-32, 7": 0 - "-32, 8": 0 - "-32, 9": 0 - "-32, 10": 0 - "-32, 11": 0 - "-32, 12": 0 - "-32, 13": 0 - "-32, 14": 0 - "-32, 15": 0 - "-31, 0": 0 - "-31, 1": 0 - "-31, 2": 0 - "-31, 3": 0 - "-31, 4": 0 - "-31, 5": 0 - "-31, 6": 0 - "-31, 7": 0 - "-31, 8": 0 - "-31, 9": 0 - "-31, 10": 0 - "-31, 11": 0 - "-31, 12": 0 - "-31, 13": 0 - "-31, 14": 0 - "-31, 15": 0 - "-30, 0": 0 - "-30, 1": 0 - "-30, 2": 0 - "-30, 3": 0 - "-30, 4": 0 - "-30, 5": 0 - "-30, 6": 0 - "-30, 7": 0 - "-30, 8": 0 - "-30, 9": 0 - "-30, 10": 0 - "-30, 11": 0 - "-30, 12": 0 - "-30, 13": 0 - "-30, 14": 0 - "-30, 15": 0 - "-29, 0": 0 - "-29, 1": 0 - "-29, 2": 0 - "-29, 3": 0 - "-29, 4": 0 - "-29, 5": 0 - "-29, 6": 0 - "-29, 7": 0 - "-29, 8": 0 - "-29, 9": 0 - "-29, 10": 0 - "-29, 11": 0 - "-29, 12": 0 - "-29, 13": 0 - "-29, 14": 0 - "-29, 15": 0 - "-28, 0": 0 - "-28, 1": 0 - "-28, 2": 0 - "-28, 3": 0 - "-28, 4": 0 - "-28, 5": 0 - "-28, 6": 0 - "-28, 7": 0 - "-28, 8": 0 - "-28, 9": 0 - "-28, 10": 0 - "-28, 11": 0 - "-28, 12": 0 - "-28, 13": 0 - "-28, 14": 0 - "-28, 15": 0 - "-27, 0": 0 - "-27, 1": 0 - "-27, 2": 0 - "-27, 3": 0 - "-27, 4": 0 - "-27, 5": 0 - "-27, 6": 0 - "-27, 7": 0 - "-27, 8": 0 - "-27, 9": 0 - "-27, 10": 0 - "-27, 11": 0 - "-27, 12": 0 - "-27, 13": 0 - "-27, 14": 0 - "-27, 15": 0 - "-26, 0": 0 - "-26, 1": 0 - "-26, 2": 0 - "-26, 3": 0 - "-26, 4": 0 - "-26, 5": 0 - "-26, 6": 0 - "-26, 7": 0 - "-26, 8": 0 - "-26, 9": 0 - "-26, 10": 0 - "-26, 11": 0 - "-26, 12": 0 - "-26, 13": 0 - "-26, 14": 0 - "-26, 15": 0 - "-25, 0": 0 - "-25, 1": 0 - "-25, 2": 0 - "-25, 3": 0 - "-25, 4": 0 - "-25, 5": 0 - "-25, 6": 0 - "-25, 7": 0 - "-25, 8": 0 - "-25, 9": 0 - "-25, 10": 0 - "-25, 11": 0 - "-25, 12": 0 - "-25, 13": 0 - "-25, 14": 0 - "-25, 15": 0 - "-24, 0": 0 - "-24, 1": 0 - "-24, 2": 0 - "-24, 3": 0 - "-24, 4": 0 - "-24, 5": 0 - "-24, 6": 0 - "-24, 7": 0 - "-24, 8": 0 - "-24, 9": 0 - "-24, 10": 0 - "-24, 11": 0 - "-24, 12": 0 - "-24, 13": 0 - "-24, 14": 0 - "-24, 15": 0 - "-23, 0": 0 - "-23, 1": 0 - "-23, 2": 0 - "-23, 3": 0 - "-23, 4": 0 - "-23, 5": 0 - "-23, 6": 0 - "-23, 7": 0 - "-23, 8": 0 - "-23, 9": 0 - "-23, 10": 0 - "-23, 11": 0 - "-23, 12": 0 - "-23, 13": 0 - "-23, 14": 0 - "-23, 15": 0 - "-22, 0": 0 - "-22, 1": 0 - "-22, 2": 0 - "-22, 3": 0 - "-22, 4": 0 - "-22, 5": 0 - "-22, 6": 0 - "-22, 7": 0 - "-22, 8": 0 - "-22, 9": 0 - "-22, 10": 0 - "-22, 11": 0 - "-22, 12": 0 - "-22, 13": 0 - "-22, 14": 0 - "-22, 15": 0 - "-21, 0": 0 - "-21, 1": 0 - "-21, 2": 0 - "-21, 3": 0 - "-21, 4": 0 - "-21, 5": 0 - "-21, 6": 0 - "-21, 7": 0 - "-21, 8": 0 - "-21, 9": 0 - "-21, 10": 0 - "-21, 11": 0 - "-21, 12": 0 - "-21, 13": 0 - "-21, 14": 0 - "-21, 15": 0 - "-20, 0": 0 - "-20, 1": 0 - "-20, 2": 0 - "-20, 3": 0 - "-20, 4": 0 - "-20, 5": 0 - "-20, 6": 0 - "-20, 7": 0 - "-20, 8": 0 - "-20, 9": 0 - "-20, 10": 0 - "-20, 11": 0 - "-20, 12": 0 - "-20, 13": 0 - "-20, 14": 0 - "-20, 15": 0 - "-19, 0": 0 - "-19, 1": 0 - "-19, 2": 0 - "-19, 3": 0 - "-19, 4": 0 - "-19, 5": 0 - "-19, 6": 0 - "-19, 7": 0 - "-19, 8": 0 - "-19, 9": 0 - "-19, 10": 0 - "-19, 11": 0 - "-19, 12": 0 - "-19, 13": 0 - "-19, 14": 0 - "-19, 15": 0 - "-18, 0": 0 - "-18, 1": 0 - "-18, 2": 0 - "-18, 3": 0 - "-18, 4": 0 - "-18, 5": 0 - "-18, 6": 0 - "-18, 7": 0 - "-18, 8": 0 - "-18, 9": 0 - "-18, 10": 0 - "-18, 11": 0 - "-18, 12": 0 - "-18, 13": 0 - "-18, 14": 0 - "-18, 15": 0 - "-17, 0": 0 - "-17, 1": 0 - "-17, 2": 0 - "-17, 3": 0 - "-17, 4": 0 - "-17, 5": 0 - "-17, 6": 0 - "-17, 7": 0 - "-17, 8": 0 - "-17, 9": 0 - "-17, 10": 0 - "-17, 11": 0 - "-17, 12": 0 - "-17, 13": 0 - "-17, 14": 0 - "-17, 15": 0 - "16, -16": 0 - "16, -15": 0 - "16, -14": 0 - "16, -13": 0 - "16, -12": 0 - "16, -11": 0 - "16, -10": 0 - "16, -9": 0 - "16, -8": 0 - "16, -7": 0 - "16, -6": 0 - "16, -5": 0 - "16, -4": 0 - "16, -3": 0 - "16, -2": 0 - "16, -1": 0 - "17, -16": 0 - "17, -15": 0 - "17, -14": 0 - "17, -13": 0 - "17, -12": 0 - "17, -11": 0 - "17, -10": 0 - "17, -9": 0 - "17, -8": 0 - "17, -7": 0 - "17, -6": 0 - "17, -5": 0 - "17, -4": 0 - "17, -3": 0 - "17, -2": 0 - "17, -1": 0 - "18, -16": 0 - "18, -15": 0 - "18, -14": 0 - "18, -13": 0 - "18, -12": 0 - "18, -11": 0 - "18, -10": 0 - "18, -9": 0 - "18, -8": 0 - "18, -7": 0 - "18, -6": 0 - "18, -5": 0 - "18, -4": 0 - "18, -3": 0 - "18, -2": 0 - "18, -1": 0 - "19, -16": 0 - "19, -15": 0 - "19, -14": 0 - "19, -13": 0 - "19, -12": 0 - "19, -11": 0 - "19, -10": 0 - "19, -9": 0 - "19, -8": 0 - "19, -7": 0 - "19, -6": 0 - "19, -5": 0 - "19, -4": 0 - "19, -3": 0 - "19, -2": 0 - "19, -1": 0 - "20, -16": 0 - "20, -15": 0 - "20, -14": 0 - "20, -13": 0 - "20, -12": 0 - "20, -11": 0 - "20, -10": 0 - "20, -9": 0 - "20, -8": 0 - "20, -7": 0 - "20, -6": 0 - "20, -5": 0 - "20, -4": 0 - "20, -3": 0 - "20, -2": 0 - "20, -1": 0 - "21, -16": 0 - "21, -15": 0 - "21, -14": 0 - "21, -13": 0 - "21, -12": 0 - "21, -11": 0 - "21, -10": 0 - "21, -9": 0 - "21, -8": 0 - "21, -7": 0 - "21, -6": 0 - "21, -5": 0 - "21, -4": 0 - "21, -3": 0 - "21, -2": 0 - "21, -1": 0 - "22, -16": 0 - "22, -15": 0 - "22, -14": 0 - "22, -13": 0 - "22, -12": 0 - "22, -11": 0 - "22, -10": 0 - "22, -9": 0 - "22, -8": 0 - "22, -7": 0 - "22, -6": 0 - "22, -5": 0 - "22, -4": 0 - "22, -3": 0 - "22, -2": 0 - "22, -1": 0 - "23, -16": 0 - "23, -15": 0 - "23, -14": 0 - "23, -13": 0 - "23, -12": 0 - "23, -11": 0 - "23, -10": 0 - "23, -9": 0 - "23, -8": 0 - "23, -7": 0 - "23, -6": 0 - "23, -5": 0 - "23, -4": 0 - "23, -3": 0 - "23, -2": 0 - "23, -1": 0 - "24, -16": 0 - "24, -15": 0 - "24, -14": 0 - "24, -13": 0 - "24, -12": 0 - "24, -11": 0 - "24, -10": 0 - "24, -9": 0 - "24, -8": 0 - "24, -7": 0 - "24, -6": 0 - "24, -5": 0 - "24, -4": 0 - "24, -3": 0 - "24, -2": 0 - "24, -1": 0 - "25, -16": 0 - "25, -15": 0 - "25, -14": 0 - "25, -13": 0 - "25, -12": 0 - "25, -11": 0 - "25, -10": 0 - "25, -9": 0 - "25, -8": 0 - "25, -7": 0 - "25, -6": 0 - "25, -5": 0 - "25, -4": 0 - "25, -3": 0 - "25, -2": 0 - "25, -1": 0 - "26, -16": 0 - "26, -15": 0 - "26, -14": 0 - "26, -13": 0 - "26, -12": 0 - "26, -11": 0 - "26, -10": 0 - "26, -9": 0 - "26, -8": 0 - "26, -7": 0 - "26, -6": 0 - "26, -5": 0 - "26, -4": 0 - "26, -3": 0 - "26, -2": 0 - "26, -1": 0 - "27, -16": 0 - "27, -15": 0 - "27, -14": 0 - "27, -13": 0 - "27, -12": 0 - "27, -11": 0 - "27, -10": 0 - "27, -9": 0 - "27, -8": 0 - "27, -7": 0 - "27, -6": 0 - "27, -5": 0 - "27, -4": 0 - "27, -3": 0 - "27, -2": 0 - "27, -1": 0 - "28, -16": 0 - "28, -15": 0 - "28, -14": 0 - "28, -13": 0 - "28, -12": 0 - "28, -11": 0 - "28, -10": 0 - "28, -9": 0 - "28, -8": 0 - "28, -7": 0 - "28, -6": 0 - "28, -5": 0 - "28, -4": 0 - "28, -3": 0 - "28, -2": 0 - "28, -1": 0 - "29, -9": 0 - "29, -8": 0 - "29, -7": 0 - "29, -6": 0 - "29, -5": 0 - "29, -4": 0 - "29, -3": 0 - "29, -2": 0 - "29, -1": 0 - "30, -9": 0 - "30, -8": 0 - "30, -7": 0 - "30, -6": 0 - "30, -5": 0 - "30, -4": 0 - "30, -3": 0 - "30, -2": 0 - "30, -1": 0 - "31, -9": 0 - "31, -8": 0 - "31, -7": 0 - "31, -6": 0 - "31, -5": 0 - "31, -4": 0 - "31, -3": 0 - "31, -2": 0 - "31, -1": 0 - "0, -29": 0 - "0, -28": 0 - "0, -27": 0 - "0, -26": 0 - "0, -25": 0 - "0, -24": 0 - "0, -23": 0 - "0, -22": 0 - "0, -21": 0 - "0, -20": 0 - "0, -19": 0 - "0, -18": 0 - "0, -17": 0 - "1, -25": 0 - "1, -24": 0 - "1, -23": 0 - "1, -22": 0 - "1, -21": 0 - "1, -20": 0 - "1, -19": 0 - "1, -18": 0 - "1, -17": 0 - "2, -25": 0 - "2, -24": 0 - "2, -23": 0 - "2, -22": 0 - "2, -21": 0 - "2, -20": 0 - "2, -19": 0 - "2, -18": 0 - "2, -17": 0 - "3, -25": 0 - "3, -24": 0 - "3, -23": 0 - "3, -22": 0 - "3, -21": 0 - "3, -20": 0 - "3, -19": 0 - "3, -18": 0 - "3, -17": 0 - "4, -25": 0 - "4, -24": 0 - "4, -23": 0 - "4, -22": 0 - "4, -21": 0 - "4, -20": 0 - "4, -19": 0 - "4, -18": 0 - "4, -17": 0 - "5, -25": 0 - "5, -24": 0 - "5, -23": 0 - "5, -22": 0 - "5, -21": 0 - "5, -20": 0 - "5, -19": 0 - "5, -18": 0 - "5, -17": 0 - "6, -23": 0 - "6, -22": 0 - "6, -21": 0 - "6, -20": 0 - "6, -19": 0 - "6, -18": 0 - "6, -17": 0 - "7, -22": 0 - "7, -21": 0 - "7, -20": 0 - "7, -19": 0 - "7, -18": 0 - "7, -17": 0 - "8, -22": 0 - "8, -21": 0 - "8, -20": 0 - "8, -19": 0 - "8, -18": 0 - "8, -17": 0 - "9, -22": 0 - "9, -21": 0 - "9, -20": 0 - "9, -19": 0 - "9, -18": 0 - "9, -17": 0 - "10, -22": 0 - "10, -21": 0 - "10, -20": 0 - "10, -19": 0 - "10, -18": 0 - "10, -17": 0 - "11, -22": 0 - "11, -21": 0 - "11, -20": 0 - "11, -19": 0 - "11, -18": 0 - "11, -17": 0 - "12, -22": 0 - "12, -21": 0 - "12, -20": 0 - "12, -19": 0 - "12, -18": 0 - "12, -17": 0 - "13, -27": 0 - "13, -26": 0 - "13, -25": 0 - "13, -24": 0 - "13, -23": 0 - "13, -22": 0 - "13, -21": 0 - "13, -20": 0 - "13, -19": 0 - "13, -18": 0 - "13, -17": 0 - "14, -27": 0 - "14, -26": 0 - "14, -25": 0 - "14, -24": 0 - "14, -23": 0 - "14, -22": 0 - "14, -21": 0 - "14, -20": 0 - "14, -19": 0 - "14, -18": 0 - "14, -17": 0 - "15, -27": 0 - "15, -26": 0 - "15, -25": 0 - "15, -24": 0 - "15, -23": 0 - "15, -22": 0 - "15, -21": 0 - "15, -20": 0 - "15, -19": 0 - "15, -18": 0 - "15, -17": 0 - "16, -27": 0 - "16, -26": 0 - "16, -25": 0 - "16, -24": 0 - "16, -23": 0 - "16, -22": 0 - "16, -21": 0 - "16, -20": 0 - "16, -19": 0 - "16, -18": 0 - "16, -17": 0 - "17, -27": 0 - "17, -26": 0 - "17, -25": 0 - "17, -24": 0 - "17, -23": 0 - "17, -22": 0 - "17, -21": 0 - "17, -20": 0 - "17, -19": 0 - "17, -18": 0 - "17, -17": 0 - "18, -27": 0 - "18, -26": 0 - "18, -25": 0 - "18, -24": 0 - "18, -23": 0 - "18, -22": 0 - "18, -21": 0 - "18, -20": 0 - "18, -19": 0 - "18, -18": 0 - "18, -17": 0 - "19, -27": 0 - "19, -26": 0 - "19, -25": 0 - "19, -24": 0 - "19, -23": 0 - "19, -22": 0 - "19, -21": 0 - "19, -20": 0 - "19, -19": 0 - "19, -18": 0 - "19, -17": 0 - "20, -27": 0 - "20, -26": 0 - "20, -25": 0 - "20, -24": 0 - "20, -23": 0 - "20, -22": 0 - "20, -21": 0 - "20, -20": 0 - "20, -19": 0 - "20, -18": 0 - "20, -17": 0 - "21, -27": 0 - "21, -26": 0 - "21, -25": 0 - "21, -24": 0 - "21, -23": 0 - "21, -22": 0 - "21, -21": 0 - "21, -20": 0 - "21, -19": 0 - "21, -18": 0 - "21, -17": 0 - "22, -27": 0 - "22, -26": 0 - "22, -25": 0 - "22, -24": 0 - "22, -23": 0 - "22, -22": 0 - "22, -21": 0 - "22, -20": 0 - "22, -19": 0 - "22, -18": 0 - "22, -17": 0 - "23, -27": 0 - "23, -26": 0 - "23, -25": 0 - "23, -24": 0 - "23, -23": 0 - "23, -22": 0 - "23, -21": 0 - "23, -20": 0 - "23, -19": 0 - "23, -18": 0 - "23, -17": 0 - "24, -20": 0 - "24, -19": 0 - "24, -18": 0 - "24, -17": 0 - "25, -20": 0 - "25, -19": 0 - "25, -18": 0 - "25, -17": 0 - "26, -20": 0 - "26, -19": 0 - "26, -18": 0 - "26, -17": 0 - "27, -20": 0 - "27, -19": 0 - "27, -18": 0 - "27, -17": 0 - "28, -20": 0 - "28, -19": 0 - "28, -18": 0 - "28, -17": 0 - "-16, 16": 0 - "-16, 17": 0 - "-16, 18": 0 - "-16, 19": 0 - "-16, 20": 0 - "-16, 21": 0 - "-16, 22": 0 - "-16, 23": 0 - "-16, 24": 0 - "-16, 25": 0 - "-16, 26": 0 - "-15, 16": 0 - "-15, 17": 0 - "-15, 18": 0 - "-15, 19": 0 - "-15, 20": 0 - "-15, 21": 0 - "-15, 22": 0 - "-15, 23": 0 - "-15, 24": 0 - "-15, 25": 0 - "-15, 26": 0 - "-14, 16": 0 - "-14, 17": 0 - "-14, 18": 0 - "-14, 19": 0 - "-14, 20": 0 - "-14, 21": 0 - "-14, 22": 0 - "-14, 23": 0 - "-14, 24": 0 - "-14, 25": 0 - "-14, 26": 0 - "-13, 16": 0 - "-13, 17": 0 - "-13, 18": 0 - "-13, 19": 0 - "-13, 20": 0 - "-13, 21": 0 - "-13, 22": 0 - "-13, 23": 0 - "-13, 24": 0 - "-13, 25": 0 - "-13, 26": 0 - "-12, 16": 0 - "-12, 17": 0 - "-12, 18": 0 - "-12, 19": 0 - "-12, 20": 0 - "-12, 21": 0 - "-12, 22": 0 - "-12, 23": 0 - "-12, 24": 0 - "-12, 25": 0 - "-12, 26": 0 - "-11, 16": 0 - "-11, 17": 0 - "-11, 18": 0 - "-11, 19": 0 - "-11, 20": 0 - "-11, 21": 0 - "-11, 22": 0 - "-11, 23": 0 - "-11, 24": 0 - "-11, 25": 0 - "-11, 26": 0 - "-10, 16": 0 - "-10, 17": 0 - "-10, 18": 0 - "-10, 19": 0 - "-10, 20": 0 - "-10, 21": 0 - "-10, 22": 0 - "-10, 23": 0 - "-10, 24": 0 - "-10, 25": 0 - "-10, 26": 0 - "-9, 16": 0 - "-9, 17": 0 - "-9, 18": 0 - "-9, 19": 0 - "-9, 20": 0 - "-9, 21": 0 - "-9, 22": 0 - "-9, 23": 0 - "-9, 24": 0 - "-9, 25": 0 - "-9, 26": 0 - "-8, 16": 0 - "-8, 17": 0 - "-8, 18": 0 - "-8, 19": 0 - "-8, 20": 0 - "-8, 21": 0 - "-8, 22": 0 - "-8, 23": 0 - "-8, 24": 0 - "-8, 25": 0 - "-8, 26": 0 - "-7, 16": 0 - "-7, 17": 0 - "-7, 18": 0 - "-7, 19": 0 - "-7, 20": 0 - "-7, 21": 0 - "-7, 22": 0 - "-7, 23": 0 - "-7, 24": 0 - "-7, 25": 0 - "-7, 26": 0 - "-6, 16": 0 - "-6, 17": 0 - "-6, 18": 0 - "-6, 19": 0 - "-6, 20": 0 - "-6, 21": 0 - "-6, 22": 0 - "-6, 23": 0 - "-6, 24": 0 - "-6, 25": 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 - "-4, 16": 0 - "-4, 17": 0 - "-4, 18": 0 - "-4, 19": 0 - "-4, 20": 0 - "-4, 21": 0 - "-4, 22": 0 - "-4, 23": 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 - "-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 - "-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 - "-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 - "-17, 16": 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 - "-3, 32": 0 - "-2, 32": 0 - "-2, 33": 0 - "-1, 32": 0 - "-1, 33": 0 - "16, 16": 0 - "17, 16": 0 - "18, 17": 0 - "18, 18": 0 - "18, 19": 0 - "18, 20": 0 - "18, 21": 0 - "19, 16": 0 - "19, 17": 0 - "19, 18": 0 - "19, 19": 0 - "19, 20": 0 - "19, 21": 0 - "20, 16": 0 - "20, 17": 0 - "20, 18": 0 - "20, 19": 0 - "20, 20": 0 - "20, 21": 0 - "21, 16": 0 - "21, 17": 0 - "21, 18": 0 - "21, 19": 0 - "21, 20": 0 - "21, 21": 0 - "22, 16": 0 - "22, 17": 0 - "22, 18": 0 - "22, 19": 0 - "22, 20": 0 - "22, 21": 0 - "23, 16": 0 - "23, 17": 0 - "23, 18": 0 - "23, 19": 0 - "23, 20": 0 - "23, 21": 0 - "24, 17": 0 - "24, 18": 0 - "24, 19": 0 - "24, 20": 0 - "24, 21": 0 - "0, 32": 0 - "0, 33": 0 - "1, 32": 0 - "1, 33": 0 - "2, 32": 0 - "2, 33": 0 - "3, 32": 0 - "3, 33": 0 - "4, 32": 0 - "4, 33": 0 - "5, 32": 0 - "5, 33": 0 - "6, 32": 0 - "6, 33": 0 - "7, 32": 0 - "7, 33": 0 - "8, 32": 0 - "8, 33": 0 - "9, 32": 0 - "32, 0": 0 - "32, 1": 0 - "32, 2": 0 - "32, 3": 0 - "32, 4": 0 - "32, 5": 0 - "32, 6": 0 - "32, 7": 0 - "32, 8": 0 - "32, 9": 0 - "32, 10": 0 - "32, 11": 0 - "32, 12": 0 - "32, 13": 0 - "32, 14": 0 - "32, 15": 0 - "33, 0": 0 - "33, 1": 0 - "33, 2": 0 - "33, 3": 0 - "33, 4": 0 - "33, 5": 0 - "33, 6": 0 - "33, 7": 0 - "33, 8": 0 - "33, 9": 0 - "33, 10": 0 - "33, 11": 0 - "33, 12": 0 - "33, 13": 0 - "33, 14": 0 - "33, 15": 0 - "34, 0": 0 - "34, 1": 0 - "34, 2": 0 - "34, 3": 0 - "34, 4": 0 - "34, 5": 0 - "34, 6": 0 - "34, 7": 0 - "34, 8": 0 - "34, 9": 0 - "34, 10": 0 - "34, 11": 0 - "34, 12": 0 - "34, 13": 0 - "34, 14": 0 - "34, 15": 0 - "35, 0": 0 - "35, 1": 0 - "35, 2": 0 - "35, 3": 0 - "35, 4": 0 - "35, 5": 0 - "35, 6": 0 - "35, 7": 0 - "35, 8": 0 - "35, 9": 0 - "35, 10": 0 - "35, 11": 0 - "35, 12": 0 - "35, 13": 0 - "35, 14": 0 - "35, 15": 0 - "36, 0": 0 - "36, 1": 0 - "36, 2": 0 - "36, 3": 0 - "36, 4": 0 - "36, 5": 0 - "36, 6": 0 - "36, 7": 0 - "36, 8": 0 - "36, 9": 0 - "36, 10": 0 - "36, 11": 0 - "36, 12": 0 - "36, 13": 0 - "36, 14": 0 - "36, 15": 0 - "37, 0": 0 - "37, 1": 0 - "37, 2": 0 - "37, 3": 0 - "37, 4": 0 - "37, 5": 0 - "37, 6": 0 - "37, 7": 0 - "37, 8": 0 - "37, 9": 0 - "37, 10": 0 - "37, 11": 0 - "37, 12": 0 - "37, 13": 0 - "37, 14": 0 - "38, 0": 0 - "38, 1": 0 - "38, 2": 0 - "38, 3": 0 - "38, 4": 0 - "38, 5": 0 - "38, 6": 0 - "38, 7": 0 - "38, 8": 0 - "38, 9": 0 - "38, 10": 0 - "38, 11": 0 - "38, 12": 0 - "38, 13": 0 - "38, 14": 0 - "39, 0": 0 - "39, 1": 0 - "39, 2": 0 - "39, 3": 0 - "39, 4": 0 - "39, 5": 0 - "39, 6": 0 - "39, 7": 0 - "39, 8": 0 - "39, 9": 0 - "39, 10": 0 - "39, 11": 0 - "39, 12": 0 - "39, 13": 0 - "39, 14": 0 - "40, 0": 0 - "40, 1": 0 - "40, 2": 0 - "40, 3": 0 - "40, 4": 0 - "40, 5": 0 - "40, 6": 0 - "40, 7": 0 - "40, 8": 0 - "40, 9": 0 - "40, 10": 0 - "40, 11": 0 - "40, 12": 0 - "40, 13": 0 - "40, 14": 0 - "41, 0": 0 - "41, 1": 0 - "41, 2": 0 - "41, 3": 0 - "41, 4": 0 - "41, 5": 0 - "41, 6": 0 - "41, 7": 0 - "41, 8": 0 - "41, 9": 0 - "41, 10": 0 - "41, 11": 0 - "41, 12": 0 - "41, 13": 0 - "41, 14": 0 - "42, 0": 0 - "42, 1": 0 - "42, 2": 0 - "42, 3": 0 - "42, 4": 0 - "42, 5": 0 - "42, 6": 0 - "42, 7": 0 - "42, 8": 0 - "42, 9": 0 - "42, 10": 0 - "42, 11": 0 - "42, 12": 0 - "42, 13": 0 - "42, 14": 0 - "43, 0": 0 - "43, 1": 0 - "43, 2": 0 - "43, 3": 0 - "43, 4": 0 - "43, 5": 0 - "43, 6": 0 - "43, 7": 0 - "43, 8": 0 - "43, 9": 0 - "43, 10": 0 - "43, 11": 0 - "43, 12": 0 - "43, 13": 0 - "43, 14": 0 - "44, 0": 0 - "44, 1": 0 - "44, 2": 0 - "44, 3": 0 - "44, 4": 0 - "44, 5": 0 - "44, 6": 0 - "44, 7": 0 - "44, 8": 0 - "44, 9": 0 - "44, 10": 0 - "44, 11": 0 - "44, 12": 0 - "44, 13": 0 - "44, 14": 0 - "45, 0": 0 - "45, 1": 0 - "45, 2": 0 - "45, 3": 0 - "45, 4": 0 - "45, 5": 0 - "45, 6": 0 - "45, 7": 0 - "45, 8": 0 - "45, 9": 0 - "45, 10": 0 - "46, 0": 0 - "46, 1": 0 - "46, 2": 0 - "46, 3": 0 - "46, 4": 0 - "46, 5": 0 - "47, 0": 0 - "47, 1": 0 - "47, 2": 0 - "47, 3": 0 - "47, 4": 0 - "47, 5": 0 - "48, 0": 0 - "48, 1": 0 - "48, 2": 0 - "48, 3": 0 - "48, 4": 0 - "48, 5": 0 - "49, 0": 0 - "49, 1": 0 - "49, 2": 0 - "49, 3": 0 - "49, 4": 0 - "49, 5": 0 - "50, 0": 0 - "50, 1": 0 - "50, 2": 0 - "50, 3": 0 - "50, 4": 0 - "50, 5": 0 - "51, 0": 0 - "51, 1": 0 - "51, 2": 0 - "51, 3": 0 - "51, 4": 0 - "51, 5": 0 - "32, -9": 0 - "32, -8": 0 - "32, -7": 0 - "32, -6": 0 - "32, -5": 0 - "32, -4": 0 - "32, -3": 0 - "32, -2": 0 - "32, -1": 0 - "33, -9": 0 - "33, -8": 0 - "33, -7": 0 - "33, -6": 0 - "33, -5": 0 - "33, -4": 0 - "33, -3": 0 - "33, -2": 0 - "33, -1": 0 - "34, -9": 0 - "34, -8": 0 - "34, -7": 0 - "34, -6": 0 - "34, -5": 0 - "34, -4": 0 - "34, -3": 0 - "34, -2": 0 - "34, -1": 0 - "35, -9": 0 - "35, -8": 0 - "35, -7": 0 - "35, -6": 0 - "35, -5": 0 - "35, -4": 0 - "35, -3": 0 - "35, -2": 0 - "35, -1": 0 - "36, -9": 0 - "36, -8": 0 - "36, -7": 0 - "36, -6": 0 - "36, -5": 0 - "36, -4": 0 - "36, -3": 0 - "36, -2": 0 - "36, -1": 0 - "37, -9": 0 - "37, -8": 0 - "37, -7": 0 - "37, -6": 0 - "37, -5": 0 - "37, -4": 0 - "37, -3": 0 - "37, -2": 0 - "37, -1": 0 - "38, -9": 0 - "38, -8": 0 - "38, -7": 0 - "38, -6": 0 - "38, -5": 0 - "38, -4": 0 - "38, -3": 0 - "38, -2": 0 - "38, -1": 0 - "39, -9": 0 - "39, -8": 0 - "39, -7": 0 - "39, -6": 0 - "39, -5": 0 - "39, -4": 0 - "39, -3": 0 - "39, -2": 0 - "39, -1": 0 - "40, -6": 0 - "40, -5": 0 - "40, -4": 0 - "40, -3": 0 - "40, -2": 0 - "40, -1": 0 - "41, -6": 0 - "41, -5": 0 - "41, -4": 0 - "41, -3": 0 - "41, -2": 0 - "41, -1": 0 - "42, -6": 0 - "42, -5": 0 - "42, -4": 0 - "42, -3": 0 - "42, -2": 0 - "42, -1": 0 - "43, -6": 0 - "43, -5": 0 - "43, -4": 0 - "43, -3": 0 - "43, -2": 0 - "43, -1": 0 - "44, -6": 0 - "44, -5": 0 - "44, -4": 0 - "44, -3": 0 - "44, -2": 0 - "44, -1": 0 - "46, -8": 0 - "46, -7": 0 - "46, -6": 0 - "46, -5": 0 - "46, -4": 0 - "46, -3": 0 - "46, -2": 0 - "47, -8": 0 - "47, -7": 0 - "47, -6": 0 - "47, -5": 0 - "47, -4": 0 - "47, -3": 0 - "47, -2": 0 - "47, -1": 0 - "-16, -28": 0 - "-16, -27": 0 - "-16, -26": 0 - "-16, -25": 0 - "-16, -24": 0 - "-16, -23": 0 - "-16, -22": 0 - "-16, -21": 0 - "-16, -20": 0 - "-16, -19": 0 - "-16, -18": 0 - "-16, -17": 0 - "-15, -28": 0 - "-15, -27": 0 - "-15, -26": 0 - "-15, -25": 0 - "-15, -24": 0 - "-15, -23": 0 - "-15, -22": 0 - "-15, -21": 0 - "-15, -20": 0 - "-15, -19": 0 - "-15, -18": 0 - "-15, -17": 0 - "-14, -28": 0 - "-14, -27": 0 - "-14, -26": 0 - "-14, -25": 0 - "-14, -24": 0 - "-14, -23": 0 - "-14, -22": 0 - "-14, -21": 0 - "-14, -20": 0 - "-14, -19": 0 - "-14, -18": 0 - "-14, -17": 0 - "-13, -29": 0 - "-13, -28": 0 - "-13, -27": 0 - "-13, -26": 0 - "-13, -25": 0 - "-13, -24": 0 - "-13, -23": 0 - "-13, -22": 0 - "-13, -21": 0 - "-13, -20": 0 - "-13, -19": 0 - "-13, -18": 0 - "-13, -17": 0 - "-12, -29": 0 - "-12, -28": 0 - "-12, -27": 0 - "-12, -26": 0 - "-12, -25": 0 - "-12, -24": 0 - "-12, -23": 0 - "-12, -22": 0 - "-12, -21": 0 - "-12, -20": 0 - "-12, -19": 0 - "-12, -18": 0 - "-12, -17": 0 - "-11, -31": 0 - "-11, -30": 0 - "-11, -29": 0 - "-11, -28": 0 - "-11, -27": 0 - "-11, -26": 0 - "-11, -25": 0 - "-11, -24": 0 - "-11, -23": 0 - "-11, -22": 0 - "-11, -21": 0 - "-11, -20": 0 - "-11, -19": 0 - "-11, -18": 0 - "-11, -17": 0 - "-10, -31": 0 - "-10, -30": 0 - "-10, -29": 0 - "-10, -28": 0 - "-10, -27": 0 - "-10, -26": 0 - "-10, -25": 0 - "-10, -24": 0 - "-10, -23": 0 - "-10, -22": 0 - "-10, -21": 0 - "-10, -20": 0 - "-10, -19": 0 - "-10, -18": 0 - "-10, -17": 0 - "-9, -31": 0 - "-9, -30": 0 - "-9, -29": 0 - "-9, -28": 0 - "-9, -27": 0 - "-9, -26": 0 - "-9, -25": 0 - "-9, -24": 0 - "-9, -23": 0 - "-9, -22": 0 - "-9, -21": 0 - "-9, -20": 0 - "-9, -19": 0 - "-9, -18": 0 - "-9, -17": 0 - "-8, -31": 0 - "-8, -30": 0 - "-8, -29": 0 - "-8, -28": 0 - "-8, -27": 0 - "-8, -26": 0 - "-8, -25": 0 - "-8, -24": 0 - "-8, -23": 0 - "-8, -22": 0 - "-8, -21": 0 - "-8, -20": 0 - "-8, -19": 0 - "-8, -18": 0 - "-8, -17": 0 - "-7, -31": 0 - "-7, -30": 0 - "-7, -29": 0 - "-7, -28": 0 - "-7, -27": 0 - "-7, -26": 0 - "-7, -25": 0 - "-7, -24": 0 - "-7, -23": 0 - "-7, -22": 0 - "-7, -21": 0 - "-7, -20": 0 - "-7, -19": 0 - "-7, -18": 0 - "-7, -17": 0 - "-6, -29": 0 - "-6, -28": 0 - "-6, -27": 0 - "-6, -26": 0 - "-6, -25": 0 - "-6, -24": 0 - "-6, -23": 0 - "-6, -22": 0 - "-6, -21": 0 - "-6, -20": 0 - "-6, -19": 0 - "-6, -18": 0 - "-6, -17": 0 - "-5, -29": 0 - "-5, -28": 0 - "-5, -27": 0 - "-5, -26": 0 - "-5, -25": 0 - "-5, -24": 0 - "-5, -23": 0 - "-5, -22": 0 - "-5, -21": 0 - "-5, -20": 0 - "-5, -19": 0 - "-5, -18": 0 - "-5, -17": 0 - "-4, -29": 0 - "-4, -28": 0 - "-4, -27": 0 - "-4, -26": 0 - "-4, -25": 0 - "-4, -24": 0 - "-4, -23": 0 - "-4, -22": 0 - "-4, -21": 0 - "-4, -20": 0 - "-4, -19": 0 - "-4, -18": 0 - "-4, -17": 0 - "-3, -29": 0 - "-3, -28": 0 - "-3, -27": 0 - "-3, -26": 0 - "-3, -25": 0 - "-3, -24": 0 - "-3, -23": 0 - "-3, -22": 0 - "-3, -21": 0 - "-3, -20": 0 - "-3, -19": 0 - "-3, -18": 0 - "-3, -17": 0 - "-2, -29": 0 - "-2, -28": 0 - "-2, -27": 0 - "-2, -26": 0 - "-2, -25": 0 - "-2, -24": 0 - "-2, -23": 0 - "-2, -22": 0 - "-2, -21": 0 - "-2, -20": 0 - "-2, -19": 0 - "-2, -18": 0 - "-2, -17": 0 - "-1, -29": 0 - "-1, -28": 0 - "-1, -27": 0 - "-1, -26": 0 - "-1, -25": 0 - "-1, -24": 0 - "-1, -23": 0 - "-1, -22": 0 - "-1, -21": 0 - "-1, -20": 0 - "-1, -19": 0 - "-1, -18": 0 - "-1, -17": 0 - "-20, -17": 0 - "-19, -28": 0 - "-19, -27": 0 - "-19, -26": 0 - "-19, -25": 0 - "-19, -24": 0 - "-19, -23": 0 - "-19, -22": 0 - "-19, -21": 0 - "-19, -20": 0 - "-19, -19": 0 - "-19, -18": 0 - "-19, -17": 0 - "-18, -28": 0 - "-18, -27": 0 - "-18, -26": 0 - "-18, -25": 0 - "-18, -24": 0 - "-18, -23": 0 - "-18, -22": 0 - "-18, -21": 0 - "-18, -20": 0 - "-18, -19": 0 - "-18, -18": 0 - "-18, -17": 0 - "-17, -28": 0 - "-17, -27": 0 - "-17, -26": 0 - "-17, -25": 0 - "-17, -24": 0 - "-17, -23": 0 - "-17, -22": 0 - "-17, -21": 0 - "-17, -20": 0 - "-17, -19": 0 - "-17, -18": 0 - "-17, -17": 0 - "-32, -13": 0 - "-32, -12": 0 - "-32, -11": 0 - "-32, -10": 0 - "-32, -9": 0 - "-32, -8": 0 - "-32, -7": 0 - "-32, -6": 0 - "-32, -5": 0 - "-32, -4": 0 - "-32, -3": 0 - "-32, -2": 0 - "-32, -1": 0 - "-31, -13": 0 - "-31, -12": 0 - "-31, -11": 0 - "-31, -10": 0 - "-31, -9": 0 - "-31, -8": 0 - "-31, -7": 0 - "-31, -6": 0 - "-31, -5": 0 - "-31, -4": 0 - "-31, -3": 0 - "-31, -2": 0 - "-31, -1": 0 - "-30, -13": 0 - "-30, -12": 0 - "-30, -11": 0 - "-30, -10": 0 - "-30, -9": 0 - "-30, -8": 0 - "-30, -7": 0 - "-30, -6": 0 - "-30, -5": 0 - "-30, -4": 0 - "-30, -3": 0 - "-30, -2": 0 - "-30, -1": 0 - "-29, -13": 0 - "-29, -12": 0 - "-29, -11": 0 - "-29, -10": 0 - "-29, -9": 0 - "-29, -8": 0 - "-29, -7": 0 - "-29, -6": 0 - "-29, -5": 0 - "-29, -4": 0 - "-29, -3": 0 - "-29, -2": 0 - "-29, -1": 0 - "-28, -13": 0 - "-28, -12": 0 - "-28, -11": 0 - "-28, -10": 0 - "-28, -9": 0 - "-28, -8": 0 - "-28, -7": 0 - "-28, -6": 0 - "-28, -5": 0 - "-28, -4": 0 - "-28, -3": 0 - "-28, -2": 0 - "-28, -1": 0 - "-27, -13": 0 - "-27, -12": 0 - "-27, -11": 0 - "-27, -10": 0 - "-27, -9": 0 - "-27, -8": 0 - "-27, -7": 0 - "-27, -6": 0 - "-27, -5": 0 - "-27, -4": 0 - "-27, -3": 0 - "-27, -2": 0 - "-27, -1": 0 - "-26, -13": 0 - "-26, -12": 0 - "-26, -11": 0 - "-26, -10": 0 - "-26, -9": 0 - "-26, -8": 0 - "-26, -7": 0 - "-26, -6": 0 - "-26, -5": 0 - "-26, -4": 0 - "-26, -3": 0 - "-26, -2": 0 - "-26, -1": 0 - "-25, -16": 0 - "-25, -15": 0 - "-25, -14": 0 - "-25, -13": 0 - "-25, -12": 0 - "-25, -11": 0 - "-25, -10": 0 - "-25, -9": 0 - "-25, -8": 0 - "-25, -7": 0 - "-25, -6": 0 - "-25, -5": 0 - "-25, -4": 0 - "-25, -3": 0 - "-25, -2": 0 - "-25, -1": 0 - "-24, -16": 0 - "-24, -15": 0 - "-24, -14": 0 - "-24, -13": 0 - "-24, -12": 0 - "-24, -11": 0 - "-24, -10": 0 - "-24, -9": 0 - "-24, -8": 0 - "-24, -7": 0 - "-24, -6": 0 - "-24, -5": 0 - "-24, -4": 0 - "-24, -3": 0 - "-24, -2": 0 - "-24, -1": 0 - "-23, -16": 0 - "-23, -15": 0 - "-23, -14": 0 - "-23, -13": 0 - "-23, -12": 0 - "-23, -11": 0 - "-23, -10": 0 - "-23, -9": 0 - "-23, -8": 0 - "-23, -7": 0 - "-23, -6": 0 - "-23, -5": 0 - "-23, -4": 0 - "-23, -3": 0 - "-23, -2": 0 - "-23, -1": 0 - "-22, -16": 0 - "-22, -15": 0 - "-22, -14": 0 - "-22, -13": 0 - "-22, -12": 0 - "-22, -11": 0 - "-22, -10": 0 - "-22, -9": 0 - "-22, -8": 0 - "-22, -7": 0 - "-22, -6": 0 - "-22, -5": 0 - "-22, -4": 0 - "-22, -3": 0 - "-22, -2": 0 - "-22, -1": 0 - "-21, -16": 0 - "-21, -15": 0 - "-21, -14": 0 - "-21, -13": 0 - "-21, -12": 0 - "-21, -11": 0 - "-21, -10": 0 - "-21, -9": 0 - "-21, -8": 0 - "-21, -7": 0 - "-21, -6": 0 - "-21, -5": 0 - "-21, -4": 0 - "-21, -3": 0 - "-21, -2": 0 - "-21, -1": 0 - "-20, -16": 0 - "-20, -15": 0 - "-20, -14": 0 - "-20, -13": 0 - "-20, -12": 0 - "-20, -11": 0 - "-20, -10": 0 - "-20, -9": 0 - "-20, -8": 0 - "-20, -7": 0 - "-20, -6": 0 - "-20, -5": 0 - "-20, -4": 0 - "-20, -3": 0 - "-20, -2": 0 - "-20, -1": 0 - "-19, -16": 0 - "-19, -15": 0 - "-19, -14": 0 - "-19, -13": 0 - "-19, -12": 0 - "-19, -11": 0 - "-19, -10": 0 - "-19, -9": 0 - "-19, -8": 0 - "-19, -7": 0 - "-19, -6": 0 - "-19, -5": 0 - "-19, -4": 0 - "-19, -3": 0 - "-19, -2": 0 - "-19, -1": 0 - "-18, -16": 0 - "-18, -15": 0 - "-18, -14": 0 - "-18, -13": 0 - "-18, -12": 0 - "-18, -11": 0 - "-18, -10": 0 - "-18, -9": 0 - "-18, -8": 0 - "-18, -7": 0 - "-18, -6": 0 - "-18, -5": 0 - "-18, -4": 0 - "-18, -3": 0 - "-18, -2": 0 - "-18, -1": 0 - "-17, -16": 0 - "-17, -15": 0 - "-17, -14": 0 - "-17, -13": 0 - "-17, -12": 0 - "-17, -11": 0 - "-17, -10": 0 - "-17, -9": 0 - "-17, -8": 0 - "-17, -7": 0 - "-17, -6": 0 - "-17, -5": 0 - "-17, -4": 0 - "-17, -3": 0 - "-17, -2": 0 - "-17, -1": 0 - "-42, 3": 0 - "-42, 4": 0 - "-42, 5": 0 - "-42, 7": 0 - "-42, 8": 0 - "-42, 9": 0 - "-41, 1": 0 - "-41, 2": 0 - "-41, 3": 0 - "-41, 4": 0 - "-41, 5": 0 - "-41, 6": 0 - "-41, 7": 0 - "-41, 8": 0 - "-41, 9": 0 - "-41, 10": 0 - "-41, 11": 0 - "-40, 1": 0 - "-40, 2": 0 - "-40, 3": 0 - "-40, 4": 0 - "-40, 5": 0 - "-40, 6": 0 - "-40, 7": 0 - "-40, 8": 0 - "-40, 9": 0 - "-40, 10": 0 - "-40, 11": 0 - "-39, 0": 0 - "-39, 1": 0 - "-39, 2": 0 - "-39, 3": 0 - "-39, 4": 0 - "-39, 5": 0 - "-39, 6": 0 - "-39, 7": 0 - "-39, 8": 0 - "-39, 9": 0 - "-39, 10": 0 - "-39, 11": 0 - "-38, 0": 0 - "-38, 1": 0 - "-38, 2": 0 - "-38, 3": 0 - "-38, 4": 0 - "-38, 5": 0 - "-38, 6": 0 - "-38, 7": 0 - "-38, 8": 0 - "-38, 9": 0 - "-38, 10": 0 - "-38, 11": 0 - "-37, 0": 0 - "-37, 1": 0 - "-37, 2": 0 - "-37, 3": 0 - "-37, 4": 0 - "-37, 5": 0 - "-37, 6": 0 - "-37, 7": 0 - "-37, 8": 0 - "-37, 9": 0 - "-37, 10": 0 - "-37, 11": 0 - "-36, 0": 0 - "-36, 1": 0 - "-36, 2": 0 - "-36, 3": 0 - "-36, 4": 0 - "-36, 5": 0 - "-36, 6": 0 - "-36, 7": 0 - "-36, 8": 0 - "-36, 9": 0 - "-36, 10": 0 - "-36, 11": 0 - "-35, 0": 0 - "-35, 1": 0 - "-35, 2": 0 - "-35, 3": 0 - "-35, 4": 0 - "-35, 5": 0 - "-35, 6": 0 - "-35, 7": 0 - "-35, 8": 0 - "-35, 9": 0 - "-35, 10": 0 - "-35, 11": 0 - "-34, 0": 0 - "-34, 1": 0 - "-34, 2": 0 - "-34, 3": 0 - "-34, 4": 0 - "-34, 5": 0 - "-34, 6": 0 - "-34, 7": 0 - "-34, 8": 0 - "-34, 9": 0 - "-34, 10": 0 - "-34, 11": 0 - "-34, 12": 0 - "-34, 13": 0 - "-34, 14": 0 - "-34, 15": 0 - "-33, 0": 0 - "-33, 1": 0 - "-33, 2": 0 - "-33, 3": 0 - "-33, 4": 0 - "-33, 5": 0 - "-33, 6": 0 - "-33, 7": 0 - "-33, 8": 0 - "-33, 9": 0 - "-33, 10": 0 - "-33, 11": 0 - "-33, 12": 0 - "-33, 13": 0 - "-33, 14": 0 - "-33, 15": 0 - "-40, -5": 0 - "-40, -4": 0 - "-40, -3": 0 - "-39, -9": 0 - "-39, -8": 0 - "-39, -7": 0 - "-39, -6": 0 - "-39, -5": 0 - "-39, -4": 0 - "-39, -3": 0 - "-39, -2": 0 - "-39, -1": 0 - "-38, -9": 0 - "-38, -8": 0 - "-38, -7": 0 - "-38, -6": 0 - "-38, -5": 0 - "-38, -4": 0 - "-38, -3": 0 - "-38, -2": 0 - "-38, -1": 0 - "-37, -9": 0 - "-37, -8": 0 - "-37, -7": 0 - "-37, -6": 0 - "-37, -5": 0 - "-37, -4": 0 - "-37, -3": 0 - "-37, -2": 0 - "-37, -1": 0 - "-36, -9": 0 - "-36, -8": 0 - "-36, -7": 0 - "-36, -6": 0 - "-36, -5": 0 - "-36, -4": 0 - "-36, -3": 0 - "-36, -2": 0 - "-36, -1": 0 - "-35, -13": 0 - "-35, -12": 0 - "-35, -11": 0 - "-35, -10": 0 - "-35, -9": 0 - "-35, -8": 0 - "-35, -7": 0 - "-35, -6": 0 - "-35, -5": 0 - "-35, -4": 0 - "-35, -3": 0 - "-35, -2": 0 - "-35, -1": 0 - "-34, -13": 0 - "-34, -12": 0 - "-34, -11": 0 - "-34, -10": 0 - "-34, -9": 0 - "-34, -8": 0 - "-34, -7": 0 - "-34, -6": 0 - "-34, -5": 0 - "-34, -4": 0 - "-34, -3": 0 - "-34, -2": 0 - "-34, -1": 0 - "-33, -13": 0 - "-33, -12": 0 - "-33, -11": 0 - "-33, -10": 0 - "-33, -9": 0 - "-33, -8": 0 - "-33, -7": 0 - "-33, -6": 0 - "-33, -5": 0 - "-33, -4": 0 - "-33, -3": 0 - "-33, -2": 0 - "-33, -1": 0 - "48, -8": 0 - "48, -7": 0 - "48, -6": 0 - "48, -5": 0 - "48, -4": 0 - "48, -3": 0 - "48, -2": 0 - "48, -1": 0 - "49, -8": 0 - "49, -7": 0 - "49, -6": 0 - "49, -5": 0 - "49, -4": 0 - "49, -3": 0 - "49, -2": 0 - "49, -1": 0 - "50, -8": 0 - "50, -7": 0 - "50, -6": 0 - "50, -5": 0 - "50, -4": 0 - "50, -3": 0 - "50, -2": 0 - "50, -1": 0 - "51, -8": 0 - "51, -7": 0 - "51, -6": 0 - "51, -5": 0 - "51, -4": 0 - "51, -3": 0 - "51, -2": 0 - "51, -1": 0 - "52, -8": 0 - "52, -7": 0 - "52, -6": 0 - "52, -5": 0 - "52, -4": 0 - "52, -3": 0 - "52, -2": 0 - "-26, -17": 0 - "-25, -17": 0 - "-24, -17": 0 - "-23, -17": 0 - "-22, -17": 0 - "-21, -17": 0 - "-26, -16": 0 - "-26, -15": 0 - "-26, -14": 0 - "11, 23": 0 - "11, 24": 0 - "11, 25": 0 - "12, 23": 0 - "12, 24": 0 - "12, 25": 0 - "13, 23": 0 - "13, 24": 0 - "13, 25": 0 - "14, 23": 0 - "14, 24": 0 - "14, 25": 0 - "45, 11": 0 - "45, 12": 0 - "45, 13": 0 - "45, 14": 0 - "46, 6": 0 - "46, 7": 0 - "46, 8": 0 - "46, 9": 0 - "46, 10": 0 - "46, 11": 0 - "46, 12": 0 - "46, 13": 0 - "46, 14": 0 - "47, 6": 0 - "47, 7": 0 - "47, 8": 0 - "47, 9": 0 - "47, 10": 0 - "47, 11": 0 - "47, 12": 0 - "47, 13": 0 - "47, 14": 0 - "48, 6": 0 - "48, 7": 0 - "48, 8": 0 - "48, 9": 0 - "48, 10": 0 - "48, 11": 0 - "48, 12": 0 - "48, 13": 0 - "48, 14": 0 - "49, 6": 0 - "49, 7": 0 - "49, 8": 0 - "49, 9": 0 - "49, 10": 0 - "49, 11": 0 - "49, 12": 0 - "49, 13": 0 - "49, 14": 0 - "50, 6": 0 - "50, 7": 0 - "50, 8": 0 - "50, 9": 0 - "50, 10": 0 - "50, 11": 0 - "50, 12": 0 - "50, 13": 0 - "50, 14": 0 - "51, 6": 0 - "51, 7": 0 - "51, 8": 0 - "51, 9": 0 - "51, 10": 0 - "51, 11": 0 - "51, 12": 0 - "51, 13": 0 - "51, 14": 0 - "43, -16": 0 - "43, -15": 0 - "43, -14": 0 - "43, -13": 0 - "43, -12": 0 - "43, -11": 0 - "43, -10": 0 - "43, -9": 0 - "44, -15": 0 - "44, -14": 0 - "44, -13": 0 - "44, -12": 0 - "44, -11": 0 - "44, -10": 0 - "44, -9": 0 - "45, -15": 0 - "45, -14": 0 - "45, -13": 0 - "45, -12": 0 - "45, -11": 0 - "45, -10": 0 - "45, -9": 0 - "46, -16": 0 - "46, -15": 0 - "46, -14": 0 - "46, -13": 0 - "46, -12": 0 - "46, -11": 0 - "46, -10": 0 - "46, -9": 0 - "47, -15": 0 - "47, -14": 0 - "47, -13": 0 - "47, -12": 0 - "47, -11": 0 - "47, -10": 0 - "47, -9": 0 - "48, -15": 0 - "48, -14": 0 - "48, -13": 0 - "48, -12": 0 - "48, -11": 0 - "48, -10": 0 - "48, -9": 0 - "49, -16": 0 - "49, -15": 0 - "49, -14": 0 - "49, -13": 0 - "49, -12": 0 - "49, -11": 0 - "49, -10": 0 - "49, -9": 0 - "50, -15": 0 - "50, -14": 0 - "50, -13": 0 - "50, -12": 0 - "50, -11": 0 - "50, -10": 0 - "50, -9": 0 - "51, -15": 0 - "51, -14": 0 - "51, -13": 0 - "51, -12": 0 - "51, -11": 0 - "51, -10": 0 - "51, -9": 0 - "52, -16": 0 - "52, -15": 0 - "52, -14": 0 - "52, -13": 0 - "52, -12": 0 - "52, -11": 0 - "52, -10": 0 - "52, -9": 0 - "53, -15": 0 - "53, -14": 0 - "53, -13": 0 - "53, -12": 0 - "53, -11": 0 - "53, -10": 0 - "53, -9": 0 - "54, -15": 0 - "54, -14": 0 - "54, -13": 0 - "54, -12": 0 - "54, -11": 0 - "54, -10": 0 - "54, -9": 0 - "55, -16": 0 - "55, -15": 0 - "55, -14": 0 - "55, -13": 0 - "55, -12": 0 - "55, -11": 0 - "55, -10": 0 - "55, -9": 0 - "40, -32": 0 - "40, -31": 0 - "40, -30": 0 - "40, -29": 0 - "40, -28": 0 - "40, -27": 0 - "40, -26": 0 - "40, -25": 0 - "40, -24": 0 - "40, -23": 0 - "40, -22": 0 - "40, -21": 0 - "40, -20": 0 - "40, -19": 0 - "40, -18": 0 - "41, -29": 0 - "41, -25": 0 - "41, -21": 0 - "41, -18": 0 - "42, -32": 0 - "42, -31": 0 - "42, -30": 0 - "42, -29": 0 - "42, -28": 0 - "42, -27": 0 - "42, -26": 0 - "42, -25": 0 - "42, -24": 0 - "42, -23": 0 - "42, -22": 0 - "42, -21": 0 - "42, -20": 0 - "42, -19": 0 - "42, -18": 0 - "43, -32": 0 - "43, -29": 0 - "43, -25": 0 - "43, -21": 0 - "43, -18": 0 - "43, -17": 0 - "44, -32": 0 - "44, -29": 0 - "44, -25": 0 - "44, -21": 0 - "44, -18": 0 - "45, -32": 0 - "45, -31": 0 - "45, -30": 0 - "45, -29": 0 - "45, -28": 0 - "45, -27": 0 - "45, -26": 0 - "45, -25": 0 - "45, -24": 0 - "45, -23": 0 - "45, -22": 0 - "45, -21": 0 - "45, -20": 0 - "45, -19": 0 - "45, -18": 0 - "46, -32": 0 - "46, -29": 0 - "46, -25": 0 - "46, -21": 0 - "46, -18": 0 - "46, -17": 0 - "47, -32": 0 - "47, -29": 0 - "47, -25": 0 - "47, -21": 0 - "47, -18": 0 - "48, -32": 0 - "48, -29": 0 - "48, -25": 0 - "48, -21": 0 - "48, -18": 0 - "49, -32": 0 - "49, -31": 0 - "49, -30": 0 - "49, -29": 0 - "49, -28": 0 - "49, -27": 0 - "49, -26": 0 - "49, -25": 0 - "49, -24": 0 - "49, -23": 0 - "49, -22": 0 - "49, -21": 0 - "49, -20": 0 - "49, -19": 0 - "49, -18": 0 - "49, -17": 0 - "50, -32": 0 - "50, -29": 0 - "50, -25": 0 - "50, -21": 0 - "50, -18": 0 - "51, -32": 0 - "51, -29": 0 - "51, -25": 0 - "51, -21": 0 - "51, -18": 0 - "52, -32": 0 - "52, -29": 0 - "52, -25": 0 - "52, -21": 0 - "52, -18": 0 - "52, -17": 0 - "53, -32": 0 - "53, -31": 0 - "53, -30": 0 - "53, -29": 0 - "53, -28": 0 - "53, -27": 0 - "53, -26": 0 - "53, -25": 0 - "53, -24": 0 - "53, -23": 0 - "53, -22": 0 - "53, -21": 0 - "53, -20": 0 - "53, -19": 0 - "53, -18": 0 - "54, -32": 0 - "54, -29": 0 - "54, -25": 0 - "54, -21": 0 - "54, -18": 0 - "55, -32": 0 - "55, -29": 0 - "55, -25": 0 - "55, -21": 0 - "55, -18": 0 - "55, -17": 0 - "56, -32": 0 - "56, -31": 0 - "56, -30": 0 - "56, -29": 0 - "56, -28": 0 - "56, -27": 0 - "56, -26": 0 - "56, -25": 0 - "56, -24": 0 - "56, -23": 0 - "56, -22": 0 - "56, -21": 0 - "56, -20": 0 - "56, -19": 0 - "56, -18": 0 - "57, -29": 0 - "57, -25": 0 - "57, -21": 0 - "57, -18": 0 - "58, -32": 0 - "58, -31": 0 - "58, -30": 0 - "58, -29": 0 - "58, -28": 0 - "58, -27": 0 - "58, -26": 0 - "58, -25": 0 - "58, -24": 0 - "58, -23": 0 - "58, -22": 0 - "58, -21": 0 - "58, -20": 0 - "58, -19": 0 - "58, -18": 0 - "48, -34": 0 - "49, -34": 0 - "49, -33": 0 - "50, -34": 0 - "51, -34": 0 - "52, -34": 0 - "53, -34": 0 - "53, -33": 0 - "54, -34": 0 - "55, -34": 0 - "56, -34": 0 - "57, -34": 0 - "58, -34": 0 - "58, -33": 0 - "40, -34": 0 - "40, -33": 0 - "41, -34": 0 - "42, -34": 0 - "43, -34": 0 - "44, -34": 0 - "45, -34": 0 - "45, -33": 0 - "46, -34": 0 - "47, -34": 0 + -16,-16: 0 + -16,-15: 0 + -16,-14: 0 + -16,-13: 0 + -16,-12: 0 + -16,-11: 0 + -16,-10: 0 + -16,-9: 0 + -16,-8: 0 + -16,-7: 0 + -16,-6: 0 + -16,-5: 0 + -16,-4: 0 + -16,-3: 0 + -16,-2: 0 + -16,-1: 0 + -15,-16: 0 + -15,-15: 0 + -15,-14: 0 + -15,-13: 0 + -15,-12: 0 + -15,-11: 0 + -15,-10: 0 + -15,-9: 0 + -15,-8: 0 + -15,-7: 0 + -15,-6: 0 + -15,-5: 0 + -15,-4: 0 + -15,-3: 0 + -15,-2: 0 + -15,-1: 0 + -14,-16: 0 + -14,-15: 0 + -14,-14: 0 + -14,-13: 0 + -14,-12: 0 + -14,-11: 0 + -14,-10: 0 + -14,-9: 0 + -14,-8: 0 + -14,-7: 0 + -14,-6: 0 + -14,-5: 0 + -14,-4: 0 + -14,-3: 0 + -14,-2: 0 + -14,-1: 0 + -13,-16: 0 + -13,-15: 0 + -13,-14: 0 + -13,-13: 0 + -13,-12: 0 + -13,-11: 0 + -13,-10: 0 + -13,-9: 0 + -13,-8: 0 + -13,-7: 0 + -13,-6: 0 + -13,-5: 0 + -13,-4: 0 + -13,-3: 0 + -13,-2: 0 + -13,-1: 0 + -12,-16: 0 + -12,-15: 0 + -12,-14: 0 + -12,-13: 0 + -12,-12: 0 + -12,-11: 0 + -12,-10: 0 + -12,-9: 0 + -12,-8: 0 + -12,-7: 0 + -12,-6: 0 + -12,-5: 0 + -12,-4: 0 + -12,-3: 0 + -12,-2: 0 + -12,-1: 0 + -11,-16: 0 + -11,-15: 0 + -11,-14: 0 + -11,-13: 0 + -11,-12: 0 + -11,-11: 0 + -11,-10: 0 + -11,-9: 0 + -11,-8: 0 + -11,-7: 0 + -11,-6: 0 + -11,-5: 0 + -11,-4: 0 + -11,-3: 0 + -11,-2: 0 + -11,-1: 0 + -10,-16: 0 + -10,-15: 0 + -10,-14: 0 + -10,-13: 0 + -10,-12: 0 + -10,-11: 0 + -10,-10: 0 + -10,-9: 0 + -10,-8: 0 + -10,-7: 0 + -10,-6: 0 + -10,-5: 0 + -10,-4: 0 + -10,-3: 0 + -10,-2: 0 + -10,-1: 0 + -9,-16: 0 + -9,-15: 0 + -9,-14: 0 + -9,-13: 0 + -9,-12: 0 + -9,-11: 0 + -9,-10: 0 + -9,-9: 0 + -9,-8: 0 + -9,-7: 0 + -9,-6: 0 + -9,-5: 0 + -9,-4: 0 + -9,-3: 0 + -9,-2: 0 + -9,-1: 0 + -8,-16: 0 + -8,-15: 0 + -8,-14: 0 + -8,-13: 0 + -8,-12: 0 + -8,-11: 0 + -8,-10: 0 + -8,-9: 0 + -8,-8: 0 + -8,-7: 0 + -8,-6: 0 + -8,-5: 0 + -8,-4: 0 + -8,-3: 0 + -8,-2: 0 + -8,-1: 0 + -7,-16: 0 + -7,-15: 0 + -7,-14: 0 + -7,-13: 0 + -7,-12: 0 + -7,-11: 0 + -7,-10: 0 + -7,-9: 0 + -7,-8: 0 + -7,-7: 0 + -7,-6: 0 + -7,-5: 0 + -7,-4: 0 + -7,-3: 0 + -7,-2: 0 + -7,-1: 0 + -6,-16: 0 + -6,-15: 0 + -6,-14: 0 + -6,-13: 0 + -6,-12: 0 + -6,-11: 0 + -6,-10: 0 + -6,-9: 0 + -6,-8: 0 + -6,-7: 0 + -6,-6: 0 + -6,-5: 0 + -6,-4: 0 + -6,-3: 0 + -6,-2: 0 + -6,-1: 0 + -5,-16: 0 + -5,-15: 0 + -5,-14: 0 + -5,-13: 0 + -5,-12: 0 + -5,-11: 0 + -5,-10: 0 + -5,-9: 0 + -5,-8: 0 + -5,-7: 0 + -5,-6: 0 + -5,-5: 0 + -5,-4: 0 + -5,-3: 0 + -5,-2: 0 + -5,-1: 0 + -4,-16: 0 + -4,-15: 0 + -4,-14: 0 + -4,-13: 0 + -4,-12: 0 + -4,-11: 0 + -4,-10: 0 + -4,-9: 0 + -4,-8: 0 + -4,-7: 0 + -4,-6: 0 + -4,-5: 0 + -4,-4: 0 + -4,-3: 0 + -4,-2: 0 + -4,-1: 0 + -3,-16: 0 + -3,-15: 0 + -3,-14: 0 + -3,-13: 0 + -3,-12: 0 + -3,-11: 0 + -3,-10: 0 + -3,-9: 0 + -3,-8: 0 + -3,-7: 0 + -3,-6: 0 + -3,-5: 0 + -3,-4: 0 + -3,-3: 0 + -3,-2: 0 + -3,-1: 0 + -2,-16: 0 + -2,-15: 0 + -2,-14: 0 + -2,-13: 0 + -2,-12: 0 + -2,-11: 0 + -2,-10: 0 + -2,-9: 0 + -2,-8: 0 + -2,-7: 0 + -2,-6: 0 + -2,-5: 0 + -2,-4: 0 + -2,-3: 0 + -2,-2: 0 + -2,-1: 0 + -1,-16: 0 + -1,-15: 0 + -1,-14: 0 + -1,-13: 0 + -1,-12: 0 + -1,-11: 0 + -1,-10: 0 + -1,-9: 0 + -1,-8: 0 + -1,-7: 0 + -1,-6: 0 + -1,-5: 0 + -1,-4: 0 + -1,-3: 0 + -1,-2: 0 + -1,-1: 0 + -16,0: 0 + -16,1: 0 + -16,2: 0 + -16,3: 0 + -16,4: 0 + -16,5: 0 + -16,6: 0 + -16,7: 0 + -16,8: 0 + -16,9: 0 + -16,10: 0 + -16,11: 0 + -16,12: 0 + -16,13: 0 + -16,14: 0 + -16,15: 0 + -15,0: 0 + -15,1: 0 + -15,2: 0 + -15,3: 0 + -15,4: 0 + -15,5: 0 + -15,6: 0 + -15,7: 0 + -15,8: 0 + -15,9: 0 + -15,10: 0 + -15,11: 0 + -15,12: 0 + -15,13: 0 + -15,14: 0 + -15,15: 0 + -14,0: 0 + -14,1: 0 + -14,2: 0 + -14,3: 0 + -14,4: 0 + -14,5: 0 + -14,6: 0 + -14,7: 0 + -14,8: 0 + -14,9: 0 + -14,10: 0 + -14,11: 0 + -14,12: 0 + -14,13: 0 + -14,14: 0 + -14,15: 0 + -13,0: 0 + -13,1: 0 + -13,2: 0 + -13,3: 0 + -13,4: 0 + -13,5: 0 + -13,6: 0 + -13,7: 0 + -13,8: 0 + -13,9: 0 + -13,10: 0 + -13,11: 0 + -13,12: 0 + -13,13: 0 + -13,14: 0 + -13,15: 0 + -12,0: 0 + -12,1: 0 + -12,2: 0 + -12,3: 0 + -12,4: 0 + -12,5: 0 + -12,6: 0 + -12,7: 0 + -12,8: 0 + -12,9: 0 + -12,10: 0 + -12,11: 0 + -12,12: 0 + -12,13: 0 + -12,14: 0 + -12,15: 0 + -11,0: 0 + -11,1: 0 + -11,2: 0 + -11,3: 0 + -11,4: 0 + -11,5: 0 + -11,6: 0 + -11,7: 0 + -11,8: 0 + -11,9: 0 + -11,10: 0 + -11,11: 0 + -11,12: 0 + -11,13: 0 + -11,14: 0 + -11,15: 0 + -10,0: 0 + -10,1: 0 + -10,2: 0 + -10,3: 0 + -10,4: 0 + -10,5: 0 + -10,6: 0 + -10,7: 0 + -10,8: 0 + -10,9: 0 + -10,10: 0 + -10,11: 0 + -10,12: 0 + -10,13: 0 + -10,14: 0 + -10,15: 0 + -9,0: 0 + -9,1: 0 + -9,2: 0 + -9,3: 0 + -9,4: 0 + -9,5: 0 + -9,6: 0 + -9,7: 0 + -9,8: 0 + -9,9: 0 + -9,10: 0 + -9,11: 0 + -9,12: 0 + -9,13: 0 + -9,14: 0 + -9,15: 0 + -8,0: 0 + -8,1: 0 + -8,2: 0 + -8,3: 0 + -8,4: 0 + -8,5: 0 + -8,6: 0 + -8,7: 0 + -8,8: 0 + -8,9: 0 + -8,10: 0 + -8,11: 0 + -8,12: 0 + -8,13: 0 + -8,14: 0 + -8,15: 0 + -7,0: 0 + -7,1: 0 + -7,2: 0 + -7,3: 0 + -7,4: 0 + -7,5: 0 + -7,6: 0 + -7,7: 0 + -7,8: 0 + -7,9: 0 + -7,10: 0 + -7,11: 0 + -7,12: 0 + -7,13: 0 + -7,14: 0 + -7,15: 0 + -6,0: 0 + -6,1: 0 + -6,2: 0 + -6,3: 0 + -6,4: 0 + -6,5: 0 + -6,6: 0 + -6,7: 0 + -6,8: 0 + -6,9: 0 + -6,10: 0 + -6,11: 0 + -6,12: 0 + -6,13: 0 + -6,14: 0 + -6,15: 0 + -5,0: 0 + -5,1: 0 + -5,2: 0 + -5,3: 0 + -5,4: 0 + -5,5: 0 + -5,6: 0 + -5,7: 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,0: 0 + -4,1: 0 + -4,2: 0 + -4,3: 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,0: 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,0: 0 + -2,1: 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,0: 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 + 0,-16: 0 + 0,-15: 0 + 0,-14: 0 + 0,-13: 0 + 0,-12: 0 + 0,-11: 0 + 0,-10: 0 + 0,-9: 0 + 0,-8: 0 + 0,-7: 0 + 0,-6: 0 + 0,-5: 0 + 0,-4: 0 + 0,-3: 0 + 0,-2: 0 + 0,-1: 0 + 1,-16: 0 + 1,-15: 0 + 1,-14: 0 + 1,-13: 0 + 1,-12: 0 + 1,-11: 0 + 1,-10: 0 + 1,-9: 0 + 1,-8: 0 + 1,-7: 0 + 1,-6: 0 + 1,-5: 0 + 1,-4: 0 + 1,-3: 0 + 1,-2: 0 + 1,-1: 0 + 2,-16: 0 + 2,-15: 0 + 2,-14: 0 + 2,-13: 0 + 2,-12: 0 + 2,-11: 0 + 2,-10: 0 + 2,-9: 0 + 2,-8: 0 + 2,-7: 0 + 2,-6: 0 + 2,-5: 0 + 2,-4: 0 + 2,-3: 0 + 2,-2: 0 + 2,-1: 0 + 3,-16: 0 + 3,-15: 0 + 3,-14: 0 + 3,-13: 0 + 3,-12: 0 + 3,-11: 0 + 3,-10: 0 + 3,-9: 0 + 3,-8: 0 + 3,-7: 0 + 3,-6: 0 + 3,-5: 0 + 3,-4: 0 + 3,-3: 0 + 3,-2: 0 + 3,-1: 0 + 4,-16: 0 + 4,-15: 0 + 4,-14: 0 + 4,-13: 0 + 4,-12: 0 + 4,-11: 0 + 4,-10: 0 + 4,-9: 0 + 4,-8: 0 + 4,-7: 0 + 4,-6: 0 + 4,-5: 0 + 4,-4: 0 + 4,-3: 0 + 4,-2: 0 + 4,-1: 0 + 5,-16: 0 + 5,-15: 0 + 5,-14: 0 + 5,-13: 0 + 5,-12: 0 + 5,-11: 0 + 5,-10: 0 + 5,-9: 0 + 5,-8: 0 + 5,-7: 0 + 5,-6: 0 + 5,-5: 0 + 5,-4: 0 + 5,-3: 0 + 5,-2: 0 + 5,-1: 0 + 6,-16: 0 + 6,-15: 0 + 6,-14: 0 + 6,-13: 0 + 6,-12: 0 + 6,-11: 0 + 6,-10: 0 + 6,-9: 0 + 6,-8: 0 + 6,-7: 0 + 6,-6: 0 + 6,-5: 0 + 6,-4: 0 + 6,-3: 0 + 6,-2: 0 + 6,-1: 0 + 7,-16: 0 + 7,-15: 0 + 7,-14: 0 + 7,-13: 0 + 7,-12: 0 + 7,-11: 0 + 7,-10: 0 + 7,-9: 0 + 7,-8: 0 + 7,-7: 0 + 7,-6: 0 + 7,-5: 0 + 7,-4: 0 + 7,-3: 0 + 7,-2: 0 + 7,-1: 0 + 8,-16: 0 + 8,-15: 0 + 8,-14: 0 + 8,-13: 0 + 8,-12: 0 + 8,-11: 0 + 8,-10: 0 + 8,-9: 0 + 8,-8: 0 + 8,-7: 0 + 8,-6: 0 + 8,-5: 0 + 8,-4: 0 + 8,-3: 0 + 8,-2: 0 + 8,-1: 0 + 9,-16: 0 + 9,-15: 0 + 9,-14: 0 + 9,-13: 0 + 9,-12: 0 + 9,-11: 0 + 9,-10: 0 + 9,-9: 0 + 9,-8: 0 + 9,-7: 0 + 9,-6: 0 + 9,-5: 0 + 9,-4: 0 + 9,-3: 0 + 9,-2: 0 + 9,-1: 0 + 10,-16: 0 + 10,-15: 0 + 10,-14: 0 + 10,-13: 0 + 10,-12: 0 + 10,-11: 0 + 10,-10: 0 + 10,-9: 0 + 10,-8: 0 + 10,-7: 0 + 10,-6: 0 + 10,-5: 0 + 10,-4: 0 + 10,-3: 0 + 10,-2: 0 + 10,-1: 0 + 11,-16: 0 + 11,-15: 0 + 11,-14: 0 + 11,-13: 0 + 11,-12: 0 + 11,-11: 0 + 11,-10: 0 + 11,-9: 0 + 11,-8: 0 + 11,-7: 0 + 11,-6: 0 + 11,-5: 0 + 11,-4: 0 + 11,-3: 0 + 11,-2: 0 + 11,-1: 0 + 12,-16: 0 + 12,-15: 0 + 12,-14: 0 + 12,-13: 0 + 12,-12: 0 + 12,-11: 0 + 12,-10: 0 + 12,-9: 0 + 12,-8: 0 + 12,-7: 0 + 12,-6: 0 + 12,-5: 0 + 12,-4: 0 + 12,-3: 0 + 12,-2: 0 + 12,-1: 0 + 13,-16: 0 + 13,-15: 0 + 13,-14: 0 + 13,-13: 0 + 13,-12: 0 + 13,-11: 0 + 13,-10: 0 + 13,-9: 0 + 13,-8: 0 + 13,-7: 0 + 13,-6: 0 + 13,-5: 0 + 13,-4: 0 + 13,-3: 0 + 13,-2: 0 + 13,-1: 0 + 14,-16: 0 + 14,-15: 0 + 14,-14: 0 + 14,-13: 0 + 14,-12: 0 + 14,-11: 0 + 14,-10: 0 + 14,-9: 0 + 14,-8: 0 + 14,-7: 0 + 14,-6: 0 + 14,-5: 0 + 14,-4: 0 + 14,-3: 0 + 14,-2: 0 + 14,-1: 0 + 15,-16: 0 + 15,-15: 0 + 15,-14: 0 + 15,-13: 0 + 15,-12: 0 + 15,-11: 0 + 15,-10: 0 + 15,-9: 0 + 15,-8: 0 + 15,-7: 0 + 15,-6: 0 + 15,-5: 0 + 15,-4: 0 + 15,-3: 0 + 15,-2: 0 + 15,-1: 0 + 0,0: 0 + 0,1: 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,0: 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,0: 0 + 2,1: 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 + 3,0: 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 + 4,0: 0 + 4,1: 0 + 4,2: 0 + 4,3: 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 + 5,0: 0 + 5,1: 0 + 5,2: 0 + 5,3: 0 + 5,4: 0 + 5,5: 0 + 5,6: 0 + 5,7: 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 + 6,0: 0 + 6,1: 0 + 6,2: 0 + 6,3: 0 + 6,4: 0 + 6,5: 0 + 6,6: 0 + 6,7: 0 + 6,8: 0 + 6,9: 0 + 6,10: 0 + 6,11: 0 + 6,12: 0 + 6,13: 0 + 6,14: 0 + 6,15: 0 + 7,0: 0 + 7,1: 0 + 7,2: 0 + 7,3: 0 + 7,4: 0 + 7,5: 0 + 7,6: 0 + 7,7: 0 + 7,8: 0 + 7,9: 0 + 7,10: 0 + 7,11: 0 + 7,12: 0 + 7,13: 0 + 7,14: 0 + 7,15: 0 + 8,0: 0 + 8,1: 0 + 8,2: 0 + 8,3: 0 + 8,4: 0 + 8,5: 0 + 8,6: 0 + 8,7: 0 + 8,8: 0 + 8,9: 0 + 8,10: 0 + 8,11: 0 + 8,12: 0 + 8,13: 0 + 8,14: 0 + 8,15: 0 + 9,0: 0 + 9,1: 0 + 9,2: 0 + 9,3: 0 + 9,4: 0 + 9,5: 0 + 9,6: 0 + 9,7: 0 + 9,8: 0 + 9,9: 0 + 9,10: 0 + 9,11: 0 + 9,12: 0 + 9,13: 0 + 9,14: 0 + 9,15: 0 + 10,0: 0 + 10,1: 0 + 10,2: 0 + 10,3: 0 + 10,4: 0 + 10,5: 0 + 10,6: 0 + 10,7: 0 + 10,8: 0 + 10,9: 0 + 10,10: 0 + 10,11: 0 + 10,12: 0 + 10,13: 0 + 10,14: 0 + 10,15: 0 + 11,0: 0 + 11,1: 0 + 11,2: 0 + 11,3: 0 + 11,4: 0 + 11,5: 0 + 11,6: 0 + 11,7: 0 + 11,8: 0 + 11,9: 0 + 11,10: 0 + 11,11: 0 + 11,12: 0 + 11,13: 0 + 11,14: 0 + 11,15: 0 + 12,0: 0 + 12,1: 0 + 12,2: 0 + 12,3: 0 + 12,4: 0 + 12,5: 0 + 12,6: 0 + 12,7: 0 + 12,8: 0 + 12,9: 0 + 12,10: 0 + 12,11: 0 + 12,12: 0 + 12,13: 0 + 12,14: 0 + 12,15: 0 + 13,0: 0 + 13,1: 0 + 13,2: 0 + 13,3: 0 + 13,4: 0 + 13,5: 0 + 13,6: 0 + 13,7: 0 + 13,8: 0 + 13,9: 0 + 13,10: 0 + 13,11: 0 + 13,12: 0 + 13,13: 0 + 13,14: 0 + 13,15: 0 + 14,0: 0 + 14,1: 0 + 14,2: 0 + 14,3: 0 + 14,4: 0 + 14,5: 0 + 14,6: 0 + 14,7: 0 + 14,8: 0 + 14,9: 0 + 14,10: 0 + 14,11: 0 + 14,12: 0 + 14,13: 0 + 14,14: 0 + 14,15: 0 + 15,0: 0 + 15,1: 0 + 15,2: 0 + 15,3: 0 + 15,4: 0 + 15,5: 0 + 15,6: 0 + 15,7: 0 + 15,8: 0 + 15,9: 0 + 15,10: 0 + 15,11: 0 + 15,12: 0 + 15,13: 0 + 15,14: 0 + 15,15: 0 + 16,0: 0 + 16,1: 0 + 16,2: 0 + 16,3: 0 + 16,4: 0 + 16,5: 0 + 16,6: 0 + 16,7: 0 + 16,8: 0 + 16,9: 0 + 16,10: 0 + 16,11: 0 + 16,12: 0 + 16,13: 0 + 16,14: 0 + 16,15: 0 + 17,0: 0 + 17,1: 0 + 17,2: 0 + 17,3: 0 + 17,4: 0 + 17,5: 0 + 17,6: 0 + 17,7: 0 + 17,8: 0 + 17,9: 0 + 17,10: 0 + 17,11: 0 + 17,12: 0 + 17,13: 0 + 17,14: 0 + 17,15: 0 + 18,0: 0 + 18,1: 0 + 18,2: 0 + 18,3: 0 + 18,4: 0 + 18,5: 0 + 18,6: 0 + 18,7: 0 + 18,8: 0 + 18,9: 0 + 18,10: 0 + 18,11: 0 + 18,12: 0 + 18,13: 0 + 18,14: 0 + 19,0: 0 + 19,1: 0 + 19,2: 0 + 19,3: 0 + 19,4: 0 + 19,5: 0 + 19,6: 0 + 19,7: 0 + 19,8: 0 + 19,9: 0 + 19,10: 0 + 19,11: 0 + 19,12: 0 + 19,13: 0 + 19,14: 0 + 19,15: 0 + 20,0: 0 + 20,1: 0 + 20,2: 0 + 20,3: 0 + 20,4: 0 + 20,5: 0 + 20,6: 0 + 20,7: 0 + 20,8: 0 + 20,9: 0 + 20,10: 0 + 20,11: 0 + 20,12: 0 + 20,13: 0 + 20,14: 0 + 20,15: 0 + 21,0: 0 + 21,1: 0 + 21,2: 0 + 21,3: 0 + 21,4: 0 + 21,5: 0 + 21,6: 0 + 21,7: 0 + 21,8: 0 + 21,9: 0 + 21,10: 0 + 21,11: 0 + 21,12: 0 + 21,13: 0 + 21,14: 0 + 21,15: 0 + 22,0: 0 + 22,1: 0 + 22,2: 0 + 22,3: 0 + 22,4: 0 + 22,5: 0 + 22,6: 0 + 22,7: 0 + 22,8: 0 + 22,9: 0 + 22,10: 0 + 22,11: 0 + 22,12: 0 + 22,13: 0 + 22,14: 0 + 22,15: 0 + 23,0: 0 + 23,1: 0 + 23,2: 0 + 23,3: 0 + 23,4: 0 + 23,5: 0 + 23,6: 0 + 23,7: 0 + 23,8: 0 + 23,9: 0 + 23,10: 0 + 23,11: 0 + 23,12: 0 + 23,13: 0 + 23,14: 0 + 23,15: 0 + 24,0: 0 + 24,1: 0 + 24,2: 0 + 24,3: 0 + 24,4: 0 + 24,5: 0 + 24,6: 0 + 24,7: 0 + 24,8: 0 + 24,9: 0 + 24,10: 0 + 24,11: 0 + 24,12: 0 + 24,13: 0 + 24,14: 0 + 25,0: 0 + 25,1: 0 + 25,2: 0 + 25,3: 0 + 25,4: 0 + 25,5: 0 + 25,6: 0 + 25,7: 0 + 25,8: 0 + 25,9: 0 + 25,10: 0 + 25,11: 0 + 25,12: 0 + 25,13: 0 + 25,14: 0 + 26,0: 0 + 26,1: 0 + 26,2: 0 + 26,3: 0 + 26,4: 0 + 26,5: 0 + 26,6: 0 + 26,7: 0 + 26,8: 0 + 26,9: 0 + 26,10: 0 + 26,11: 0 + 26,12: 0 + 26,13: 0 + 26,14: 0 + 27,0: 0 + 27,1: 0 + 27,2: 0 + 27,3: 0 + 27,4: 0 + 27,5: 0 + 27,6: 0 + 27,7: 0 + 27,8: 0 + 27,9: 0 + 27,10: 0 + 27,11: 0 + 27,12: 0 + 27,13: 0 + 27,14: 0 + 28,0: 0 + 28,1: 0 + 28,2: 0 + 28,3: 0 + 28,4: 0 + 28,5: 0 + 28,6: 0 + 28,7: 0 + 28,8: 0 + 28,9: 0 + 28,10: 0 + 28,11: 0 + 28,12: 0 + 28,13: 0 + 28,14: 0 + 29,0: 0 + 29,1: 0 + 29,2: 0 + 29,3: 0 + 29,4: 0 + 29,5: 0 + 29,6: 0 + 29,7: 0 + 29,8: 0 + 29,9: 0 + 29,10: 0 + 29,11: 0 + 29,12: 0 + 29,13: 0 + 29,14: 0 + 30,0: 0 + 30,1: 0 + 30,2: 0 + 30,3: 0 + 30,4: 0 + 30,5: 0 + 30,6: 0 + 30,7: 0 + 30,8: 0 + 30,9: 0 + 30,10: 0 + 30,11: 0 + 30,12: 0 + 30,13: 0 + 30,14: 0 + 30,15: 0 + 31,0: 0 + 31,1: 0 + 31,2: 0 + 31,3: 0 + 31,4: 0 + 31,5: 0 + 31,6: 0 + 31,7: 0 + 31,8: 0 + 31,9: 0 + 31,10: 0 + 31,11: 0 + 31,12: 0 + 31,13: 0 + 31,14: 0 + 31,15: 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,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 + 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,18: 0 + 4,19: 0 + 4,20: 0 + 4,21: 0 + 4,22: 0 + 4,23: 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 + 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 + 6,16: 0 + 6,17: 0 + 6,18: 0 + 6,19: 0 + 6,20: 0 + 6,21: 0 + 6,22: 0 + 6,23: 0 + 6,24: 0 + 6,25: 0 + 6,26: 0 + 6,27: 0 + 6,28: 0 + 6,29: 0 + 6,30: 0 + 6,31: 0 + 7,16: 0 + 7,17: 0 + 7,18: 0 + 7,19: 0 + 7,20: 0 + 7,21: 0 + 7,22: 0 + 7,23: 0 + 7,24: 0 + 7,25: 0 + 7,26: 0 + 7,27: 0 + 7,28: 0 + 7,29: 0 + 7,30: 0 + 7,31: 0 + 8,16: 0 + 8,17: 0 + 8,18: 0 + 8,19: 0 + 8,20: 0 + 8,21: 0 + 8,22: 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,16: 0 + 9,17: 0 + 9,18: 0 + 9,19: 0 + 9,20: 0 + 9,21: 0 + 9,22: 0 + 9,23: 0 + 9,24: 0 + 9,25: 0 + 9,26: 0 + 9,27: 0 + 9,28: 0 + 9,29: 0 + 9,30: 0 + 9,31: 0 + 10,16: 0 + 10,17: 0 + 10,18: 0 + 10,19: 0 + 10,20: 0 + 10,21: 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 + 11,16: 0 + 11,17: 0 + 11,18: 0 + 11,19: 0 + 11,20: 0 + 11,21: 0 + 11,22: 0 + 12,16: 0 + 12,17: 0 + 12,18: 0 + 12,19: 0 + 12,20: 0 + 12,21: 0 + 12,22: 0 + 13,16: 0 + 13,17: 0 + 13,18: 0 + 13,19: 0 + 13,20: 0 + 13,21: 0 + 13,22: 0 + 14,16: 0 + 14,17: 0 + 14,18: 0 + 14,19: 0 + 14,20: 0 + 14,21: 0 + 14,22: 0 + 15,16: 0 + -32,0: 0 + -32,1: 0 + -32,2: 0 + -32,3: 0 + -32,4: 0 + -32,5: 0 + -32,6: 0 + -32,7: 0 + -32,8: 0 + -32,9: 0 + -32,10: 0 + -32,11: 0 + -32,12: 0 + -32,13: 0 + -32,14: 0 + -32,15: 0 + -31,0: 0 + -31,1: 0 + -31,2: 0 + -31,3: 0 + -31,4: 0 + -31,5: 0 + -31,6: 0 + -31,7: 0 + -31,8: 0 + -31,9: 0 + -31,10: 0 + -31,11: 0 + -31,12: 0 + -31,13: 0 + -31,14: 0 + -31,15: 0 + -30,0: 0 + -30,1: 0 + -30,2: 0 + -30,3: 0 + -30,4: 0 + -30,5: 0 + -30,6: 0 + -30,7: 0 + -30,8: 0 + -30,9: 0 + -30,10: 0 + -30,11: 0 + -30,12: 0 + -30,13: 0 + -30,14: 0 + -30,15: 0 + -29,0: 0 + -29,1: 0 + -29,2: 0 + -29,3: 0 + -29,4: 0 + -29,5: 0 + -29,6: 0 + -29,7: 0 + -29,8: 0 + -29,9: 0 + -29,10: 0 + -29,11: 0 + -29,12: 0 + -29,13: 0 + -29,14: 0 + -29,15: 0 + -28,0: 0 + -28,1: 0 + -28,2: 0 + -28,3: 0 + -28,4: 0 + -28,5: 0 + -28,6: 0 + -28,7: 0 + -28,8: 0 + -28,9: 0 + -28,10: 0 + -28,11: 0 + -28,12: 0 + -28,13: 0 + -28,14: 0 + -28,15: 0 + -27,0: 0 + -27,1: 0 + -27,2: 0 + -27,3: 0 + -27,4: 0 + -27,5: 0 + -27,6: 0 + -27,7: 0 + -27,8: 0 + -27,9: 0 + -27,10: 0 + -27,11: 0 + -27,12: 0 + -27,13: 0 + -27,14: 0 + -27,15: 0 + -26,0: 0 + -26,1: 0 + -26,2: 0 + -26,3: 0 + -26,4: 0 + -26,5: 0 + -26,6: 0 + -26,7: 0 + -26,8: 0 + -26,9: 0 + -26,10: 0 + -26,11: 0 + -26,12: 0 + -26,13: 0 + -26,14: 0 + -26,15: 0 + -25,0: 0 + -25,1: 0 + -25,2: 0 + -25,3: 0 + -25,4: 0 + -25,5: 0 + -25,6: 0 + -25,7: 0 + -25,8: 0 + -25,9: 0 + -25,10: 0 + -25,11: 0 + -25,12: 0 + -25,13: 0 + -25,14: 0 + -25,15: 0 + -24,0: 0 + -24,1: 0 + -24,2: 0 + -24,3: 0 + -24,4: 0 + -24,5: 0 + -24,6: 0 + -24,7: 0 + -24,8: 0 + -24,9: 0 + -24,10: 0 + -24,11: 0 + -24,12: 0 + -24,13: 0 + -24,14: 0 + -24,15: 0 + -23,0: 0 + -23,1: 0 + -23,2: 0 + -23,3: 0 + -23,4: 0 + -23,5: 0 + -23,6: 0 + -23,7: 0 + -23,8: 0 + -23,9: 0 + -23,10: 0 + -23,11: 0 + -23,12: 0 + -23,13: 0 + -23,14: 0 + -23,15: 0 + -22,0: 0 + -22,1: 0 + -22,2: 0 + -22,3: 0 + -22,4: 0 + -22,5: 0 + -22,6: 0 + -22,7: 0 + -22,8: 0 + -22,9: 0 + -22,10: 0 + -22,11: 0 + -22,12: 0 + -22,13: 0 + -22,14: 0 + -22,15: 0 + -21,0: 0 + -21,1: 0 + -21,2: 0 + -21,3: 0 + -21,4: 0 + -21,5: 0 + -21,6: 0 + -21,7: 0 + -21,8: 0 + -21,9: 0 + -21,10: 0 + -21,11: 0 + -21,12: 0 + -21,13: 0 + -21,14: 0 + -21,15: 0 + -20,0: 0 + -20,1: 0 + -20,2: 0 + -20,3: 0 + -20,4: 0 + -20,5: 0 + -20,6: 0 + -20,7: 0 + -20,8: 0 + -20,9: 0 + -20,10: 0 + -20,11: 0 + -20,12: 0 + -20,13: 0 + -20,14: 0 + -20,15: 0 + -19,0: 0 + -19,1: 0 + -19,2: 0 + -19,3: 0 + -19,4: 0 + -19,5: 0 + -19,6: 0 + -19,7: 0 + -19,8: 0 + -19,9: 0 + -19,10: 0 + -19,11: 0 + -19,12: 0 + -19,13: 0 + -19,14: 0 + -19,15: 0 + -18,0: 0 + -18,1: 0 + -18,2: 0 + -18,3: 0 + -18,4: 0 + -18,5: 0 + -18,6: 0 + -18,7: 0 + -18,8: 0 + -18,9: 0 + -18,10: 0 + -18,11: 0 + -18,12: 0 + -18,13: 0 + -18,14: 0 + -18,15: 0 + -17,0: 0 + -17,1: 0 + -17,2: 0 + -17,3: 0 + -17,4: 0 + -17,5: 0 + -17,6: 0 + -17,7: 0 + -17,8: 0 + -17,9: 0 + -17,10: 0 + -17,11: 0 + -17,12: 0 + -17,13: 0 + -17,14: 0 + -17,15: 0 + 16,-16: 0 + 16,-15: 0 + 16,-14: 0 + 16,-13: 0 + 16,-12: 0 + 16,-11: 0 + 16,-10: 0 + 16,-9: 0 + 16,-8: 0 + 16,-7: 0 + 16,-6: 0 + 16,-5: 0 + 16,-4: 0 + 16,-3: 0 + 16,-2: 0 + 16,-1: 0 + 17,-16: 0 + 17,-15: 0 + 17,-14: 0 + 17,-13: 0 + 17,-12: 0 + 17,-11: 0 + 17,-10: 0 + 17,-9: 0 + 17,-8: 0 + 17,-7: 0 + 17,-6: 0 + 17,-5: 0 + 17,-4: 0 + 17,-3: 0 + 17,-2: 0 + 17,-1: 0 + 18,-16: 0 + 18,-15: 0 + 18,-14: 0 + 18,-13: 0 + 18,-12: 0 + 18,-11: 0 + 18,-10: 0 + 18,-9: 0 + 18,-8: 0 + 18,-7: 0 + 18,-6: 0 + 18,-5: 0 + 18,-4: 0 + 18,-3: 0 + 18,-2: 0 + 18,-1: 0 + 19,-16: 0 + 19,-15: 0 + 19,-14: 0 + 19,-13: 0 + 19,-12: 0 + 19,-11: 0 + 19,-10: 0 + 19,-9: 0 + 19,-8: 0 + 19,-7: 0 + 19,-6: 0 + 19,-5: 0 + 19,-4: 0 + 19,-3: 0 + 19,-2: 0 + 19,-1: 0 + 20,-16: 0 + 20,-15: 0 + 20,-14: 0 + 20,-13: 0 + 20,-12: 0 + 20,-11: 0 + 20,-10: 0 + 20,-9: 0 + 20,-8: 0 + 20,-7: 0 + 20,-6: 0 + 20,-5: 0 + 20,-4: 0 + 20,-3: 0 + 20,-2: 0 + 20,-1: 0 + 21,-16: 0 + 21,-15: 0 + 21,-14: 0 + 21,-13: 0 + 21,-12: 0 + 21,-11: 0 + 21,-10: 0 + 21,-9: 0 + 21,-8: 0 + 21,-7: 0 + 21,-6: 0 + 21,-5: 0 + 21,-4: 0 + 21,-3: 0 + 21,-2: 0 + 21,-1: 0 + 22,-16: 0 + 22,-15: 0 + 22,-14: 0 + 22,-13: 0 + 22,-12: 0 + 22,-11: 0 + 22,-10: 0 + 22,-9: 0 + 22,-8: 0 + 22,-7: 0 + 22,-6: 0 + 22,-5: 0 + 22,-4: 0 + 22,-3: 0 + 22,-2: 0 + 22,-1: 0 + 23,-16: 0 + 23,-15: 0 + 23,-14: 0 + 23,-13: 0 + 23,-12: 0 + 23,-11: 0 + 23,-10: 0 + 23,-9: 0 + 23,-8: 0 + 23,-7: 0 + 23,-6: 0 + 23,-5: 0 + 23,-4: 0 + 23,-3: 0 + 23,-2: 0 + 23,-1: 0 + 24,-16: 0 + 24,-15: 0 + 24,-14: 0 + 24,-13: 0 + 24,-12: 0 + 24,-11: 0 + 24,-10: 0 + 24,-9: 0 + 24,-8: 0 + 24,-7: 0 + 24,-6: 0 + 24,-5: 0 + 24,-4: 0 + 24,-3: 0 + 24,-2: 0 + 24,-1: 0 + 25,-16: 0 + 25,-15: 0 + 25,-14: 0 + 25,-13: 0 + 25,-12: 0 + 25,-11: 0 + 25,-10: 0 + 25,-9: 0 + 25,-8: 0 + 25,-7: 0 + 25,-6: 0 + 25,-5: 0 + 25,-4: 0 + 25,-3: 0 + 25,-2: 0 + 25,-1: 0 + 26,-16: 0 + 26,-15: 0 + 26,-14: 0 + 26,-13: 0 + 26,-12: 0 + 26,-11: 0 + 26,-10: 0 + 26,-9: 0 + 26,-8: 0 + 26,-7: 0 + 26,-6: 0 + 26,-5: 0 + 26,-4: 0 + 26,-3: 0 + 26,-2: 0 + 26,-1: 0 + 27,-16: 0 + 27,-15: 0 + 27,-14: 0 + 27,-13: 0 + 27,-12: 0 + 27,-11: 0 + 27,-10: 0 + 27,-9: 0 + 27,-8: 0 + 27,-7: 0 + 27,-6: 0 + 27,-5: 0 + 27,-4: 0 + 27,-3: 0 + 27,-2: 0 + 27,-1: 0 + 28,-16: 0 + 28,-15: 0 + 28,-14: 0 + 28,-13: 0 + 28,-12: 0 + 28,-11: 0 + 28,-10: 0 + 28,-9: 0 + 28,-8: 0 + 28,-7: 0 + 28,-6: 0 + 28,-5: 0 + 28,-4: 0 + 28,-3: 0 + 28,-2: 0 + 28,-1: 0 + 29,-9: 0 + 29,-8: 0 + 29,-7: 0 + 29,-6: 0 + 29,-5: 0 + 29,-4: 0 + 29,-3: 0 + 29,-2: 0 + 29,-1: 0 + 30,-9: 0 + 30,-8: 0 + 30,-7: 0 + 30,-6: 0 + 30,-5: 0 + 30,-4: 0 + 30,-3: 0 + 30,-2: 0 + 30,-1: 0 + 31,-9: 0 + 31,-8: 0 + 31,-7: 0 + 31,-6: 0 + 31,-5: 0 + 31,-4: 0 + 31,-3: 0 + 31,-2: 0 + 31,-1: 0 + 0,-29: 0 + 0,-28: 0 + 0,-27: 0 + 0,-26: 0 + 0,-25: 0 + 0,-24: 0 + 0,-23: 0 + 0,-22: 0 + 0,-21: 0 + 0,-20: 0 + 0,-19: 0 + 0,-18: 0 + 0,-17: 0 + 1,-25: 0 + 1,-24: 0 + 1,-23: 0 + 1,-22: 0 + 1,-21: 0 + 1,-20: 0 + 1,-19: 0 + 1,-18: 0 + 1,-17: 0 + 2,-25: 0 + 2,-24: 0 + 2,-23: 0 + 2,-22: 0 + 2,-21: 0 + 2,-20: 0 + 2,-19: 0 + 2,-18: 0 + 2,-17: 0 + 3,-25: 0 + 3,-24: 0 + 3,-23: 0 + 3,-22: 0 + 3,-21: 0 + 3,-20: 0 + 3,-19: 0 + 3,-18: 0 + 3,-17: 0 + 4,-25: 0 + 4,-24: 0 + 4,-23: 0 + 4,-22: 0 + 4,-21: 0 + 4,-20: 0 + 4,-19: 0 + 4,-18: 0 + 4,-17: 0 + 5,-25: 0 + 5,-24: 0 + 5,-23: 0 + 5,-22: 0 + 5,-21: 0 + 5,-20: 0 + 5,-19: 0 + 5,-18: 0 + 5,-17: 0 + 6,-23: 0 + 6,-22: 0 + 6,-21: 0 + 6,-20: 0 + 6,-19: 0 + 6,-18: 0 + 6,-17: 0 + 7,-22: 0 + 7,-21: 0 + 7,-20: 0 + 7,-19: 0 + 7,-18: 0 + 7,-17: 0 + 8,-22: 0 + 8,-21: 0 + 8,-20: 0 + 8,-19: 0 + 8,-18: 0 + 8,-17: 0 + 9,-22: 0 + 9,-21: 0 + 9,-20: 0 + 9,-19: 0 + 9,-18: 0 + 9,-17: 0 + 10,-22: 0 + 10,-21: 0 + 10,-20: 0 + 10,-19: 0 + 10,-18: 0 + 10,-17: 0 + 11,-22: 0 + 11,-21: 0 + 11,-20: 0 + 11,-19: 0 + 11,-18: 0 + 11,-17: 0 + 12,-22: 0 + 12,-21: 0 + 12,-20: 0 + 12,-19: 0 + 12,-18: 0 + 12,-17: 0 + 13,-27: 0 + 13,-26: 0 + 13,-25: 0 + 13,-24: 0 + 13,-23: 0 + 13,-22: 0 + 13,-21: 0 + 13,-20: 0 + 13,-19: 0 + 13,-18: 0 + 13,-17: 0 + 14,-27: 0 + 14,-26: 0 + 14,-25: 0 + 14,-24: 0 + 14,-23: 0 + 14,-22: 0 + 14,-21: 0 + 14,-20: 0 + 14,-19: 0 + 14,-18: 0 + 14,-17: 0 + 15,-27: 0 + 15,-26: 0 + 15,-25: 0 + 15,-24: 0 + 15,-23: 0 + 15,-22: 0 + 15,-21: 0 + 15,-20: 0 + 15,-19: 0 + 15,-18: 0 + 15,-17: 0 + 16,-27: 0 + 16,-26: 0 + 16,-25: 0 + 16,-24: 0 + 16,-23: 0 + 16,-22: 0 + 16,-21: 0 + 16,-20: 0 + 16,-19: 0 + 16,-18: 0 + 16,-17: 0 + 17,-27: 0 + 17,-26: 0 + 17,-25: 0 + 17,-24: 0 + 17,-23: 0 + 17,-22: 0 + 17,-21: 0 + 17,-20: 0 + 17,-19: 0 + 17,-18: 0 + 17,-17: 0 + 18,-27: 0 + 18,-26: 0 + 18,-25: 0 + 18,-24: 0 + 18,-23: 0 + 18,-22: 0 + 18,-21: 0 + 18,-20: 0 + 18,-19: 0 + 18,-18: 0 + 18,-17: 0 + 19,-27: 0 + 19,-26: 0 + 19,-25: 0 + 19,-24: 0 + 19,-23: 0 + 19,-22: 0 + 19,-21: 0 + 19,-20: 0 + 19,-19: 0 + 19,-18: 0 + 19,-17: 0 + 20,-27: 0 + 20,-26: 0 + 20,-25: 0 + 20,-24: 0 + 20,-23: 0 + 20,-22: 0 + 20,-21: 0 + 20,-20: 0 + 20,-19: 0 + 20,-18: 0 + 20,-17: 0 + 21,-27: 0 + 21,-26: 0 + 21,-25: 0 + 21,-24: 0 + 21,-23: 0 + 21,-22: 0 + 21,-21: 0 + 21,-20: 0 + 21,-19: 0 + 21,-18: 0 + 21,-17: 0 + 22,-27: 0 + 22,-26: 0 + 22,-25: 0 + 22,-24: 0 + 22,-23: 0 + 22,-22: 0 + 22,-21: 0 + 22,-20: 0 + 22,-19: 0 + 22,-18: 0 + 22,-17: 0 + 23,-27: 0 + 23,-26: 0 + 23,-25: 0 + 23,-24: 0 + 23,-23: 0 + 23,-22: 0 + 23,-21: 0 + 23,-20: 0 + 23,-19: 0 + 23,-18: 0 + 23,-17: 0 + 24,-20: 0 + 24,-19: 0 + 24,-18: 0 + 24,-17: 0 + 25,-20: 0 + 25,-19: 0 + 25,-18: 0 + 25,-17: 0 + 26,-20: 0 + 26,-19: 0 + 26,-18: 0 + 26,-17: 0 + 27,-20: 0 + 27,-19: 0 + 27,-18: 0 + 27,-17: 0 + 28,-20: 0 + 28,-19: 0 + 28,-18: 0 + 28,-17: 0 + -16,16: 0 + -16,17: 0 + -16,18: 0 + -16,19: 0 + -16,20: 0 + -16,21: 0 + -16,22: 0 + -16,23: 0 + -16,24: 0 + -16,25: 0 + -16,26: 0 + -15,16: 0 + -15,17: 0 + -15,18: 0 + -15,19: 0 + -15,20: 0 + -15,21: 0 + -15,22: 0 + -15,23: 0 + -15,24: 0 + -15,25: 0 + -15,26: 0 + -14,16: 0 + -14,17: 0 + -14,18: 0 + -14,19: 0 + -14,20: 0 + -14,21: 0 + -14,22: 0 + -14,23: 0 + -14,24: 0 + -14,25: 0 + -14,26: 0 + -13,16: 0 + -13,17: 0 + -13,18: 0 + -13,19: 0 + -13,20: 0 + -13,21: 0 + -13,22: 0 + -13,23: 0 + -13,24: 0 + -13,25: 0 + -13,26: 0 + -12,16: 0 + -12,17: 0 + -12,18: 0 + -12,19: 0 + -12,20: 0 + -12,21: 0 + -12,22: 0 + -12,23: 0 + -12,24: 0 + -12,25: 0 + -12,26: 0 + -11,16: 0 + -11,17: 0 + -11,18: 0 + -11,19: 0 + -11,20: 0 + -11,21: 0 + -11,22: 0 + -11,23: 0 + -11,24: 0 + -11,25: 0 + -11,26: 0 + -10,16: 0 + -10,17: 0 + -10,18: 0 + -10,19: 0 + -10,20: 0 + -10,21: 0 + -10,22: 0 + -10,23: 0 + -10,24: 0 + -10,25: 0 + -10,26: 0 + -9,16: 0 + -9,17: 0 + -9,18: 0 + -9,19: 0 + -9,20: 0 + -9,21: 0 + -9,22: 0 + -9,23: 0 + -9,24: 0 + -9,25: 0 + -9,26: 0 + -8,16: 0 + -8,17: 0 + -8,18: 0 + -8,19: 0 + -8,20: 0 + -8,21: 0 + -8,22: 0 + -8,23: 0 + -8,24: 0 + -8,25: 0 + -8,26: 0 + -7,16: 0 + -7,17: 0 + -7,18: 0 + -7,19: 0 + -7,20: 0 + -7,21: 0 + -7,22: 0 + -7,23: 0 + -7,24: 0 + -7,25: 0 + -7,26: 0 + -6,16: 0 + -6,17: 0 + -6,18: 0 + -6,19: 0 + -6,20: 0 + -6,21: 0 + -6,22: 0 + -6,23: 0 + -6,24: 0 + -6,25: 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 + -4,16: 0 + -4,17: 0 + -4,18: 0 + -4,19: 0 + -4,20: 0 + -4,21: 0 + -4,22: 0 + -4,23: 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 + -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 + -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 + -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 + -17,16: 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 + -3,32: 0 + -2,32: 0 + -2,33: 0 + -1,32: 0 + -1,33: 0 + 16,16: 0 + 17,16: 0 + 18,17: 0 + 18,18: 0 + 18,19: 0 + 18,20: 0 + 18,21: 0 + 19,16: 0 + 19,17: 0 + 19,18: 0 + 19,19: 0 + 19,20: 0 + 19,21: 0 + 20,16: 0 + 20,17: 0 + 20,18: 0 + 20,19: 0 + 20,20: 0 + 20,21: 0 + 21,16: 0 + 21,17: 0 + 21,18: 0 + 21,19: 0 + 21,20: 0 + 21,21: 0 + 22,16: 0 + 22,17: 0 + 22,18: 0 + 22,19: 0 + 22,20: 0 + 22,21: 0 + 23,16: 0 + 23,17: 0 + 23,18: 0 + 23,19: 0 + 23,20: 0 + 23,21: 0 + 24,17: 0 + 24,18: 0 + 24,19: 0 + 24,20: 0 + 24,21: 0 + 0,32: 0 + 0,33: 0 + 1,32: 0 + 1,33: 0 + 2,32: 0 + 2,33: 0 + 3,32: 0 + 3,33: 0 + 4,32: 0 + 4,33: 0 + 5,32: 0 + 5,33: 0 + 6,32: 0 + 6,33: 0 + 7,32: 0 + 7,33: 0 + 8,32: 0 + 8,33: 0 + 9,32: 0 + 32,0: 0 + 32,1: 0 + 32,2: 0 + 32,3: 0 + 32,4: 0 + 32,5: 0 + 32,6: 0 + 32,7: 0 + 32,8: 0 + 32,9: 0 + 32,10: 0 + 32,11: 0 + 32,12: 0 + 32,13: 0 + 32,14: 0 + 32,15: 0 + 33,0: 0 + 33,1: 0 + 33,2: 0 + 33,3: 0 + 33,4: 0 + 33,5: 0 + 33,6: 0 + 33,7: 0 + 33,8: 0 + 33,9: 0 + 33,10: 0 + 33,11: 0 + 33,12: 0 + 33,13: 0 + 33,14: 0 + 33,15: 0 + 34,0: 0 + 34,1: 0 + 34,2: 0 + 34,3: 0 + 34,4: 0 + 34,5: 0 + 34,6: 0 + 34,7: 0 + 34,8: 0 + 34,9: 0 + 34,10: 0 + 34,11: 0 + 34,12: 0 + 34,13: 0 + 34,14: 0 + 34,15: 0 + 35,0: 0 + 35,1: 0 + 35,2: 0 + 35,3: 0 + 35,4: 0 + 35,5: 0 + 35,6: 0 + 35,7: 0 + 35,8: 0 + 35,9: 0 + 35,10: 0 + 35,11: 0 + 35,12: 0 + 35,13: 0 + 35,14: 0 + 35,15: 0 + 36,0: 0 + 36,1: 0 + 36,2: 0 + 36,3: 0 + 36,4: 0 + 36,5: 0 + 36,6: 0 + 36,7: 0 + 36,8: 0 + 36,9: 0 + 36,10: 0 + 36,11: 0 + 36,12: 0 + 36,13: 0 + 36,14: 0 + 36,15: 0 + 37,0: 0 + 37,1: 0 + 37,2: 0 + 37,3: 0 + 37,4: 0 + 37,5: 0 + 37,6: 0 + 37,7: 0 + 37,8: 0 + 37,9: 0 + 37,10: 0 + 37,11: 0 + 37,12: 0 + 37,13: 0 + 37,14: 0 + 38,0: 0 + 38,1: 0 + 38,2: 0 + 38,3: 0 + 38,4: 0 + 38,5: 0 + 38,6: 0 + 38,7: 0 + 38,8: 0 + 38,9: 0 + 38,10: 0 + 38,11: 0 + 38,12: 0 + 38,13: 0 + 38,14: 0 + 39,0: 0 + 39,1: 0 + 39,2: 0 + 39,3: 0 + 39,4: 0 + 39,5: 0 + 39,6: 0 + 39,7: 0 + 39,8: 0 + 39,9: 0 + 39,10: 0 + 39,11: 0 + 39,12: 0 + 39,13: 0 + 39,14: 0 + 40,0: 0 + 40,1: 0 + 40,2: 0 + 40,3: 0 + 40,4: 0 + 40,5: 0 + 40,6: 0 + 40,7: 0 + 40,8: 0 + 40,9: 0 + 40,10: 0 + 40,11: 0 + 40,12: 0 + 40,13: 0 + 40,14: 0 + 41,0: 0 + 41,1: 0 + 41,2: 0 + 41,3: 0 + 41,4: 0 + 41,5: 0 + 41,6: 0 + 41,7: 0 + 41,8: 0 + 41,9: 0 + 41,10: 0 + 41,11: 0 + 41,12: 0 + 41,13: 0 + 41,14: 0 + 42,0: 0 + 42,1: 0 + 42,2: 0 + 42,3: 0 + 42,4: 0 + 42,5: 0 + 42,6: 0 + 42,7: 0 + 42,8: 0 + 42,9: 0 + 42,10: 0 + 42,11: 0 + 42,12: 0 + 42,13: 0 + 42,14: 0 + 43,0: 0 + 43,1: 0 + 43,2: 0 + 43,3: 0 + 43,4: 0 + 43,5: 0 + 43,6: 0 + 43,7: 0 + 43,8: 0 + 43,9: 0 + 43,10: 0 + 43,11: 0 + 43,12: 0 + 43,13: 0 + 43,14: 0 + 44,0: 0 + 44,1: 0 + 44,2: 0 + 44,3: 0 + 44,4: 0 + 44,5: 0 + 44,6: 0 + 44,7: 0 + 44,8: 0 + 44,9: 0 + 44,10: 0 + 44,11: 0 + 44,12: 0 + 44,13: 0 + 44,14: 0 + 45,0: 0 + 45,1: 0 + 45,2: 0 + 45,3: 0 + 45,4: 0 + 45,5: 0 + 45,6: 0 + 45,7: 0 + 45,8: 0 + 45,9: 0 + 45,10: 0 + 46,0: 0 + 46,1: 0 + 46,2: 0 + 46,3: 0 + 46,4: 0 + 46,5: 0 + 47,0: 0 + 47,1: 0 + 47,2: 0 + 47,3: 0 + 47,4: 0 + 47,5: 0 + 48,0: 0 + 48,1: 0 + 48,2: 0 + 48,3: 0 + 48,4: 0 + 48,5: 0 + 49,0: 0 + 49,1: 0 + 49,2: 0 + 49,3: 0 + 49,4: 0 + 49,5: 0 + 50,0: 0 + 50,1: 0 + 50,2: 0 + 50,3: 0 + 50,4: 0 + 50,5: 0 + 51,0: 0 + 51,1: 0 + 51,2: 0 + 51,3: 0 + 51,4: 0 + 51,5: 0 + 32,-9: 0 + 32,-8: 0 + 32,-7: 0 + 32,-6: 0 + 32,-5: 0 + 32,-4: 0 + 32,-3: 0 + 32,-2: 0 + 32,-1: 0 + 33,-9: 0 + 33,-8: 0 + 33,-7: 0 + 33,-6: 0 + 33,-5: 0 + 33,-4: 0 + 33,-3: 0 + 33,-2: 0 + 33,-1: 0 + 34,-9: 0 + 34,-8: 0 + 34,-7: 0 + 34,-6: 0 + 34,-5: 0 + 34,-4: 0 + 34,-3: 0 + 34,-2: 0 + 34,-1: 0 + 35,-9: 0 + 35,-8: 0 + 35,-7: 0 + 35,-6: 0 + 35,-5: 0 + 35,-4: 0 + 35,-3: 0 + 35,-2: 0 + 35,-1: 0 + 36,-9: 0 + 36,-8: 0 + 36,-7: 0 + 36,-6: 0 + 36,-5: 0 + 36,-4: 0 + 36,-3: 0 + 36,-2: 0 + 36,-1: 0 + 37,-9: 0 + 37,-8: 0 + 37,-7: 0 + 37,-6: 0 + 37,-5: 0 + 37,-4: 0 + 37,-3: 0 + 37,-2: 0 + 37,-1: 0 + 38,-9: 0 + 38,-8: 0 + 38,-7: 0 + 38,-6: 0 + 38,-5: 0 + 38,-4: 0 + 38,-3: 0 + 38,-2: 0 + 38,-1: 0 + 39,-9: 0 + 39,-8: 0 + 39,-7: 0 + 39,-6: 0 + 39,-5: 0 + 39,-4: 0 + 39,-3: 0 + 39,-2: 0 + 39,-1: 0 + 40,-6: 0 + 40,-5: 0 + 40,-4: 0 + 40,-3: 0 + 40,-2: 0 + 40,-1: 0 + 41,-6: 0 + 41,-5: 0 + 41,-4: 0 + 41,-3: 0 + 41,-2: 0 + 41,-1: 0 + 42,-6: 0 + 42,-5: 0 + 42,-4: 0 + 42,-3: 0 + 42,-2: 0 + 42,-1: 0 + 43,-6: 0 + 43,-5: 0 + 43,-4: 0 + 43,-3: 0 + 43,-2: 0 + 43,-1: 0 + 44,-6: 0 + 44,-5: 0 + 44,-4: 0 + 44,-3: 0 + 44,-2: 0 + 44,-1: 0 + 46,-8: 0 + 46,-7: 0 + 46,-6: 0 + 46,-5: 0 + 46,-4: 0 + 46,-3: 0 + 46,-2: 0 + 47,-8: 0 + 47,-7: 0 + 47,-6: 0 + 47,-5: 0 + 47,-4: 0 + 47,-3: 0 + 47,-2: 0 + 47,-1: 0 + -16,-28: 0 + -16,-27: 0 + -16,-26: 0 + -16,-25: 0 + -16,-24: 0 + -16,-23: 0 + -16,-22: 0 + -16,-21: 0 + -16,-20: 0 + -16,-19: 0 + -16,-18: 0 + -16,-17: 0 + -15,-28: 0 + -15,-27: 0 + -15,-26: 0 + -15,-25: 0 + -15,-24: 0 + -15,-23: 0 + -15,-22: 0 + -15,-21: 0 + -15,-20: 0 + -15,-19: 0 + -15,-18: 0 + -15,-17: 0 + -14,-28: 0 + -14,-27: 0 + -14,-26: 0 + -14,-25: 0 + -14,-24: 0 + -14,-23: 0 + -14,-22: 0 + -14,-21: 0 + -14,-20: 0 + -14,-19: 0 + -14,-18: 0 + -14,-17: 0 + -13,-29: 0 + -13,-28: 0 + -13,-27: 0 + -13,-26: 0 + -13,-25: 0 + -13,-24: 0 + -13,-23: 0 + -13,-22: 0 + -13,-21: 0 + -13,-20: 0 + -13,-19: 0 + -13,-18: 0 + -13,-17: 0 + -12,-29: 0 + -12,-28: 0 + -12,-27: 0 + -12,-26: 0 + -12,-25: 0 + -12,-24: 0 + -12,-23: 0 + -12,-22: 0 + -12,-21: 0 + -12,-20: 0 + -12,-19: 0 + -12,-18: 0 + -12,-17: 0 + -11,-31: 0 + -11,-30: 0 + -11,-29: 0 + -11,-28: 0 + -11,-27: 0 + -11,-26: 0 + -11,-25: 0 + -11,-24: 0 + -11,-23: 0 + -11,-22: 0 + -11,-21: 0 + -11,-20: 0 + -11,-19: 0 + -11,-18: 0 + -11,-17: 0 + -10,-31: 0 + -10,-30: 0 + -10,-29: 0 + -10,-28: 0 + -10,-27: 0 + -10,-26: 0 + -10,-25: 0 + -10,-24: 0 + -10,-23: 0 + -10,-22: 0 + -10,-21: 0 + -10,-20: 0 + -10,-19: 0 + -10,-18: 0 + -10,-17: 0 + -9,-31: 0 + -9,-30: 0 + -9,-29: 0 + -9,-28: 0 + -9,-27: 0 + -9,-26: 0 + -9,-25: 0 + -9,-24: 0 + -9,-23: 0 + -9,-22: 0 + -9,-21: 0 + -9,-20: 0 + -9,-19: 0 + -9,-18: 0 + -9,-17: 0 + -8,-31: 0 + -8,-30: 0 + -8,-29: 0 + -8,-28: 0 + -8,-27: 0 + -8,-26: 0 + -8,-25: 0 + -8,-24: 0 + -8,-23: 0 + -8,-22: 0 + -8,-21: 0 + -8,-20: 0 + -8,-19: 0 + -8,-18: 0 + -8,-17: 0 + -7,-31: 0 + -7,-30: 0 + -7,-29: 0 + -7,-28: 0 + -7,-27: 0 + -7,-26: 0 + -7,-25: 0 + -7,-24: 0 + -7,-23: 0 + -7,-22: 0 + -7,-21: 0 + -7,-20: 0 + -7,-19: 0 + -7,-18: 0 + -7,-17: 0 + -6,-29: 0 + -6,-28: 0 + -6,-27: 0 + -6,-26: 0 + -6,-25: 0 + -6,-24: 0 + -6,-23: 0 + -6,-22: 0 + -6,-21: 0 + -6,-20: 0 + -6,-19: 0 + -6,-18: 0 + -6,-17: 0 + -5,-29: 0 + -5,-28: 0 + -5,-27: 0 + -5,-26: 0 + -5,-25: 0 + -5,-24: 0 + -5,-23: 0 + -5,-22: 0 + -5,-21: 0 + -5,-20: 0 + -5,-19: 0 + -5,-18: 0 + -5,-17: 0 + -4,-29: 0 + -4,-28: 0 + -4,-27: 0 + -4,-26: 0 + -4,-25: 0 + -4,-24: 0 + -4,-23: 0 + -4,-22: 0 + -4,-21: 0 + -4,-20: 0 + -4,-19: 0 + -4,-18: 0 + -4,-17: 0 + -3,-29: 0 + -3,-28: 0 + -3,-27: 0 + -3,-26: 0 + -3,-25: 0 + -3,-24: 0 + -3,-23: 0 + -3,-22: 0 + -3,-21: 0 + -3,-20: 0 + -3,-19: 0 + -3,-18: 0 + -3,-17: 0 + -2,-29: 0 + -2,-28: 0 + -2,-27: 0 + -2,-26: 0 + -2,-25: 0 + -2,-24: 0 + -2,-23: 0 + -2,-22: 0 + -2,-21: 0 + -2,-20: 0 + -2,-19: 0 + -2,-18: 0 + -2,-17: 0 + -1,-29: 0 + -1,-28: 0 + -1,-27: 0 + -1,-26: 0 + -1,-25: 0 + -1,-24: 0 + -1,-23: 0 + -1,-22: 0 + -1,-21: 0 + -1,-20: 0 + -1,-19: 0 + -1,-18: 0 + -1,-17: 0 + -20,-17: 0 + -19,-28: 0 + -19,-27: 0 + -19,-26: 0 + -19,-25: 0 + -19,-24: 0 + -19,-23: 0 + -19,-22: 0 + -19,-21: 0 + -19,-20: 0 + -19,-19: 0 + -19,-18: 0 + -19,-17: 0 + -18,-28: 0 + -18,-27: 0 + -18,-26: 0 + -18,-25: 0 + -18,-24: 0 + -18,-23: 0 + -18,-22: 0 + -18,-21: 0 + -18,-20: 0 + -18,-19: 0 + -18,-18: 0 + -18,-17: 0 + -17,-28: 0 + -17,-27: 0 + -17,-26: 0 + -17,-25: 0 + -17,-24: 0 + -17,-23: 0 + -17,-22: 0 + -17,-21: 0 + -17,-20: 0 + -17,-19: 0 + -17,-18: 0 + -17,-17: 0 + -32,-13: 0 + -32,-12: 0 + -32,-11: 0 + -32,-10: 0 + -32,-9: 0 + -32,-8: 0 + -32,-7: 0 + -32,-6: 0 + -32,-5: 0 + -32,-4: 0 + -32,-3: 0 + -32,-2: 0 + -32,-1: 0 + -31,-13: 0 + -31,-12: 0 + -31,-11: 0 + -31,-10: 0 + -31,-9: 0 + -31,-8: 0 + -31,-7: 0 + -31,-6: 0 + -31,-5: 0 + -31,-4: 0 + -31,-3: 0 + -31,-2: 0 + -31,-1: 0 + -30,-13: 0 + -30,-12: 0 + -30,-11: 0 + -30,-10: 0 + -30,-9: 0 + -30,-8: 0 + -30,-7: 0 + -30,-6: 0 + -30,-5: 0 + -30,-4: 0 + -30,-3: 0 + -30,-2: 0 + -30,-1: 0 + -29,-13: 0 + -29,-12: 0 + -29,-11: 0 + -29,-10: 0 + -29,-9: 0 + -29,-8: 0 + -29,-7: 0 + -29,-6: 0 + -29,-5: 0 + -29,-4: 0 + -29,-3: 0 + -29,-2: 0 + -29,-1: 0 + -28,-13: 0 + -28,-12: 0 + -28,-11: 0 + -28,-10: 0 + -28,-9: 0 + -28,-8: 0 + -28,-7: 0 + -28,-6: 0 + -28,-5: 0 + -28,-4: 0 + -28,-3: 0 + -28,-2: 0 + -28,-1: 0 + -27,-13: 0 + -27,-12: 0 + -27,-11: 0 + -27,-10: 0 + -27,-9: 0 + -27,-8: 0 + -27,-7: 0 + -27,-6: 0 + -27,-5: 0 + -27,-4: 0 + -27,-3: 0 + -27,-2: 0 + -27,-1: 0 + -26,-13: 0 + -26,-12: 0 + -26,-11: 0 + -26,-10: 0 + -26,-9: 0 + -26,-8: 0 + -26,-7: 0 + -26,-6: 0 + -26,-5: 0 + -26,-4: 0 + -26,-3: 0 + -26,-2: 0 + -26,-1: 0 + -25,-16: 0 + -25,-15: 0 + -25,-14: 0 + -25,-13: 0 + -25,-12: 0 + -25,-11: 0 + -25,-10: 0 + -25,-9: 0 + -25,-8: 0 + -25,-7: 0 + -25,-6: 0 + -25,-5: 0 + -25,-4: 0 + -25,-3: 0 + -25,-2: 0 + -25,-1: 0 + -24,-16: 0 + -24,-15: 0 + -24,-14: 0 + -24,-13: 0 + -24,-12: 0 + -24,-11: 0 + -24,-10: 0 + -24,-9: 0 + -24,-8: 0 + -24,-7: 0 + -24,-6: 0 + -24,-5: 0 + -24,-4: 0 + -24,-3: 0 + -24,-2: 0 + -24,-1: 0 + -23,-16: 0 + -23,-15: 0 + -23,-14: 0 + -23,-13: 0 + -23,-12: 0 + -23,-11: 0 + -23,-10: 0 + -23,-9: 0 + -23,-8: 0 + -23,-7: 0 + -23,-6: 0 + -23,-5: 0 + -23,-4: 0 + -23,-3: 0 + -23,-2: 0 + -23,-1: 0 + -22,-16: 0 + -22,-15: 0 + -22,-14: 0 + -22,-13: 0 + -22,-12: 0 + -22,-11: 0 + -22,-10: 0 + -22,-9: 0 + -22,-8: 0 + -22,-7: 0 + -22,-6: 0 + -22,-5: 0 + -22,-4: 0 + -22,-3: 0 + -22,-2: 0 + -22,-1: 0 + -21,-16: 0 + -21,-15: 0 + -21,-14: 0 + -21,-13: 0 + -21,-12: 0 + -21,-11: 0 + -21,-10: 0 + -21,-9: 0 + -21,-8: 0 + -21,-7: 0 + -21,-6: 0 + -21,-5: 0 + -21,-4: 0 + -21,-3: 0 + -21,-2: 0 + -21,-1: 0 + -20,-16: 0 + -20,-15: 0 + -20,-14: 0 + -20,-13: 0 + -20,-12: 0 + -20,-11: 0 + -20,-10: 0 + -20,-9: 0 + -20,-8: 0 + -20,-7: 0 + -20,-6: 0 + -20,-5: 0 + -20,-4: 0 + -20,-3: 0 + -20,-2: 0 + -20,-1: 0 + -19,-16: 0 + -19,-15: 0 + -19,-14: 0 + -19,-13: 0 + -19,-12: 0 + -19,-11: 0 + -19,-10: 0 + -19,-9: 0 + -19,-8: 0 + -19,-7: 0 + -19,-6: 0 + -19,-5: 0 + -19,-4: 0 + -19,-3: 0 + -19,-2: 0 + -19,-1: 0 + -18,-16: 0 + -18,-15: 0 + -18,-14: 0 + -18,-13: 0 + -18,-12: 0 + -18,-11: 0 + -18,-10: 0 + -18,-9: 0 + -18,-8: 0 + -18,-7: 0 + -18,-6: 0 + -18,-5: 0 + -18,-4: 0 + -18,-3: 0 + -18,-2: 0 + -18,-1: 0 + -17,-16: 0 + -17,-15: 0 + -17,-14: 0 + -17,-13: 0 + -17,-12: 0 + -17,-11: 0 + -17,-10: 0 + -17,-9: 0 + -17,-8: 0 + -17,-7: 0 + -17,-6: 0 + -17,-5: 0 + -17,-4: 0 + -17,-3: 0 + -17,-2: 0 + -17,-1: 0 + -42,3: 0 + -42,4: 0 + -42,5: 0 + -42,7: 0 + -42,8: 0 + -42,9: 0 + -41,1: 0 + -41,2: 0 + -41,3: 0 + -41,4: 0 + -41,5: 0 + -41,6: 0 + -41,7: 0 + -41,8: 0 + -41,9: 0 + -41,10: 0 + -41,11: 0 + -40,1: 0 + -40,2: 0 + -40,3: 0 + -40,4: 0 + -40,5: 0 + -40,6: 0 + -40,7: 0 + -40,8: 0 + -40,9: 0 + -40,10: 0 + -40,11: 0 + -39,0: 0 + -39,1: 0 + -39,2: 0 + -39,3: 0 + -39,4: 0 + -39,5: 0 + -39,6: 0 + -39,7: 0 + -39,8: 0 + -39,9: 0 + -39,10: 0 + -39,11: 0 + -38,0: 0 + -38,1: 0 + -38,2: 0 + -38,3: 0 + -38,4: 0 + -38,5: 0 + -38,6: 0 + -38,7: 0 + -38,8: 0 + -38,9: 0 + -38,10: 0 + -38,11: 0 + -37,0: 0 + -37,1: 0 + -37,2: 0 + -37,3: 0 + -37,4: 0 + -37,5: 0 + -37,6: 0 + -37,7: 0 + -37,8: 0 + -37,9: 0 + -37,10: 0 + -37,11: 0 + -36,0: 0 + -36,1: 0 + -36,2: 0 + -36,3: 0 + -36,4: 0 + -36,5: 0 + -36,6: 0 + -36,7: 0 + -36,8: 0 + -36,9: 0 + -36,10: 0 + -36,11: 0 + -35,0: 0 + -35,1: 0 + -35,2: 0 + -35,3: 0 + -35,4: 0 + -35,5: 0 + -35,6: 0 + -35,7: 0 + -35,8: 0 + -35,9: 0 + -35,10: 0 + -35,11: 0 + -34,0: 0 + -34,1: 0 + -34,2: 0 + -34,3: 0 + -34,4: 0 + -34,5: 0 + -34,6: 0 + -34,7: 0 + -34,8: 0 + -34,9: 0 + -34,10: 0 + -34,11: 0 + -34,12: 0 + -34,13: 0 + -34,14: 0 + -34,15: 0 + -33,0: 0 + -33,1: 0 + -33,2: 0 + -33,3: 0 + -33,4: 0 + -33,5: 0 + -33,6: 0 + -33,7: 0 + -33,8: 0 + -33,9: 0 + -33,10: 0 + -33,11: 0 + -33,12: 0 + -33,13: 0 + -33,14: 0 + -33,15: 0 + -40,-5: 0 + -40,-4: 0 + -40,-3: 0 + -39,-9: 0 + -39,-8: 0 + -39,-7: 0 + -39,-6: 0 + -39,-5: 0 + -39,-4: 0 + -39,-3: 0 + -39,-2: 0 + -39,-1: 0 + -38,-9: 0 + -38,-8: 0 + -38,-7: 0 + -38,-6: 0 + -38,-5: 0 + -38,-4: 0 + -38,-3: 0 + -38,-2: 0 + -38,-1: 0 + -37,-9: 0 + -37,-8: 0 + -37,-7: 0 + -37,-6: 0 + -37,-5: 0 + -37,-4: 0 + -37,-3: 0 + -37,-2: 0 + -37,-1: 0 + -36,-9: 0 + -36,-8: 0 + -36,-7: 0 + -36,-6: 0 + -36,-5: 0 + -36,-4: 0 + -36,-3: 0 + -36,-2: 0 + -36,-1: 0 + -35,-13: 0 + -35,-12: 0 + -35,-11: 0 + -35,-10: 0 + -35,-9: 0 + -35,-8: 0 + -35,-7: 0 + -35,-6: 0 + -35,-5: 0 + -35,-4: 0 + -35,-3: 0 + -35,-2: 0 + -35,-1: 0 + -34,-13: 0 + -34,-12: 0 + -34,-11: 0 + -34,-10: 0 + -34,-9: 0 + -34,-8: 0 + -34,-7: 0 + -34,-6: 0 + -34,-5: 0 + -34,-4: 0 + -34,-3: 0 + -34,-2: 0 + -34,-1: 0 + -33,-13: 0 + -33,-12: 0 + -33,-11: 0 + -33,-10: 0 + -33,-9: 0 + -33,-8: 0 + -33,-7: 0 + -33,-6: 0 + -33,-5: 0 + -33,-4: 0 + -33,-3: 0 + -33,-2: 0 + -33,-1: 0 + 48,-8: 0 + 48,-7: 0 + 48,-6: 0 + 48,-5: 0 + 48,-4: 0 + 48,-3: 0 + 48,-2: 0 + 48,-1: 0 + 49,-8: 0 + 49,-7: 0 + 49,-6: 0 + 49,-5: 0 + 49,-4: 0 + 49,-3: 0 + 49,-2: 0 + 49,-1: 0 + 50,-8: 0 + 50,-7: 0 + 50,-6: 0 + 50,-5: 0 + 50,-4: 0 + 50,-3: 0 + 50,-2: 0 + 50,-1: 0 + 51,-8: 0 + 51,-7: 0 + 51,-6: 0 + 51,-5: 0 + 51,-4: 0 + 51,-3: 0 + 51,-2: 0 + 51,-1: 0 + 52,-8: 0 + 52,-7: 0 + 52,-6: 0 + 52,-5: 0 + 52,-4: 0 + 52,-3: 0 + 52,-2: 0 + -26,-17: 0 + -25,-17: 0 + -24,-17: 0 + -23,-17: 0 + -22,-17: 0 + -21,-17: 0 + -26,-16: 0 + -26,-15: 0 + -26,-14: 0 + 11,23: 0 + 11,24: 0 + 11,25: 0 + 12,23: 0 + 12,24: 0 + 12,25: 0 + 13,23: 0 + 13,24: 0 + 13,25: 0 + 14,23: 0 + 14,24: 0 + 14,25: 0 + 45,11: 0 + 45,12: 0 + 45,13: 0 + 45,14: 0 + 46,6: 0 + 46,7: 0 + 46,8: 0 + 46,9: 0 + 46,10: 0 + 46,11: 0 + 46,12: 0 + 46,13: 0 + 46,14: 0 + 47,6: 0 + 47,7: 0 + 47,8: 0 + 47,9: 0 + 47,10: 0 + 47,11: 0 + 47,12: 0 + 47,13: 0 + 47,14: 0 + 48,6: 0 + 48,7: 0 + 48,8: 0 + 48,9: 0 + 48,10: 0 + 48,11: 0 + 48,12: 0 + 48,13: 0 + 48,14: 0 + 49,6: 0 + 49,7: 0 + 49,8: 0 + 49,9: 0 + 49,10: 0 + 49,11: 0 + 49,12: 0 + 49,13: 0 + 49,14: 0 + 50,6: 0 + 50,7: 0 + 50,8: 0 + 50,9: 0 + 50,10: 0 + 50,11: 0 + 50,12: 0 + 50,13: 0 + 50,14: 0 + 51,6: 0 + 51,7: 0 + 51,8: 0 + 51,9: 0 + 51,10: 0 + 51,11: 0 + 51,12: 0 + 51,13: 0 + 51,14: 0 + 43,-16: 0 + 43,-15: 0 + 43,-14: 0 + 43,-13: 0 + 43,-12: 0 + 43,-11: 0 + 43,-10: 0 + 43,-9: 0 + 44,-15: 0 + 44,-14: 0 + 44,-13: 0 + 44,-12: 0 + 44,-11: 0 + 44,-10: 0 + 44,-9: 0 + 45,-15: 0 + 45,-14: 0 + 45,-13: 0 + 45,-12: 0 + 45,-11: 0 + 45,-10: 0 + 45,-9: 0 + 46,-16: 0 + 46,-15: 0 + 46,-14: 0 + 46,-13: 0 + 46,-12: 0 + 46,-11: 0 + 46,-10: 0 + 46,-9: 0 + 47,-15: 0 + 47,-14: 0 + 47,-13: 0 + 47,-12: 0 + 47,-11: 0 + 47,-10: 0 + 47,-9: 0 + 48,-15: 0 + 48,-14: 0 + 48,-13: 0 + 48,-12: 0 + 48,-11: 0 + 48,-10: 0 + 48,-9: 0 + 49,-16: 0 + 49,-15: 0 + 49,-14: 0 + 49,-13: 0 + 49,-12: 0 + 49,-11: 0 + 49,-10: 0 + 49,-9: 0 + 50,-15: 0 + 50,-14: 0 + 50,-13: 0 + 50,-12: 0 + 50,-11: 0 + 50,-10: 0 + 50,-9: 0 + 51,-15: 0 + 51,-14: 0 + 51,-13: 0 + 51,-12: 0 + 51,-11: 0 + 51,-10: 0 + 51,-9: 0 + 52,-16: 0 + 52,-15: 0 + 52,-14: 0 + 52,-13: 0 + 52,-12: 0 + 52,-11: 0 + 52,-10: 0 + 52,-9: 0 + 53,-15: 0 + 53,-14: 0 + 53,-13: 0 + 53,-12: 0 + 53,-11: 0 + 53,-10: 0 + 53,-9: 0 + 54,-15: 0 + 54,-14: 0 + 54,-13: 0 + 54,-12: 0 + 54,-11: 0 + 54,-10: 0 + 54,-9: 0 + 55,-16: 0 + 55,-15: 0 + 55,-14: 0 + 55,-13: 0 + 55,-12: 0 + 55,-11: 0 + 55,-10: 0 + 55,-9: 0 + 40,-32: 0 + 40,-31: 0 + 40,-30: 0 + 40,-29: 0 + 40,-28: 0 + 40,-27: 0 + 40,-26: 0 + 40,-25: 0 + 40,-24: 0 + 40,-23: 0 + 40,-22: 0 + 40,-21: 0 + 40,-20: 0 + 40,-19: 0 + 40,-18: 0 + 41,-29: 0 + 41,-25: 0 + 41,-21: 0 + 41,-18: 0 + 42,-32: 0 + 42,-31: 0 + 42,-30: 0 + 42,-29: 0 + 42,-28: 0 + 42,-27: 0 + 42,-26: 0 + 42,-25: 0 + 42,-24: 0 + 42,-23: 0 + 42,-22: 0 + 42,-21: 0 + 42,-20: 0 + 42,-19: 0 + 42,-18: 0 + 43,-32: 0 + 43,-29: 0 + 43,-25: 0 + 43,-21: 0 + 43,-18: 0 + 43,-17: 0 + 44,-32: 0 + 44,-29: 0 + 44,-25: 0 + 44,-21: 0 + 44,-18: 0 + 45,-32: 0 + 45,-31: 0 + 45,-30: 0 + 45,-29: 0 + 45,-28: 0 + 45,-27: 0 + 45,-26: 0 + 45,-25: 0 + 45,-24: 0 + 45,-23: 0 + 45,-22: 0 + 45,-21: 0 + 45,-20: 0 + 45,-19: 0 + 45,-18: 0 + 46,-32: 0 + 46,-29: 0 + 46,-25: 0 + 46,-21: 0 + 46,-18: 0 + 46,-17: 0 + 47,-32: 0 + 47,-29: 0 + 47,-25: 0 + 47,-21: 0 + 47,-18: 0 + 48,-32: 0 + 48,-29: 0 + 48,-25: 0 + 48,-21: 0 + 48,-18: 0 + 49,-32: 0 + 49,-31: 0 + 49,-30: 0 + 49,-29: 0 + 49,-28: 0 + 49,-27: 0 + 49,-26: 0 + 49,-25: 0 + 49,-24: 0 + 49,-23: 0 + 49,-22: 0 + 49,-21: 0 + 49,-20: 0 + 49,-19: 0 + 49,-18: 0 + 49,-17: 0 + 50,-32: 0 + 50,-29: 0 + 50,-25: 0 + 50,-21: 0 + 50,-18: 0 + 51,-32: 0 + 51,-29: 0 + 51,-25: 0 + 51,-21: 0 + 51,-18: 0 + 52,-32: 0 + 52,-29: 0 + 52,-25: 0 + 52,-21: 0 + 52,-18: 0 + 52,-17: 0 + 53,-32: 0 + 53,-31: 0 + 53,-30: 0 + 53,-29: 0 + 53,-28: 0 + 53,-27: 0 + 53,-26: 0 + 53,-25: 0 + 53,-24: 0 + 53,-23: 0 + 53,-22: 0 + 53,-21: 0 + 53,-20: 0 + 53,-19: 0 + 53,-18: 0 + 54,-32: 0 + 54,-29: 0 + 54,-25: 0 + 54,-21: 0 + 54,-18: 0 + 55,-32: 0 + 55,-29: 0 + 55,-25: 0 + 55,-21: 0 + 55,-18: 0 + 55,-17: 0 + 56,-32: 0 + 56,-31: 0 + 56,-30: 0 + 56,-29: 0 + 56,-28: 0 + 56,-27: 0 + 56,-26: 0 + 56,-25: 0 + 56,-24: 0 + 56,-23: 0 + 56,-22: 0 + 56,-21: 0 + 56,-20: 0 + 56,-19: 0 + 56,-18: 0 + 57,-29: 0 + 57,-25: 0 + 57,-21: 0 + 57,-18: 0 + 58,-32: 0 + 58,-31: 0 + 58,-30: 0 + 58,-29: 0 + 58,-28: 0 + 58,-27: 0 + 58,-26: 0 + 58,-25: 0 + 58,-24: 0 + 58,-23: 0 + 58,-22: 0 + 58,-21: 0 + 58,-20: 0 + 58,-19: 0 + 58,-18: 0 + 48,-34: 0 + 49,-34: 0 + 49,-33: 0 + 50,-34: 0 + 51,-34: 0 + 52,-34: 0 + 53,-34: 0 + 53,-33: 0 + 54,-34: 0 + 55,-34: 0 + 56,-34: 0 + 57,-34: 0 + 58,-34: 0 + 58,-33: 0 + 40,-34: 0 + 40,-33: 0 + 41,-34: 0 + 42,-34: 0 + 43,-34: 0 + 44,-34: 0 + 45,-34: 0 + 45,-33: 0 + 46,-34: 0 + 47,-34: 0 type: GridAtmosphere - uid: 854 type: Catwalk components: - parent: 853 pos: 49.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 855 type: Catwalk components: - parent: 853 pos: 48.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 856 type: Catwalk components: - parent: 853 pos: 47.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 857 type: Poweredlight components: - parent: 853 pos: 52,-4.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -11870,6 +12352,7 @@ entities: components: - parent: 853 pos: 47,-4.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -11884,84 +12367,84 @@ entities: components: - parent: 853 pos: -38.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 860 type: reinforced_wall components: - parent: 853 pos: 50.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 861 type: reinforced_wall components: - parent: 853 pos: 48.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 862 type: solid_wall components: - parent: 853 pos: 51.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 863 type: solid_wall components: - parent: 853 pos: 50.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 864 type: solid_wall components: - parent: 853 pos: 47.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 865 type: solid_wall components: - parent: 853 pos: 47.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 866 type: solid_wall components: - parent: 853 pos: 46.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 867 type: solid_wall components: - parent: 853 pos: 49.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 868 type: solid_wall components: - parent: 853 pos: 51.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 869 type: reinforced_wall components: - parent: 853 pos: 47.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 870 type: reinforced_wall components: - parent: 853 pos: 51.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 871 type: AutolatheMachineCircuitboard @@ -11998,105 +12481,105 @@ entities: components: - parent: 853 pos: 51.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 878 type: reinforced_wall components: - parent: 853 pos: 50.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 879 type: HVWire components: - parent: 853 pos: 43.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 880 type: reinforced_wall components: - parent: 853 pos: 48.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 881 type: reinforced_wall components: - parent: 853 pos: 47.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 882 type: reinforced_wall components: - parent: 853 pos: 46.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 883 type: reinforced_wall components: - parent: 853 pos: 46.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 884 type: reinforced_wall components: - parent: 853 pos: 46.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 885 type: reinforced_wall components: - parent: 853 pos: 46.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 886 type: reinforced_wall components: - parent: 853 pos: 46.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 887 type: reinforced_wall components: - parent: 853 pos: 46.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 888 type: reinforced_wall components: - parent: 853 pos: 46.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 889 type: GravityGenerator components: - parent: 853 pos: 49.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 890 type: Table components: - parent: 853 pos: -18.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 891 type: PoweredSmallLight components: - parent: 853 pos: -12.5,-5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -12111,7 +12594,7 @@ entities: components: - parent: 853 pos: -13.5,2 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -12126,7 +12609,7 @@ entities: components: - parent: 853 pos: -13.5,-2 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -12141,7 +12624,7 @@ entities: components: - parent: 853 pos: -14.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: microwave_entity_container: @@ -12152,420 +12635,418 @@ entities: components: - parent: 853 pos: -14.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 896 type: Table components: - parent: 853 pos: -14.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 897 type: VendingMachineSnack components: - parent: 853 pos: -8.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 898 type: VendingMachineCigs components: - parent: 853 pos: -7.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 899 type: VendingMachineTheater components: - parent: 853 pos: -17.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 900 type: SpawnPointSecurityOfficer components: - parent: 853 pos: -11.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 901 type: Table components: - parent: 853 pos: -10.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 902 type: Table components: - parent: 853 pos: -10.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 903 type: SpawnPointLatejoin components: - parent: 853 pos: -36.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 904 type: Catwalk components: - parent: 853 pos: -9.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 905 type: Catwalk components: - parent: 853 pos: -17.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 906 type: Catwalk components: - parent: 853 pos: -23.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 907 type: solid_wall components: - parent: 853 pos: -14.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 908 type: solid_wall components: - parent: 853 pos: -13.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 909 type: solid_wall components: - parent: 853 pos: -12.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 910 type: solid_wall components: - parent: 853 pos: -11.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 911 type: solid_wall components: - parent: 853 pos: -10.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 912 type: solid_wall components: - parent: 853 pos: -9.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 913 type: solid_wall components: - parent: 853 pos: -14.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 914 type: solid_wall components: - parent: 853 pos: -13.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 915 type: solid_wall components: - parent: 853 pos: -11.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 916 type: solid_wall components: - parent: 853 pos: -10.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 917 type: solid_wall components: - parent: 853 pos: -15.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 918 type: solid_wall components: - parent: 853 pos: -15.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 919 type: solid_wall components: - parent: 853 pos: -15.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 920 type: solid_wall components: - parent: 853 pos: -15.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 921 type: solid_wall components: - parent: 853 pos: -15.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 922 type: solid_wall components: - parent: 853 pos: -12.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 923 type: solid_wall components: - parent: 853 pos: -13.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 924 type: solid_wall components: - parent: 853 pos: -14.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 925 type: solid_wall components: - parent: 853 pos: -15.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 926 type: solid_wall components: - parent: 853 pos: -20.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 927 type: solid_wall components: - parent: 853 pos: -17.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 928 type: solid_wall components: - parent: 853 pos: -18.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 929 type: solid_wall components: - parent: 853 pos: -19.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 930 type: solid_wall components: - parent: 853 pos: -20.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 931 type: solid_wall components: - parent: 853 pos: -20.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 932 type: Brutepack components: - parent: 853 pos: 7.370505,-3.4650035 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 933 type: TrashSpawner components: - parent: 853 pos: 7.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 934 type: Rack components: - parent: 853 pos: 30.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 935 type: SignSmoking components: - parent: 853 pos: 23.462582,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 936 type: solid_wall components: - parent: 853 pos: -16.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 937 type: solid_wall components: - parent: 853 pos: -0.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 938 type: solid_wall components: - parent: 853 pos: 33.5,11.5 - rot: -1.5707963705062866 rad type: Transform - uid: 939 type: SignDirectionalBridge components: - parent: 853 pos: 5.641159,-12.7475605 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 940 type: Brutepack components: - parent: 853 pos: 6.97988,-3.2306285 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 941 type: solid_wall components: - parent: 853 pos: -26.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 942 type: solid_wall components: - parent: 853 pos: -27.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 943 type: solid_wall components: - parent: 853 pos: -28.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 944 type: solid_wall components: - parent: 853 pos: -29.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 945 type: solid_wall components: - parent: 853 pos: -30.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 946 type: solid_wall components: - parent: 853 pos: -31.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 947 type: solid_wall components: - parent: 853 pos: -32.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 948 type: solid_wall components: - parent: 853 pos: -33.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 949 type: solid_wall components: - parent: 853 pos: -34.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 950 type: solid_wall components: - parent: 853 pos: -34.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 951 type: solid_wall components: - parent: 853 pos: -34.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 952 type: solid_wall components: - parent: 853 pos: -34.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 953 type: Paper components: - parent: 853 pos: 9.699392,17.630365 - rot: 3.141592653589793 rad type: Transform - uid: 954 type: ChairOfficeDark components: - parent: 853 pos: 10.5,17.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - anchored: False type: Physics @@ -12574,6 +13055,7 @@ entities: components: - parent: 853 pos: 8.5,17.5 + rot: 1.5707963705062866 rad type: Transform - anchored: False type: Physics @@ -12582,28 +13064,28 @@ entities: components: - parent: 853 pos: 9.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 957 type: Table components: - parent: 853 pos: 9.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 958 type: Table components: - parent: 853 pos: 9.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 959 type: ComputerSupplyRequest components: - parent: 853 pos: 8.5,31.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: board: @@ -12616,7 +13098,7 @@ entities: components: - parent: 853 pos: 0.5,31.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - anchored: False type: Physics @@ -12625,14 +13107,14 @@ entities: components: - parent: 853 pos: 0.5,32.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 962 type: ChairOfficeDark components: - parent: 853 pos: 7.5,31.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - anchored: False type: Physics @@ -12641,6 +13123,7 @@ entities: components: - parent: 853 pos: -2.5,25.5 + rot: 1.5707963705062866 rad type: Transform - anchored: False type: Physics @@ -12649,6 +13132,7 @@ entities: components: - parent: 853 pos: -2.5,24.5 + rot: 1.5707963705062866 rad type: Transform - anchored: False type: Physics @@ -12657,7 +13141,7 @@ entities: components: - parent: 853 pos: -0.5,25.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - anchored: False type: Physics @@ -12666,7 +13150,7 @@ entities: components: - parent: 853 pos: -0.5,24.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - anchored: False type: Physics @@ -12675,14 +13159,14 @@ entities: components: - parent: 853 pos: -1.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 968 type: TableWood components: - parent: 853 pos: -1.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 969 type: Pen @@ -12701,21 +13185,21 @@ entities: components: - parent: 853 pos: 7.5,32.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 972 type: ComputerAlert components: - parent: 853 pos: 6.5,32.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 973 type: ComputerId components: - parent: 853 pos: 7.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: IdCardConsole-privilegedId: @@ -12732,7 +13216,7 @@ entities: components: - parent: 853 pos: 8.5,23.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: IdCardConsole-privilegedId: @@ -12749,13 +13233,14 @@ entities: components: - parent: 853 pos: 6.5,20.5 + rot: 1.5707963705062866 rad type: Transform - uid: 976 type: WarpPoint components: - parent: 853 pos: 3.5,29.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - location: bridge type: WarpPoint @@ -12764,7 +13249,7 @@ entities: components: - parent: 853 pos: -6.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - location: sec type: WarpPoint @@ -12773,6 +13258,7 @@ entities: components: - parent: 853 pos: 7.5,25.5 + rot: 1.5707963705062866 rad type: Transform - anchored: False type: Physics @@ -12781,7 +13267,7 @@ entities: components: - parent: 853 pos: 9.5,25.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - anchored: False type: Physics @@ -12790,7 +13276,7 @@ entities: components: - parent: 853 pos: 9.5,23.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: board: @@ -12803,7 +13289,7 @@ entities: components: - parent: 853 pos: 3.5,31.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - anchored: False type: Physics @@ -12812,42 +13298,42 @@ entities: components: - parent: 853 pos: 8.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 983 type: TableWood components: - parent: 853 pos: 8.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 984 type: VendingMachineCigs components: - parent: 853 pos: 6.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 985 type: VendingMachineCoffee components: - parent: 853 pos: 0.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 986 type: VendingMachineCola components: - parent: 853 pos: 1.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 987 type: WarpPoint components: - parent: 853 pos: 34.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - location: eng type: WarpPoint @@ -12856,7 +13342,7 @@ entities: components: - parent: 853 pos: 19.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - location: cargo type: WarpPoint @@ -12865,7 +13351,7 @@ entities: components: - parent: 853 pos: 14.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - location: med type: WarpPoint @@ -12874,7 +13360,7 @@ entities: components: - parent: 853 pos: -6.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - location: sci type: WarpPoint @@ -12883,7 +13369,7 @@ entities: components: - parent: 853 pos: -4.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - location: bar type: WarpPoint @@ -12892,7 +13378,7 @@ entities: components: - parent: 853 pos: 3.5,32.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: board: @@ -12905,27 +13391,27 @@ entities: components: - parent: 853 pos: -15.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 994 type: ApcExtensionCable components: - parent: 853 pos: 1.5,1.5 - rot: 3.141592653589793 rad type: Transform - uid: 995 type: Catwalk components: - parent: 853 pos: 22.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 996 type: Chair components: - parent: 853 pos: 22.5,-14.5 + rot: 1.5707963705062866 rad type: Transform - anchored: False type: Physics @@ -12934,140 +13420,130 @@ entities: components: - parent: 853 pos: 0.5,2.5 - rot: 3.141592653589793 rad type: Transform - uid: 998 type: ApcExtensionCable components: - parent: 853 pos: 1.5,2.5 - rot: 3.141592653589793 rad type: Transform - uid: 999 type: solid_wall components: - parent: 853 pos: -7.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1000 type: ApcExtensionCable components: - parent: 853 pos: 3.5,30.5 - rot: 3.141592653589793 rad type: Transform - uid: 1001 type: ApcExtensionCable components: - parent: 853 pos: 3.5,28.5 - rot: 3.141592653589793 rad type: Transform - uid: 1002 type: ApcExtensionCable components: - parent: 853 pos: 26.5,4.5 - rot: 3.141592653589793 rad type: Transform - uid: 1003 type: ApcExtensionCable components: - parent: 853 pos: 25.5,4.5 - rot: 3.141592653589793 rad type: Transform - uid: 1004 type: solid_wall components: - parent: 853 pos: -5.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1005 type: solid_wall components: - parent: 853 pos: -6.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1006 type: ApcExtensionCable components: - parent: 853 pos: 27.5,4.5 - rot: 3.141592653589793 rad type: Transform - uid: 1007 type: ApcExtensionCable components: - parent: 853 pos: 27.5,6.5 - rot: 3.141592653589793 rad type: Transform - uid: 1008 type: ApcExtensionCable components: - parent: 853 pos: 27.5,5.5 - rot: 3.141592653589793 rad type: Transform - uid: 1009 type: ApcExtensionCable components: - parent: 853 pos: 3.5,29.5 - rot: 3.141592653589793 rad type: Transform - uid: 1010 type: ApcExtensionCable components: - parent: 853 pos: 16.5,-2.5 - rot: 3.141592653589793 rad type: Transform - uid: 1011 type: solid_wall components: - parent: 853 pos: -8.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1012 type: ApcExtensionCable components: - parent: 853 pos: 22.5,-18.5 - rot: 3.141592653589793 rad type: Transform - uid: 1013 type: ApcExtensionCable components: - parent: 853 pos: 16.5,-1.5 - rot: 3.141592653589793 rad type: Transform - uid: 1014 type: ReinforcedWindow components: - parent: 853 pos: 9.5,-21.5 - rot: -1.5707963705062866 rad type: Transform - uid: 1015 type: AirlockCommandGlassLocked components: - parent: 853 pos: 2.5,27.5 - rot: -1.5707963705062866 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 1016 type: FirelockGlass components: - parent: 853 pos: -9.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -13076,7 +13552,6 @@ entities: components: - parent: 853 pos: -22.5,13.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -13085,84 +13560,82 @@ entities: components: - parent: 853 pos: 3.5,27.5 - rot: -1.5707963705062866 rad type: Transform - uid: 1019 type: ApcExtensionCable components: - parent: 853 pos: -6.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1020 type: Catwalk components: - parent: 853 pos: 10.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1021 type: Catwalk components: - parent: 853 pos: 12.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1022 type: Catwalk components: - parent: 853 pos: 11.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1023 type: SpawnPointStationEngineer components: - parent: 853 pos: 33.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1024 type: SpawnPointAssistant components: - parent: 853 pos: -27.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1025 type: SpawnPointSecurityOfficer components: - parent: 853 pos: -12.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1026 type: SpawnPointAssistant components: - parent: 853 pos: -27.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1027 type: Table components: - parent: 853 pos: 39.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1028 type: ReinforcedWindow components: - parent: 853 pos: 11.5,-21.5 - rot: -1.5707963705062866 rad type: Transform - uid: 1029 type: FirelockGlass components: - parent: 853 pos: 5.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -13171,7 +13644,7 @@ entities: components: - parent: 853 pos: 5.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -13180,7 +13653,7 @@ entities: components: - parent: 853 pos: 1.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -13189,28 +13662,27 @@ entities: components: - parent: 853 pos: 0.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1033 type: TableR components: - parent: 853 pos: 0.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1034 type: ReinforcedWindow components: - parent: 853 pos: 10.5,-21.5 - rot: -1.5707963705062866 rad type: Transform - uid: 1035 type: Poweredlight components: - parent: 853 pos: -38.5,11 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -13225,55 +13697,56 @@ entities: components: - parent: 853 pos: -13.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1037 type: SpawnPointSecurityOfficer components: - parent: 853 pos: -2.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1038 type: Carpet components: - parent: 853 pos: -0.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1039 type: SpawnPointStationEngineer components: - parent: 853 pos: 41.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1040 type: TableR components: - parent: 853 pos: 6.5,28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1041 type: TableR components: - parent: 853 pos: -2.5,28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1042 type: TableR components: - parent: 853 pos: 5.5,28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1043 type: Protolathe components: - parent: 853 pos: -3.5,-12.5 + rot: 4.371139006309477E-08 rad type: Transform - protolatherecipes: - Brutepack @@ -13303,6 +13776,7 @@ entities: components: - parent: 853 pos: -5.5,-12.5 + rot: 4.371139006309477E-08 rad type: Transform - recipes: - Brutepack @@ -13331,7 +13805,7 @@ entities: components: - parent: 853 pos: -8.5,-18.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - anchored: False type: Physics @@ -13340,6 +13814,7 @@ entities: components: - parent: 853 pos: -9.5,-17.5 + rot: 1.5707963705062866 rad type: Transform - anchored: False type: Physics @@ -13348,18 +13823,21 @@ entities: components: - parent: 853 pos: -8.5,-17.5 + rot: 1.5707963705062866 rad type: Transform - uid: 1048 type: VendingMachineCoffee components: - parent: 853 pos: -7.5,-17.5 + rot: 4.371139006309477E-08 rad type: Transform - uid: 1049 type: ChairOfficeLight components: - parent: 853 pos: -5.5,-23.5 + rot: 1.5707963705062866 rad type: Transform - anchored: False type: Physics @@ -13368,6 +13846,7 @@ entities: components: - parent: 853 pos: -0.5,-14.5 + rot: 1.5707963705062866 rad type: Transform - anchored: False type: Physics @@ -13376,49 +13855,49 @@ entities: components: - parent: 853 pos: -5.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1052 type: TableR components: - parent: 853 pos: -7.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1053 type: TableR components: - parent: 853 pos: -7.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1054 type: TableR components: - parent: 853 pos: 9.5,28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1055 type: TableR components: - parent: 853 pos: 8.5,28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1056 type: TableR components: - parent: 853 pos: 7.5,28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1057 type: PoweredSmallLight components: - parent: 853 pos: -6.5,-26 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -13433,6 +13912,7 @@ entities: components: - parent: 853 pos: -5.5,-15.5 + rot: 1.5707963705062866 rad type: Transform - containers: board: @@ -13445,21 +13925,21 @@ entities: components: - parent: 853 pos: -38.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1060 type: SignScience components: - parent: 853 pos: -8.494434,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1061 type: Poweredlight components: - parent: 853 pos: -13,-25.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -13474,7 +13954,7 @@ entities: components: - parent: 853 pos: -13,-21.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -13489,6 +13969,7 @@ entities: components: - parent: 853 pos: -18,-21.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -13503,6 +13984,7 @@ entities: components: - parent: 853 pos: -18,-25.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -13517,6 +13999,7 @@ entities: components: - parent: 853 pos: -8.5,-23.5 + rot: 4.371139006309477E-08 rad type: Transform - points: 136000 type: ResearchServer @@ -13525,7 +14008,7 @@ entities: components: - parent: 853 pos: -7,-23.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -13540,7 +14023,7 @@ entities: components: - parent: 853 pos: -2,-23.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -13555,7 +14038,7 @@ entities: components: - parent: 853 pos: -1.5,-21 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -13570,7 +14053,7 @@ entities: components: - parent: 853 pos: -9.5,-17 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -13585,7 +14068,7 @@ entities: components: - parent: 853 pos: -9.5,-21 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -13600,7 +14083,7 @@ entities: components: - parent: 853 pos: -1.5,-13 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -13615,6 +14098,7 @@ entities: components: - parent: 853 pos: -6,-14.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -13629,7 +14113,7 @@ entities: components: - parent: 853 pos: -1.5,-18 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -13644,147 +14128,147 @@ entities: components: - parent: 853 pos: -6.5,-29.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1075 type: ReinforcedWindow components: - parent: 853 pos: -6.5,-30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1076 type: ReinforcedWindow components: - parent: 853 pos: -7.5,-30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1077 type: ReinforcedWindow components: - parent: 853 pos: -8.5,-30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1078 type: ReinforcedWindow components: - parent: 853 pos: -9.5,-30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1079 type: ReinforcedWindow components: - parent: 853 pos: -10.5,-30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1080 type: ReinforcedWindow components: - parent: 853 pos: -10.5,-29.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1081 type: LowWall components: - parent: 853 pos: -8.5,-30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1082 type: LowWall components: - parent: 853 pos: -6.5,-30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1083 type: LowWall components: - parent: 853 pos: -7.5,-30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1084 type: LowWall components: - parent: 853 pos: -6.5,-29.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1085 type: LowWall components: - parent: 853 pos: -9.5,-30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1086 type: LowWall components: - parent: 853 pos: -10.5,-30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1087 type: LowWall components: - parent: 853 pos: -10.5,-29.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1088 type: Table components: - parent: 853 pos: -4.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1089 type: Table components: - parent: 853 pos: -4.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1090 type: SpawnPointAssistant components: - parent: 853 pos: -23.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1091 type: SpawnPointAssistant components: - parent: 853 pos: -29.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1092 type: SpawnPointLatejoin components: - parent: 853 pos: -36.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1093 type: SpawnPointChef components: - parent: 853 pos: -12.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1094 type: WarpPoint components: - parent: 853 pos: -36.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - location: escape type: WarpPoint @@ -13793,7 +14277,7 @@ entities: components: - parent: 853 pos: -24.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - location: dorms type: WarpPoint @@ -13802,7 +14286,7 @@ entities: components: - parent: 853 pos: 25,-14.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -13817,7 +14301,7 @@ entities: components: - parent: 853 pos: 24.5,-14.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - anchored: False type: Physics @@ -13826,49 +14310,47 @@ entities: components: - parent: 853 pos: 23.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1099 type: Table components: - parent: 853 pos: 23.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1100 type: Table components: - parent: 853 pos: 23.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1101 type: ComputerMedicalRecords components: - parent: 853 pos: 24.5,-15.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 1102 type: Beaker components: - parent: 853 pos: 15.48139,-0.43026757 - rot: 1.5707963267948966 rad type: Transform - uid: 1103 type: LargeBeaker components: - parent: 853 pos: 14.528265,-0.44589257 - rot: 1.5707963267948966 rad type: Transform - uid: 1104 type: DisposalTrunk components: - parent: 853 pos: 18.5,-0.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalEntry: @@ -13879,6 +14361,7 @@ entities: components: - parent: 853 pos: 18.5,-0.5 + rot: 4.371139006309477E-08 rad type: Transform - containers: DisposalUnit: @@ -13889,126 +14372,124 @@ entities: components: - parent: 853 pos: -17.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1107 type: HydroponicsToolScythe components: - parent: 853 pos: -20.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1108 type: HydroponicsToolHatchet components: - parent: 853 pos: -20.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1109 type: Catwalk components: - parent: 853 pos: -11.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1110 type: Catwalk components: - parent: 853 pos: -11.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1111 type: Catwalk components: - parent: 853 pos: -11.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1112 type: Catwalk components: - parent: 853 pos: -11.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1113 type: Catwalk components: - parent: 853 pos: -11.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1114 type: Catwalk components: - parent: 853 pos: -0.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1115 type: Catwalk components: - parent: 853 pos: -0.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1116 type: Catwalk components: - parent: 853 pos: -0.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1117 type: HVWire components: - parent: 853 pos: -6.5,-26.5 - rot: 3.141592653589793 rad type: Transform - uid: 1118 type: HVWire components: - parent: 853 pos: -4.5,-26.5 - rot: 3.141592653589793 rad type: Transform - uid: 1119 type: Catwalk components: - parent: 853 pos: -9.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1120 type: Catwalk components: - parent: 853 pos: -8.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1121 type: Catwalk components: - parent: 853 pos: -7.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1122 type: HydroponicsToolMiniHoe components: - parent: 853 pos: -20.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1123 type: Poweredlight components: - parent: 853 pos: 23.5,-8 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14023,7 +14504,7 @@ entities: components: - parent: 853 pos: 23.5,-4 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14038,6 +14519,7 @@ entities: components: - parent: 853 pos: 7,-14.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14052,7 +14534,7 @@ entities: components: - parent: 853 pos: 20,-11.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14067,49 +14549,49 @@ entities: components: - parent: 853 pos: 17.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1128 type: Window components: - parent: 853 pos: 16.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1129 type: solid_wall components: - parent: 853 pos: 16.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1130 type: LowWall components: - parent: 853 pos: 17.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1131 type: LowWall components: - parent: 853 pos: 16.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1132 type: solid_wall components: - parent: 853 pos: 16.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1133 type: WardrobeWhiteFilled components: - parent: 853 pos: 7.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -14122,14 +14604,14 @@ entities: components: - parent: 853 pos: -38.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1135 type: CloningPod components: - parent: 853 pos: 9.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: CloningPod-bodyContainer: @@ -14140,42 +14622,41 @@ entities: components: - parent: 853 pos: -18.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1137 type: Beaker components: - parent: 853 pos: 15.07514,-0.38339257 - rot: 1.5707963267948966 rad type: Transform - uid: 1138 type: VendingMachineMedical components: - parent: 853 pos: 13.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1139 type: Catwalk components: - parent: 853 pos: 29.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1140 type: Catwalk components: - parent: 853 pos: 33.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1141 type: LockerBotanistFilled components: - parent: 853 pos: -19.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -14188,35 +14669,35 @@ entities: components: - parent: 853 pos: -20.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1143 type: Catwalk components: - parent: 853 pos: 28.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1144 type: Table components: - parent: 853 pos: -20.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1145 type: SeedExtractor components: - parent: 853 pos: -17.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1146 type: CrateMedical components: - parent: 853 pos: 24.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -14229,42 +14710,42 @@ entities: components: - parent: 853 pos: 23.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1148 type: Table components: - parent: 853 pos: 22.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1149 type: Table components: - parent: 853 pos: 21.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1150 type: WaterTankFull components: - parent: 853 pos: -17.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1151 type: VendingMachineMedical components: - parent: 853 pos: 19.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1152 type: LockerMedical components: - parent: 853 pos: 22.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -14277,14 +14758,14 @@ entities: components: - parent: 853 pos: 27.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1154 type: LockerMedical components: - parent: 853 pos: 21.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -14297,7 +14778,7 @@ entities: components: - parent: 853 pos: 49.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - location: grav type: WarpPoint @@ -14306,7 +14787,7 @@ entities: components: - parent: 853 pos: 9.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - location: hop type: WarpPoint @@ -14315,7 +14796,7 @@ entities: components: - parent: 853 pos: 16.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - location: chem type: WarpPoint @@ -14324,7 +14805,7 @@ entities: components: - parent: 853 pos: 7.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - location: cap type: WarpPoint @@ -14333,7 +14814,7 @@ entities: components: - parent: 853 pos: 8.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - location: eva type: WarpPoint @@ -14342,14 +14823,14 @@ entities: components: - parent: 853 pos: 13.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1161 type: LockerChemistry components: - parent: 853 pos: 18.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -14362,7 +14843,7 @@ entities: components: - parent: 853 pos: 39.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -14375,21 +14856,21 @@ entities: components: - parent: 853 pos: 47.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1164 type: Table components: - parent: 853 pos: -12.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1165 type: Chair components: - parent: 853 pos: 28.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - anchored: False type: Physics @@ -14398,7 +14879,7 @@ entities: components: - parent: 853 pos: 26.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - anchored: False type: Physics @@ -14407,7 +14888,7 @@ entities: components: - parent: 853 pos: -6.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -14420,28 +14901,28 @@ entities: components: - parent: 853 pos: 15.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1169 type: TableGlassR components: - parent: 853 pos: 14.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1170 type: TableGlassR components: - parent: 853 pos: 18.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1171 type: chem_master components: - parent: 853 pos: 15.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: ChemMaster-reagentContainerContainer: @@ -14452,28 +14933,28 @@ entities: components: - parent: 853 pos: 18.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1173 type: TableGlassR components: - parent: 853 pos: 15.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1174 type: TableR components: - parent: 853 pos: 14.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1175 type: chem_dispenser components: - parent: 853 pos: 14.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: ReagentDispenser-reagentContainerContainer: @@ -14484,14 +14965,14 @@ entities: components: - parent: 853 pos: 6.5,-5.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 1177 type: ChairOfficeLight components: - parent: 853 pos: 6.5,-4.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - anchored: False type: Physics @@ -14500,84 +14981,84 @@ entities: components: - parent: 853 pos: 6.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1179 type: Table components: - parent: 853 pos: 7.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1180 type: Table components: - parent: 853 pos: 8.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1181 type: Table components: - parent: 853 pos: 8.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1182 type: Table components: - parent: 853 pos: 8.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1183 type: LowWall components: - parent: 853 pos: -38.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1184 type: LowWall components: - parent: 853 pos: -37.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1185 type: SpawnPointSecurityOfficer components: - parent: 853 pos: -7.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1186 type: SpawnPointStationEngineer components: - parent: 853 pos: 33.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1187 type: solid_wall components: - parent: 853 pos: -34.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1188 type: solid_wall components: - parent: 853 pos: -38.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1189 type: Poweredlight components: - parent: 853 pos: -35,0.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14592,7 +15073,7 @@ entities: components: - parent: 853 pos: -35.166924,-3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -14603,7 +15084,7 @@ entities: components: - parent: 853 pos: -22,0.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14618,42 +15099,42 @@ entities: components: - parent: 853 pos: -33.298416,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1193 type: Window components: - parent: 853 pos: -18.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1194 type: Window components: - parent: 853 pos: -19.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1195 type: LowWall components: - parent: 853 pos: -19.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1196 type: LowWall components: - parent: 853 pos: -18.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1197 type: Poweredlight components: - parent: 853 pos: -22,2.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14668,7 +15149,7 @@ entities: components: - parent: 853 pos: -29.5,15 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14683,20 +15164,21 @@ entities: components: - parent: 853 pos: -0.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1200 type: TableCarpet components: - parent: 853 pos: -0.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1201 type: PoweredSmallLight components: - parent: 853 pos: -34,-0.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14711,7 +15193,7 @@ entities: components: - parent: 853 pos: -18,-4.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14726,21 +15208,20 @@ entities: components: - parent: 853 pos: 9.652517,18.48974 - rot: 3.141592653589793 rad type: Transform - uid: 1204 type: TableWood components: - parent: 853 pos: -7.5,21.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 1205 type: Poweredlight components: - parent: 853 pos: -1.5,15 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14755,21 +15236,20 @@ entities: components: - parent: 853 pos: 10.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1207 type: reinforced_wall components: - parent: 853 pos: -5.5,23.5 - rot: -1.5707963705062866 rad type: Transform - uid: 1208 type: ChairOfficeDark components: - parent: 853 pos: -11.5,8.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - anchored: False type: Physics @@ -14778,6 +15258,7 @@ entities: components: - parent: 853 pos: -13.5,8.5 + rot: 1.5707963705062866 rad type: Transform - anchored: False type: Physics @@ -14786,14 +15267,13 @@ entities: components: - parent: 853 pos: -1.7489221,25.142187 - rot: 3.141592653589793 rad type: Transform - uid: 1211 type: PoweredSmallLight components: - parent: 853 pos: -29.5,-9 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14808,14 +15288,14 @@ entities: components: - parent: 853 pos: 1.5,28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1213 type: Poweredlight components: - parent: 853 pos: -27,1.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14830,21 +15310,20 @@ entities: components: - parent: 853 pos: -38.496082,2.6274996 - rot: 1.5707963267948966 rad type: Transform - uid: 1215 type: ChairWood components: - parent: 853 pos: -30.5,0.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 1216 type: Poweredlight components: - parent: 853 pos: -20.5,3 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14859,7 +15338,7 @@ entities: components: - parent: 853 pos: -30.5,3 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14874,7 +15353,7 @@ entities: components: - parent: 853 pos: -32.5,6 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14889,7 +15368,7 @@ entities: components: - parent: 853 pos: -23,8.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14904,7 +15383,7 @@ entities: components: - parent: 853 pos: 38.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -14917,20 +15396,21 @@ entities: components: - parent: 853 pos: -29.434454,8.191761 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1222 type: ComputerPowerMonitoring components: - parent: 853 pos: 29.5,-1.5 + rot: 1.5707963705062866 rad type: Transform - uid: 1223 type: LockerToolFilled components: - parent: 853 pos: 35.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -14943,14 +15423,14 @@ entities: components: - parent: 853 pos: -29.340704,7.4573865 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1225 type: LockerToolFilled components: - parent: 853 pos: 35.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -14963,6 +15443,7 @@ entities: components: - parent: 853 pos: -30,9.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14977,7 +15458,7 @@ entities: components: - parent: 853 pos: -19,9.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -14992,21 +15473,21 @@ entities: components: - parent: 853 pos: 10.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1229 type: Table components: - parent: 853 pos: 10.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1230 type: PoweredSmallLight components: - parent: 853 pos: -14.5,-16 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15021,7 +15502,7 @@ entities: components: - parent: 853 pos: -7,-12.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15036,7 +15517,7 @@ entities: components: - parent: 853 pos: -11,-10.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15051,7 +15532,7 @@ entities: components: - parent: 853 pos: -27.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -15064,7 +15545,7 @@ entities: components: - parent: 853 pos: -27.5,12 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15079,28 +15560,27 @@ entities: components: - parent: 853 pos: -34.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1236 type: VendingMachineSnack components: - parent: 853 pos: -22.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1238 type: Table components: - parent: 853 pos: 18.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1239 type: SalternApc components: - parent: 853 pos: -5.5120974,-7.5 - rot: 1.5707963267948966 rad type: Transform - startingCharge: 11999.417 type: Battery @@ -15111,7 +15591,7 @@ entities: components: - parent: 853 pos: -3,-6.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15126,83 +15606,81 @@ entities: components: - parent: 853 pos: -29.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1242 type: Table components: - parent: 853 pos: -29.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1243 type: LowWall components: - parent: 853 pos: -36.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1244 type: LowWall components: - parent: 853 pos: -35.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1245 type: Catwalk components: - parent: 853 pos: -0.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1246 type: ApcExtensionCable components: - parent: 853 pos: -2.5,-15.5 - rot: 3.141592653589793 rad type: Transform - uid: 1247 type: ApcExtensionCable components: - parent: 853 pos: 6.5,-0.5 - rot: 3.141592653589793 rad type: Transform - uid: 1248 type: solid_wall components: - parent: 853 pos: -33.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1249 type: ApcExtensionCable components: - parent: 853 pos: 6.5,0.5 - rot: 3.141592653589793 rad type: Transform - uid: 1250 type: ComfyChair components: - parent: 853 pos: -7.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1251 type: solid_wall components: - parent: 853 pos: -33.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1252 type: PoweredSmallLight components: - parent: 853 pos: -19,16.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15217,7 +15695,7 @@ entities: components: - parent: 853 pos: -14.5,26 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15232,6 +15710,7 @@ entities: components: - parent: 853 pos: -19,22.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15246,6 +15725,7 @@ entities: components: - parent: 853 pos: -18,9.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15260,7 +15740,7 @@ entities: components: - parent: 853 pos: -0.5,-12 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15281,7 +15761,7 @@ entities: components: - parent: 853 pos: -11,8.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15296,7 +15776,7 @@ entities: components: - parent: 853 pos: -18.5,6 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15311,7 +15791,7 @@ entities: components: - parent: 853 pos: -11.5,6 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15326,7 +15806,7 @@ entities: components: - parent: 853 pos: -1.5,6 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15341,34 +15821,35 @@ entities: components: - parent: 853 pos: -33.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1263 type: VendingMachineEngivend components: - parent: 853 pos: 31.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1264 type: Table components: - parent: 853 pos: 25.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1265 type: Table components: - parent: 853 pos: 29.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1266 type: Poweredlight components: - parent: 853 pos: 6.0308504,2 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -15381,7 +15862,7 @@ entities: components: - parent: 853 pos: -0.5,-5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15396,6 +15877,7 @@ entities: components: - parent: 853 pos: 2,-9.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15410,6 +15892,7 @@ entities: components: - parent: 853 pos: 2,-4.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15424,13 +15907,14 @@ entities: components: - parent: 853 pos: 1.3437586,6.2515917 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1271 type: Poweredlight components: - parent: 853 pos: 2,7.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15445,6 +15929,7 @@ entities: components: - parent: 853 pos: 2,12.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15459,7 +15944,7 @@ entities: components: - parent: 853 pos: -1.5,10 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15474,6 +15959,7 @@ entities: components: - parent: 853 pos: -1,8.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15488,6 +15974,7 @@ entities: components: - parent: 853 pos: -4,8.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15502,7 +15989,7 @@ entities: components: - parent: 853 pos: -5,7.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15517,6 +16004,7 @@ entities: components: - parent: 853 pos: -10,7.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15531,7 +16019,7 @@ entities: components: - parent: 853 pos: -1.5,19 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -15544,7 +16032,7 @@ entities: components: - parent: 853 pos: -5,16.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15559,7 +16047,7 @@ entities: components: - parent: 853 pos: -6.0158176,18 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -15572,6 +16060,7 @@ entities: components: - parent: 853 pos: -15,20.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15586,35 +16075,35 @@ entities: components: - parent: 853 pos: -3.5,-1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 1283 type: solid_wall components: - parent: 853 pos: -34.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1284 type: reinforced_wall components: - parent: 853 pos: -10.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1285 type: reinforced_wall components: - parent: 853 pos: -10.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1286 type: PoweredSmallLight components: - parent: 853 pos: -7.5,26 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15629,13 +16118,19 @@ entities: components: - parent: 853 pos: 1.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 1288 type: PoweredSmallLight components: - parent: 853 pos: -4,17.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15650,6 +16145,7 @@ entities: components: - parent: 853 pos: -3,25.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15664,7 +16160,7 @@ entities: components: - parent: 853 pos: 10,30.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15679,6 +16175,7 @@ entities: components: - parent: 853 pos: -3,30.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15693,7 +16190,7 @@ entities: components: - parent: 853 pos: 5.5,28 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15708,7 +16205,7 @@ entities: components: - parent: 853 pos: 1.5,28 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15723,7 +16220,7 @@ entities: components: - parent: 853 pos: 10,25.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15738,7 +16235,7 @@ entities: components: - parent: 853 pos: 5,23.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15753,6 +16250,7 @@ entities: components: - parent: 853 pos: 2,23.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15767,7 +16265,7 @@ entities: components: - parent: 853 pos: 5.5,16 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15782,7 +16280,7 @@ entities: components: - parent: 853 pos: 1.5,16 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15797,7 +16295,7 @@ entities: components: - parent: 853 pos: 8.5,16 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15812,21 +16310,21 @@ entities: components: - parent: 853 pos: -34.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1301 type: solid_wall components: - parent: 853 pos: -34.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1302 type: Poweredlight components: - parent: 853 pos: 8.5,22 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15841,35 +16339,35 @@ entities: components: - parent: 853 pos: -34.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1304 type: solid_wall components: - parent: 853 pos: -34.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1305 type: solid_wall components: - parent: 853 pos: 8.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1306 type: solid_wall components: - parent: 853 pos: 7.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1307 type: PoweredSmallLight components: - parent: 853 pos: 17,15.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15884,7 +16382,7 @@ entities: components: - parent: 853 pos: 14,16.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15899,7 +16397,7 @@ entities: components: - parent: 853 pos: 8.5,15 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15914,6 +16412,7 @@ entities: components: - parent: 853 pos: 6,9.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15928,7 +16427,7 @@ entities: components: - parent: 853 pos: 11,9.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15943,7 +16442,7 @@ entities: components: - parent: 853 pos: 13.5,3 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15958,7 +16457,7 @@ entities: components: - parent: 853 pos: 18.5,3 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15973,7 +16472,7 @@ entities: components: - parent: 853 pos: 23.5,3 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -15988,7 +16487,7 @@ entities: components: - parent: 853 pos: 17,7.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16003,6 +16502,7 @@ entities: components: - parent: 853 pos: 12,10.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16017,7 +16517,7 @@ entities: components: - parent: 853 pos: 15.5,13 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16032,6 +16532,7 @@ entities: components: - parent: 853 pos: 18,8.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16046,6 +16547,7 @@ entities: components: - parent: 853 pos: 18,13.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16060,21 +16562,21 @@ entities: components: - parent: 853 pos: -34.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1321 type: solid_wall components: - parent: 853 pos: -34.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1322 type: Poweredlight components: - parent: 853 pos: 5.5,-22 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16089,7 +16591,7 @@ entities: components: - parent: 853 pos: 1.5,-22 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16104,7 +16606,7 @@ entities: components: - parent: 853 pos: 6,-17.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16119,6 +16621,7 @@ entities: components: - parent: 853 pos: 1,-17.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16133,14 +16636,14 @@ entities: components: - parent: 853 pos: 16.688538,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1327 type: Poweredlight components: - parent: 853 pos: 13,-3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16155,14 +16658,14 @@ entities: components: - parent: 853 pos: -34.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1329 type: Poweredlight components: - parent: 853 pos: 12.5,2 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16177,20 +16680,21 @@ entities: components: - parent: 853 pos: 5.768486,-12.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 1331 type: solid_wall components: - parent: 853 pos: -31.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1332 type: Poweredlight components: - parent: 853 pos: 6,-4.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16205,7 +16709,7 @@ entities: components: - parent: 853 pos: 6.5,-12 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16220,7 +16724,7 @@ entities: components: - parent: 853 pos: 9.5,-17 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16235,6 +16739,7 @@ entities: components: - parent: 853 pos: 12,-12.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16249,21 +16754,21 @@ entities: components: - parent: 853 pos: 51.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1337 type: solid_wall components: - parent: 853 pos: 47.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1338 type: ChairOfficeLight components: - parent: 853 pos: 10.5,-16.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - anchored: False type: Physics @@ -16272,7 +16777,7 @@ entities: components: - parent: 853 pos: 14.5,0.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - anchored: False type: Physics @@ -16281,7 +16786,7 @@ entities: components: - parent: 853 pos: 15.5,2 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16296,7 +16801,7 @@ entities: components: - parent: 853 pos: 19,-0.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16311,7 +16816,7 @@ entities: components: - parent: 853 pos: 20,-8.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16326,7 +16831,7 @@ entities: components: - parent: 853 pos: 12.518894,-11 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -16339,7 +16844,7 @@ entities: components: - parent: 853 pos: 25,11.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16354,14 +16859,14 @@ entities: components: - parent: 853 pos: -31.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1346 type: PoweredSmallLight components: - parent: 853 pos: 30.5,-6 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16376,7 +16881,7 @@ entities: components: - parent: 853 pos: 25.5,-1 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16391,7 +16896,7 @@ entities: components: - parent: 853 pos: 9.5,-18 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16406,35 +16911,35 @@ entities: components: - parent: 853 pos: -31.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1350 type: solid_wall components: - parent: 853 pos: -31.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1351 type: ApcExtensionCable components: - parent: 853 pos: -32.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1352 type: solid_wall components: - parent: 853 pos: -31.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1353 type: PoweredSmallLight components: - parent: 853 pos: 12.5,-19 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16449,14 +16954,14 @@ entities: components: - parent: 853 pos: 45.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1355 type: PoweredSmallLight components: - parent: 853 pos: 25.5,-19 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16471,7 +16976,7 @@ entities: components: - parent: 853 pos: 28,-15.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16486,42 +16991,42 @@ entities: components: - parent: 853 pos: 7.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1358 type: Catwalk components: - parent: 853 pos: 14.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1359 type: Catwalk components: - parent: 853 pos: 21.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1360 type: Catwalk components: - parent: 853 pos: 26.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1361 type: solid_wall components: - parent: 853 pos: -30.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1362 type: PoweredSmallLight components: - parent: 853 pos: 28,-10.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16536,14 +17041,14 @@ entities: components: - parent: 853 pos: -25.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1364 type: PoweredSmallLight components: - parent: 853 pos: 24,0.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16558,6 +17063,7 @@ entities: components: - parent: 853 pos: 26,-4.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16572,7 +17078,7 @@ entities: components: - parent: 853 pos: 35.5,-6 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16587,7 +17093,7 @@ entities: components: - parent: 853 pos: 38.5,-3 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16602,6 +17108,7 @@ entities: components: - parent: 853 pos: 26,11.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16616,7 +17123,7 @@ entities: components: - parent: 853 pos: -35,-4.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16631,6 +17138,7 @@ entities: components: - parent: 853 pos: 25,1.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16645,7 +17153,7 @@ entities: components: - parent: 853 pos: 30,1.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16660,13 +17168,14 @@ entities: components: - parent: 853 pos: 26.30795,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1373 type: Poweredlight components: - parent: 853 pos: 31,0.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16681,7 +17190,7 @@ entities: components: - parent: 853 pos: 31.5,2 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16696,7 +17205,7 @@ entities: components: - parent: 853 pos: 35.5,7 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16711,6 +17220,7 @@ entities: components: - parent: 853 pos: 29,-2.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16725,7 +17235,7 @@ entities: components: - parent: 853 pos: 36,-2.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16740,20 +17250,21 @@ entities: components: - parent: 853 pos: -27.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1379 type: solid_wall components: - parent: 853 pos: -26.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1380 type: Poweredlight components: - parent: 853 pos: 30,12.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16768,7 +17279,7 @@ entities: components: - parent: 853 pos: 37,12.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16783,7 +17294,7 @@ entities: components: - parent: 853 pos: 36.5,8 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16798,7 +17309,7 @@ entities: components: - parent: 853 pos: 44,-1.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16813,21 +17324,20 @@ entities: components: - parent: 853 pos: -4.5,5.5 - rot: 3.141592653589793 rad type: Transform - uid: 1385 type: reinforced_wall components: - parent: 853 pos: 12.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1386 type: Poweredlight components: - parent: 853 pos: 30.5,8 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16842,7 +17352,7 @@ entities: components: - parent: 853 pos: 38.5,-2 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16857,6 +17367,7 @@ entities: components: - parent: 853 pos: 37,2.5 + rot: 1.5707963705062866 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -16871,69 +17382,72 @@ entities: components: - parent: 853 pos: 18.507353,6.5 + rot: 1.5707963705062866 rad type: Transform - uid: 1390 type: WaterTankFull components: - parent: 853 pos: 35.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1391 type: WaterTankFull components: - parent: 853 pos: -19.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1392 type: ReinforcedWindow components: - parent: 853 pos: 51.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1393 type: solid_wall components: - parent: 853 pos: -26.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1394 type: TableGlass components: - parent: 853 pos: -2.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1395 type: ReinforcedWindow components: - parent: 853 pos: 51.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1396 type: AirlockCommandGlassLocked components: - parent: 853 pos: 4.5,27.5 - rot: -1.5707963705062866 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 1397 type: LowWall components: - parent: 853 pos: 3.5,27.5 - rot: -1.5707963705062866 rad type: Transform - uid: 1398 type: FirelockGlass components: - parent: 853 pos: 6.5,20.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -16942,959 +17456,958 @@ entities: components: - parent: 853 pos: 5.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1400 type: ReinforcedWindow components: - parent: 853 pos: 5.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1401 type: ReinforcedWindow components: - parent: 853 pos: 4.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1402 type: ReinforcedWindow components: - parent: 853 pos: 3.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1403 type: ReinforcedWindow components: - parent: 853 pos: 2.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1404 type: Window components: - parent: 853 pos: -1.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1405 type: Window components: - parent: 853 pos: -0.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1406 type: ReinforcedWindow components: - parent: 853 pos: 3.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1407 type: ReinforcedWindow components: - parent: 853 pos: 10.5,29.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1408 type: ReinforcedWindow components: - parent: 853 pos: 9.5,32.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1409 type: ReinforcedWindow components: - parent: 853 pos: 9.5,31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1410 type: ReinforcedWindow components: - parent: 853 pos: 8.5,32.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1411 type: ReinforcedWindow components: - parent: 853 pos: 8.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1412 type: ReinforcedWindow components: - parent: 853 pos: 7.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1413 type: ReinforcedWindow components: - parent: 853 pos: 6.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1414 type: ReinforcedWindow components: - parent: 853 pos: 5.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1415 type: ReinforcedWindow components: - parent: 853 pos: 4.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1416 type: ReinforcedWindow components: - parent: 853 pos: 3.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1417 type: ReinforcedWindow components: - parent: 853 pos: 2.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1418 type: ReinforcedWindow components: - parent: 853 pos: 1.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1419 type: ReinforcedWindow components: - parent: 853 pos: 0.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1420 type: ReinforcedWindow components: - parent: 853 pos: -0.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1421 type: ReinforcedWindow components: - parent: 853 pos: -1.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1422 type: ReinforcedWindow components: - parent: 853 pos: -1.5,32.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1423 type: ReinforcedWindow components: - parent: 853 pos: -3.5,29.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1424 type: ReinforcedWindow components: - parent: 853 pos: -2.5,32.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1425 type: ReinforcedWindow components: - parent: 853 pos: -2.5,31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1426 type: Window components: - parent: 853 pos: -7.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1427 type: Window components: - parent: 853 pos: -10.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1428 type: ReinforcedWindow components: - parent: 853 pos: -7.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1429 type: ReinforcedWindow components: - parent: 853 pos: -8.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1430 type: ReinforcedWindow components: - parent: 853 pos: -3.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1431 type: ReinforcedWindow components: - parent: 853 pos: -0.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1432 type: ReinforcedWindow components: - parent: 853 pos: 0.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1433 type: ReinforcedWindow components: - parent: 853 pos: -0.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1434 type: ReinforcedWindow components: - parent: 853 pos: -2.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1435 type: ReinforcedWindow components: - parent: 853 pos: -3.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1436 type: solid_wall components: - parent: 853 pos: -28.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1437 type: solid_wall components: - parent: 853 pos: -29.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1438 type: ReinforcedWindow components: - parent: 853 pos: -35.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1439 type: ReinforcedWindow components: - parent: 853 pos: -36.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1440 type: ReinforcedWindow components: - parent: 853 pos: -37.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1441 type: solid_wall components: - parent: 853 pos: -39.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1442 type: solid_wall components: - parent: 853 pos: -25.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1443 type: ReinforcedWindow components: - parent: 853 pos: -40.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1444 type: ReinforcedWindow components: - parent: 853 pos: -41.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1445 type: ReinforcedWindow components: - parent: 853 pos: -40.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1446 type: ReinforcedWindow components: - parent: 853 pos: -39.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1447 type: ReinforcedWindow components: - parent: 853 pos: -39.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1448 type: ReinforcedWindow components: - parent: 853 pos: -41.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1449 type: ReinforcedWindow components: - parent: 853 pos: -40.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1450 type: ReinforcedWindow components: - parent: 853 pos: -40.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1451 type: ReinforcedWindow components: - parent: 853 pos: -41.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1452 type: ReinforcedWindow components: - parent: 853 pos: -40.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1453 type: ReinforcedWindow components: - parent: 853 pos: -39.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1454 type: ReinforcedWindow components: - parent: 853 pos: -39.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1455 type: ReinforcedWindow components: - parent: 853 pos: -41.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1456 type: ReinforcedWindow components: - parent: 853 pos: -40.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1457 type: ReinforcedWindow components: - parent: 853 pos: -40.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1458 type: ReinforcedWindow components: - parent: 853 pos: -40.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1459 type: ReinforcedWindow components: - parent: 853 pos: -39.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1460 type: ReinforcedWindow components: - parent: 853 pos: -38.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1461 type: ReinforcedWindow components: - parent: 853 pos: -38.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1462 type: ReinforcedWindow components: - parent: 853 pos: -38.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1463 type: solid_wall components: - parent: 853 pos: -38.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1464 type: ReinforcedWindow components: - parent: 853 pos: -39.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1465 type: ReinforcedWindow components: - parent: 853 pos: -38.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1466 type: ReinforcedWindow components: - parent: 853 pos: -39.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1467 type: ReinforcedWindow components: - parent: 853 pos: -37.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1468 type: ReinforcedWindow components: - parent: 853 pos: -38.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1469 type: ReinforcedWindow components: - parent: 853 pos: -38.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1470 type: ReinforcedWindow components: - parent: 853 pos: -38.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1471 type: ReinforcedWindow components: - parent: 853 pos: -38.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1472 type: ReinforcedWindow components: - parent: 853 pos: -38.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1473 type: ReinforcedWindow components: - parent: 853 pos: -37.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1474 type: ReinforcedWindow components: - parent: 853 pos: -36.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1475 type: ReinforcedWindow components: - parent: 853 pos: -35.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1476 type: LowWall components: - parent: 853 pos: -27.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1477 type: solid_wall components: - parent: 853 pos: 25.5,-6.5 - rot: -1.5707963705062866 rad type: Transform - uid: 1478 type: LowWall components: - parent: 853 pos: -29.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1479 type: Window components: - parent: 853 pos: -29.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1480 type: Window components: - parent: 853 pos: -28.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1481 type: Window components: - parent: 853 pos: -27.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1482 type: ApcExtensionCable components: - parent: 853 pos: -7.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1483 type: ApcExtensionCable components: - parent: 853 pos: -7.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1484 type: Window components: - parent: 853 pos: -2.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1485 type: Window components: - parent: 853 pos: -4.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1486 type: Window components: - parent: 853 pos: -5.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1487 type: Window components: - parent: 853 pos: -4.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1488 type: Window components: - parent: 853 pos: -2.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1489 type: Window components: - parent: 853 pos: 0.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1490 type: Window components: - parent: 853 pos: 5.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1491 type: Window components: - parent: 853 pos: 5.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1492 type: Window components: - parent: 853 pos: 5.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1493 type: Window components: - parent: 853 pos: 7.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1494 type: Window components: - parent: 853 pos: 10.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1495 type: Window components: - parent: 853 pos: 11.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1496 type: Window components: - parent: 853 pos: 11.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1497 type: LowWall components: - parent: 853 pos: 11.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1498 type: LowWall components: - parent: 853 pos: 11.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1499 type: LowWall components: - parent: 853 pos: 7.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1500 type: LowWall components: - parent: 853 pos: 10.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1501 type: Window components: - parent: 853 pos: 20.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1502 type: LowWall components: - parent: 853 pos: 20.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1503 type: LowWall components: - parent: 853 pos: 20.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1504 type: Table components: - parent: 853 pos: 6.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1505 type: Window components: - parent: 853 pos: 18.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1506 type: Window components: - parent: 853 pos: 16.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1507 type: Window components: - parent: 853 pos: 13.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1508 type: Window components: - parent: 853 pos: 13.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1509 type: Window components: - parent: 853 pos: 12.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1510 type: Window components: - parent: 853 pos: 6.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1511 type: Window components: - parent: 853 pos: 9.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1512 type: Window components: - parent: 853 pos: 8.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1513 type: Window components: - parent: 853 pos: 7.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1514 type: Window components: - parent: 853 pos: 8.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1515 type: Window components: - parent: 853 pos: 9.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1516 type: Window components: - parent: 853 pos: 10.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1517 type: Window components: - parent: 853 pos: 11.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1518 type: Window components: - parent: 853 pos: 13.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1519 type: Window components: - parent: 853 pos: 13.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1520 type: Window components: - parent: 853 pos: 13.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1521 type: Window components: - parent: 853 pos: 22.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1522 type: Window components: - parent: 853 pos: 21.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1523 type: Window components: - parent: 853 pos: 20.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1524 type: Window components: - parent: 853 pos: 19.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1525 type: Window components: - parent: 853 pos: 14.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1526 type: ReinforcedWindow components: - parent: 853 pos: 8.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1527 type: ReinforcedWindow components: - parent: 853 pos: 6.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1528 type: ReinforcedWindow components: - parent: 853 pos: 6.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1529 type: ReinforcedWindow components: - parent: 853 pos: 14.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1530 type: ReinforcedWindow components: - parent: 853 pos: 14.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1531 type: ReinforcedWindow components: - parent: 853 pos: 14.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1532 type: LowWall components: - parent: 853 pos: 14.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1533 type: LowWall components: - parent: 853 pos: 14.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1534 type: LowWall components: - parent: 853 pos: 14.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1535 type: Chair components: - parent: 853 pos: -3.5,-23.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - anchored: False type: Physics @@ -17903,6 +18416,7 @@ entities: components: - parent: 853 pos: 38.5,-0.5 + rot: 1.5707963705062866 rad type: Transform - anchored: False type: Physics @@ -17911,55 +18425,56 @@ entities: components: - parent: 853 pos: 39.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1538 type: VendingMachineYouTool components: - parent: 853 pos: 31.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1539 type: HVWire components: - parent: 853 pos: 58.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1540 type: SignArmory components: - parent: 853 pos: -13.678196,17.5 + rot: 1.5707963705062866 rad type: Transform - uid: 1541 type: SignConference components: - parent: 853 pos: -2.6767635,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1542 type: SignDirectionalBridge components: - parent: 853 pos: 1.3437586,6.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 1543 type: WeldingFuelTank components: - parent: 853 pos: 33.5,12.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 1544 type: MedicalScanner components: - parent: 853 pos: 9.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: MedicalScanner-bodyContainer: @@ -17970,153 +18485,154 @@ entities: components: - parent: 853 pos: 29.5,-2.5 + rot: 1.5707963705062866 rad type: Transform - uid: 1546 type: HVWire components: - parent: 853 pos: 58.5,-32.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1547 type: HVWire components: - parent: 853 pos: 57.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1548 type: ReinforcedWindow components: - parent: 853 pos: 23.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1549 type: ReinforcedWindow components: - parent: 853 pos: 21.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1550 type: SignSmoking components: - parent: 853 pos: -1.2919803,-7.6148567 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1551 type: solid_wall components: - parent: 853 pos: -1.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1552 type: solid_wall components: - parent: 853 pos: -20.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1553 type: ReinforcedWindow components: - parent: 853 pos: 36.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1554 type: ReinforcedWindow components: - parent: 853 pos: 36.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1555 type: ReinforcedWindow components: - parent: 853 pos: 35.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1556 type: ReinforcedWindow components: - parent: 853 pos: 34.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1557 type: ReinforcedWindow components: - parent: 853 pos: 33.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1558 type: ReinforcedWindow components: - parent: 853 pos: 32.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1559 type: ReinforcedWindow components: - parent: 853 pos: 31.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1560 type: ReinforcedWindow components: - parent: 853 pos: 30.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1561 type: ReinforcedWindow components: - parent: 853 pos: 30.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1562 type: Window components: - parent: 853 pos: 34.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1563 type: Window components: - parent: 853 pos: 32.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1564 type: Catwalk components: - parent: 853 pos: -16.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1565 type: Catwalk components: - parent: 853 pos: -13.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1566 type: ShotgunSawn components: - parent: 853 pos: -6.488487,-6.7298017 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: BoltActionBarrel-ammo-container: @@ -18129,35 +18645,35 @@ entities: components: - parent: 853 pos: -8.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1568 type: Catwalk components: - parent: 853 pos: -9.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1569 type: Catwalk components: - parent: 853 pos: -9.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1570 type: SignHead components: - parent: 853 pos: -9.687853,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1571 type: ChairOfficeDark components: - parent: 853 pos: 30.5,-2.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - anchored: False type: Physics @@ -18166,14 +18682,14 @@ entities: components: - parent: 853 pos: 0.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1573 type: CrateGeneric components: - parent: 853 pos: 39.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -18186,7 +18702,7 @@ entities: components: - parent: 853 pos: 38.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -18199,329 +18715,334 @@ entities: components: - parent: 853 pos: 6.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1576 type: Catwalk components: - parent: 853 pos: -32.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1577 type: Catwalk components: - parent: 853 pos: -33.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1578 type: Catwalk components: - parent: 853 pos: -32.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1579 type: Catwalk components: - parent: 853 pos: -32.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1580 type: Catwalk components: - parent: 853 pos: -15.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1581 type: Catwalk components: - parent: 853 pos: -16.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1582 type: Catwalk components: - parent: 853 pos: -20.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1583 type: Catwalk components: - parent: 853 pos: -16.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1584 type: Catwalk components: - parent: 853 pos: -4.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1585 type: Catwalk components: - parent: 853 pos: -4.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1586 type: Catwalk components: - parent: 853 pos: -4.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1587 type: Catwalk components: - parent: 853 pos: -0.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1588 type: Catwalk components: - parent: 853 pos: 6.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1589 type: Catwalk components: - parent: 853 pos: 8.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1590 type: Catwalk components: - parent: 853 pos: 12.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1591 type: AirlockMaintEngiLocked components: - parent: 853 pos: 33.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 1592 type: Catwalk components: - parent: 853 pos: 27.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1593 type: Catwalk components: - parent: 853 pos: 21.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1594 type: ReinforcedWindow components: - parent: 853 pos: 51.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1595 type: SignSmoking components: - parent: 853 pos: 42.70487,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1596 type: solid_wall components: - parent: 853 pos: -22.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1597 type: reinforced_wall components: - parent: 853 pos: 39.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1598 type: reinforced_wall components: - parent: 853 pos: 38.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1599 type: reinforced_wall components: - parent: 853 pos: 37.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1600 type: reinforced_wall components: - parent: 853 pos: 37.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1601 type: reinforced_wall components: - parent: 853 pos: 37.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1602 type: reinforced_wall components: - parent: 853 pos: 37.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1603 type: reinforced_wall components: - parent: 853 pos: 37.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1604 type: reinforced_wall components: - parent: 853 pos: 38.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1605 type: reinforced_wall components: - parent: 853 pos: 39.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1606 type: reinforced_wall components: - parent: 853 pos: 40.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1607 type: reinforced_wall components: - parent: 853 pos: 41.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1608 type: reinforced_wall components: - parent: 853 pos: 42.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1609 type: reinforced_wall components: - parent: 853 pos: 43.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1610 type: reinforced_wall components: - parent: 853 pos: 44.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1611 type: reinforced_wall components: - parent: 853 pos: 44.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1612 type: reinforced_wall components: - parent: 853 pos: 44.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1613 type: reinforced_wall components: - parent: 853 pos: 44.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1614 type: reinforced_wall components: - parent: 853 pos: 44.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1615 type: reinforced_wall components: - parent: 853 pos: 43.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1616 type: reinforced_wall components: - parent: 853 pos: 42.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1617 type: LowWall components: - parent: 853 pos: 40.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1618 type: LowWall components: - parent: 853 pos: 39.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1619 type: LowWall components: - parent: 853 pos: 36.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1620 type: Table components: - parent: 853 pos: -4.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1621 type: PoweredSmallLight components: - parent: 853 pos: -12.5,-6 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -18536,7 +19057,7 @@ entities: components: - parent: 853 pos: -25.5,-10 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -18551,1518 +19072,1519 @@ entities: components: - parent: 853 pos: -21.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1624 type: solid_wall components: - parent: 853 pos: 37.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1625 type: solid_wall components: - parent: 853 pos: 37.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1626 type: solid_wall components: - parent: 853 pos: 37.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1627 type: solid_wall components: - parent: 853 pos: 36.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1628 type: solid_wall components: - parent: 853 pos: 35.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1629 type: solid_wall components: - parent: 853 pos: -8.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1630 type: solid_wall components: - parent: 853 pos: 36.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1631 type: LowWall components: - parent: 853 pos: 51.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1632 type: LowWall components: - parent: 853 pos: 51.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1633 type: solid_wall components: - parent: 853 pos: 41.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1634 type: solid_wall components: - parent: 853 pos: 41.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1635 type: solid_wall components: - parent: 853 pos: 41.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1636 type: solid_wall components: - parent: 853 pos: 41.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1637 type: solid_wall components: - parent: 853 pos: 41.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1638 type: solid_wall components: - parent: 853 pos: 40.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1639 type: solid_wall components: - parent: 853 pos: 39.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1640 type: solid_wall components: - parent: 853 pos: 38.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1641 type: solid_wall components: - parent: 853 pos: 37.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1642 type: solid_wall components: - parent: 853 pos: 36.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1643 type: solid_wall components: - parent: 853 pos: 36.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1644 type: solid_wall components: - parent: 853 pos: 36.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1645 type: solid_wall components: - parent: 853 pos: 36.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1646 type: LowWall components: - parent: 853 pos: 37.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1647 type: solid_wall components: - parent: 853 pos: 36.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1648 type: LowWall components: - parent: 853 pos: 51.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1649 type: solid_wall components: - parent: 853 pos: 35.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1650 type: solid_wall components: - parent: 853 pos: 31.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1651 type: solid_wall components: - parent: 853 pos: 42.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1652 type: solid_wall components: - parent: 853 pos: 45.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1653 type: solid_wall components: - parent: 853 pos: 44.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1654 type: WaterTankFull components: - parent: 853 pos: 10.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1655 type: solid_wall components: - parent: 853 pos: 44.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1656 type: solid_wall components: - parent: 853 pos: 44.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1657 type: solid_wall components: - parent: 853 pos: 44.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1658 type: solid_wall components: - parent: 853 pos: 44.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1659 type: solid_wall components: - parent: 853 pos: 44.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1660 type: solid_wall components: - parent: 853 pos: 44.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1661 type: solid_wall components: - parent: 853 pos: 43.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1662 type: solid_wall components: - parent: 853 pos: 42.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1663 type: solid_wall components: - parent: 853 pos: 41.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1664 type: solid_wall components: - parent: 853 pos: 40.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1665 type: solid_wall components: - parent: 853 pos: 39.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1666 type: solid_wall components: - parent: 853 pos: 39.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1667 type: solid_wall components: - parent: 853 pos: 39.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1668 type: solid_wall components: - parent: 853 pos: 39.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1669 type: solid_wall components: - parent: 853 pos: 38.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1670 type: solid_wall components: - parent: 853 pos: 37.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1671 type: solid_wall components: - parent: 853 pos: 36.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1672 type: solid_wall components: - parent: 853 pos: 35.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1673 type: solid_wall components: - parent: 853 pos: 34.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1674 type: solid_wall components: - parent: 853 pos: 33.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1675 type: solid_wall components: - parent: 853 pos: 32.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1676 type: solid_wall components: - parent: 853 pos: 31.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1677 type: solid_wall components: - parent: 853 pos: 30.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1678 type: solid_wall components: - parent: 853 pos: 29.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1679 type: solid_wall components: - parent: 853 pos: 28.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1680 type: solid_wall components: - parent: 853 pos: 28.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1681 type: solid_wall components: - parent: 853 pos: 28.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1682 type: solid_wall components: - parent: 853 pos: 28.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1683 type: solid_wall components: - parent: 853 pos: 28.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1684 type: solid_wall components: - parent: 853 pos: 28.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1685 type: solid_wall components: - parent: 853 pos: 28.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1686 type: solid_wall components: - parent: 853 pos: 28.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1687 type: solid_wall components: - parent: 853 pos: 28.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1688 type: solid_wall components: - parent: 853 pos: 28.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1689 type: solid_wall components: - parent: 853 pos: 28.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1690 type: solid_wall components: - parent: 853 pos: 28.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1691 type: solid_wall components: - parent: 853 pos: 28.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1692 type: solid_wall components: - parent: 853 pos: 27.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1693 type: solid_wall components: - parent: 853 pos: 26.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1694 type: solid_wall components: - parent: 853 pos: 25.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1695 type: solid_wall components: - parent: 853 pos: 24.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1696 type: solid_wall components: - parent: 853 pos: 23.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1697 type: solid_wall components: - parent: 853 pos: 23.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1698 type: solid_wall components: - parent: 853 pos: 23.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1699 type: SignCloning components: - parent: 853 pos: 7.326743,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1700 type: solid_wall components: - parent: 853 pos: 0.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1701 type: solid_wall components: - parent: 853 pos: 0.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1702 type: solid_wall components: - parent: 853 pos: 0.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1703 type: ReinforcedWindow components: - parent: 853 pos: 51.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1704 type: LowWall components: - parent: 853 pos: 51.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1705 type: solid_wall components: - parent: 853 pos: 18.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1706 type: solid_wall components: - parent: 853 pos: 19.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1707 type: solid_wall components: - parent: 853 pos: 13.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1708 type: solid_wall components: - parent: 853 pos: 12.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1709 type: solid_wall components: - parent: 853 pos: 1.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1710 type: solid_wall components: - parent: 853 pos: 0.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1711 type: solid_wall components: - parent: 853 pos: 0.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1712 type: solid_wall components: - parent: 853 pos: 8.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1713 type: solid_wall components: - parent: 853 pos: 7.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1714 type: solid_wall components: - parent: 853 pos: 6.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1715 type: solid_wall components: - parent: 853 pos: 6.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1716 type: solid_wall components: - parent: 853 pos: 5.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1717 type: LowWall components: - parent: 853 pos: 5.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1718 type: LowWall components: - parent: 853 pos: 5.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1719 type: LowWall components: - parent: 853 pos: 4.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1720 type: LowWall components: - parent: 853 pos: 3.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1721 type: LowWall components: - parent: 853 pos: 2.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1722 type: LowWall components: - parent: 853 pos: 9.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1723 type: LowWall components: - parent: 853 pos: 10.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1724 type: LowWall components: - parent: 853 pos: 11.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1725 type: solid_wall components: - parent: 853 pos: 45.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1726 type: LowWall components: - parent: 853 pos: 34.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1727 type: LowWall components: - parent: 853 pos: 32.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1728 type: solid_wall components: - parent: 853 pos: 31.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1729 type: solid_wall components: - parent: 853 pos: 30.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1730 type: solid_wall components: - parent: 853 pos: 29.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1731 type: solid_wall components: - parent: 853 pos: 29.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1732 type: solid_wall components: - parent: 853 pos: 29.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1733 type: solid_wall components: - parent: 853 pos: 28.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1734 type: solid_wall components: - parent: 853 pos: 30.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1735 type: solid_wall components: - parent: 853 pos: 30.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1736 type: solid_wall components: - parent: 853 pos: 30.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1737 type: LowWall components: - parent: 853 pos: 32.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1738 type: LowWall components: - parent: 853 pos: 34.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1739 type: LowWall components: - parent: 853 pos: 30.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1740 type: LowWall components: - parent: 853 pos: 30.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1741 type: LowWall components: - parent: 853 pos: 30.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1742 type: LowWall components: - parent: 853 pos: 31.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1743 type: LowWall components: - parent: 853 pos: 32.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1744 type: LowWall components: - parent: 853 pos: 33.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1745 type: LowWall components: - parent: 853 pos: 34.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1746 type: LowWall components: - parent: 853 pos: 35.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1747 type: LowWall components: - parent: 853 pos: 36.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1748 type: LowWall components: - parent: 853 pos: 36.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1749 type: solid_wall components: - parent: 853 pos: 29.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1750 type: solid_wall components: - parent: 853 pos: 29.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1751 type: solid_wall components: - parent: 853 pos: 29.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1752 type: solid_wall components: - parent: 853 pos: 29.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1753 type: HVWire components: - parent: 853 pos: 54.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1754 type: LowWall components: - parent: 853 pos: 21.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1755 type: LowWall components: - parent: 853 pos: 23.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1756 type: solid_wall components: - parent: 853 pos: 25.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1757 type: LowWall components: - parent: 853 pos: 19.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1758 type: HVWire components: - parent: 853 pos: 58.5,-30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1759 type: solid_wall components: - parent: 853 pos: 25.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1760 type: solid_wall components: - parent: 853 pos: 25.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1761 type: solid_wall components: - parent: 853 pos: 25.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1762 type: solid_wall components: - parent: 853 pos: 25.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1763 type: solid_wall components: - parent: 853 pos: 25.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1764 type: solid_wall components: - parent: 853 pos: 25.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1765 type: solid_wall components: - parent: 853 pos: 26.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1766 type: solid_wall components: - parent: 853 pos: 24.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1767 type: solid_wall components: - parent: 853 pos: 24.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1768 type: solid_wall components: - parent: 853 pos: 23.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1769 type: solid_wall components: - parent: 853 pos: 18.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1770 type: solid_wall components: - parent: 853 pos: 17.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1771 type: solid_wall components: - parent: 853 pos: 17.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1772 type: solid_wall components: - parent: 853 pos: 17.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1773 type: solid_wall components: - parent: 853 pos: 17.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1774 type: solid_wall components: - parent: 853 pos: 16.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1775 type: solid_wall components: - parent: 853 pos: 12.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1776 type: LowWall components: - parent: 853 pos: 19.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1777 type: LowWall components: - parent: 853 pos: 20.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1778 type: LowWall components: - parent: 853 pos: 21.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1779 type: LowWall components: - parent: 853 pos: 22.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1780 type: HVWire components: - parent: 853 pos: 56.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1781 type: HVWire components: - parent: 853 pos: 58.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1782 type: SignDirectionalBridge components: - parent: 853 pos: -20.49181,6.256847 + rot: 1.5707963705062866 rad type: Transform - uid: 1783 type: SignDirectionalSec components: - parent: 853 pos: 5.9947615,6.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - uid: 1784 type: HVWire components: - parent: 853 pos: 52.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1785 type: solid_wall components: - parent: 853 pos: -0.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1786 type: solid_wall components: - parent: 853 pos: -19.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1787 type: solid_wall components: - parent: 853 pos: -21.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1788 type: solid_wall components: - parent: 853 pos: 17.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1789 type: solid_wall components: - parent: 853 pos: 17.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1790 type: solid_wall components: - parent: 853 pos: 17.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1791 type: solid_wall components: - parent: 853 pos: 17.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1792 type: solid_wall components: - parent: 853 pos: 16.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1793 type: solid_wall components: - parent: 853 pos: 17.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1794 type: solid_wall components: - parent: 853 pos: 16.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1795 type: solid_wall components: - parent: 853 pos: 15.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1796 type: solid_wall components: - parent: 853 pos: 14.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1797 type: solid_wall components: - parent: 853 pos: 13.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1798 type: solid_wall components: - parent: 853 pos: 12.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1799 type: solid_wall components: - parent: 853 pos: 11.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1800 type: reinforced_wall components: - parent: 853 pos: 11.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1801 type: reinforced_wall components: - parent: 853 pos: 10.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1802 type: reinforced_wall components: - parent: 853 pos: 9.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1803 type: reinforced_wall components: - parent: 853 pos: 7.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1804 type: reinforced_wall components: - parent: 853 pos: 6.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1805 type: reinforced_wall components: - parent: 853 pos: 5.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1806 type: reinforced_wall components: - parent: 853 pos: 5.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1807 type: reinforced_wall components: - parent: 853 pos: 5.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1808 type: reinforced_wall components: - parent: 853 pos: 5.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1809 type: reinforced_wall components: - parent: 853 pos: 5.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1810 type: reinforced_wall components: - parent: 853 pos: 5.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1811 type: reinforced_wall components: - parent: 853 pos: 5.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1812 type: reinforced_wall components: - parent: 853 pos: 11.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1813 type: reinforced_wall components: - parent: 853 pos: 11.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1814 type: reinforced_wall components: - parent: 853 pos: 11.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1815 type: reinforced_wall components: - parent: 853 pos: 11.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1816 type: reinforced_wall components: - parent: 853 pos: 11.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1817 type: reinforced_wall components: - parent: 853 pos: 11.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1818 type: reinforced_wall components: - parent: 853 pos: 10.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1819 type: reinforced_wall components: - parent: 853 pos: 6.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1820 type: LowWall components: - parent: 853 pos: 8.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1821 type: solid_wall components: - parent: 853 pos: 14.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1822 type: solid_wall components: - parent: 853 pos: 14.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1823 type: solid_wall components: - parent: 853 pos: 14.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1824 type: ReinforcedWindow components: - parent: 853 pos: 19.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1825 type: HVWire components: - parent: 853 pos: 53.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1826 type: HVWire components: - parent: 853 pos: 55.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1827 type: solid_wall components: - parent: 853 pos: 14.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1828 type: solid_wall components: - parent: 853 pos: -17.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1829 type: solid_wall components: - parent: 853 pos: -20.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1830 type: solid_wall components: - parent: 853 pos: -21.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1831 type: solid_wall components: - parent: 853 pos: 11.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1832 type: solid_wall components: - parent: 853 pos: 11.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1833 type: solid_wall components: - parent: 853 pos: 11.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1834 type: solid_wall components: - parent: 853 pos: 11.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1835 type: solid_wall components: - parent: 853 pos: 11.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1836 type: solid_wall components: - parent: 853 pos: 11.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1837 type: solid_wall components: - parent: 853 pos: 10.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1838 type: solid_wall components: - parent: 853 pos: 9.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1839 type: Poweredlight components: - parent: 853 pos: -24.5,-9 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -20077,203 +20599,203 @@ entities: components: - parent: 853 pos: -21.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1841 type: solid_wall components: - parent: 853 pos: 6.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1842 type: solid_wall components: - parent: 853 pos: 5.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1843 type: solid_wall components: - parent: 853 pos: 6.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1844 type: solid_wall components: - parent: 853 pos: 5.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1845 type: solid_wall components: - parent: 853 pos: 6.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1846 type: reinforced_wall components: - parent: 853 pos: 10.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1847 type: reinforced_wall components: - parent: 853 pos: 9.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1848 type: reinforced_wall components: - parent: 853 pos: 8.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1849 type: reinforced_wall components: - parent: 853 pos: 7.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1850 type: reinforced_wall components: - parent: 853 pos: 6.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1851 type: reinforced_wall components: - parent: 853 pos: 5.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1852 type: reinforced_wall components: - parent: 853 pos: 10.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1853 type: reinforced_wall components: - parent: 853 pos: 10.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1854 type: reinforced_wall components: - parent: 853 pos: 10.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1855 type: reinforced_wall components: - parent: 853 pos: 10.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1856 type: reinforced_wall components: - parent: 853 pos: 10.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1857 type: reinforced_wall components: - parent: 853 pos: 10.5,28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1858 type: reinforced_wall components: - parent: 853 pos: 10.5,30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1859 type: reinforced_wall components: - parent: 853 pos: 10.5,31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1860 type: reinforced_wall components: - parent: 853 pos: -3.5,31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1861 type: reinforced_wall components: - parent: 853 pos: -3.5,30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1862 type: reinforced_wall components: - parent: 853 pos: -3.5,28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1863 type: reinforced_wall components: - parent: 853 pos: -3.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1864 type: reinforced_wall components: - parent: 853 pos: -3.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1865 type: reinforced_wall components: - parent: 853 pos: -3.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1866 type: reinforced_wall components: - parent: 853 pos: 1.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1867 type: reinforced_wall components: - parent: 853 pos: 0.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1868 type: reinforced_wall components: - parent: 853 pos: -0.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1869 type: AirlockCommandLocked @@ -20282,2971 +20804,2979 @@ entities: type: MetaData - parent: 853 pos: 6.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - access: - - HeadOfPersonnel type: AccessReader + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 1870 type: reinforced_wall components: - parent: 853 pos: -2.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1871 type: reinforced_wall components: - parent: 853 pos: -3.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1872 type: reinforced_wall components: - parent: 853 pos: -3.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1873 type: reinforced_wall components: - parent: 853 pos: -3.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1874 type: solid_wall components: - parent: 853 pos: 1.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1875 type: solid_wall components: - parent: 853 pos: 1.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1876 type: solid_wall components: - parent: 853 pos: 0.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1877 type: solid_wall components: - parent: 853 pos: -2.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1878 type: solid_wall components: - parent: 853 pos: 1.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1879 type: solid_wall components: - parent: 853 pos: 5.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1880 type: solid_wall components: - parent: 853 pos: 5.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1881 type: solid_wall components: - parent: 853 pos: 5.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1882 type: solid_wall components: - parent: 853 pos: 5.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1883 type: solid_wall components: - parent: 853 pos: 6.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1884 type: solid_wall components: - parent: 853 pos: 7.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1885 type: solid_wall components: - parent: 853 pos: 8.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1886 type: solid_wall components: - parent: 853 pos: 9.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1887 type: LowWall components: - parent: 853 pos: 3.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1888 type: LowWall components: - parent: 853 pos: -1.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1889 type: LowWall components: - parent: 853 pos: -0.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1890 type: LowWall components: - parent: 853 pos: -3.5,29.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1891 type: LowWall components: - parent: 853 pos: 10.5,29.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1892 type: LowWall components: - parent: 853 pos: 9.5,31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1893 type: LowWall components: - parent: 853 pos: 9.5,32.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1894 type: LowWall components: - parent: 853 pos: 8.5,32.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1895 type: LowWall components: - parent: 853 pos: 8.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1896 type: LowWall components: - parent: 853 pos: 7.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1897 type: LowWall components: - parent: 853 pos: 6.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1898 type: LowWall components: - parent: 853 pos: 5.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1899 type: LowWall components: - parent: 853 pos: 4.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1900 type: LowWall components: - parent: 853 pos: 3.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1901 type: LowWall components: - parent: 853 pos: 2.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1902 type: LowWall components: - parent: 853 pos: 1.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1903 type: LowWall components: - parent: 853 pos: 0.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1904 type: LowWall components: - parent: 853 pos: -0.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1905 type: LowWall components: - parent: 853 pos: -1.5,33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1906 type: LowWall components: - parent: 853 pos: -1.5,32.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1907 type: LowWall components: - parent: 853 pos: -2.5,31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1908 type: LowWall components: - parent: 853 pos: -2.5,32.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1909 type: LowWall components: - parent: 853 pos: 6.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1910 type: LowWall components: - parent: 853 pos: 6.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1911 type: reinforced_wall components: - parent: 853 pos: 1.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1912 type: reinforced_wall components: - parent: 853 pos: 0.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1913 type: reinforced_wall components: - parent: 853 pos: -0.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1914 type: reinforced_wall components: - parent: 853 pos: -1.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1915 type: reinforced_wall components: - parent: 853 pos: -2.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1916 type: reinforced_wall components: - parent: 853 pos: -3.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1917 type: reinforced_wall components: - parent: 853 pos: -4.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1918 type: reinforced_wall components: - parent: 853 pos: -4.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1919 type: reinforced_wall components: - parent: 853 pos: -4.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1920 type: reinforced_wall components: - parent: 853 pos: -4.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1921 type: reinforced_wall components: - parent: 853 pos: -4.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1922 type: reinforced_wall components: - parent: 853 pos: -5.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1923 type: LowWall components: - parent: 853 pos: -7.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1924 type: reinforced_wall components: - parent: 853 pos: -3.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1925 type: reinforced_wall components: - parent: 853 pos: -2.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1926 type: reinforced_wall components: - parent: 853 pos: -1.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1927 type: reinforced_wall components: - parent: 853 pos: -0.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1928 type: reinforced_wall components: - parent: 853 pos: 0.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1929 type: reinforced_wall components: - parent: 853 pos: 0.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1930 type: reinforced_wall components: - parent: 853 pos: 0.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1931 type: reinforced_wall components: - parent: 853 pos: -5.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1932 type: reinforced_wall components: - parent: 853 pos: -5.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1933 type: reinforced_wall components: - parent: 853 pos: -5.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1934 type: Carpet components: - parent: 853 pos: -4.5,-1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 1935 type: Carpet components: - parent: 853 pos: -5.5,-1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 1936 type: Carpet components: - parent: 853 pos: -2.5,-1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 1937 type: GoldStack components: - parent: 853 pos: -2.615473,16.701466 - rot: 1.5707963267948966 rad type: Transform - uid: 1938 type: Window components: - parent: 853 pos: 40.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1939 type: reinforced_wall components: - parent: 853 pos: -11.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1940 type: reinforced_wall components: - parent: 853 pos: -12.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1941 type: reinforced_wall components: - parent: 853 pos: -13.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1942 type: reinforced_wall components: - parent: 853 pos: -14.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1943 type: reinforced_wall components: - parent: 853 pos: -15.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1944 type: reinforced_wall components: - parent: 853 pos: -16.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1945 type: reinforced_wall components: - parent: 853 pos: -16.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1946 type: reinforced_wall components: - parent: 853 pos: -15.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1947 type: reinforced_wall components: - parent: 853 pos: -14.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1948 type: reinforced_wall components: - parent: 853 pos: -13.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1949 type: reinforced_wall components: - parent: 853 pos: -12.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1950 type: reinforced_wall components: - parent: 853 pos: -11.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1951 type: reinforced_wall components: - parent: 853 pos: -10.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1952 type: Window components: - parent: 853 pos: 39.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1953 type: reinforced_wall components: - parent: 853 pos: -16.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1954 type: reinforced_wall components: - parent: 853 pos: -16.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1955 type: reinforced_wall components: - parent: 853 pos: -16.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1956 type: reinforced_wall components: - parent: 853 pos: -16.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1957 type: reinforced_wall components: - parent: 853 pos: -16.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1958 type: reinforced_wall components: - parent: 853 pos: -15.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1959 type: reinforced_wall components: - parent: 853 pos: -15.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1960 type: reinforced_wall components: - parent: 853 pos: -15.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1961 type: reinforced_wall components: - parent: 853 pos: -15.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1962 type: reinforced_wall components: - parent: 853 pos: -15.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1963 type: reinforced_wall components: - parent: 853 pos: -14.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1964 type: reinforced_wall components: - parent: 853 pos: -13.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1965 type: reinforced_wall components: - parent: 853 pos: -11.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1966 type: reinforced_wall components: - parent: 853 pos: -10.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1967 type: reinforced_wall components: - parent: 853 pos: -10.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1968 type: reinforced_wall components: - parent: 853 pos: -10.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1969 type: reinforced_wall components: - parent: 853 pos: -14.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1970 type: reinforced_wall components: - parent: 853 pos: -14.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1971 type: reinforced_wall components: - parent: 853 pos: -14.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1972 type: reinforced_wall components: - parent: 853 pos: -13.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1973 type: reinforced_wall components: - parent: 853 pos: -12.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1974 type: reinforced_wall components: - parent: 853 pos: -11.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1975 type: reinforced_wall components: - parent: 853 pos: -10.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1976 type: reinforced_wall components: - parent: 853 pos: -10.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1977 type: reinforced_wall components: - parent: 853 pos: -10.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1978 type: reinforced_wall components: - parent: 853 pos: -10.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1979 type: reinforced_wall components: - parent: 853 pos: -14.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1980 type: reinforced_wall components: - parent: 853 pos: -15.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1981 type: reinforced_wall components: - parent: 853 pos: -15.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1982 type: reinforced_wall components: - parent: 853 pos: -15.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1983 type: reinforced_wall components: - parent: 853 pos: -15.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1984 type: AirlockMaintSecLocked components: - parent: 853 pos: -14.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 1985 type: reinforced_wall components: - parent: 853 pos: -14.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1986 type: reinforced_wall components: - parent: 853 pos: -14.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1987 type: solid_wall components: - parent: 853 pos: -6.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1988 type: LowWall components: - parent: 853 pos: -10.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1989 type: solid_wall components: - parent: 853 pos: -9.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1990 type: solid_wall components: - parent: 853 pos: -10.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1991 type: solid_wall components: - parent: 853 pos: -10.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1992 type: solid_wall components: - parent: 853 pos: -10.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1993 type: solid_wall components: - parent: 853 pos: -11.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1994 type: solid_wall components: - parent: 853 pos: -12.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1995 type: solid_wall components: - parent: 853 pos: -13.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1996 type: solid_wall components: - parent: 853 pos: -5.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1997 type: reinforced_wall components: - parent: 853 pos: 1.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1998 type: reinforced_wall components: - parent: 853 pos: 1.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 1999 type: reinforced_wall components: - parent: 853 pos: 1.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2000 type: reinforced_wall components: - parent: 853 pos: 1.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2001 type: reinforced_wall components: - parent: 853 pos: 1.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2002 type: reinforced_wall components: - parent: 853 pos: 1.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2003 type: reinforced_wall components: - parent: 853 pos: 1.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2004 type: reinforced_wall components: - parent: 853 pos: 1.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2005 type: reinforced_wall components: - parent: 853 pos: 1.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2006 type: reinforced_wall components: - parent: 853 pos: -4.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2007 type: reinforced_wall components: - parent: 853 pos: -1.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2008 type: reinforced_wall components: - parent: 853 pos: -7.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2009 type: solid_wall components: - parent: 853 pos: -4.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2010 type: solid_wall components: - parent: 853 pos: -4.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2011 type: solid_wall components: - parent: 853 pos: -4.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2012 type: solid_wall components: - parent: 853 pos: -1.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2013 type: solid_wall components: - parent: 853 pos: -1.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2014 type: solid_wall components: - parent: 853 pos: -1.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2015 type: LowWall components: - parent: 853 pos: -0.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2016 type: LowWall components: - parent: 853 pos: -3.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2017 type: LowWall components: - parent: 853 pos: -7.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2018 type: LowWall components: - parent: 853 pos: -8.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2019 type: solid_wall components: - parent: 853 pos: -15.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2020 type: solid_wall components: - parent: 853 pos: -17.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2021 type: solid_wall components: - parent: 853 pos: -18.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2022 type: solid_wall components: - parent: 853 pos: -18.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2023 type: solid_wall components: - parent: 853 pos: -18.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2024 type: solid_wall components: - parent: 853 pos: -18.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2025 type: solid_wall components: - parent: 853 pos: -18.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2026 type: solid_wall components: - parent: 853 pos: -18.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2027 type: solid_wall components: - parent: 853 pos: -19.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2028 type: solid_wall components: - parent: 853 pos: -18.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2029 type: solid_wall components: - parent: 853 pos: -19.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2030 type: solid_wall components: - parent: 853 pos: -19.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2031 type: solid_wall components: - parent: 853 pos: -19.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2032 type: solid_wall components: - parent: 853 pos: -19.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2033 type: solid_wall components: - parent: 853 pos: -19.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2034 type: solid_wall components: - parent: 853 pos: -19.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2035 type: solid_wall components: - parent: 853 pos: -19.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2036 type: solid_wall components: - parent: 853 pos: -19.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2037 type: solid_wall components: - parent: 853 pos: -19.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2038 type: solid_wall components: - parent: 853 pos: -19.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2039 type: solid_wall components: - parent: 853 pos: -19.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2040 type: solid_wall components: - parent: 853 pos: -19.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2041 type: solid_wall components: - parent: 853 pos: -19.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2042 type: solid_wall components: - parent: 853 pos: -18.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2043 type: solid_wall components: - parent: 853 pos: -17.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2044 type: solid_wall components: - parent: 853 pos: -16.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2045 type: solid_wall components: - parent: 853 pos: -15.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2046 type: solid_wall components: - parent: 853 pos: -14.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2047 type: solid_wall components: - parent: 853 pos: -13.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2048 type: solid_wall components: - parent: 853 pos: -12.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2049 type: solid_wall components: - parent: 853 pos: -11.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2050 type: solid_wall components: - parent: 853 pos: -10.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2051 type: solid_wall components: - parent: 853 pos: -9.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2052 type: solid_wall components: - parent: 853 pos: -8.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2053 type: solid_wall components: - parent: 853 pos: -7.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2054 type: solid_wall components: - parent: 853 pos: -6.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2055 type: solid_wall components: - parent: 853 pos: -6.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2056 type: solid_wall components: - parent: 853 pos: -4.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2057 type: solid_wall components: - parent: 853 pos: -5.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2058 type: solid_wall components: - parent: 853 pos: -20.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2059 type: solid_wall components: - parent: 853 pos: -21.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2060 type: solid_wall components: - parent: 853 pos: -22.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2061 type: solid_wall components: - parent: 853 pos: -23.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2062 type: solid_wall components: - parent: 853 pos: -24.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2063 type: solid_wall components: - parent: 853 pos: -25.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2064 type: solid_wall components: - parent: 853 pos: -26.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2065 type: solid_wall components: - parent: 853 pos: -27.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2066 type: solid_wall components: - parent: 853 pos: -28.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2067 type: solid_wall components: - parent: 853 pos: -29.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2068 type: solid_wall components: - parent: 853 pos: -30.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2069 type: solid_wall components: - parent: 853 pos: -31.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2070 type: solid_wall components: - parent: 853 pos: -32.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2071 type: solid_wall components: - parent: 853 pos: -33.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2072 type: solid_wall components: - parent: 853 pos: -33.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2073 type: solid_wall components: - parent: 853 pos: -33.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2074 type: solid_wall components: - parent: 853 pos: -33.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2075 type: solid_wall components: - parent: 853 pos: -33.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2076 type: solid_wall components: - parent: 853 pos: -33.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2077 type: solid_wall components: - parent: 853 pos: -21.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2078 type: solid_wall components: - parent: 853 pos: -33.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2079 type: solid_wall components: - parent: 853 pos: -33.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2080 type: solid_wall components: - parent: 853 pos: -32.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2081 type: solid_wall components: - parent: 853 pos: -31.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2082 type: solid_wall components: - parent: 853 pos: -30.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2083 type: LowWall components: - parent: 853 pos: -28.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2084 type: Catwalk components: - parent: 853 pos: 0.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2085 type: ApcExtensionCable components: - parent: 853 pos: -7.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2086 type: solid_wall components: - parent: 853 pos: -26.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2087 type: solid_wall components: - parent: 853 pos: -26.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2088 type: ApcExtensionCable components: - parent: 853 pos: 1.5,6.5 - rot: 3.141592653589793 rad type: Transform - uid: 2089 type: solid_wall components: - parent: 853 pos: -30.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2090 type: solid_wall components: - parent: 853 pos: -30.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2091 type: solid_wall components: - parent: 853 pos: -30.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2092 type: solid_wall components: - parent: 853 pos: -30.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2093 type: solid_wall components: - parent: 853 pos: -30.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2094 type: solid_wall components: - parent: 853 pos: -30.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2095 type: solid_wall components: - parent: 853 pos: -28.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2096 type: solid_wall components: - parent: 853 pos: -27.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2097 type: solid_wall components: - parent: 853 pos: -26.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2098 type: solid_wall components: - parent: 853 pos: -25.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2099 type: solid_wall components: - parent: 853 pos: -24.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2100 type: solid_wall components: - parent: 853 pos: -23.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2101 type: solid_wall components: - parent: 853 pos: -22.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2102 type: solid_wall components: - parent: 853 pos: -29.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2103 type: solid_wall components: - parent: 853 pos: -22.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2104 type: solid_wall components: - parent: 853 pos: -22.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2105 type: solid_wall components: - parent: 853 pos: -21.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2106 type: solid_wall components: - parent: 853 pos: -22.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2107 type: solid_wall components: - parent: 853 pos: -22.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2108 type: solid_wall components: - parent: 853 pos: -22.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2109 type: solid_wall components: - parent: 853 pos: -21.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2110 type: solid_wall components: - parent: 853 pos: -21.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2111 type: solid_wall components: - parent: 853 pos: -20.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2112 type: solid_wall components: - parent: 853 pos: -19.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2113 type: solid_wall components: - parent: 853 pos: -25.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2114 type: LowWall components: - parent: 853 pos: -25.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2115 type: LowWall components: - parent: 853 pos: -2.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2116 type: LowWall components: - parent: 853 pos: -3.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2117 type: LowWall components: - parent: 853 pos: -0.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2118 type: LowWall components: - parent: 853 pos: 0.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2119 type: LowWall components: - parent: 853 pos: 14.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2120 type: solid_wall components: - parent: 853 pos: 30.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2121 type: solid_wall components: - parent: 853 pos: 30.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2122 type: solid_wall components: - parent: 853 pos: 29.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2123 type: solid_wall components: - parent: 853 pos: 28.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2124 type: solid_wall components: - parent: 853 pos: 27.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2125 type: solid_wall components: - parent: 853 pos: 26.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2126 type: solid_wall components: - parent: 853 pos: 25.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2127 type: solid_wall components: - parent: 853 pos: 24.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2128 type: solid_wall components: - parent: 853 pos: 24.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2129 type: solid_wall components: - parent: 853 pos: 24.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2130 type: solid_wall components: - parent: 853 pos: 24.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2131 type: solid_wall components: - parent: 853 pos: 23.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2132 type: solid_wall components: - parent: 853 pos: 22.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2133 type: solid_wall components: - parent: 853 pos: 19.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2134 type: solid_wall components: - parent: 853 pos: 18.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2135 type: solid_wall components: - parent: 853 pos: 17.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2136 type: solid_wall components: - parent: 853 pos: 16.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2137 type: solid_wall components: - parent: 853 pos: 15.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2138 type: solid_wall components: - parent: 853 pos: 14.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2139 type: solid_wall components: - parent: 853 pos: 13.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2140 type: solid_wall components: - parent: 853 pos: 12.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2141 type: solid_wall components: - parent: 853 pos: 6.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2142 type: solid_wall components: - parent: 853 pos: 5.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2143 type: solid_wall components: - parent: 853 pos: 5.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2144 type: solid_wall components: - parent: 853 pos: 20.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2145 type: solid_wall components: - parent: 853 pos: 19.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2146 type: solid_wall components: - parent: 853 pos: 19.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2147 type: solid_wall components: - parent: 853 pos: 19.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2148 type: solid_wall components: - parent: 853 pos: 19.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2149 type: solid_wall components: - parent: 853 pos: 19.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2150 type: solid_wall components: - parent: 853 pos: 13.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2151 type: solid_wall components: - parent: 853 pos: 13.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2152 type: solid_wall components: - parent: 853 pos: 14.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2153 type: solid_wall components: - parent: 853 pos: 13.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2154 type: solid_wall components: - parent: 853 pos: 5.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2155 type: solid_wall components: - parent: 853 pos: 5.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2156 type: solid_wall components: - parent: 853 pos: 5.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2157 type: solid_wall components: - parent: 853 pos: 5.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2158 type: solid_wall components: - parent: 853 pos: 5.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2159 type: solid_wall components: - parent: 853 pos: 5.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2160 type: solid_wall components: - parent: 853 pos: 5.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2161 type: LowWall components: - parent: 853 pos: 5.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2162 type: LowWall components: - parent: 853 pos: 5.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2163 type: LowWall components: - parent: 853 pos: 5.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2164 type: LowWall components: - parent: 853 pos: 13.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2165 type: LowWall components: - parent: 853 pos: 13.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2166 type: LowWall components: - parent: 853 pos: 13.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2167 type: LowWall components: - parent: 853 pos: 16.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2168 type: LowWall components: - parent: 853 pos: 11.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2169 type: LowWall components: - parent: 853 pos: 10.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2170 type: LowWall components: - parent: 853 pos: 9.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2171 type: LowWall components: - parent: 853 pos: 8.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2172 type: LowWall components: - parent: 853 pos: 7.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2173 type: LowWall components: - parent: 853 pos: 6.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2174 type: LowWall components: - parent: 853 pos: 9.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2175 type: LowWall components: - parent: 853 pos: 8.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2176 type: LowWall components: - parent: 853 pos: 13.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2177 type: LowWall components: - parent: 853 pos: 13.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2178 type: LowWall components: - parent: 853 pos: 12.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2179 type: LowWall components: - parent: 853 pos: 18.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2180 type: solid_wall components: - parent: 853 pos: 19.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2181 type: solid_wall components: - parent: 853 pos: 20.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2182 type: solid_wall components: - parent: 853 pos: 21.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2183 type: solid_wall components: - parent: 853 pos: 22.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2184 type: solid_wall components: - parent: 853 pos: 23.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2185 type: solid_wall components: - parent: 853 pos: 24.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2186 type: solid_wall components: - parent: 853 pos: 25.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2187 type: solid_wall components: - parent: 853 pos: 25.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2188 type: solid_wall components: - parent: 853 pos: 25.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2189 type: solid_wall components: - parent: 853 pos: 25.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2190 type: solid_wall components: - parent: 853 pos: 25.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2191 type: solid_wall components: - parent: 853 pos: 24.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2192 type: solid_wall components: - parent: 853 pos: 23.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2193 type: solid_wall components: - parent: 853 pos: 22.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2194 type: solid_wall components: - parent: 853 pos: 21.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2195 type: solid_wall components: - parent: 853 pos: 20.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2196 type: solid_wall components: - parent: 853 pos: 20.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2197 type: solid_wall components: - parent: 853 pos: 16.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2198 type: solid_wall components: - parent: 853 pos: 20.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2199 type: solid_wall components: - parent: 853 pos: 20.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2200 type: Window components: - parent: 853 pos: 20.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2201 type: solid_wall components: - parent: 853 pos: 20.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2202 type: solid_wall components: - parent: 853 pos: 21.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2203 type: solid_wall components: - parent: 853 pos: 22.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2204 type: solid_wall components: - parent: 853 pos: 23.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2205 type: solid_wall components: - parent: 853 pos: 24.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2206 type: solid_wall components: - parent: 853 pos: 25.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2207 type: solid_wall components: - parent: 853 pos: 25.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2208 type: solid_wall components: - parent: 853 pos: 25.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2209 type: solid_wall components: - parent: 853 pos: 25.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2210 type: solid_wall components: - parent: 853 pos: 25.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2211 type: solid_wall components: - parent: 853 pos: 25.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2212 type: solid_wall components: - parent: 853 pos: 24.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2213 type: solid_wall components: - parent: 853 pos: 23.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2214 type: solid_wall components: - parent: 853 pos: 22.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2215 type: solid_wall components: - parent: 853 pos: 21.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2216 type: solid_wall components: - parent: 853 pos: 20.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2217 type: Window components: - parent: 853 pos: 20.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2218 type: solid_wall components: - parent: 853 pos: 15.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2219 type: solid_wall components: - parent: 853 pos: 20.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2220 type: solid_wall components: - parent: 853 pos: 20.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2221 type: solid_wall components: - parent: 853 pos: 46.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2222 type: solid_wall components: - parent: 853 pos: 45.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2223 type: solid_wall components: - parent: 853 pos: 48.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2224 type: LowWall components: - parent: 853 pos: 20.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2225 type: LowWall components: - parent: 853 pos: 20.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2226 type: LowWall components: - parent: 853 pos: 11.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2227 type: LowWall components: - parent: 853 pos: 11.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2228 type: LowWall components: - parent: 853 pos: 9.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2229 type: Window components: - parent: 853 pos: 9.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2230 type: solid_wall components: - parent: 853 pos: 11.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2231 type: Window components: - parent: 853 pos: 11.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2232 type: solid_wall components: - parent: 853 pos: 6.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2233 type: Window components: - parent: 853 pos: 20.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2234 type: solid_wall components: - parent: 853 pos: 6.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2235 type: solid_wall components: - parent: 853 pos: 6.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2236 type: solid_wall components: - parent: 853 pos: 6.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2237 type: solid_wall components: - parent: 853 pos: 6.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2238 type: solid_wall components: - parent: 853 pos: 6.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2239 type: solid_wall components: - parent: 853 pos: 7.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2240 type: solid_wall components: - parent: 853 pos: 8.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2241 type: solid_wall components: - parent: 853 pos: 9.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2242 type: solid_wall components: - parent: 853 pos: 10.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2243 type: solid_wall components: - parent: 853 pos: 11.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2244 type: Window components: - parent: 853 pos: 11.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2245 type: solid_wall components: - parent: 853 pos: 11.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2246 type: solid_wall components: - parent: 853 pos: 12.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2247 type: solid_wall components: - parent: 853 pos: 13.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2248 type: solid_wall components: - parent: 853 pos: 6.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2249 type: solid_wall components: - parent: 853 pos: 6.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2250 type: solid_wall components: - parent: 853 pos: 28.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2251 type: solid_wall components: - parent: 853 pos: 28.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2252 type: solid_wall components: - parent: 853 pos: 28.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2253 type: solid_wall components: - parent: 853 pos: 28.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2254 type: solid_wall components: - parent: 853 pos: 28.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2255 type: solid_wall components: - parent: 853 pos: 29.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2256 type: solid_wall components: - parent: 853 pos: 30.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2257 type: solid_wall components: - parent: 853 pos: 31.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2258 type: solid_wall components: - parent: 853 pos: 32.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2259 type: solid_wall components: - parent: 853 pos: 34.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2260 type: solid_wall components: - parent: 853 pos: 35.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2261 type: solid_wall components: - parent: 853 pos: 36.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2262 type: solid_wall components: - parent: 853 pos: 36.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2263 type: solid_wall components: - parent: 853 pos: 36.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2264 type: solid_wall components: - parent: 853 pos: 1.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2265 type: solid_wall components: - parent: 853 pos: 1.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2266 type: solid_wall components: - parent: 853 pos: 0.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2267 type: solid_wall components: - parent: 853 pos: 1.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2268 type: solid_wall components: - parent: 853 pos: 1.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2269 type: solid_wall components: - parent: 853 pos: 1.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2270 type: solid_wall components: - parent: 853 pos: 1.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2271 type: solid_wall components: - parent: 853 pos: 0.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2272 type: solid_wall components: - parent: 853 pos: -0.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2273 type: solid_wall components: - parent: 853 pos: -1.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2274 type: solid_wall components: - parent: 853 pos: -2.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2275 type: solid_wall components: - parent: 853 pos: 1.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2276 type: solid_wall components: - parent: 853 pos: 1.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2277 type: solid_wall components: - parent: 853 pos: 1.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2278 type: solid_wall components: - parent: 853 pos: 1.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2279 type: solid_wall components: - parent: 853 pos: 1.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2280 type: solid_wall components: - parent: 853 pos: 0.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2281 type: solid_wall components: - parent: 853 pos: -0.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2282 type: solid_wall components: - parent: 853 pos: -1.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2283 type: solid_wall components: - parent: 853 pos: -2.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2284 type: solid_wall components: - parent: 853 pos: 0.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2285 type: solid_wall components: - parent: 853 pos: -5.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2286 type: solid_wall components: - parent: 853 pos: 0.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2287 type: solid_wall components: - parent: 853 pos: 0.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2288 type: solid_wall components: - parent: 853 pos: -0.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2289 type: solid_wall components: - parent: 853 pos: -6.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2290 type: solid_wall components: - parent: 853 pos: -1.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2291 type: solid_wall components: - parent: 853 pos: -2.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2292 type: solid_wall components: - parent: 853 pos: -3.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2293 type: AirlockServiceLocked @@ -23255,643 +23785,649 @@ entities: type: MetaData - parent: 853 pos: -12.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 2294 type: solid_wall components: - parent: 853 pos: -5.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2295 type: solid_wall components: - parent: 853 pos: -6.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2296 type: solid_wall components: - parent: 853 pos: -6.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2297 type: solid_wall components: - parent: 853 pos: -6.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2298 type: solid_wall components: - parent: 853 pos: -6.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2299 type: solid_wall components: - parent: 853 pos: -6.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2300 type: solid_wall components: - parent: 853 pos: -6.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2301 type: solid_wall components: - parent: 853 pos: -6.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2302 type: LowWall components: - parent: 853 pos: -2.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2303 type: LowWall components: - parent: 853 pos: -4.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2304 type: LowWall components: - parent: 853 pos: 0.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2305 type: solid_wall components: - parent: 853 pos: -7.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2306 type: solid_wall components: - parent: 853 pos: 1.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2307 type: solid_wall components: - parent: 853 pos: 0.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2308 type: solid_wall components: - parent: 853 pos: 0.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2309 type: solid_wall components: - parent: 853 pos: -0.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2310 type: solid_wall components: - parent: 853 pos: -1.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2311 type: LowWall components: - parent: 853 pos: -4.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2312 type: solid_wall components: - parent: 853 pos: -1.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2313 type: solid_wall components: - parent: 853 pos: -1.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2314 type: solid_wall components: - parent: 853 pos: -1.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2315 type: solid_wall components: - parent: 853 pos: -1.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2316 type: solid_wall components: - parent: 853 pos: -2.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2317 type: solid_wall components: - parent: 853 pos: -3.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2318 type: solid_wall components: - parent: 853 pos: -4.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2319 type: solid_wall components: - parent: 853 pos: -5.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2320 type: solid_wall components: - parent: 853 pos: -6.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2321 type: solid_wall components: - parent: 853 pos: -6.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2322 type: solid_wall components: - parent: 853 pos: -6.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2323 type: solid_wall components: - parent: 853 pos: -6.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2324 type: solid_wall components: - parent: 853 pos: -6.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2325 type: LowWall components: - parent: 853 pos: -2.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2326 type: LowWall components: - parent: 853 pos: -5.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2327 type: solid_wall components: - parent: 853 pos: -9.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2328 type: reinforced_wall components: - parent: 853 pos: -12.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2329 type: reinforced_wall components: - parent: 853 pos: -13.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2330 type: reinforced_wall components: - parent: 853 pos: -14.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2331 type: reinforced_wall components: - parent: 853 pos: -15.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2332 type: reinforced_wall components: - parent: 853 pos: -16.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2333 type: reinforced_wall components: - parent: 853 pos: -17.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2334 type: reinforced_wall components: - parent: 853 pos: -18.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2335 type: reinforced_wall components: - parent: 853 pos: -18.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2336 type: reinforced_wall components: - parent: 853 pos: -18.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2337 type: reinforced_wall components: - parent: 853 pos: -18.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2338 type: reinforced_wall components: - parent: 853 pos: -18.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2339 type: reinforced_wall components: - parent: 853 pos: -17.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2340 type: reinforced_wall components: - parent: 853 pos: -13.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2341 type: reinforced_wall components: - parent: 853 pos: -12.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2342 type: reinforced_wall components: - parent: 853 pos: -12.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2343 type: reinforced_wall components: - parent: 853 pos: -12.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2344 type: reinforced_wall components: - parent: 853 pos: -12.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2345 type: solid_wall components: - parent: 853 pos: -12.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2346 type: solid_wall components: - parent: 853 pos: -11.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2347 type: solid_wall components: - parent: 853 pos: -10.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2348 type: solid_wall components: - parent: 853 pos: -6.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2349 type: solid_wall components: - parent: 853 pos: -5.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2350 type: solid_wall components: - parent: 853 pos: -4.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2351 type: solid_wall components: - parent: 853 pos: -3.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2352 type: solid_wall components: - parent: 853 pos: -2.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2353 type: solid_wall components: - parent: 853 pos: -1.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2354 type: solid_wall components: - parent: 853 pos: -0.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2355 type: solid_wall components: - parent: 853 pos: -10.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2356 type: solid_wall components: - parent: 853 pos: -10.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2357 type: solid_wall components: - parent: 853 pos: -10.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2358 type: solid_wall components: - parent: 853 pos: -10.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2359 type: solid_wall components: - parent: 853 pos: -10.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2360 type: solid_wall components: - parent: 853 pos: -12.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2361 type: solid_wall components: - parent: 853 pos: -12.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2362 type: solid_wall components: - parent: 853 pos: -12.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2363 type: solid_wall components: - parent: 853 pos: -12.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2364 type: solid_wall components: - parent: 853 pos: -12.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2365 type: solid_wall components: - parent: 853 pos: -11.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2366 type: solid_wall components: - parent: 853 pos: -10.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2367 type: solid_wall components: - parent: 853 pos: -9.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2368 type: solid_wall components: - parent: 853 pos: -8.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2369 type: solid_wall components: - parent: 853 pos: -7.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2370 type: solid_wall components: - parent: 853 pos: -13.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2371 type: solid_wall components: - parent: 853 pos: -14.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2372 type: solid_wall components: - parent: 853 pos: -15.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2373 type: solid_wall components: - parent: 853 pos: -17.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2374 type: solid_wall components: - parent: 853 pos: -18.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2375 type: solid_wall components: - parent: 853 pos: -18.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2376 type: solid_wall components: - parent: 853 pos: -18.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2377 type: solid_wall components: - parent: 853 pos: -18.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2378 type: solid_wall components: - parent: 853 pos: -18.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2379 type: solid_wall components: - parent: 853 pos: -18.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2380 type: solid_wall components: - parent: 853 pos: -18.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2381 type: ChairWood components: - parent: 853 pos: -7.5,-0.5 + rot: 1.5707963705062866 rad type: Transform - uid: 2382 type: ChairWood components: - parent: 853 pos: -5.5,-0.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - uid: 2383 type: VendingMachineCoffee components: - parent: 853 pos: 5.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2384 type: ToolboxElectricalFilled components: - parent: 853 pos: 8.259691,28.555487 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: storagebase: @@ -23902,196 +24438,195 @@ entities: components: - parent: 853 pos: -16.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2386 type: solid_wall components: - parent: 853 pos: -15.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2387 type: solid_wall components: - parent: 853 pos: -14.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2388 type: solid_wall components: - parent: 853 pos: -12.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2389 type: solid_wall components: - parent: 853 pos: -11.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2390 type: solid_wall components: - parent: 853 pos: -10.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2391 type: solid_wall components: - parent: 853 pos: -10.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2392 type: solid_wall components: - parent: 853 pos: -10.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2393 type: solid_wall components: - parent: 853 pos: -10.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2394 type: solid_wall components: - parent: 853 pos: -10.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2395 type: solid_wall components: - parent: 853 pos: -10.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2396 type: solid_wall components: - parent: 853 pos: -11.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2397 type: solid_wall components: - parent: 853 pos: -13.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2398 type: solid_wall components: - parent: 853 pos: -14.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2399 type: solid_wall components: - parent: 853 pos: -15.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2400 type: solid_wall components: - parent: 853 pos: -16.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2401 type: solid_wall components: - parent: 853 pos: -16.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2402 type: solid_wall components: - parent: 853 pos: -16.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2403 type: solid_wall components: - parent: 853 pos: -16.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2404 type: solid_wall components: - parent: 853 pos: -16.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2405 type: solid_wall components: - parent: 853 pos: -9.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2406 type: solid_wall components: - parent: 853 pos: -8.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2407 type: solid_wall components: - parent: 853 pos: -7.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2408 type: solid_wall components: - parent: 853 pos: -2.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2409 type: solid_wall components: - parent: 853 pos: -2.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2410 type: ApcExtensionCable components: - parent: 853 pos: -1.5,6.5 - rot: 3.141592653589793 rad type: Transform - uid: 2411 type: Table components: - parent: 853 pos: -3.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2412 type: BlockGameArcade components: - parent: 853 pos: -6.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: board: @@ -24104,7 +24639,7 @@ entities: components: - parent: 853 pos: -8.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2414 type: BlockGameArcadeComputerCircuitboard @@ -24116,77 +24651,74 @@ entities: components: - parent: 853 pos: -3.5,6.5 - rot: 3.141592653589793 rad type: Transform - uid: 2416 type: ApcExtensionCable components: - parent: 853 pos: -2.5,6.5 - rot: 3.141592653589793 rad type: Transform - uid: 2417 type: solid_wall components: - parent: 853 pos: -6.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2418 type: solid_wall components: - parent: 853 pos: -8.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2419 type: ApcExtensionCable components: - parent: 853 pos: -4.5,6.5 - rot: 3.141592653589793 rad type: Transform - uid: 2420 type: solid_wall components: - parent: 853 pos: -9.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2421 type: solid_wall components: - parent: 853 pos: -10.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2422 type: Table components: - parent: 853 pos: -15.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2423 type: Table components: - parent: 853 pos: -15.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2424 type: Table components: - parent: 853 pos: -29.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2425 type: DisposalTrunk components: - parent: 853 pos: -10.5,-17.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - containers: DisposalEntry: @@ -24197,14 +24729,14 @@ entities: components: - parent: 853 pos: -11.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2427 type: ChairOfficeDark components: - parent: 853 pos: 40.5,-0.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - anchored: False type: Physics @@ -24213,49 +24745,49 @@ entities: components: - parent: 853 pos: -10.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2429 type: solid_wall components: - parent: 853 pos: -4.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2430 type: solid_wall components: - parent: 853 pos: -9.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2431 type: solid_wall components: - parent: 853 pos: -11.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2432 type: Table components: - parent: 853 pos: 26.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2433 type: Multitool components: - parent: 853 pos: 6.259919,28.557344 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2434 type: Medkit components: - parent: 853 pos: -0.959059,28.524237 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: storagebase: @@ -24266,56 +24798,56 @@ entities: components: - parent: 853 pos: 29.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2436 type: Table components: - parent: 853 pos: 28.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2437 type: Table components: - parent: 853 pos: 20.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2438 type: Table components: - parent: 853 pos: 19.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2439 type: WeldingFuelTank components: - parent: 853 pos: -26.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2440 type: WeldingFuelTank components: - parent: 853 pos: 35.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2441 type: WeldingFuelTank components: - parent: 853 pos: -15.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2442 type: DrinkMugMoebius components: - parent: 853 pos: -8.476567,-17.420076 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - caps: Refillable, Drainable type: SolutionContainer @@ -24324,216 +24856,216 @@ entities: components: - parent: 853 pos: -3.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2444 type: ChairWood components: - parent: 853 pos: -0.5,-2.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 2445 type: ChairWood components: - parent: 853 pos: -0.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2446 type: solid_wall components: - parent: 853 pos: -21.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2447 type: solid_wall components: - parent: 853 pos: -22.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2448 type: Paper components: - parent: 853 pos: 9.543142,17.067865 - rot: 3.141592653589793 rad type: Transform - uid: 2449 type: solid_wall components: - parent: 853 pos: -24.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2450 type: solid_wall components: - parent: 853 pos: -25.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2451 type: solid_wall components: - parent: 853 pos: -26.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2452 type: solid_wall components: - parent: 853 pos: -27.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2453 type: solid_wall components: - parent: 853 pos: -28.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2454 type: solid_wall components: - parent: 853 pos: -29.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2455 type: solid_wall components: - parent: 853 pos: -30.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2456 type: solid_wall components: - parent: 853 pos: -31.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2457 type: solid_wall components: - parent: 853 pos: -30.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2458 type: solid_wall components: - parent: 853 pos: -31.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2459 type: ChairWood components: - parent: 853 pos: -2.5,-0.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - uid: 2460 type: ChairWood components: - parent: 853 pos: -4.5,-0.5 + rot: 1.5707963705062866 rad type: Transform - uid: 2461 type: solid_wall components: - parent: 853 pos: -34.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2462 type: solid_wall components: - parent: 853 pos: -34.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2463 type: solid_wall components: - parent: 853 pos: -31.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2464 type: solid_wall components: - parent: 853 pos: -31.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2465 type: solid_wall components: - parent: 853 pos: -31.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2466 type: TableWood components: - parent: 853 pos: -6.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2467 type: TableR components: - parent: 853 pos: 0.5,28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2468 type: TableR components: - parent: 853 pos: -0.5,28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2469 type: TableR components: - parent: 853 pos: -1.5,28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2470 type: TableGlass components: - parent: 853 pos: -0.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2471 type: TableGlass components: - parent: 853 pos: -1.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2472 type: VendingMachineBooze components: - parent: 853 pos: -5.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2473 type: BoozeDispenser components: - parent: 853 pos: -3.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: ReagentDispenser-reagentContainerContainer: @@ -24544,84 +25076,83 @@ entities: components: - parent: 853 pos: -1.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2475 type: solid_wall components: - parent: 853 pos: -26.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2476 type: reinforced_wall components: - parent: 853 pos: -6.5,23.5 - rot: -1.5707963705062866 rad type: Transform - uid: 2477 type: solid_wall components: - parent: 853 pos: -21.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2478 type: solid_wall components: - parent: 853 pos: -21.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2479 type: solid_wall components: - parent: 853 pos: -20.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2480 type: solid_wall components: - parent: 853 pos: -19.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2481 type: solid_wall components: - parent: 853 pos: -18.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2482 type: solid_wall components: - parent: 853 pos: -17.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2483 type: SpawnPointLatejoin components: - parent: 853 pos: -36.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2484 type: SpawnPointLatejoin components: - parent: 853 pos: -36.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2485 type: CrateInternals components: - parent: 853 pos: 42.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -24634,7 +25165,7 @@ entities: components: - parent: 853 pos: 43.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -24647,126 +25178,126 @@ entities: components: - parent: 853 pos: -17.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2488 type: solid_wall components: - parent: 853 pos: -17.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2489 type: solid_wall components: - parent: 853 pos: -17.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2490 type: solid_wall components: - parent: 853 pos: -18.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2491 type: solid_wall components: - parent: 853 pos: -19.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2492 type: solid_wall components: - parent: 853 pos: -20.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2493 type: solid_wall components: - parent: 853 pos: -21.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2494 type: solid_wall components: - parent: 853 pos: -21.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2495 type: reinforced_wall components: - parent: 853 pos: 11.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2496 type: reinforced_wall components: - parent: 853 pos: 14.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2497 type: reinforced_wall components: - parent: 853 pos: 13.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2498 type: reinforced_wall components: - parent: 853 pos: 14.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2499 type: reinforced_wall components: - parent: 853 pos: 14.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2500 type: reinforced_wall components: - parent: 853 pos: 14.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2501 type: reinforced_wall components: - parent: 853 pos: -14.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2502 type: reinforced_wall components: - parent: 853 pos: -14.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2503 type: reinforced_wall components: - parent: 853 pos: -16.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2504 type: SalternApc components: - parent: 853 pos: 9.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.634 type: Battery @@ -24777,7 +25308,7 @@ entities: components: - parent: 853 pos: -2.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.3 type: Battery @@ -24788,7 +25319,7 @@ entities: components: - parent: 853 pos: 9.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.066 type: Battery @@ -24799,7 +25330,7 @@ entities: components: - parent: 853 pos: 24.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.733 type: Battery @@ -24810,7 +25341,7 @@ entities: components: - parent: 853 pos: 28.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.483 type: Battery @@ -24821,7 +25352,7 @@ entities: components: - parent: 853 pos: 47.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11991.15 type: Battery @@ -24832,7 +25363,7 @@ entities: components: - parent: 853 pos: 31.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.15 type: Battery @@ -24843,7 +25374,7 @@ entities: components: - parent: 853 pos: 43.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.384 type: Battery @@ -24854,7 +25385,7 @@ entities: components: - parent: 853 pos: 12.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.116 type: Battery @@ -24865,7 +25396,7 @@ entities: components: - parent: 853 pos: 7.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.2 type: Battery @@ -24876,7 +25407,7 @@ entities: components: - parent: 853 pos: 22.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.066 type: Battery @@ -24887,7 +25418,7 @@ entities: components: - parent: 853 pos: 16.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.467 type: Battery @@ -24898,7 +25429,7 @@ entities: components: - parent: 853 pos: 22.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -24911,7 +25442,7 @@ entities: components: - parent: 853 pos: -3.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.483 type: Battery @@ -24922,7 +25453,7 @@ entities: components: - parent: 853 pos: -28.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.4 type: Battery @@ -24933,7 +25464,7 @@ entities: components: - parent: 853 pos: -39.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.4 type: Battery @@ -24944,7 +25475,7 @@ entities: components: - parent: 853 pos: -11.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11998.483 type: Battery @@ -24955,14 +25486,14 @@ entities: components: - parent: 853 pos: -2.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2522 type: SalternApc components: - parent: 853 pos: -20.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.75 type: Battery @@ -24973,21 +25504,21 @@ entities: components: - parent: 853 pos: -14.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2524 type: solid_wall components: - parent: 853 pos: 12.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2525 type: SalternApc components: - parent: 853 pos: -1.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.083 type: Battery @@ -24998,7 +25529,7 @@ entities: components: - parent: 853 pos: -9.75476,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11996.233 type: Battery @@ -25009,7 +25540,7 @@ entities: components: - parent: 853 pos: -14.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.65 type: Battery @@ -25020,189 +25551,189 @@ entities: components: - parent: 853 pos: -28.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2529 type: ApcExtensionCable components: - parent: 853 pos: -28.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2530 type: ApcExtensionCable components: - parent: 853 pos: -28.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2531 type: ApcExtensionCable components: - parent: 853 pos: -28.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2532 type: ApcExtensionCable components: - parent: 853 pos: -28.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2533 type: ApcExtensionCable components: - parent: 853 pos: -27.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2534 type: ApcExtensionCable components: - parent: 853 pos: -26.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2535 type: ApcExtensionCable components: - parent: 853 pos: -25.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2536 type: ApcExtensionCable components: - parent: 853 pos: -26.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2537 type: ApcExtensionCable components: - parent: 853 pos: -26.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2538 type: ApcExtensionCable components: - parent: 853 pos: -24.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2539 type: ApcExtensionCable components: - parent: 853 pos: -23.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2540 type: ApcExtensionCable components: - parent: 853 pos: -22.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2541 type: ApcExtensionCable components: - parent: 853 pos: -21.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2542 type: ApcExtensionCable components: - parent: 853 pos: -20.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2543 type: ApcExtensionCable components: - parent: 853 pos: -19.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2544 type: ApcExtensionCable components: - parent: 853 pos: -23.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2545 type: ApcExtensionCable components: - parent: 853 pos: -23.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2546 type: ApcExtensionCable components: - parent: 853 pos: -23.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2547 type: ApcExtensionCable components: - parent: 853 pos: -23.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2548 type: ApcExtensionCable components: - parent: 853 pos: -28.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2549 type: ApcExtensionCable components: - parent: 853 pos: -28.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2550 type: ApcExtensionCable components: - parent: 853 pos: -17.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2551 type: ApcExtensionCable components: - parent: 853 pos: -16.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2552 type: ApcExtensionCable components: - parent: 853 pos: -16.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2553 type: ApcExtensionCable components: - parent: 853 pos: -16.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2554 type: SalternApc components: - parent: 853 pos: -16.302551,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.833 type: Battery @@ -25213,1645 +25744,1644 @@ entities: components: - parent: 853 pos: -16.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2556 type: ApcExtensionCable components: - parent: 853 pos: -17.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2557 type: ApcExtensionCable components: - parent: 853 pos: -17.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2558 type: ApcExtensionCable components: - parent: 853 pos: -17.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2559 type: ApcExtensionCable components: - parent: 853 pos: -17.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2560 type: ApcExtensionCable components: - parent: 853 pos: -17.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2561 type: ApcExtensionCable components: - parent: 853 pos: -17.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2562 type: ApcExtensionCable components: - parent: 853 pos: -17.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2563 type: ApcExtensionCable components: - parent: 853 pos: -17.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2564 type: ApcExtensionCable components: - parent: 853 pos: -17.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2565 type: ApcExtensionCable components: - parent: 853 pos: -17.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2566 type: ApcExtensionCable components: - parent: 853 pos: -16.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2567 type: ApcExtensionCable components: - parent: 853 pos: -15.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2568 type: ApcExtensionCable components: - parent: 853 pos: -14.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2569 type: ApcExtensionCable components: - parent: 853 pos: -13.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2570 type: ApcExtensionCable components: - parent: 853 pos: -12.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2571 type: ApcExtensionCable components: - parent: 853 pos: -11.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2572 type: ApcExtensionCable components: - parent: 853 pos: -10.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2573 type: ApcExtensionCable components: - parent: 853 pos: -9.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2574 type: ApcExtensionCable components: - parent: 853 pos: -8.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2575 type: ApcExtensionCable components: - parent: 853 pos: -7.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2576 type: ApcExtensionCable components: - parent: 853 pos: -12.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2577 type: ApcExtensionCable components: - parent: 853 pos: -12.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2578 type: ApcExtensionCable components: - parent: 853 pos: -13.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2579 type: ApcExtensionCable components: - parent: 853 pos: -12.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2580 type: ApcExtensionCable components: - parent: 853 pos: -12.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2581 type: ApcExtensionCable components: - parent: 853 pos: -12.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2582 type: ApcExtensionCable components: - parent: 853 pos: -12.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2583 type: ApcExtensionCable components: - parent: 853 pos: -11.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2584 type: ApcExtensionCable components: - parent: 853 pos: -11.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2585 type: ApcExtensionCable components: - parent: 853 pos: -9.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2586 type: ApcExtensionCable components: - parent: 853 pos: -10.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2587 type: ApcExtensionCable components: - parent: 853 pos: -8.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2588 type: ApcExtensionCable components: - parent: 853 pos: -7.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2589 type: ApcExtensionCable components: - parent: 853 pos: -6.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2590 type: ApcExtensionCable components: - parent: 853 pos: -5.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2591 type: ApcExtensionCable components: - parent: 853 pos: -4.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2592 type: ApcExtensionCable components: - parent: 853 pos: -3.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2593 type: ApcExtensionCable components: - parent: 853 pos: -2.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2594 type: ApcExtensionCable components: - parent: 853 pos: -1.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2595 type: ApcExtensionCable components: - parent: 853 pos: -0.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2596 type: ApcExtensionCable components: - parent: 853 pos: 0.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2597 type: ApcExtensionCable components: - parent: 853 pos: -5.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2598 type: ApcExtensionCable components: - parent: 853 pos: -5.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2599 type: ApcExtensionCable components: - parent: 853 pos: -5.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2600 type: ApcExtensionCable components: - parent: 853 pos: 0.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2601 type: ApcExtensionCable components: - parent: 853 pos: 0.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2602 type: ApcExtensionCable components: - parent: 853 pos: 0.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2603 type: ApcExtensionCable components: - parent: 853 pos: 0.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2604 type: ApcExtensionCable components: - parent: 853 pos: 0.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2605 type: ApcExtensionCable components: - parent: 853 pos: -0.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2606 type: ApcExtensionCable components: - parent: 853 pos: -3.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2607 type: ApcExtensionCable components: - parent: 853 pos: -3.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2608 type: ApcExtensionCable components: - parent: 853 pos: -3.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2609 type: ApcExtensionCable components: - parent: 853 pos: -3.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2610 type: ApcExtensionCable components: - parent: 853 pos: -2.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2611 type: ApcExtensionCable components: - parent: 853 pos: -1.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2612 type: ApcExtensionCable components: - parent: 853 pos: -0.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2613 type: ApcExtensionCable components: - parent: 853 pos: -3.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2614 type: ApcExtensionCable components: - parent: 853 pos: -3.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2615 type: ApcExtensionCable components: - parent: 853 pos: -4.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2616 type: ApcExtensionCable components: - parent: 853 pos: -5.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2617 type: ApcExtensionCable components: - parent: 853 pos: -6.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2618 type: ApcExtensionCable components: - parent: 853 pos: -7.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2619 type: ApcExtensionCable components: - parent: 853 pos: -8.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2620 type: ApcExtensionCable components: - parent: 853 pos: -9.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2621 type: ApcExtensionCable components: - parent: 853 pos: -10.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2622 type: ApcExtensionCable components: - parent: 853 pos: -11.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2623 type: ApcExtensionCable components: - parent: 853 pos: -12.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2624 type: ApcExtensionCable components: - parent: 853 pos: -12.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2625 type: ApcExtensionCable components: - parent: 853 pos: -12.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2626 type: ApcExtensionCable components: - parent: 853 pos: -7.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2627 type: ApcExtensionCable components: - parent: 853 pos: -7.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2628 type: ApcExtensionCable components: - parent: 853 pos: -7.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2629 type: ApcExtensionCable components: - parent: 853 pos: -6.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2630 type: ApcExtensionCable components: - parent: 853 pos: -8.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2631 type: ApcExtensionCable components: - parent: 853 pos: -8.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2632 type: ApcExtensionCable components: - parent: 853 pos: -8.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2633 type: ApcExtensionCable components: - parent: 853 pos: -8.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2634 type: ApcExtensionCable components: - parent: 853 pos: -9.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2635 type: ApcExtensionCable components: - parent: 853 pos: -8.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2636 type: ApcExtensionCable components: - parent: 853 pos: -7.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2637 type: ApcExtensionCable components: - parent: 853 pos: -12.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2638 type: ApcExtensionCable components: - parent: 853 pos: -12.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2639 type: ApcExtensionCable components: - parent: 853 pos: -12.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2640 type: ApcExtensionCable components: - parent: 853 pos: -12.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2641 type: ApcExtensionCable components: - parent: 853 pos: -13.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2642 type: ApcExtensionCable components: - parent: 853 pos: -14.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2643 type: ApcExtensionCable components: - parent: 853 pos: -3.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2644 type: ApcExtensionCable components: - parent: 853 pos: -2.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2645 type: ApcExtensionCable components: - parent: 853 pos: -1.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2646 type: ApcExtensionCable components: - parent: 853 pos: -0.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2647 type: ApcExtensionCable components: - parent: 853 pos: 0.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2648 type: ApcExtensionCable components: - parent: 853 pos: 1.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2649 type: ApcExtensionCable components: - parent: 853 pos: 0.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2650 type: ApcExtensionCable components: - parent: 853 pos: 0.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2651 type: ApcExtensionCable components: - parent: 853 pos: -39.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2652 type: ApcExtensionCable components: - parent: 853 pos: -39.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2653 type: ApcExtensionCable components: - parent: 853 pos: -38.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2654 type: ApcExtensionCable components: - parent: 853 pos: -37.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2655 type: ApcExtensionCable components: - parent: 853 pos: -36.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2656 type: ApcExtensionCable components: - parent: 853 pos: -36.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2657 type: ApcExtensionCable components: - parent: 853 pos: -36.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2658 type: ApcExtensionCable components: - parent: 853 pos: -36.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2659 type: ApcExtensionCable components: - parent: 853 pos: -36.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2660 type: ApcExtensionCable components: - parent: 853 pos: -36.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2661 type: ApcExtensionCable components: - parent: 853 pos: -36.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2662 type: ApcExtensionCable components: - parent: 853 pos: -36.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2663 type: ApcExtensionCable components: - parent: 853 pos: -36.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2664 type: ApcExtensionCable components: - parent: 853 pos: -36.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2665 type: ApcExtensionCable components: - parent: 853 pos: -36.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2666 type: ApcExtensionCable components: - parent: 853 pos: -36.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2667 type: ApcExtensionCable components: - parent: 853 pos: -36.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2668 type: ApcExtensionCable components: - parent: 853 pos: -36.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2669 type: ApcExtensionCable components: - parent: 853 pos: -36.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2670 type: ApcExtensionCable components: - parent: 853 pos: -36.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2671 type: ApcExtensionCable components: - parent: 853 pos: -36.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2672 type: ApcExtensionCable components: - parent: 853 pos: -36.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2673 type: ApcExtensionCable components: - parent: 853 pos: -35.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2674 type: ApcExtensionCable components: - parent: 853 pos: -35.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2675 type: ApcExtensionCable components: - parent: 853 pos: -35.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2676 type: ApcExtensionCable components: - parent: 853 pos: -34.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2677 type: ApcExtensionCable components: - parent: 853 pos: -33.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2678 type: ApcExtensionCable components: - parent: 853 pos: -32.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2679 type: ApcExtensionCable components: - parent: 853 pos: -35.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2680 type: ApcExtensionCable components: - parent: 853 pos: -34.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2681 type: ApcExtensionCable components: - parent: 853 pos: -37.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2682 type: ApcExtensionCable components: - parent: 853 pos: -38.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2683 type: ApcExtensionCable components: - parent: 853 pos: -39.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2684 type: ApcExtensionCable components: - parent: 853 pos: -40.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2685 type: ApcExtensionCable components: - parent: 853 pos: -37.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2686 type: ApcExtensionCable components: - parent: 853 pos: -38.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2687 type: ApcExtensionCable components: - parent: 853 pos: -39.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2688 type: ApcExtensionCable components: - parent: 853 pos: -40.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2689 type: ApcExtensionCable components: - parent: 853 pos: -37.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2690 type: ApcExtensionCable components: - parent: 853 pos: -38.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2691 type: ApcExtensionCable components: - parent: 853 pos: -18.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2692 type: ApcExtensionCable components: - parent: 853 pos: -17.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2693 type: ApcExtensionCable components: - parent: 853 pos: -18.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2694 type: ApcExtensionCable components: - parent: 853 pos: -30.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2695 type: ApcExtensionCable components: - parent: 853 pos: -30.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2696 type: ApcExtensionCable components: - parent: 853 pos: -30.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2697 type: ApcExtensionCable components: - parent: 853 pos: -30.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2698 type: ApcExtensionCable components: - parent: 853 pos: -30.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2699 type: ApcExtensionCable components: - parent: 853 pos: -29.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2700 type: ApcExtensionCable components: - parent: 853 pos: -28.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2701 type: ApcExtensionCable components: - parent: 853 pos: -27.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2702 type: ApcExtensionCable components: - parent: 853 pos: -26.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2703 type: ApcExtensionCable components: - parent: 853 pos: -25.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2704 type: ApcExtensionCable components: - parent: 853 pos: -25.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2705 type: ApcExtensionCable components: - parent: 853 pos: -24.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2706 type: ApcExtensionCable components: - parent: 853 pos: -23.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2707 type: ApcExtensionCable components: - parent: 853 pos: -23.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2708 type: ApcExtensionCable components: - parent: 853 pos: -20.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2709 type: ApcExtensionCable components: - parent: 853 pos: -30.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2710 type: ApcExtensionCable components: - parent: 853 pos: -30.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2711 type: ApcExtensionCable components: - parent: 853 pos: -30.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2712 type: ApcExtensionCable components: - parent: 853 pos: -30.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2713 type: ApcExtensionCable components: - parent: 853 pos: -30.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2714 type: ApcExtensionCable components: - parent: 853 pos: -29.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2715 type: ApcExtensionCable components: - parent: 853 pos: -28.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2716 type: ApcExtensionCable components: - parent: 853 pos: -27.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2717 type: ApcExtensionCable components: - parent: 853 pos: -27.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2718 type: ApcExtensionCable components: - parent: 853 pos: -27.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2719 type: solid_wall components: - parent: 853 pos: -31.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2720 type: ApcExtensionCable components: - parent: 853 pos: -31.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2721 type: ApcExtensionCable components: - parent: 853 pos: -32.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2722 type: ApcExtensionCable components: - parent: 853 pos: -32.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2723 type: ApcExtensionCable components: - parent: 853 pos: -32.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2724 type: ApcExtensionCable components: - parent: 853 pos: -32.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2725 type: ApcExtensionCable components: - parent: 853 pos: -32.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2726 type: ApcExtensionCable components: - parent: 853 pos: -32.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2727 type: ApcExtensionCable components: - parent: 853 pos: -32.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2728 type: ApcExtensionCable components: - parent: 853 pos: -32.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2729 type: ApcExtensionCable components: - parent: 853 pos: -32.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2730 type: ApcExtensionCable components: - parent: 853 pos: -20.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2731 type: ApcExtensionCable components: - parent: 853 pos: -20.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2732 type: ApcExtensionCable components: - parent: 853 pos: -20.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2733 type: ApcExtensionCable components: - parent: 853 pos: -21.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2734 type: ApcExtensionCable components: - parent: 853 pos: -22.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2735 type: ApcExtensionCable components: - parent: 853 pos: -22.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2736 type: ApcExtensionCable components: - parent: 853 pos: -23.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2737 type: ApcExtensionCable components: - parent: 853 pos: -24.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2738 type: ApcExtensionCable components: - parent: 853 pos: -24.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2739 type: ApcExtensionCable components: - parent: 853 pos: -14.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2740 type: ApcExtensionCable components: - parent: 853 pos: -14.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2741 type: ApcExtensionCable components: - parent: 853 pos: -14.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2742 type: ApcExtensionCable components: - parent: 853 pos: -14.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2743 type: ApcExtensionCable components: - parent: 853 pos: -14.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2744 type: ApcExtensionCable components: - parent: 853 pos: -13.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2745 type: ApcExtensionCable components: - parent: 853 pos: -12.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2746 type: ApcExtensionCable components: - parent: 853 pos: -11.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2747 type: ApcExtensionCable components: - parent: 853 pos: -12.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2748 type: ApcExtensionCable components: - parent: 853 pos: -12.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2749 type: ApcExtensionCable components: - parent: 853 pos: -13.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2750 type: ApcExtensionCable components: - parent: 853 pos: -12.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2751 type: ApcExtensionCable components: - parent: 853 pos: -16.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2752 type: ApcExtensionCable components: - parent: 853 pos: -15.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2753 type: ApcExtensionCable components: - parent: 853 pos: -14.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2754 type: ApcExtensionCable components: - parent: 853 pos: -17.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2755 type: ApcExtensionCable components: - parent: 853 pos: -18.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2756 type: ApcExtensionCable components: - parent: 853 pos: -19.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2757 type: ApcExtensionCable components: - parent: 853 pos: -20.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2758 type: ApcExtensionCable components: - parent: 853 pos: -18.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2759 type: ApcExtensionCable components: - parent: 853 pos: -18.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2760 type: ApcExtensionCable components: - parent: 853 pos: -18.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2761 type: ApcExtensionCable components: - parent: 853 pos: -19.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2762 type: ApcExtensionCable components: - parent: 853 pos: -20.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2763 type: ApcExtensionCable components: - parent: 853 pos: -21.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2764 type: ApcExtensionCable components: - parent: 853 pos: -22.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2765 type: ApcExtensionCable components: - parent: 853 pos: -22.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2766 type: ApcExtensionCable components: - parent: 853 pos: -22.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2767 type: ApcExtensionCable components: - parent: 853 pos: -22.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2768 type: ApcExtensionCable components: - parent: 853 pos: -22.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2769 type: ApcExtensionCable components: - parent: 853 pos: -22.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2770 type: ApcExtensionCable components: - parent: 853 pos: -22.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2771 type: ApcExtensionCable components: - parent: 853 pos: -22.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2772 type: ApcExtensionCable components: - parent: 853 pos: -23.5,0.5 - rot: 3.141592653589793 rad type: Transform - uid: 2773 type: ApcExtensionCable components: - parent: 853 pos: -15.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2774 type: ApcExtensionCable components: - parent: 853 pos: -15.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2775 type: ApcExtensionCable components: - parent: 853 pos: -15.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2776 type: ApcExtensionCable components: - parent: 853 pos: -11.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2777 type: ApcExtensionCable components: - parent: 853 pos: -11.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2778 type: ApcExtensionCable components: - parent: 853 pos: -11.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2779 type: ApcExtensionCable components: - parent: 853 pos: -11.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2780 type: ApcExtensionCable components: - parent: 853 pos: -11.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2781 type: ApcExtensionCable components: - parent: 853 pos: -11.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2782 type: ApcExtensionCable components: - parent: 853 pos: -11.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2783 type: ApcExtensionCable components: - parent: 853 pos: -11.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2784 type: ApcExtensionCable components: - parent: 853 pos: -12.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2785 type: ApcExtensionCable components: - parent: 853 pos: -12.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2786 type: ApcExtensionCable components: - parent: 853 pos: -13.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2787 type: ApcExtensionCable components: - parent: 853 pos: -14.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2788 type: ApcExtensionCable components: - parent: 853 pos: -14.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2789 type: SalternApc components: - parent: 853 pos: -14.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.45 type: Battery @@ -26862,2716 +27392,2716 @@ entities: components: - parent: 853 pos: -15.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2791 type: ApcExtensionCable components: - parent: 853 pos: -16.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2792 type: ApcExtensionCable components: - parent: 853 pos: -17.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2793 type: ApcExtensionCable components: - parent: 853 pos: -18.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2794 type: ApcExtensionCable components: - parent: 853 pos: -19.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2795 type: ApcExtensionCable components: - parent: 853 pos: -20.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2796 type: ApcExtensionCable components: - parent: 853 pos: -20.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2797 type: ApcExtensionCable components: - parent: 853 pos: -16.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2798 type: ApcExtensionCable components: - parent: 853 pos: -16.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2799 type: ApcExtensionCable components: - parent: 853 pos: -12.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2800 type: ApcExtensionCable components: - parent: 853 pos: -12.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2801 type: ApcExtensionCable components: - parent: 853 pos: -13.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2802 type: ApcExtensionCable components: - parent: 853 pos: -20.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2803 type: ApcExtensionCable components: - parent: 853 pos: -20.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2804 type: ApcExtensionCable components: - parent: 853 pos: -20.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2805 type: ApcExtensionCable components: - parent: 853 pos: -20.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2806 type: ApcExtensionCable components: - parent: 853 pos: -10.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2807 type: ApcExtensionCable components: - parent: 853 pos: -9.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2808 type: ApcExtensionCable components: - parent: 853 pos: -8.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2809 type: ApcExtensionCable components: - parent: 853 pos: -7.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2810 type: ApcExtensionCable components: - parent: 853 pos: -6.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2811 type: ApcExtensionCable components: - parent: 853 pos: -5.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2812 type: ApcExtensionCable components: - parent: 853 pos: -4.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2813 type: ApcExtensionCable components: - parent: 853 pos: -3.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2814 type: ApcExtensionCable components: - parent: 853 pos: -2.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2815 type: ApcExtensionCable components: - parent: 853 pos: -1.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2816 type: ApcExtensionCable components: - parent: 853 pos: -0.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2817 type: ApcExtensionCable components: - parent: 853 pos: 0.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2818 type: ApcExtensionCable components: - parent: 853 pos: -0.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2819 type: ApcExtensionCable components: - parent: 853 pos: -0.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2820 type: ApcExtensionCable components: - parent: 853 pos: -0.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2821 type: ApcExtensionCable components: - parent: 853 pos: -0.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2822 type: ApcExtensionCable components: - parent: 853 pos: -0.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2823 type: ApcExtensionCable components: - parent: 853 pos: -0.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2824 type: ApcExtensionCable components: - parent: 853 pos: 0.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2825 type: ApcExtensionCable components: - parent: 853 pos: -5.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2826 type: ApcExtensionCable components: - parent: 853 pos: -5.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2827 type: ApcExtensionCable components: - parent: 853 pos: -4.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2828 type: ApcExtensionCable components: - parent: 853 pos: -3.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2829 type: ApcExtensionCable components: - parent: 853 pos: -6.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2830 type: ApcExtensionCable components: - parent: 853 pos: -6.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2831 type: ApcExtensionCable components: - parent: 853 pos: -7.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2832 type: ApcExtensionCable components: - parent: 853 pos: -6.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2833 type: ApcExtensionCable components: - parent: 853 pos: -6.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2834 type: ApcExtensionCable components: - parent: 853 pos: -6.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2835 type: ApcExtensionCable components: - parent: 853 pos: -5.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2836 type: ApcExtensionCable components: - parent: 853 pos: -5.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2837 type: ApcExtensionCable components: - parent: 853 pos: -4.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2838 type: ApcExtensionCable components: - parent: 853 pos: -4.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2839 type: ApcExtensionCable components: - parent: 853 pos: -3.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2840 type: ApcExtensionCable components: - parent: 853 pos: -2.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2841 type: ApcExtensionCable components: - parent: 853 pos: -1.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2842 type: ApcExtensionCable components: - parent: 853 pos: -0.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2843 type: ApcExtensionCable components: - parent: 853 pos: 0.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2844 type: ApcExtensionCable components: - parent: 853 pos: 0.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2845 type: ApcExtensionCable components: - parent: 853 pos: 0.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2846 type: ApcExtensionCable components: - parent: 853 pos: 0.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2847 type: ApcExtensionCable components: - parent: 853 pos: -0.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2848 type: ApcExtensionCable components: - parent: 853 pos: -1.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2849 type: ApcExtensionCable components: - parent: 853 pos: -1.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2850 type: ApcExtensionCable components: - parent: 853 pos: -1.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2851 type: ApcExtensionCable components: - parent: 853 pos: -0.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2852 type: ApcExtensionCable components: - parent: 853 pos: -2.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2853 type: ApcExtensionCable components: - parent: 853 pos: -3.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2854 type: ApcExtensionCable components: - parent: 853 pos: -4.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2855 type: ApcExtensionCable components: - parent: 853 pos: -3.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2856 type: ApcExtensionCable components: - parent: 853 pos: -3.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2857 type: ApcExtensionCable components: - parent: 853 pos: -3.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2858 type: ApcExtensionCable components: - parent: 853 pos: -3.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2859 type: ApcExtensionCable components: - parent: 853 pos: -2.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2860 type: ApcExtensionCable components: - parent: 853 pos: -9.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2861 type: ApcExtensionCable components: - parent: 853 pos: -9.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2862 type: ApcExtensionCable components: - parent: 853 pos: -9.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2863 type: ApcExtensionCable components: - parent: 853 pos: -8.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2864 type: ApcExtensionCable components: - parent: 853 pos: -7.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2865 type: ApcExtensionCable components: - parent: 853 pos: -7.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2866 type: ApcExtensionCable components: - parent: 853 pos: -7.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2867 type: ApcExtensionCable components: - parent: 853 pos: -9.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2868 type: ApcExtensionCable components: - parent: 853 pos: -10.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2869 type: ApcExtensionCable components: - parent: 853 pos: -11.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2870 type: ApcExtensionCable components: - parent: 853 pos: -11.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2871 type: ApcExtensionCable components: - parent: 853 pos: -9.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2872 type: ApcExtensionCable components: - parent: 853 pos: -9.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2873 type: ApcExtensionCable components: - parent: 853 pos: -9.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2874 type: ApcExtensionCable components: - parent: 853 pos: -8.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2875 type: ApcExtensionCable components: - parent: 853 pos: -3.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2876 type: ApcExtensionCable components: - parent: 853 pos: -3.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2877 type: ApcExtensionCable components: - parent: 853 pos: -3.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2878 type: ApcExtensionCable components: - parent: 853 pos: -3.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2879 type: ApcExtensionCable components: - parent: 853 pos: -3.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2880 type: ApcExtensionCable components: - parent: 853 pos: -3.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2881 type: ApcExtensionCable components: - parent: 853 pos: -3.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2882 type: ApcExtensionCable components: - parent: 853 pos: -3.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2883 type: ApcExtensionCable components: - parent: 853 pos: -2.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2884 type: ApcExtensionCable components: - parent: 853 pos: -1.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2885 type: ApcExtensionCable components: - parent: 853 pos: -1.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2886 type: ApcExtensionCable components: - parent: 853 pos: -0.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2887 type: ApcExtensionCable components: - parent: 853 pos: 0.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2888 type: ApcExtensionCable components: - parent: 853 pos: -4.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2889 type: ApcExtensionCable components: - parent: 853 pos: -4.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2890 type: ApcExtensionCable components: - parent: 853 pos: -4.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2891 type: ApcExtensionCable components: - parent: 853 pos: -5.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2892 type: ApcExtensionCable components: - parent: 853 pos: -6.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2893 type: ApcExtensionCable components: - parent: 853 pos: -5.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2894 type: ApcExtensionCable components: - parent: 853 pos: -14.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2895 type: ApcExtensionCable components: - parent: 853 pos: -14.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2896 type: ApcExtensionCable components: - parent: 853 pos: -14.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2897 type: ApcExtensionCable components: - parent: 853 pos: -14.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2898 type: ApcExtensionCable components: - parent: 853 pos: -14.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2899 type: ApcExtensionCable components: - parent: 853 pos: -14.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2900 type: ApcExtensionCable components: - parent: 853 pos: -14.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2901 type: ApcExtensionCable components: - parent: 853 pos: -14.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2902 type: ApcExtensionCable components: - parent: 853 pos: -14.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2903 type: ApcExtensionCable components: - parent: 853 pos: -14.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2904 type: ApcExtensionCable components: - parent: 853 pos: -15.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2905 type: ApcExtensionCable components: - parent: 853 pos: -16.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2906 type: ApcExtensionCable components: - parent: 853 pos: -15.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2907 type: ApcExtensionCable components: - parent: 853 pos: -16.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2908 type: ApcExtensionCable components: - parent: 853 pos: -17.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2909 type: ApcExtensionCable components: - parent: 853 pos: -1.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2910 type: ApcExtensionCable components: - parent: 853 pos: -0.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2911 type: ApcExtensionCable components: - parent: 853 pos: 0.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2912 type: ApcExtensionCable components: - parent: 853 pos: 7.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2913 type: ApcExtensionCable components: - parent: 853 pos: 7.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2914 type: ApcExtensionCable components: - parent: 853 pos: 7.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2915 type: ApcExtensionCable components: - parent: 853 pos: 8.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2916 type: ApcExtensionCable components: - parent: 853 pos: 9.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2917 type: ApcExtensionCable components: - parent: 853 pos: 10.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2918 type: ApcExtensionCable components: - parent: 853 pos: 10.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2919 type: ApcExtensionCable components: - parent: 853 pos: 11.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2920 type: ApcExtensionCable components: - parent: 853 pos: 12.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2921 type: ApcExtensionCable components: - parent: 853 pos: 13.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2922 type: ApcExtensionCable components: - parent: 853 pos: 14.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2923 type: ApcExtensionCable components: - parent: 853 pos: 15.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2924 type: ApcExtensionCable components: - parent: 853 pos: 7.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2925 type: ApcExtensionCable components: - parent: 853 pos: 7.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2926 type: ApcExtensionCable components: - parent: 853 pos: 7.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2927 type: ApcExtensionCable components: - parent: 853 pos: 7.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2928 type: ApcExtensionCable components: - parent: 853 pos: 6.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2929 type: ApcExtensionCable components: - parent: 853 pos: 5.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2930 type: ApcExtensionCable components: - parent: 853 pos: 8.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2931 type: ApcExtensionCable components: - parent: 853 pos: 9.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2932 type: ApcExtensionCable components: - parent: 853 pos: 10.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2933 type: ApcExtensionCable components: - parent: 853 pos: 11.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2934 type: ApcExtensionCable components: - parent: 853 pos: 22.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2935 type: ApcExtensionCable components: - parent: 853 pos: 22.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2936 type: ApcExtensionCable components: - parent: 853 pos: 23.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2937 type: ApcExtensionCable components: - parent: 853 pos: 24.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2938 type: ApcExtensionCable components: - parent: 853 pos: 25.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2939 type: ApcExtensionCable components: - parent: 853 pos: 22.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2940 type: ApcExtensionCable components: - parent: 853 pos: 22.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2941 type: ApcExtensionCable components: - parent: 853 pos: 22.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2942 type: ApcExtensionCable components: - parent: 853 pos: 22.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2943 type: ApcExtensionCable components: - parent: 853 pos: 22.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2944 type: ApcExtensionCable components: - parent: 853 pos: 21.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2945 type: ApcExtensionCable components: - parent: 853 pos: 23.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2946 type: ApcExtensionCable components: - parent: 853 pos: 23.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2947 type: ApcExtensionCable components: - parent: 853 pos: 24.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2948 type: ApcExtensionCable components: - parent: 853 pos: 25.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2949 type: ApcExtensionCable components: - parent: 853 pos: 22.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2950 type: ApcExtensionCable components: - parent: 853 pos: 21.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2951 type: ApcExtensionCable components: - parent: 853 pos: 20.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2952 type: ApcExtensionCable components: - parent: 853 pos: 19.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2953 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2954 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2955 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2956 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2957 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2958 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2959 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2960 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2961 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2962 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2963 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2964 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2965 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2966 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2967 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2968 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2969 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2970 type: ApcExtensionCable components: - parent: 853 pos: 19.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2971 type: ApcExtensionCable components: - parent: 853 pos: 20.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2972 type: ApcExtensionCable components: - parent: 853 pos: 21.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2973 type: ApcExtensionCable components: - parent: 853 pos: 22.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2974 type: ApcExtensionCable components: - parent: 853 pos: 22.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2975 type: ApcExtensionCable components: - parent: 853 pos: 23.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2976 type: ApcExtensionCable components: - parent: 853 pos: 23.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2977 type: ApcExtensionCable components: - parent: 853 pos: 8.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2978 type: ApcExtensionCable components: - parent: 853 pos: 8.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2979 type: ApcExtensionCable components: - parent: 853 pos: 7.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2980 type: ApcExtensionCable components: - parent: 853 pos: 9.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2981 type: ApcExtensionCable components: - parent: 853 pos: 10.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2982 type: ApcExtensionCable components: - parent: 853 pos: 7.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2983 type: ApcExtensionCable components: - parent: 853 pos: 8.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2984 type: ApcExtensionCable components: - parent: 853 pos: 9.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2985 type: ApcExtensionCable components: - parent: 853 pos: 10.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2986 type: ApcExtensionCable components: - parent: 853 pos: 11.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2987 type: ApcExtensionCable components: - parent: 853 pos: 12.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2988 type: ApcExtensionCable components: - parent: 853 pos: 13.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2989 type: ApcExtensionCable components: - parent: 853 pos: 14.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2990 type: ApcExtensionCable components: - parent: 853 pos: 15.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2991 type: ApcExtensionCable components: - parent: 853 pos: 16.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2992 type: ApcExtensionCable components: - parent: 853 pos: 17.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2993 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2994 type: ApcExtensionCable components: - parent: 853 pos: 17.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2995 type: ApcExtensionCable components: - parent: 853 pos: 16.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2996 type: ApcExtensionCable components: - parent: 853 pos: 15.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2997 type: ApcExtensionCable components: - parent: 853 pos: 16.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2998 type: ApcExtensionCable components: - parent: 853 pos: 16.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 2999 type: ApcExtensionCable components: - parent: 853 pos: 17.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3000 type: ApcExtensionCable components: - parent: 853 pos: 18.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3001 type: ApcExtensionCable components: - parent: 853 pos: 15.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3002 type: ApcExtensionCable components: - parent: 853 pos: 14.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3003 type: ApcExtensionCable components: - parent: 853 pos: 13.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3004 type: ApcExtensionCable components: - parent: 853 pos: 12.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3005 type: ApcExtensionCable components: - parent: 853 pos: 11.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3006 type: ApcExtensionCable components: - parent: 853 pos: 10.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3007 type: ApcExtensionCable components: - parent: 853 pos: 9.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3008 type: ApcExtensionCable components: - parent: 853 pos: 8.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3009 type: ApcExtensionCable components: - parent: 853 pos: 7.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3010 type: ApcExtensionCable components: - parent: 853 pos: 6.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3011 type: ApcExtensionCable components: - parent: 853 pos: 16.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3012 type: ApcExtensionCable components: - parent: 853 pos: 16.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3013 type: ApcExtensionCable components: - parent: 853 pos: 17.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3014 type: ApcExtensionCable components: - parent: 853 pos: 18.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3015 type: ApcExtensionCable components: - parent: 853 pos: 9.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3016 type: ApcExtensionCable components: - parent: 853 pos: 9.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3017 type: ApcExtensionCable components: - parent: 853 pos: 9.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3018 type: ApcExtensionCable components: - parent: 853 pos: 9.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3019 type: ApcExtensionCable components: - parent: 853 pos: 9.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3020 type: ApcExtensionCable components: - parent: 853 pos: 9.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3021 type: ApcExtensionCable components: - parent: 853 pos: 8.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3022 type: ApcExtensionCable components: - parent: 853 pos: 7.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3023 type: ApcExtensionCable components: - parent: 853 pos: 6.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3024 type: ApcExtensionCable components: - parent: 853 pos: 10.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3025 type: ApcExtensionCable components: - parent: 853 pos: 11.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3026 type: ApcExtensionCable components: - parent: 853 pos: 6.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3027 type: ApcExtensionCable components: - parent: 853 pos: 1.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3028 type: ApcExtensionCable components: - parent: 853 pos: 2.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3029 type: ApcExtensionCable components: - parent: 853 pos: 3.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3030 type: ApcExtensionCable components: - parent: 853 pos: 3.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3031 type: ApcExtensionCable components: - parent: 853 pos: 3.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3032 type: ApcExtensionCable components: - parent: 853 pos: 2.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3033 type: ApcExtensionCable components: - parent: 853 pos: 4.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3034 type: ApcExtensionCable components: - parent: 853 pos: 22.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3035 type: ApcExtensionCable components: - parent: 853 pos: 31.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3036 type: ApcExtensionCable components: - parent: 853 pos: 31.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3037 type: ApcExtensionCable components: - parent: 853 pos: 31.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3038 type: ApcExtensionCable components: - parent: 853 pos: 31.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3039 type: ApcExtensionCable components: - parent: 853 pos: 31.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3040 type: ApcExtensionCable components: - parent: 853 pos: 31.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3041 type: ApcExtensionCable components: - parent: 853 pos: 30.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3042 type: ApcExtensionCable components: - parent: 853 pos: 29.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3043 type: ApcExtensionCable components: - parent: 853 pos: 32.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3044 type: ApcExtensionCable components: - parent: 853 pos: 33.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3045 type: ApcExtensionCable components: - parent: 853 pos: 34.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3046 type: ApcExtensionCable components: - parent: 853 pos: 35.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3047 type: ApcExtensionCable components: - parent: 853 pos: 31.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3048 type: ApcExtensionCable components: - parent: 853 pos: 31.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3049 type: ApcExtensionCable components: - parent: 853 pos: 31.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3050 type: ApcExtensionCable components: - parent: 853 pos: 31.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3051 type: ApcExtensionCable components: - parent: 853 pos: 32.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3052 type: ApcExtensionCable components: - parent: 853 pos: 33.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3053 type: ApcExtensionCable components: - parent: 853 pos: 34.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3054 type: ApcExtensionCable components: - parent: 853 pos: 35.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3055 type: ApcExtensionCable components: - parent: 853 pos: 36.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3056 type: ApcExtensionCable components: - parent: 853 pos: 37.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3057 type: ApcExtensionCable components: - parent: 853 pos: 38.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3058 type: ApcExtensionCable components: - parent: 853 pos: 38.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3059 type: ApcExtensionCable components: - parent: 853 pos: 38.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3060 type: ApcExtensionCable components: - parent: 853 pos: 38.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3061 type: ApcExtensionCable components: - parent: 853 pos: 38.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3062 type: ApcExtensionCable components: - parent: 853 pos: 38.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3063 type: ApcExtensionCable components: - parent: 853 pos: 38.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3064 type: ApcExtensionCable components: - parent: 853 pos: 43.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3065 type: ApcExtensionCable components: - parent: 853 pos: 43.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3066 type: ApcExtensionCable components: - parent: 853 pos: 42.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3067 type: ApcExtensionCable components: - parent: 853 pos: 41.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3068 type: ApcExtensionCable components: - parent: 853 pos: 39.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3069 type: ApcExtensionCable components: - parent: 853 pos: 38.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3070 type: ApcExtensionCable components: - parent: 853 pos: 40.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3071 type: ApcExtensionCable components: - parent: 853 pos: 38.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3072 type: ApcExtensionCable components: - parent: 853 pos: 38.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3073 type: ApcExtensionCable components: - parent: 853 pos: 38.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3074 type: ApcExtensionCable components: - parent: 853 pos: 44.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3075 type: ApcExtensionCable components: - parent: 853 pos: 44.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3076 type: ApcExtensionCable components: - parent: 853 pos: 44.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3077 type: ApcExtensionCable components: - parent: 853 pos: 44.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3078 type: ApcExtensionCable components: - parent: 853 pos: 44.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3079 type: ApcExtensionCable components: - parent: 853 pos: 44.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3080 type: ApcExtensionCable components: - parent: 853 pos: 45.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3081 type: ApcExtensionCable components: - parent: 853 pos: 46.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3082 type: ApcExtensionCable components: - parent: 853 pos: 47.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3083 type: ApcExtensionCable components: - parent: 853 pos: 48.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3084 type: ApcExtensionCable components: - parent: 853 pos: 49.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3085 type: ApcExtensionCable components: - parent: 853 pos: 33.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3086 type: ApcExtensionCable components: - parent: 853 pos: 33.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3087 type: ApcExtensionCable components: - parent: 853 pos: 43.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3088 type: ApcExtensionCable components: - parent: 853 pos: 43.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3089 type: ApcExtensionCable components: - parent: 853 pos: 43.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3090 type: ApcExtensionCable components: - parent: 853 pos: 43.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3091 type: ApcExtensionCable components: - parent: 853 pos: 43.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3092 type: ApcExtensionCable components: - parent: 853 pos: 43.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3093 type: ApcExtensionCable components: - parent: 853 pos: 43.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3094 type: ApcExtensionCable components: - parent: 853 pos: 43.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3095 type: ApcExtensionCable components: - parent: 853 pos: 43.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3096 type: ApcExtensionCable components: - parent: 853 pos: 42.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3097 type: ApcExtensionCable components: - parent: 853 pos: 41.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3098 type: ApcExtensionCable components: - parent: 853 pos: 40.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3099 type: ApcExtensionCable components: - parent: 853 pos: 39.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3100 type: ApcExtensionCable components: - parent: 853 pos: 38.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3101 type: ApcExtensionCable components: - parent: 853 pos: 37.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3102 type: ApcExtensionCable components: - parent: 853 pos: 37.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3103 type: ApcExtensionCable components: - parent: 853 pos: 37.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3104 type: ApcExtensionCable components: - parent: 853 pos: 37.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3105 type: ApcExtensionCable components: - parent: 853 pos: 36.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3106 type: ApcExtensionCable components: - parent: 853 pos: 35.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3107 type: ApcExtensionCable components: - parent: 853 pos: 34.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3108 type: ApcExtensionCable components: - parent: 853 pos: 33.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3109 type: ApcExtensionCable components: - parent: 853 pos: 32.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3110 type: ApcExtensionCable components: - parent: 853 pos: 31.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3111 type: ApcExtensionCable components: - parent: 853 pos: 30.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3112 type: ApcExtensionCable components: - parent: 853 pos: 29.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3113 type: ApcExtensionCable components: - parent: 853 pos: 28.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3114 type: ApcExtensionCable components: - parent: 853 pos: 27.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3115 type: ApcExtensionCable components: - parent: 853 pos: 27.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3116 type: ApcExtensionCable components: - parent: 853 pos: 27.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3117 type: ApcExtensionCable components: - parent: 853 pos: 27.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3118 type: ApcExtensionCable components: - parent: 853 pos: 27.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3119 type: ApcExtensionCable components: - parent: 853 pos: 27.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3120 type: ApcExtensionCable components: - parent: 853 pos: 27.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3121 type: ApcExtensionCable components: - parent: 853 pos: 27.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3122 type: ApcExtensionCable components: - parent: 853 pos: 27.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3123 type: ApcExtensionCable components: - parent: 853 pos: 27.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3124 type: ApcExtensionCable components: - parent: 853 pos: 27.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3125 type: ApcExtensionCable components: - parent: 853 pos: 27.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3126 type: ApcExtensionCable components: - parent: 853 pos: 27.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3127 type: ApcExtensionCable components: - parent: 853 pos: 26.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3128 type: ApcExtensionCable components: - parent: 853 pos: 25.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3129 type: ApcExtensionCable components: - parent: 853 pos: 24.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3130 type: ApcExtensionCable components: - parent: 853 pos: 47.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3131 type: ApcExtensionCable components: - parent: 853 pos: 47.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3132 type: ApcExtensionCable components: - parent: 853 pos: 47.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3133 type: ApcExtensionCable components: - parent: 853 pos: 48.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3134 type: ApcExtensionCable components: - parent: 853 pos: 49.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3135 type: ApcExtensionCable components: - parent: 853 pos: 50.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3136 type: ApcExtensionCable components: - parent: 853 pos: 51.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3137 type: ApcExtensionCable components: - parent: 853 pos: 51.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3138 type: ApcExtensionCable components: - parent: 853 pos: 51.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3139 type: ApcExtensionCable components: - parent: 853 pos: 41.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3140 type: ApcExtensionCable components: - parent: 853 pos: 41.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3141 type: ApcExtensionCable components: - parent: 853 pos: 41.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3142 type: ApcExtensionCable components: - parent: 853 pos: 41.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3143 type: ApcExtensionCable components: - parent: 853 pos: 28.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3144 type: ApcExtensionCable components: - parent: 853 pos: 28.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3145 type: ApcExtensionCable components: - parent: 853 pos: 28.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3146 type: ApcExtensionCable components: - parent: 853 pos: 28.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3147 type: ApcExtensionCable components: - parent: 853 pos: 28.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3148 type: ApcExtensionCable components: - parent: 853 pos: 29.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3149 type: ApcExtensionCable components: - parent: 853 pos: 28.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3150 type: ApcExtensionCable components: - parent: 853 pos: 27.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3151 type: ApcExtensionCable components: - parent: 853 pos: 26.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3152 type: ApcExtensionCable components: - parent: 853 pos: 25.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3153 type: ApcExtensionCable components: - parent: 853 pos: 26.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3154 type: ApcExtensionCable components: - parent: 853 pos: 26.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3155 type: ApcExtensionCable components: - parent: 853 pos: 27.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3156 type: ApcExtensionCable components: - parent: 853 pos: 27.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3157 type: ApcExtensionCable components: - parent: 853 pos: 30.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3158 type: ApcExtensionCable components: - parent: 853 pos: 31.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3159 type: ApcExtensionCable components: - parent: 853 pos: 32.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3160 type: ApcExtensionCable components: - parent: 853 pos: 33.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3161 type: ApcExtensionCable components: - parent: 853 pos: 34.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3162 type: ApcExtensionCable components: - parent: 853 pos: 35.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3163 type: ApcExtensionCable components: - parent: 853 pos: 36.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3164 type: ApcExtensionCable components: - parent: 853 pos: 30.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3165 type: ApcExtensionCable components: - parent: 853 pos: 33.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3166 type: ApcExtensionCable components: - parent: 853 pos: 35.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3167 type: ApcExtensionCable components: - parent: 853 pos: 35.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3168 type: ApcExtensionCable components: - parent: 853 pos: 35.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3169 type: ApcExtensionCable components: - parent: 853 pos: 36.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3170 type: ApcExtensionCable components: - parent: 853 pos: 36.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3171 type: ApcExtensionCable components: - parent: 853 pos: 30.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3172 type: ApcExtensionCable components: - parent: 853 pos: 30.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3173 type: ApcExtensionCable components: - parent: 853 pos: 24.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3174 type: ApcExtensionCable components: - parent: 853 pos: 24.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3175 type: ApcExtensionCable components: - parent: 853 pos: 23.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3176 type: ApcExtensionCable components: - parent: 853 pos: 22.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3177 type: HVWire components: - parent: 853 pos: 58.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3178 type: Emitter @@ -29584,3045 +30114,3043 @@ entities: components: - parent: 853 pos: 38.25703,11.473667 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3180 type: ApcExtensionCable components: - parent: 853 pos: 21.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3181 type: ApcExtensionCable components: - parent: 853 pos: 20.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3182 type: HVWire components: - parent: 853 pos: 58.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3183 type: HVWire components: - parent: 853 pos: 58.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3184 type: ApcExtensionCable components: - parent: 853 pos: 19.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3185 type: ApcExtensionCable components: - parent: 853 pos: 18.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3186 type: ApcExtensionCable components: - parent: 853 pos: 21.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3187 type: ApcExtensionCable components: - parent: 853 pos: 21.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3188 type: ApcExtensionCable components: - parent: 853 pos: 21.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3189 type: ApcExtensionCable components: - parent: 853 pos: 21.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3190 type: ApcExtensionCable components: - parent: 853 pos: 21.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3191 type: ApcExtensionCable components: - parent: 853 pos: 22.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3192 type: ApcExtensionCable components: - parent: 853 pos: 23.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3193 type: ApcExtensionCable components: - parent: 853 pos: 20.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3194 type: ApcExtensionCable components: - parent: 853 pos: 19.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3195 type: ApcExtensionCable components: - parent: 853 pos: 18.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3196 type: ApcExtensionCable components: - parent: 853 pos: 17.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3197 type: ApcExtensionCable components: - parent: 853 pos: 18.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3198 type: ApcExtensionCable components: - parent: 853 pos: 18.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3199 type: ApcExtensionCable components: - parent: 853 pos: 12.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3200 type: ApcExtensionCable components: - parent: 853 pos: 12.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3201 type: ApcExtensionCable components: - parent: 853 pos: 12.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3202 type: ApcExtensionCable components: - parent: 853 pos: 12.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3203 type: ApcExtensionCable components: - parent: 853 pos: 13.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3204 type: ApcExtensionCable components: - parent: 853 pos: 14.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3205 type: ApcExtensionCable components: - parent: 853 pos: 15.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3206 type: ApcExtensionCable components: - parent: 853 pos: 16.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3207 type: ApcExtensionCable components: - parent: 853 pos: 15.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3208 type: ApcExtensionCable components: - parent: 853 pos: 13.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3209 type: ApcExtensionCable components: - parent: 853 pos: 11.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3210 type: ApcExtensionCable components: - parent: 853 pos: 10.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3211 type: ApcExtensionCable components: - parent: 853 pos: 9.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3212 type: ApcExtensionCable components: - parent: 853 pos: 8.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3213 type: ApcExtensionCable components: - parent: 853 pos: 7.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3214 type: ApcExtensionCable components: - parent: 853 pos: 6.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3215 type: ApcExtensionCable components: - parent: 853 pos: 8.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3216 type: ApcExtensionCable components: - parent: 853 pos: 8.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3217 type: ApcExtensionCable components: - parent: 853 pos: 8.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3218 type: ApcExtensionCable components: - parent: 853 pos: 8.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3219 type: ApcExtensionCable components: - parent: 853 pos: 8.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3220 type: ApcExtensionCable components: - parent: 853 pos: 12.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3221 type: ApcExtensionCable components: - parent: 853 pos: 12.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3222 type: ApcExtensionCable components: - parent: 853 pos: 11.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3223 type: ApcExtensionCable components: - parent: 853 pos: 10.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3224 type: ApcExtensionCable components: - parent: 853 pos: 9.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3225 type: ApcExtensionCable components: - parent: 853 pos: 8.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3226 type: ApcExtensionCable components: - parent: 853 pos: 7.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3227 type: ApcExtensionCable components: - parent: 853 pos: 6.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3228 type: ApcExtensionCable components: - parent: 853 pos: 12.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3229 type: ApcExtensionCable components: - parent: 853 pos: 13.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3230 type: ApcExtensionCable components: - parent: 853 pos: 14.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3231 type: ApcExtensionCable components: - parent: 853 pos: 15.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3232 type: ApcExtensionCable components: - parent: 853 pos: 15.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3233 type: ApcExtensionCable components: - parent: 853 pos: 13.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3234 type: ApcExtensionCable components: - parent: 853 pos: 13.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3235 type: ApcExtensionCable components: - parent: 853 pos: 9.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3236 type: ApcExtensionCable components: - parent: 853 pos: 9.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3237 type: ApcExtensionCable components: - parent: 853 pos: 9.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3238 type: ApcExtensionCable components: - parent: 853 pos: 9.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3239 type: ApcExtensionCable components: - parent: 853 pos: 9.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3240 type: ApcExtensionCable components: - parent: 853 pos: 9.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3241 type: ApcExtensionCable components: - parent: 853 pos: 9.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3242 type: ApcExtensionCable components: - parent: 853 pos: 10.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3243 type: ApcExtensionCable components: - parent: 853 pos: 8.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3244 type: ApcExtensionCable components: - parent: 853 pos: 8.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3245 type: ApcExtensionCable components: - parent: 853 pos: 7.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3246 type: ApcExtensionCable components: - parent: 853 pos: 8.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3247 type: ApcExtensionCable components: - parent: 853 pos: 6.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3248 type: ApcExtensionCable components: - parent: 853 pos: 5.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3249 type: ApcExtensionCable components: - parent: 853 pos: 5.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3250 type: ApcExtensionCable components: - parent: 853 pos: 4.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3251 type: ApcExtensionCable components: - parent: 853 pos: 3.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3252 type: ApcExtensionCable components: - parent: 853 pos: 3.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3253 type: ApcExtensionCable components: - parent: 853 pos: 3.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3254 type: ApcExtensionCable components: - parent: 853 pos: 3.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3255 type: ApcExtensionCable components: - parent: 853 pos: 3.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3256 type: ApcExtensionCable components: - parent: 853 pos: 3.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3257 type: ApcExtensionCable components: - parent: 853 pos: 3.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3258 type: ApcExtensionCable components: - parent: 853 pos: 2.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3259 type: ApcExtensionCable components: - parent: 853 pos: 1.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3260 type: ApcExtensionCable components: - parent: 853 pos: 9.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3261 type: ApcExtensionCable components: - parent: 853 pos: 9.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3262 type: ApcExtensionCable components: - parent: 853 pos: 9.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3263 type: ApcExtensionCable components: - parent: 853 pos: 9.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3264 type: ApcExtensionCable components: - parent: 853 pos: 8.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3265 type: ApcExtensionCable components: - parent: 853 pos: 7.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3266 type: ApcExtensionCable components: - parent: 853 pos: 6.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3267 type: ApcExtensionCable components: - parent: 853 pos: 9.5,28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3268 type: ApcExtensionCable components: - parent: 853 pos: 9.5,29.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3269 type: ApcExtensionCable components: - parent: 853 pos: 9.5,30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3270 type: ApcExtensionCable components: - parent: 853 pos: 8.5,30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3271 type: ApcExtensionCable components: - parent: 853 pos: 7.5,30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3272 type: ApcExtensionCable components: - parent: 853 pos: 6.5,30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3273 type: ApcExtensionCable components: - parent: 853 pos: 6.5,31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3274 type: ApcExtensionCable components: - parent: 853 pos: -2.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3275 type: ApcExtensionCable components: - parent: 853 pos: -2.5,28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3276 type: ApcExtensionCable components: - parent: 853 pos: -2.5,29.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3277 type: ApcExtensionCable components: - parent: 853 pos: -2.5,30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3278 type: ApcExtensionCable components: - parent: 853 pos: -1.5,30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3279 type: ApcExtensionCable components: - parent: 853 pos: -0.5,30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3280 type: ApcExtensionCable components: - parent: 853 pos: 0.5,30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3281 type: ApcExtensionCable components: - parent: 853 pos: 1.5,30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3282 type: ApcExtensionCable components: - parent: 853 pos: 2.5,30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3283 type: ApcExtensionCable components: - parent: 853 pos: 3.5,30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3284 type: ApcExtensionCable components: - parent: 853 pos: 0.5,31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3285 type: ApcExtensionCable components: - parent: 853 pos: 3.5,31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3286 type: ApcExtensionCable components: - parent: 853 pos: -2.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3287 type: ApcExtensionCable components: - parent: 853 pos: -2.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3288 type: ApcExtensionCable components: - parent: 853 pos: -1.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3289 type: ApcExtensionCable components: - parent: 853 pos: -0.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3290 type: ApcExtensionCable components: - parent: 853 pos: 0.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3291 type: ApcExtensionCable components: - parent: 853 pos: 0.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3292 type: ApcExtensionCable components: - parent: 853 pos: -2.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3293 type: ApcExtensionCable components: - parent: 853 pos: -2.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3294 type: ApcExtensionCable components: - parent: 853 pos: -1.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3295 type: SalternSmes components: - parent: 853 pos: 42.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3296 type: SalternSmes components: - parent: 853 pos: 40.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3297 type: HVWire components: - parent: 853 pos: 41.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3298 type: HVWire components: - parent: 853 pos: 41.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3299 type: HVWire components: - parent: 853 pos: 42.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3300 type: HVWire components: - parent: 853 pos: 42.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3301 type: HVWire components: - parent: 853 pos: 42.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3302 type: HVWire components: - parent: 853 pos: 42.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3303 type: HVWire components: - parent: 853 pos: 42.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3304 type: HVWire components: - parent: 853 pos: 42.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3305 type: HVWire components: - parent: 853 pos: 42.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3306 type: HVWire components: - parent: 853 pos: 42.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3307 type: HVWire components: - parent: 853 pos: 42.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3308 type: HVWire components: - parent: 853 pos: 42.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3309 type: HVWire components: - parent: 853 pos: 42.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3310 type: HVWire components: - parent: 853 pos: 41.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3311 type: HVWire components: - parent: 853 pos: 40.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3312 type: HVWire components: - parent: 853 pos: 39.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3313 type: HVWire components: - parent: 853 pos: 38.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3314 type: HVWire components: - parent: 853 pos: 38.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3315 type: HVWire components: - parent: 853 pos: 38.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3316 type: HVWire components: - parent: 853 pos: 38.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3317 type: HVWire components: - parent: 853 pos: 37.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3318 type: HVWire components: - parent: 853 pos: 36.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3319 type: HVWire components: - parent: 853 pos: 35.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3320 type: HVWire components: - parent: 853 pos: 34.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3321 type: HVWire components: - parent: 853 pos: 33.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3322 type: HVWire components: - parent: 853 pos: 32.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3323 type: HVWire components: - parent: 853 pos: 31.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3324 type: HVWire components: - parent: 853 pos: 30.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3325 type: HVWire components: - parent: 853 pos: 29.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3326 type: HVWire components: - parent: 853 pos: 28.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3327 type: HVWire components: - parent: 853 pos: 27.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3328 type: HVWire components: - parent: 853 pos: 26.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3329 type: HVWire components: - parent: 853 pos: 26.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3330 type: HVWire components: - parent: 853 pos: 26.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3331 type: HVWire components: - parent: 853 pos: 26.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3332 type: HVWire components: - parent: 853 pos: 26.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3333 type: HVWire components: - parent: 853 pos: 26.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3334 type: HVWire components: - parent: 853 pos: 26.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3335 type: HVWire components: - parent: 853 pos: 26.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3336 type: HVWire components: - parent: 853 pos: 26.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3337 type: HVWire components: - parent: 853 pos: 26.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3338 type: HVWire components: - parent: 853 pos: 26.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3339 type: HVWire components: - parent: 853 pos: 25.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3340 type: HVWire components: - parent: 853 pos: 24.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3341 type: HVWire components: - parent: 853 pos: 23.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3342 type: HVWire components: - parent: 853 pos: 22.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3343 type: HVWire components: - parent: 853 pos: 21.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3344 type: HVWire components: - parent: 853 pos: 25.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3345 type: HVWire components: - parent: 853 pos: 24.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3346 type: HVWire components: - parent: 853 pos: 23.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3347 type: HVWire components: - parent: 853 pos: 22.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3348 type: HVWire components: - parent: 853 pos: 22.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3349 type: HVWire components: - parent: 853 pos: 22.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3350 type: HVWire components: - parent: 853 pos: 22.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3351 type: HVWire components: - parent: 853 pos: 22.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3352 type: HVWire components: - parent: 853 pos: 22.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3353 type: HVWire components: - parent: 853 pos: 22.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3354 type: HVWire components: - parent: 853 pos: 22.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3355 type: HVWire components: - parent: 853 pos: 22.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3356 type: HVWire components: - parent: 853 pos: 21.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3357 type: HVWire components: - parent: 853 pos: 20.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3358 type: HVWire components: - parent: 853 pos: 19.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3359 type: HVWire components: - parent: 853 pos: 18.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3360 type: HVWire components: - parent: 853 pos: 17.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3361 type: HVWire components: - parent: 853 pos: 16.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3362 type: HVWire components: - parent: 853 pos: 15.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3363 type: HVWire components: - parent: 853 pos: 14.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3364 type: HVWire components: - parent: 853 pos: 14.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3365 type: HVWire components: - parent: 853 pos: 14.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3366 type: HVWire components: - parent: 853 pos: 14.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3367 type: HVWire components: - parent: 853 pos: 14.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3368 type: HVWire components: - parent: 853 pos: 14.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3369 type: HVWire components: - parent: 853 pos: 13.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3370 type: HVWire components: - parent: 853 pos: 12.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3371 type: HVWire components: - parent: 853 pos: 11.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3372 type: HVWire components: - parent: 853 pos: 10.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3373 type: HVWire components: - parent: 853 pos: 9.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3374 type: HVWire components: - parent: 853 pos: 8.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3375 type: HVWire components: - parent: 853 pos: 7.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3376 type: HVWire components: - parent: 853 pos: 6.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3377 type: HVWire components: - parent: 853 pos: 5.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3378 type: HVWire components: - parent: 853 pos: 4.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3379 type: HVWire components: - parent: 853 pos: 3.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3380 type: HVWire components: - parent: 853 pos: 2.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3381 type: HVWire components: - parent: 853 pos: 2.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3382 type: HVWire components: - parent: 853 pos: 2.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3383 type: HVWire components: - parent: 853 pos: 2.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3384 type: HVWire components: - parent: 853 pos: 1.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3385 type: HVWire components: - parent: 853 pos: -0.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3386 type: HVWire components: - parent: 853 pos: 0.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3387 type: HVWire components: - parent: 853 pos: -0.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3388 type: HVWire components: - parent: 853 pos: -0.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3389 type: HVWire components: - parent: 853 pos: -0.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3390 type: HVWire components: - parent: 853 pos: -1.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3391 type: HVWire components: - parent: 853 pos: -2.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3392 type: HVWire components: - parent: 853 pos: -3.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3393 type: ApcExtensionCable components: - parent: 853 pos: -0.5,-15.5 - rot: 3.141592653589793 rad type: Transform - uid: 3394 type: ApcExtensionCable components: - parent: 853 pos: -4.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3395 type: ApcExtensionCable components: - parent: 853 pos: -1.5,-15.5 - rot: 3.141592653589793 rad type: Transform - uid: 3396 type: HVWire components: - parent: 853 pos: -7.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3397 type: HVWire components: - parent: 853 pos: -8.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3398 type: HVWire components: - parent: 853 pos: -9.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3399 type: HVWire components: - parent: 853 pos: -10.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3400 type: HVWire components: - parent: 853 pos: -11.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3401 type: HVWire components: - parent: 853 pos: -11.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3402 type: HVWire components: - parent: 853 pos: -11.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3403 type: HVWire components: - parent: 853 pos: -11.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3404 type: HVWire components: - parent: 853 pos: -11.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3405 type: HVWire components: - parent: 853 pos: -11.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3406 type: HVWire components: - parent: 853 pos: -11.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3407 type: HVWire components: - parent: 853 pos: -11.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3408 type: HVWire components: - parent: 853 pos: -11.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3409 type: HVWire components: - parent: 853 pos: -11.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3410 type: HVWire components: - parent: 853 pos: -11.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3411 type: HVWire components: - parent: 853 pos: -11.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3412 type: HVWire components: - parent: 853 pos: -11.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3413 type: HVWire components: - parent: 853 pos: -11.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3414 type: HVWire components: - parent: 853 pos: -10.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3415 type: HVWire components: - parent: 853 pos: -9.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3416 type: HVWire components: - parent: 853 pos: -9.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3417 type: HVWire components: - parent: 853 pos: -9.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3418 type: HVWire components: - parent: 853 pos: -9.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3419 type: HVWire components: - parent: 853 pos: -9.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3420 type: HVWire components: - parent: 853 pos: -8.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3421 type: HVWire components: - parent: 853 pos: -7.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3422 type: HVWire components: - parent: 853 pos: -6.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3423 type: HVWire components: - parent: 853 pos: -5.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3424 type: HVWire components: - parent: 853 pos: -4.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3425 type: HVWire components: - parent: 853 pos: -3.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3426 type: HVWire components: - parent: 853 pos: -2.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3427 type: HVWire components: - parent: 853 pos: -1.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3428 type: HVWire components: - parent: 853 pos: -0.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3429 type: HVWire components: - parent: 853 pos: 0.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3430 type: HVWire components: - parent: 853 pos: 0.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3431 type: HVWire components: - parent: 853 pos: 0.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3432 type: HVWire components: - parent: 853 pos: 0.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3433 type: HVWire components: - parent: 853 pos: 0.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3434 type: HVWire components: - parent: 853 pos: -12.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3435 type: HVWire components: - parent: 853 pos: -13.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3436 type: HVWire components: - parent: 853 pos: -14.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3437 type: HVWire components: - parent: 853 pos: -15.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3438 type: HVWire components: - parent: 853 pos: -16.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3439 type: HVWire components: - parent: 853 pos: -17.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3440 type: HVWire components: - parent: 853 pos: -18.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3441 type: HVWire components: - parent: 853 pos: -18.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3442 type: HVWire components: - parent: 853 pos: -18.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3443 type: HVWire components: - parent: 853 pos: -18.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3444 type: HVWire components: - parent: 853 pos: -18.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3445 type: HVWire components: - parent: 853 pos: -19.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3446 type: HVWire components: - parent: 853 pos: -20.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3447 type: HVWire components: - parent: 853 pos: -21.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3448 type: HVWire components: - parent: 853 pos: -22.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3449 type: HVWire components: - parent: 853 pos: -23.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3450 type: HVWire components: - parent: 853 pos: -24.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3451 type: HVWire components: - parent: 853 pos: -25.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3452 type: HVWire components: - parent: 853 pos: -26.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3453 type: HVWire components: - parent: 853 pos: -27.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3454 type: HVWire components: - parent: 853 pos: -21.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3455 type: HVWire components: - parent: 853 pos: -28.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3456 type: HVWire components: - parent: 853 pos: -29.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3457 type: HVWire components: - parent: 853 pos: -30.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3458 type: HVWire components: - parent: 853 pos: -31.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3459 type: HVWire components: - parent: 853 pos: -32.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3460 type: HVWire components: - parent: 853 pos: -33.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3461 type: HVWire components: - parent: 853 pos: -33.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3462 type: HVWire components: - parent: 853 pos: -33.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3463 type: HVWire components: - parent: 853 pos: -33.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3464 type: HVWire components: - parent: 853 pos: -33.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3465 type: HVWire components: - parent: 853 pos: -33.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3466 type: HVWire components: - parent: 853 pos: -33.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3467 type: HVWire components: - parent: 853 pos: -33.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3468 type: HVWire components: - parent: 853 pos: -33.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3469 type: HVWire components: - parent: 853 pos: -33.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3470 type: HVWire components: - parent: 853 pos: -33.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3471 type: HVWire components: - parent: 853 pos: -33.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3472 type: HVWire components: - parent: 853 pos: -33.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3473 type: HVWire components: - parent: 853 pos: -32.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3474 type: HVWire components: - parent: 853 pos: -32.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3475 type: HVWire components: - parent: 853 pos: -32.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3476 type: HVWire components: - parent: 853 pos: -32.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3477 type: HVWire components: - parent: 853 pos: -32.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3478 type: HVWire components: - parent: 853 pos: -32.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3479 type: HVWire components: - parent: 853 pos: -32.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3480 type: HVWire components: - parent: 853 pos: -32.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3481 type: HVWire components: - parent: 853 pos: -32.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3482 type: HVWire components: - parent: 853 pos: -32.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3483 type: HVWire components: - parent: 853 pos: -32.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3484 type: HVWire components: - parent: 853 pos: -32.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3485 type: HVWire components: - parent: 853 pos: -32.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3486 type: HVWire components: - parent: 853 pos: -32.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3487 type: HVWire components: - parent: 853 pos: -32.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3488 type: HVWire components: - parent: 853 pos: -32.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3489 type: HVWire components: - parent: 853 pos: -31.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3490 type: HVWire components: - parent: 853 pos: -30.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3491 type: HVWire components: - parent: 853 pos: -29.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3492 type: HVWire components: - parent: 853 pos: -28.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3493 type: HVWire components: - parent: 853 pos: -27.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3494 type: HVWire components: - parent: 853 pos: -26.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3495 type: HVWire components: - parent: 853 pos: -25.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3496 type: HVWire components: - parent: 853 pos: -24.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3497 type: HVWire components: - parent: 853 pos: -23.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3498 type: HVWire components: - parent: 853 pos: -22.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3499 type: HVWire components: - parent: 853 pos: -21.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3500 type: HVWire components: - parent: 853 pos: -20.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3501 type: HVWire components: - parent: 853 pos: -20.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3502 type: HVWire components: - parent: 853 pos: -19.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3503 type: HVWire components: - parent: 853 pos: -18.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3504 type: HVWire components: - parent: 853 pos: -18.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3505 type: HVWire components: - parent: 853 pos: -17.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3506 type: HVWire components: - parent: 853 pos: -17.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3507 type: HVWire components: - parent: 853 pos: -17.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3508 type: HVWire components: - parent: 853 pos: -18.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3509 type: HVWire components: - parent: 853 pos: -17.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3510 type: HVWire components: - parent: 853 pos: -16.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3511 type: HVWire components: - parent: 853 pos: -15.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3512 type: HVWire components: - parent: 853 pos: -18.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3513 type: HVWire components: - parent: 853 pos: -18.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3514 type: HVWire components: - parent: 853 pos: -18.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3515 type: HVWire components: - parent: 853 pos: -18.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3516 type: HVWire components: - parent: 853 pos: -18.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3517 type: HVWire components: - parent: 853 pos: -18.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3518 type: HVWire components: - parent: 853 pos: -18.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3519 type: HVWire components: - parent: 853 pos: -18.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3520 type: HVWire components: - parent: 853 pos: -18.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3521 type: HVWire components: - parent: 853 pos: -17.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3522 type: HVWire components: - parent: 853 pos: -16.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3523 type: HVWire components: - parent: 853 pos: -15.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3524 type: HVWire components: - parent: 853 pos: -14.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3525 type: HVWire components: - parent: 853 pos: -13.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3526 type: HVWire components: - parent: 853 pos: -12.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3527 type: HVWire components: - parent: 853 pos: -11.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3528 type: HVWire components: - parent: 853 pos: -10.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3529 type: HVWire components: - parent: 853 pos: -9.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3530 type: HVWire components: - parent: 853 pos: -8.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3531 type: HVWire components: - parent: 853 pos: -7.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3532 type: HVWire components: - parent: 853 pos: -7.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3533 type: HVWire components: - parent: 853 pos: -6.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3534 type: HVWire components: - parent: 853 pos: -5.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3535 type: HVWire components: - parent: 853 pos: -4.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3536 type: HVWire components: - parent: 853 pos: -4.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3537 type: HVWire components: - parent: 853 pos: -4.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3538 type: HVWire components: - parent: 853 pos: -4.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3539 type: HVWire components: - parent: 853 pos: -4.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3540 type: HVWire components: - parent: 853 pos: -4.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3541 type: HVWire components: - parent: 853 pos: -3.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3542 type: HVWire components: - parent: 853 pos: -2.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3543 type: HVWire components: - parent: 853 pos: -1.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3544 type: HVWire components: - parent: 853 pos: -0.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3545 type: HVWire components: - parent: 853 pos: -0.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3546 type: HVWire components: - parent: 853 pos: 0.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3547 type: HVWire components: - parent: 853 pos: 1.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3548 type: HVWire components: - parent: 853 pos: 2.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3549 type: HVWire components: - parent: 853 pos: 3.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3550 type: HVWire components: - parent: 853 pos: 4.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3551 type: HVWire components: - parent: 853 pos: 5.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3552 type: HVWire components: - parent: 853 pos: 6.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3553 type: HVWire components: - parent: 853 pos: 7.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3554 type: HVWire components: - parent: 853 pos: 8.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3555 type: HVWire components: - parent: 853 pos: 9.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3556 type: HVWire components: - parent: 853 pos: 10.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3557 type: HVWire components: - parent: 853 pos: 11.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3558 type: HVWire components: - parent: 853 pos: 12.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3559 type: HVWire components: - parent: 853 pos: 12.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3560 type: HVWire components: - parent: 853 pos: 12.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3561 type: HVWire components: - parent: 853 pos: 12.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3562 type: HVWire components: - parent: 853 pos: 12.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3563 type: HVWire components: - parent: 853 pos: 11.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3564 type: HVWire components: - parent: 853 pos: 12.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3565 type: HVWire components: - parent: 853 pos: 12.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3566 type: HVWire components: - parent: 853 pos: 12.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3567 type: HVWire components: - parent: 853 pos: 12.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3568 type: HVWire components: - parent: 853 pos: 12.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3569 type: HVWire components: - parent: 853 pos: 12.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3570 type: HVWire components: - parent: 853 pos: 12.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3571 type: HVWire components: - parent: 853 pos: 11.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3572 type: HVWire components: - parent: 853 pos: 10.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3573 type: HVWire components: - parent: 853 pos: 10.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3574 type: HVWire components: - parent: 853 pos: 10.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3575 type: HVWire components: - parent: 853 pos: 10.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3576 type: HVWire components: - parent: 853 pos: 11.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3577 type: HVWire components: - parent: 853 pos: 12.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3578 type: HVWire components: - parent: 853 pos: 13.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3579 type: HVWire components: - parent: 853 pos: 14.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3580 type: HVWire components: - parent: 853 pos: 15.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3581 type: HVWire components: - parent: 853 pos: 16.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3582 type: HVWire components: - parent: 853 pos: 17.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3583 type: HVWire components: - parent: 853 pos: 18.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3584 type: HVWire components: - parent: 853 pos: 19.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3585 type: HVWire components: - parent: 853 pos: 20.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3586 type: HVWire components: - parent: 853 pos: 21.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3587 type: HVWire components: - parent: 853 pos: 22.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3588 type: HVWire components: - parent: 853 pos: 23.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3589 type: HVWire components: - parent: 853 pos: 24.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3590 type: HVWire components: - parent: 853 pos: 25.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3591 type: HVWire components: - parent: 853 pos: 26.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3592 type: HVWire components: - parent: 853 pos: 27.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3593 type: HVWire components: - parent: 853 pos: 27.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3594 type: HVWire components: - parent: 853 pos: 27.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3595 type: HVWire components: - parent: 853 pos: 28.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3596 type: HVWire components: - parent: 853 pos: 29.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3597 type: HVWire components: - parent: 853 pos: 30.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3598 type: HVWire components: - parent: 853 pos: 31.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3599 type: HVWire components: - parent: 853 pos: 32.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3600 type: HVWire components: - parent: 853 pos: 33.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3601 type: HVWire components: - parent: 853 pos: 34.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3602 type: HVWire components: - parent: 853 pos: 34.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3603 type: HVWire components: - parent: 853 pos: 34.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3604 type: HVWire components: - parent: 853 pos: 34.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3605 type: HVWire components: - parent: 853 pos: 34.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3606 type: HVWire components: - parent: 853 pos: 34.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3607 type: HVWire components: - parent: 853 pos: 34.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3608 type: HVWire components: - parent: 853 pos: 35.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3609 type: HVWire components: - parent: 853 pos: 36.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3610 type: HVWire components: - parent: 853 pos: 37.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3611 type: HVWire components: - parent: 853 pos: 38.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3612 type: HVWire components: - parent: 853 pos: 39.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3613 type: SalternSubstation components: - parent: 853 pos: 42.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 3200172 type: Battery @@ -32635,7 +33163,7 @@ entities: components: - parent: 853 pos: 27.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 3200172 type: Battery @@ -32648,7 +33176,7 @@ entities: components: - parent: 853 pos: 11.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 3200172 type: Battery @@ -32661,7 +33189,7 @@ entities: components: - parent: 853 pos: 21.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 3200172 type: Battery @@ -32674,14 +33202,14 @@ entities: components: - parent: 853 pos: -27.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3618 type: SalternSubstation components: - parent: 853 pos: -0.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 3200172 type: Battery @@ -32694,14 +33222,14 @@ entities: components: - parent: 853 pos: -0.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3620 type: SalternSubstation components: - parent: 853 pos: 0.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 3200172 type: Battery @@ -32714,7 +33242,7 @@ entities: components: - parent: 853 pos: -21.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 3200172 type: Battery @@ -32727,7 +33255,7 @@ entities: components: - parent: 853 pos: -32.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 3200172 type: Battery @@ -32740,1792 +33268,1792 @@ entities: components: - parent: 853 pos: 27.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3624 type: MVWire components: - parent: 853 pos: 28.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3625 type: MVWire components: - parent: 853 pos: 28.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3626 type: MVWire components: - parent: 853 pos: 26.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3627 type: MVWire components: - parent: 853 pos: 25.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3628 type: MVWire components: - parent: 853 pos: 24.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3629 type: MVWire components: - parent: 853 pos: 24.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3630 type: MVWire components: - parent: 853 pos: 24.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3631 type: MVWire components: - parent: 853 pos: 23.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3632 type: MVWire components: - parent: 853 pos: 22.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3633 type: MVWire components: - parent: 853 pos: 21.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3634 type: MVWire components: - parent: 853 pos: 20.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3635 type: MVWire components: - parent: 853 pos: 19.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3636 type: MVWire components: - parent: 853 pos: 18.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3637 type: MVWire components: - parent: 853 pos: 17.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3638 type: MVWire components: - parent: 853 pos: 16.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3639 type: MVWire components: - parent: 853 pos: 15.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3640 type: MVWire components: - parent: 853 pos: 14.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3641 type: MVWire components: - parent: 853 pos: 13.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3642 type: MVWire components: - parent: 853 pos: 12.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3643 type: MVWire components: - parent: 853 pos: 12.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3644 type: MVWire components: - parent: 853 pos: 11.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3645 type: MVWire components: - parent: 853 pos: 9.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3646 type: MVWire components: - parent: 853 pos: 10.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3647 type: MVWire components: - parent: 853 pos: 9.5,23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3648 type: MVWire components: - parent: 853 pos: 9.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3649 type: MVWire components: - parent: 853 pos: 9.5,24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3650 type: MVWire components: - parent: 853 pos: 9.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3651 type: MVWire components: - parent: 853 pos: 9.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3652 type: MVWire components: - parent: 853 pos: 9.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3653 type: MVWire components: - parent: 853 pos: 9.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3654 type: MVWire components: - parent: 853 pos: 8.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3655 type: MVWire components: - parent: 853 pos: 7.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3656 type: MVWire components: - parent: 853 pos: 6.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3657 type: MVWire components: - parent: 853 pos: 5.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3658 type: MVWire components: - parent: 853 pos: 4.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3659 type: MVWire components: - parent: 853 pos: 3.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3660 type: MVWire components: - parent: 853 pos: 2.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3661 type: MVWire components: - parent: 853 pos: 1.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3662 type: MVWire components: - parent: 853 pos: 0.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3663 type: MVWire components: - parent: 853 pos: 0.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3664 type: MVWire components: - parent: 853 pos: 0.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3665 type: MVWire components: - parent: 853 pos: -0.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3666 type: MVWire components: - parent: 853 pos: -1.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3667 type: MVWire components: - parent: 853 pos: -2.5,26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3668 type: MVWire components: - parent: 853 pos: -2.5,27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3669 type: MVWire components: - parent: 853 pos: 42.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3670 type: MVWire components: - parent: 853 pos: 43.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3671 type: MVWire components: - parent: 853 pos: 43.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3672 type: MVWire components: - parent: 853 pos: 43.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3673 type: MVWire components: - parent: 853 pos: 44.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3674 type: MVWire components: - parent: 853 pos: 45.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3675 type: MVWire components: - parent: 853 pos: 46.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3676 type: MVWire components: - parent: 853 pos: 47.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3677 type: MVWire components: - parent: 853 pos: 48.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3678 type: MVWire components: - parent: 853 pos: 48.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3679 type: MVWire components: - parent: 853 pos: 48.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3680 type: MVWire components: - parent: 853 pos: 48.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3681 type: MVWire components: - parent: 853 pos: 48.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3682 type: MVWire components: - parent: 853 pos: 47.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3683 type: MVWire components: - parent: 853 pos: 47.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3684 type: MVWire components: - parent: 853 pos: 41.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3685 type: MVWire components: - parent: 853 pos: 40.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3686 type: MVWire components: - parent: 853 pos: 39.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3687 type: MVWire components: - parent: 853 pos: 38.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3688 type: MVWire components: - parent: 853 pos: 37.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3689 type: MVWire components: - parent: 853 pos: 36.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3690 type: MVWire components: - parent: 853 pos: 35.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3691 type: MVWire components: - parent: 853 pos: 34.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3692 type: MVWire components: - parent: 853 pos: 33.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3693 type: MVWire components: - parent: 853 pos: 32.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3694 type: MVWire components: - parent: 853 pos: 32.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3695 type: MVWire components: - parent: 853 pos: 31.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3696 type: MVWire components: - parent: 853 pos: 31.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3697 type: MVWire components: - parent: 853 pos: 43.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3698 type: MVWire components: - parent: 853 pos: 43.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3699 type: MVWire components: - parent: 853 pos: 43.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3700 type: MVWire components: - parent: 853 pos: 43.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3701 type: MVWire components: - parent: 853 pos: 43.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3702 type: MVWire components: - parent: 853 pos: 43.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3703 type: MVWire components: - parent: 853 pos: 43.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3704 type: MVWire components: - parent: 853 pos: 43.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3705 type: MVWire components: - parent: 853 pos: 43.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3706 type: MVWire components: - parent: 853 pos: 21.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3707 type: MVWire components: - parent: 853 pos: 21.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3708 type: MVWire components: - parent: 853 pos: 21.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3709 type: MVWire components: - parent: 853 pos: 21.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3710 type: MVWire components: - parent: 853 pos: 21.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3711 type: MVWire components: - parent: 853 pos: 21.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3712 type: MVWire components: - parent: 853 pos: 22.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3713 type: MVWire components: - parent: 853 pos: 22.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3714 type: MVWire components: - parent: 853 pos: 20.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3715 type: MVWire components: - parent: 853 pos: 19.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3716 type: MVWire components: - parent: 853 pos: 21.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3717 type: MVWire components: - parent: 853 pos: 18.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3718 type: MVWire components: - parent: 853 pos: 17.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3719 type: MVWire components: - parent: 853 pos: 16.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3720 type: MVWire components: - parent: 853 pos: 15.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3721 type: MVWire components: - parent: 853 pos: 14.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3722 type: MVWire components: - parent: 853 pos: 13.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3723 type: MVWire components: - parent: 853 pos: 12.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3724 type: MVWire components: - parent: 853 pos: 11.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3725 type: MVWire components: - parent: 853 pos: 10.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3726 type: MVWire components: - parent: 853 pos: 9.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3727 type: MVWire components: - parent: 853 pos: 8.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3728 type: MVWire components: - parent: 853 pos: 8.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3729 type: MVWire components: - parent: 853 pos: 8.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3730 type: MVWire components: - parent: 853 pos: 8.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3731 type: MVWire components: - parent: 853 pos: 8.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3732 type: MVWire components: - parent: 853 pos: 8.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3733 type: MVWire components: - parent: 853 pos: 8.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3734 type: MVWire components: - parent: 853 pos: 8.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3735 type: MVWire components: - parent: 853 pos: 7.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3736 type: MVWire components: - parent: 853 pos: 7.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3737 type: MVWire components: - parent: 853 pos: 15.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3738 type: MVWire components: - parent: 853 pos: 15.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3739 type: MVWire components: - parent: 853 pos: 15.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3740 type: MVWire components: - parent: 853 pos: 15.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3741 type: MVWire components: - parent: 853 pos: 15.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3742 type: MVWire components: - parent: 853 pos: 15.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3743 type: MVWire components: - parent: 853 pos: 15.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3744 type: MVWire components: - parent: 853 pos: 15.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3745 type: MVWire components: - parent: 853 pos: 15.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3746 type: MVWire components: - parent: 853 pos: 15.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3747 type: MVWire components: - parent: 853 pos: 15.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3748 type: MVWire components: - parent: 853 pos: 16.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3749 type: MVWire components: - parent: 853 pos: 16.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3750 type: MVWire components: - parent: 853 pos: -0.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3751 type: MVWire components: - parent: 853 pos: -0.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3752 type: MVWire components: - parent: 853 pos: -0.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3753 type: MVWire components: - parent: 853 pos: -16.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3754 type: MVWire components: - parent: 853 pos: -1.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3755 type: MVWire components: - parent: 853 pos: -1.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3756 type: MVWire components: - parent: 853 pos: -1.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3757 type: MVWire components: - parent: 853 pos: -2.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3758 type: MVWire components: - parent: 853 pos: -3.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3759 type: MVWire components: - parent: 853 pos: -4.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3760 type: MVWire components: - parent: 853 pos: -5.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3761 type: MVWire components: - parent: 853 pos: -6.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3762 type: MVWire components: - parent: 853 pos: -7.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3763 type: MVWire components: - parent: 853 pos: -8.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3764 type: MVWire components: - parent: 853 pos: -9.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3765 type: MVWire components: - parent: 853 pos: -9.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3766 type: MVWire components: - parent: 853 pos: -10.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3767 type: MVWire components: - parent: 853 pos: -11.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3768 type: MVWire components: - parent: 853 pos: -12.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3769 type: MVWire components: - parent: 853 pos: -13.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3770 type: MVWire components: - parent: 853 pos: -13.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3771 type: MVWire components: - parent: 853 pos: -13.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3772 type: MVWire components: - parent: 853 pos: -13.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3773 type: MVWire components: - parent: 853 pos: -14.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3774 type: MVWire components: - parent: 853 pos: -14.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3775 type: MVWire components: - parent: 853 pos: 0.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3776 type: MVWire components: - parent: 853 pos: 0.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3777 type: MVWire components: - parent: 853 pos: 0.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3778 type: MVWire components: - parent: 853 pos: -0.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3779 type: MVWire components: - parent: 853 pos: -1.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3780 type: MVWire components: - parent: 853 pos: -1.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3781 type: MVWire components: - parent: 853 pos: -2.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3782 type: MVWire components: - parent: 853 pos: -3.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3783 type: MVWire components: - parent: 853 pos: -4.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3784 type: MVWire components: - parent: 853 pos: -5.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3785 type: MVWire components: - parent: 853 pos: -5.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3786 type: MVWire components: - parent: 853 pos: -6.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3787 type: MVWire components: - parent: 853 pos: -7.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3788 type: MVWire components: - parent: 853 pos: -8.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3789 type: MVWire components: - parent: 853 pos: -9.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3790 type: MVWire components: - parent: 853 pos: -9.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3791 type: MVWire components: - parent: 853 pos: -9.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3792 type: MVWire components: - parent: 853 pos: -9.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3793 type: MVWire components: - parent: 853 pos: -10.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3794 type: MVWire components: - parent: 853 pos: -11.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3795 type: MVWire components: - parent: 853 pos: -12.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3796 type: MVWire components: - parent: 853 pos: -12.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3797 type: MVWire components: - parent: 853 pos: -12.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3798 type: MVWire components: - parent: 853 pos: -12.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3799 type: MVWire components: - parent: 853 pos: -12.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3800 type: MVWire components: - parent: 853 pos: -12.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3801 type: MVWire components: - parent: 853 pos: -12.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3802 type: MVWire components: - parent: 853 pos: -12.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3803 type: MVWire components: - parent: 853 pos: -12.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3804 type: MVWire components: - parent: 853 pos: -11.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3805 type: MVWire components: - parent: 853 pos: -11.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3806 type: MVWire components: - parent: 853 pos: -21.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3807 type: MVWire components: - parent: 853 pos: -21.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3808 type: MVWire components: - parent: 853 pos: -21.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3809 type: MVWire components: - parent: 853 pos: -20.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3810 type: MVWire components: - parent: 853 pos: -19.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3811 type: MVWire components: - parent: 853 pos: -18.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3812 type: MVWire components: - parent: 853 pos: -17.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3813 type: MVWire components: - parent: 853 pos: -17.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3814 type: MVWire components: - parent: 853 pos: -16.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3815 type: MVWire components: - parent: 853 pos: -15.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3816 type: MVWire components: - parent: 853 pos: -14.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3817 type: MVWire components: - parent: 853 pos: -14.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3818 type: MVWire components: - parent: 853 pos: -22.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3819 type: MVWire components: - parent: 853 pos: -21.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3820 type: MVWire components: - parent: 853 pos: -21.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3821 type: MVWire components: - parent: 853 pos: -20.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3822 type: MVWire components: - parent: 853 pos: -23.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3823 type: MVWire components: - parent: 853 pos: -24.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3824 type: MVWire components: - parent: 853 pos: -25.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3825 type: MVWire components: - parent: 853 pos: -26.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3826 type: MVWire components: - parent: 853 pos: -27.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3827 type: MVWire components: - parent: 853 pos: -28.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3828 type: MVWire components: - parent: 853 pos: -29.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3829 type: MVWire components: - parent: 853 pos: -29.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3830 type: MVWire components: - parent: 853 pos: -29.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3831 type: MVWire components: - parent: 853 pos: -29.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3832 type: MVWire components: - parent: 853 pos: -29.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3833 type: MVWire components: - parent: 853 pos: -30.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3834 type: MVWire components: - parent: 853 pos: -30.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3835 type: MVWire components: - parent: 853 pos: -32.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3836 type: MVWire components: - parent: 853 pos: -32.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3837 type: MVWire components: - parent: 853 pos: -32.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3838 type: MVWire components: - parent: 853 pos: -33.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3839 type: MVWire components: - parent: 853 pos: -34.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3840 type: MVWire components: - parent: 853 pos: -35.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3841 type: MVWire components: - parent: 853 pos: -36.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3842 type: MVWire components: - parent: 853 pos: -37.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3843 type: MVWire components: - parent: 853 pos: -38.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3844 type: MVWire components: - parent: 853 pos: -38.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3845 type: MVWire components: - parent: 853 pos: -39.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3846 type: MVWire components: - parent: 853 pos: -39.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3847 type: MVWire components: - parent: 853 pos: -28.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3848 type: MVWire components: - parent: 853 pos: -31.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3849 type: MVWire components: - parent: 853 pos: -31.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3850 type: MVWire components: - parent: 853 pos: -31.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3851 type: MVWire components: - parent: 853 pos: -31.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3852 type: MVWire components: - parent: 853 pos: -31.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3853 type: MVWire components: - parent: 853 pos: -30.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3854 type: MVWire components: - parent: 853 pos: -29.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3855 type: MVWire components: - parent: 853 pos: -28.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3856 type: MVWire components: - parent: 853 pos: -15.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3857 type: MVWire components: - parent: 853 pos: -14.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3858 type: MVWire components: - parent: 853 pos: -13.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3859 type: MVWire components: - parent: 853 pos: -13.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3860 type: MVWire components: - parent: 853 pos: -13.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3861 type: MVWire components: - parent: 853 pos: -13.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3862 type: MVWire components: - parent: 853 pos: -12.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3863 type: MVWire components: - parent: 853 pos: -12.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3864 type: MVWire components: - parent: 853 pos: -11.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3865 type: MVWire components: - parent: 853 pos: -10.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3866 type: MVWire components: - parent: 853 pos: -9.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3867 type: MVWire components: - parent: 853 pos: -8.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3868 type: MVWire components: - parent: 853 pos: -7.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3869 type: MVWire components: - parent: 853 pos: -6.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3870 type: MVWire components: - parent: 853 pos: -5.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3871 type: MVWire components: - parent: 853 pos: -4.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3872 type: MVWire components: - parent: 853 pos: -3.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3873 type: MVWire components: - parent: 853 pos: -3.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3874 type: MVWire components: - parent: 853 pos: -3.5,15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3875 type: MVWire components: - parent: 853 pos: -15.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3876 type: MVWire components: - parent: 853 pos: -16.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3877 type: solid_wall components: - parent: 853 pos: 23.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3878 type: PoweredSmallLight components: - parent: 853 pos: 22.528679,-9.003884 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -34538,35 +35066,46 @@ entities: components: - parent: 853 pos: 22.5,-7.5 - rot: 1.5707963267948966 rad type: Transform - uid: 3880 type: AirlockMaintMedLocked components: - parent: 853 pos: 23.5,-10.5 - rot: -1.5707963705062866 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 3881 type: AirlockMaintSecLocked components: - parent: 853 pos: -16.5,16.5 - rot: -1.5707963705062866 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 3882 type: AirlockMaintCommandLocked components: - parent: 853 pos: 12.5,22.5 - rot: -1.5707963705062866 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 3883 type: EmergencyLight components: - parent: 853 pos: 44.486908,10 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34577,6 +35116,7 @@ entities: components: - parent: 853 pos: 47.22923,-3 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34587,6 +35127,7 @@ entities: components: - parent: 853 pos: 29.299644,-7.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34597,7 +35138,7 @@ entities: components: - parent: 853 pos: 31.467993,-4.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34608,6 +35149,7 @@ entities: components: - parent: 853 pos: 30.278831,9.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34618,6 +35160,7 @@ entities: components: - parent: 853 pos: 18.260162,9.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34628,7 +35171,7 @@ entities: components: - parent: 853 pos: 26.46292,-1 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34639,7 +35182,7 @@ entities: components: - parent: 853 pos: 17.399544,2 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34650,6 +35193,7 @@ entities: components: - parent: 853 pos: 7.2721233,-15.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34660,6 +35204,7 @@ entities: components: - parent: 853 pos: 7.3033733,-20.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34670,7 +35215,7 @@ entities: components: - parent: 853 pos: -10.487591,2 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34681,7 +35226,7 @@ entities: components: - parent: 853 pos: -2.7508366,15 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34692,7 +35237,7 @@ entities: components: - parent: 853 pos: 5.701264,16.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34703,6 +35248,7 @@ entities: components: - parent: 853 pos: 6.2924953,10.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34713,7 +35259,7 @@ entities: components: - parent: 853 pos: 12.41432,9.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34724,7 +35270,7 @@ entities: components: - parent: 853 pos: 16.47682,3.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34735,7 +35281,7 @@ entities: components: - parent: 853 pos: -24.514448,12 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34746,6 +35292,7 @@ entities: components: - parent: 853 pos: -39.802197,11.207858 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34756,7 +35303,7 @@ entities: components: - parent: 853 pos: -22.347473,-1.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34767,6 +35314,7 @@ entities: components: - parent: 853 pos: -20.745232,-0.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34777,7 +35325,7 @@ entities: components: - parent: 853 pos: -13.885857,-9 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34788,14 +35336,14 @@ entities: components: - parent: 853 pos: -2.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3905 type: EmergencyLight components: - parent: 853 pos: 10.68897,19.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34806,7 +35354,7 @@ entities: components: - parent: 853 pos: 8.923345,28.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34817,7 +35365,7 @@ entities: components: - parent: 853 pos: -2.4985301,28.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34828,6 +35376,7 @@ entities: components: - parent: 853 pos: -2.7641551,26.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34838,7 +35387,7 @@ entities: components: - parent: 853 pos: 9.704595,26.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34849,7 +35398,7 @@ entities: components: - parent: 853 pos: -12.509865,6 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34860,41 +35409,42 @@ entities: components: - parent: 853 pos: -24.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3912 type: ApcExtensionCable components: - parent: 853 pos: -24.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3913 type: HVWire components: - parent: 853 pos: 41.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3914 type: SalternGenerator components: - parent: 853 pos: 40.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3915 type: SalternGenerator components: - parent: 853 pos: 42.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3916 type: Poweredlight components: - parent: 853 pos: -13.924418,16.541348 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -34907,7 +35457,7 @@ entities: components: - parent: 853 pos: -1.4929452,19.970068 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -34920,21 +35470,21 @@ entities: components: - parent: 853 pos: -27.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3919 type: BedsheetSpawner components: - parent: 853 pos: -27.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3920 type: PoweredSmallLight components: - parent: 853 pos: -15.494916,15.968084 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -34947,7 +35497,7 @@ entities: components: - parent: 853 pos: -12.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 11999.217 type: Battery @@ -34958,7 +35508,7 @@ entities: components: - parent: 853 pos: -13.5,-17 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34969,7 +35519,7 @@ entities: components: - parent: 853 pos: -10.5,-17 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34980,7 +35530,7 @@ entities: components: - parent: 853 pos: 5.7693076,-15.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -34991,6 +35541,7 @@ entities: components: - parent: 853 pos: 2.2274737,8.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 1 type: PowerReceiver @@ -35011,91 +35562,91 @@ entities: components: - parent: 853 pos: 47.585052,4.443361 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3928 type: Table components: - parent: 853 pos: 46.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3929 type: Table components: - parent: 853 pos: 48.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3930 type: Table components: - parent: 853 pos: 47.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3931 type: Table components: - parent: 853 pos: 49.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3932 type: Table components: - parent: 853 pos: 50.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3933 type: HVWireStack components: - parent: 853 pos: 50.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3934 type: MVWireStack components: - parent: 853 pos: 50.288177,4.693361 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3935 type: ApcExtensionCableStack components: - parent: 853 pos: 50.053802,4.474611 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3936 type: GlassStack components: - parent: 853 pos: 49.131927,4.677736 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3937 type: GlassStack components: - parent: 853 pos: 48.788177,4.505861 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3938 type: MetalStack components: - parent: 853 pos: 48.038177,4.677736 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3939 type: CrateGeneric components: - parent: 853 pos: 45.585052,4.6 - rot: 1.5707963267948966 rad + rot: 6.283185350890976 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -35108,28 +35659,25 @@ entities: components: - parent: 853 pos: -29.463713,8.897233 - rot: 1.5707963267948966 rad type: Transform - uid: 3941 type: Crowbar components: - parent: 853 pos: -15.314676,-12.357978 - rot: 1.5707963267948966 rad type: Transform - uid: 3942 type: Crowbar components: - parent: 853 pos: -15.502176,-11.748603 - rot: 1.5707963267948966 rad type: Transform - uid: 3943 type: Poweredlight components: - parent: 853 pos: -22.00058,-5.6251965 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -35152,7 +35700,7 @@ entities: type: FirelockGlass components: - parent: 974 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35161,14 +35709,13 @@ entities: components: - parent: 853 pos: 8.5,20.5 - rot: 3.141592653589793 rad type: Transform - uid: 3948 type: FirelockGlass components: - parent: 853 pos: -36.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35177,7 +35724,7 @@ entities: components: - parent: 853 pos: -35.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35192,7 +35739,7 @@ entities: components: - parent: 853 pos: 5.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35201,7 +35748,7 @@ entities: components: - parent: 853 pos: -4.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35210,7 +35757,7 @@ entities: components: - parent: 853 pos: -4.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35219,7 +35766,7 @@ entities: components: - parent: 853 pos: -26.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35228,7 +35775,7 @@ entities: components: - parent: 853 pos: -21.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35237,7 +35784,7 @@ entities: components: - parent: 853 pos: -21.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35258,7 +35805,7 @@ entities: components: - parent: 853 pos: 2.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35267,7 +35814,7 @@ entities: components: - parent: 853 pos: -26.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35276,7 +35823,7 @@ entities: components: - parent: 853 pos: -26.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35285,7 +35832,7 @@ entities: components: - parent: 853 pos: -21.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35300,14 +35847,13 @@ entities: components: - parent: 853 pos: 7.5,20.5 - rot: 3.141592653589793 rad type: Transform - uid: 3965 type: FirelockGlass components: - parent: 853 pos: -7.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35316,7 +35862,7 @@ entities: components: - parent: 853 pos: -4.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35325,21 +35871,20 @@ entities: components: - parent: 853 pos: -30.5,5.5 - rot: 3.141592653589793 rad type: Transform - uid: 3968 type: ApcExtensionCable components: - parent: 853 pos: -23.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3969 type: FirelockGlass components: - parent: 853 pos: 1.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35348,7 +35893,7 @@ entities: components: - parent: 853 pos: 1.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35357,14 +35902,13 @@ entities: components: - parent: 853 pos: 12.5,-8.5 - rot: 3.141592653589793 rad type: Transform - uid: 3972 type: DisposalPipe components: - parent: 853 pos: 25.5,3.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - containers: DisposalTransit: @@ -35375,7 +35919,6 @@ entities: components: - parent: 853 pos: 15.5,-3.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35384,35 +35927,33 @@ entities: components: - parent: 853 pos: 2.5,6.5 - rot: 3.141592653589793 rad type: Transform - uid: 3975 type: ApcExtensionCable components: - parent: 853 pos: -26.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3976 type: ApcExtensionCable components: - parent: 853 pos: -26.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3977 type: ApcExtensionCable components: - parent: 853 pos: -21.5,13.5 - rot: 3.141592653589793 rad type: Transform - uid: 3978 type: Firelock components: - parent: 853 pos: -19.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35421,42 +35962,40 @@ entities: components: - parent: 853 pos: -26.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3980 type: ApcExtensionCable components: - parent: 853 pos: -26.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3981 type: solid_wall components: - parent: 853 pos: -25.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 3982 type: ApcExtensionCable components: - parent: 853 pos: 3.5,6.5 - rot: 3.141592653589793 rad type: Transform - uid: 3983 type: ApcExtensionCable components: - parent: 853 pos: 4.5,6.5 - rot: 3.141592653589793 rad type: Transform - uid: 3984 type: FirelockGlass components: - parent: 853 pos: 1.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35465,7 +36004,7 @@ entities: components: - parent: 853 pos: 1.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35474,14 +36013,13 @@ entities: components: - parent: 853 pos: 12.5,-9.5 - rot: 3.141592653589793 rad type: Transform - uid: 3987 type: Firelock components: - parent: 853 pos: 22.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35490,7 +36028,7 @@ entities: components: - parent: 853 pos: -6.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35499,7 +36037,7 @@ entities: components: - parent: 853 pos: -2.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35508,7 +36046,7 @@ entities: components: - parent: 853 pos: -3.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35517,7 +36055,6 @@ entities: components: - parent: 853 pos: -32.5,-8.5 - rot: 3.141592653589793 rad type: Transform - uid: 3992 type: CommsComputerCircuitboard @@ -35529,7 +36066,7 @@ entities: components: - parent: 853 pos: -37.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35538,7 +36075,7 @@ entities: components: - parent: 853 pos: -32.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35547,7 +36084,7 @@ entities: components: - parent: 853 pos: -24.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35556,7 +36093,7 @@ entities: components: - parent: 853 pos: -23.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35565,7 +36102,7 @@ entities: components: - parent: 853 pos: -6.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35574,7 +36111,7 @@ entities: components: - parent: 853 pos: -1.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35583,7 +36120,7 @@ entities: components: - parent: 853 pos: -0.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35592,7 +36129,7 @@ entities: components: - parent: 853 pos: -23.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35601,7 +36138,7 @@ entities: components: - parent: 853 pos: -33.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35610,7 +36147,7 @@ entities: components: - parent: 853 pos: -33.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35619,7 +36156,7 @@ entities: components: - parent: 853 pos: -33.5,5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35634,14 +36171,12 @@ entities: components: - parent: 853 pos: -32.5,-7.5 - rot: 3.141592653589793 rad type: Transform - uid: 4006 type: FirelockGlass components: - parent: 853 pos: 36.5,5.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35650,7 +36185,6 @@ entities: components: - parent: 853 pos: 36.5,4.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35659,7 +36193,7 @@ entities: components: - parent: 853 pos: 13.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35673,7 +36207,7 @@ entities: components: - parent: 853 pos: 13.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35682,14 +36216,13 @@ entities: components: - parent: 853 pos: 16.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4012 type: FirelockGlass components: - parent: 853 pos: -15.5,0.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35698,7 +36231,7 @@ entities: components: - parent: 853 pos: 5.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35707,7 +36240,7 @@ entities: components: - parent: 853 pos: 5.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35716,7 +36249,7 @@ entities: components: - parent: 853 pos: 5.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35725,7 +36258,7 @@ entities: components: - parent: 853 pos: -4.5,4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35734,7 +36267,7 @@ entities: components: - parent: 853 pos: -4.5,3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35743,7 +36276,6 @@ entities: components: - parent: 853 pos: 37.5,-5.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35752,7 +36284,6 @@ entities: components: - parent: 853 pos: 0.5,-14.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35761,7 +36292,6 @@ entities: components: - parent: 853 pos: 13.5,0.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35770,14 +36300,13 @@ entities: components: - parent: 853 pos: 23.5,-18.5 - rot: 3.141592653589793 rad type: Transform - uid: 4022 type: Firelock components: - parent: 853 pos: -33.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35786,7 +36315,7 @@ entities: components: - parent: 853 pos: -24.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35800,7 +36329,6 @@ entities: components: - parent: 853 pos: 3.5,15.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35809,7 +36337,6 @@ entities: components: - parent: 853 pos: 4.5,15.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35818,7 +36345,6 @@ entities: components: - parent: 853 pos: 2.5,15.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35827,7 +36353,7 @@ entities: components: - parent: 853 pos: 25.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35836,7 +36362,7 @@ entities: components: - parent: 853 pos: 25.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35845,7 +36371,7 @@ entities: components: - parent: 853 pos: -10.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35854,7 +36380,7 @@ entities: components: - parent: 853 pos: -8.5,-29.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4032 type: CommsComputerCircuitboard @@ -35872,7 +36398,6 @@ entities: components: - parent: 853 pos: -10.5,1.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35881,7 +36406,6 @@ entities: components: - parent: 853 pos: -10.5,0.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35890,7 +36414,6 @@ entities: components: - parent: 853 pos: 15.5,8.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35899,7 +36422,6 @@ entities: components: - parent: 853 pos: 36.5,3.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35908,7 +36430,6 @@ entities: components: - parent: 853 pos: -10.5,11.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35917,7 +36438,6 @@ entities: components: - parent: 853 pos: -10.5,10.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35926,7 +36446,6 @@ entities: components: - parent: 853 pos: -10.5,-0.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35935,7 +36454,6 @@ entities: components: - parent: 853 pos: 38.5,-5.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35944,7 +36462,6 @@ entities: components: - parent: 853 pos: 0.5,-15.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35953,7 +36470,7 @@ entities: components: - parent: 853 pos: 4.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35962,7 +36479,7 @@ entities: components: - parent: 853 pos: 3.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35971,7 +36488,6 @@ entities: components: - parent: 853 pos: 11.5,14.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35980,7 +36496,6 @@ entities: components: - parent: 853 pos: -17.5,17.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -35989,7 +36504,7 @@ entities: components: - parent: 853 pos: -10.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -35998,35 +36513,31 @@ entities: components: - parent: 853 pos: -18.5,13.5 - rot: 3.141592653589793 rad type: Transform - uid: 4049 type: ApcExtensionCable components: - parent: 853 pos: -17.5,13.5 - rot: 3.141592653589793 rad type: Transform - uid: 4050 type: ApcExtensionCable components: - parent: 853 pos: -17.5,14.5 - rot: 3.141592653589793 rad type: Transform - uid: 4051 type: HVWire components: - parent: 853 pos: -5.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4052 type: FirelockGlass components: - parent: 853 pos: 11.5,3.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -36035,14 +36546,13 @@ entities: components: - parent: 853 pos: -5.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4054 type: FirelockGlass components: - parent: 853 pos: 11.5,5.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -36051,14 +36561,13 @@ entities: components: - parent: 853 pos: -4.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4056 type: FirelockGlass components: - parent: 853 pos: 11.5,4.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -36073,7 +36582,7 @@ entities: components: - parent: 853 pos: 0.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4059 type: FoodMint @@ -36086,14 +36595,14 @@ entities: components: - parent: 853 pos: 15.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4061 type: FirelockGlass components: - parent: 853 pos: -8.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -36102,7 +36611,7 @@ entities: components: - parent: 853 pos: -7.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -36111,14 +36620,13 @@ entities: components: - parent: 853 pos: -20.5,13.5 - rot: 3.141592653589793 rad type: Transform - uid: 4064 type: Firelock components: - parent: 853 pos: 21.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -36127,21 +36635,18 @@ entities: components: - parent: 853 pos: -8.5,-7.5 - rot: 3.141592653589793 rad type: Transform - uid: 4066 type: ApcExtensionCable components: - parent: 853 pos: -32.5,-6.5 - rot: 3.141592653589793 rad type: Transform - uid: 4067 type: Firelock components: - parent: 853 pos: -10.5,24.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -36150,7 +36655,6 @@ entities: components: - parent: 853 pos: -10.5,25.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -36159,14 +36663,12 @@ entities: components: - parent: 853 pos: -26.5,4.5 - rot: 3.141592653589793 rad type: Transform - uid: 4070 type: Firelock components: - parent: 853 pos: -18.5,17.5 - rot: -1.5707963705062866 rad type: Transform - airBlocked: False type: Airtight @@ -36175,7 +36677,7 @@ entities: components: - parent: 853 pos: 27.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -36184,7 +36686,7 @@ entities: components: - parent: 853 pos: 26.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - airBlocked: False type: Airtight @@ -36193,63 +36695,59 @@ entities: components: - parent: 853 pos: -19.5,13.5 - rot: 3.141592653589793 rad type: Transform - uid: 4074 type: ApcExtensionCable components: - parent: 853 pos: 0.5,6.5 - rot: 3.141592653589793 rad type: Transform - uid: 4075 type: ApcExtensionCable components: - parent: 853 pos: -0.5,6.5 - rot: 3.141592653589793 rad type: Transform - uid: 4076 type: solid_wall components: - parent: 853 pos: -3.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4077 type: solid_wall components: - parent: 853 pos: -4.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4078 type: solid_wall components: - parent: 853 pos: -5.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4079 type: solid_wall components: - parent: 853 pos: -8.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4080 type: MVWire components: - parent: 853 pos: -5.5,-7.5 - rot: 1.5707963267948966 rad type: Transform - uid: 4081 type: EmergencyLight components: - parent: 853 pos: -4.4964724,-8 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 12224.357 type: Battery @@ -36258,182 +36756,192 @@ entities: components: - parent: 853 pos: -8.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 4083 type: Table components: - parent: 853 pos: -3.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4084 type: Table components: - parent: 853 pos: -4.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4085 type: StoolBar components: - parent: 853 pos: -6.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4086 type: StoolBar components: - parent: 853 pos: -5.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4087 type: StoolBar components: - parent: 853 pos: -4.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4088 type: StoolBar components: - parent: 853 pos: -3.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4089 type: StoolBar components: - parent: 853 pos: -2.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4090 type: solid_wall components: - parent: 853 pos: -26.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4091 type: solid_wall components: - parent: 853 pos: -27.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4092 type: solid_wall components: - parent: 853 pos: -28.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4093 type: solid_wall components: - parent: 853 pos: -29.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4094 type: solid_wall components: - parent: 853 pos: -30.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4095 type: solid_wall components: - parent: 853 pos: -26.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4096 type: solid_wall components: - parent: 853 pos: -27.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4097 type: solid_wall components: - parent: 853 pos: -28.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4098 type: solid_wall components: - parent: 853 pos: -31.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4099 type: solid_wall components: - parent: 853 pos: -26.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4100 type: solid_wall components: - parent: 853 pos: -27.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4101 type: solid_wall components: - parent: 853 pos: -28.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4102 type: solid_wall components: - parent: 853 pos: -29.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4103 type: solid_wall components: - parent: 853 pos: -30.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4104 type: AirlockMaint components: - parent: 853 pos: -31.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 4105 type: Catwalk components: - parent: 853 pos: -32.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4106 type: solid_wall components: - parent: 853 pos: -26.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4107 type: solid_wall components: - parent: 853 pos: -26.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4108 type: Airlock @@ -36442,8 +36950,13 @@ entities: type: MetaData - parent: 853 pos: -26.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 4109 type: Airlock components: @@ -36451,8 +36964,13 @@ entities: type: MetaData - parent: 853 pos: -26.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 4110 type: Airlock components: @@ -36460,14 +36978,18 @@ entities: type: MetaData - parent: 853 pos: -26.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 4111 type: SalternApc components: - parent: 853 pos: -30.517641,-3.5 - rot: 3.141592653589793 rad type: Transform - startingCharge: 11999.233 type: Battery @@ -36478,28 +37000,28 @@ entities: components: - parent: 853 pos: -27.5,-1.5 - rot: 1.5707963267948966 rad + rot: 6.283185350890976 rad type: Transform - uid: 4113 type: Bed components: - parent: 853 pos: -27.5,1.5 - rot: 1.5707963267948966 rad + rot: 6.283185350890976 rad type: Transform - uid: 4114 type: Bed components: - parent: 853 pos: -27.5,-4.5 - rot: 1.5707963267948966 rad + rot: 6.283185350890976 rad type: Transform - uid: 4115 type: PoweredSmallLight components: - parent: 853 pos: -22.5,-16 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -36514,48 +37036,54 @@ entities: type: MetaData - parent: 853 pos: -24.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 4117 type: TableWood components: - parent: 853 pos: -30.5,-4.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4118 type: TableWood components: - parent: 853 pos: -30.5,-1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4119 type: TableWood components: - parent: 853 pos: -30.5,1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4120 type: ChairWood components: - parent: 853 pos: -30.5,-5.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4121 type: ChairWood components: - parent: 853 pos: -30.5,-2.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4122 type: Poweredlight components: - parent: 853 pos: -26,-0.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -36568,7 +37096,7 @@ entities: components: - parent: 853 pos: 46.5,5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -36581,7 +37109,7 @@ entities: components: - parent: 853 pos: 38.5,10 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -36594,91 +37122,90 @@ entities: components: - parent: 853 pos: -29.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4126 type: CarpetGreen components: - parent: 853 pos: -29.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4127 type: CarpetGreen components: - parent: 853 pos: -28.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4128 type: CarpetGreen components: - parent: 853 pos: -28.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4129 type: CarpetGay components: - parent: 853 pos: -29.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4130 type: CarpetGay components: - parent: 853 pos: -29.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4131 type: CarpetGay components: - parent: 853 pos: -28.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4132 type: CarpetGay components: - parent: 853 pos: -28.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4133 type: CarpetBlue components: - parent: 853 pos: -29.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4134 type: CarpetBlue components: - parent: 853 pos: -29.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4135 type: CarpetBlue components: - parent: 853 pos: -28.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4136 type: CarpetBlue components: - parent: 853 pos: -28.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4137 type: BoxDonkpocket components: - parent: 853 pos: -7.5,-29.5 - rot: 3.141592653589793 rad type: Transform - containers: storagebase: @@ -36689,42 +37216,42 @@ entities: components: - parent: 853 pos: 15.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4139 type: Bed components: - parent: 853 pos: -2.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4140 type: Bed components: - parent: 853 pos: 0.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4141 type: BedsheetOrange components: - parent: 853 pos: -2.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4142 type: BedsheetOrange components: - parent: 853 pos: 0.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4143 type: LockerGeneric components: - parent: 853 pos: -3.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -36737,7 +37264,7 @@ entities: components: - parent: 853 pos: -0.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -36750,6 +37277,7 @@ entities: components: - parent: 853 pos: -31,-1.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -36762,6 +37290,7 @@ entities: components: - parent: 853 pos: -31,1.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -36774,6 +37303,7 @@ entities: components: - parent: 853 pos: -31,-4.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -36786,7 +37316,7 @@ entities: components: - parent: 853 pos: 12.5,25 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: light_bulb: @@ -36797,13 +37327,14 @@ entities: components: - parent: 853 pos: 31.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4150 type: Poweredlight components: - parent: 853 pos: -8,-4.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -36816,76 +37347,77 @@ entities: components: - parent: 853 pos: -18.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4152 type: hydroponicsTray components: - parent: 853 pos: -19.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4153 type: hydroponicsTray components: - parent: 853 pos: -20.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4154 type: hydroponicsTray components: - parent: 853 pos: -20.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4155 type: hydroponicsTray components: - parent: 853 pos: -20.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4156 type: hydroponicsTray components: - parent: 853 pos: -19.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4157 type: hydroponicsTray components: - parent: 853 pos: -18.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4158 type: solid_wall components: - parent: 853 pos: 16.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4159 type: solid_wall components: - parent: 853 pos: 12.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4160 type: solid_wall components: - parent: 853 pos: 13.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4161 type: Morgue components: - parent: 853 pos: 12.5,-13.5 + rot: 1.5707963705062866 rad type: Transform - containers: EntityStorageComponent: @@ -36898,6 +37430,7 @@ entities: components: - parent: 853 pos: 12.5,-14.5 + rot: 1.5707963705062866 rad type: Transform - containers: EntityStorageComponent: @@ -36910,6 +37443,7 @@ entities: components: - parent: 853 pos: 12.5,-15.5 + rot: 1.5707963705062866 rad type: Transform - containers: EntityStorageComponent: @@ -36922,6 +37456,7 @@ entities: components: - parent: 853 pos: 12.5,-16.5 + rot: 1.5707963705062866 rad type: Transform - containers: EntityStorageComponent: @@ -36934,6 +37469,7 @@ entities: components: - parent: 853 pos: 12.5,-17.5 + rot: 1.5707963705062866 rad type: Transform - containers: EntityStorageComponent: @@ -36946,27 +37482,27 @@ entities: components: - parent: 853 pos: 17.313038,-12.573634 + rot: 1.5707963705062866 rad type: Transform - uid: 4167 type: TableMetal components: - parent: 853 pos: 14.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4168 type: TableMetal components: - parent: 853 pos: 15.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4169 type: CrayonBoxFilled components: - parent: 853 pos: -19.173923,-9.122305 - rot: 3.141592653589793 rad type: Transform - containers: storagebase: @@ -36977,7 +37513,6 @@ entities: components: - parent: 853 pos: -8.129097,21.659065 - rot: 3.141592653589793 rad type: Transform - containers: RangedMagazine-magazine: @@ -36988,7 +37523,6 @@ entities: components: - parent: 853 pos: -8.347847,21.83094 - rot: 3.141592653589793 rad type: Transform - containers: RangedMagazine-magazine: @@ -37001,14 +37535,19 @@ entities: type: MetaData - parent: 853 pos: 16.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 4173 type: computerBodyScanner components: - parent: 853 pos: 10.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: board: @@ -37026,28 +37565,28 @@ entities: components: - parent: 853 pos: 29.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4176 type: BarSign components: - parent: 853 pos: -5.5,2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4177 type: SignBar components: - parent: 853 pos: 0.7031777,2.4187772 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4178 type: Poweredlight components: - parent: 853 pos: -9.5,2 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -37060,7 +37599,7 @@ entities: components: - parent: 853 pos: 1.5,1 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -37073,21 +37612,21 @@ entities: components: - parent: 853 pos: -21.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4181 type: AMEJar components: - parent: 853 pos: 38.585155,11.629917 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4182 type: KitchenReagentGrinder components: - parent: 853 pos: -14.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: ReagentGrinder-reagentContainerContainer: @@ -37100,133 +37639,133 @@ entities: components: - parent: 853 pos: 26.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4184 type: ApcExtensionCable components: - parent: 853 pos: 25.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4185 type: Carpet components: - parent: 853 pos: -8.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4186 type: Carpet components: - parent: 853 pos: -8.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4187 type: Carpet components: - parent: 853 pos: -7.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4188 type: Carpet components: - parent: 853 pos: -7.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4189 type: Carpet components: - parent: 853 pos: -6.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4190 type: Carpet components: - parent: 853 pos: -6.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4191 type: Carpet components: - parent: 853 pos: -5.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4192 type: Carpet components: - parent: 853 pos: -5.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4193 type: Carpet components: - parent: 853 pos: -4.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4194 type: Carpet components: - parent: 853 pos: -4.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4195 type: Carpet components: - parent: 853 pos: -3.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4196 type: Carpet components: - parent: 853 pos: -3.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4197 type: Carpet components: - parent: 853 pos: -2.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4198 type: Carpet components: - parent: 853 pos: -2.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4199 type: Carpet components: - parent: 853 pos: -1.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4200 type: KitchenSpike components: - parent: 853 pos: -9.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4201 type: LockerFreezer components: - parent: 853 pos: -11.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -37239,7 +37778,7 @@ entities: components: - parent: 853 pos: -13.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -37252,7 +37791,7 @@ entities: components: - parent: 853 pos: -11.5,-5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -37265,140 +37804,137 @@ entities: components: - parent: 853 pos: -8.5,-1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4205 type: Carpet components: - parent: 853 pos: -7.5,-1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4206 type: Carpet components: - parent: 853 pos: -6.5,-1.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4207 type: reinforced_wall components: - parent: 853 pos: -9.5,23.5 - rot: -1.5707963705062866 rad type: Transform - uid: 4208 type: reinforced_wall components: - parent: 853 pos: -8.5,23.5 - rot: -1.5707963705062866 rad type: Transform - uid: 4209 type: reinforced_wall components: - parent: 853 pos: -7.5,23.5 - rot: -1.5707963705062866 rad type: Transform - uid: 4210 type: SpawnPointHeadOfSecurity components: - parent: 853 pos: -7.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4211 type: CarpetBlack components: - parent: 853 pos: -6.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4212 type: CarpetBlack components: - parent: 853 pos: -6.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4213 type: CarpetBlack components: - parent: 853 pos: -6.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4214 type: CarpetBlack components: - parent: 853 pos: -7.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4215 type: CarpetBlack components: - parent: 853 pos: -7.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4216 type: CarpetBlack components: - parent: 853 pos: -7.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4217 type: CarpetBlack components: - parent: 853 pos: -8.5,22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4218 type: CarpetBlack components: - parent: 853 pos: -8.5,21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4219 type: CarpetBlack components: - parent: 853 pos: -8.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4220 type: Chair components: - parent: 853 pos: -7.5,20.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4221 type: Chair components: - parent: 853 pos: -6.5,20.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4222 type: TableWood components: - parent: 853 pos: -8.5,21.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4223 type: WeaponCapacitorRecharger components: - parent: 853 pos: -6.5,21.5 - rot: 1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -37411,103 +37947,104 @@ entities: components: - parent: 853 pos: -4.5,14.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4225 type: Table components: - parent: 853 pos: -4.5,13.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4226 type: Table components: - parent: 853 pos: -5.5,13.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4227 type: Table components: - parent: 853 pos: -6.5,13.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4228 type: Table components: - parent: 853 pos: -7.5,13.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4229 type: Table components: - parent: 853 pos: -7.5,14.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4230 type: Chair components: - parent: 853 pos: -4.5,12.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4231 type: Chair components: - parent: 853 pos: -5.5,12.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4232 type: Chair components: - parent: 853 pos: -6.5,12.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4233 type: Chair components: - parent: 853 pos: -7.5,12.5 - rot: 1.5707963267948966 rad + rot: 3.141592697301183 rad type: Transform - uid: 4234 type: Chair components: - parent: 853 pos: -8.5,13.5 + rot: 1.5707963705062866 rad type: Transform - uid: 4235 type: Chair components: - parent: 853 pos: -8.5,14.5 + rot: 1.5707963705062866 rad type: Transform - uid: 4236 type: Chair components: - parent: 853 pos: -3.5,14.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - uid: 4237 type: Chair components: - parent: 853 pos: -3.5,13.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - uid: 4238 type: BoxHandcuff components: - parent: 853 pos: -4.5,14.5 - rot: 3.141592653589793 rad type: Transform - containers: storagebase: @@ -37518,7 +38055,7 @@ entities: components: - parent: 853 pos: -7.5,14.5 - rot: 3.141592653589793 rad + rot: 6.283185350890976 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -37531,7 +38068,6 @@ entities: components: - parent: 853 pos: -5.5,13.5 - rot: 3.141592653589793 rad type: Transform - containers: storagebase: @@ -37542,49 +38078,45 @@ entities: components: - parent: 853 pos: -7.5,13.5 - rot: 3.141592653589793 rad type: Transform - uid: 4242 type: RadioHandheld components: - parent: 853 pos: -4.5,13.5 - rot: 3.141592653589793 rad type: Transform - uid: 4243 type: RadioHandheld components: - parent: 853 pos: 1.5,28.5 - rot: 3.141592653589793 rad type: Transform - uid: 4244 type: RadioHandheld components: - parent: 853 pos: 26.5,8.5 - rot: 3.141592653589793 rad type: Transform - uid: 4245 type: Table components: - parent: 853 pos: -7.5,-28.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - uid: 4246 type: Table components: - parent: 853 pos: -7.5,-29.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - uid: 4247 type: KitchenMicrowave components: - parent: 853 pos: -7.5,-28.5 - rot: 3.141592653589793 rad + rot: 6.283185350890976 rad type: Transform - containers: microwave_entity_container: @@ -37595,14 +38127,12 @@ entities: components: - parent: 853 pos: 13.5,24.5 - rot: 3.141592653589793 rad type: Transform - uid: 4249 type: ClothingBeltSecurityFilled components: - parent: 853 pos: -6.5,13.5 - rot: 3.141592653589793 rad type: Transform - containers: storagebase: @@ -37613,35 +38143,31 @@ entities: components: - parent: 853 pos: -20.5,7.5 - rot: 3.141592653589793 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4251 type: SprayBottleSpaceCleaner components: - parent: 853 pos: -20.5,7.5 - rot: 3.141592653589793 rad type: Transform - uid: 4252 type: RCDAmmo components: - parent: 853 pos: 32.5,-2.5 - rot: 3.141592653589793 rad type: Transform - uid: 4253 type: RCDAmmo components: - parent: 853 pos: 32.812416,-2.3740568 - rot: 3.141592653589793 rad type: Transform - uid: 4254 type: SmgWt550 components: - parent: 853 pos: -8.457222,21.596565 - rot: 3.141592653589793 rad type: Transform - maxAngle: 59.99999999999999 type: MagazineBarrel @@ -37667,7 +38193,7 @@ entities: components: - parent: 853 pos: 14.594889,-13.278449 - rot: 3.141592653589793 rad + rot: 6.283185350890976 rad type: Transform - containers: EntityStorageComponent: @@ -37680,7 +38206,7 @@ entities: components: - parent: 853 pos: 15.594889,-13.262824 - rot: 3.141592653589793 rad + rot: 6.283185350890976 rad type: Transform - containers: EntityStorageComponent: @@ -37693,7 +38219,7 @@ entities: components: - parent: 853 pos: -8.5,23 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -37706,12 +38232,14 @@ entities: components: - parent: 853 pos: -14.5,18.5 + rot: 1.5707963705062866 rad type: Transform - uid: 4260 type: TableMetal components: - parent: 853 pos: -14.5,19.5 + rot: 1.5707963705062866 rad type: Transform - uid: 4261 type: BoxFlashbang @@ -37728,63 +38256,63 @@ entities: components: - parent: 853 pos: 8.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4263 type: CarpetBlue components: - parent: 853 pos: 8.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4264 type: CarpetBlue components: - parent: 853 pos: 8.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4265 type: CarpetBlue components: - parent: 853 pos: 8.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4266 type: CarpetBlue components: - parent: 853 pos: 9.5,20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4267 type: CarpetBlue components: - parent: 853 pos: 9.5,19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4268 type: CarpetBlue components: - parent: 853 pos: 9.5,18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4269 type: CarpetBlue components: - parent: 853 pos: 9.5,17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4270 type: LampGold components: - parent: 853 pos: 9.434699,18.224125 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - containers: cellslot_cell_container: @@ -37795,7 +38323,7 @@ entities: components: - parent: 853 pos: -10.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4272 type: ProtolatheMachineCircuitboard @@ -37837,280 +38365,280 @@ entities: components: - parent: 853 pos: -18.5,25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4280 type: TraitorDMRedemptionMachineSpawner components: - parent: 853 pos: 10.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4281 type: TraitorDMRedemptionMachineSpawner components: - parent: 853 pos: -9.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4282 type: TraitorDMRedemptionMachineSpawner components: - parent: 853 pos: 27.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4283 type: reinforced_wall components: - parent: 853 pos: 52.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4284 type: reinforced_wall components: - parent: 853 pos: 52.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4285 type: reinforced_wall components: - parent: 853 pos: 52.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4286 type: reinforced_wall components: - parent: 853 pos: 52.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4287 type: reinforced_wall components: - parent: 853 pos: 52.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4288 type: reinforced_wall components: - parent: 853 pos: 52.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4289 type: reinforced_wall components: - parent: 853 pos: 52.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4290 type: SinguloGenerator components: - parent: 853 pos: 49.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4291 type: LowWall components: - parent: 853 pos: 46.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4292 type: LowWall components: - parent: 853 pos: 47.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4293 type: LowWall components: - parent: 853 pos: 48.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4294 type: LowWall components: - parent: 853 pos: 49.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4295 type: LowWall components: - parent: 853 pos: 50.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4296 type: LowWall components: - parent: 853 pos: 51.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4297 type: LowWall components: - parent: 853 pos: 51.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4298 type: LowWall components: - parent: 853 pos: 51.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4299 type: LowWall components: - parent: 853 pos: 51.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4300 type: LowWall components: - parent: 853 pos: 51.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4301 type: LowWall components: - parent: 853 pos: 51.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4302 type: LowWall components: - parent: 853 pos: 51.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4303 type: LowWall components: - parent: 853 pos: 51.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4304 type: reinforced_wall components: - parent: 853 pos: 51.5,6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4305 type: reinforced_wall components: - parent: 853 pos: 45.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4306 type: ReinforcedWindow components: - parent: 853 pos: 46.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4307 type: ReinforcedWindow components: - parent: 853 pos: 47.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4308 type: ReinforcedWindow components: - parent: 853 pos: 48.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4309 type: ReinforcedWindow components: - parent: 853 pos: 49.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4310 type: ReinforcedWindow components: - parent: 853 pos: 50.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4311 type: ReinforcedWindow components: - parent: 853 pos: 51.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4312 type: ReinforcedWindow components: - parent: 853 pos: 51.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4313 type: ReinforcedWindow components: - parent: 853 pos: 51.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4314 type: ReinforcedWindow components: - parent: 853 pos: 51.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4315 type: ReinforcedWindow components: - parent: 853 pos: 51.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4316 type: ReinforcedWindow components: - parent: 853 pos: 51.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4317 type: ReinforcedWindow components: - parent: 853 pos: 51.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4318 type: ReinforcedWindow components: - parent: 853 pos: 51.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4319 type: AirlockEngineeringLocked @@ -38119,8 +38647,13 @@ entities: type: MetaData - parent: 853 pos: 45.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 4320 type: AirlockEngineeringLocked components: @@ -38128,13 +38661,19 @@ entities: type: MetaData - parent: 853 pos: 45.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 4321 type: Poweredlight components: - parent: 853 pos: 45,12.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -38147,118 +38686,119 @@ entities: components: - parent: 853 pos: 45.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4323 type: ApcExtensionCable components: - parent: 853 pos: 46.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4324 type: ApcExtensionCable components: - parent: 853 pos: 46.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4325 type: ApcExtensionCable components: - parent: 853 pos: 47.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4326 type: ApcExtensionCable components: - parent: 853 pos: 47.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4327 type: ApcExtensionCable components: - parent: 853 pos: 47.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4328 type: ApcExtensionCable components: - parent: 853 pos: 47.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4329 type: ApcExtensionCable components: - parent: 853 pos: 47.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4330 type: ApcExtensionCable components: - parent: 853 pos: 47.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4331 type: ApcExtensionCable components: - parent: 853 pos: 49.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4332 type: ApcExtensionCable components: - parent: 853 pos: 49.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4333 type: ApcExtensionCable components: - parent: 853 pos: 49.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4334 type: ApcExtensionCable components: - parent: 853 pos: 49.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4335 type: ApcExtensionCable components: - parent: 853 pos: 49.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4336 type: ApcExtensionCable components: - parent: 853 pos: 49.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4337 type: ApcExtensionCable components: - parent: 853 pos: 48.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4338 type: Poweredlight components: - parent: 853 pos: 46,6.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -38271,497 +38811,501 @@ entities: components: - parent: 853 pos: 42.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4340 type: HVWire components: - parent: 853 pos: 43.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4341 type: HVWire components: - parent: 853 pos: 44.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4342 type: HVWire components: - parent: 853 pos: 45.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4343 type: HVWire components: - parent: 853 pos: 46.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4344 type: HVWire components: - parent: 853 pos: 47.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4345 type: HVWire components: - parent: 853 pos: 48.5,7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4346 type: HVWire components: - parent: 853 pos: 48.5,8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4347 type: HVWire components: - parent: 853 pos: 48.5,9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4348 type: HVWire components: - parent: 853 pos: 48.5,10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4349 type: HVWire components: - parent: 853 pos: 48.5,11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4350 type: HVWire components: - parent: 853 pos: 48.5,12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4351 type: reinforced_wall components: - parent: 853 pos: 46.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4352 type: reinforced_wall components: - parent: 853 pos: 45.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4353 type: reinforced_wall components: - parent: 853 pos: 44.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4354 type: reinforced_wall components: - parent: 853 pos: 43.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4355 type: reinforced_wall components: - parent: 853 pos: 43.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4356 type: reinforced_wall components: - parent: 853 pos: 43.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4357 type: reinforced_wall components: - parent: 853 pos: 43.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4358 type: reinforced_wall components: - parent: 853 pos: 43.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4359 type: reinforced_wall components: - parent: 853 pos: 43.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4360 type: reinforced_wall components: - parent: 853 pos: 43.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4361 type: reinforced_wall components: - parent: 853 pos: 55.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4362 type: reinforced_wall components: - parent: 853 pos: 55.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4363 type: reinforced_wall components: - parent: 853 pos: 55.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4364 type: reinforced_wall components: - parent: 853 pos: 55.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4365 type: reinforced_wall components: - parent: 853 pos: 55.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4366 type: reinforced_wall components: - parent: 853 pos: 55.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4367 type: reinforced_wall components: - parent: 853 pos: 55.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4368 type: reinforced_wall components: - parent: 853 pos: 54.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4369 type: reinforced_wall components: - parent: 853 pos: 53.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4370 type: reinforced_wall components: - parent: 853 pos: 52.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4371 type: reinforced_wall components: - parent: 853 pos: 46.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4372 type: reinforced_wall components: - parent: 853 pos: 46.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4373 type: reinforced_wall components: - parent: 853 pos: 46.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4374 type: reinforced_wall components: - parent: 853 pos: 52.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4375 type: reinforced_wall components: - parent: 853 pos: 52.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4376 type: reinforced_wall components: - parent: 853 pos: 52.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4377 type: LowWall components: - parent: 853 pos: 46.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4378 type: LowWall components: - parent: 853 pos: 46.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4379 type: LowWall components: - parent: 853 pos: 45.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4380 type: LowWall components: - parent: 853 pos: 47.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4381 type: LowWall components: - parent: 853 pos: 48.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4382 type: LowWall components: - parent: 853 pos: 49.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4383 type: LowWall components: - parent: 853 pos: 50.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4384 type: LowWall components: - parent: 853 pos: 51.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4385 type: LowWall components: - parent: 853 pos: 52.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4386 type: LowWall components: - parent: 853 pos: 52.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4387 type: LowWall components: - parent: 853 pos: 53.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4388 type: ReinforcedWindow components: - parent: 853 pos: 46.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4389 type: ReinforcedWindow components: - parent: 853 pos: 46.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4390 type: ReinforcedWindow components: - parent: 853 pos: 45.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4391 type: ReinforcedWindow components: - parent: 853 pos: 47.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4392 type: ReinforcedWindow components: - parent: 853 pos: 48.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4393 type: ReinforcedWindow components: - parent: 853 pos: 52.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4394 type: ReinforcedWindow components: - parent: 853 pos: 53.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4395 type: ReinforcedWindow components: - parent: 853 pos: 52.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4396 type: ReinforcedWindow components: - parent: 853 pos: 51.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4397 type: ReinforcedWindow components: - parent: 853 pos: 50.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4398 type: ReinforcedWindow components: - parent: 853 pos: 49.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4399 type: AirlockExternalLocked components: - parent: 853 pos: 44.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 4400 type: AirlockExternalLocked components: - parent: 853 pos: 54.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 4401 type: Emitter components: - parent: 853 pos: 45.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4402 type: Emitter components: - parent: 853 pos: 49.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4403 type: Emitter components: - parent: 853 pos: 53.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4404 type: Emitter components: - parent: 853 pos: 56.5,-20.5 - rot: 3.141592653589793 rad type: Transform - uid: 4405 type: Emitter components: - parent: 853 pos: 56.5,-24.5 - rot: 3.141592653589793 rad type: Transform - uid: 4406 type: Emitter components: - parent: 853 pos: 56.5,-28.5 - rot: 3.141592653589793 rad type: Transform - uid: 4407 type: Emitter components: - parent: 853 pos: 53.5,-31.5 - rot: 1.5707963267948966 rad type: Transform - uid: 4408 type: Emitter components: - parent: 853 pos: 49.5,-31.5 - rot: 1.5707963267948966 rad type: Transform - uid: 4409 type: Emitter components: - parent: 853 pos: 45.5,-31.5 - rot: 1.5707963267948966 rad type: Transform - uid: 4410 type: Emitter @@ -38786,456 +39330,466 @@ entities: components: - parent: 853 pos: 44.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4414 type: ApcExtensionCable components: - parent: 853 pos: 44.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4415 type: ApcExtensionCable components: - parent: 853 pos: 44.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4416 type: ApcExtensionCable components: - parent: 853 pos: 44.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4417 type: ApcExtensionCable components: - parent: 853 pos: 45.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4418 type: ApcExtensionCable components: - parent: 853 pos: 46.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4419 type: ApcExtensionCable components: - parent: 853 pos: 54.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4420 type: ApcExtensionCable components: - parent: 853 pos: 54.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4421 type: ApcExtensionCable components: - parent: 853 pos: 54.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4422 type: ApcExtensionCable components: - parent: 853 pos: 54.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4423 type: ApcExtensionCable components: - parent: 853 pos: 53.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4424 type: ApcExtensionCable components: - parent: 853 pos: 52.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4425 type: ApcExtensionCable components: - parent: 853 pos: 51.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4426 type: ApcExtensionCable components: - parent: 853 pos: 47.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4427 type: ApcExtensionCable components: - parent: 853 pos: 48.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4428 type: ApcExtensionCable components: - parent: 853 pos: 49.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4429 type: ApcExtensionCable components: - parent: 853 pos: 50.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4430 type: ApcExtensionCable components: - parent: 853 pos: 49.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4431 type: ApcExtensionCable components: - parent: 853 pos: 49.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4432 type: ApcExtensionCable components: - parent: 853 pos: 49.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4433 type: ApcExtensionCable components: - parent: 853 pos: 48.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4434 type: ApcExtensionCable components: - parent: 853 pos: 47.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4435 type: ApcExtensionCable components: - parent: 853 pos: 47.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4436 type: ApcExtensionCable components: - parent: 853 pos: 47.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4437 type: ApcExtensionCable components: - parent: 853 pos: 49.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4438 type: ApcExtensionCable components: - parent: 853 pos: 49.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4439 type: ApcExtensionCable components: - parent: 853 pos: 49.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4440 type: ApcExtensionCable components: - parent: 853 pos: 48.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4441 type: ApcExtensionCable components: - parent: 853 pos: 50.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4442 type: HVWire components: - parent: 853 pos: 45.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4443 type: HVWire components: - parent: 853 pos: 45.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4444 type: HVWire components: - parent: 853 pos: 45.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4445 type: HVWire components: - parent: 853 pos: 46.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4446 type: HVWire components: - parent: 853 pos: 47.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4447 type: HVWire components: - parent: 853 pos: 48.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4448 type: HVWire components: - parent: 853 pos: 48.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4449 type: HVWire components: - parent: 853 pos: 49.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4450 type: HVWire components: - parent: 853 pos: 50.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4451 type: HVWire components: - parent: 853 pos: 49.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4452 type: HVWire components: - parent: 853 pos: 51.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4453 type: HVWire components: - parent: 853 pos: 52.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4454 type: HVWire components: - parent: 853 pos: 53.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4455 type: HVWire components: - parent: 853 pos: 53.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4456 type: HVWire components: - parent: 853 pos: 53.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4457 type: HVWire components: - parent: 853 pos: 49.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4458 type: HVWire components: - parent: 853 pos: 49.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4459 type: HVWire components: - parent: 853 pos: 49.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4460 type: HVWire components: - parent: 853 pos: 49.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4461 type: HVWire components: - parent: 853 pos: 48.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4462 type: HVWire components: - parent: 853 pos: 47.5,-6.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4463 type: HVWire components: - parent: 853 pos: 47.5,-5.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4464 type: HVWire components: - parent: 853 pos: 47.5,-4.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4465 type: HVWire components: - parent: 853 pos: 47.5,-3.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4466 type: HVWire components: - parent: 853 pos: 47.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4467 type: HVWire components: - parent: 853 pos: 48.5,-2.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4468 type: HVWire components: - parent: 853 pos: 48.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4469 type: HVWire components: - parent: 853 pos: 48.5,-0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4470 type: HVWire components: - parent: 853 pos: 48.5,0.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4471 type: HVWire components: - parent: 853 pos: 48.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4472 type: HVWire components: - parent: 853 pos: 47.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4473 type: HVWire components: - parent: 853 pos: 46.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4474 type: HVWire components: - parent: 853 pos: 45.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4475 type: HVWire components: - parent: 853 pos: 44.5,1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4476 type: AirlockExternalLocked components: - parent: 853 pos: 46.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 4477 type: AirlockExternalLocked components: - parent: 853 pos: 52.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 4478 type: AirlockEngineeringLocked components: @@ -39243,28 +39797,33 @@ entities: type: MetaData - parent: 853 pos: 49.5,-7.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform + - closeTimeOne: 0.4 + closeTimeTwo: 0.2 + openTimeOne: 0.4 + openTimeTwo: 0.2 + type: Door - uid: 4479 type: SalternSmes components: - parent: 853 pos: 45.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4480 type: SalternSmes components: - parent: 853 pos: 53.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4481 type: SalternSubstation components: - parent: 853 pos: 45.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 3200136 type: Battery @@ -39277,7 +39836,7 @@ entities: components: - parent: 853 pos: 53.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 3200136 type: Battery @@ -39290,7 +39849,7 @@ entities: components: - parent: 853 pos: 44.5,-9 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -39303,7 +39862,7 @@ entities: components: - parent: 853 pos: 54.5,-9 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -39316,7 +39875,7 @@ entities: components: - parent: 853 pos: 52,-11.5 - rot: 3.141592653589793 rad + rot: 4.71238902409608 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -39329,6 +39888,7 @@ entities: components: - parent: 853 pos: 47,-11.5 + rot: 1.5707963705062866 rad type: Transform - powerLoad: 0 type: PowerReceiver @@ -39341,1596 +39901,1596 @@ entities: components: - parent: 853 pos: 45.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4488 type: MVWire components: - parent: 853 pos: 45.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4489 type: MVWire components: - parent: 853 pos: 53.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4490 type: MVWire components: - parent: 853 pos: 53.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4491 type: MVWire components: - parent: 853 pos: 52.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4492 type: MVWire components: - parent: 853 pos: 51.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4493 type: MVWire components: - parent: 853 pos: 51.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4494 type: MVWire components: - parent: 853 pos: 46.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4495 type: MVWire components: - parent: 853 pos: 47.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4496 type: MVWire components: - parent: 853 pos: 47.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4497 type: MVWire components: - parent: 853 pos: 47.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4498 type: MVWire components: - parent: 853 pos: 49.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4499 type: MVWire components: - parent: 853 pos: 48.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4500 type: MVWire components: - parent: 853 pos: 50.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4501 type: MVWire components: - parent: 853 pos: 51.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4502 type: MVWire components: - parent: 853 pos: 49.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4503 type: MVWire components: - parent: 853 pos: 49.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4504 type: MVWire components: - parent: 853 pos: 49.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4505 type: MVWire components: - parent: 853 pos: 49.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4506 type: MVWire components: - parent: 853 pos: 48.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4507 type: MVWire components: - parent: 853 pos: 47.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4508 type: MVWire components: - parent: 853 pos: 46.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4509 type: MVWire components: - parent: 853 pos: 45.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4510 type: MVWire components: - parent: 853 pos: 50.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4511 type: MVWire components: - parent: 853 pos: 51.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4512 type: MVWire components: - parent: 853 pos: 52.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4513 type: MVWire components: - parent: 853 pos: 53.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4514 type: MVWire components: - parent: 853 pos: 54.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4515 type: MVWire components: - parent: 853 pos: 55.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4516 type: MVWire components: - parent: 853 pos: 56.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4517 type: MVWire components: - parent: 853 pos: 56.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4518 type: MVWire components: - parent: 853 pos: 56.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4519 type: MVWire components: - parent: 853 pos: 56.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4520 type: MVWire components: - parent: 853 pos: 56.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4521 type: MVWire components: - parent: 853 pos: 56.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4522 type: MVWire components: - parent: 853 pos: 56.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4523 type: MVWire components: - parent: 853 pos: 56.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4524 type: MVWire components: - parent: 853 pos: 56.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4525 type: MVWire components: - parent: 853 pos: 56.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4526 type: MVWire components: - parent: 853 pos: 56.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4527 type: MVWire components: - parent: 853 pos: 56.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4528 type: MVWire components: - parent: 853 pos: 56.5,-29.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4529 type: MVWire components: - parent: 853 pos: 56.5,-30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4530 type: MVWire components: - parent: 853 pos: 56.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4531 type: MVWire components: - parent: 853 pos: 55.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4532 type: MVWire components: - parent: 853 pos: 54.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4533 type: MVWire components: - parent: 853 pos: 53.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4534 type: MVWire components: - parent: 853 pos: 52.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4535 type: MVWire components: - parent: 853 pos: 51.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4536 type: MVWire components: - parent: 853 pos: 50.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4537 type: MVWire components: - parent: 853 pos: 49.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4538 type: MVWire components: - parent: 853 pos: 48.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4539 type: MVWire components: - parent: 853 pos: 47.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4540 type: MVWire components: - parent: 853 pos: 46.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4541 type: MVWire components: - parent: 853 pos: 45.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4542 type: MVWire components: - parent: 853 pos: 44.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4543 type: MVWire components: - parent: 853 pos: 43.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4544 type: MVWire components: - parent: 853 pos: 42.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4545 type: MVWire components: - parent: 853 pos: 42.5,-30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4546 type: MVWire components: - parent: 853 pos: 42.5,-29.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4547 type: MVWire components: - parent: 853 pos: 42.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4548 type: MVWire components: - parent: 853 pos: 42.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4549 type: MVWire components: - parent: 853 pos: 42.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4550 type: MVWire components: - parent: 853 pos: 42.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4551 type: MVWire components: - parent: 853 pos: 42.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4552 type: MVWire components: - parent: 853 pos: 42.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4553 type: MVWire components: - parent: 853 pos: 42.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4554 type: MVWire components: - parent: 853 pos: 42.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4555 type: MVWire components: - parent: 853 pos: 42.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4556 type: MVWire components: - parent: 853 pos: 42.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4557 type: MVWire components: - parent: 853 pos: 42.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4558 type: MVWire components: - parent: 853 pos: 42.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4559 type: MVWire components: - parent: 853 pos: 43.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4560 type: MVWire components: - parent: 853 pos: 44.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4561 type: ContainmentFieldGenerator components: - parent: 853 pos: 45.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4562 type: ContainmentFieldGenerator components: - parent: 853 pos: 49.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4563 type: ContainmentFieldGenerator components: - parent: 853 pos: 53.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4564 type: ContainmentFieldGenerator components: - parent: 853 pos: 53.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4565 type: ContainmentFieldGenerator components: - parent: 853 pos: 53.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4566 type: ContainmentFieldGenerator components: - parent: 853 pos: 49.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4567 type: ContainmentFieldGenerator components: - parent: 853 pos: 45.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4568 type: ContainmentFieldGenerator components: - parent: 853 pos: 45.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4569 type: Catwalk components: - parent: 853 pos: 53.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4570 type: Catwalk components: - parent: 853 pos: 54.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4571 type: Catwalk components: - parent: 853 pos: 54.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4572 type: Catwalk components: - parent: 853 pos: 54.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4573 type: Catwalk components: - parent: 853 pos: 54.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4574 type: Catwalk components: - parent: 853 pos: 54.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4575 type: Catwalk components: - parent: 853 pos: 53.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4576 type: Catwalk components: - parent: 853 pos: 53.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4577 type: Catwalk components: - parent: 853 pos: 45.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4578 type: Catwalk components: - parent: 853 pos: 44.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4579 type: Catwalk components: - parent: 853 pos: 44.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4580 type: Catwalk components: - parent: 853 pos: 44.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4581 type: Catwalk components: - parent: 853 pos: 45.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4582 type: Catwalk components: - parent: 853 pos: 44.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4583 type: Catwalk components: - parent: 853 pos: 44.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4584 type: Catwalk components: - parent: 853 pos: 45.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4585 type: Catwalk components: - parent: 853 pos: 47.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4586 type: Catwalk components: - parent: 853 pos: 49.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4587 type: Catwalk components: - parent: 853 pos: 48.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4588 type: Catwalk components: - parent: 853 pos: 50.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4589 type: Catwalk components: - parent: 853 pos: 51.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4590 type: HVWire components: - parent: 853 pos: 49.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4591 type: Catwalk components: - parent: 853 pos: 51.5,-8.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4592 type: Catwalk components: - parent: 853 pos: 51.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4593 type: Catwalk components: - parent: 853 pos: 51.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4594 type: Catwalk components: - parent: 853 pos: 51.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4595 type: Catwalk components: - parent: 853 pos: 50.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4596 type: Catwalk components: - parent: 853 pos: 49.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4597 type: Catwalk components: - parent: 853 pos: 48.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4598 type: Catwalk components: - parent: 853 pos: 47.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4599 type: Catwalk components: - parent: 853 pos: 47.5,-12.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4600 type: Catwalk components: - parent: 853 pos: 47.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4601 type: HVWire components: - parent: 853 pos: 50.5,-11.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4602 type: Catwalk components: - parent: 853 pos: 47.5,-9.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4603 type: RadiationCollector components: - parent: 853 pos: 42.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4604 type: RadiationCollector components: - parent: 853 pos: 42.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4605 type: RadiationCollector components: - parent: 853 pos: 42.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4606 type: RadiationCollector components: - parent: 853 pos: 42.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4607 type: RadiationCollector components: - parent: 853 pos: 42.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4608 type: RadiationCollector components: - parent: 853 pos: 42.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4609 type: RadiationCollector components: - parent: 853 pos: 46.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4610 type: RadiationCollector components: - parent: 853 pos: 47.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4611 type: RadiationCollector components: - parent: 853 pos: 48.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4612 type: RadiationCollector components: - parent: 853 pos: 50.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4613 type: RadiationCollector components: - parent: 853 pos: 51.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4614 type: RadiationCollector components: - parent: 853 pos: 52.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4615 type: RadiationCollector components: - parent: 853 pos: 56.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4616 type: RadiationCollector components: - parent: 853 pos: 56.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4617 type: RadiationCollector components: - parent: 853 pos: 56.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4618 type: RadiationCollector components: - parent: 853 pos: 56.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4619 type: RadiationCollector components: - parent: 853 pos: 56.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4620 type: RadiationCollector components: - parent: 853 pos: 56.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4621 type: RadiationCollector components: - parent: 853 pos: 46.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4622 type: RadiationCollector components: - parent: 853 pos: 47.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4623 type: RadiationCollector components: - parent: 853 pos: 48.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4624 type: RadiationCollector components: - parent: 853 pos: 50.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4625 type: RadiationCollector components: - parent: 853 pos: 51.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4626 type: RadiationCollector components: - parent: 853 pos: 52.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4627 type: HVWire components: - parent: 853 pos: 46.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4628 type: HVWire components: - parent: 853 pos: 47.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4629 type: HVWire components: - parent: 853 pos: 48.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4630 type: HVWire components: - parent: 853 pos: 49.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4631 type: HVWire components: - parent: 853 pos: 50.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4632 type: HVWire components: - parent: 853 pos: 51.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4633 type: HVWire components: - parent: 853 pos: 52.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4634 type: HVWire components: - parent: 853 pos: 53.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4635 type: HVWire components: - parent: 853 pos: 45.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4636 type: HVWire components: - parent: 853 pos: 44.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4637 type: HVWire components: - parent: 853 pos: 43.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4638 type: HVWire components: - parent: 853 pos: 42.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4639 type: HVWire components: - parent: 853 pos: 54.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4640 type: HVWire components: - parent: 853 pos: 55.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4641 type: HVWire components: - parent: 853 pos: 56.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4642 type: HVWire components: - parent: 853 pos: 57.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4643 type: HVWire components: - parent: 853 pos: 58.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4644 type: HVWire components: - parent: 853 pos: 58.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4645 type: HVWire components: - parent: 853 pos: 58.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4646 type: HVWire components: - parent: 853 pos: 58.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4647 type: HVWire components: - parent: 853 pos: 58.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4648 type: HVWire components: - parent: 853 pos: 58.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4649 type: HVWire components: - parent: 853 pos: 57.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4650 type: HVWire components: - parent: 853 pos: 58.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4651 type: HVWire components: - parent: 853 pos: 58.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4652 type: HVWire components: - parent: 853 pos: 41.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4653 type: HVWire components: - parent: 853 pos: 40.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4654 type: HVWire components: - parent: 853 pos: 40.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4655 type: HVWire components: - parent: 853 pos: 40.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4656 type: HVWire components: - parent: 853 pos: 40.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4657 type: HVWire components: - parent: 853 pos: 40.5,-20.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4658 type: HVWire components: - parent: 853 pos: 40.5,-19.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4659 type: HVWire components: - parent: 853 pos: 40.5,-18.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4660 type: HVWire components: - parent: 853 pos: 40.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4661 type: HVWire components: - parent: 853 pos: 41.5,-17.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4662 type: HVWire components: - parent: 853 pos: 42.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4663 type: HVWire components: - parent: 853 pos: 42.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4664 type: HVWire components: - parent: 853 pos: 42.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4665 type: HVWire components: - parent: 853 pos: 42.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4666 type: HVWire components: - parent: 853 pos: 42.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4667 type: HVWire components: - parent: 853 pos: 42.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4668 type: HVWire components: - parent: 853 pos: 42.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4669 type: HVWire components: - parent: 853 pos: 56.5,-24.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4670 type: HVWire components: - parent: 853 pos: 56.5,-23.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4671 type: HVWire components: - parent: 853 pos: 56.5,-22.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4672 type: HVWire components: - parent: 853 pos: 56.5,-21.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4673 type: HVWire components: - parent: 853 pos: 56.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4674 type: HVWire components: - parent: 853 pos: 56.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4675 type: HVWire components: - parent: 853 pos: 56.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4676 type: HVWire components: - parent: 853 pos: 49.5,-16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4677 type: HVWire components: - parent: 853 pos: 49.5,-15.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4678 type: HVWire components: - parent: 853 pos: 49.5,-14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4679 type: HVWire components: - parent: 853 pos: 49.5,-13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4680 type: Catwalk components: - parent: 853 pos: 47.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4681 type: Catwalk components: - parent: 853 pos: 51.5,-10.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4682 type: HVWire components: - parent: 853 pos: 49.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4683 type: HVWire components: - parent: 853 pos: 48.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4684 type: HVWire components: - parent: 853 pos: 47.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4685 type: HVWire components: - parent: 853 pos: 46.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4686 type: HVWire components: - parent: 853 pos: 50.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4687 type: HVWire components: - parent: 853 pos: 51.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4688 type: HVWire components: - parent: 853 pos: 52.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4689 type: HVWire components: - parent: 853 pos: 49.5,-32.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4690 type: HVWire components: - parent: 853 pos: 49.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4691 type: HVWire components: - parent: 853 pos: 48.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4692 type: HVWire components: - parent: 853 pos: 47.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4693 type: HVWire components: - parent: 853 pos: 46.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4694 type: HVWire components: - parent: 853 pos: 45.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4695 type: HVWire components: - parent: 853 pos: 44.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4696 type: HVWire components: - parent: 853 pos: 43.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4697 type: HVWire components: - parent: 853 pos: 42.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4698 type: HVWire components: - parent: 853 pos: 41.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4699 type: HVWire components: - parent: 853 pos: 40.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4700 type: HVWire components: - parent: 853 pos: 40.5,-32.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4701 type: HVWire components: - parent: 853 pos: 40.5,-31.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4702 type: HVWire components: - parent: 853 pos: 40.5,-30.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4703 type: HVWire components: - parent: 853 pos: 40.5,-29.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4704 type: HVWire components: - parent: 853 pos: 40.5,-28.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4705 type: HVWire components: - parent: 853 pos: 40.5,-27.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4706 type: HVWire components: - parent: 853 pos: 40.5,-26.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4707 type: HVWire components: - parent: 853 pos: 40.5,-25.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4708 type: HVWire components: - parent: 853 pos: 50.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4709 type: HVWire components: - parent: 853 pos: 51.5,-33.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4710 type: LowWall components: - parent: 853 pos: 20.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4711 type: LowWall components: - parent: 853 pos: 22.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4712 type: ReinforcedWindow components: - parent: 853 pos: 20.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4713 type: ReinforcedWindow components: - parent: 853 pos: 22.5,14.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4714 type: CrateMaterialsMetal components: - parent: 853 pos: 21.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -40943,7 +41503,7 @@ entities: components: - parent: 853 pos: 20.5,13.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - IsPlaceable: False type: PlaceableSurface @@ -40956,7 +41516,7 @@ entities: components: - parent: 853 pos: -15.5,16.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - startingCharge: 3969174 type: Battery @@ -40969,13 +41529,13 @@ entities: components: - parent: 853 pos: -20.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform - uid: 4718 type: Bucket components: - parent: 853 pos: -20.5,-1.5 - rot: -1.5707963267948966 rad + rot: 4.371139006309477E-08 rad type: Transform ... diff --git a/Resources/Prototypes/Entities/Constructible/Walls/lighting.yml b/Resources/Prototypes/Entities/Constructible/Walls/lighting.yml index 8b974ccd9b..3f9a666352 100644 --- a/Resources/Prototypes/Entities/Constructible/Walls/lighting.yml +++ b/Resources/Prototypes/Entities/Constructible/Walls/lighting.yml @@ -20,7 +20,7 @@ - type: PointLight radius: 8 energy: 1.2 - offset: "0.5, 0" + offset: "0, -0.5" color: "#DCDCC6" - type: SignalReceiver - type: Damageable @@ -81,7 +81,7 @@ - type: PointLight energy: 1.0 enabled: true - offset: "0.5, 0" + offset: "0, -0.5" - type: Damageable - type: Destructible thresholds: @@ -113,7 +113,7 @@ - type: PointLight energy: 1.0 enabled: false - offset: "0.5, 0" + offset: "0, -0.5" - type: Physics shapes: - !type:PhysShapeAabb diff --git a/Resources/Prototypes/Entities/Effects/weapon_arc.yml b/Resources/Prototypes/Entities/Effects/weapon_arc.yml index c767cbb6b8..dfc0ccaf18 100644 --- a/Resources/Prototypes/Entities/Effects/weapon_arc.yml +++ b/Resources/Prototypes/Entities/Effects/weapon_arc.yml @@ -6,6 +6,6 @@ - type: Sprite sprite: Effects/arcs.rsi directional: false - offset: 0.85, 0 + offset: 0, -0.85 drawdepth: Overlays - - type: MeleeWeaponArcAnimation \ No newline at end of file + - type: MeleeWeaponArcAnimation diff --git a/Resources/Prototypes/Entities/clicktest.yml b/Resources/Prototypes/Entities/clicktest.yml new file mode 100644 index 0000000000..037115c7bd --- /dev/null +++ b/Resources/Prototypes/Entities/clicktest.yml @@ -0,0 +1,82 @@ +# Entities specifically for testing click detection with ClickableComponent. +# +# Each entity has a bounding box AND texture equivalent. +# Note that bounding box versions still have dots on the outside or center to make it possible to... see them. +# These dots' texture detection should not interfere with the actual bounding box being tested. + +- type: entity + abstract: true + id: ClickTestBase + components: + - type: Clickable + - type: InteractionOutline + - type: Sprite + sprite: Effects/clicktest.rsi + + +- type: entity + id: ClickTestRotatingCornerVisible + name: ClickTestRotatingCornerVisible + parent: ClickTestBase + components: + - type: Clickable + - type: InteractionOutline + - type: Sprite + state: rotating_corner + +- type: entity + id: ClickTestRotatingCornerVisibleNoRot + name: ClickTestRotatingCornerVisibleNoRot + parent: ClickTestRotatingCornerVisible + components: + - type: Sprite + noRot: true + +- type: entity + id: ClickTestRotatingCornerInvisible + name: ClickTestRotatingCornerInvisible + parent: ClickTestBase + components: + - type: Clickable + bounds: + south: "0.125,0.125,0.375,0.375" + north: "-0.375,-0.375,-0.125,-0.125" + east: "0.125,-0.375,0.375,-0.125" + west: "-0.375,0.125,-0.125,0.375" + + - type: InteractionOutline + - type: Sprite + state: invis_base + +- type: entity + id: ClickTestRotatingCornerInvisibleNoRot + name: ClickTestRotatingCornerInvisibleNoRot + parent: ClickTestRotatingCornerInvisible + components: + - type: Sprite + noRot: true + + +- type: entity + id: ClickTestFixedCornerVisible + name: ClickTestFixedCornerVisible + parent: ClickTestBase + components: + - type: Clickable + - type: InteractionOutline + - type: Sprite + state: fixed_corner + +- type: entity + id: ClickTestFixedCornerInvisible + name: ClickTestFixedCornerInvisible + parent: ClickTestBase + components: + - type: Clickable + bounds: + all: "0.125,0.125,0.375,0.375" + + - type: InteractionOutline + - type: Sprite + state: invis_base + diff --git a/Resources/Textures/Effects/arcs.rsi/fist.png b/Resources/Textures/Effects/arcs.rsi/fist.png index 337d57adc2..528c2b8d2a 100644 Binary files a/Resources/Textures/Effects/arcs.rsi/fist.png and b/Resources/Textures/Effects/arcs.rsi/fist.png differ diff --git a/Resources/Textures/Effects/arcs.rsi/slash.png b/Resources/Textures/Effects/arcs.rsi/slash.png index 8336ae54bd..c274cfd709 100644 Binary files a/Resources/Textures/Effects/arcs.rsi/slash.png and b/Resources/Textures/Effects/arcs.rsi/slash.png differ diff --git a/Resources/Textures/Effects/arcs.rsi/spear.png b/Resources/Textures/Effects/arcs.rsi/spear.png index 1ab400ef46..80322b4751 100644 Binary files a/Resources/Textures/Effects/arcs.rsi/spear.png and b/Resources/Textures/Effects/arcs.rsi/spear.png differ diff --git a/Resources/Textures/Effects/clicktest.rsi/fixed_corner.png b/Resources/Textures/Effects/clicktest.rsi/fixed_corner.png new file mode 100644 index 0000000000..d777e7de21 Binary files /dev/null and b/Resources/Textures/Effects/clicktest.rsi/fixed_corner.png differ diff --git a/Resources/Textures/Effects/clicktest.rsi/invis_base.png b/Resources/Textures/Effects/clicktest.rsi/invis_base.png new file mode 100644 index 0000000000..34c97f49e6 Binary files /dev/null and b/Resources/Textures/Effects/clicktest.rsi/invis_base.png differ diff --git a/Resources/Textures/Effects/clicktest.rsi/meta.json b/Resources/Textures/Effects/clicktest.rsi/meta.json new file mode 100644 index 0000000000..45c32d4d8e --- /dev/null +++ b/Resources/Textures/Effects/clicktest.rsi/meta.json @@ -0,0 +1,21 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "fixed_corner", + "directions": 4 + }, + { + "name": "invis_base", + "directions": 4 + }, + { + "name": "rotating_corner", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Effects/clicktest.rsi/rotating_corner.png b/Resources/Textures/Effects/clicktest.rsi/rotating_corner.png new file mode 100644 index 0000000000..a3b13e2c6b Binary files /dev/null and b/Resources/Textures/Effects/clicktest.rsi/rotating_corner.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/bullet.rsi/bullet.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/bullet.rsi/bullet.png index 90081eec89..01d5d3fede 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Projectiles/bullet.rsi/bullet.png and b/Resources/Textures/Objects/Weapons/Guns/Projectiles/bullet.rsi/bullet.png differ diff --git a/RobustToolbox b/RobustToolbox index 583b7ebf38..a3190a8aca 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 583b7ebf3818c090de1db1927c27163796910350 +Subproject commit a3190a8aca368eb84d72431aa3ef406b677294aa