From bf4b463fdb2c1afb586a366baa34ea3e03a15e39 Mon Sep 17 00:00:00 2001 From: Emre D Date: Tue, 10 Mar 2026 15:08:08 +0100 Subject: [PATCH 1/6] Unionfall --- .../UnionfallAnnouncerComponent.cs | 2 +- .../UnionfallAnnouncerSystem.cs | 35 +++++-- .../UnionfallCapturePointComponent.cs | 2 +- .../UnionfallCapturePointSystem.cs | 51 ++++++---- .../UnionfallGraceBarrierComponent.cs | 6 ++ .../UnionfallShipNodeComponent.cs | 4 +- .../Objects/Misc/UnionfallDSMCadetNote.yml | 87 ++++++++++++++++++ .../Objects/Misc/UnionfallNCWLCadetNote.yml | 86 +++++++++++++++++ .../unionfall_grace_barrier_dsm.yml | 3 +- .../unionfall_grace_barrier_ncwl.yml | 3 +- .../Roles/Jobs/UnionfallDSM/dsm_cadet.yml | 2 +- .../Roles/Jobs/UnionfallDSM/dsm_doctor.yml | 2 +- .../Roles/Jobs/UnionfallDSM/dsm_leader.yml | 5 +- .../Roles/Jobs/UnionfallDSM/dsm_officer.yml | 7 +- .../Roles/Jobs/UnionfallDSM/dsm_rifleman.yml | 2 +- .../Jobs/UnionfallDSM/dsm_ship_captain.yml | 7 +- .../Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml | 2 +- .../Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml | 2 +- .../Roles/Jobs/UnionfallNCWL/ncwl_doctor.yml | 2 +- .../Roles/Jobs/UnionfallNCWL/ncwl_leader.yml | 3 +- .../Roles/Jobs/UnionfallNCWL/ncwl_officer.yml | 3 +- .../Jobs/UnionfallNCWL/ncwl_rifleman.yml | 2 +- .../Jobs/UnionfallNCWL/ncwl_ship_captain.yml | 2 +- .../Jobs/UnionfallNCWL/ncwl_ship_crew.yml | 2 +- .../Prototypes/_Crescent/Roles/factions.yml | 4 +- .../Wallmounts/posters.rsi/Vogsburg..png | Bin 0 -> 488 bytes sd | 12 +++ 27 files changed, 286 insertions(+), 52 deletions(-) create mode 100644 Content.Server/_Crescent/UnionfallObjectives/UnionfallGraceBarrierComponent.cs create mode 100644 Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMCadetNote.yml create mode 100644 Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLCadetNote.yml create mode 100644 Resources/Textures/_Crescent/Structures/Wallmounts/posters.rsi/Vogsburg..png create mode 100644 sd diff --git a/Content.Server/_Crescent/UnionfallObjectives/UnionfallAnnouncerComponent.cs b/Content.Server/_Crescent/UnionfallObjectives/UnionfallAnnouncerComponent.cs index bfb3d3f11f2..6a672c8d898 100644 --- a/Content.Server/_Crescent/UnionfallObjectives/UnionfallAnnouncerComponent.cs +++ b/Content.Server/_Crescent/UnionfallObjectives/UnionfallAnnouncerComponent.cs @@ -7,6 +7,6 @@ public sealed partial class UnionfallAnnouncerComponent : Component /// Time before capturing is allowed. This is from roundstart, so you want to add the ship grace period ON TOP of the value you want. /// [DataField] - public float GracePeriod = 1200f; //20 minutes for unionfall + public float GracePeriod = 900f; //20 minutes for unionfall } diff --git a/Content.Server/_Crescent/UnionfallObjectives/UnionfallAnnouncerSystem.cs b/Content.Server/_Crescent/UnionfallObjectives/UnionfallAnnouncerSystem.cs index 4fe5d56f985..1f1bf82622d 100644 --- a/Content.Server/_Crescent/UnionfallObjectives/UnionfallAnnouncerSystem.cs +++ b/Content.Server/_Crescent/UnionfallObjectives/UnionfallAnnouncerSystem.cs @@ -46,19 +46,28 @@ private void OnComponentInit(EntityUid uid, UnionfallAnnouncerComponent componen Timer.Spawn(graceTime * 0.50, () => AnnouncementWarPeriodic(graceTime - graceTime * 0.50)); Timer.Spawn(graceTime * 0.75, () => AnnouncementWarPeriodic(graceTime - graceTime * 0.75)); Timer.Spawn(graceTime - TimeSpan.FromMinutes(1), AnnouncementWarAlmost); - Timer.Spawn(graceTime, AnnouncementWarGraceOver); // TODO: turn this into a cool 10 second countdown - } + Timer.Spawn(graceTime - TimeSpan.FromSeconds(10), AnnouncementWarGraceOver); + Timer.Spawn(graceTime, () => + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var barrierUid, out var _)) + { + EntityManager.DeleteEntity(barrierUid); + } + }); + } private void AnnouncementWarStart(TimeSpan time) { _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallBegin"), Filter.Broadcast(), - "HADAL STORM DETECTED - Emergency repulsion field deployed, estimated storm dispersion time: <" + time + ">... Dispersion pattern confirms presence of a hostile fleet in the operating area."); + "HADAL STORM DETECTED - Emergency repulsion field deployed, estimated storm dispersion time: <" + time.ToString(@"hh\:mm\:ss") + ">... Dispersion pattern confirms presence of a hostile fleet in the operating area."); } + private void AnnouncementWarPeriodic(TimeSpan time) { _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallPeriodic"), Filter.Broadcast(), - "<" + time + "> until the Hadal storm disperses."); + "<" + time.ToString(@"hh\:mm\:ss") + "> until the Hadal storm disperses."); } private void AnnouncementWarAlmost() @@ -66,9 +75,23 @@ private void AnnouncementWarAlmost() _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallAlmost"), Filter.Broadcast(), "<00:01:00> LEFT UNTIL FULL HADAL STORM DISPERSION."); } + private void AnnouncementWarGraceOver() { - _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallGraceOver"), Filter.Broadcast(), + for (int i = 10; i > 0; i--) + { + int countdown = i; + Timer.Spawn(TimeSpan.FromSeconds(10 - countdown), () => + { + _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallCountdown"), Filter.Broadcast(), + "HADAL STORM DISPERSING IN <00:00:" + countdown.ToString("D2") + ">..."); + }); + } + + Timer.Spawn(TimeSpan.FromSeconds(10), () => + { + _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallGraceOver"), Filter.Broadcast(), "HADAL STORM HAS DISPERSED. Emergency dispersion field has been disabled. Long-Range radar readings confirm presence of hostile fleet."); + }); } -} +} \ No newline at end of file diff --git a/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointComponent.cs b/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointComponent.cs index eef29a26f68..88e6435d071 100644 --- a/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointComponent.cs +++ b/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointComponent.cs @@ -34,7 +34,7 @@ public sealed partial class UnionfallCapturePointComponent : Component /// Time before capturing is allowed. This is from roundstart, so you want to add the ship grace period ON TOP of the value you want. /// [DataField] - public float GracePeriod = 1200f; //20 minutes. 10 ship + 10 point + public float GracePeriod = 900f; //20 minutes. 10 ship + 10 point /// /// This decides wether the point announces UNIONFALL specific announcements regarding the grace period. diff --git a/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointSystem.cs b/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointSystem.cs index 9c77d0fc19b..f7839d44151 100644 --- a/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointSystem.cs +++ b/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointSystem.cs @@ -49,7 +49,7 @@ private void OnComponentInit(EntityUid uid, UnionfallCapturePointComponent compo Timer.Spawn(graceTime * 0.50, () => AnnouncementWarPeriodic(graceTime - graceTime * 0.50)); Timer.Spawn(graceTime * 0.75, () => AnnouncementWarPeriodic(graceTime - graceTime * 0.75)); Timer.Spawn(graceTime - TimeSpan.FromMinutes(1), AnnouncementWarAlmost); - Timer.Spawn(graceTime, AnnouncementWarGraceOver); // TODO: turn this into a cool 10 second countdown + Timer.Spawn(graceTime - TimeSpan.FromSeconds(10), AnnouncementWarGraceOver); } public override void Update(float frameTime) @@ -59,19 +59,19 @@ public override void Update(float frameTime) var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var capturepoint)) { - capturepoint.GracePeriod -= frameTime; //we do it this way so we can VVedit in admin mode midgame + capturepoint.GracePeriod -= frameTime; - if (capturepoint.GracePeriod > 0f) //point is still in grace period + if (capturepoint.GracePeriod > 0f) return; - if (capturepoint.CapturingFaction == null) //if nobody's capping it then don't do anything + if (capturepoint.CapturingFaction == null) return; - else //someone is capping it rn + else { - capturepoint.CurrentCaptureProgress -= frameTime; //this is how the timer decreases + capturepoint.CurrentCaptureProgress -= frameTime; } - if (capturepoint.CurrentCaptureProgress <= 0) //capturing complete. TODO: NEED TO END THE ROUND SOMEHOW + if (capturepoint.CurrentCaptureProgress <= 0) { _announcer.SendAnnouncement(_announcer.GetAnnouncementId("Fallback"), Filter.Broadcast(), capturepoint.CapturingFaction + " has secured the control point! The round is over."); @@ -84,13 +84,13 @@ public override void Update(float frameTime) private void OnActivatedInWorld(EntityUid uid, UnionfallCapturePointComponent component, ActivateInWorldEvent args) { - if (component.GracePeriod > 0) //grace period still active + if (component.GracePeriod > 0) { _popup.PopupEntity(Loc.GetString("capturepoint-grace-period-fail"), uid, args.User); return; } - if (!TryComp(args.User, out var comp)) //someone with no faction interacted with this. modified client only + if (!TryComp(args.User, out var comp)) return; string faction = comp.Faction; @@ -116,21 +116,21 @@ private void OnCaptureDoAfter(EntityUid uid, UnionfallCapturePointComponent comp if (args.Target is null) return; - if (!TryComp(args.User, out var comp)) //someone with no faction interacted with this. modified client only + if (!TryComp(args.User, out var comp)) return; string faction = comp.Faction; - if (component.CapturingFaction == null) //faction now controls da point + if (component.CapturingFaction == null) { component.CapturingFaction = faction; _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallPointCapture"), Filter.Broadcast(), faction + " has activated the control point! It will finish in " + float.Round(component.CurrentCaptureProgress).ToString() + " seconds."); } - else if (component.CapturingFaction != faction) //opposing faction touched control point + else if (component.CapturingFaction != faction) { component.CapturingFaction = faction; - component.CurrentCaptureProgress += component.CaptureTimeBonus; //takes longer since it switched sides - if (component.CurrentCaptureProgress > component.TimeToEnd) //cant go longer than this amount + component.CurrentCaptureProgress += component.CaptureTimeBonus; + if (component.CurrentCaptureProgress > component.TimeToEnd) component.CurrentCaptureProgress = component.TimeToEnd; _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallPointCapture"), Filter.Broadcast(), faction + " seized control of the control point! The time left is " + float.Round(component.CurrentCaptureProgress).ToString() + " seconds."); @@ -140,12 +140,13 @@ private void OnCaptureDoAfter(EntityUid uid, UnionfallCapturePointComponent comp private void AnnouncementWarStart(TimeSpan time) { _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallBegin"), Filter.Broadcast(), - "HADAL STORM DETECTED - Emergency repulsion field deployed, estimated storm dispersion time: <" + time + ">... Dispersion pattern confirms presence of a hostile fleet in the operating area."); + "HADAL STORM DETECTED - Emergency repulsion field deployed, estimated storm dispersion time: <" + time.ToString(@"hh\:mm\:ss") + ">... Dispersion pattern confirms presence of a hostile fleet in the operating area."); } + private void AnnouncementWarPeriodic(TimeSpan time) { _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallPeriodic"), Filter.Broadcast(), - "<" + time + "> until the Hadal storm disperses."); + "<" + time.ToString(@"hh\:mm\:ss") + "> until the Hadal storm disperses."); } private void AnnouncementWarAlmost() @@ -153,9 +154,23 @@ private void AnnouncementWarAlmost() _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallAlmost"), Filter.Broadcast(), "<00:01:00> LEFT UNTIL FULL HADAL STORM DISPERSION."); } + private void AnnouncementWarGraceOver() { - _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallGraceOver"), Filter.Broadcast(), + for (int i = 10; i > 0; i--) + { + int countdown = i; + Timer.Spawn(TimeSpan.FromSeconds(10 - countdown), () => + { + _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallCountdown"), Filter.Broadcast(), + "HADAL STORM DISPERSING IN <00:00:" + countdown.ToString("D2") + ">..."); + }); + } + + Timer.Spawn(TimeSpan.FromSeconds(10), () => + { + _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallGraceOver"), Filter.Broadcast(), "HADAL STORM HAS DISPERSED. Emergency dispersion field has been disabled. Long-Range radar readings confirm presence of hostile fleet, with interception course set to NanoTransen Vladzena Extraction Station"); + }); } -} +} \ No newline at end of file diff --git a/Content.Server/_Crescent/UnionfallObjectives/UnionfallGraceBarrierComponent.cs b/Content.Server/_Crescent/UnionfallObjectives/UnionfallGraceBarrierComponent.cs new file mode 100644 index 00000000000..ab067158bfa --- /dev/null +++ b/Content.Server/_Crescent/UnionfallObjectives/UnionfallGraceBarrierComponent.cs @@ -0,0 +1,6 @@ +namespace Content.Server._Crescent.UnionfallCapturePoint; + +[RegisterComponent] +public sealed partial class UnionfallGraceBarrierComponent : Component +{ +} \ No newline at end of file diff --git a/Content.Server/_Crescent/UnionfallObjectives/UnionfallShipNodeComponent.cs b/Content.Server/_Crescent/UnionfallObjectives/UnionfallShipNodeComponent.cs index d908139d3cc..2f2e0026d26 100644 --- a/Content.Server/_Crescent/UnionfallObjectives/UnionfallShipNodeComponent.cs +++ b/Content.Server/_Crescent/UnionfallObjectives/UnionfallShipNodeComponent.cs @@ -30,5 +30,5 @@ public sealed partial class UnionfallShipNodeComponent : Component /// Time before capturing is allowed. This is from roundstart, so you want to add the ship grace period ON TOP of the value you want. /// [DataField] - public float GracePeriod = 1200f; //20 minutes for unionfall -} + public float GracePeriod = 900f; //15 minutes for unionfall +} \ No newline at end of file diff --git a/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMCadetNote.yml b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMCadetNote.yml new file mode 100644 index 00000000000..07c4765572e --- /dev/null +++ b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMCadetNote.yml @@ -0,0 +1,87 @@ +- type: entity + parent: Paper + id: UnionfallDSMCadetNote + name: Mandate disciplinary regiment briefing + components: + - type: Paper + content: | + DIVINE SOL MANDATE + DISCIPLINARY REGIMENT BRIEFING + + Cadet, + + You serve in a Mandate disciplinary regiment — + a formation composed of disgraced soldiers, + criminals and condemned veterans. + + The Mandate wastes no useful servant of Sol. + + In the Taypan sector our patrol fleet has detected + the remnants of a rebel warfleet belonging to the + New Crescent Workers League. + + Communications failure prevents reinforcement. + Therefore this battle falls to us alone. + + Consider this your opportunity for redemption. + + ------------------------------------------------ + + OBJECTIVE + + Destroy the enemy Cloner Databases located aboard + their warships. + + These devices allow rebel forces to continuously + return to the battlefield. + + Eliminate them and the rebellion dies here. + + Methods: + + • Destroy them using ship weaponry + • Board enemy vessels and sabotage them + + Sabotage procedure: + - Interaction time: 10 seconds + - Detonation timer: 60 seconds + + Enemy technicians may disarm the device. + + ------------------------------------------------ + + HADAL TIDE + + At the beginning of the operation both fleets are + contained within protective barriers. + + Duration: 20 minutes. + + Use this time to: + + • Organize ship crews + • Deploy fighters + • Form boarding parties + + Once the barrier collapses, + the fleet engagement will begin. + + ------------------------------------------------ + + ORDERS + + 1. Report to the Knight-Bannaret + or the Grand Steward. + + 2. Join an operational ship crew + or acquire a fighter voucher. + + 3. Deploy through the shipyard console. + + 4. Follow Mandate fleet command. + + Redemption is earned through obedience. + + Serve Sol faithfully. + + Glory to the Divine Mandate. \ No newline at end of file diff --git a/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLCadetNote.yml b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLCadetNote.yml new file mode 100644 index 00000000000..451709312fe --- /dev/null +++ b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLCadetNote.yml @@ -0,0 +1,86 @@ +- type: entity + parent: Paper + id: UnionfallNCWLCadetNote + name: NCWL revolutionary cadet briefing + components: + - type: Paper + content: | + NEW CRESCENT WORKERS LEAGUE + REVOLUTIONARY CADET BRIEFING + + Comrade, + + After the fall of Nova Belraska, + the revolutionary forces of the + New Crescent Workers League have + withdrawn to the Taypan sector. + + Our fleet now operates from the + converted freighter "Dear Clementine". + + The Divine Sol Mandate has detected + our presence and is moving to crush + what they believe to be the final + remnants of the revolution. + + They are mistaken. + + ------------------------------------------------ + + OBJECTIVE + + Destroy the Mandate Cloner Databases + located aboard their warships. + + These systems allow imperial soldiers + to endlessly return to battle. + + Destroy them and the Mandate fleet + will collapse. + + Methods: + + • Destroy them using ship weapons + • Board enemy vessels and sabotage them + + Sabotage procedure: + - Interaction time: 10 seconds + - Detonation timer: 60 seconds + + Enemy engineers may disarm the device. + + ------------------------------------------------ + + HADAL TIDE + + At the start of the operation both + fleets are confined within a defensive + barrier. + + Duration: 20 minutes. + + Use this time to: + + • Organize crews + • Prepare fighters + • Coordinate with command + + When the barrier falls, + the battle begins. + + ------------------------------------------------ + + ORDERS TO ALL CADETS + + 1. Report to the Kommissar or Admiral. + 2. Join an active ship crew or obtain + a fighter voucher. + 3. Deploy via the shipyard console. + 4. Maintain formation and follow orders. + + The revolution survives only if we fight. + + Stand firm, comrade. + + Long live the Workers. + Long live the Revolution. \ No newline at end of file diff --git a/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_grace_barrier_dsm.yml b/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_grace_barrier_dsm.yml index 82d45563306..bf79f15c3a5 100644 --- a/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_grace_barrier_dsm.yml +++ b/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_grace_barrier_dsm.yml @@ -9,8 +9,7 @@ gridComponents: - type: BlockShipWeaponProjectileGrid - type: PreventPilot - # - type: SelfDeleteGrid //haha this broke because of using this for antilag .2 | 2025 - # timeToDelete: 1200 # 20 minutes + - type: UnionfallGraceBarrier - type: VesselIcon iffIcon: sprite: _Crescent/ShipIcons/ifficons.rsi diff --git a/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_grace_barrier_ncwl.yml b/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_grace_barrier_ncwl.yml index b17d906055f..6c3e3100fbc 100644 --- a/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_grace_barrier_ncwl.yml +++ b/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_grace_barrier_ncwl.yml @@ -9,8 +9,7 @@ gridComponents: - type: BlockShipWeaponProjectileGrid - type: PreventPilot - # - type: SelfDeleteGrid //haha this broke because of using this for antilag .2 | 2025 - # timeToDelete: 1200 # 20 minutes + - type: UnionfallGraceBarrier - type: VesselIcon iffIcon: sprite: _Crescent/ShipIcons/ifficons.rsi diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_cadet.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_cadet.yml index 6983d4ceae5..84e7fa02167 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_cadet.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_cadet.yml @@ -56,7 +56,7 @@ suitstorage: WeaponSniperDSMLegax eyes: ClothingEyesHudSecurity inhand: - - BookUnionfallDSMGuide + - UnionfallDSMCadetNote - JetpackBlackFilled storage: back: diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_doctor.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_doctor.yml index 72bbbd7d324..4d139f37e88 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_doctor.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_doctor.yml @@ -61,7 +61,7 @@ suitstorage: WeaponPistolNeoVolker back: ClothingBackpackSatchelMedical inhand: - - BookUnionfallDSMGuide + - UnionfallDSMCadetNote - JetpackBlackFilled storage: back: diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_leader.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_leader.yml index d34b76978ca..c7094b684be 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_leader.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_leader.yml @@ -6,6 +6,9 @@ requirements: - !type:FactionRequirement factionID: "DSM" + - !type:CharacterSpeciesRequirement + species: + - Human - !type:CharacterWhitelistRequirement - !type:CharacterOverallTimeRequirement min: 20000 @@ -80,7 +83,7 @@ id: UnionfallLeaderDSMGear equipment: jumpsuit: ClothingUniformJumpsuitImperialGovernor - neck: ClothingNeckIFFCyan + neck: ClothingNeckCloakImperialCapelet back: ClothingBackpackDSM shoes: ClothingShoesBootsMagDSM head: ClothingHeadHatImperialBicorne diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_officer.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_officer.yml index 5c38662786a..983c3a9bf89 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_officer.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_officer.yml @@ -6,6 +6,9 @@ requirements: - !type:FactionRequirement factionID: "DSM" + - !type:CharacterSpeciesRequirement + species: + - Human - !type:CharacterOverallTimeRequirement min: 20000 - !type:CharacterTraitRequirement @@ -79,11 +82,11 @@ id: UnionfallOfficerDSMGear equipment: jumpsuit: ClothingUniformJumpsuitImperialGovernor - neck: ClothingNeckIFFCyan + neck: ClothingNeckCloakImperialCapelet back: ClothingBackpackDSM shoes: ClothingShoesBootsMagDSM head: ClothingHeadHatImperialBeret - outerClothing: ClothingOuterHardsuitImperialCommand + outerClothing: ClothingOuterHardsuitImperialKnight id: KnightPDA belt: ClothingBeltAssaultFilledAdjutant pocket1: DoubleEmergencyOxygenTankFilled diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_rifleman.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_rifleman.yml index c715c360d25..96d61d191cc 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_rifleman.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_rifleman.yml @@ -59,7 +59,7 @@ suitstorage: WeaponSniperDSMLegax eyes: ClothingEyesHudSecurity inhand: - - BookUnionfallDSMGuide + - UnionfallDSMCadetNote - JetpackBlackFilled storage: back: diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_captain.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_captain.yml index c40aec4c741..10140d246d8 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_captain.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_captain.yml @@ -6,6 +6,9 @@ requirements: - !type:FactionRequirement factionID: "DSM" + - !type:CharacterSpeciesRequirement + species: + - Human - !type:CharacterOverallTimeRequirement min: 20000 - !type:CharacterTraitRequirement @@ -79,11 +82,11 @@ id: UnionfallShipCaptainDSMGear equipment: jumpsuit: ClothingUniformJumpsuitMilitaryCaptain - neck: ClothingNeckIFFCyan + neck: ClothingNeckCloakImperialGovernor back: ClothingBackpackDSM shoes: ClothingShoesBootsMagDSM head: ClothingHeadHatImperialPeakedCap - outerClothing: ClothingOuterCoatImperialParade + outerClothing: ClothingOuterHardsuitImperialCommand id: KnightPDA belt: ClothingBeltAssaultFilledCrew pocket1: DoubleEmergencyOxygenTankFilled diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml index 4aa7fe47ddf..67740c40c9c 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml @@ -90,7 +90,7 @@ outerClothing: ClothingOuterHardsuitImperialWorker suitstorage: WeaponPistolNeoVolker inhand: - - BookUnionfallDSMGuide + - UnionfallDSMCadetNote - JetpackBlackFilled storage: back: diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml index 88f3d3434c7..cbdeca4ab65 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml @@ -62,7 +62,7 @@ gloves: ClothingHandsGlovesCombat eyes: ClothingEyesGlassesNCWL inhand: - - BookUnionfallNCWLGuide + - UnionfallNCWLCadetNote - JetpackBlackFilled storage: back: diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_doctor.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_doctor.yml index a2ec056c770..68381b54b43 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_doctor.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_doctor.yml @@ -64,7 +64,7 @@ gloves: ClothingHandsGlovesNitrile eyes: ClothingEyesHudMedSec inhand: - - BookUnionfallNCWLGuide + - UnionfallNCWLCadetNote - JetpackBlackFilled storage: back: diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_leader.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_leader.yml index f3d97ed0470..2c20fbdb51c 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_leader.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_leader.yml @@ -85,7 +85,7 @@ id: NCWLFactionLeaderPDA ears: ClothingHeadsetNCWL shoes: ClothingShoesBootsMagNCWL - outerClothing: ClothingOuterArmorNCWLOpremeCarapace + outerClothing: ClothingOuterHardsuitNCWLPetya head: ClothingHeadHatNCWLBeretAdmiral belt: ClothingBeltNCWLPouchesFilledKommissar pocket1: DoubleEmergencyOxygenTankFilled @@ -95,7 +95,6 @@ gloves: ClothingHandsGlovesCombat eyes: ClothingEyesGlassesNCWL inhand: - - ClothingOuterHardsuitNCWLPetya - JetpackBlackFilled storage: back: diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_officer.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_officer.yml index 277e8ff74ff..ddbd1fdce51 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_officer.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_officer.yml @@ -84,7 +84,7 @@ id: NCWLHomeguardSquadCaptainPDA ears: ClothingHeadsetNCWL shoes: ClothingShoesBootsMagNCWL - outerClothing: ClothingOuterArmorNCWLCarapace + outerClothing: ClothingOuterHardsuitNCWLPetya head: ClothingHeadHatNCWLKommissarHat belt: ClothingBeltNCWLPouchesFilledKommissar pocket1: DoubleEmergencyOxygenTankFilled @@ -94,7 +94,6 @@ gloves: ClothingHandsGlovesCombat eyes: ClothingEyesGlassesNCWL inhand: - - ClothingOuterHardsuitNCWLInfantry - JetpackBlackFilled storage: back: diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_rifleman.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_rifleman.yml index 856d37e4a7b..c4cceabacdb 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_rifleman.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_rifleman.yml @@ -65,7 +65,7 @@ gloves: ClothingHandsGlovesCombat eyes: ClothingEyesGlassesNCWL inhand: - - BookUnionfallNCWLGuide + - UnionfallNCWLCadetNote - JetpackBlackFilled storage: back: diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml index 540da2f85ea..c07b8f96abc 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml @@ -84,7 +84,7 @@ id: NCWLHomeguardLeaderPDA ears: ClothingHeadsetNCWL shoes: ClothingShoesBootsMagNCWL - outerClothing: ClothingOuterCoatJacketJamrock + outerClothing: ClothingOuterHardsuitNCWLPetya head: ClothingHeadHatNCWLBeretAdmiral belt: ClothingBeltAssaultFilledCrew #looks better pocket1: DoubleEmergencyOxygenTankFilled diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_crew.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_crew.yml index f8ab2976e37..f015b0f76a1 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_crew.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_crew.yml @@ -93,7 +93,7 @@ eyes: ClothingEyesHudSecurity suitstorage: WeaponPistolT91 inhand: - - BookUnionfallNCWLGuide + - UnionfallNCWLCadetNote - JetpackBlackFilled storage: back: diff --git a/Resources/Prototypes/_Crescent/Roles/factions.yml b/Resources/Prototypes/_Crescent/Roles/factions.yml index cf45b94a392..192b7fabe22 100644 --- a/Resources/Prototypes/_Crescent/Roles/factions.yml +++ b/Resources/Prototypes/_Crescent/Roles/factions.yml @@ -80,7 +80,7 @@ 'Kinetic Preservation of Corporate Interests,' and 'Competitive Partnership Management.' color: "#9FED58" weight: 6 - enabled: true + enabled: false icon: sprite: /Textures/_Crescent/faction_icons.rsi state: shi @@ -109,7 +109,7 @@ pillaging. But with the destruction of Freeport, these groups have drifted apart even more, often fighting each other. color: "#9FED58" weight: 5 - enabled: true + enabled: false icon: sprite: /Textures/_Crescent/faction_icons.rsi state: tfsc diff --git a/Resources/Textures/_Crescent/Structures/Wallmounts/posters.rsi/Vogsburg..png b/Resources/Textures/_Crescent/Structures/Wallmounts/posters.rsi/Vogsburg..png new file mode 100644 index 0000000000000000000000000000000000000000..556ebe2ff61c8c107487d5678048915bc24d44bb GIT binary patch literal 488 zcmVP)$7vz)4V<@Ow5r;neYrevL>e=Zu)vF(6pK44ARqf_cmVL( zP-?(760D;Uc;KagfE>s4LX`*F3t~*aWToGqGfG~r&Q zaldAuCpV_S?cFM%$Qy__RaV=7h zR`oUvWSPqk6h4fIYCL!Gjc9M{>>^Zc0a49ne78GzSIwLv1G!mEo#%q^T?=HbC2Q@_ z-T<_i&FOu2pv7!X8^HU&Z$o%X>M^zgL(#a|7}H>HEmr3f0AO`KVQ+0ThT{ Date: Tue, 10 Mar 2026 15:50:28 +0100 Subject: [PATCH 2/6] Unionfallupdate1 --- .../Unionfall/DSM/unionfall_laelaps.yml | 2718 ++++---- .../Unionfall/DSM/unionfall_saintsfall.yml | 553 +- .../Unionfall/NCWL/unionfall_gargut.yml | 4123 ++++++------ .../Unionfall/NCWL/unionfall_sasha.yml | 5315 ++++++++------- .../Unionfall/unionfall_clementine.yml | 5683 ++++++++++------- .../_Crescent/Unionfall/unionfall_nemesis.yml | 4906 +++++++------- .../Jobs/UnionfallNCWL/ncwl_ship_captain.yml | 7 +- 7 files changed, 13051 insertions(+), 10254 deletions(-) diff --git a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_laelaps.yml b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_laelaps.yml index ea5c51a44ff..a85ac0f3245 100644 --- a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_laelaps.yml +++ b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_laelaps.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/10/2026 14:13:44 + entityCount: 990 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 2: FloorDark @@ -38,36 +49,36 @@ entities: chunks: 0,0: ind: 0,0 - tiles: ggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAABgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAggAAAAAADwAAAAAACgAAAAAADwAAAAAAggAAAAAAggAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAACgAAAAAADwAAAAAAggAAAAAACgAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAggAAAAAADwAAAAAACgAAAAAADwAAAAAAggAAAAAACgAAAAAACgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAggAAAAAACgAAAAAADwAAAAAACgAAAAAAggAAAAAADwAAAAAAggAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACwAAAAAADwAAAAAACgAAAAAACgAAAAAADwAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAggAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAA8AAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAAYAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAA8AAAAAAAAKAAAAAAAADwAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAPAAAAAAAACgAAAAAAAA8AAAAAAACCAAAAAAAACgAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAADwAAAAAAAAoAAAAAAAAPAAAAAAAAggAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAAoAAAAAAAAPAAAAAAAACgAAAAAAAIIAAAAAAAAPAAAAAAAAggAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAACwAAAAAAAA8AAAAAAAAKAAAAAAAACgAAAAAAAA8AAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAoAAAAAAAAPAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAALAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAYAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAACCAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABgAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAggAAAAAAggAAAAAADAAAAAAADAAAAAAADAAAAAAAggAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAADQAAAAAAggAAAAAADAAAAAAADgAAAAAADAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADQAAAAAADQAAAAAAggAAAAAADAAAAAAADAAAAAAADAAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADQAAAAAADQAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADQAAAAAADQAAAAAADwAAAAAADQAAAAAADQAAAAAADQAAAAAADwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAADQAAAAAADQAAAAAAggAAAAAADQAAAAAADQAAAAAADQAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAADQAAAAAADQAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAEgAAAAAAEQAAAAAADwAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAEwAAAAAAEwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAggAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAAANAAAAAAAAggAAAAAAAAwAAAAAAAAOAAAAAAAADAAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAANAAAAAAAADQAAAAAAAIIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACCAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAADQAAAAAAAA0AAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAA0AAAAAAAANAAAAAAAADwAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA8AAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAANAAAAAAAADQAAAAAAAIIAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAACCAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA0AAAAAAAANAAAAAAAAggAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAAEgAAAAAAABEAAAAAAAAPAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAACCAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAGAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAggAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAIIAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAATAAAAAAAAEwAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABgAAAAAABgAAAAAAggAAAAAADwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAADwAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADwAAAAAAggAAAAAABgAAAAAABgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAA8AAAAAAACCAAAAAAAABgAAAAAAAAYAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAEwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAEwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAEwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAADwAAAAAADwAAAAAAEgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADwAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADwAAAAAAEQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADwAAAAAADwAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADwAAAAAADwAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAEQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAADwAAAAAAEQAAAAAAggAAAAAAgQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAATAAAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAEwAAAAAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAggAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABMAAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAATAAAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAACCAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAACCAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAADwAAAAAAAA8AAAAAAAASAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAADwAAAAAAABEAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAARAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAAAABEAAAAAAACCAAAAAAAAgQAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: EwAAAAAAEwAAAAAAEwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEQAAAAAAEQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAEQAAAAAADwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAEQAAAAAADwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABgAAAAAAggAAAAAADwAAAAAADwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAEQAAAAAAggAAAAAAggAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAggAAAAAADwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: EwAAAAAAABMAAAAAAAATAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAACCAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAADwAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAACCAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAABIAAAAAAAARAAAAAAAAEQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAEQAAAAAAAA8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAABEAAAAAAAAPAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAABgAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAARAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAggAAAAAAggAAAAAADwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAADwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAADwAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -396,6 +407,7 @@ entities: 2456: -2,19 2641: -2,19 2826: -2,19 + 3011: -2,19 - node: zIndex: 1 angle: -3.141592653589793 rad @@ -407,6 +419,7 @@ entities: 2426: -2,15 2611: -2,15 2796: -2,15 + 2981: -2,15 - node: zIndex: 1 angle: -1.5707963267948966 rad @@ -418,6 +431,7 @@ entities: 2401: 2,15 2586: 2,15 2771: 2,15 + 2956: 2,15 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner @@ -428,6 +442,7 @@ entities: 2554: 2,19 2739: 2,19 2924: 2,19 + 3109: 2,19 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge @@ -462,6 +477,11 @@ entities: 2822: -2,17 2823: -2,18 2825: -2,19 + 2980: -2,15 + 3006: -2,16 + 3007: -2,17 + 3008: -2,18 + 3010: -2,19 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge @@ -496,6 +516,11 @@ entities: 2769: 2,15 2794: -2,15 2797: -1,15 + 2952: 0,15 + 2953: 1,15 + 2954: 2,15 + 2979: -2,15 + 2982: -1,15 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge @@ -530,6 +555,11 @@ entities: 2920: 2,17 2921: 2,18 2922: 2,19 + 2955: 2,15 + 3104: 2,16 + 3105: 2,17 + 3106: 2,18 + 3107: 2,19 - node: id: FloorTechMaintDirectionalEdge decals: @@ -563,6 +593,11 @@ entities: 2856: 0,19 2890: 1,19 2923: 2,19 + 3009: -2,19 + 3012: -1,19 + 3041: 0,19 + 3075: 1,19 + 3108: 2,19 - node: zIndex: 1 id: LatticeCornerNE @@ -778,6 +813,22 @@ entities: 2911: 1,26 2929: 5,31 2948: -5,32 + 2973: -8,0 + 2978: -6,9 + 2985: -5,-1 + 2988: -2,-2 + 3002: -5,31 + 3017: -1,24 + 3025: -1,25 + 3033: -1,26 + 3046: 0,24 + 3054: 0,25 + 3062: 0,26 + 3080: 1,24 + 3088: 1,25 + 3096: 1,26 + 3114: 5,31 + 3133: -5,32 - node: zIndex: 1 id: LatticeCornerNW @@ -993,6 +1044,22 @@ entities: 2914: 1,26 2932: 5,31 2940: 5,32 + 2961: 6,9 + 2964: 8,0 + 2991: 2,-2 + 2994: 5,-1 + 3005: -5,31 + 3020: -1,24 + 3028: -1,25 + 3036: -1,26 + 3049: 0,24 + 3057: 0,25 + 3065: 0,26 + 3083: 1,24 + 3091: 1,25 + 3099: 1,26 + 3117: 5,31 + 3125: 5,32 - node: zIndex: 1 id: LatticeCornerSE @@ -1220,6 +1287,23 @@ entities: 2927: 5,31 2946: -5,32 2951: -5,33 + 2970: -9,7 + 2976: -6,9 + 2997: -6,31 + 3000: -5,31 + 3015: -1,24 + 3023: -1,25 + 3031: -1,26 + 3044: 0,24 + 3052: 0,25 + 3060: 0,26 + 3068: 0,27 + 3078: 1,24 + 3086: 1,25 + 3094: 1,26 + 3112: 5,31 + 3131: -5,32 + 3136: -5,33 - node: zIndex: 1 id: LatticeCornerSW @@ -1447,6 +1531,23 @@ entities: 2935: 6,31 2939: 5,32 2943: 5,33 + 2960: 6,9 + 2967: 9,7 + 3004: -5,31 + 3019: -1,24 + 3027: -1,25 + 3035: -1,26 + 3048: 0,24 + 3056: 0,25 + 3064: 0,26 + 3070: 0,27 + 3082: 1,24 + 3090: 1,25 + 3098: 1,26 + 3116: 5,31 + 3120: 6,31 + 3124: 5,32 + 3128: 5,33 - node: id: LatticeEdgeE decals: @@ -1831,6 +1932,32 @@ entities: 2926: 5,31 2945: -5,32 2950: -5,33 + 2969: -9,7 + 2971: -8,0 + 2975: -6,9 + 2983: -5,-1 + 2986: -2,-2 + 2996: -6,31 + 2999: -5,31 + 3014: -1,24 + 3022: -1,25 + 3030: -1,26 + 3037: -1,29 + 3039: -1,31 + 3043: 0,24 + 3051: 0,25 + 3059: 0,26 + 3067: 0,27 + 3071: 0,29 + 3073: 0,31 + 3077: 1,24 + 3085: 1,25 + 3093: 1,26 + 3100: 1,29 + 3102: 1,31 + 3111: 5,31 + 3130: -5,32 + 3135: -5,33 - node: id: LatticeEdgeN decals: @@ -2127,6 +2254,27 @@ entities: 2928: 5,31 2937: 5,32 2947: -5,32 + 2958: 6,9 + 2962: 8,0 + 2972: -8,0 + 2977: -6,9 + 2984: -5,-1 + 2987: -2,-2 + 2989: 2,-2 + 2992: 5,-1 + 3001: -5,31 + 3016: -1,24 + 3024: -1,25 + 3032: -1,26 + 3045: 0,24 + 3053: 0,25 + 3061: 0,26 + 3079: 1,24 + 3087: 1,25 + 3095: 1,26 + 3113: 5,31 + 3122: 5,32 + 3132: -5,32 - node: id: LatticeEdgeS decals: @@ -2430,6 +2578,28 @@ entities: 2941: 5,33 2944: -5,32 2949: -5,33 + 2957: 6,9 + 2965: 9,7 + 2968: -9,7 + 2974: -6,9 + 2995: -6,31 + 2998: -5,31 + 3013: -1,24 + 3021: -1,25 + 3029: -1,26 + 3042: 0,24 + 3050: 0,25 + 3058: 0,26 + 3066: 0,27 + 3076: 1,24 + 3084: 1,25 + 3092: 1,26 + 3110: 5,31 + 3118: 6,31 + 3121: 5,32 + 3126: 5,33 + 3129: -5,32 + 3134: -5,33 - node: id: LatticeEdgeW decals: @@ -2814,6 +2984,32 @@ entities: 2934: 6,31 2938: 5,32 2942: 5,33 + 2959: 6,9 + 2963: 8,0 + 2966: 9,7 + 2990: 2,-2 + 2993: 5,-1 + 3003: -5,31 + 3018: -1,24 + 3026: -1,25 + 3034: -1,26 + 3038: -1,29 + 3040: -1,31 + 3047: 0,24 + 3055: 0,25 + 3063: 0,26 + 3069: 0,27 + 3072: 0,29 + 3074: 0,31 + 3081: 1,24 + 3089: 1,25 + 3097: 1,26 + 3101: 1,29 + 3103: 1,31 + 3115: 5,31 + 3119: 6,31 + 3123: 5,32 + 3127: 5,33 - node: angle: 1.5707963267948966 rad color: '#D381C996' @@ -3732,6 +3928,7 @@ entities: - type: ShuttleDeed shuttleName: Shuttle ALP-800 shuttleUid: 1 + - type: SelfDeleteGrid - proto: AAAardpointMediumMissile entities: - uid: 2 @@ -3750,53 +3947,36 @@ entities: canCollide: False - proto: AAAHardpointFixed entities: - - uid: 560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,27.5 - parent: 1 - - type: DeviceLinkSink - links: - - 744 - - type: Physics - canCollide: False - - uid: 562 + - uid: 4 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,27.5 + pos: 0.5,24.5 parent: 1 - type: DeviceLinkSink links: - - 744 + - 484 - type: Physics canCollide: False - - uid: 901 + - uid: 6 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,33.5 parent: 1 - - type: DeviceLinkSink - links: - - 744 - type: Physics canCollide: False - - uid: 912 + - uid: 7 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,33.5 parent: 1 - - type: DeviceLinkSink - links: - - 744 - type: Physics canCollide: False - proto: AAAHardpointMediumBallistic entities: - - uid: 6 + - uid: 8 components: - type: Transform rot: 1.5707963267948966 rad @@ -3804,7 +3984,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 7 + - uid: 9 components: - type: Transform rot: -1.5707963267948966 rad @@ -3812,7 +3992,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 9 + - uid: 10 components: - type: Transform rot: 3.141592653589793 rad @@ -3820,7 +4000,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 12 + - uid: 11 components: - type: Transform rot: 3.141592653589793 rad @@ -3828,7 +4008,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 724 + - uid: 12 components: - type: Transform rot: -1.5707963267948966 rad @@ -3836,7 +4016,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 753 + - uid: 13 components: - type: Transform rot: 1.5707963267948966 rad @@ -3846,21 +4026,21 @@ entities: canCollide: False - proto: AAAHardpointSmallBallistic entities: - - uid: 10 + - uid: 14 components: - type: Transform pos: -8.5,1.5 parent: 1 - type: Physics canCollide: False - - uid: 11 + - uid: 15 components: - type: Transform pos: 9.5,1.5 parent: 1 - type: Physics canCollide: False - - uid: 979 + - uid: 16 components: - type: Transform rot: 1.5707963267948966 rad @@ -3868,7 +4048,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 980 + - uid: 17 components: - type: Transform rot: -1.5707963267948966 rad @@ -3878,161 +4058,161 @@ entities: canCollide: False - proto: AirCanister entities: - - uid: 13 + - uid: 18 components: - type: Transform pos: 4.5,27.5 parent: 1 - proto: AirlockCommandLockedDSM entities: - - uid: 14 + - uid: 19 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 15 + - uid: 20 components: - type: Transform pos: 4.5,21.5 parent: 1 - - uid: 16 + - uid: 21 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 19 + - uid: 22 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 24 + - uid: 23 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 28 + - uid: 24 components: - type: Transform pos: -3.5,21.5 parent: 1 - - uid: 30 + - uid: 25 components: - type: Transform pos: -2.5,28.5 parent: 1 - - uid: 31 + - uid: 26 components: - type: Transform pos: 3.5,28.5 parent: 1 - - uid: 72 + - uid: 27 components: - type: Transform pos: 0.5,11.5 parent: 1 - - uid: 696 + - uid: 28 components: - type: Transform pos: 0.5,20.5 parent: 1 - proto: AirlockCommandLockedDSMHorizontal entities: - - uid: 8 + - uid: 29 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 17 + - uid: 30 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 18 + - uid: 31 components: - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 21 + - uid: 32 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 22 + - uid: 33 components: - type: Transform pos: 2.5,22.5 parent: 1 - - uid: 25 + - uid: 34 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 26 + - uid: 35 components: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 27 + - uid: 36 components: - type: Transform pos: -1.5,9.5 parent: 1 - - uid: 29 + - uid: 37 components: - type: Transform pos: -1.5,22.5 parent: 1 - - uid: 76 + - uid: 38 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 391 + - uid: 39 components: - type: Transform pos: -2.5,17.5 parent: 1 - - uid: 405 + - uid: 40 components: - type: Transform pos: 3.5,17.5 parent: 1 - proto: AirlockShuttle entities: - - uid: 34 + - uid: 41 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 35 + - uid: 42 components: - type: Transform pos: 1.5,-1.5 parent: 1 - proto: AirTankFilled entities: - - uid: 37 + - uid: 44 components: - type: Transform - parent: 36 + parent: 43 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 44 + - uid: 51 components: - type: Transform - parent: 43 + parent: 50 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 51 + - uid: 58 components: - type: Transform - parent: 50 + parent: 57 - type: Physics angularDamping: 0 linearDamping: 0 @@ -4040,7 +4220,7 @@ entities: - type: InsideEntityStorage - proto: AlwaysPoweredStrobeLight entities: - - uid: 57 + - uid: 64 components: - type: Transform rot: 1.5707963267948966 rad @@ -4050,64 +4230,64 @@ entities: color: '#FB4747FF' - proto: AtmosDeviceFanTiny entities: - - uid: 58 + - uid: 65 components: - type: Transform pos: -3.5,31.5 parent: 1 - - uid: 59 + - uid: 66 components: - type: Transform pos: 5.5,23.5 parent: 1 - - uid: 60 + - uid: 67 components: - type: Transform pos: -4.5,23.5 parent: 1 - - uid: 61 + - uid: 68 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,23.5 parent: 1 - - uid: 62 + - uid: 69 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 63 + - uid: 70 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 64 + - uid: 71 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 65 + - uid: 72 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 66 + - uid: 73 components: - type: Transform pos: 8.5,7.5 parent: 1 - - uid: 67 + - uid: 74 components: - type: Transform pos: 4.5,31.5 parent: 1 - - uid: 580 + - uid: 75 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,16.5 parent: 1 - - uid: 678 + - uid: 76 components: - type: Transform rot: 1.5707963267948966 rad @@ -4115,37 +4295,37 @@ entities: parent: 1 - proto: BaseAPC entities: - - uid: 68 + - uid: 77 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 - - uid: 69 + - uid: 78 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 1 - - uid: 70 + - uid: 79 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,21.5 parent: 1 - - uid: 71 + - uid: 80 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,21.5 parent: 1 - - uid: 695 + - uid: 81 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,14.5 parent: 1 - - uid: 919 + - uid: 82 components: - type: Transform rot: -1.5707963267948966 rad @@ -4153,12 +4333,16 @@ entities: parent: 1 - proto: BaseWeaponTurretJeong entities: - - uid: 74 + - uid: 83 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,8.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -4169,16 +4353,28 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon linkedConsoleIds: - - 33 - linkedConsoleId: 33 - - uid: 75 + - 485 + linkedConsoleId: 485 + - uid: 84 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,8.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -4189,41 +4385,49 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon linkedConsoleIds: - - 33 - linkedConsoleId: 33 + - 485 + linkedConsoleId: 485 - proto: Beaker entities: - - uid: 80 + - uid: 85 components: - type: Transform pos: -7.270003,4.018259 parent: 1 - type: CollisionWake enabled: False - - uid: 81 + - uid: 86 components: - type: Transform pos: -7.238753,4.143259 parent: 1 - proto: Bed entities: - - uid: 82 + - uid: 87 components: - type: Transform pos: 8.5,3.5 parent: 1 - proto: BedsheetOrange entities: - - uid: 83 + - uid: 88 components: - type: Transform pos: 8.5,3.5 parent: 1 - proto: BlastDoor entities: - - uid: 84 + - uid: 89 components: - type: Transform rot: 1.5707963267948966 rad @@ -4231,8 +4435,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 628 - - uid: 85 + - 701 + - uid: 90 components: - type: Transform rot: 1.5707963267948966 rad @@ -4240,37 +4444,37 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 627 - - uid: 86 + - 700 + - uid: 91 components: - type: Transform pos: 0.5,23.5 parent: 1 - type: DeviceLinkSink links: - - 629 - - uid: 87 + - 702 + - uid: 92 components: - type: Transform pos: 8.5,7.5 parent: 1 - type: DeviceLinkSink links: - - 635 - - uid: 88 + - 708 + - uid: 93 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 89 + - uid: 94 components: - type: Transform pos: -7.5,7.5 parent: 1 - type: DeviceLinkSink links: - - 632 - - uid: 90 + - 705 + - uid: 95 components: - type: Transform rot: -1.5707963267948966 rad @@ -4278,8 +4482,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 636 - - uid: 91 + - 709 + - uid: 96 components: - type: Transform rot: 1.5707963267948966 rad @@ -4287,8 +4491,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 626 - - uid: 813 + - 699 + - uid: 97 components: - type: Transform rot: -1.5707963267948966 rad @@ -4296,8 +4500,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 610 - - uid: 898 + - 710 + - uid: 98 components: - type: Transform rot: 1.5707963267948966 rad @@ -4305,18 +4509,18 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 612 + - 711 - proto: BlastDoorOpen entities: - - uid: 92 + - uid: 99 components: - type: Transform pos: 8.5,4.5 parent: 1 - type: DeviceLinkSink links: - - 631 - - uid: 93 + - 704 + - uid: 100 components: - type: Transform rot: 1.5707963267948966 rad @@ -4324,8 +4528,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 630 - - uid: 94 + - 703 + - uid: 101 components: - type: Transform rot: 1.5707963267948966 rad @@ -4333,8 +4537,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 630 - - uid: 95 + - 703 + - uid: 102 components: - type: Transform rot: 1.5707963267948966 rad @@ -4342,10 +4546,10 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 630 + - 703 - proto: BoriaticGeneratorEinsteinShuttle entities: - - uid: 96 + - uid: 103 components: - type: Transform pos: -3.5,16.5 @@ -4356,7 +4560,7 @@ entities: bodyType: Static missingComponents: - Explosive - - uid: 97 + - uid: 104 components: - type: Transform pos: 4.5,16.5 @@ -4369,106 +4573,106 @@ entities: - Explosive - proto: BoxTeargasGrenades entities: - - uid: 98 + - uid: 105 components: - type: Transform pos: 5.331721,3.0633063 parent: 1 - - uid: 99 + - uid: 106 components: - type: Transform pos: 5.737971,3.0789313 parent: 1 - proto: Brutepack entities: - - uid: 100 + - uid: 107 components: - type: Transform pos: -2.9211304,7.6591873 parent: 1 - - uid: 101 + - uid: 108 components: - type: Transform pos: -2.7023804,7.5966873 parent: 1 - proto: ButtonFrameCaution entities: - - uid: 102 + - uid: 109 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,30.5 parent: 1 - - uid: 103 + - uid: 110 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,30.5 parent: 1 - - uid: 104 + - uid: 111 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 105 + - uid: 112 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,22.5 parent: 1 - - uid: 106 + - uid: 113 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,22.5 parent: 1 - - uid: 107 + - uid: 114 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 108 + - uid: 115 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 109 + - uid: 116 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,4.5 parent: 1 - - uid: 110 + - uid: 117 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 1 - - uid: 111 + - uid: 118 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,22.5 parent: 1 - - uid: 112 + - uid: 119 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,1.5 parent: 1 - - uid: 113 + - uid: 120 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,3.5 parent: 1 - - uid: 680 + - uid: 121 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,15.5 parent: 1 - - uid: 697 + - uid: 122 components: - type: Transform rot: 1.5707963267948966 rad @@ -4476,1752 +4680,1752 @@ entities: parent: 1 - proto: CableApcExtension entities: - - uid: 32 + - uid: 123 components: - type: Transform pos: -2.5,14.5 parent: 1 - - uid: 114 + - uid: 124 components: - type: Transform pos: 0.5,15.5 parent: 1 - - uid: 115 + - uid: 125 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 116 + - uid: 126 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 117 + - uid: 127 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 118 + - uid: 128 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 119 + - uid: 129 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 120 + - uid: 130 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 121 + - uid: 131 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 122 + - uid: 132 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 123 + - uid: 133 components: - type: Transform pos: 7.5,5.5 parent: 1 - - uid: 124 + - uid: 134 components: - type: Transform pos: 8.5,5.5 parent: 1 - - uid: 125 + - uid: 135 components: - type: Transform pos: 3.5,24.5 parent: 1 - - uid: 126 + - uid: 136 components: - type: Transform pos: -2.5,28.5 parent: 1 - - uid: 127 + - uid: 137 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 128 + - uid: 138 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 129 + - uid: 139 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 130 + - uid: 140 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 131 + - uid: 141 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 132 + - uid: 142 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 133 + - uid: 143 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 134 + - uid: 144 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 135 + - uid: 145 components: - type: Transform pos: -4.5,5.5 parent: 1 - - uid: 136 + - uid: 146 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 137 + - uid: 147 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 138 + - uid: 148 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 139 + - uid: 149 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 140 + - uid: 150 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 141 + - uid: 151 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 142 + - uid: 152 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 143 + - uid: 153 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 144 + - uid: 154 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 145 + - uid: 155 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 146 + - uid: 156 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 147 + - uid: 157 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 148 + - uid: 158 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 149 + - uid: 159 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 150 + - uid: 160 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 151 + - uid: 161 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 152 + - uid: 162 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 153 + - uid: 163 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 154 + - uid: 164 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 155 + - uid: 165 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 156 + - uid: 166 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 157 + - uid: 167 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 158 + - uid: 168 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 159 + - uid: 169 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 160 + - uid: 170 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 161 + - uid: 171 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 162 + - uid: 172 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 163 + - uid: 173 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 164 + - uid: 174 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 165 + - uid: 175 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 166 + - uid: 176 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 167 + - uid: 177 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 168 + - uid: 178 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 169 + - uid: 179 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 170 + - uid: 180 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 171 + - uid: 181 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 172 + - uid: 182 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 173 + - uid: 183 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 174 + - uid: 184 components: - type: Transform pos: 7.5,1.5 parent: 1 - - uid: 175 + - uid: 185 components: - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 176 + - uid: 186 components: - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 177 + - uid: 187 components: - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 178 + - uid: 188 components: - type: Transform pos: -1.5,16.5 parent: 1 - - uid: 179 + - uid: 189 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 180 + - uid: 190 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 181 + - uid: 191 components: - type: Transform pos: -3.5,16.5 parent: 1 - - uid: 182 + - uid: 192 components: - type: Transform pos: -4.5,16.5 parent: 1 - - uid: 183 + - uid: 193 components: - type: Transform pos: 2.5,16.5 parent: 1 - - uid: 184 + - uid: 194 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 185 + - uid: 195 components: - type: Transform pos: 4.5,16.5 parent: 1 - - uid: 186 + - uid: 196 components: - type: Transform pos: 5.5,16.5 parent: 1 - - uid: 187 + - uid: 197 components: - type: Transform pos: 6.5,16.5 parent: 1 - - uid: 188 + - uid: 198 components: - type: Transform pos: 7.5,16.5 parent: 1 - - uid: 189 + - uid: 199 components: - type: Transform pos: 4.5,17.5 parent: 1 - - uid: 190 + - uid: 200 components: - type: Transform pos: 4.5,18.5 parent: 1 - - uid: 191 + - uid: 201 components: - type: Transform pos: 4.5,19.5 parent: 1 - - uid: 192 + - uid: 202 components: - type: Transform pos: 4.5,15.5 parent: 1 - - uid: 193 + - uid: 203 components: - type: Transform pos: 4.5,14.5 parent: 1 - - uid: 194 + - uid: 204 components: - type: Transform pos: 4.5,13.5 parent: 1 - - uid: 195 + - uid: 205 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 196 + - uid: 206 components: - type: Transform pos: 5.5,19.5 parent: 1 - - uid: 197 + - uid: 207 components: - type: Transform pos: 5.5,19.5 parent: 1 - - uid: 198 + - uid: 208 components: - type: Transform pos: -5.5,16.5 parent: 1 - - uid: 199 + - uid: 209 components: - type: Transform pos: -6.5,16.5 parent: 1 - - uid: 200 + - uid: 210 components: - type: Transform pos: -6.5,16.5 parent: 1 - - uid: 201 + - uid: 211 components: - type: Transform pos: -3.5,17.5 parent: 1 - - uid: 202 + - uid: 212 components: - type: Transform pos: -3.5,18.5 parent: 1 - - uid: 203 + - uid: 213 components: - type: Transform pos: -3.5,18.5 parent: 1 - - uid: 204 + - uid: 214 components: - type: Transform pos: -3.5,19.5 parent: 1 - - uid: 205 + - uid: 215 components: - type: Transform pos: -4.5,19.5 parent: 1 - - uid: 206 + - uid: 216 components: - type: Transform pos: -3.5,15.5 parent: 1 - - uid: 207 + - uid: 217 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 208 + - uid: 218 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 209 + - uid: 219 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 210 + - uid: 220 components: - type: Transform pos: -4.5,13.5 parent: 1 - - uid: 211 + - uid: 221 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 212 + - uid: 222 components: - type: Transform pos: -2.5,13.5 parent: 1 - - uid: 213 + - uid: 223 components: - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 214 + - uid: 224 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 215 + - uid: 225 components: - type: Transform pos: 0.5,13.5 parent: 1 - - uid: 216 + - uid: 226 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 217 + - uid: 227 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 218 + - uid: 228 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 219 + - uid: 229 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 220 + - uid: 230 components: - type: Transform pos: 0.5,14.5 parent: 1 - - uid: 221 + - uid: 231 components: - type: Transform pos: 0.5,14.5 parent: 1 - - uid: 222 + - uid: 232 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 223 + - uid: 233 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 224 + - uid: 234 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 225 + - uid: 235 components: - type: Transform pos: 0.5,11.5 parent: 1 - - uid: 226 + - uid: 236 components: - type: Transform pos: 0.5,11.5 parent: 1 - - uid: 227 + - uid: 237 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 228 + - uid: 238 components: - type: Transform pos: -0.5,9.5 parent: 1 - - uid: 229 + - uid: 239 components: - type: Transform pos: 0.5,16.5 parent: 1 - - uid: 230 + - uid: 240 components: - type: Transform pos: 2.5,21.5 parent: 1 - - uid: 231 + - uid: 241 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 232 + - uid: 242 components: - type: Transform pos: 0.5,21.5 parent: 1 - - uid: 233 + - uid: 243 components: - type: Transform pos: -0.5,21.5 parent: 1 - - uid: 234 + - uid: 244 components: - type: Transform pos: -1.5,21.5 parent: 1 - - uid: 235 + - uid: 245 components: - type: Transform pos: 0.5,20.5 parent: 1 - - uid: 236 + - uid: 246 components: - type: Transform pos: 0.5,19.5 parent: 1 - - uid: 237 + - uid: 247 components: - type: Transform pos: 0.5,22.5 parent: 1 - - uid: 238 + - uid: 248 components: - type: Transform pos: 0.5,23.5 parent: 1 - - uid: 239 + - uid: 249 components: - type: Transform pos: -0.5,23.5 parent: 1 - - uid: 240 + - uid: 250 components: - type: Transform pos: -1.5,23.5 parent: 1 - - uid: 241 + - uid: 251 components: - type: Transform pos: -2.5,23.5 parent: 1 - - uid: 242 + - uid: 252 components: - type: Transform pos: -3.5,23.5 parent: 1 - - uid: 243 + - uid: 253 components: - type: Transform pos: -2.5,24.5 parent: 1 - - uid: 244 + - uid: 254 components: - type: Transform pos: -2.5,25.5 parent: 1 - - uid: 245 + - uid: 255 components: - type: Transform pos: -2.5,26.5 parent: 1 - - uid: 246 + - uid: 256 components: - type: Transform pos: -2.5,27.5 parent: 1 - - uid: 247 + - uid: 257 components: - type: Transform pos: -2.5,29.5 parent: 1 - - uid: 248 + - uid: 258 components: - type: Transform pos: -2.5,29.5 parent: 1 - - uid: 249 + - uid: 259 components: - type: Transform pos: -3.5,29.5 parent: 1 - - uid: 250 + - uid: 260 components: - type: Transform pos: -3.5,30.5 parent: 1 - - uid: 251 + - uid: 261 components: - type: Transform pos: -3.5,31.5 parent: 1 - - uid: 252 + - uid: 262 components: - type: Transform pos: -3.5,32.5 parent: 1 - - uid: 253 + - uid: 263 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 254 + - uid: 264 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 255 + - uid: 265 components: - type: Transform pos: 2.5,23.5 parent: 1 - - uid: 256 + - uid: 266 components: - type: Transform pos: 3.5,23.5 parent: 1 - - uid: 257 + - uid: 267 components: - type: Transform pos: 3.5,23.5 parent: 1 - - uid: 258 + - uid: 268 components: - type: Transform pos: 4.5,23.5 parent: 1 - - uid: 259 + - uid: 269 components: - type: Transform pos: 3.5,25.5 parent: 1 - - uid: 260 + - uid: 270 components: - type: Transform pos: 3.5,26.5 parent: 1 - - uid: 261 + - uid: 271 components: - type: Transform pos: 3.5,27.5 parent: 1 - - uid: 262 + - uid: 272 components: - type: Transform pos: 3.5,28.5 parent: 1 - - uid: 263 + - uid: 273 components: - type: Transform pos: 3.5,29.5 parent: 1 - - uid: 264 + - uid: 274 components: - type: Transform pos: 4.5,29.5 parent: 1 - - uid: 265 + - uid: 275 components: - type: Transform pos: 4.5,30.5 parent: 1 - - uid: 266 + - uid: 276 components: - type: Transform pos: 4.5,30.5 parent: 1 - - uid: 267 + - uid: 277 components: - type: Transform pos: 4.5,31.5 parent: 1 - - uid: 268 + - uid: 278 components: - type: Transform pos: 4.5,32.5 parent: 1 - - uid: 269 + - uid: 279 components: - type: Transform pos: -2.5,32.5 parent: 1 - - uid: 270 + - uid: 280 components: - type: Transform pos: -3.5,32.5 parent: 1 - - uid: 271 + - uid: 281 components: - type: Transform pos: 4.5,32.5 parent: 1 - - uid: 272 + - uid: 282 components: - type: Transform pos: 3.5,32.5 parent: 1 - - uid: 273 + - uid: 283 components: - type: Transform pos: 3.5,32.5 parent: 1 - - uid: 274 + - uid: 284 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 275 + - uid: 285 components: - type: Transform pos: -0.5,16.5 parent: 1 - - uid: 276 + - uid: 286 components: - type: Transform pos: 0.5,16.5 parent: 1 - - uid: 277 + - uid: 287 components: - type: Transform pos: -0.5,16.5 parent: 1 - - uid: 278 + - uid: 288 components: - type: Transform pos: -1.5,16.5 parent: 1 - - uid: 279 + - uid: 289 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 280 + - uid: 290 components: - type: Transform pos: 2.5,16.5 parent: 1 - - uid: 281 + - uid: 291 components: - type: Transform pos: -5.5,12.5 parent: 1 - - uid: 282 + - uid: 292 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 283 + - uid: 293 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 284 + - uid: 294 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 285 + - uid: 295 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 286 + - uid: 296 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 287 + - uid: 297 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 288 + - uid: 298 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 289 + - uid: 299 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 290 + - uid: 300 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 291 + - uid: 301 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 613 + - uid: 302 components: - type: Transform pos: 7.5,16.5 parent: 1 - - uid: 679 + - uid: 303 components: - type: Transform pos: 6.5,16.5 parent: 1 - - uid: 740 + - uid: 304 components: - type: Transform pos: -1.5,14.5 parent: 1 - - uid: 742 + - uid: 305 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 802 + - uid: 306 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 944 + - uid: 307 components: - type: Transform pos: 8.5,16.5 parent: 1 - - uid: 945 + - uid: 308 components: - type: Transform pos: -7.5,16.5 parent: 1 - - uid: 953 + - uid: 309 components: - type: Transform pos: -2.5,30.5 parent: 1 - - uid: 956 + - uid: 310 components: - type: Transform pos: -5.5,19.5 parent: 1 - - uid: 957 + - uid: 311 components: - type: Transform pos: -6.5,20.5 parent: 1 - - uid: 958 + - uid: 312 components: - type: Transform pos: 7.5,20.5 parent: 1 - - uid: 959 + - uid: 313 components: - type: Transform pos: 7.5,19.5 parent: 1 - - uid: 960 + - uid: 314 components: - type: Transform pos: 6.5,19.5 parent: 1 - - uid: 961 + - uid: 315 components: - type: Transform pos: -6.5,19.5 parent: 1 - - uid: 962 + - uid: 316 components: - type: Transform pos: -4.5,23.5 parent: 1 - - uid: 963 + - uid: 317 components: - type: Transform pos: -5.5,23.5 parent: 1 - - uid: 964 + - uid: 318 components: - type: Transform pos: 5.5,23.5 parent: 1 - - uid: 965 + - uid: 319 components: - type: Transform pos: 6.5,23.5 parent: 1 - - uid: 966 + - uid: 320 components: - type: Transform pos: -2.5,33.5 parent: 1 - - uid: 967 + - uid: 321 components: - type: Transform pos: -3.5,33.5 parent: 1 - - uid: 968 + - uid: 322 components: - type: Transform pos: -1.5,33.5 parent: 1 - - uid: 969 + - uid: 323 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 970 + - uid: 324 components: - type: Transform pos: 2.5,33.5 parent: 1 - - uid: 971 + - uid: 325 components: - type: Transform pos: 4.5,33.5 parent: 1 - - uid: 972 + - uid: 326 components: - type: Transform pos: 3.5,32.5 parent: 1 - - uid: 973 + - uid: 327 components: - type: Transform pos: 3.5,31.5 parent: 1 - - uid: 974 + - uid: 328 components: - type: Transform pos: 3.5,30.5 parent: 1 - proto: CableHV entities: - - uid: 292 + - uid: 329 components: - type: Transform pos: 4.5,16.5 parent: 1 - - uid: 293 + - uid: 330 components: - type: Transform pos: 4.5,15.5 parent: 1 - - uid: 294 + - uid: 331 components: - type: Transform pos: 4.5,14.5 parent: 1 - - uid: 295 + - uid: 332 components: - type: Transform pos: 4.5,13.5 parent: 1 - - uid: 296 + - uid: 333 components: - type: Transform pos: 4.5,12.5 parent: 1 - - uid: 297 + - uid: 334 components: - type: Transform pos: -3.5,16.5 parent: 1 - - uid: 298 + - uid: 335 components: - type: Transform pos: -3.5,15.5 parent: 1 - - uid: 299 + - uid: 336 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 300 + - uid: 337 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 301 + - uid: 338 components: - type: Transform pos: -3.5,12.5 parent: 1 - - uid: 302 + - uid: 339 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 303 + - uid: 340 components: - type: Transform pos: -3.5,10.5 parent: 1 - - uid: 304 + - uid: 341 components: - type: Transform pos: -3.5,9.5 parent: 1 - - uid: 305 + - uid: 342 components: - type: Transform pos: 4.5,12.5 parent: 1 - - uid: 306 + - uid: 343 components: - type: Transform pos: 4.5,11.5 parent: 1 - - uid: 307 + - uid: 344 components: - type: Transform pos: 4.5,10.5 parent: 1 - - uid: 308 + - uid: 345 components: - type: Transform pos: 4.5,9.5 parent: 1 - - uid: 309 + - uid: 346 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 310 + - uid: 347 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 311 + - uid: 348 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 312 + - uid: 349 components: - type: Transform pos: -4.5,13.5 parent: 1 - - uid: 313 + - uid: 350 components: - type: Transform pos: -4.5,12.5 parent: 1 - - uid: 314 + - uid: 351 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 315 + - uid: 352 components: - type: Transform pos: 5.5,11.5 parent: 1 - proto: CableMV entities: - - uid: 316 + - uid: 353 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 317 + - uid: 354 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 318 + - uid: 355 components: - type: Transform pos: 4.5,9.5 parent: 1 - - uid: 319 + - uid: 356 components: - type: Transform pos: 4.5,7.5 parent: 1 - - uid: 320 + - uid: 357 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 321 + - uid: 358 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 322 + - uid: 359 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 323 + - uid: 360 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 324 + - uid: 361 components: - type: Transform pos: 4.5,10.5 parent: 1 - - uid: 325 + - uid: 362 components: - type: Transform pos: 4.5,11.5 parent: 1 - - uid: 326 + - uid: 363 components: - type: Transform pos: 4.5,12.5 parent: 1 - - uid: 327 + - uid: 364 components: - type: Transform pos: 4.5,13.5 parent: 1 - - uid: 328 + - uid: 365 components: - type: Transform pos: 4.5,14.5 parent: 1 - - uid: 329 + - uid: 366 components: - type: Transform pos: 4.5,15.5 parent: 1 - - uid: 330 + - uid: 367 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 331 + - uid: 368 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 332 + - uid: 369 components: - type: Transform pos: 2.5,16.5 parent: 1 - - uid: 333 + - uid: 370 components: - type: Transform pos: 2.5,17.5 parent: 1 - - uid: 334 + - uid: 371 components: - type: Transform pos: 2.5,18.5 parent: 1 - - uid: 335 + - uid: 372 components: - type: Transform pos: 2.5,19.5 parent: 1 - - uid: 336 + - uid: 373 components: - type: Transform pos: 2.5,20.5 parent: 1 - - uid: 337 + - uid: 374 components: - type: Transform pos: 2.5,21.5 parent: 1 - - uid: 338 + - uid: 375 components: - type: Transform pos: -3.5,9.5 parent: 1 - - uid: 339 + - uid: 376 components: - type: Transform pos: -3.5,10.5 parent: 1 - - uid: 340 + - uid: 377 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 341 + - uid: 378 components: - type: Transform pos: -3.5,12.5 parent: 1 - - uid: 342 + - uid: 379 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 343 + - uid: 380 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 344 + - uid: 381 components: - type: Transform pos: -3.5,15.5 parent: 1 - - uid: 345 + - uid: 382 components: - type: Transform pos: -2.5,15.5 parent: 1 - - uid: 346 + - uid: 383 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 347 + - uid: 384 components: - type: Transform pos: -1.5,16.5 parent: 1 - - uid: 348 + - uid: 385 components: - type: Transform pos: -1.5,17.5 parent: 1 - - uid: 349 + - uid: 386 components: - type: Transform pos: -1.5,18.5 parent: 1 - - uid: 350 + - uid: 387 components: - type: Transform pos: -1.5,19.5 parent: 1 - - uid: 351 + - uid: 388 components: - type: Transform pos: -1.5,20.5 parent: 1 - - uid: 352 + - uid: 389 components: - type: Transform pos: -1.5,21.5 parent: 1 - - uid: 353 + - uid: 390 components: - type: Transform pos: -3.5,8.5 parent: 1 - - uid: 354 + - uid: 391 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 355 + - uid: 392 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 356 + - uid: 393 components: - type: Transform pos: -3.5,5.5 parent: 1 - - uid: 357 + - uid: 394 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 358 + - uid: 395 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 359 + - uid: 396 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 360 + - uid: 397 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 361 + - uid: 398 components: - type: Transform pos: -3.5,12.5 parent: 1 - - uid: 362 + - uid: 399 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 363 + - uid: 400 components: - type: Transform pos: 4.5,14.5 parent: 1 - - uid: 364 + - uid: 401 components: - type: Transform pos: 4.5,13.5 parent: 1 - - uid: 365 + - uid: 402 components: - type: Transform pos: 4.5,12.5 parent: 1 - - uid: 366 + - uid: 403 components: - type: Transform pos: 4.5,14.5 parent: 1 - - uid: 367 + - uid: 404 components: - type: Transform pos: 4.5,11.5 parent: 1 - - uid: 368 + - uid: 405 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 369 + - uid: 406 components: - type: Transform pos: -4.5,13.5 parent: 1 - - uid: 370 + - uid: 407 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 371 + - uid: 408 components: - type: Transform pos: -4.5,12.5 parent: 1 - - uid: 372 + - uid: 409 components: - type: Transform pos: 5.5,9.5 parent: 1 - - uid: 373 + - uid: 410 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 374 + - uid: 411 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 375 + - uid: 412 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 376 + - uid: 413 components: - type: Transform pos: -3.5,9.5 parent: 1 - - uid: 377 + - uid: 414 components: - type: Transform pos: -3.5,9.5 parent: 1 - - uid: 378 + - uid: 415 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 745 + - uid: 416 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 768 + - uid: 417 components: - type: Transform pos: -2.5,14.5 parent: 1 - - uid: 791 + - uid: 418 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 921 + - uid: 419 components: - type: Transform pos: -1.5,14.5 parent: 1 - proto: CableTerminal entities: - - uid: 379 + - uid: 420 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 380 + - uid: 421 components: - type: Transform pos: 4.5,13.5 parent: 1 - proto: CartridgeShellArmorPiercing entities: - - uid: 561 + - uid: 422 components: - type: Transform pos: -0.668946,21.262907 parent: 1 - - uid: 741 + - uid: 423 components: - type: Transform pos: -0.622071,21.42697 parent: 1 - - uid: 920 + - uid: 424 components: - type: Transform pos: -0.6455085,21.544157 parent: 1 - - uid: 924 + - uid: 425 components: - type: Transform pos: -0.668946,21.684782 parent: 1 - - uid: 925 + - uid: 426 components: - type: Transform pos: -0.668946,21.755095 parent: 1 - - uid: 926 + - uid: 427 components: - type: Transform pos: -0.668946,21.872282 parent: 1 - - uid: 931 + - uid: 428 components: - type: Transform pos: -0.27050856,21.23947 parent: 1 - - uid: 933 + - uid: 429 components: - type: Transform pos: -0.24707106,21.403532 parent: 1 - - uid: 934 + - uid: 430 components: - type: Transform pos: -0.24707106,21.497282 parent: 1 - - uid: 935 + - uid: 431 components: - type: Transform pos: -0.22363356,21.61447 parent: 1 - - uid: 936 + - uid: 432 components: - type: Transform pos: -0.22363356,21.661345 parent: 1 - - uid: 937 + - uid: 433 components: - type: Transform pos: -0.20019606,21.825407 parent: 1 - proto: CartridgeShellHighExplosive entities: - - uid: 602 + - uid: 434 components: - type: Transform pos: 1.440429,21.473845 parent: 1 - - uid: 693 + - uid: 435 components: - type: Transform pos: 1.3701165,21.23947 parent: 1 - proto: Catwalk entities: - - uid: 20 + - uid: 436 components: - type: Transform pos: -3.5,17.5 parent: 1 - - uid: 381 + - uid: 437 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 1 - - uid: 382 + - uid: 438 components: - type: Transform pos: -2.5,25.5 parent: 1 - - uid: 383 + - uid: 439 components: - type: Transform pos: 1.5,24.5 parent: 1 - - uid: 384 + - uid: 440 components: - type: Transform pos: 3.5,20.5 parent: 1 - - uid: 386 + - uid: 441 components: - type: Transform pos: 0.5,24.5 parent: 1 - - uid: 387 + - uid: 442 components: - type: Transform pos: 0.5,25.5 parent: 1 - - uid: 389 + - uid: 443 components: - type: Transform pos: -0.5,24.5 parent: 1 - - uid: 392 + - uid: 444 components: - type: Transform pos: 3.5,29.5 parent: 1 - - uid: 393 + - uid: 445 components: - type: Transform pos: 4.5,29.5 parent: 1 - - uid: 394 + - uid: 446 components: - type: Transform pos: 4.5,29.5 parent: 1 - - uid: 395 + - uid: 447 components: - type: Transform pos: 4.5,30.5 parent: 1 - - uid: 396 + - uid: 448 components: - type: Transform pos: 3.5,30.5 parent: 1 - - uid: 397 + - uid: 449 components: - type: Transform pos: -2.5,29.5 parent: 1 - - uid: 398 + - uid: 450 components: - type: Transform pos: -3.5,29.5 parent: 1 - - uid: 399 + - uid: 451 components: - type: Transform pos: -3.5,30.5 parent: 1 - - uid: 400 + - uid: 452 components: - type: Transform pos: -2.5,30.5 parent: 1 - - uid: 401 + - uid: 453 components: - type: Transform pos: -0.5,25.5 parent: 1 - - uid: 402 + - uid: 454 components: - type: Transform pos: 1.5,25.5 parent: 1 - - uid: 440 + - uid: 455 components: - type: Transform pos: -3.5,15.5 parent: 1 - - uid: 531 + - uid: 456 components: - type: Transform pos: 5.5,17.5 parent: 1 - - uid: 547 + - uid: 457 components: - type: Transform pos: 4.5,15.5 parent: 1 - - uid: 548 + - uid: 458 components: - type: Transform pos: 5.5,15.5 parent: 1 - - uid: 549 + - uid: 459 components: - type: Transform pos: 5.5,16.5 parent: 1 - - uid: 558 + - uid: 460 components: - type: Transform pos: 4.5,17.5 parent: 1 - - uid: 570 + - uid: 461 components: - type: Transform pos: 1.5,26.5 parent: 1 - - uid: 599 + - uid: 462 components: - type: Transform pos: -4.5,15.5 parent: 1 - - uid: 700 + - uid: 463 components: - type: Transform pos: 0.5,26.5 parent: 1 - - uid: 702 + - uid: 464 components: - type: Transform pos: -0.5,26.5 parent: 1 - - uid: 714 + - uid: 465 components: - type: Transform pos: -5.5,16.5 parent: 1 - - uid: 797 + - uid: 466 components: - type: Transform pos: -4.5,17.5 parent: 1 - - uid: 923 + - uid: 467 components: - type: Transform pos: -4.5,16.5 parent: 1 - - uid: 943 + - uid: 468 components: - type: Transform pos: 6.5,16.5 parent: 1 - proto: ChairFolding entities: - - uid: 403 + - uid: 469 components: - type: Transform rot: 1.5707963267948966 rad @@ -6229,7 +6433,7 @@ entities: parent: 1 - proto: ChairOfficeDark entities: - - uid: 404 + - uid: 470 components: - type: Transform rot: -1.5707963267948966 rad @@ -6237,76 +6441,76 @@ entities: parent: 1 - proto: CheapRollerBed entities: - - uid: 407 + - uid: 471 components: - type: Transform pos: -2.4544098,1.424509 parent: 1 - proto: ChemistryHotplate entities: - - uid: 408 + - uid: 472 components: - type: Transform pos: -7.5,3.5 parent: 1 - type: ItemPlacer placedEntities: - - 80 + - 85 - type: PlaceableSurface isPlaceable: False - proto: ChemMaster entities: - - uid: 409 + - uid: 473 components: - type: Transform pos: -7.5,4.5 parent: 1 - proto: ClosetEmergencyFilledRandom entities: - - uid: 411 + - uid: 474 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 412 + - uid: 475 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 413 + - uid: 476 components: - type: Transform pos: -4.5,12.5 parent: 1 - proto: ClosetFireFilled entities: - - uid: 414 + - uid: 477 components: - type: Transform pos: -0.5,10.5 parent: 1 - - uid: 415 + - uid: 478 components: - type: Transform pos: 5.5,12.5 parent: 1 - proto: ClosetToolFilled entities: - - uid: 416 + - uid: 479 components: - type: Transform pos: -4.5,20.5 parent: 1 - proto: ClosetWallFireFilledRandom entities: - - uid: 417 + - uid: 480 components: - type: Transform pos: 3.5,8.5 parent: 1 - proto: ClosetWallOrange entities: - - uid: 418 + - uid: 481 components: - type: Transform rot: 1.5707963267948966 rad @@ -6314,15 +6518,6 @@ entities: parent: 1 - proto: ClothingHeadHelmetImperialEVA entities: - - uid: 38 - components: - - type: Transform - parent: 36 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - uid: 45 components: - type: Transform @@ -6341,17 +6536,17 @@ entities: linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: ClothingOuterCoatImperialSoftsuit - entities: - - uid: 39 + - uid: 59 components: - type: Transform - parent: 36 + parent: 57 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage +- proto: ClothingOuterCoatImperialSoftsuit + entities: - uid: 46 components: - type: Transform @@ -6370,17 +6565,17 @@ entities: linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: ClothingShoesBootsMagCombat - entities: - - uid: 40 + - uid: 60 components: - type: Transform - parent: 36 + parent: 57 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage +- proto: ClothingShoesBootsMagCombat + entities: - uid: 47 components: - type: Transform @@ -6399,23 +6594,32 @@ entities: linearDamping: 0 canCollide: False - type: InsideEntityStorage + - uid: 61 + components: + - type: Transform + parent: 57 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage - proto: ComputerTabletopAdvancedRadar entities: - - uid: 555 + - uid: 482 components: - type: Transform pos: 0.5,14.5 parent: 1 - proto: ComputerTabletopCriminalRecords entities: - - uid: 421 + - uid: 483 components: - type: Transform pos: 6.5,6.5 parent: 1 - proto: ComputerTabletopShuttle entities: - - uid: 744 + - uid: 484 components: - type: Transform pos: 1.5,14.5 @@ -6436,24 +6640,12 @@ entities: ent: null - type: DeviceLinkSource linkedPorts: - 560: - - Group1: SpaceArtilleryFire - 562: - - Group1: SpaceArtilleryFire - 912: - - Group2: Toggle - 901: - - Group2: Toggle - - type: NamedModules - buttonNames: - - Fire Twin 120mm - - Fire Plasmacasters - - Module C - - Module D - - Module E + 4: + - - Group1 + - SpaceArtilleryFire - proto: ComputerTabletopTargeting entities: - - uid: 33 + - uid: 485 components: - type: Transform pos: -0.5,14.5 @@ -6461,66 +6653,66 @@ entities: - type: TargetingConsole cannonGroups: all: - - 74 - - 75 + - 83 + - 84 70mm "Jeong" swarmrocket platform: - - 74 - - 75 + - 83 + - 84 - proto: ConveyorBelt entities: - - uid: 423 + - uid: 486 components: - type: Transform pos: 0.5,-1.5 parent: 1 - type: DeviceLinkSink links: - - 688 - - uid: 424 + - 770 + - uid: 487 components: - type: Transform pos: 0.5,-0.5 parent: 1 - type: DeviceLinkSink links: - - 688 - - uid: 425 + - 770 + - uid: 488 components: - type: Transform pos: 0.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 688 + - 770 - proto: CrateAutogunAmmo entities: - - uid: 608 + - uid: 489 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 609 + - uid: 490 components: - type: Transform pos: 1.5,7.5 parent: 1 -- proto: CrateSwarmerAmmo +- proto: CrateJeongAmmo entities: - - uid: 579 + - uid: 990 components: - type: Transform pos: 0.5,5.5 parent: 1 - proto: DefaultStationBeaconBridge entities: - - uid: 769 + - uid: 491 components: - type: Transform pos: 0.5,13.5 parent: 1 - proto: DefibrillatorCabinetFilled entities: - - uid: 426 + - uid: 492 components: - type: Transform rot: 3.141592653589793 rad @@ -6528,14 +6720,14 @@ entities: parent: 1 - proto: Dropper entities: - - uid: 427 + - uid: 493 components: - type: Transform pos: -7.491656,5.143259 parent: 1 - proto: EmergencyLight entities: - - uid: 428 + - uid: 494 components: - type: Transform rot: 3.141592653589793 rad @@ -6543,13 +6735,13 @@ entities: parent: 1 - proto: EmergencyMedipen entities: - - uid: 429 + - uid: 495 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.413235,3.612009 parent: 1 - - uid: 430 + - uid: 496 components: - type: Transform rot: -1.5707963267948966 rad @@ -6557,78 +6749,78 @@ entities: parent: 1 - proto: FaxMachineShip entities: - - uid: 431 + - uid: 497 components: - type: Transform pos: 1.5,12.5 parent: 1 - proto: Firelock entities: - - uid: 432 + - uid: 498 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 433 + - uid: 499 components: - type: Transform pos: 0.5,11.5 parent: 1 - - uid: 434 + - uid: 500 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 435 + - uid: 501 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 436 + - uid: 502 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 437 + - uid: 503 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 438 + - uid: 504 components: - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 441 + - uid: 505 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 442 + - uid: 506 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 443 + - uid: 507 components: - type: Transform pos: 2.5,5.5 parent: 1 - proto: Flash entities: - - uid: 444 + - uid: 508 components: - type: Transform pos: 5.3090024,3.6101813 parent: 1 - - uid: 445 + - uid: 509 components: - type: Transform pos: 5.6996274,3.5945563 parent: 1 - proto: FloorDrain entities: - - uid: 446 + - uid: 510 components: - type: Transform pos: -4.5,2.5 @@ -6637,7 +6829,7 @@ entities: fixtures: {} - proto: GasPassiveVent entities: - - uid: 701 + - uid: 511 components: - type: Transform rot: -1.5707963267948966 rad @@ -6645,53 +6837,53 @@ entities: parent: 1 - proto: GasPipeBend entities: - - uid: 448 + - uid: 512 components: - type: Transform pos: -0.5,22.5 parent: 1 - - uid: 449 + - uid: 513 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,22.5 parent: 1 - - uid: 450 + - uid: 514 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,22.5 parent: 1 - - uid: 451 + - uid: 515 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,19.5 parent: 1 - - uid: 452 + - uid: 516 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,19.5 parent: 1 - - uid: 453 + - uid: 517 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 454 + - uid: 518 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 1 - - uid: 455 + - uid: 519 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,27.5 parent: 1 - - uid: 456 + - uid: 520 components: - type: Transform rot: 3.141592653589793 rad @@ -6699,291 +6891,291 @@ entities: parent: 1 - proto: GasPipeStraight entities: - - uid: 457 + - uid: 521 components: - type: Transform pos: 4.5,25.5 parent: 1 - - uid: 458 + - uid: 522 components: - type: Transform pos: 4.5,24.5 parent: 1 - - uid: 459 + - uid: 523 components: - type: Transform pos: 4.5,23.5 parent: 1 - - uid: 460 + - uid: 524 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,22.5 parent: 1 - - uid: 461 + - uid: 525 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,22.5 parent: 1 - - uid: 462 + - uid: 526 components: - type: Transform pos: 0.5,20.5 parent: 1 - - uid: 463 + - uid: 527 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 464 + - uid: 528 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 465 + - uid: 529 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,19.5 parent: 1 - - uid: 466 + - uid: 530 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,19.5 parent: 1 - - uid: 467 + - uid: 531 components: - type: Transform pos: 3.5,17.5 parent: 1 - - uid: 468 + - uid: 532 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 469 + - uid: 533 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 470 + - uid: 534 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 471 + - uid: 535 components: - type: Transform pos: -2.5,18.5 parent: 1 - - uid: 472 + - uid: 536 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,13.5 parent: 1 - - uid: 473 + - uid: 537 components: - type: Transform pos: -2.5,17.5 parent: 1 - - uid: 474 + - uid: 538 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 475 + - uid: 539 components: - type: Transform pos: -2.5,15.5 parent: 1 - - uid: 476 + - uid: 540 components: - type: Transform pos: -2.5,14.5 parent: 1 - - uid: 477 + - uid: 541 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,13.5 parent: 1 - - uid: 478 + - uid: 542 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 479 + - uid: 543 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 480 + - uid: 544 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 481 + - uid: 545 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,18.5 parent: 1 - - uid: 482 + - uid: 546 components: - type: Transform pos: -0.5,11.5 parent: 1 - - uid: 483 + - uid: 547 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 484 + - uid: 548 components: - type: Transform pos: 0.5,11.5 parent: 1 - - uid: 485 + - uid: 549 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 486 + - uid: 550 components: - type: Transform pos: -0.5,21.5 parent: 1 - - uid: 487 + - uid: 551 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,27.5 parent: 1 - - uid: 488 + - uid: 552 components: - type: Transform pos: -2.5,25.5 parent: 1 - - uid: 489 + - uid: 553 components: - type: Transform pos: -2.5,24.5 parent: 1 - - uid: 490 + - uid: 554 components: - type: Transform pos: -2.5,23.5 parent: 1 - - uid: 491 + - uid: 555 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,22.5 parent: 1 - - uid: 492 + - uid: 556 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 493 + - uid: 557 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 494 + - uid: 558 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 495 + - uid: 559 components: - type: Transform pos: -0.5,10.5 parent: 1 - - uid: 496 + - uid: 560 components: - type: Transform pos: -0.5,9.5 parent: 1 - - uid: 497 + - uid: 561 components: - type: Transform pos: -0.5,8.5 parent: 1 - - uid: 498 + - uid: 562 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 499 + - uid: 563 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 500 + - uid: 564 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 501 + - uid: 565 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 502 + - uid: 566 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 503 + - uid: 567 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 504 + - uid: 568 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 505 + - uid: 569 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 506 + - uid: 570 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 507 + - uid: 571 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 508 + - uid: 572 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 509 + - uid: 573 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 510 + - uid: 574 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 511 + - uid: 575 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 942 + - uid: 576 components: - type: Transform rot: 1.5707963267948966 rad @@ -6991,23 +7183,23 @@ entities: parent: 1 - proto: GasPipeTJunction entities: - - uid: 512 + - uid: 577 components: - type: Transform pos: -2.5,19.5 parent: 1 - - uid: 513 + - uid: 578 components: - type: Transform pos: 3.5,19.5 parent: 1 - - uid: 514 + - uid: 579 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,13.5 parent: 1 - - uid: 515 + - uid: 580 components: - type: Transform rot: 3.141592653589793 rad @@ -7015,19 +7207,19 @@ entities: parent: 1 - proto: GasPort entities: - - uid: 516 + - uid: 581 components: - type: Transform pos: 4.5,27.5 parent: 1 - proto: GasPressurePump entities: - - uid: 517 + - uid: 582 components: - type: Transform pos: 4.5,26.5 parent: 1 - - uid: 518 + - uid: 583 components: - type: Transform rot: 3.141592653589793 rad @@ -7035,19 +7227,19 @@ entities: parent: 1 - proto: GasVentPump entities: - - uid: 519 + - uid: 584 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,10.5 parent: 1 - - uid: 520 + - uid: 585 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,19.5 parent: 1 - - uid: 521 + - uid: 586 components: - type: Transform rot: -1.5707963267948966 rad @@ -7056,19 +7248,19 @@ entities: - type: DeviceNetwork configurators: - invalid - - uid: 522 + - uid: 587 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 1 - - uid: 523 + - uid: 588 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,5.5 parent: 1 - - uid: 524 + - uid: 589 components: - type: Transform rot: 3.141592653589793 rad @@ -7076,37 +7268,37 @@ entities: parent: 1 - proto: GasVentScrubber entities: - - uid: 525 + - uid: 590 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,19.5 parent: 1 - - uid: 526 + - uid: 591 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,10.5 parent: 1 - - uid: 527 + - uid: 592 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,13.5 parent: 1 - - uid: 528 + - uid: 593 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 - - uid: 529 + - uid: 594 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,5.5 parent: 1 - - uid: 530 + - uid: 595 components: - type: Transform rot: 3.141592653589793 rad @@ -7114,94 +7306,94 @@ entities: parent: 1 - proto: GravityGeneratorMini entities: - - uid: 4 + - uid: 596 components: - type: Transform pos: 3.5,7.5 parent: 1 - proto: Grille entities: - - uid: 73 + - uid: 597 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 385 + - uid: 598 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 388 + - uid: 599 components: - type: Transform pos: -2.5,18.5 parent: 1 - - uid: 406 + - uid: 600 components: - type: Transform pos: 3.5,18.5 parent: 1 - - uid: 422 + - uid: 601 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 439 + - uid: 602 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 532 + - uid: 603 components: - type: Transform pos: -3.5,10.5 parent: 1 - - uid: 533 + - uid: 604 components: - type: Transform pos: 4.5,10.5 parent: 1 - - uid: 534 + - uid: 605 components: - type: Transform pos: -8.5,4.5 parent: 1 - - uid: 535 + - uid: 606 components: - type: Transform pos: -8.5,3.5 parent: 1 - - uid: 536 + - uid: 607 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 537 + - uid: 608 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,29.5 parent: 1 - - uid: 538 + - uid: 609 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,29.5 parent: 1 - - uid: 539 + - uid: 610 components: - type: Transform pos: -8.5,5.5 parent: 1 - proto: GrilleBroken entities: - - uid: 540 + - uid: 611 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,31.5 parent: 1 - - uid: 541 + - uid: 612 components: - type: Transform rot: 3.141592653589793 rad @@ -7209,47 +7401,47 @@ entities: parent: 1 - proto: Gyroscope entities: - - uid: 542 + - uid: 613 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 543 + - uid: 614 components: - type: Transform pos: 3.5,12.5 parent: 1 - proto: HandheldCrewMonitor entities: - - uid: 544 + - uid: 615 components: - type: Transform pos: -3.599592,7.616263 parent: 1 - proto: HandheldGPSBasic entities: - - uid: 41 + - uid: 48 components: - type: Transform - parent: 36 + parent: 43 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 48 + - uid: 55 components: - type: Transform - parent: 43 + parent: 50 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 55 + - uid: 62 components: - type: Transform - parent: 50 + parent: 57 - type: Physics angularDamping: 0 linearDamping: 0 @@ -7257,42 +7449,42 @@ entities: - type: InsideEntityStorage - proto: HandheldHealthAnalyzer entities: - - uid: 545 + - uid: 616 components: - type: Transform pos: -3.112308,7.621122 parent: 1 - proto: HospitalCurtainsOpen entities: - - uid: 546 + - uid: 617 components: - type: Transform pos: -2.5,1.5 parent: 1 - proto: JetpackMiniFilled entities: - - uid: 42 + - uid: 49 components: - type: Transform - parent: 36 + parent: 43 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 49 + - uid: 56 components: - type: Transform - parent: 43 + parent: 50 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 56 + - uid: 63 components: - type: Transform - parent: 50 + parent: 57 - type: Physics angularDamping: 0 linearDamping: 0 @@ -7300,21 +7492,21 @@ entities: - type: InsideEntityStorage - proto: KitchenReagentGrinder entities: - - uid: 550 + - uid: 618 components: - type: Transform pos: -7.5,5.5 parent: 1 - proto: LargeBeaker entities: - - uid: 551 + - uid: 619 components: - type: Transform pos: -7.510775,4.049509 parent: 1 - proto: LightStripInner entities: - - uid: 984 + - uid: 620 components: - type: Transform rot: 1.5707963267948966 rad @@ -7323,7 +7515,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 985 + - uid: 621 components: - type: Transform rot: 3.141592653589793 rad @@ -7332,7 +7524,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 986 + - uid: 622 components: - type: Transform rot: -1.5707963267948966 rad @@ -7341,7 +7533,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 987 + - uid: 623 components: - type: Transform pos: -0.5,18.5 @@ -7349,7 +7541,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 992 + - uid: 624 components: - type: Transform rot: 1.5707963267948966 rad @@ -7360,7 +7552,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 988 + - uid: 625 components: - type: Transform rot: -1.5707963267948966 rad @@ -7369,7 +7561,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 989 + - uid: 626 components: - type: Transform pos: 0.5,16.5 @@ -7377,7 +7569,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 990 + - uid: 627 components: - type: Transform rot: 1.5707963267948966 rad @@ -7386,7 +7578,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 991 + - uid: 628 components: - type: Transform rot: 3.141592653589793 rad @@ -7397,26 +7589,26 @@ entities: - type: TurretIFF - proto: MachineFrame entities: - - uid: 552 + - uid: 629 components: - type: Transform pos: 5.5,20.5 parent: 1 - proto: MaintenanceFluffSpawner entities: - - uid: 553 + - uid: 630 components: - type: Transform pos: 3.5,31.5 parent: 1 - - uid: 554 + - uid: 631 components: - type: Transform pos: 3.5,10.5 parent: 1 - proto: MaintenanceToolSpawner entities: - - uid: 556 + - uid: 632 components: - type: Transform rot: 1.5707963267948966 rad @@ -7424,33 +7616,33 @@ entities: parent: 1 - proto: MaintenanceWeaponSpawner entities: - - uid: 557 + - uid: 633 components: - type: Transform pos: -2.5,31.5 parent: 1 - proto: MedkitAdvancedFilled entities: - - uid: 559 + - uid: 634 components: - type: Transform pos: -2.402193,7.596414 parent: 1 - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 410 + - uid: 635 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,14.5 parent: 1 - - uid: 419 + - uid: 636 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,14.5 parent: 1 - - uid: 420 + - uid: 637 components: - type: Transform rot: 3.141592653589793 rad @@ -7458,7 +7650,7 @@ entities: parent: 1 - proto: PlasticFlapsAirtightClear entities: - - uid: 566 + - uid: 638 components: - type: Transform rot: 1.5707963267948966 rad @@ -7466,145 +7658,145 @@ entities: parent: 1 - proto: PottedPlantRandomPlastic entities: - - uid: 567 + - uid: 639 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 568 + - uid: 640 components: - type: Transform pos: -4.5,1.5 parent: 1 - proto: PoweredlightLED entities: - - uid: 571 + - uid: 641 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 572 + - uid: 642 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,4.5 parent: 1 - - uid: 573 + - uid: 643 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 - - uid: 574 + - uid: 644 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 1 - - uid: 578 + - uid: 645 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,12.5 parent: 1 - - uid: 581 + - uid: 646 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,12.5 parent: 1 - - uid: 582 + - uid: 647 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,9.5 parent: 1 - - uid: 583 + - uid: 648 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,9.5 parent: 1 - - uid: 584 + - uid: 649 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 585 + - uid: 650 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 586 + - uid: 651 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,4.5 parent: 1 - - uid: 587 + - uid: 652 components: - type: Transform pos: 4.5,7.5 parent: 1 - - uid: 588 + - uid: 653 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,1.5 parent: 1 - - uid: 589 + - uid: 654 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 590 + - uid: 655 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,1.5 parent: 1 - - uid: 591 + - uid: 656 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 592 + - uid: 657 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,2.5 parent: 1 - - uid: 593 + - uid: 658 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,3.5 parent: 1 - - uid: 594 + - uid: 659 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,3.5 parent: 1 - - uid: 595 + - uid: 660 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,0.5 parent: 1 - - uid: 596 + - uid: 661 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,0.5 parent: 1 - - uid: 597 + - uid: 662 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,25.5 parent: 1 - - uid: 598 + - uid: 663 components: - type: Transform rot: -1.5707963267948966 rad @@ -7612,31 +7804,31 @@ entities: parent: 1 - proto: PoweredSmallLight entities: - - uid: 600 + - uid: 664 components: - type: Transform pos: -2.5,31.5 parent: 1 - - uid: 601 + - uid: 665 components: - type: Transform pos: 3.5,31.5 parent: 1 - proto: Rack entities: - - uid: 577 + - uid: 666 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,21.5 parent: 1 - - uid: 603 + - uid: 667 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,1.5 parent: 1 - - uid: 723 + - uid: 668 components: - type: Transform rot: 3.141592653589793 rad @@ -7644,31 +7836,31 @@ entities: parent: 1 - proto: Railing entities: - - uid: 604 + - uid: 669 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,9.5 parent: 1 - - uid: 605 + - uid: 670 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,10.5 parent: 1 - - uid: 606 + - uid: 671 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,10.5 parent: 1 - - uid: 607 + - uid: 672 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,9.5 parent: 1 - - uid: 617 + - uid: 673 components: - type: Transform rot: 3.141592653589793 rad @@ -7676,37 +7868,37 @@ entities: parent: 1 - proto: RailingCorner entities: - - uid: 947 + - uid: 674 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,23.5 parent: 1 - - uid: 948 + - uid: 675 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,33.5 parent: 1 - - uid: 949 + - uid: 676 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,33.5 parent: 1 - - uid: 950 + - uid: 677 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,23.5 parent: 1 - - uid: 975 + - uid: 678 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,33.5 parent: 1 - - uid: 976 + - uid: 679 components: - type: Transform rot: 3.141592653589793 rad @@ -7714,25 +7906,25 @@ entities: parent: 1 - proto: RailingRound entities: - - uid: 946 + - uid: 680 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,16.5 parent: 1 - - uid: 951 + - uid: 681 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,16.5 parent: 1 - - uid: 977 + - uid: 682 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,30.5 parent: 1 - - uid: 978 + - uid: 683 components: - type: Transform rot: -1.5707963267948966 rad @@ -7740,102 +7932,114 @@ entities: parent: 1 - proto: ReinforcedPlasmaWindow entities: - - uid: 79 + - uid: 684 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 390 + - uid: 685 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 618 + - uid: 686 components: - type: Transform pos: -8.5,5.5 parent: 1 - - uid: 619 + - uid: 687 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 620 + - uid: 688 components: - type: Transform pos: -8.5,4.5 parent: 1 - - uid: 621 + - uid: 689 components: - type: Transform pos: -8.5,3.5 parent: 1 - - uid: 663 + - uid: 690 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 689 + - uid: 691 components: - type: Transform pos: -2.5,18.5 parent: 1 - - uid: 691 + - uid: 692 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 694 + - uid: 693 components: - type: Transform pos: 3.5,18.5 parent: 1 - proto: ShuttersNormal entities: - - uid: 623 + - uid: 694 components: - type: Transform pos: -0.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 633 - - 634 - - uid: 624 + - 706 + - 707 + - uid: 695 components: - type: Transform pos: 0.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 633 - - 634 - - uid: 625 + - 706 + - 707 + - uid: 696 components: - type: Transform pos: 1.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 633 - - 634 + - 706 + - 707 - proto: ShuttleGunPlasmaRepeater entities: - - uid: 447 + - uid: 697 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,33.5 parent: 1 - - uid: 699 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 18568.613 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 698 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,33.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 18568.613 + - type: ApcPowerReceiverBattery + enabled: True - proto: SignalButton entities: - - uid: 626 + - uid: 699 components: - type: Transform rot: -1.5707963267948966 rad @@ -7843,9 +8047,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 91: - - Pressed: Toggle - - uid: 627 + 96: + - - Pressed + - Toggle + - uid: 700 components: - type: Transform rot: 1.5707963267948966 rad @@ -7853,9 +8058,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 85: - - Pressed: Toggle - - uid: 628 + 90: + - - Pressed + - Toggle + - uid: 701 components: - type: Transform rot: -1.5707963267948966 rad @@ -7863,18 +8069,20 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 84: - - Pressed: Toggle - - uid: 629 + 89: + - - Pressed + - Toggle + - uid: 702 components: - type: Transform pos: 1.5,23.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 86: - - Pressed: Toggle - - uid: 630 + 91: + - - Pressed + - Toggle + - uid: 703 components: - type: Transform rot: -1.5707963267948966 rad @@ -7882,13 +8090,16 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 94: - - Pressed: Toggle - 93: - - Pressed: Toggle - 95: - - Pressed: Toggle - - uid: 631 + 101: + - - Pressed + - Toggle + 100: + - - Pressed + - Toggle + 102: + - - Pressed + - Toggle + - uid: 704 components: - type: Transform rot: -1.5707963267948966 rad @@ -7896,18 +8107,20 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 92: - - Pressed: Toggle - - uid: 632 + 99: + - - Pressed + - Toggle + - uid: 705 components: - type: Transform pos: -6.5,7.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 89: - - Pressed: Toggle - - uid: 633 + 94: + - - Pressed + - Toggle + - uid: 706 components: - type: Transform rot: 1.5707963267948966 rad @@ -7915,13 +8128,16 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 623: - - Pressed: Toggle - 624: - - Pressed: Toggle - 625: - - Pressed: Toggle - - uid: 634 + 694: + - - Pressed + - Toggle + 695: + - - Pressed + - Toggle + 696: + - - Pressed + - Toggle + - uid: 707 components: - type: Transform rot: -1.5707963267948966 rad @@ -7929,22 +8145,26 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 625: - - Pressed: Toggle - 624: - - Pressed: Toggle - 623: - - Pressed: Toggle - - uid: 635 + 696: + - - Pressed + - Toggle + 695: + - - Pressed + - Toggle + 694: + - - Pressed + - Toggle + - uid: 708 components: - type: Transform pos: 7.5,7.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 87: - - Pressed: Toggle - - uid: 636 + 92: + - - Pressed + - Toggle + - uid: 709 components: - type: Transform rot: 1.5707963267948966 rad @@ -7952,11 +8172,12 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 90: - - Pressed: Toggle + 95: + - - Pressed + - Toggle - proto: SignalButtonDirectional entities: - - uid: 610 + - uid: 710 components: - type: Transform rot: 1.5707963267948966 rad @@ -7964,9 +8185,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 813: - - Pressed: Toggle - - uid: 612 + 97: + - - Pressed + - Toggle + - uid: 711 components: - type: Transform rot: -1.5707963267948966 rad @@ -7974,37 +8196,38 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 898: - - Pressed: Toggle + 98: + - - Pressed + - Toggle - proto: SignBridge entities: - - uid: 637 + - uid: 712 components: - type: Transform pos: -0.5,11.5 parent: 1 - - uid: 638 + - uid: 713 components: - type: Transform pos: 1.5,11.5 parent: 1 - proto: SignMedical entities: - - uid: 639 + - uid: 714 components: - type: Transform pos: -1.5,6.5 parent: 1 - proto: SignPrison entities: - - uid: 640 + - uid: 715 components: - type: Transform pos: 2.5,6.5 parent: 1 - proto: SinkStemlessWater entities: - - uid: 641 + - uid: 716 components: - type: Transform rot: 1.5707963267948966 rad @@ -8012,7 +8235,7 @@ entities: parent: 1 - proto: SinkWide entities: - - uid: 642 + - uid: 717 components: - type: Transform rot: 1.5707963267948966 rad @@ -8020,42 +8243,42 @@ entities: parent: 1 - proto: SMESBasic entities: - - uid: 643 + - uid: 718 components: - type: Transform pos: -3.5,12.5 parent: 1 - - uid: 644 + - uid: 719 components: - type: Transform pos: 4.5,12.5 parent: 1 - proto: SpawnPointLatejoin entities: - - uid: 983 + - uid: 720 components: - type: Transform pos: 0.5,6.5 parent: 1 - proto: StairDark entities: - - uid: 647 + - uid: 721 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 648 + - uid: 722 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 649 + - uid: 723 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,13.5 parent: 1 - - uid: 650 + - uid: 724 components: - type: Transform rot: -1.5707963267948966 rad @@ -8063,68 +8286,68 @@ entities: parent: 1 - proto: StationMap entities: - - uid: 565 + - uid: 725 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,24.5 parent: 1 - - uid: 645 + - uid: 726 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,24.5 parent: 1 - - uid: 927 + - uid: 727 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 1 - - uid: 928 + - uid: 728 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 929 + - uid: 729 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,6.5 parent: 1 - - uid: 930 + - uid: 730 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,10.5 parent: 1 - - uid: 932 + - uid: 731 components: - type: Transform pos: -0.5,23.5 parent: 1 - proto: StorageCanister entities: - - uid: 651 + - uid: 732 components: - type: Transform pos: 4.5,25.5 parent: 1 - proto: SubstationBasic entities: - - uid: 652 + - uid: 733 components: - type: Transform pos: 4.5,9.5 parent: 1 - - uid: 653 + - uid: 734 components: - type: Transform pos: -3.5,9.5 parent: 1 - proto: SuitStorageBase entities: - - uid: 36 + - uid: 43 components: - type: Transform pos: 3.5,3.5 @@ -8135,13 +8358,13 @@ entities: showEnts: False occludes: True ents: - - 39 - - 40 - - 37 - - 38 - - 42 - - 41 - - uid: 43 + - 46 + - 47 + - 44 + - 45 + - 49 + - 48 + - uid: 50 components: - type: Transform pos: 3.5,2.5 @@ -8152,62 +8375,62 @@ entities: showEnts: False occludes: True ents: - - 49 - - 44 - - 47 - - 48 - - 46 - - 45 - - uid: 50 - components: - - type: Transform - pos: 3.5,1.5 - parent: 1 + - 56 + - 51 + - 54 + - 55 + - 53 + - 52 + - uid: 57 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 55 - - 54 - - 53 - - 51 - - 52 - - 56 + - 62 + - 61 + - 60 + - 58 + - 59 + - 63 - proto: Table entities: - - uid: 654 + - uid: 735 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,3.5 parent: 1 - - uid: 655 + - uid: 736 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,5.5 parent: 1 - - uid: 656 + - uid: 737 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,2.5 parent: 1 - - uid: 657 + - uid: 738 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 658 + - uid: 739 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,6.5 parent: 1 - - uid: 659 + - uid: 740 components: - type: Transform rot: -1.5707963267948966 rad @@ -8215,19 +8438,19 @@ entities: parent: 1 - proto: TableFancyPurple entities: - - uid: 23 + - uid: 741 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,14.5 parent: 1 - - uid: 563 + - uid: 742 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,14.5 parent: 1 - - uid: 564 + - uid: 743 components: - type: Transform rot: 3.141592653589793 rad @@ -8235,24 +8458,24 @@ entities: parent: 1 - proto: TablePlasmaGlass entities: - - uid: 660 + - uid: 744 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 661 + - uid: 745 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 662 + - uid: 746 components: - type: Transform pos: -2.5,7.5 parent: 1 - proto: TableReinforced entities: - - uid: 664 + - uid: 747 components: - type: Transform rot: 1.5707963267948966 rad @@ -8260,119 +8483,119 @@ entities: parent: 1 - proto: ThrusterDSMWarship entities: - - uid: 665 + - uid: 748 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 1 - - uid: 666 + - uid: 749 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-0.5 parent: 1 - - uid: 667 + - uid: 750 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,0.5 parent: 1 - - uid: 668 + - uid: 751 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-0.5 parent: 1 - - uid: 669 + - uid: 752 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 1 - - uid: 670 + - uid: 753 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,0.5 parent: 1 - - uid: 671 + - uid: 754 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 672 + - uid: 755 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 673 + - uid: 756 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,13.5 parent: 1 - - uid: 674 + - uid: 757 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,19.5 parent: 1 - - uid: 675 + - uid: 758 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,13.5 parent: 1 - - uid: 676 + - uid: 759 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,13.5 parent: 1 - - uid: 677 + - uid: 760 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,19.5 parent: 1 - - uid: 681 + - uid: 761 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 1 - - uid: 682 + - uid: 762 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,10.5 parent: 1 - - uid: 683 + - uid: 763 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,13.5 parent: 1 - - uid: 954 + - uid: 764 components: - type: Transform pos: -6.5,20.5 parent: 1 - - uid: 955 + - uid: 765 components: - type: Transform pos: 7.5,20.5 parent: 1 - proto: ToiletDirtyWater entities: - - uid: 684 + - uid: 766 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,2.5 parent: 1 - - uid: 685 + - uid: 767 components: - type: Transform rot: 3.141592653589793 rad @@ -8380,920 +8603,943 @@ entities: parent: 1 - proto: Truncheon entities: - - uid: 686 + - uid: 768 components: - type: Transform pos: 5.3152604,2.5320563 parent: 1 - - uid: 687 + - uid: 769 components: - type: Transform pos: 5.5965104,2.4539313 parent: 1 - proto: TwoWayLever entities: - - uid: 688 + - uid: 770 components: - type: Transform pos: 0.5,1.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 425: - - Left: Forward - - Right: Reverse - - Middle: Off - 424: - - Left: Forward - - Right: Reverse - - Middle: Off - 423: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: Type99Artillery + 488: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 487: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 486: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off +- proto: Type99ArtilleryFilled entities: - - uid: 698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,27.5 - parent: 1 - - uid: 952 + - uid: 5 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,27.5 + pos: 0.5,24.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 19300.908 + - type: ApcPowerReceiverBattery + enabled: True - proto: UnionfallShipNodeDSM entities: - - uid: 615 + - uid: 771 components: - type: Transform pos: 0.5,17.5 parent: 1 - proto: VendingMachineChemicals entities: - - uid: 690 + - uid: 772 components: - type: Transform pos: -6.5,2.5 parent: 1 - proto: VendingMachineCoffee entities: - - uid: 726 + - uid: 773 components: - type: Transform pos: 4.5,7.5 parent: 1 - proto: VendingMachineMedical entities: - - uid: 692 + - uid: 774 components: - type: Transform pos: -2.5,2.5 parent: 1 - proto: WallPlastitanium entities: - - uid: 569 + - uid: 775 components: - type: Transform pos: -2.5,19.5 parent: 1 - - uid: 575 + - uid: 776 components: - type: Transform pos: -2.5,15.5 parent: 1 - - uid: 576 + - uid: 777 components: - type: Transform pos: -1.5,20.5 parent: 1 - - uid: 616 + - uid: 778 components: - type: Transform pos: -2.5,20.5 parent: 1 - - uid: 622 + - uid: 779 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 703 + - uid: 780 components: - type: Transform pos: -1.5,32.5 parent: 1 - - uid: 704 + - uid: 781 components: - type: Transform pos: -4.5,30.5 parent: 1 - - uid: 705 + - uid: 782 components: - type: Transform pos: 2.5,32.5 parent: 1 - - uid: 706 + - uid: 783 components: - type: Transform pos: 2.5,24.5 parent: 1 - - uid: 707 + - uid: 784 components: - type: Transform pos: -1.5,24.5 parent: 1 - - uid: 708 + - uid: 785 components: - type: Transform pos: 3.5,32.5 parent: 1 - - uid: 709 + - uid: 786 components: - type: Transform pos: -5.5,12.5 parent: 1 - - uid: 710 + - uid: 787 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 711 + - uid: 788 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 712 + - uid: 789 components: - type: Transform pos: 6.5,20.5 parent: 1 - - uid: 713 + - uid: 790 components: - type: Transform pos: 6.5,19.5 parent: 1 - - uid: 716 + - uid: 791 components: - type: Transform pos: -6.5,15.5 parent: 1 - - uid: 717 + - uid: 792 components: - type: Transform pos: 7.5,17.5 parent: 1 - - uid: 718 + - uid: 793 components: - type: Transform pos: 7.5,15.5 parent: 1 - - uid: 719 + - uid: 794 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 721 + - uid: 795 components: - type: Transform pos: -1.5,10.5 parent: 1 - - uid: 722 + - uid: 796 components: - type: Transform pos: -1.5,23.5 parent: 1 - - uid: 725 + - uid: 797 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 727 + - uid: 798 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 728 + - uid: 799 components: - type: Transform pos: -1.5,14.5 parent: 1 - - uid: 729 + - uid: 800 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 730 + - uid: 801 components: - type: Transform pos: -4.5,24.5 parent: 1 - - uid: 731 + - uid: 802 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 732 + - uid: 803 components: - type: Transform pos: -4.5,27.5 parent: 1 - - uid: 733 + - uid: 804 components: - type: Transform pos: 3.5,19.5 parent: 1 - - uid: 734 + - uid: 805 components: - type: Transform pos: 5.5,24.5 parent: 1 - - uid: 735 + - uid: 806 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 736 + - uid: 807 components: - type: Transform pos: 5.5,28.5 parent: 1 - - uid: 737 + - uid: 808 components: - type: Transform pos: -5.5,20.5 parent: 1 - - uid: 738 + - uid: 809 components: - type: Transform pos: 6.5,18.5 parent: 1 - - uid: 739 + - uid: 810 components: - type: Transform pos: -5.5,18.5 parent: 1 - - uid: 743 + - uid: 811 components: - type: Transform pos: -1.5,29.5 parent: 1 - - uid: 746 + - uid: 812 components: - type: Transform pos: -1.5,27.5 parent: 1 - - uid: 747 + - uid: 813 components: - type: Transform pos: 5.5,21.5 parent: 1 - - uid: 748 + - uid: 814 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 749 + - uid: 815 components: - type: Transform pos: 5.5,9.5 parent: 1 - - uid: 750 + - uid: 816 components: - type: Transform pos: -2.5,21.5 parent: 1 - - uid: 751 + - uid: 817 components: - type: Transform pos: 2.5,26.5 parent: 1 - - uid: 752 + - uid: 818 components: - type: Transform pos: 2.5,31.5 parent: 1 - - uid: 754 + - uid: 819 components: - type: Transform pos: -4.5,28.5 parent: 1 - - uid: 755 + - uid: 820 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 756 + - uid: 821 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 757 + - uid: 822 components: - type: Transform pos: -1.5,11.5 parent: 1 - - uid: 758 + - uid: 823 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 759 + - uid: 824 components: - type: Transform pos: -1.5,30.5 parent: 1 - - uid: 760 + - uid: 825 components: - type: Transform pos: -1.5,31.5 parent: 1 - - uid: 761 + - uid: 826 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 762 + - uid: 827 components: - type: Transform pos: 5.5,27.5 parent: 1 - - uid: 763 + - uid: 828 components: - type: Transform pos: -1.5,25.5 parent: 1 - - uid: 764 + - uid: 829 components: - type: Transform pos: -1.5,26.5 parent: 1 - - uid: 765 + - uid: 830 components: - type: Transform pos: -0.5,24.5 parent: 1 - - uid: 766 + - uid: 831 components: - type: Transform pos: 3.5,21.5 parent: 1 - - uid: 767 + - uid: 832 components: - type: Transform pos: 2.5,28.5 parent: 1 - - uid: 771 + - uid: 833 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 772 + - uid: 834 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 773 + - uid: 835 components: - type: Transform pos: 2.5,11.5 parent: 1 - - uid: 774 + - uid: 836 components: - type: Transform pos: -1.5,28.5 parent: 1 - - uid: 775 + - uid: 837 components: - type: Transform pos: 2.5,23.5 parent: 1 - - uid: 776 + - uid: 838 components: - type: Transform pos: 5.5,30.5 parent: 1 - - uid: 777 + - uid: 839 components: - type: Transform pos: 5.5,29.5 parent: 1 - - uid: 778 + - uid: 840 components: - type: Transform pos: 2.5,30.5 parent: 1 - - uid: 779 + - uid: 841 components: - type: Transform pos: -1.5,21.5 parent: 1 - - uid: 780 + - uid: 842 components: - type: Transform pos: 2.5,25.5 parent: 1 - - uid: 781 + - uid: 843 components: - type: Transform pos: -0.5,23.5 parent: 1 - - uid: 782 + - uid: 844 components: - type: Transform pos: 1.5,24.5 parent: 1 - - uid: 783 + - uid: 845 components: - type: Transform pos: 2.5,29.5 parent: 1 - - uid: 784 + - uid: 846 components: - type: Transform pos: -4.5,25.5 parent: 1 - - uid: 785 + - uid: 847 components: - type: Transform pos: 5.5,22.5 parent: 1 - - uid: 786 + - uid: 848 components: - type: Transform pos: -4.5,22.5 parent: 1 - - uid: 787 + - uid: 849 components: - type: Transform pos: 4.5,28.5 parent: 1 - - uid: 788 + - uid: 850 components: - type: Transform pos: 2.5,21.5 parent: 1 - - uid: 789 + - uid: 851 components: - type: Transform pos: -5.5,19.5 parent: 1 - - uid: 790 + - uid: 852 components: - type: Transform pos: 2.5,10.5 parent: 1 - - uid: 792 + - uid: 853 components: - type: Transform pos: 4.5,30.5 parent: 1 - - uid: 793 + - uid: 854 components: - type: Transform pos: -4.5,26.5 parent: 1 - - uid: 794 + - uid: 855 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 795 + - uid: 856 components: - type: Transform pos: -5.5,14.5 parent: 1 - - uid: 796 + - uid: 857 components: - type: Transform pos: 4.5,11.5 parent: 1 - - uid: 798 + - uid: 858 components: - type: Transform pos: -0.5,11.5 parent: 1 - - uid: 799 + - uid: 859 components: - type: Transform pos: 2.5,20.5 parent: 1 - - uid: 800 + - uid: 860 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 801 + - uid: 861 components: - type: Transform pos: -4.5,29.5 parent: 1 - - uid: 803 + - uid: 862 components: - type: Transform pos: -4.5,21.5 parent: 1 - - uid: 804 + - uid: 863 components: - type: Transform pos: 5.5,26.5 parent: 1 - - uid: 805 + - uid: 864 components: - type: Transform pos: -3.5,28.5 parent: 1 - - uid: 806 + - uid: 865 components: - type: Transform pos: -6.5,17.5 parent: 1 - - uid: 807 + - uid: 866 components: - type: Transform pos: 2.5,27.5 parent: 1 - - uid: 808 + - uid: 867 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 809 + - uid: 868 components: - type: Transform pos: 5.5,25.5 parent: 1 - - uid: 810 + - uid: 869 components: - type: Transform pos: 6.5,21.5 parent: 1 - - uid: 811 + - uid: 870 components: - type: Transform pos: -5.5,21.5 parent: 1 - - uid: 812 + - uid: 871 components: - type: Transform pos: -3.5,30.5 parent: 1 - - uid: 814 + - uid: 872 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 815 + - uid: 873 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 816 + - uid: 874 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 817 + - uid: 875 components: - type: Transform pos: -1.5,1.5 parent: 1 - - uid: 818 + - uid: 876 components: - type: Transform pos: 5.5,4.5 parent: 1 - - uid: 819 + - uid: 877 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 820 + - uid: 878 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 821 + - uid: 879 components: - type: Transform pos: -7.5,1.5 parent: 1 - - uid: 822 + - uid: 880 components: - type: Transform pos: 7.5,1.5 parent: 1 - - uid: 823 + - uid: 881 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 824 + - uid: 882 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 825 + - uid: 883 components: - type: Transform pos: -4.5,4.5 parent: 1 - - uid: 826 + - uid: 884 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 827 + - uid: 885 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 828 + - uid: 886 components: - type: Transform pos: -5.5,4.5 parent: 1 - - uid: 829 + - uid: 887 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 830 + - uid: 888 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 831 + - uid: 889 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 832 + - uid: 890 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 833 + - uid: 891 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 834 + - uid: 892 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 835 + - uid: 893 components: - type: Transform pos: -1.5,0.5 parent: 1 - - uid: 836 + - uid: 894 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 837 + - uid: 895 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 838 + - uid: 896 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 839 + - uid: 897 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 840 + - uid: 898 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 841 + - uid: 899 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 842 + - uid: 900 components: - type: Transform pos: 5.5,8.5 parent: 1 - - uid: 843 + - uid: 901 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 844 + - uid: 902 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 845 + - uid: 903 components: - type: Transform pos: 6.5,7.5 parent: 1 - - uid: 846 + - uid: 904 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 847 + - uid: 905 components: - type: Transform pos: -1.5,4.5 parent: 1 - - uid: 848 + - uid: 906 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 849 + - uid: 907 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 850 + - uid: 908 components: - type: Transform pos: 9.5,6.5 parent: 1 - - uid: 851 + - uid: 909 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 852 + - uid: 910 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 853 + - uid: 911 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 854 + - uid: 912 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 855 + - uid: 913 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 856 + - uid: 914 components: - type: Transform pos: 7.5,8.5 parent: 1 - - uid: 857 + - uid: 915 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 858 + - uid: 916 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 859 + - uid: 917 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 860 + - uid: 918 components: - type: Transform pos: 9.5,5.5 parent: 1 - - uid: 861 + - uid: 919 components: - type: Transform pos: 9.5,4.5 parent: 1 - - uid: 862 + - uid: 920 components: - type: Transform pos: 9.5,3.5 parent: 1 - - uid: 863 + - uid: 921 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 864 + - uid: 922 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 865 + - uid: 923 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 866 + - uid: 924 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 867 + - uid: 925 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 868 + - uid: 926 components: - type: Transform pos: 5.5,7.5 parent: 1 - - uid: 869 + - uid: 927 components: - type: Transform pos: 2.5,6.5 parent: 1 - - uid: 870 + - uid: 928 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 871 + - uid: 929 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 872 + - uid: 930 components: - type: Transform pos: -3.5,8.5 parent: 1 - - uid: 873 + - uid: 931 components: - type: Transform pos: -1.5,7.5 parent: 1 - - uid: 874 + - uid: 932 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 875 + - uid: 933 components: - type: Transform pos: -1.5,8.5 parent: 1 - - uid: 876 + - uid: 934 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 877 + - uid: 935 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 878 + - uid: 936 components: - type: Transform pos: -0.5,8.5 parent: 1 - - uid: 879 + - uid: 937 components: - type: Transform pos: -2.5,32.5 parent: 1 - - uid: 922 + - uid: 938 components: - type: Transform pos: 3.5,20.5 parent: 1 - - uid: 938 + - uid: 939 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 939 + - uid: 940 components: - type: Transform pos: -2.5,33.5 parent: 1 - proto: WallPlastitaniumDiagonalCurved entities: - - uid: 614 + - uid: 941 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,14.5 parent: 1 - - uid: 646 + - uid: 942 components: - type: Transform rot: 3.141592653589793 rad @@ -9301,24 +9547,24 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalHollow entities: - - uid: 715 + - uid: 943 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,17.5 parent: 1 - - uid: 720 + - uid: 944 components: - type: Transform pos: 6.5,15.5 parent: 1 - - uid: 770 + - uid: 945 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,15.5 parent: 1 - - uid: 911 + - uid: 946 components: - type: Transform rot: 3.141592653589793 rad @@ -9326,83 +9572,83 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 880 + - uid: 947 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,32.5 parent: 1 - - uid: 881 + - uid: 948 components: - type: Transform pos: -3.5,32.5 parent: 1 - - uid: 882 + - uid: 949 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,11.5 parent: 1 - - uid: 883 + - uid: 950 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,11.5 parent: 1 - - uid: 884 + - uid: 951 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,7.5 parent: 1 - - uid: 885 + - uid: 952 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,2.5 parent: 1 - - uid: 886 + - uid: 953 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 1 - - uid: 887 + - uid: 954 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 - - uid: 888 + - uid: 955 components: - type: Transform pos: -8.5,7.5 parent: 1 - - uid: 889 + - uid: 956 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,0.5 parent: 1 - - uid: 890 + - uid: 957 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,2.5 parent: 1 - - uid: 891 + - uid: 958 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 1 - - uid: 892 + - uid: 959 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 1 - - uid: 893 + - uid: 960 components: - type: Transform rot: 1.5707963267948966 rad @@ -9410,48 +9656,48 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalSoutheastHollow entities: - - uid: 894 + - uid: 961 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,18.5 parent: 1 - - uid: 895 + - uid: 962 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,18.5 parent: 1 - - uid: 896 + - uid: 963 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,14.5 parent: 1 - - uid: 897 + - uid: 964 components: - type: Transform pos: -6.5,14.5 parent: 1 - - uid: 899 + - uid: 965 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,25.5 parent: 1 - - uid: 900 + - uid: 966 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,25.5 parent: 1 - - uid: 902 + - uid: 967 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,22.5 parent: 1 - - uid: 903 + - uid: 968 components: - type: Transform rot: 3.141592653589793 rad @@ -9459,14 +9705,14 @@ entities: parent: 1 - proto: WallReinforced entities: - - uid: 904 + - uid: 969 components: - type: Transform pos: -1.5,6.5 parent: 1 - proto: WarpPointShip entities: - - uid: 905 + - uid: 970 components: - type: Transform rot: -1.5707963267948966 rad @@ -9474,7 +9720,7 @@ entities: parent: 1 - proto: WeaponCapacitorRecharger entities: - - uid: 906 + - uid: 971 components: - type: Transform rot: -1.5707963267948966 rad @@ -9482,7 +9728,7 @@ entities: parent: 1 - proto: WeaponDisabler entities: - - uid: 907 + - uid: 972 components: - type: Transform pos: 5.8357854,1.3758063 @@ -9490,7 +9736,7 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 908 + - uid: 973 components: - type: Transform pos: 5.8514104,1.6258063 @@ -9500,7 +9746,7 @@ entities: linearDamping: 0 - proto: WeaponPistolComplianceImperial entities: - - uid: 909 + - uid: 974 components: - type: Transform pos: 5.2889104,1.3445563 @@ -9508,7 +9754,7 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 910 + - uid: 975 components: - type: Transform pos: 5.307101,1.5945563 @@ -9518,12 +9764,16 @@ entities: linearDamping: 0 - proto: WeaponTurretNeedler entities: - - uid: 5 + - uid: 976 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,16.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9538,14 +9788,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 33 - - uid: 77 + linkedConsoleId: 485 + - uid: 977 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,23.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9560,14 +9822,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 33 - - uid: 78 + linkedConsoleId: 485 + - uid: 978 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,23.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9582,14 +9856,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 33 - - uid: 611 + linkedConsoleId: 485 + - uid: 979 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,16.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9604,14 +9890,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 33 - - uid: 940 + linkedConsoleId: 485 + - uid: 980 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,33.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9626,14 +9924,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 33 - - uid: 941 + linkedConsoleId: 485 + - uid: 981 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,33.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9648,15 +9958,27 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 33 + linkedConsoleId: 485 - proto: WeaponTurretVulcan entities: - - uid: 913 + - uid: 982 components: - type: Transform pos: 9.5,1.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9671,13 +9993,25 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 33 - - uid: 914 + linkedConsoleId: 485 + - uid: 983 components: - type: Transform pos: -8.5,1.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9692,14 +10026,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 33 - - uid: 981 + linkedConsoleId: 485 + - uid: 984 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,30.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9714,12 +10060,24 @@ entities: showEnts: False occludes: True ent: null - - uid: 982 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 985 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,30.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9734,27 +10092,35 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - proto: WindowReinforcedDirectional entities: - - uid: 915 + - uid: 986 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,12.5 parent: 1 - - uid: 916 + - uid: 987 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 917 + - uid: 988 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,12.5 parent: 1 - - uid: 918 + - uid: 989 components: - type: Transform rot: -1.5707963267948966 rad diff --git a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_saintsfall.yml b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_saintsfall.yml index 1356b80025c..33342c16716 100644 --- a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_saintsfall.yml +++ b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_saintsfall.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/10/2026 14:33:24 + entityCount: 196 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 34: FloorDarkDiagonal @@ -24,12 +35,12 @@ entities: chunks: 0,0: ind: 0,0 - tiles: AQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AQAAAAAAACIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAgQAAAAAAggAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAgQAAAAAAAIIAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAIgAAAAAAACIAAAAAAAAjAAAAAAAAIwAAAAAAACMAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAACIAAAAAAAAiAAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -56,70 +67,70 @@ entities: color: '#D381C996' id: ConcreteTrimCornerNe decals: - 213: 3,1 + 179: 3,1 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimCornerNw decals: - 211: 1,1 + 177: 1,1 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimCornerSe decals: - 221: 2,-2 + 187: 2,-2 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimCornerSw decals: - 222: 1,-2 + 188: 1,-2 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimEndE decals: - 217: 5,0 + 183: 5,0 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimInnerNe decals: - 215: 3,0 + 181: 3,0 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimInnerSe decals: - 214: 2,0 + 180: 2,0 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimLineE decals: - 220: 2,-1 + 186: 2,-1 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimLineN decals: - 212: 2,1 - 216: 4,0 + 178: 2,1 + 182: 4,0 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimLineS decals: - 218: 4,0 - 219: 3,0 + 184: 4,0 + 185: 3,0 - node: angle: 6.283185307179586 rad color: '#D381C996' id: ConcreteTrimLineW decals: - 223: 1,-1 - 224: 1,0 + 189: 1,-1 + 190: 1,0 - node: zIndex: 1 id: LatticeCornerNE @@ -130,18 +141,24 @@ entities: 45: 1,-4 50: 0,-4 53: 5,-4 - 85: 0,2 - 90: 0,3 - 119: 0,-4 - 122: 1,-4 - 127: 3,-4 - 132: 5,-4 - 142: 0,2 - 147: 0,3 - 176: 0,-4 - 179: 1,-4 - 184: 3,-4 - 189: 5,-4 + 67: 0,2 + 72: 0,3 + 101: 0,-4 + 104: 1,-4 + 109: 3,-4 + 114: 5,-4 + 124: 0,2 + 129: 0,3 + 148: 0,-4 + 151: 1,-4 + 156: 3,-4 + 161: 5,-4 + 209: 0,2 + 214: 0,3 + 243: 0,-4 + 246: 1,-4 + 251: 3,-4 + 256: 5,-4 - node: zIndex: 1 id: LatticeCornerNW @@ -152,18 +169,24 @@ entities: 47: 1,-4 55: 5,-4 58: 6,-4 - 108: 6,2 - 113: 6,3 - 124: 1,-4 - 129: 3,-4 - 134: 5,-4 - 137: 6,-4 - 165: 6,2 - 170: 6,3 - 181: 1,-4 - 186: 3,-4 - 191: 5,-4 - 194: 6,-4 + 90: 6,2 + 95: 6,3 + 106: 1,-4 + 111: 3,-4 + 116: 5,-4 + 119: 6,-4 + 137: 6,2 + 142: 6,3 + 153: 1,-4 + 158: 3,-4 + 163: 5,-4 + 166: 6,-4 + 232: 6,2 + 237: 6,3 + 248: 1,-4 + 253: 3,-4 + 258: 5,-4 + 261: 6,-4 - node: zIndex: 1 id: LatticeCornerSE @@ -173,16 +196,21 @@ entities: 14: 0,4 17: 1,4 22: 5,4 - 83: 0,2 - 88: 0,3 - 93: 0,4 - 96: 1,4 - 101: 5,4 - 140: 0,2 - 145: 0,3 - 150: 0,4 - 202: 5,4 - 207: 1,4 + 65: 0,2 + 70: 0,3 + 75: 0,4 + 78: 1,4 + 83: 5,4 + 122: 0,2 + 127: 0,3 + 132: 0,4 + 169: 5,4 + 174: 1,4 + 207: 0,2 + 212: 0,3 + 217: 0,4 + 220: 1,4 + 225: 5,4 - node: zIndex: 1 id: LatticeCornerSW @@ -192,16 +220,21 @@ entities: 28: 6,2 33: 6,3 37: 6,4 - 98: 1,4 - 103: 5,4 - 107: 6,2 - 112: 6,3 - 116: 6,4 - 164: 6,2 - 169: 6,3 - 173: 6,4 - 204: 5,4 - 209: 1,4 + 80: 1,4 + 85: 5,4 + 89: 6,2 + 94: 6,3 + 98: 6,4 + 136: 6,2 + 141: 6,3 + 145: 6,4 + 171: 5,4 + 176: 1,4 + 222: 1,4 + 227: 5,4 + 231: 6,2 + 236: 6,3 + 240: 6,4 - node: id: LatticeEdgeE decals: @@ -214,24 +247,33 @@ entities: 43: 1,-4 48: 0,-4 51: 5,-4 - 82: 0,2 - 87: 0,3 - 92: 0,4 - 95: 1,4 - 100: 5,4 - 117: 0,-4 - 120: 1,-4 - 125: 3,-4 - 130: 5,-4 - 139: 0,2 - 144: 0,3 - 149: 0,4 - 174: 0,-4 - 177: 1,-4 - 182: 3,-4 - 187: 5,-4 - 201: 5,4 - 206: 1,4 + 64: 0,2 + 69: 0,3 + 74: 0,4 + 77: 1,4 + 82: 5,4 + 99: 0,-4 + 102: 1,-4 + 107: 3,-4 + 112: 5,-4 + 121: 0,2 + 126: 0,3 + 131: 0,4 + 146: 0,-4 + 149: 1,-4 + 154: 3,-4 + 159: 5,-4 + 168: 5,4 + 173: 1,4 + 206: 0,2 + 211: 0,3 + 216: 0,4 + 219: 1,4 + 224: 5,4 + 241: 0,-4 + 244: 1,-4 + 249: 3,-4 + 254: 5,-4 - node: id: LatticeEdgeN decals: @@ -244,24 +286,33 @@ entities: 49: 0,-4 52: 5,-4 56: 6,-4 - 84: 0,2 - 89: 0,3 - 105: 6,2 - 110: 6,3 - 118: 0,-4 - 121: 1,-4 - 126: 3,-4 - 131: 5,-4 - 135: 6,-4 - 141: 0,2 - 146: 0,3 - 162: 6,2 - 167: 6,3 - 175: 0,-4 - 178: 1,-4 - 183: 3,-4 - 188: 5,-4 - 192: 6,-4 + 66: 0,2 + 71: 0,3 + 87: 6,2 + 92: 6,3 + 100: 0,-4 + 103: 1,-4 + 108: 3,-4 + 113: 5,-4 + 117: 6,-4 + 123: 0,2 + 128: 0,3 + 134: 6,2 + 139: 6,3 + 147: 0,-4 + 150: 1,-4 + 155: 3,-4 + 160: 5,-4 + 164: 6,-4 + 208: 0,2 + 213: 0,3 + 229: 6,2 + 234: 6,3 + 242: 0,-4 + 245: 1,-4 + 250: 3,-4 + 255: 5,-4 + 259: 6,-4 - node: id: LatticeEdgeS decals: @@ -273,22 +324,30 @@ entities: 25: 6,2 30: 6,3 35: 6,4 - 81: 0,2 - 86: 0,3 - 91: 0,4 - 94: 1,4 - 99: 5,4 - 104: 6,2 - 109: 6,3 - 114: 6,4 - 138: 0,2 - 143: 0,3 - 148: 0,4 - 161: 6,2 - 166: 6,3 - 171: 6,4 - 200: 5,4 - 205: 1,4 + 63: 0,2 + 68: 0,3 + 73: 0,4 + 76: 1,4 + 81: 5,4 + 86: 6,2 + 91: 6,3 + 96: 6,4 + 120: 0,2 + 125: 0,3 + 130: 0,4 + 133: 6,2 + 138: 6,3 + 143: 6,4 + 167: 5,4 + 172: 1,4 + 205: 0,2 + 210: 0,3 + 215: 0,4 + 218: 1,4 + 223: 5,4 + 228: 6,2 + 233: 6,3 + 238: 6,4 - node: id: LatticeEdgeW decals: @@ -301,54 +360,63 @@ entities: 46: 1,-4 54: 5,-4 57: 6,-4 - 97: 1,4 - 102: 5,4 - 106: 6,2 - 111: 6,3 - 115: 6,4 - 123: 1,-4 - 128: 3,-4 - 133: 5,-4 - 136: 6,-4 - 163: 6,2 - 168: 6,3 - 172: 6,4 - 180: 1,-4 - 185: 3,-4 - 190: 5,-4 - 193: 6,-4 - 203: 5,4 - 208: 1,4 + 79: 1,4 + 84: 5,4 + 88: 6,2 + 93: 6,3 + 97: 6,4 + 105: 1,-4 + 110: 3,-4 + 115: 5,-4 + 118: 6,-4 + 135: 6,2 + 140: 6,3 + 144: 6,4 + 152: 1,-4 + 157: 3,-4 + 162: 5,-4 + 165: 6,-4 + 170: 5,4 + 175: 1,4 + 221: 1,4 + 226: 5,4 + 230: 6,2 + 235: 6,3 + 239: 6,4 + 247: 1,-4 + 252: 3,-4 + 257: 5,-4 + 260: 6,-4 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechE decals: - 228: 2,2 + 193: 2,2 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechNE decals: - 229: 2,3 + 194: 2,3 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechNW decals: - 227: 4,3 + 192: 4,3 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechW decals: - 226: 4,2 + 191: 4,2 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnEndN decals: - 231: 3,3 + 196: 3,3 - node: angle: 3.141592653589793 rad color: '#D381C996' @@ -356,10 +424,10 @@ entities: decals: 61: 6,0 62: 6,0 - 235: 0,0 - 236: 0,0 - 237: 0,-1 - 238: 0,-1 + 200: 0,0 + 201: 0,0 + 202: 0,-1 + 203: 0,-1 - node: angle: 6.283185307179586 rad color: '#D381C996' @@ -367,10 +435,10 @@ entities: decals: 59: 6,0 60: 6,0 - 230: 3,2 - 233: 0,0 - 234: 0,0 - 239: 0,-1 + 195: 3,2 + 198: 0,0 + 199: 0,0 + 204: 0,-1 - node: color: '#43990996' id: WarnLineGreyscaleN @@ -382,7 +450,7 @@ entities: color: '#D381C996' id: WarnLineS decals: - 232: 3,2 + 197: 3,2 - type: GridAtmosphere version: 2 data: @@ -446,6 +514,7 @@ entities: - type: ShuttleDeed shuttleName: Shuttle NX-561 shuttleUid: 1 + - type: SelfDeleteGrid - proto: AAAHardpointFixed entities: - uid: 2 @@ -486,7 +555,7 @@ entities: parent: 1 - proto: AirTankFilled entities: - - uid: 7 + - uid: 10 components: - type: Transform parent: 6 @@ -495,7 +564,7 @@ entities: linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: APCBasic +- proto: APCHyperCapacity entities: - uid: 13 components: @@ -503,6 +572,9 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 1 + - type: BatterySelfRecharger + autoRechargeRate: 200000 + autoRecharge: True - proto: AtmosDeviceFanTiny entities: - uid: 14 @@ -807,6 +879,11 @@ entities: - type: Transform pos: 4.5,0.5 parent: 1 + - uid: 174 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 - proto: CableHV entities: - uid: 72 @@ -846,6 +923,116 @@ entities: - type: Transform pos: 4.5,-2.5 parent: 1 + - uid: 175 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 - proto: CargoPallet entities: - uid: 79 @@ -868,7 +1055,7 @@ entities: parent: 1 - proto: ClothingHeadHelmetImperialEVA entities: - - uid: 8 + - uid: 11 components: - type: Transform parent: 6 @@ -879,7 +1066,7 @@ entities: - type: InsideEntityStorage - proto: ClothingMaskImperialCombatGasmask entities: - - uid: 9 + - uid: 8 components: - type: Transform parent: 6 @@ -890,7 +1077,7 @@ entities: - type: InsideEntityStorage - proto: ClothingOuterCoatImperialSoftsuit entities: - - uid: 10 + - uid: 9 components: - type: Transform parent: 6 @@ -901,7 +1088,7 @@ entities: - type: InsideEntityStorage - proto: ClothingShoesBootsMagCombat entities: - - uid: 11 + - uid: 7 components: - type: Transform parent: 6 @@ -941,9 +1128,11 @@ entities: - type: DeviceLinkSource linkedPorts: 2: - - Group1: Toggle + - - Group1 + - Toggle 3: - - Group1: Toggle + - - Group1 + - Toggle - type: NamedModules buttonNames: - Toggle Vulcans @@ -1116,11 +1305,19 @@ entities: - type: Transform pos: 5.522419,1.5607862 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] - uid: 107 components: - type: Transform pos: 5.522419,1.5607862 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] - proto: NTVulcanTurret entities: - uid: 108 @@ -1129,6 +1326,12 @@ entities: rot: 3.141592653589793 rad pos: 2.5,3.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5000 + - type: Battery + startingCharge: 19519.053 + - type: ApcPowerReceiverBattery + enabled: True - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -1143,6 +1346,14 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: ChamberMagazineAmmoProvider boltClosed: True - uid: 109 @@ -1151,6 +1362,12 @@ entities: rot: 3.141592653589793 rad pos: 4.5,3.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5000 + - type: Battery + startingCharge: 19519.053 + - type: ApcPowerReceiverBattery + enabled: True - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -1165,6 +1382,14 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: ChamberMagazineAmmoProvider boltClosed: True - proto: PoweredSmallLight @@ -1236,9 +1461,11 @@ entities: - type: DeviceLinkSource linkedPorts: 117: - - Pressed: Toggle + - - Pressed + - Toggle 116: - - Pressed: Toggle + - - Pressed + - Toggle - proto: SmallGyroscopeSecurity entities: - uid: 119 @@ -1268,12 +1495,12 @@ entities: showEnts: False occludes: True ents: - - 12 - - 7 - - 11 - - 8 - - 9 - 10 + - 9 + - 8 + - 11 + - 7 + - 12 - proto: TableReinforced entities: - uid: 121 diff --git a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_gargut.yml b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_gargut.yml index aec372abf9d..0d3e37c760c 100644 --- a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_gargut.yml +++ b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_gargut.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/10/2026 14:24:44 + entityCount: 1440 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 38: FloorDark @@ -26,44 +37,44 @@ entities: chunks: 0,0: ind: 0,0 - tiles: FAEAAAAAFAEAAAAAAwAAAAAAAwAAAAAAAQAAAAAAFAEAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAARAAAAAAAFAEAAAAAAwAAAAAAAwAAAAAAAQAAAAAAFAEAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAJgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAEAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAJgAAAAAAAQAAAAAAAwAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAJgAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAAQAAAAAAJgAAAAAAFAEAAAAAAQAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAA7QAAAAAA7QAAAAAA7QAAAAAA7QAAAAAAFAEAAAAAxAAAAAAAAQAAAAAAJgAAAAAAxAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAxAAAAAAAxAAAAAAAxAAAAAAARAAAAAAA7QAAAAAA7QAAAAAA7QAAAAAAFAEAAAAAxAAAAAAAAQAAAAAAJgAAAAAAFAEAAAAAAQAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAJgAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAARAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAFAEAAAAARAAAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAQAAAAAAxAAAAAAAxAAAAAAAFAEAAAAARAAAAAAAFAEAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAARAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAARAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAARAAAAAAAFAEAAAAAAgAAAAAAAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAARAAAAAAAFAEAAAAAAAAAAAAAFAEAAAAAAQAAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAARAAAAAAAAAAAAAAAFAEAAAAAAgAAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAARAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAARAAAAAAAAAAAAAAAFAEAAAAARAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: FAEAAAAAABQBAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAAUAQAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAAFAEAAAAAAEQAAAAAAAAUAQAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAFAEAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAACYAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAABQBAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAmAAAAAAAAAQAAAAAAAAMAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAAJgAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAAAEAAAAAAAAmAAAAAAAAFAEAAAAAAAEAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAADtAAAAAAAA7QAAAAAAAO0AAAAAAADtAAAAAAAAFAEAAAAAAMQAAAAAAAABAAAAAAAAJgAAAAAAAMQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAARAAAAAAAAO0AAAAAAADtAAAAAAAA7QAAAAAAABQBAAAAAADEAAAAAAAAAQAAAAAAACYAAAAAAAAUAQAAAAAAAQAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAJgAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAARAAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAUAQAAAAAARAAAAAAAABQBAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAAQAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAAEQAAAAAAAAUAQAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAABEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAABEAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAARAAAAAAAABQBAAAAAAACAAAAAAAAAQAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAABEAAAAAAAAFAEAAAAAAAAAAAAAAAAUAQAAAAAAAQAAAAAAABQBAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAFAEAAAAAAAIAAAAAAAAUAQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO0AAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAUAQAAAAAARAAAAAAAAO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: owAAAAAAFAEAAAAAAgAAAAAAFAEAAAAAxAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAFAEAAAAAAQAAAAAAFAEAAAAAAQAAAAAAAwAAAAAAAwAAAAAAFAEAAAAARAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAQAAAAAAFAEAAAAAAQAAAAAAAwAAAAAAAwAAAAAAFAEAAAAAJgAAAAAAJgAAAAAAAQAAAAAAFAEAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAFAEAAAAAAQAAAAAAFAEAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAEAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAFAEAAAAAAQAAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAAwAAAAAAJgAAAAAAAQAAAAAAAQAAAAAAxAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAxAAAAAAAAQAAAAAAowAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAJgAAAAAAowAAAAAAFAEAAAAA7QAAAAAA7QAAAAAA7QAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAowAAAAAAowAAAAAAFAEAAAAAJgAAAAAAAQAAAAAAAQAAAAAAxAAAAAAAAQAAAAAAowAAAAAAFAEAAAAA7QAAAAAA7QAAAAAA7QAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAJgAAAAAAJgAAAAAAFAEAAAAAAQAAAAAAxAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAxAAAAAAAxAAAAAAARAAAAAAARAAAAAAARAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAARAAAAAAAFAEAAAAARAAAAAAARAAAAAAARAAAAAAAxAAAAAAARAAAAAAARAAAAAAARAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAARAAAAAAARAAAAAAARAAAAAAAFAEAAAAARAAAAAAARAAAAAAARAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAARAAAAAAARAAAAAAARAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAARAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: owAAAAAAABQBAAAAAAACAAAAAAAAFAEAAAAAAMQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAAAEAAAAAAAAUAQAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAFAEAAAAAAEQAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAABAAAAAAAAFAEAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAABQBAAAAAAAmAAAAAAAAJgAAAAAAAAEAAAAAAAAUAQAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAUAQAAAAAAAQAAAAAAABQBAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAFAEAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAFAEAAAAAAAEAAAAAAAAUAQAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAAwAAAAAAACYAAAAAAAABAAAAAAAAAQAAAAAAAMQAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAAMQAAAAAAAABAAAAAAAAowAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAJgAAAAAAAKMAAAAAAAAUAQAAAAAA7QAAAAAAAO0AAAAAAADtAAAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAAowAAAAAAAKMAAAAAAAAUAQAAAAAAJgAAAAAAAAEAAAAAAAABAAAAAAAAxAAAAAAAAAEAAAAAAACjAAAAAAAAFAEAAAAAAO0AAAAAAADtAAAAAAAA7QAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAmAAAAAAAAJgAAAAAAABQBAAAAAAABAAAAAAAAxAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAxAAAAAAAAMQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAxAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAAAUAQAAAAAAFAEAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAABQBAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAARAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAARAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAARAAAAAAARAAAAAAAFAEAAAAARAAAAAAARAAAAAAA7QAAAAAAAAAAAAAARAAAAAAA7QAAAAAA7QAAAAAA7QAAAAAAFAEAAAAAxAAAAAAAFAEAAAAARAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAARAAAAAAA7QAAAAAA7QAAAAAA7QAAAAAA7QAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAJgAAAAAAxAAAAAAAFAEAAAAAxAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAxAAAAAAAJgAAAAAAxAAAAAAAFAEAAAAAxAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAFAEAAAAARAAAAAAAAQAAAAAAAwAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAxAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAFAEAAAAARAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAxAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAARAAAAAAARAAAAAAAFAEAAAAAFAEAAAAARAAAAAAAFAEAAAAAAwAAAAAAAwAAAAAAAQAAAAAAFAEAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAxAAAAAAAxAAAAAAAxAAAAAAARAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAFAEAAAAAAO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAADtAAAAAAAAAAAAAAAAAEQAAAAAAADtAAAAAAAA7QAAAAAAAO0AAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAABEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAEQAAAAAAADtAAAAAAAA7QAAAAAAAO0AAAAAAADtAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAJgAAAAAAAMQAAAAAAAAUAQAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAxAAAAAAAACYAAAAAAADEAAAAAAAAFAEAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAARAAAAAAAAAEAAAAAAAADAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAAEQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAMQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAABEAAAAAAAARAAAAAAAABQBAAAAAAAUAQAAAAAARAAAAAAAABQBAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAAUAQAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAARAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAARAAAAAAARAAAAAAAFAEAAAAARAAAAAAARAAAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAA7QAAAAAA7QAAAAAA7QAAAAAARAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAxAAAAAAAFAEAAAAA7QAAAAAA7QAAAAAA7QAAAAAAFAEAAAAAFAEAAAAAAgAAAAAAxAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAxAAAAAAAFAEAAAAAAgAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAFAEAAAAAxAAAAAAAFAEAAAAAAwAAAAAAxAAAAAAAFAEAAAAAAgAAAAAAFAEAAAAAxAAAAAAAowAAAAAAowAAAAAAowAAAAAAowAAAAAAFAEAAAAAAQAAAAAAxAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAowAAAAAAxAAAAAAAAgAAAAAAFAEAAAAAxAAAAAAAowAAAAAAowAAAAAAowAAAAAAowAAAAAAxAAAAAAAAQAAAAAAFAEAAAAAAQAAAAAAAwAAAAAAAwAAAAAAFAEAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAFAEAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAADtAAAAAAAA7QAAAAAAAO0AAAAAAABEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAA7QAAAAAAAO0AAAAAAADtAAAAAAAAFAEAAAAAABQBAAAAAAACAAAAAAAAxAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAAAgAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAAAMAAAAAAADEAAAAAAAAFAEAAAAAAAIAAAAAAAAUAQAAAAAAxAAAAAAAAKMAAAAAAACjAAAAAAAAowAAAAAAAKMAAAAAAAAUAQAAAAAAAQAAAAAAAMQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAowAAAAAAAMQAAAAAAAACAAAAAAAAFAEAAAAAAMQAAAAAAACjAAAAAAAAowAAAAAAAKMAAAAAAACjAAAAAAAAxAAAAAAAAAEAAAAAAAAUAQAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAFAEAAAAAAA== + version: 7 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAJgAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAJgAAAAAAJgAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAowAAAAAAowAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAJgAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAJgAAAAAAACYAAAAAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAACjAAAAAAAAowAAAAAAAA== + version: 7 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAowAAAAAAowAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAJgAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAJgAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAJgAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAARAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAARAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAxAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAACjAAAAAAAAowAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAACYAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAmAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAJgAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO0AAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAADEAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAUAQAAAAAAxAAAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAFAEAAAAAAEQAAAAAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAABEAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAxAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,0: ind: 1,0 - tiles: FAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: FAEAAAAAABQBAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -215,6 +226,13 @@ entities: 1510: -1,3 1552: 1,-3 1660: -1,-3 + 1699: 1,3 + 1716: 2,1 + 1753: 6,3 + 1778: -3,1 + 1816: -1,3 + 1858: 1,-3 + 1966: -1,-3 - node: zIndex: 1 angle: -3.141592653589793 rad @@ -242,6 +260,13 @@ entities: 1591: 6,-1 1623: -3,-1 1659: -1,-3 + 1698: 1,3 + 1815: -1,3 + 1857: 1,-3 + 1874: 2,-1 + 1897: 6,-1 + 1929: -3,-1 + 1965: -1,-3 - node: zIndex: 1 angle: -1.5707963267948966 rad @@ -269,6 +294,13 @@ entities: 1597: 10,-1 1639: -2,-1 1655: -1,-3 + 1694: 1,3 + 1811: -1,3 + 1853: 1,-3 + 1890: 3,-1 + 1903: 10,-1 + 1945: -2,-1 + 1961: -1,-3 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner @@ -295,6 +327,13 @@ entities: 1507: -1,3 1549: 1,-3 1657: -1,-3 + 1696: 1,3 + 1733: 3,1 + 1762: 10,3 + 1795: -2,1 + 1813: -1,3 + 1855: 1,-3 + 1963: -1,-3 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge @@ -349,6 +388,21 @@ entities: 1590: 6,-1 1622: -3,-1 1658: -1,-3 + 1697: 1,3 + 1713: 2,0 + 1715: 2,1 + 1748: 6,0 + 1749: 6,1 + 1750: 6,2 + 1752: 6,3 + 1775: -3,0 + 1777: -3,1 + 1814: -1,3 + 1856: 1,-3 + 1873: 2,-1 + 1896: 6,-1 + 1928: -3,-1 + 1964: -1,-3 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge @@ -397,6 +451,19 @@ entities: 1621: -3,-1 1637: -2,-1 1653: -1,-3 + 1692: 1,3 + 1809: -1,3 + 1851: 1,-3 + 1872: 2,-1 + 1888: 3,-1 + 1895: 6,-1 + 1898: 7,-1 + 1899: 8,-1 + 1900: 9,-1 + 1901: 10,-1 + 1927: -3,-1 + 1943: -2,-1 + 1959: -1,-3 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge @@ -451,6 +518,21 @@ entities: 1596: 10,-1 1638: -2,-1 1654: -1,-3 + 1693: 1,3 + 1730: 3,0 + 1731: 3,1 + 1757: 10,0 + 1758: 10,1 + 1759: 10,2 + 1760: 10,3 + 1792: -2,0 + 1793: -2,1 + 1810: -1,3 + 1852: 1,-3 + 1889: 3,-1 + 1902: 10,-1 + 1944: -2,-1 + 1960: -1,-3 - node: id: FloorTechMaintDirectionalEdge decals: @@ -498,6 +580,19 @@ entities: 1506: -1,3 1548: 1,-3 1656: -1,-3 + 1695: 1,3 + 1714: 2,1 + 1732: 3,1 + 1751: 6,3 + 1754: 7,3 + 1755: 8,3 + 1756: 9,3 + 1761: 10,3 + 1776: -3,1 + 1794: -2,1 + 1812: -1,3 + 1854: 1,-3 + 1962: -1,-3 - node: zIndex: 1 id: LatticeCornerNE @@ -627,6 +722,31 @@ entities: 1663: -20,-2 1666: -17,-4 1669: -21,1 + 1688: 0,5 + 1704: 1,5 + 1721: 2,5 + 1738: 3,5 + 1783: -3,5 + 1800: -2,5 + 1821: -1,5 + 1834: 0,-5 + 1840: 1,-6 + 1847: 1,-5 + 1861: 2,-6 + 1868: 2,-5 + 1877: 3,-6 + 1884: 3,-5 + 1909: -13,-7 + 1912: -6,-9 + 1916: -3,-6 + 1923: -3,-5 + 1932: -2,-6 + 1939: -2,-5 + 1948: -1,-6 + 1955: -1,-5 + 1969: -20,-2 + 1972: -17,-4 + 1975: -21,1 - node: zIndex: 1 id: LatticeCornerNW @@ -746,6 +866,29 @@ entities: 1644: -1,-6 1652: -1,-5 1683: 16,-2 + 1691: 0,5 + 1707: 1,5 + 1724: 2,5 + 1741: 3,5 + 1786: -3,5 + 1803: -2,5 + 1824: -1,5 + 1837: 0,-5 + 1842: 1,-6 + 1850: 1,-5 + 1863: 2,-6 + 1871: 2,-5 + 1879: 3,-6 + 1887: 3,-5 + 1894: 6,-9 + 1906: 14,-7 + 1918: -3,-6 + 1926: -3,-5 + 1934: -2,-6 + 1942: -2,-5 + 1950: -1,-6 + 1958: -1,-5 + 1989: 16,-2 - node: zIndex: 1 id: LatticeCornerSE @@ -865,6 +1008,29 @@ entities: 1647: -1,-5 1672: -21,5 1675: -19,10 + 1686: 0,5 + 1702: 1,5 + 1710: 1,6 + 1719: 2,5 + 1727: 2,6 + 1736: 3,5 + 1744: 3,6 + 1774: -6,13 + 1781: -3,5 + 1789: -3,6 + 1798: -2,5 + 1806: -2,6 + 1819: -1,5 + 1827: -1,6 + 1832: 0,-5 + 1845: 1,-5 + 1866: 2,-5 + 1882: 3,-5 + 1921: -3,-5 + 1937: -2,-5 + 1953: -1,-5 + 1978: -21,5 + 1981: -19,10 - node: zIndex: 1 id: LatticeCornerSW @@ -989,6 +1155,30 @@ entities: 1635: -2,-5 1651: -1,-5 1680: 16,6 + 1690: 0,5 + 1706: 1,5 + 1712: 1,6 + 1723: 2,5 + 1729: 2,6 + 1740: 3,5 + 1746: 3,6 + 1765: 10,15 + 1768: 14,10 + 1771: 15,9 + 1785: -3,5 + 1791: -3,6 + 1802: -2,5 + 1808: -2,6 + 1823: -1,5 + 1829: -1,6 + 1836: 0,-5 + 1849: 1,-5 + 1870: 2,-5 + 1886: 3,-5 + 1925: -3,-5 + 1941: -2,-5 + 1957: -1,-5 + 1986: 16,6 - node: id: LatticeEdgeE decals: @@ -1162,6 +1352,40 @@ entities: 1667: -21,1 1671: -21,5 1674: -19,10 + 1685: 0,5 + 1701: 1,5 + 1709: 1,6 + 1718: 2,5 + 1726: 2,6 + 1735: 3,5 + 1743: 3,6 + 1773: -6,13 + 1780: -3,5 + 1788: -3,6 + 1797: -2,5 + 1805: -2,6 + 1818: -1,5 + 1826: -1,6 + 1831: 0,-5 + 1838: 1,-6 + 1844: 1,-5 + 1859: 2,-6 + 1865: 2,-5 + 1875: 3,-6 + 1881: 3,-5 + 1907: -13,-7 + 1910: -6,-9 + 1914: -3,-6 + 1920: -3,-5 + 1930: -2,-6 + 1936: -2,-5 + 1946: -1,-6 + 1952: -1,-5 + 1967: -20,-2 + 1970: -17,-4 + 1973: -21,1 + 1977: -21,5 + 1980: -19,10 - node: id: LatticeEdgeN decals: @@ -1315,6 +1539,36 @@ entities: 1665: -17,-4 1668: -21,1 1681: 16,-2 + 1687: 0,5 + 1703: 1,5 + 1720: 2,5 + 1737: 3,5 + 1782: -3,5 + 1799: -2,5 + 1820: -1,5 + 1833: 0,-5 + 1839: 1,-6 + 1846: 1,-5 + 1860: 2,-6 + 1867: 2,-5 + 1876: 3,-6 + 1883: 3,-5 + 1891: 4,-12 + 1892: 6,-9 + 1904: 14,-7 + 1908: -13,-7 + 1911: -6,-9 + 1913: -4,-11 + 1915: -3,-6 + 1922: -3,-5 + 1931: -2,-6 + 1938: -2,-5 + 1947: -1,-6 + 1954: -1,-5 + 1968: -20,-2 + 1971: -17,-4 + 1974: -21,1 + 1987: 16,-2 - node: id: LatticeEdgeS decals: @@ -1468,6 +1722,36 @@ entities: 1676: -4,16 1677: 8,18 1678: 16,6 + 1684: 0,5 + 1700: 1,5 + 1708: 1,6 + 1717: 2,5 + 1725: 2,6 + 1734: 3,5 + 1742: 3,6 + 1747: 4,15 + 1763: 10,15 + 1766: 14,10 + 1769: 15,9 + 1772: -6,13 + 1779: -3,5 + 1787: -3,6 + 1796: -2,5 + 1804: -2,6 + 1817: -1,5 + 1825: -1,6 + 1830: 0,-5 + 1843: 1,-5 + 1864: 2,-5 + 1880: 3,-5 + 1919: -3,-5 + 1935: -2,-5 + 1951: -1,-5 + 1976: -21,5 + 1979: -19,10 + 1982: -4,16 + 1983: 8,18 + 1984: 16,6 - node: id: LatticeEdgeW decals: @@ -1636,6 +1920,39 @@ entities: 1650: -1,-5 1679: 16,6 1682: 16,-2 + 1689: 0,5 + 1705: 1,5 + 1711: 1,6 + 1722: 2,5 + 1728: 2,6 + 1739: 3,5 + 1745: 3,6 + 1764: 10,15 + 1767: 14,10 + 1770: 15,9 + 1784: -3,5 + 1790: -3,6 + 1801: -2,5 + 1807: -2,6 + 1822: -1,5 + 1828: -1,6 + 1835: 0,-5 + 1841: 1,-6 + 1848: 1,-5 + 1862: 2,-6 + 1869: 2,-5 + 1878: 3,-6 + 1885: 3,-5 + 1893: 6,-9 + 1905: 14,-7 + 1917: -3,-6 + 1924: -3,-5 + 1933: -2,-6 + 1940: -2,-5 + 1949: -1,-6 + 1956: -1,-5 + 1985: 16,6 + 1988: 16,-2 - node: color: '#FFFFFFFF' id: TechE @@ -2141,20 +2458,22 @@ entities: - type: GasTileOverlay - type: BecomesStation id: Gargut + - type: SelfDeleteGrid - proto: AAAHardpointFixed entities: - - uid: 45 + - uid: 2 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,8.5 + rot: -3.141591547927584 rad + pos: -17.5,9.5 parent: 1 - type: DeviceLinkSink links: - - 298 + - 724 - type: Physics + fixedRotation: False canCollide: False - - uid: 94 + - uid: 3 components: - type: Transform rot: 3.141592653589793 rad @@ -2162,21 +2481,22 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 298 + - 724 - type: Physics canCollide: False - - uid: 121 + - uid: 4 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,8.5 + rot: -3.141591334627151 rad + pos: -15.5,9.5 parent: 1 - type: DeviceLinkSink links: - - 298 + - 724 - type: Physics + fixedRotation: False canCollide: False - - uid: 521 + - uid: 5 components: - type: Transform rot: 3.141592653589793 rad @@ -2184,28 +2504,34 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 298 + - 724 - type: Physics canCollide: False -- proto: AAAHardpointMediumBallistic - entities: - - uid: 71 + - uid: 7 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,9.5 parent: 1 + - type: DeviceLinkSink + links: + - 724 - type: Physics canCollide: False - - uid: 125 + - uid: 1429 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,10.5 parent: 1 + - type: DeviceLinkSink + links: + - 724 - type: Physics canCollide: False - - uid: 202 +- proto: AAAHardpointMediumBallistic + entities: + - uid: 8 components: - type: Transform rot: 3.141592653589793 rad @@ -2213,7 +2539,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 222 + - uid: 9 components: - type: Transform rot: 3.141592653589793 rad @@ -2221,14 +2547,14 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 429 + - uid: 10 components: - type: Transform pos: 17.5,-0.5 parent: 1 - type: Physics canCollide: False - - uid: 525 + - uid: 11 components: - type: Transform rot: 3.141592653589793 rad @@ -2236,7 +2562,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 1351 + - uid: 12 components: - type: Transform pos: -15.5,-4.5 @@ -2245,21 +2571,21 @@ entities: canCollide: False - proto: AAAHardpointSmallBallistic entities: - - uid: 244 + - uid: 13 components: - type: Transform pos: -18.5,-2.5 parent: 1 - type: Physics canCollide: False - - uid: 388 + - uid: 14 components: - type: Transform pos: 5.5,-9.5 parent: 1 - type: Physics canCollide: False - - uid: 696 + - uid: 15 components: - type: Transform rot: 3.141592653589793 rad @@ -2267,7 +2593,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 700 + - uid: 16 components: - type: Transform rot: 3.141592653589793 rad @@ -2275,7 +2601,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 702 + - uid: 17 components: - type: Transform rot: 3.141592653589793 rad @@ -2283,28 +2609,28 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 703 + - uid: 18 components: - type: Transform pos: -6.5,-7.5 parent: 1 - type: Physics canCollide: False - - uid: 712 + - uid: 19 components: - type: Transform pos: 15.5,-5.5 parent: 1 - type: Physics canCollide: False - - uid: 717 + - uid: 20 components: - type: Transform pos: -4.5,-9.5 parent: 1 - type: Physics canCollide: False - - uid: 1003 + - uid: 21 components: - type: Transform pos: 8.5,-7.5 @@ -2313,7 +2639,7 @@ entities: canCollide: False - proto: AirCanister entities: - - uid: 511 + - uid: 22 components: - type: Transform anchored: True @@ -2325,44 +2651,44 @@ entities: bodyType: Static - proto: AirlockCommand entities: - - uid: 291 + - uid: 23 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,8.5 parent: 1 - - uid: 293 + - uid: 24 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,7.5 parent: 1 - - uid: 311 + - uid: 25 components: - type: Transform pos: -11.5,5.5 parent: 1 - proto: AirlockCommandHorizontal entities: - - uid: 65 + - uid: 26 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,9.5 parent: 1 - - uid: 176 + - uid: 27 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,8.5 parent: 1 - - uid: 288 + - uid: 28 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-0.5 parent: 1 - - uid: 707 + - uid: 29 components: - type: Transform rot: -1.5707963267948966 rad @@ -2370,150 +2696,150 @@ entities: parent: 1 - proto: AirlockCommandLockedNCWL entities: - - uid: 299 + - uid: 30 components: - type: Transform pos: -14.5,5.5 parent: 1 - - uid: 301 + - uid: 31 components: - type: Transform pos: -13.5,1.5 parent: 1 - - uid: 305 + - uid: 32 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 332 + - uid: 33 components: - type: Transform pos: -4.5,-4.5 parent: 1 - - uid: 391 + - uid: 34 components: - type: Transform pos: 11.5,4.5 parent: 1 - - uid: 447 + - uid: 35 components: - type: Transform pos: 7.5,-2.5 parent: 1 - - uid: 448 + - uid: 36 components: - type: Transform pos: 9.5,4.5 parent: 1 - - uid: 492 + - uid: 37 components: - type: Transform pos: 9.5,7.5 parent: 1 - - uid: 496 + - uid: 38 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 689 + - uid: 39 components: - type: Transform pos: 9.5,10.5 parent: 1 - proto: AirlockCommandLockedNCWLHorizontal entities: - - uid: 32 + - uid: 40 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 33 + - uid: 41 components: - type: Transform pos: -12.5,4.5 parent: 1 - - uid: 193 + - uid: 42 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 289 + - uid: 43 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 290 + - uid: 44 components: - type: Transform pos: -16.5,3.5 parent: 1 - - uid: 319 + - uid: 45 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 410 + - uid: 46 components: - type: Transform pos: 8.5,5.5 parent: 1 - - uid: 443 + - uid: 47 components: - type: Transform pos: -12.5,-3.5 parent: 1 - - uid: 445 + - uid: 48 components: - type: Transform pos: 14.5,2.5 parent: 1 - - uid: 446 + - uid: 49 components: - type: Transform pos: -6.5,-0.5 parent: 1 - - uid: 1399 + - uid: 50 components: - type: Transform pos: 12.5,7.5 parent: 1 - - uid: 1433 + - uid: 51 components: - type: Transform pos: -6.5,6.5 parent: 1 - proto: AirlockShuttle entities: - - uid: 273 + - uid: 52 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 274 + - uid: 53 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,6.5 parent: 1 - - uid: 275 + - uid: 54 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,1.5 parent: 1 - - uid: 276 + - uid: 55 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,3.5 parent: 1 - - uid: 282 + - uid: 56 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,2.5 parent: 1 - - uid: 357 + - uid: 57 components: - type: Transform rot: -1.5707963267948966 rad @@ -2521,7 +2847,7 @@ entities: parent: 1 - proto: AmeController entities: - - uid: 342 + - uid: 58 components: - type: Transform pos: 12.5,-1.5 @@ -2533,40 +2859,40 @@ entities: fuelSlot: !type:ContainerSlot showEnts: False occludes: True - ent: 343 + ent: 59 - proto: AmeJar entities: - - uid: 343 + - uid: 59 components: - type: Transform - parent: 342 + parent: 58 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - - uid: 510 + - uid: 60 components: - type: Transform pos: 14.223116,-0.65093017 parent: 1 - - uid: 737 + - uid: 61 components: - type: Transform pos: 14.762178,-0.25249267 parent: 1 - proto: AmeShielding entities: - - uid: 320 + - uid: 62 components: - type: Transform pos: 13.5,-3.5 parent: 1 - - uid: 321 + - uid: 63 components: - type: Transform pos: 11.5,-4.5 parent: 1 - - uid: 322 + - uid: 64 components: - type: Transform pos: 11.5,-3.5 @@ -2574,37 +2900,37 @@ entities: - type: PointLight radius: 1 enabled: True - - uid: 323 + - uid: 65 components: - type: Transform pos: 13.5,-4.5 parent: 1 - - uid: 324 + - uid: 66 components: - type: Transform pos: 13.5,-2.5 parent: 1 - - uid: 325 + - uid: 67 components: - type: Transform pos: 12.5,-2.5 parent: 1 - - uid: 326 + - uid: 68 components: - type: Transform pos: 11.5,-2.5 parent: 1 - - uid: 327 + - uid: 69 components: - type: Transform pos: 10.5,-3.5 parent: 1 - - uid: 328 + - uid: 70 components: - type: Transform pos: 10.5,-4.5 parent: 1 - - uid: 329 + - uid: 71 components: - type: Transform pos: 12.5,-3.5 @@ -2612,33 +2938,33 @@ entities: - type: PointLight radius: 1 enabled: True - - uid: 330 + - uid: 72 components: - type: Transform pos: 10.5,-2.5 parent: 1 - - uid: 331 + - uid: 73 components: - type: Transform pos: 12.5,-4.5 parent: 1 - proto: APCBasic entities: - - uid: 747 + - uid: 74 components: - type: Transform pos: 8.5,9.5 parent: 1 - proto: APCHighCapacity entities: - - uid: 569 + - uid: 75 components: - type: Transform pos: 10.5,4.5 parent: 1 - proto: Ashtray entities: - - uid: 576 + - uid: 76 components: - type: Transform pos: -11.702169,-1.0455792 @@ -2648,99 +2974,99 @@ entities: linearDamping: 0 - proto: AtmosDeviceFanTiny entities: - - uid: 524 + - uid: 77 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,0.5 parent: 1 - - uid: 640 + - uid: 78 components: - type: Transform pos: -20.5,2.5 parent: 1 - - uid: 641 + - uid: 79 components: - type: Transform pos: -20.5,3.5 parent: 1 - - uid: 642 + - uid: 80 components: - type: Transform pos: -20.5,4.5 parent: 1 - - uid: 643 + - uid: 81 components: - type: Transform pos: -17.5,10.5 parent: 1 - - uid: 644 + - uid: 82 components: - type: Transform pos: -15.5,10.5 parent: 1 - - uid: 645 + - uid: 83 components: - type: Transform pos: -13.5,8.5 parent: 1 - - uid: 646 + - uid: 84 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 647 + - uid: 85 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 648 + - uid: 86 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 649 + - uid: 87 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 650 + - uid: 88 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 651 + - uid: 89 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 652 + - uid: 90 components: - type: Transform pos: 18.5,1.5 parent: 1 - - uid: 653 + - uid: 91 components: - type: Transform pos: 18.5,2.5 parent: 1 - - uid: 654 + - uid: 92 components: - type: Transform pos: 18.5,3.5 parent: 1 - - uid: 655 + - uid: 93 components: - type: Transform pos: 13.5,10.5 parent: 1 - - uid: 711 + - uid: 94 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-3.5 parent: 1 - - uid: 746 + - uid: 95 components: - type: Transform rot: 3.141592653589793 rad @@ -2748,31 +3074,35 @@ entities: parent: 1 - proto: BarricadeBlock entities: - - uid: 509 + - uid: 96 components: - type: Transform pos: 5.5,7.5 parent: 1 - proto: BaseAPC entities: - - uid: 745 + - uid: 97 components: - type: Transform pos: -9.5,-2.5 parent: 1 - - uid: 1001 + - uid: 98 components: - type: Transform pos: -13.5,5.5 parent: 1 - proto: BaseWeaponTurretSlugspitter entities: - - uid: 362 + - uid: 99 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,12.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -2783,15 +3113,27 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon linkedConsoleIds: - - 407 - linkedConsoleId: 407 - - uid: 526 + - 727 + linkedConsoleId: 727 + - uid: 100 components: - type: Transform pos: 17.5,-0.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -2802,16 +3144,28 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon linkedConsoleIds: - - 407 - linkedConsoleId: 407 - - uid: 690 + - 727 + linkedConsoleId: 727 + - uid: 101 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,13.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -2822,16 +3176,28 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon linkedConsoleIds: - - 407 - linkedConsoleId: 407 - - uid: 714 + - 727 + linkedConsoleId: 727 + - uid: 102 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,11.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -2842,15 +3208,27 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon linkedConsoleIds: - - 407 - linkedConsoleId: 407 - - uid: 718 + - 727 + linkedConsoleId: 727 + - uid: 103 components: - type: Transform pos: -15.5,-4.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -2861,55 +3239,61 @@ entities: showEnts: False occludes: True ent: null - - type: PointCannon - linkedConsoleIds: - - 407 - linkedConsoleId: 407 -- proto: BlastDoor - entities: - - uid: 60 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: PointCannon + linkedConsoleIds: + - 727 + linkedConsoleId: 727 +- proto: BlastDoor + entities: + - uid: 104 components: - type: Transform pos: -17.5,10.5 parent: 1 - type: DeviceLinkSink links: - - 686 - - 685 - - uid: 61 + - 1074 + - uid: 105 components: - type: Transform pos: -15.5,10.5 parent: 1 - type: DeviceLinkSink links: - - 687 - - 685 - - uid: 86 + - 1074 + - uid: 106 components: - type: Transform pos: 0.5,-3.5 parent: 1 - type: DeviceLinkSink links: - - 732 - - uid: 87 + - 1075 + - uid: 107 components: - type: Transform pos: -0.5,-3.5 parent: 1 - type: DeviceLinkSink links: - - 732 - - uid: 88 + - 1075 + - uid: 108 components: - type: Transform pos: 1.5,-3.5 parent: 1 - type: DeviceLinkSink links: - - 732 - - uid: 89 + - 1075 + - uid: 109 components: - type: Transform rot: 3.141592653589793 rad @@ -2917,8 +3301,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 733 - - uid: 90 + - 1076 + - uid: 110 components: - type: Transform rot: 3.141592653589793 rad @@ -2926,8 +3310,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 733 - - uid: 91 + - 1076 + - uid: 111 components: - type: Transform rot: 3.141592653589793 rad @@ -2935,8 +3319,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 733 - - uid: 280 + - 1076 + - uid: 112 components: - type: Transform rot: -1.5707963267948966 rad @@ -2944,8 +3328,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1341 - - uid: 356 + - 1077 + - uid: 113 components: - type: Transform rot: 1.5707963267948966 rad @@ -2953,25 +3337,25 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1342 - - uid: 484 + - 1078 + - uid: 114 components: - type: Transform pos: 7.5,11.5 parent: 1 - type: DeviceLinkSink links: - - 626 - - uid: 523 + - 1073 + - uid: 115 components: - type: Transform pos: 13.5,10.5 parent: 1 - type: DeviceLinkSink links: - - 688 - - 1343 - - uid: 706 + - 1137 + - 1079 + - uid: 116 components: - type: Transform rot: 3.141592653589793 rad @@ -2979,8 +3363,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 527 - - uid: 1356 + - 1072 + - uid: 117 components: - type: Transform rot: 3.141592653589793 rad @@ -2988,8 +3372,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1359 - - uid: 1357 + - 1081 + - uid: 118 components: - type: Transform rot: -1.5707963267948966 rad @@ -2997,24 +3381,24 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1358 + - 1080 - proto: Bookshelf entities: - - uid: 552 + - uid: 119 components: - type: Transform pos: -7.5,2.5 parent: 1 - proto: BoriaticFuelTankFull entities: - - uid: 402 + - uid: 120 components: - type: Transform pos: -11.5,-4.5 parent: 1 - proto: BoriaticGeneratorEinsteinShuttle entities: - - uid: 384 + - uid: 121 components: - type: Transform pos: -7.5,7.5 @@ -3025,80 +3409,80 @@ entities: bodyType: Static - proto: BoxBeaker entities: - - uid: 589 + - uid: 122 components: - type: Transform pos: -17.67577,-0.4951434 parent: 1 - proto: BoxFolderBlack entities: - - uid: 573 + - uid: 123 components: - type: Transform pos: -11.624044,-1.4801016 parent: 1 - proto: BoxFolderYellow entities: - - uid: 574 + - uid: 124 components: - type: Transform pos: -11.264669,-1.4957266 parent: 1 - proto: BoxPillCanister entities: - - uid: 590 + - uid: 125 components: - type: Transform pos: -17.26952,-0.5107684 parent: 1 - proto: ButtonFrameCaution entities: - - uid: 567 + - uid: 126 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,8.5 parent: 1 - - uid: 709 + - uid: 127 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,0.5 parent: 1 - - uid: 730 + - uid: 128 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 1 - - uid: 731 + - uid: 129 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 1202 + - uid: 130 components: - type: Transform pos: -19.5,5.5 parent: 1 - - uid: 1340 + - uid: 131 components: - type: Transform pos: 17.5,4.5 parent: 1 - - uid: 1344 + - uid: 132 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,7.5 parent: 1 - - uid: 1397 + - uid: 133 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-2.5 parent: 1 - - uid: 1398 + - uid: 134 components: - type: Transform rot: -1.5707963267948966 rad @@ -3106,7 +3490,7 @@ entities: parent: 1 - proto: ButtonFrameCautionSecurity entities: - - uid: 467 + - uid: 135 components: - type: Transform rot: -1.5707963267948966 rad @@ -3114,2268 +3498,2268 @@ entities: parent: 1 - proto: CableApcExtension entities: - - uid: 339 + - uid: 136 components: - type: Transform pos: 10.5,4.5 parent: 1 - - uid: 340 + - uid: 137 components: - type: Transform pos: 10.5,2.5 parent: 1 - - uid: 354 + - uid: 138 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 519 + - uid: 139 components: - type: Transform pos: 10.5,3.5 parent: 1 - - uid: 625 + - uid: 140 components: - type: Transform pos: 7.5,-4.5 parent: 1 - - uid: 639 + - uid: 141 components: - type: Transform pos: -7.5,10.5 parent: 1 - - uid: 658 + - uid: 142 components: - type: Transform pos: -11.5,9.5 parent: 1 - - uid: 744 + - uid: 143 components: - type: Transform pos: -12.5,-4.5 parent: 1 - - uid: 810 + - uid: 144 components: - type: Transform pos: -12.5,-5.5 parent: 1 - - uid: 846 + - uid: 145 components: - type: Transform pos: -14.5,-3.5 parent: 1 - - uid: 848 + - uid: 146 components: - type: Transform pos: 10.5,1.5 parent: 1 - - uid: 849 + - uid: 147 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 850 + - uid: 148 components: - type: Transform pos: -12.5,-3.5 parent: 1 - - uid: 851 + - uid: 149 components: - type: Transform pos: -12.5,-2.5 parent: 1 - - uid: 852 + - uid: 150 components: - type: Transform pos: -12.5,-1.5 parent: 1 - - uid: 853 + - uid: 151 components: - type: Transform pos: -12.5,-0.5 parent: 1 - - uid: 854 + - uid: 152 components: - type: Transform pos: -12.5,0.5 parent: 1 - - uid: 855 + - uid: 153 components: - type: Transform pos: -12.5,1.5 parent: 1 - - uid: 856 + - uid: 154 components: - type: Transform pos: -12.5,2.5 parent: 1 - - uid: 857 + - uid: 155 components: - type: Transform pos: -12.5,3.5 parent: 1 - - uid: 858 + - uid: 156 components: - type: Transform pos: -12.5,4.5 parent: 1 - - uid: 859 + - uid: 157 components: - type: Transform pos: -12.5,5.5 parent: 1 - - uid: 860 + - uid: 158 components: - type: Transform pos: -12.5,6.5 parent: 1 - - uid: 861 + - uid: 159 components: - type: Transform pos: -12.5,7.5 parent: 1 - - uid: 862 + - uid: 160 components: - type: Transform pos: -12.5,8.5 parent: 1 - - uid: 863 + - uid: 161 components: - type: Transform pos: -12.5,9.5 parent: 1 - - uid: 864 + - uid: 162 components: - type: Transform pos: -12.5,10.5 parent: 1 - - uid: 865 + - uid: 163 components: - type: Transform pos: -9.5,-6.5 parent: 1 - - uid: 866 + - uid: 164 components: - type: Transform pos: -9.5,-5.5 parent: 1 - - uid: 867 + - uid: 165 components: - type: Transform pos: -9.5,-4.5 parent: 1 - - uid: 868 + - uid: 166 components: - type: Transform pos: -9.5,-3.5 parent: 1 - - uid: 869 + - uid: 167 components: - type: Transform pos: -9.5,-2.5 parent: 1 - - uid: 870 + - uid: 168 components: - type: Transform pos: -9.5,-1.5 parent: 1 - - uid: 871 + - uid: 169 components: - type: Transform pos: -9.5,-0.5 parent: 1 - - uid: 872 + - uid: 170 components: - type: Transform pos: -9.5,0.5 parent: 1 - - uid: 873 + - uid: 171 components: - type: Transform pos: -9.5,1.5 parent: 1 - - uid: 874 + - uid: 172 components: - type: Transform pos: -9.5,2.5 parent: 1 - - uid: 875 + - uid: 173 components: - type: Transform pos: -9.5,3.5 parent: 1 - - uid: 876 + - uid: 174 components: - type: Transform pos: -9.5,4.5 parent: 1 - - uid: 877 + - uid: 175 components: - type: Transform pos: -9.5,5.5 parent: 1 - - uid: 878 + - uid: 176 components: - type: Transform pos: -9.5,6.5 parent: 1 - - uid: 879 + - uid: 177 components: - type: Transform pos: -9.5,7.5 parent: 1 - - uid: 880 + - uid: 178 components: - type: Transform pos: -9.5,8.5 parent: 1 - - uid: 881 + - uid: 179 components: - type: Transform pos: -9.5,9.5 parent: 1 - - uid: 882 + - uid: 180 components: - type: Transform pos: -9.5,10.5 parent: 1 - - uid: 883 + - uid: 181 components: - type: Transform pos: -9.5,11.5 parent: 1 - - uid: 884 + - uid: 182 components: - type: Transform pos: -6.5,-7.5 parent: 1 - - uid: 885 + - uid: 183 components: - type: Transform pos: -6.5,-6.5 parent: 1 - - uid: 886 + - uid: 184 components: - type: Transform pos: -6.5,-5.5 parent: 1 - - uid: 887 + - uid: 185 components: - type: Transform pos: -6.5,-4.5 parent: 1 - - uid: 888 + - uid: 186 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 889 + - uid: 187 components: - type: Transform pos: -6.5,-2.5 parent: 1 - - uid: 890 + - uid: 188 components: - type: Transform pos: -6.5,-1.5 parent: 1 - - uid: 891 + - uid: 189 components: - type: Transform pos: -6.5,-0.5 parent: 1 - - uid: 892 + - uid: 190 components: - type: Transform pos: -6.5,0.5 parent: 1 - - uid: 893 + - uid: 191 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 894 + - uid: 192 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 895 + - uid: 193 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 896 + - uid: 194 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 897 + - uid: 195 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 898 + - uid: 196 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 899 + - uid: 197 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 900 + - uid: 198 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 901 + - uid: 199 components: - type: Transform pos: -6.5,9.5 parent: 1 - - uid: 902 + - uid: 200 components: - type: Transform pos: -6.5,10.5 parent: 1 - - uid: 903 + - uid: 201 components: - type: Transform pos: -6.5,11.5 parent: 1 - - uid: 904 + - uid: 202 components: - type: Transform pos: -3.5,-9.5 parent: 1 - - uid: 905 + - uid: 203 components: - type: Transform pos: -3.5,-8.5 parent: 1 - - uid: 906 + - uid: 204 components: - type: Transform pos: -3.5,-7.5 parent: 1 - - uid: 907 + - uid: 205 components: - type: Transform pos: -3.5,-6.5 parent: 1 - - uid: 908 + - uid: 206 components: - type: Transform pos: -3.5,-5.5 parent: 1 - - uid: 909 + - uid: 207 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 910 + - uid: 208 components: - type: Transform pos: -3.5,-3.5 parent: 1 - - uid: 911 + - uid: 209 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 912 + - uid: 210 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 913 + - uid: 211 components: - type: Transform pos: -3.5,-0.5 parent: 1 - - uid: 914 + - uid: 212 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 915 + - uid: 213 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 916 + - uid: 214 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 917 + - uid: 215 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 918 + - uid: 216 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 919 + - uid: 217 components: - type: Transform pos: -3.5,5.5 parent: 1 - - uid: 920 + - uid: 218 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 921 + - uid: 219 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 922 + - uid: 220 components: - type: Transform pos: -3.5,8.5 parent: 1 - - uid: 923 + - uid: 221 components: - type: Transform pos: -3.5,9.5 parent: 1 - - uid: 924 + - uid: 222 components: - type: Transform pos: -3.5,10.5 parent: 1 - - uid: 925 + - uid: 223 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 926 + - uid: 224 components: - type: Transform pos: -3.5,12.5 parent: 1 - - uid: 927 + - uid: 225 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 928 + - uid: 226 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 929 + - uid: 227 components: - type: Transform pos: -3.5,15.5 parent: 1 - - uid: 930 + - uid: 228 components: - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 931 + - uid: 229 components: - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 932 + - uid: 230 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 933 + - uid: 231 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 934 + - uid: 232 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 935 + - uid: 233 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 936 + - uid: 234 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 937 + - uid: 235 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 938 + - uid: 236 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 939 + - uid: 237 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 940 + - uid: 238 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 941 + - uid: 239 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 942 + - uid: 240 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 943 + - uid: 241 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 944 + - uid: 242 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 945 + - uid: 243 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 946 + - uid: 244 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 947 + - uid: 245 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 948 + - uid: 246 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 949 + - uid: 247 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 950 + - uid: 248 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 951 + - uid: 249 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 952 + - uid: 250 components: - type: Transform pos: 5.5,-9.5 parent: 1 - - uid: 953 + - uid: 251 components: - type: Transform pos: 5.5,-8.5 parent: 1 - - uid: 954 + - uid: 252 components: - type: Transform pos: 5.5,-7.5 parent: 1 - - uid: 955 + - uid: 253 components: - type: Transform pos: 5.5,-6.5 parent: 1 - - uid: 956 + - uid: 254 components: - type: Transform pos: 5.5,-5.5 parent: 1 - - uid: 957 + - uid: 255 components: - type: Transform pos: 5.5,-4.5 parent: 1 - - uid: 958 + - uid: 256 components: - type: Transform pos: 5.5,-3.5 parent: 1 - - uid: 959 + - uid: 257 components: - type: Transform pos: 5.5,-2.5 parent: 1 - - uid: 960 + - uid: 258 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 961 + - uid: 259 components: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 962 + - uid: 260 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 963 + - uid: 261 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 964 + - uid: 262 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 965 + - uid: 263 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 966 + - uid: 264 components: - type: Transform pos: 5.5,4.5 parent: 1 - - uid: 967 + - uid: 265 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 968 + - uid: 266 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 969 + - uid: 267 components: - type: Transform pos: 5.5,7.5 parent: 1 - - uid: 970 + - uid: 268 components: - type: Transform pos: 5.5,8.5 parent: 1 - - uid: 971 + - uid: 269 components: - type: Transform pos: 5.5,9.5 parent: 1 - - uid: 972 + - uid: 270 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 973 + - uid: 271 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 974 + - uid: 272 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 975 + - uid: 273 components: - type: Transform pos: 8.5,-7.5 parent: 1 - - uid: 976 + - uid: 274 components: - type: Transform pos: 8.5,-6.5 parent: 1 - - uid: 977 + - uid: 275 components: - type: Transform pos: 8.5,-5.5 parent: 1 - - uid: 978 + - uid: 276 components: - type: Transform pos: 8.5,-4.5 parent: 1 - - uid: 979 + - uid: 277 components: - type: Transform pos: 8.5,-3.5 parent: 1 - - uid: 980 + - uid: 278 components: - type: Transform pos: 8.5,-2.5 parent: 1 - - uid: 981 + - uid: 279 components: - type: Transform pos: 8.5,-1.5 parent: 1 - - uid: 982 + - uid: 280 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 983 + - uid: 281 components: - type: Transform pos: 8.5,0.5 parent: 1 - - uid: 984 + - uid: 282 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 985 + - uid: 283 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 986 + - uid: 284 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 987 + - uid: 285 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 988 + - uid: 286 components: - type: Transform pos: 8.5,5.5 parent: 1 - - uid: 989 + - uid: 287 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 990 + - uid: 288 components: - type: Transform pos: 8.5,7.5 parent: 1 - - uid: 991 + - uid: 289 components: - type: Transform pos: 8.5,8.5 parent: 1 - - uid: 992 + - uid: 290 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 993 + - uid: 291 components: - type: Transform pos: 8.5,10.5 parent: 1 - - uid: 994 + - uid: 292 components: - type: Transform pos: 8.5,11.5 parent: 1 - - uid: 995 + - uid: 293 components: - type: Transform pos: 8.5,12.5 parent: 1 - - uid: 996 + - uid: 294 components: - type: Transform pos: 8.5,13.5 parent: 1 - - uid: 997 + - uid: 295 components: - type: Transform pos: 8.5,14.5 parent: 1 - - uid: 998 + - uid: 296 components: - type: Transform pos: 8.5,15.5 parent: 1 - - uid: 999 + - uid: 297 components: - type: Transform pos: 8.5,16.5 parent: 1 - - uid: 1000 + - uid: 298 components: - type: Transform pos: 8.5,17.5 parent: 1 - - uid: 1002 + - uid: 299 components: - type: Transform pos: -13.5,5.5 parent: 1 - - uid: 1004 + - uid: 300 components: - type: Transform pos: 11.5,1.5 parent: 1 - - uid: 1005 + - uid: 301 components: - type: Transform pos: 11.5,-6.5 parent: 1 - - uid: 1006 + - uid: 302 components: - type: Transform pos: 11.5,-5.5 parent: 1 - - uid: 1007 + - uid: 303 components: - type: Transform pos: 11.5,-4.5 parent: 1 - - uid: 1008 + - uid: 304 components: - type: Transform pos: 11.5,-3.5 parent: 1 - - uid: 1009 + - uid: 305 components: - type: Transform pos: 11.5,-2.5 parent: 1 - - uid: 1010 + - uid: 306 components: - type: Transform pos: 11.5,-1.5 parent: 1 - - uid: 1011 + - uid: 307 components: - type: Transform pos: 11.5,-0.5 parent: 1 - - uid: 1012 + - uid: 308 components: - type: Transform pos: 11.5,0.5 parent: 1 - - uid: 1013 + - uid: 309 components: - type: Transform pos: 11.5,2.5 parent: 1 - - uid: 1014 + - uid: 310 components: - type: Transform pos: 11.5,3.5 parent: 1 - - uid: 1015 + - uid: 311 components: - type: Transform pos: 11.5,4.5 parent: 1 - - uid: 1016 + - uid: 312 components: - type: Transform pos: 11.5,5.5 parent: 1 - - uid: 1017 + - uid: 313 components: - type: Transform pos: 11.5,6.5 parent: 1 - - uid: 1018 + - uid: 314 components: - type: Transform pos: 11.5,7.5 parent: 1 - - uid: 1019 + - uid: 315 components: - type: Transform pos: 11.5,8.5 parent: 1 - - uid: 1020 + - uid: 316 components: - type: Transform pos: 11.5,9.5 parent: 1 - - uid: 1021 + - uid: 317 components: - type: Transform pos: 11.5,10.5 parent: 1 - - uid: 1022 + - uid: 318 components: - type: Transform pos: 11.5,11.5 parent: 1 - - uid: 1023 + - uid: 319 components: - type: Transform pos: 11.5,12.5 parent: 1 - - uid: 1024 + - uid: 320 components: - type: Transform pos: 11.5,13.5 parent: 1 - - uid: 1025 + - uid: 321 components: - type: Transform pos: 14.5,9.5 parent: 1 - - uid: 1026 + - uid: 322 components: - type: Transform pos: 14.5,8.5 parent: 1 - - uid: 1027 + - uid: 323 components: - type: Transform pos: 14.5,7.5 parent: 1 - - uid: 1028 + - uid: 324 components: - type: Transform pos: 14.5,6.5 parent: 1 - - uid: 1029 + - uid: 325 components: - type: Transform pos: 14.5,5.5 parent: 1 - - uid: 1030 + - uid: 326 components: - type: Transform pos: 14.5,4.5 parent: 1 - - uid: 1031 + - uid: 327 components: - type: Transform pos: 14.5,3.5 parent: 1 - - uid: 1032 + - uid: 328 components: - type: Transform pos: 14.5,2.5 parent: 1 - - uid: 1033 + - uid: 329 components: - type: Transform pos: 14.5,1.5 parent: 1 - - uid: 1034 + - uid: 330 components: - type: Transform pos: 14.5,0.5 parent: 1 - - uid: 1035 + - uid: 331 components: - type: Transform pos: 14.5,-0.5 parent: 1 - - uid: 1036 + - uid: 332 components: - type: Transform pos: 14.5,-1.5 parent: 1 - - uid: 1037 + - uid: 333 components: - type: Transform pos: 14.5,-2.5 parent: 1 - - uid: 1038 + - uid: 334 components: - type: Transform pos: 14.5,-3.5 parent: 1 - - uid: 1039 + - uid: 335 components: - type: Transform pos: 14.5,-4.5 parent: 1 - - uid: 1040 + - uid: 336 components: - type: Transform pos: 14.5,-5.5 parent: 1 - - uid: 1041 + - uid: 337 components: - type: Transform pos: 17.5,-0.5 parent: 1 - - uid: 1042 + - uid: 338 components: - type: Transform pos: 17.5,0.5 parent: 1 - - uid: 1043 + - uid: 339 components: - type: Transform pos: 17.5,1.5 parent: 1 - - uid: 1044 + - uid: 340 components: - type: Transform pos: 17.5,2.5 parent: 1 - - uid: 1045 + - uid: 341 components: - type: Transform pos: 17.5,3.5 parent: 1 - - uid: 1046 + - uid: 342 components: - type: Transform pos: 17.5,4.5 parent: 1 - - uid: 1047 + - uid: 343 components: - type: Transform pos: 17.5,5.5 parent: 1 - - uid: 1048 + - uid: 344 components: - type: Transform pos: -15.5,-4.5 parent: 1 - - uid: 1049 + - uid: 345 components: - type: Transform pos: -15.5,-3.5 parent: 1 - - uid: 1050 + - uid: 346 components: - type: Transform pos: -15.5,-2.5 parent: 1 - - uid: 1051 + - uid: 347 components: - type: Transform pos: -15.5,-1.5 parent: 1 - - uid: 1052 + - uid: 348 components: - type: Transform pos: -15.5,-0.5 parent: 1 - - uid: 1053 + - uid: 349 components: - type: Transform pos: -15.5,0.5 parent: 1 - - uid: 1054 + - uid: 350 components: - type: Transform pos: -15.5,1.5 parent: 1 - - uid: 1055 + - uid: 351 components: - type: Transform pos: -15.5,2.5 parent: 1 - - uid: 1056 + - uid: 352 components: - type: Transform pos: -15.5,3.5 parent: 1 - - uid: 1057 + - uid: 353 components: - type: Transform pos: -15.5,4.5 parent: 1 - - uid: 1058 + - uid: 354 components: - type: Transform pos: -15.5,5.5 parent: 1 - - uid: 1059 + - uid: 355 components: - type: Transform pos: -15.5,6.5 parent: 1 - - uid: 1060 + - uid: 356 components: - type: Transform pos: -15.5,7.5 parent: 1 - - uid: 1061 + - uid: 357 components: - type: Transform pos: -15.5,8.5 parent: 1 - - uid: 1062 + - uid: 358 components: - type: Transform pos: -15.5,9.5 parent: 1 - - uid: 1063 + - uid: 359 components: - type: Transform pos: -15.5,10.5 parent: 1 - - uid: 1064 + - uid: 360 components: - type: Transform pos: -18.5,-1.5 parent: 1 - - uid: 1065 + - uid: 361 components: - type: Transform pos: -18.5,-0.5 parent: 1 - - uid: 1066 + - uid: 362 components: - type: Transform pos: -18.5,0.5 parent: 1 - - uid: 1067 + - uid: 363 components: - type: Transform pos: -18.5,1.5 parent: 1 - - uid: 1068 + - uid: 364 components: - type: Transform pos: -18.5,2.5 parent: 1 - - uid: 1069 + - uid: 365 components: - type: Transform pos: -18.5,3.5 parent: 1 - - uid: 1070 + - uid: 366 components: - type: Transform pos: -18.5,4.5 parent: 1 - - uid: 1071 + - uid: 367 components: - type: Transform pos: -18.5,5.5 parent: 1 - - uid: 1072 + - uid: 368 components: - type: Transform pos: -18.5,6.5 parent: 1 - - uid: 1073 + - uid: 369 components: - type: Transform pos: -18.5,7.5 parent: 1 - - uid: 1074 + - uid: 370 components: - type: Transform pos: -18.5,8.5 parent: 1 - - uid: 1075 + - uid: 371 components: - type: Transform pos: -18.5,9.5 parent: 1 - - uid: 1076 + - uid: 372 components: - type: Transform pos: 13.5,-3.5 parent: 1 - - uid: 1077 + - uid: 373 components: - type: Transform pos: 12.5,-3.5 parent: 1 - - uid: 1078 + - uid: 374 components: - type: Transform pos: 10.5,-3.5 parent: 1 - - uid: 1079 + - uid: 375 components: - type: Transform pos: 9.5,-3.5 parent: 1 - - uid: 1080 + - uid: 376 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 1081 + - uid: 377 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 1082 + - uid: 378 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 1083 + - uid: 379 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 1084 + - uid: 380 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 1085 + - uid: 381 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 1086 + - uid: 382 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 1087 + - uid: 383 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 1088 + - uid: 384 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 1089 + - uid: 385 components: - type: Transform pos: -4.5,-3.5 parent: 1 - - uid: 1090 + - uid: 386 components: - type: Transform pos: -8.5,-3.5 parent: 1 - - uid: 1091 + - uid: 387 components: - type: Transform pos: -7.5,-3.5 parent: 1 - - uid: 1092 + - uid: 388 components: - type: Transform pos: -11.5,-3.5 parent: 1 - - uid: 1093 + - uid: 389 components: - type: Transform pos: -10.5,-3.5 parent: 1 - - uid: 1094 + - uid: 390 components: - type: Transform pos: -13.5,-3.5 parent: 1 - - uid: 1095 + - uid: 391 components: - type: Transform pos: -19.5,-0.5 parent: 1 - - uid: 1096 + - uid: 392 components: - type: Transform pos: -17.5,-0.5 parent: 1 - - uid: 1097 + - uid: 393 components: - type: Transform pos: -16.5,-0.5 parent: 1 - - uid: 1098 + - uid: 394 components: - type: Transform pos: -14.5,-0.5 parent: 1 - - uid: 1099 + - uid: 395 components: - type: Transform pos: -13.5,-0.5 parent: 1 - - uid: 1100 + - uid: 396 components: - type: Transform pos: -11.5,-0.5 parent: 1 - - uid: 1101 + - uid: 397 components: - type: Transform pos: -10.5,-0.5 parent: 1 - - uid: 1102 + - uid: 398 components: - type: Transform pos: -8.5,-0.5 parent: 1 - - uid: 1103 + - uid: 399 components: - type: Transform pos: -7.5,-0.5 parent: 1 - - uid: 1104 + - uid: 400 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 1105 + - uid: 401 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 1106 + - uid: 402 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 1107 + - uid: 403 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 1108 + - uid: 404 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 1109 + - uid: 405 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 1110 + - uid: 406 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 1111 + - uid: 407 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 1112 + - uid: 408 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 1113 + - uid: 409 components: - type: Transform pos: 7.5,-0.5 parent: 1 - - uid: 1114 + - uid: 410 components: - type: Transform pos: 9.5,-0.5 parent: 1 - - uid: 1115 + - uid: 411 components: - type: Transform pos: 10.5,-0.5 parent: 1 - - uid: 1116 + - uid: 412 components: - type: Transform pos: 12.5,-0.5 parent: 1 - - uid: 1117 + - uid: 413 components: - type: Transform pos: 13.5,-0.5 parent: 1 - - uid: 1118 + - uid: 414 components: - type: Transform pos: 16.5,2.5 parent: 1 - - uid: 1119 + - uid: 415 components: - type: Transform pos: 15.5,2.5 parent: 1 - - uid: 1120 + - uid: 416 components: - type: Transform pos: 13.5,2.5 parent: 1 - - uid: 1121 + - uid: 417 components: - type: Transform pos: 12.5,2.5 parent: 1 - - uid: 1122 + - uid: 418 components: - type: Transform pos: 9.5,2.5 parent: 1 - - uid: 1123 + - uid: 419 components: - type: Transform pos: 10.5,2.5 parent: 1 - - uid: 1124 + - uid: 420 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 1125 + - uid: 421 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 1126 + - uid: 422 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 1127 + - uid: 423 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 1128 + - uid: 424 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1129 + - uid: 425 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 1130 + - uid: 426 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 1131 + - uid: 427 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 1132 + - uid: 428 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 1133 + - uid: 429 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 1134 + - uid: 430 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 1135 + - uid: 431 components: - type: Transform pos: -8.5,2.5 parent: 1 - - uid: 1136 + - uid: 432 components: - type: Transform pos: -10.5,2.5 parent: 1 - - uid: 1137 + - uid: 433 components: - type: Transform pos: -11.5,2.5 parent: 1 - - uid: 1138 + - uid: 434 components: - type: Transform pos: -13.5,2.5 parent: 1 - - uid: 1139 + - uid: 435 components: - type: Transform pos: -14.5,2.5 parent: 1 - - uid: 1140 + - uid: 436 components: - type: Transform pos: -16.5,2.5 parent: 1 - - uid: 1141 + - uid: 437 components: - type: Transform pos: -17.5,2.5 parent: 1 - - uid: 1142 + - uid: 438 components: - type: Transform pos: -20.5,2.5 parent: 1 - - uid: 1143 + - uid: 439 components: - type: Transform pos: -19.5,2.5 parent: 1 - - uid: 1144 + - uid: 440 components: - type: Transform pos: -19.5,5.5 parent: 1 - - uid: 1145 + - uid: 441 components: - type: Transform pos: -17.5,5.5 parent: 1 - - uid: 1146 + - uid: 442 components: - type: Transform pos: -16.5,5.5 parent: 1 - - uid: 1147 + - uid: 443 components: - type: Transform pos: -14.5,5.5 parent: 1 - - uid: 1148 + - uid: 444 components: - type: Transform pos: -11.5,5.5 parent: 1 - - uid: 1149 + - uid: 445 components: - type: Transform pos: -10.5,5.5 parent: 1 - - uid: 1150 + - uid: 446 components: - type: Transform pos: -8.5,5.5 parent: 1 - - uid: 1151 + - uid: 447 components: - type: Transform pos: -7.5,5.5 parent: 1 - - uid: 1152 + - uid: 448 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 1153 + - uid: 449 components: - type: Transform pos: -4.5,5.5 parent: 1 - - uid: 1154 + - uid: 450 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 1155 + - uid: 451 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 1156 + - uid: 452 components: - type: Transform pos: 7.5,5.5 parent: 1 - - uid: 1157 + - uid: 453 components: - type: Transform pos: 9.5,5.5 parent: 1 - - uid: 1158 + - uid: 454 components: - type: Transform pos: 10.5,5.5 parent: 1 - - uid: 1159 + - uid: 455 components: - type: Transform pos: 12.5,5.5 parent: 1 - - uid: 1160 + - uid: 456 components: - type: Transform pos: 13.5,5.5 parent: 1 - - uid: 1161 + - uid: 457 components: - type: Transform pos: 15.5,5.5 parent: 1 - - uid: 1162 + - uid: 458 components: - type: Transform pos: 16.5,5.5 parent: 1 - - uid: 1163 + - uid: 459 components: - type: Transform pos: 15.5,8.5 parent: 1 - - uid: 1164 + - uid: 460 components: - type: Transform pos: 13.5,8.5 parent: 1 - - uid: 1165 + - uid: 461 components: - type: Transform pos: 12.5,8.5 parent: 1 - - uid: 1166 + - uid: 462 components: - type: Transform pos: 10.5,8.5 parent: 1 - - uid: 1167 + - uid: 463 components: - type: Transform pos: 9.5,8.5 parent: 1 - - uid: 1168 + - uid: 464 components: - type: Transform pos: 7.5,8.5 parent: 1 - - uid: 1169 + - uid: 465 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 1170 + - uid: 466 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 1171 + - uid: 467 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 1172 + - uid: 468 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 1173 + - uid: 469 components: - type: Transform pos: -7.5,8.5 parent: 1 - - uid: 1174 + - uid: 470 components: - type: Transform pos: -8.5,8.5 parent: 1 - - uid: 1175 + - uid: 471 components: - type: Transform pos: -10.5,8.5 parent: 1 - - uid: 1176 + - uid: 472 components: - type: Transform pos: -11.5,8.5 parent: 1 - - uid: 1177 + - uid: 473 components: - type: Transform pos: -13.5,8.5 parent: 1 - - uid: 1178 + - uid: 474 components: - type: Transform pos: -14.5,8.5 parent: 1 - - uid: 1179 + - uid: 475 components: - type: Transform pos: -17.5,8.5 parent: 1 - - uid: 1180 + - uid: 476 components: - type: Transform pos: -16.5,8.5 parent: 1 - - uid: 1181 + - uid: 477 components: - type: Transform pos: -19.5,8.5 parent: 1 - - uid: 1182 + - uid: 478 components: - type: Transform pos: -18.5,10.5 parent: 1 - - uid: 1183 + - uid: 479 components: - type: Transform pos: -17.5,10.5 parent: 1 - - uid: 1184 + - uid: 480 components: - type: Transform pos: -16.5,10.5 parent: 1 - - uid: 1185 + - uid: 481 components: - type: Transform pos: -14.5,10.5 parent: 1 - - uid: 1186 + - uid: 482 components: - type: Transform pos: -13.5,10.5 parent: 1 - - uid: 1187 + - uid: 483 components: - type: Transform pos: -11.5,10.5 parent: 1 - - uid: 1188 + - uid: 484 components: - type: Transform pos: -10.5,10.5 parent: 1 - - uid: 1189 + - uid: 485 components: - type: Transform pos: -8.5,11.5 parent: 1 - - uid: 1190 + - uid: 486 components: - type: Transform pos: -7.5,11.5 parent: 1 - - uid: 1191 + - uid: 487 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 1192 + - uid: 488 components: - type: Transform pos: -5.5,12.5 parent: 1 - - uid: 1193 + - uid: 489 components: - type: Transform pos: -4.5,12.5 parent: 1 - proto: CableHV entities: - - uid: 749 + - uid: 490 components: - type: Transform pos: 12.5,-1.5 parent: 1 - - uid: 750 + - uid: 491 components: - type: Transform pos: 12.5,-0.5 parent: 1 - - uid: 751 + - uid: 492 components: - type: Transform pos: 13.5,-0.5 parent: 1 - - uid: 752 + - uid: 493 components: - type: Transform pos: 14.5,-0.5 parent: 1 - - uid: 753 + - uid: 494 components: - type: Transform pos: 15.5,-0.5 parent: 1 - - uid: 754 + - uid: 495 components: - type: Transform pos: -9.5,6.5 parent: 1 - - uid: 755 + - uid: 496 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 756 + - uid: 497 components: - type: Transform pos: -8.5,7.5 parent: 1 - - uid: 757 + - uid: 498 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 758 + - uid: 499 components: - type: Transform pos: -7.5,6.5 parent: 1 - - uid: 759 + - uid: 500 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 760 + - uid: 501 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 761 + - uid: 502 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 762 + - uid: 503 components: - type: Transform pos: -5.5,4.5 parent: 1 - - uid: 763 + - uid: 504 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 764 + - uid: 505 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 765 + - uid: 506 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 766 + - uid: 507 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 767 + - uid: 508 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 768 + - uid: 509 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 769 + - uid: 510 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 770 + - uid: 511 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 771 + - uid: 512 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 772 + - uid: 513 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 773 + - uid: 514 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 774 + - uid: 515 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 775 + - uid: 516 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 776 + - uid: 517 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 777 + - uid: 518 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 778 + - uid: 519 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 779 + - uid: 520 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 780 + - uid: 521 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 781 + - uid: 522 components: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 782 + - uid: 523 components: - type: Transform pos: 7.5,-0.5 parent: 1 - - uid: 783 + - uid: 524 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 784 + - uid: 525 components: - type: Transform pos: 9.5,-0.5 parent: 1 - - uid: 785 + - uid: 526 components: - type: Transform pos: 10.5,-0.5 parent: 1 - - uid: 786 + - uid: 527 components: - type: Transform pos: 11.5,-0.5 parent: 1 - - uid: 787 + - uid: 528 components: - type: Transform pos: 15.5,0.5 parent: 1 - - uid: 788 + - uid: 529 components: - type: Transform pos: 15.5,1.5 parent: 1 - - uid: 789 + - uid: 530 components: - type: Transform pos: 15.5,2.5 parent: 1 - - uid: 790 + - uid: 531 components: - type: Transform pos: 15.5,3.5 parent: 1 - - uid: 791 + - uid: 532 components: - type: Transform pos: 15.5,5.5 parent: 1 - - uid: 792 + - uid: 533 components: - type: Transform pos: 14.5,0.5 parent: 1 - - uid: 793 + - uid: 534 components: - type: Transform pos: 13.5,-1.5 parent: 1 - proto: CableMV entities: - - uid: 794 + - uid: 535 components: - type: Transform pos: 15.5,5.5 parent: 1 - - uid: 795 + - uid: 536 components: - type: Transform pos: 14.5,5.5 parent: 1 - - uid: 796 + - uid: 537 components: - type: Transform pos: 13.5,5.5 parent: 1 - - uid: 797 + - uid: 538 components: - type: Transform pos: 12.5,5.5 parent: 1 - - uid: 798 + - uid: 539 components: - type: Transform pos: 11.5,5.5 parent: 1 - - uid: 799 + - uid: 540 components: - type: Transform pos: 10.5,5.5 parent: 1 - - uid: 800 + - uid: 541 components: - type: Transform pos: 10.5,4.5 parent: 1 - - uid: 801 + - uid: 542 components: - type: Transform pos: 10.5,3.5 parent: 1 - - uid: 802 + - uid: 543 components: - type: Transform pos: 10.5,2.5 parent: 1 - - uid: 803 + - uid: 544 components: - type: Transform pos: 10.5,1.5 parent: 1 - - uid: 804 + - uid: 545 components: - type: Transform pos: 10.5,6.5 parent: 1 - - uid: 805 + - uid: 546 components: - type: Transform pos: 10.5,7.5 parent: 1 - - uid: 806 + - uid: 547 components: - type: Transform pos: 10.5,8.5 parent: 1 - - uid: 807 + - uid: 548 components: - type: Transform pos: 9.5,8.5 parent: 1 - - uid: 808 + - uid: 549 components: - type: Transform pos: 8.5,8.5 parent: 1 - - uid: 809 + - uid: 550 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 811 + - uid: 551 components: - type: Transform pos: -12.5,5.5 parent: 1 - - uid: 812 + - uid: 552 components: - type: Transform pos: -11.5,5.5 parent: 1 - - uid: 813 + - uid: 553 components: - type: Transform pos: -10.5,5.5 parent: 1 - - uid: 814 + - uid: 554 components: - type: Transform pos: -9.5,5.5 parent: 1 - - uid: 815 + - uid: 555 components: - type: Transform pos: -9.5,6.5 parent: 1 - - uid: 816 + - uid: 556 components: - type: Transform pos: -9.5,4.5 parent: 1 - - uid: 817 + - uid: 557 components: - type: Transform pos: -9.5,3.5 parent: 1 - - uid: 818 + - uid: 558 components: - type: Transform pos: -9.5,2.5 parent: 1 - - uid: 819 + - uid: 559 components: - type: Transform pos: -9.5,1.5 parent: 1 - - uid: 820 + - uid: 560 components: - type: Transform pos: -9.5,0.5 parent: 1 - - uid: 821 + - uid: 561 components: - type: Transform pos: -9.5,-0.5 parent: 1 - - uid: 822 + - uid: 562 components: - type: Transform pos: -9.5,-1.5 parent: 1 - - uid: 823 + - uid: 563 components: - type: Transform pos: -9.5,-2.5 parent: 1 - - uid: 824 + - uid: 564 components: - type: Transform pos: -8.5,-1.5 parent: 1 - - uid: 825 + - uid: 565 components: - type: Transform pos: -7.5,-1.5 parent: 1 - - uid: 826 + - uid: 566 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 827 + - uid: 567 components: - type: Transform pos: -6.5,-1.5 parent: 1 - - uid: 828 + - uid: 568 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 829 + - uid: 569 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 830 + - uid: 570 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 831 + - uid: 571 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 832 + - uid: 572 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 833 + - uid: 573 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 834 + - uid: 574 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 835 + - uid: 575 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 836 + - uid: 576 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 837 + - uid: 577 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 838 + - uid: 578 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 839 + - uid: 579 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 840 + - uid: 580 components: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 841 + - uid: 581 components: - type: Transform pos: 7.5,-0.5 parent: 1 - - uid: 842 + - uid: 582 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 843 + - uid: 583 components: - type: Transform pos: 9.5,-0.5 parent: 1 - - uid: 844 + - uid: 584 components: - type: Transform pos: 10.5,-0.5 parent: 1 - - uid: 845 + - uid: 585 components: - type: Transform pos: 10.5,0.5 parent: 1 - - uid: 847 + - uid: 586 components: - type: Transform pos: -13.5,5.5 parent: 1 - proto: CableTerminal entities: - - uid: 335 + - uid: 587 components: - type: Transform rot: 1.5707963267948966 rad @@ -5383,716 +5767,614 @@ entities: parent: 1 - proto: CartridgeShellArmorPiercing entities: - - uid: 420 + - uid: 588 components: - type: Transform pos: 10.300504,9.287634 parent: 1 - - uid: 431 + - uid: 589 components: - type: Transform pos: 10.347379,9.381384 parent: 1 - - uid: 487 + - uid: 590 components: - type: Transform pos: 10.605191,9.592321 parent: 1 - - uid: 517 + - uid: 591 components: - type: Transform pos: 10.300504,9.264196 parent: 1 - - uid: 518 + - uid: 592 components: - type: Transform pos: 10.605191,9.756384 parent: 1 - - uid: 520 + - uid: 593 components: - type: Transform pos: 10.370816,9.475134 parent: 1 - - uid: 531 + - uid: 594 components: - type: Transform pos: 10.370816,9.615759 parent: 1 - - uid: 564 + - uid: 595 components: - type: Transform pos: 10.394254,9.756384 parent: 1 - - uid: 1370 + - uid: 596 components: - type: Transform - pos: -16.82869,6.9305615 + pos: 11.218553,9.919592 parent: 1 - - uid: 1371 + - uid: 597 components: - type: Transform - pos: -16.805252,6.860249 + pos: 11.218553,9.778967 parent: 1 - - uid: 1372 + - uid: 598 components: - type: Transform - pos: -16.805252,6.8368115 + pos: 11.218553,9.708654 parent: 1 - - uid: 1373 + - uid: 599 components: - type: Transform - pos: -16.82869,6.719624 + pos: 11.218553,9.591467 parent: 1 - - uid: 1374 + - uid: 600 components: - type: Transform - pos: -16.82869,6.6493115 + pos: 11.218553,9.544592 parent: 1 - - uid: 1375 + - uid: 601 components: - type: Transform - pos: -16.852127,6.5555615 + pos: 11.218553,9.427404 parent: 1 - - uid: 1376 + - uid: 602 components: - type: Transform - pos: -16.852127,6.4149365 + pos: 11.195115,9.310217 parent: 1 - - uid: 1377 + - uid: 603 components: - type: Transform - pos: -16.852127,6.2743115 + pos: 11.14824,9.216467 parent: 1 - - uid: 1378 + - uid: 604 components: - type: Transform - pos: -16.35994,6.9305615 + pos: 11.124803,9.146154 parent: 1 - - uid: 1379 - components: - - type: Transform - pos: -16.35994,6.813374 - parent: 1 - - uid: 1380 - components: - - type: Transform - pos: -16.35994,6.7430615 - parent: 1 - - uid: 1381 - components: - - type: Transform - pos: -16.35994,6.672749 - parent: 1 - - uid: 1382 - components: - - type: Transform - pos: -16.35994,6.578999 - parent: 1 - - uid: 1383 - components: - - type: Transform - pos: -16.35994,6.4618115 - parent: 1 - - uid: 1384 - components: - - type: Transform - pos: -16.383377,6.344624 - parent: 1 - - uid: 1385 - components: - - type: Transform - pos: -16.383377,6.250874 - parent: 1 - - uid: 1386 - components: - - type: Transform - pos: 11.218553,9.919592 - parent: 1 - - uid: 1387 - components: - - type: Transform - pos: 11.218553,9.778967 - parent: 1 - - uid: 1388 - components: - - type: Transform - pos: 11.218553,9.708654 - parent: 1 - - uid: 1389 - components: - - type: Transform - pos: 11.218553,9.591467 - parent: 1 - - uid: 1390 - components: - - type: Transform - pos: 11.218553,9.544592 - parent: 1 - - uid: 1391 - components: - - type: Transform - pos: 11.218553,9.427404 - parent: 1 - - uid: 1392 - components: - - type: Transform - pos: 11.195115,9.310217 - parent: 1 - - uid: 1393 - components: - - type: Transform - pos: 11.14824,9.216467 - parent: 1 - - uid: 1394 - components: - - type: Transform - pos: 11.124803,9.146154 - parent: 1 - - uid: 1395 + - uid: 605 components: - type: Transform pos: 11.640428,9.778967 parent: 1 - - uid: 1396 + - uid: 606 components: - type: Transform pos: 11.640428,9.685217 parent: 1 -- proto: CartridgeShellHighExplosive - entities: - - uid: 1366 - components: - - type: Transform - pos: -17.625565,6.3680615 - parent: 1 - - uid: 1367 - components: - - type: Transform - pos: -17.602127,6.625874 - parent: 1 - - uid: 1368 - components: - - type: Transform - pos: -15.563065,6.3211865 - parent: 1 - - uid: 1369 - components: - - type: Transform - pos: -15.539627,6.672749 - parent: 1 - proto: Catwalk entities: - - uid: 42 + - uid: 609 components: - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 248 + - uid: 610 components: - type: Transform pos: -2.5,-5.5 parent: 1 - - uid: 249 + - uid: 611 components: - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 250 + - uid: 612 components: - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 251 + - uid: 613 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 252 + - uid: 614 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 253 + - uid: 615 components: - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 254 + - uid: 616 components: - type: Transform pos: 3.5,-4.5 parent: 1 - - uid: 255 + - uid: 617 components: - type: Transform pos: 3.5,-5.5 parent: 1 - - uid: 256 + - uid: 618 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 257 + - uid: 619 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 258 + - uid: 620 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 259 + - uid: 621 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 260 + - uid: 622 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 261 + - uid: 623 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 262 + - uid: 624 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 263 + - uid: 625 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 264 + - uid: 626 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 355 + - uid: 627 components: - type: Transform pos: 11.5,-1.5 parent: 1 - - uid: 416 + - uid: 628 components: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 417 + - uid: 629 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 418 + - uid: 630 components: - type: Transform pos: 10.5,-1.5 parent: 1 - - uid: 481 + - uid: 631 components: - type: Transform pos: 11.5,-0.5 parent: 1 - - uid: 482 + - uid: 632 components: - type: Transform pos: 8.5,-1.5 parent: 1 - - uid: 539 + - uid: 633 components: - type: Transform pos: 9.5,11.5 parent: 1 - - uid: 565 + - uid: 634 components: - type: Transform pos: 11.5,2.5 parent: 1 - - uid: 566 + - uid: 635 components: - type: Transform pos: 11.5,3.5 parent: 1 - - uid: 621 + - uid: 636 components: - type: Transform pos: 11.5,1.5 parent: 1 - - uid: 622 + - uid: 637 components: - type: Transform pos: 9.5,-1.5 parent: 1 - - uid: 624 + - uid: 638 components: - type: Transform pos: 11.5,0.5 parent: 1 - - uid: 659 + - uid: 639 components: - type: Transform pos: -11.5,-3.5 parent: 1 - - uid: 660 + - uid: 640 components: - type: Transform pos: -10.5,-3.5 parent: 1 - - uid: 661 + - uid: 641 components: - type: Transform pos: -9.5,-3.5 parent: 1 - - uid: 662 + - uid: 642 components: - type: Transform pos: -8.5,-3.5 parent: 1 - - uid: 663 + - uid: 643 components: - type: Transform pos: -7.5,-3.5 parent: 1 - - uid: 664 + - uid: 644 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 665 + - uid: 645 components: - type: Transform pos: 9.5,4.5 parent: 1 - - uid: 666 + - uid: 646 components: - type: Transform pos: 9.5,5.5 parent: 1 - - uid: 667 + - uid: 647 components: - type: Transform pos: 9.5,6.5 parent: 1 - - uid: 668 + - uid: 648 components: - type: Transform pos: 10.5,5.5 parent: 1 - - uid: 669 + - uid: 649 components: - type: Transform pos: 11.5,5.5 parent: 1 - - uid: 670 + - uid: 650 components: - type: Transform pos: 12.5,5.5 parent: 1 - - uid: 674 + - uid: 651 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 675 + - uid: 652 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 676 + - uid: 653 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 699 + - uid: 654 components: - type: Transform pos: 9.5,9.5 parent: 1 - - uid: 708 + - uid: 655 components: - type: Transform pos: 9.5,13.5 parent: 1 - - uid: 738 + - uid: 656 components: - type: Transform pos: 9.5,12.5 parent: 1 - - uid: 1400 + - uid: 657 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 1401 + - uid: 658 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 1402 + - uid: 659 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 1403 + - uid: 660 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 1404 + - uid: 661 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 1405 + - uid: 662 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 1406 + - uid: 663 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 1407 + - uid: 664 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 1408 + - uid: 665 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 1409 + - uid: 666 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 1410 + - uid: 667 components: - type: Transform pos: -3.5,-0.5 parent: 1 - - uid: 1411 + - uid: 668 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 1412 + - uid: 669 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 1413 + - uid: 670 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 1414 + - uid: 671 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 1415 + - uid: 672 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 1416 + - uid: 673 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 1417 + - uid: 674 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 1418 + - uid: 675 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1419 + - uid: 676 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 1420 + - uid: 677 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 1421 + - uid: 678 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 1422 + - uid: 679 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 1423 + - uid: 680 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 1424 + - uid: 681 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 1425 + - uid: 682 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 1426 + - uid: 683 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 1427 + - uid: 684 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 1428 + - uid: 685 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 1429 + - uid: 686 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 1430 + - uid: 687 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 1431 + - uid: 688 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 1432 + - uid: 689 components: - type: Transform pos: -5.5,4.5 parent: 1 - - uid: 1434 + - uid: 690 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 1435 + - uid: 691 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 1436 + - uid: 692 components: - type: Transform pos: -7.5,6.5 parent: 1 - - uid: 1437 + - uid: 693 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 1438 + - uid: 694 components: - type: Transform pos: -13.5,2.5 parent: 1 - - uid: 1439 + - uid: 695 components: - type: Transform pos: -13.5,3.5 parent: 1 - - uid: 1440 + - uid: 696 components: - type: Transform pos: -13.5,3.5 parent: 1 - - uid: 1441 + - uid: 697 components: - type: Transform pos: -14.5,4.5 parent: 1 - - uid: 1442 + - uid: 698 components: - type: Transform pos: -14.5,3.5 parent: 1 - - uid: 1443 + - uid: 699 components: - type: Transform pos: -13.5,4.5 parent: 1 - - uid: 1444 + - uid: 700 components: - type: Transform pos: -15.5,3.5 parent: 1 - - uid: 1445 + - uid: 701 components: - type: Transform pos: -13.5,-2.5 parent: 1 - - uid: 1446 + - uid: 702 components: - type: Transform pos: -13.5,-1.5 parent: 1 - - uid: 1447 + - uid: 703 components: - type: Transform pos: -13.5,-0.5 parent: 1 - - uid: 1448 + - uid: 704 components: - type: Transform pos: -13.5,0.5 parent: 1 - - uid: 1449 + - uid: 705 components: - type: Transform pos: -13.5,-3.5 parent: 1 - - uid: 1450 + - uid: 706 components: - type: Transform pos: -5.5,-3.5 parent: 1 - proto: ChairFolding entities: - - uid: 555 + - uid: 707 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.081799,4.6427064 parent: 1 - - uid: 556 + - uid: 708 components: - type: Transform rot: 3.141592653589793 rad pos: -10.034924,4.0177064 parent: 1 - - uid: 557 + - uid: 709 components: - type: Transform rot: 3.141592653589793 rad pos: -8.823165,4.0487595 parent: 1 - - uid: 558 + - uid: 710 components: - type: Transform rot: -1.5707963267948966 rad @@ -6100,13 +6382,13 @@ entities: parent: 1 - proto: ChairOfficeDark entities: - - uid: 581 + - uid: 711 components: - type: Transform rot: 3.141592653589793 rad pos: -10.139519,-0.22563303 parent: 1 - - uid: 582 + - uid: 712 components: - type: Transform rot: 3.141592653589793 rad @@ -6114,61 +6396,61 @@ entities: parent: 1 - proto: ChemMaster entities: - - uid: 296 + - uid: 713 components: - type: Transform pos: -16.5,0.5 parent: 1 - proto: ChessBoard entities: - - uid: 562 + - uid: 714 components: - type: Transform pos: -9.589531,4.6029716 parent: 1 - proto: Cigar entities: - - uid: 577 + - uid: 715 components: - type: Transform pos: -11.264669,-0.7018292 parent: 1 - - uid: 578 + - uid: 716 components: - type: Transform pos: -11.233419,-0.8268292 parent: 1 - proto: ClothingBeltUtilityAtmos entities: - - uid: 427 + - uid: 717 components: - type: Transform pos: 8.489134,-4.7251415 parent: 1 - proto: ClothingHeadHatWelding entities: - - uid: 428 + - uid: 718 components: - type: Transform pos: 8.348509,-4.2251415 parent: 1 - proto: Cobweb1 entities: - - uid: 734 + - uid: 719 components: - type: Transform pos: -11.5,0.5 parent: 1 - proto: ComputerAdvancedRadar entities: - - uid: 300 + - uid: 720 components: - type: Transform pos: -9.5,0.5 parent: 1 - proto: ComputerPowerMonitoring entities: - - uid: 350 + - uid: 721 components: - type: Transform rot: 3.141592653589793 rad @@ -6176,20 +6458,20 @@ entities: parent: 1 - proto: ComputerRadar entities: - - uid: 444 + - uid: 722 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 1 - - uid: 466 + - uid: 723 components: - type: Transform pos: -14.5,9.5 parent: 1 - proto: ComputerShuttle entities: - - uid: 298 + - uid: 724 components: - type: Transform pos: -10.5,0.5 @@ -6210,14 +6492,24 @@ entities: ent: null - type: DeviceLinkSource linkedPorts: - 45: - - Group1: SpaceArtilleryFire - 121: - - Group1: SpaceArtilleryFire - 94: - - Group2: SpaceArtilleryFire - 521: - - Group2: SpaceArtilleryFire + 2: + - - Group1 + - Toggle + 4: + - - Group1 + - Toggle + 3: + - - Group2 + - SpaceArtilleryFire + 5: + - - Group2 + - SpaceArtilleryFire + 1429: + - - Group3 + - Toggle + 7: + - - Group3 + - Toggle - type: NamedModules buttonNames: - Fire left 120mm @@ -6227,7 +6519,7 @@ entities: - Module E - proto: ComputerTabletopComms entities: - - uid: 583 + - uid: 725 components: - type: Transform rot: 3.141592653589793 rad @@ -6235,14 +6527,14 @@ entities: parent: 1 - proto: ComputerTabletopPowerMonitoring entities: - - uid: 382 + - uid: 726 components: - type: Transform pos: -8.5,7.5 parent: 1 - proto: ComputerTargeting entities: - - uid: 407 + - uid: 727 components: - type: Transform pos: -8.5,0.5 @@ -6250,20 +6542,20 @@ entities: - type: TargetingConsole cannonGroups: all: - - 362 - - 526 - - 690 - - 714 - - 718 + - 99 + - 100 + - 101 + - 102 + - 103 SHI 43mm "Hullpiercer" slugspitter: - - 362 - - 526 - - 690 - - 714 - - 718 + - 99 + - 100 + - 101 + - 102 + - 103 - proto: ConveyorBelt entities: - - uid: 283 + - uid: 728 components: - type: Transform rot: 1.5707963267948966 rad @@ -6271,8 +6563,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 656 - - uid: 284 + - 1134 + - uid: 729 components: - type: Transform rot: -1.5707963267948966 rad @@ -6280,8 +6572,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 657 - - uid: 285 + - 1135 + - uid: 730 components: - type: Transform rot: 1.5707963267948966 rad @@ -6289,8 +6581,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 656 - - uid: 286 + - 1134 + - uid: 731 components: - type: Transform rot: -1.5707963267948966 rad @@ -6298,38 +6590,38 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 657 + - 1135 - proto: CrateEngineeringCableBulk entities: - - uid: 406 + - uid: 732 components: - type: Transform pos: -7.5,-4.5 parent: 1 - proto: CrateMaterialSteel entities: - - uid: 433 + - uid: 733 components: - type: Transform pos: -8.5,-4.5 parent: 1 - proto: d6Dice entities: - - uid: 561 + - uid: 734 components: - type: Transform pos: -10.495781,4.7904716 parent: 1 - proto: DefaultStationBeaconBridge entities: - - uid: 287 + - uid: 735 components: - type: Transform pos: -7.5,-0.5 parent: 1 - proto: DefibrillatorCabinet entities: - - uid: 587 + - uid: 736 components: - type: Transform rot: -1.5707963267948966 rad @@ -6337,48 +6629,48 @@ entities: parent: 1 - proto: DrinkMugMetal entities: - - uid: 504 + - uid: 737 components: - type: Transform pos: -4.822939,5.7628555 parent: 1 - - uid: 505 + - uid: 738 components: - type: Transform pos: -4.572939,5.8566055 parent: 1 - - uid: 506 + - uid: 739 components: - type: Transform pos: -4.729189,5.5128555 parent: 1 - - uid: 507 + - uid: 740 components: - type: Transform pos: -4.510439,5.6691055 parent: 1 - proto: DrinkVodkaBottleFull entities: - - uid: 508 + - uid: 741 components: - type: Transform pos: -4.166689,5.4816055 parent: 1 - - uid: 563 + - uid: 742 components: - type: Transform pos: -10.072244,4.6810966 parent: 1 - proto: FaxMachineShip entities: - - uid: 572 + - uid: 743 components: - type: Transform pos: -11.5,0.5 parent: 1 - proto: GasPassiveVent entities: - - uid: 1227 + - uid: 744 components: - type: Transform pos: 6.5,13.5 @@ -6387,28 +6679,28 @@ entities: color: '#990000FF' - proto: GasPipeBend entities: - - uid: 671 + - uid: 745 components: - type: Transform pos: 6.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1208 + - uid: 746 components: - type: Transform pos: 16.5,5.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1217 + - uid: 747 components: - type: Transform pos: 10.5,6.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1243 + - uid: 748 components: - type: Transform rot: -1.5707963267948966 rad @@ -6416,7 +6708,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1244 + - uid: 749 components: - type: Transform rot: 1.5707963267948966 rad @@ -6424,14 +6716,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1250 + - uid: 750 components: - type: Transform pos: -8.5,4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1271 + - uid: 751 components: - type: Transform rot: 3.141592653589793 rad @@ -6439,7 +6731,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1283 + - uid: 752 components: - type: Transform rot: 3.141592653589793 rad @@ -6447,14 +6739,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1286 + - uid: 753 components: - type: Transform pos: -15.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1287 + - uid: 754 components: - type: Transform rot: 3.141592653589793 rad @@ -6462,7 +6754,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1304 + - uid: 755 components: - type: Transform rot: -1.5707963267948966 rad @@ -6470,7 +6762,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1318 + - uid: 756 components: - type: Transform rot: 1.5707963267948966 rad @@ -6478,7 +6770,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1330 + - uid: 757 components: - type: Transform rot: 1.5707963267948966 rad @@ -6486,7 +6778,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1331 + - uid: 758 components: - type: Transform rot: -1.5707963267948966 rad @@ -6494,7 +6786,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1337 + - uid: 759 components: - type: Transform pos: 9.5,4.5 @@ -6503,7 +6795,7 @@ entities: color: '#0055CCFF' - proto: GasPipeFourway entities: - - uid: 1316 + - uid: 760 components: - type: Transform pos: 6.5,-1.5 @@ -6512,49 +6804,49 @@ entities: color: '#0055CCFF' - proto: GasPipeStraight entities: - - uid: 1197 + - uid: 761 components: - type: Transform pos: 7.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1198 + - uid: 762 components: - type: Transform pos: 7.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1199 + - uid: 763 components: - type: Transform pos: 7.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1200 + - uid: 764 components: - type: Transform pos: 7.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1201 + - uid: 765 components: - type: Transform pos: 7.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1203 + - uid: 766 components: - type: Transform pos: 10.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1206 + - uid: 767 components: - type: Transform rot: -1.5707963267948966 rad @@ -6562,7 +6854,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1207 + - uid: 768 components: - type: Transform rot: -1.5707963267948966 rad @@ -6570,21 +6862,21 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1209 + - uid: 769 components: - type: Transform pos: 10.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1210 + - uid: 770 components: - type: Transform pos: 10.5,4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1211 + - uid: 771 components: - type: Transform rot: -1.5707963267948966 rad @@ -6592,7 +6884,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1212 + - uid: 772 components: - type: Transform rot: -1.5707963267948966 rad @@ -6600,7 +6892,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1213 + - uid: 773 components: - type: Transform rot: -1.5707963267948966 rad @@ -6608,7 +6900,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1214 + - uid: 774 components: - type: Transform rot: -1.5707963267948966 rad @@ -6616,7 +6908,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1215 + - uid: 775 components: - type: Transform rot: -1.5707963267948966 rad @@ -6624,7 +6916,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1216 + - uid: 776 components: - type: Transform rot: 3.141592653589793 rad @@ -6632,7 +6924,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1218 + - uid: 777 components: - type: Transform rot: -1.5707963267948966 rad @@ -6640,7 +6932,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1219 + - uid: 778 components: - type: Transform rot: -1.5707963267948966 rad @@ -6648,7 +6940,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1220 + - uid: 779 components: - type: Transform rot: -1.5707963267948966 rad @@ -6656,7 +6948,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1221 + - uid: 780 components: - type: Transform rot: 3.141592653589793 rad @@ -6664,7 +6956,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1222 + - uid: 781 components: - type: Transform rot: 3.141592653589793 rad @@ -6672,7 +6964,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1223 + - uid: 782 components: - type: Transform rot: 3.141592653589793 rad @@ -6680,7 +6972,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1224 + - uid: 783 components: - type: Transform rot: 3.141592653589793 rad @@ -6688,7 +6980,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1225 + - uid: 784 components: - type: Transform rot: 3.141592653589793 rad @@ -6696,7 +6988,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1226 + - uid: 785 components: - type: Transform rot: 3.141592653589793 rad @@ -6704,7 +6996,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1228 + - uid: 786 components: - type: Transform rot: -1.5707963267948966 rad @@ -6712,7 +7004,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1229 + - uid: 787 components: - type: Transform rot: -1.5707963267948966 rad @@ -6720,7 +7012,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1230 + - uid: 788 components: - type: Transform rot: -1.5707963267948966 rad @@ -6728,7 +7020,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1231 + - uid: 789 components: - type: Transform rot: -1.5707963267948966 rad @@ -6736,7 +7028,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1232 + - uid: 790 components: - type: Transform rot: -1.5707963267948966 rad @@ -6744,7 +7036,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1233 + - uid: 791 components: - type: Transform rot: -1.5707963267948966 rad @@ -6752,7 +7044,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1234 + - uid: 792 components: - type: Transform rot: -1.5707963267948966 rad @@ -6760,7 +7052,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1235 + - uid: 793 components: - type: Transform rot: -1.5707963267948966 rad @@ -6768,7 +7060,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1236 + - uid: 794 components: - type: Transform rot: -1.5707963267948966 rad @@ -6776,7 +7068,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1237 + - uid: 795 components: - type: Transform rot: -1.5707963267948966 rad @@ -6784,7 +7076,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1238 + - uid: 796 components: - type: Transform rot: -1.5707963267948966 rad @@ -6792,7 +7084,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1239 + - uid: 797 components: - type: Transform rot: 3.141592653589793 rad @@ -6800,7 +7092,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1240 + - uid: 798 components: - type: Transform rot: 3.141592653589793 rad @@ -6808,7 +7100,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1241 + - uid: 799 components: - type: Transform rot: 3.141592653589793 rad @@ -6816,7 +7108,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1245 + - uid: 800 components: - type: Transform rot: 1.5707963267948966 rad @@ -6824,7 +7116,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1246 + - uid: 801 components: - type: Transform rot: 1.5707963267948966 rad @@ -6832,7 +7124,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1247 + - uid: 802 components: - type: Transform rot: 1.5707963267948966 rad @@ -6840,7 +7132,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1248 + - uid: 803 components: - type: Transform rot: 1.5707963267948966 rad @@ -6848,7 +7140,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1249 + - uid: 804 components: - type: Transform rot: 1.5707963267948966 rad @@ -6856,28 +7148,28 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1251 + - uid: 805 components: - type: Transform pos: -8.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1252 + - uid: 806 components: - type: Transform pos: -8.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1253 + - uid: 807 components: - type: Transform pos: -8.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1255 + - uid: 808 components: - type: Transform rot: 1.5707963267948966 rad @@ -6885,7 +7177,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1256 + - uid: 809 components: - type: Transform rot: 1.5707963267948966 rad @@ -6893,7 +7185,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1269 + - uid: 810 components: - type: Transform rot: -1.5707963267948966 rad @@ -6901,7 +7193,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1270 + - uid: 811 components: - type: Transform rot: -1.5707963267948966 rad @@ -6909,7 +7201,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1272 + - uid: 812 components: - type: Transform rot: 3.141592653589793 rad @@ -6917,7 +7209,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1273 + - uid: 813 components: - type: Transform rot: 3.141592653589793 rad @@ -6925,7 +7217,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1274 + - uid: 814 components: - type: Transform rot: 3.141592653589793 rad @@ -6933,7 +7225,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1275 + - uid: 815 components: - type: Transform rot: 3.141592653589793 rad @@ -6941,7 +7233,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1276 + - uid: 816 components: - type: Transform rot: 3.141592653589793 rad @@ -6949,7 +7241,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1277 + - uid: 817 components: - type: Transform rot: 3.141592653589793 rad @@ -6957,7 +7249,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1278 + - uid: 818 components: - type: Transform rot: 3.141592653589793 rad @@ -6965,7 +7257,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1279 + - uid: 819 components: - type: Transform rot: 3.141592653589793 rad @@ -6973,7 +7265,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1280 + - uid: 820 components: - type: Transform rot: 3.141592653589793 rad @@ -6981,7 +7273,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1281 + - uid: 821 components: - type: Transform rot: 3.141592653589793 rad @@ -6989,7 +7281,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1282 + - uid: 822 components: - type: Transform rot: 3.141592653589793 rad @@ -6997,7 +7289,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1284 + - uid: 823 components: - type: Transform rot: 1.5707963267948966 rad @@ -7005,7 +7297,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1285 + - uid: 824 components: - type: Transform rot: 1.5707963267948966 rad @@ -7013,7 +7305,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1288 + - uid: 825 components: - type: Transform rot: 1.5707963267948966 rad @@ -7021,7 +7313,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1290 + - uid: 826 components: - type: Transform rot: 3.141592653589793 rad @@ -7029,7 +7321,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1291 + - uid: 827 components: - type: Transform rot: 3.141592653589793 rad @@ -7037,7 +7329,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1292 + - uid: 828 components: - type: Transform rot: 3.141592653589793 rad @@ -7045,7 +7337,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1293 + - uid: 829 components: - type: Transform rot: 3.141592653589793 rad @@ -7053,7 +7345,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1294 + - uid: 830 components: - type: Transform rot: 3.141592653589793 rad @@ -7061,7 +7353,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1295 + - uid: 831 components: - type: Transform rot: 3.141592653589793 rad @@ -7069,7 +7361,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1296 + - uid: 832 components: - type: Transform rot: 1.5707963267948966 rad @@ -7077,7 +7369,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1297 + - uid: 833 components: - type: Transform rot: 1.5707963267948966 rad @@ -7085,7 +7377,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1300 + - uid: 834 components: - type: Transform rot: 1.5707963267948966 rad @@ -7093,7 +7385,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1301 + - uid: 835 components: - type: Transform rot: 1.5707963267948966 rad @@ -7101,7 +7393,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1302 + - uid: 836 components: - type: Transform rot: 1.5707963267948966 rad @@ -7109,7 +7401,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1303 + - uid: 837 components: - type: Transform rot: 1.5707963267948966 rad @@ -7117,7 +7409,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1306 + - uid: 838 components: - type: Transform rot: 1.5707963267948966 rad @@ -7125,14 +7417,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1307 + - uid: 839 components: - type: Transform pos: -3.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1308 + - uid: 840 components: - type: Transform rot: -1.5707963267948966 rad @@ -7140,7 +7432,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1309 + - uid: 841 components: - type: Transform rot: -1.5707963267948966 rad @@ -7148,7 +7440,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1310 + - uid: 842 components: - type: Transform rot: -1.5707963267948966 rad @@ -7156,7 +7448,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1311 + - uid: 843 components: - type: Transform rot: -1.5707963267948966 rad @@ -7164,7 +7456,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1312 + - uid: 844 components: - type: Transform rot: -1.5707963267948966 rad @@ -7172,7 +7464,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1313 + - uid: 845 components: - type: Transform rot: -1.5707963267948966 rad @@ -7180,7 +7472,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1314 + - uid: 846 components: - type: Transform rot: -1.5707963267948966 rad @@ -7188,7 +7480,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1317 + - uid: 847 components: - type: Transform rot: 1.5707963267948966 rad @@ -7196,14 +7488,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1319 + - uid: 848 components: - type: Transform pos: 6.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1320 + - uid: 849 components: - type: Transform rot: -1.5707963267948966 rad @@ -7211,7 +7503,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1321 + - uid: 850 components: - type: Transform rot: -1.5707963267948966 rad @@ -7219,7 +7511,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1325 + - uid: 851 components: - type: Transform rot: 1.5707963267948966 rad @@ -7227,7 +7519,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1326 + - uid: 852 components: - type: Transform rot: 1.5707963267948966 rad @@ -7235,7 +7527,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1327 + - uid: 853 components: - type: Transform rot: 1.5707963267948966 rad @@ -7243,14 +7535,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1328 + - uid: 854 components: - type: Transform pos: 14.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1329 + - uid: 855 components: - type: Transform rot: -1.5707963267948966 rad @@ -7258,7 +7550,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1332 + - uid: 856 components: - type: Transform rot: 3.141592653589793 rad @@ -7266,7 +7558,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1333 + - uid: 857 components: - type: Transform rot: 3.141592653589793 rad @@ -7274,7 +7566,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1334 + - uid: 858 components: - type: Transform rot: 3.141592653589793 rad @@ -7282,7 +7574,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1335 + - uid: 859 components: - type: Transform rot: 3.141592653589793 rad @@ -7290,7 +7582,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1336 + - uid: 860 components: - type: Transform rot: 3.141592653589793 rad @@ -7298,7 +7590,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1338 + - uid: 861 components: - type: Transform rot: -1.5707963267948966 rad @@ -7306,7 +7598,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1339 + - uid: 862 components: - type: Transform rot: -1.5707963267948966 rad @@ -7316,7 +7608,7 @@ entities: color: '#0055CCFF' - proto: GasPipeTJunction entities: - - uid: 672 + - uid: 863 components: - type: Transform rot: 3.141592653589793 rad @@ -7324,7 +7616,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 673 + - uid: 864 components: - type: Transform rot: 3.141592653589793 rad @@ -7332,28 +7624,28 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1194 + - uid: 865 components: - type: Transform pos: -3.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1195 + - uid: 866 components: - type: Transform pos: 4.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1196 + - uid: 867 components: - type: Transform pos: 7.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1204 + - uid: 868 components: - type: Transform rot: -1.5707963267948966 rad @@ -7361,7 +7653,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1205 + - uid: 869 components: - type: Transform rot: 1.5707963267948966 rad @@ -7369,14 +7661,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1242 + - uid: 870 components: - type: Transform pos: -15.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1254 + - uid: 871 components: - type: Transform rot: 1.5707963267948966 rad @@ -7384,7 +7676,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1289 + - uid: 872 components: - type: Transform rot: 3.141592653589793 rad @@ -7392,7 +7684,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1298 + - uid: 873 components: - type: Transform rot: 3.141592653589793 rad @@ -7400,7 +7692,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1299 + - uid: 874 components: - type: Transform rot: 3.141592653589793 rad @@ -7408,7 +7700,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1305 + - uid: 875 components: - type: Transform rot: 1.5707963267948966 rad @@ -7416,7 +7708,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1315 + - uid: 876 components: - type: Transform rot: 3.141592653589793 rad @@ -7424,7 +7716,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1322 + - uid: 877 components: - type: Transform rot: 3.141592653589793 rad @@ -7432,7 +7724,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1323 + - uid: 878 components: - type: Transform rot: 3.141592653589793 rad @@ -7440,7 +7732,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1324 + - uid: 879 components: - type: Transform rot: 3.141592653589793 rad @@ -7450,7 +7742,7 @@ entities: color: '#0055CCFF' - proto: GasPort entities: - - uid: 514 + - uid: 880 components: - type: Transform rot: 1.5707963267948966 rad @@ -7458,7 +7750,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 515 + - uid: 881 components: - type: Transform rot: 1.5707963267948966 rad @@ -7468,49 +7760,49 @@ entities: color: '#990000FF' - proto: GasVentPump entities: - - uid: 1257 + - uid: 882 components: - type: Transform pos: -3.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1258 + - uid: 883 components: - type: Transform pos: -13.5,3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1259 + - uid: 884 components: - type: Transform pos: -15.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1260 + - uid: 885 components: - type: Transform pos: -8.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1261 + - uid: 886 components: - type: Transform pos: -10.5,3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1262 + - uid: 887 components: - type: Transform pos: 4.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1263 + - uid: 888 components: - type: Transform rot: 3.141592653589793 rad @@ -7518,14 +7810,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1264 + - uid: 889 components: - type: Transform pos: 10.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1265 + - uid: 890 components: - type: Transform rot: -1.5707963267948966 rad @@ -7533,14 +7825,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1266 + - uid: 891 components: - type: Transform pos: 16.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1267 + - uid: 892 components: - type: Transform pos: -18.5,2.5 @@ -7549,7 +7841,7 @@ entities: color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 735 + - uid: 893 components: - type: Transform rot: 3.141592653589793 rad @@ -7557,7 +7849,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 736 + - uid: 894 components: - type: Transform rot: 3.141592653589793 rad @@ -7565,7 +7857,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 739 + - uid: 895 components: - type: Transform rot: 3.141592653589793 rad @@ -7573,7 +7865,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 740 + - uid: 896 components: - type: Transform rot: 3.141592653589793 rad @@ -7581,7 +7873,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 741 + - uid: 897 components: - type: Transform rot: 3.141592653589793 rad @@ -7589,7 +7881,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 742 + - uid: 898 components: - type: Transform rot: 3.141592653589793 rad @@ -7597,7 +7889,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 743 + - uid: 899 components: - type: Transform rot: 3.141592653589793 rad @@ -7605,7 +7897,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 748 + - uid: 900 components: - type: Transform rot: 3.141592653589793 rad @@ -7613,7 +7905,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1268 + - uid: 901 components: - type: Transform pos: -18.5,4.5 @@ -7622,97 +7914,97 @@ entities: color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 348 + - uid: 902 components: - type: Transform pos: 7.5,-5.5 parent: 1 - proto: Grille entities: - - uid: 43 + - uid: 903 components: - type: Transform pos: -4.5,-7.5 parent: 1 - - uid: 44 + - uid: 904 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 77 + - uid: 905 components: - type: Transform pos: 5.5,-7.5 parent: 1 - - uid: 217 + - uid: 906 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 453 + - uid: 907 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,8.5 parent: 1 - - uid: 454 + - uid: 908 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,9.5 parent: 1 - - uid: 677 + - uid: 909 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 678 + - uid: 910 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 679 + - uid: 911 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 680 + - uid: 912 components: - type: Transform pos: 3.5,-2.5 parent: 1 - proto: Gyroscope entities: - - uid: 38 + - uid: 913 components: - type: Transform pos: 5.5,9.5 parent: 1 - - uid: 46 + - uid: 914 components: - type: Transform pos: -4.5,-6.5 parent: 1 - - uid: 47 + - uid: 915 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 48 + - uid: 916 components: - type: Transform pos: 5.5,-6.5 parent: 1 - proto: HospitalCurtainsOpen entities: - - uid: 316 + - uid: 917 components: - type: Transform pos: -12.5,6.5 parent: 1 - proto: KitchenKnife entities: - - uid: 503 + - uid: 918 components: - type: Transform pos: -4.6396704,5.235371 @@ -7722,28 +8014,28 @@ entities: linearDamping: 0 - proto: KitchenMicrowave entities: - - uid: 502 + - uid: 919 components: - type: Transform pos: -4.5,4.5 parent: 1 - proto: KitchenReagentGrinder entities: - - uid: 585 + - uid: 920 components: - type: Transform pos: -17.5,0.5 parent: 1 - proto: Lighter entities: - - uid: 579 + - uid: 921 components: - type: Transform pos: -11.780294,-0.8424542 parent: 1 - proto: LightStripInner entities: - - uid: 1461 + - uid: 922 components: - type: Transform rot: 1.5707963267948966 rad @@ -7752,7 +8044,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1463 + - uid: 923 components: - type: Transform rot: 3.141592653589793 rad @@ -7761,7 +8053,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1466 + - uid: 924 components: - type: Transform rot: -1.5707963267948966 rad @@ -7770,7 +8062,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1467 + - uid: 925 components: - type: Transform pos: 7.5,2.5 @@ -7778,7 +8070,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1471 + - uid: 926 components: - type: Transform rot: 1.5707963267948966 rad @@ -7789,7 +8081,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 1462 + - uid: 927 components: - type: Transform pos: 8.5,0.5 @@ -7797,7 +8089,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1468 + - uid: 928 components: - type: Transform rot: -1.5707963267948966 rad @@ -7806,7 +8098,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1469 + - uid: 929 components: - type: Transform rot: 3.141592653589793 rad @@ -7815,7 +8107,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1470 + - uid: 930 components: - type: Transform rot: 1.5707963267948966 rad @@ -7826,156 +8118,212 @@ entities: - type: TurretIFF - proto: LockerSyndicate entities: - - uid: 580 + - uid: 931 components: - type: Transform pos: -7.5,0.5 parent: 1 - proto: MagazineLightRifleBoxSlug entities: - - uid: 694 + - uid: 932 components: - type: Transform pos: 2.8241913,1.2496314 parent: 1 - - uid: 695 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 933 components: - type: Transform pos: 2.2619355,1.2222095 parent: 1 - - uid: 697 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 934 components: - type: Transform pos: 2.4539254,1.2359204 parent: 1 - - uid: 698 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 935 components: - type: Transform pos: 2.6322014,1.2496314 parent: 1 - - uid: 1453 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 936 components: - type: Transform pos: 2.220794,1.414165 parent: 1 - - uid: 1454 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 937 components: - type: Transform pos: 2.5499222,1.414165 parent: 1 - - uid: 1455 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 938 components: - type: Transform pos: 2.7144845,1.4415879 parent: 1 - - uid: 1456 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 939 components: - type: Transform pos: 2.9338982,1.4415879 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] - proto: MagazineLightRifleBoxSlugHE entities: - - uid: 1457 + - uid: 940 components: - type: Transform pos: 2.4264977,1.8803449 parent: 1 - - uid: 1458 - components: - - type: Transform - pos: 2.673343,1.852922 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 941 + components: + - type: Transform + pos: 2.673343,1.852922 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] - proto: MagazineMortar entities: - - uid: 692 + - uid: 942 components: - type: Transform pos: -1.3213925,1.3181872 parent: 1 - - uid: 693 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 943 components: - type: Transform pos: -1.8013654,1.3181872 parent: 1 - - uid: 1451 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 944 components: - type: Transform pos: -1.2665372,1.7295222 parent: 1 - - uid: 1452 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 945 components: - type: Transform pos: -1.7602239,1.7569442 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] - proto: MedkitAdvancedFilled entities: - - uid: 591 + - uid: 946 components: - type: Transform pos: -17.722645,0.34860665 parent: 1 - proto: MedkitBurnFilled entities: - - uid: 593 + - uid: 947 components: - type: Transform pos: -17.722645,0.004856646 parent: 1 - proto: MedkitFilled entities: - - uid: 592 + - uid: 948 components: - type: Transform pos: -17.285145,0.31735665 parent: 1 - proto: MedkitToxinFilled entities: - - uid: 594 + - uid: 949 components: - type: Transform pos: -17.20702,0.020481646 parent: 1 - proto: Multitool entities: - - uid: 426 + - uid: 950 components: - type: Transform pos: 8.692259,-4.3501415 parent: 1 - proto: N14Bed entities: - - uid: 361 + - uid: 951 components: - type: Transform pos: -11.5,2.5 parent: 1 - - uid: 546 + - uid: 952 components: - type: Transform pos: -9.5,2.5 parent: 1 - proto: N14BedWoodBunk entities: - - uid: 547 + - uid: 953 components: - type: Transform pos: -9.5,2.5 parent: 1 - - uid: 550 + - uid: 954 components: - type: Transform pos: -11.5,2.5 parent: 1 - proto: N14ClosetFridgeDirty entities: - - uid: 501 + - uid: 955 components: - type: Transform pos: -4.5,6.5 parent: 1 - proto: NCWLPoster2 entities: - - uid: 728 + - uid: 956 components: - type: Transform rot: 1.5707963267948966 rad @@ -7983,7 +8331,7 @@ entities: parent: 1 - proto: NCWLPoster3 entities: - - uid: 729 + - uid: 957 components: - type: Transform rot: 1.5707963267948966 rad @@ -7991,39 +8339,39 @@ entities: parent: 1 - proto: NFHolopadShip entities: - - uid: 588 + - uid: 958 components: - type: Transform pos: -9.5,-0.5 parent: 1 - proto: OxygenCanister entities: - - uid: 434 + - uid: 959 components: - type: Transform pos: -9.5,-4.5 parent: 1 - - uid: 435 + - uid: 960 components: - type: Transform pos: -10.5,-4.5 parent: 1 - proto: PaperBin20 entities: - - uid: 575 + - uid: 961 components: - type: Transform pos: -11.5,-0.5 parent: 1 - proto: PlasticFlapsAirtightClear entities: - - uid: 279 + - uid: 962 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,3.5 parent: 1 - - uid: 281 + - uid: 963 components: - type: Transform rot: -1.5707963267948966 rad @@ -8031,7 +8379,7 @@ entities: parent: 1 - proto: PortableScrubber entities: - - uid: 512 + - uid: 964 components: - type: Transform anchored: True @@ -8043,91 +8391,91 @@ entities: bodyType: Static - proto: Poweredlight entities: - - uid: 364 + - uid: 965 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,2.5 parent: 1 - - uid: 366 + - uid: 966 components: - type: Transform pos: -16.5,0.5 parent: 1 - - uid: 601 + - uid: 967 components: - type: Transform pos: -10.5,0.5 parent: 1 - - uid: 602 + - uid: 968 components: - type: Transform pos: -8.5,0.5 parent: 1 - - uid: 606 + - uid: 969 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,6.5 parent: 1 - - uid: 607 + - uid: 970 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,8.5 parent: 1 - - uid: 608 + - uid: 971 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,6.5 parent: 1 - - uid: 609 + - uid: 972 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,9.5 parent: 1 - - uid: 613 + - uid: 973 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 1 - - uid: 614 + - uid: 974 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 parent: 1 - - uid: 615 + - uid: 975 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 616 + - uid: 976 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 1 - - uid: 627 + - uid: 977 components: - type: Transform pos: -18.5,4.5 parent: 1 - - uid: 628 + - uid: 978 components: - type: Transform pos: 16.5,3.5 parent: 1 - - uid: 629 + - uid: 979 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,1.5 parent: 1 - - uid: 631 + - uid: 980 components: - type: Transform rot: 3.141592653589793 rad @@ -8135,7 +8483,7 @@ entities: parent: 1 - proto: PoweredlightSodium entities: - - uid: 617 + - uid: 981 components: - type: Transform rot: 1.5707963267948966 rad @@ -8143,7 +8491,7 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 618 + - uid: 982 components: - type: Transform rot: -1.5707963267948966 rad @@ -8151,7 +8499,7 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 619 + - uid: 983 components: - type: Transform rot: -1.5707963267948966 rad @@ -8159,7 +8507,7 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 620 + - uid: 984 components: - type: Transform rot: 1.5707963267948966 rad @@ -8167,7 +8515,7 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 633 + - uid: 985 components: - type: Transform rot: 3.141592653589793 rad @@ -8175,35 +8523,35 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 634 + - uid: 986 components: - type: Transform pos: -8.5,-6.5 parent: 1 - type: PointLight energy: 1 - - uid: 635 + - uid: 987 components: - type: Transform pos: 9.5,-6.5 parent: 1 - type: PointLight energy: 1 - - uid: 636 + - uid: 988 components: - type: Transform pos: 13.5,-6.5 parent: 1 - type: PointLight energy: 1 - - uid: 637 + - uid: 989 components: - type: Transform pos: -11.5,-6.5 parent: 1 - type: PointLight energy: 1 - - uid: 638 + - uid: 990 components: - type: Transform rot: 3.141592653589793 rad @@ -8211,13 +8559,13 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 1459 + - uid: 991 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,1.5 parent: 1 - - uid: 1460 + - uid: 992 components: - type: Transform rot: 3.141592653589793 rad @@ -8225,104 +8573,104 @@ entities: parent: 1 - proto: PoweredSmallLight entities: - - uid: 395 + - uid: 993 components: - type: Transform pos: 10.5,9.5 parent: 1 - - uid: 595 + - uid: 994 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,3.5 parent: 1 - - uid: 596 + - uid: 995 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-1.5 parent: 1 - - uid: 597 + - uid: 996 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-7.5 parent: 1 - - uid: 598 + - uid: 997 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-7.5 parent: 1 - - uid: 599 + - uid: 998 components: - type: Transform pos: -8.5,-3.5 parent: 1 - - uid: 600 + - uid: 999 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 603 + - uid: 1000 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,2.5 parent: 1 - - uid: 604 + - uid: 1001 components: - type: Transform pos: -12.5,6.5 parent: 1 - - uid: 605 + - uid: 1002 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,2.5 parent: 1 - - uid: 610 + - uid: 1003 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,6.5 parent: 1 - - uid: 611 + - uid: 1004 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,5.5 parent: 1 - - uid: 612 + - uid: 1005 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-0.5 parent: 1 - - uid: 623 + - uid: 1006 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-3.5 parent: 1 - - uid: 630 + - uid: 1007 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,5.5 parent: 1 - - uid: 632 + - uid: 1008 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,5.5 parent: 1 - - uid: 1464 + - uid: 1009 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 1465 + - uid: 1010 components: - type: Transform rot: -1.5707963267948966 rad @@ -8330,337 +8678,283 @@ entities: parent: 1 - proto: Rack entities: - - uid: 97 + - uid: 1011 components: - type: Transform pos: 10.5,9.5 parent: 1 - - uid: 371 + - uid: 1012 components: - type: Transform pos: -6.5,-4.5 parent: 1 - - uid: 499 + - uid: 1013 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-0.5 parent: 1 - - uid: 516 + - uid: 1014 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,1.5 parent: 1 - - uid: 522 + - uid: 1015 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 parent: 1 - - uid: 533 + - uid: 1016 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-0.5 parent: 1 - - uid: 1364 + - uid: 1017 components: - type: Transform pos: 11.5,9.5 parent: 1 - - uid: 1365 + - uid: 1018 components: - type: Transform pos: -16.5,6.5 parent: 1 - proto: Railing entities: - - uid: 4 + - uid: 1019 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,1.5 parent: 1 - - uid: 269 + - uid: 1020 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-5.5 parent: 1 - - uid: 270 + - uid: 1021 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 1 - - uid: 271 + - uid: 1022 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 272 + - uid: 1023 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 337 + - uid: 1024 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-0.5 parent: 1 - - uid: 338 + - uid: 1025 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,5.5 parent: 1 - - uid: 341 + - uid: 1026 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 344 + - uid: 1027 components: - type: Transform pos: 7.5,-0.5 parent: 1 - - uid: 353 + - uid: 1028 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,2.5 parent: 1 - - uid: 396 + - uid: 1029 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-2.5 parent: 1 - - uid: 408 + - uid: 1030 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-2.5 parent: 1 - - uid: 421 + - uid: 1031 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 430 + - uid: 1032 components: - type: Transform pos: 9.5,-0.5 parent: 1 - - uid: 455 + - uid: 1033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,9.5 + rot: 3.141592653589793 rad + pos: -12.5,10.5 parent: 1 - - uid: 456 + - uid: 1034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,8.5 + rot: 3.141592653589793 rad + pos: -11.5,10.5 parent: 1 - - uid: 457 + - uid: 1035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,9.5 + rot: 3.141592653589793 rad + pos: -10.5,10.5 parent: 1 - - uid: 458 + - uid: 1036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,8.5 + rot: 3.141592653589793 rad + pos: -6.5,11.5 parent: 1 - - uid: 459 + - uid: 1037 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,7.5 + pos: -7.5,11.5 parent: 1 - - uid: 462 + - uid: 1038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,9.5 + rot: 3.141592653589793 rad + pos: -8.5,11.5 parent: 1 - - uid: 463 + - uid: 1039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,8.5 + rot: 3.141592653589793 rad + pos: -4.5,9.5 parent: 1 - - uid: 464 + - uid: 1040 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,9.5 + rot: 3.141592653589793 rad + pos: 5.5,8.5 parent: 1 - - uid: 465 + - uid: 1041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,8.5 + pos: -4.5,-5.5 parent: 1 - - uid: 468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,10.5 - parent: 1 - - uid: 469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,10.5 - parent: 1 - - uid: 470 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,10.5 - parent: 1 - - uid: 471 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,11.5 - parent: 1 - - uid: 472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,11.5 - parent: 1 - - uid: 474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,11.5 - parent: 1 - - uid: 475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,9.5 - parent: 1 - - uid: 476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,8.5 - parent: 1 - - uid: 477 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 1 - - uid: 478 + - uid: 1042 components: - type: Transform pos: 5.5,-5.5 parent: 1 - - uid: 483 + - uid: 1043 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-1.5 parent: 1 - - uid: 486 + - uid: 1044 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,0.5 parent: 1 - - uid: 513 + - uid: 1045 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,3.5 parent: 1 - - uid: 548 + - uid: 1046 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,2.5 parent: 1 - - uid: 549 + - uid: 1047 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,2.5 parent: 1 - - uid: 681 + - uid: 1048 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 682 + - uid: 1049 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-2.5 parent: 1 - - uid: 683 + - uid: 1050 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-2.5 parent: 1 - - uid: 684 + - uid: 1051 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 713 + - uid: 1052 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,14.5 parent: 1 - - uid: 721 + - uid: 1053 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,13.5 parent: 1 - - uid: 722 + - uid: 1054 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,14.5 parent: 1 - - uid: 723 + - uid: 1055 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,13.5 parent: 1 - - uid: 724 + - uid: 1056 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,12.5 parent: 1 - - uid: 725 + - uid: 1057 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,12.5 parent: 1 - - uid: 726 + - uid: 1058 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,11.5 parent: 1 - - uid: 727 + - uid: 1059 components: - type: Transform rot: 1.5707963267948966 rad @@ -8668,91 +8962,110 @@ entities: parent: 1 - proto: RailingCorner entities: - - uid: 265 + - uid: 1060 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 1 - - uid: 266 + - uid: 1061 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-5.5 parent: 1 - - uid: 267 + - uid: 1062 components: - type: Transform pos: 2.5,6.5 parent: 1 - - uid: 268 + - uid: 1063 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,6.5 parent: 1 - - uid: 497 + - uid: 1064 components: - type: Transform pos: 10.5,-0.5 parent: 1 - proto: RailingCornerSmall entities: - - uid: 352 + - uid: 1065 components: - type: Transform pos: 12.5,-2.5 parent: 1 - - uid: 460 - components: - - type: Transform - pos: -15.5,7.5 - parent: 1 - - uid: 461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,7.5 - parent: 1 - proto: ReinforcedGirder entities: - - uid: 401 + - uid: 1066 components: - type: Transform pos: -1.5,0.5 parent: 1 - - uid: 405 + - uid: 1067 components: - type: Transform pos: 2.5,0.5 parent: 1 - proto: ShipVoucherUnionfallBroadsword entities: - - uid: 1362 + - uid: 1068 components: - type: Transform pos: 2.3486624,-0.72085404 parent: 1 - - uid: 1363 + - uid: 1069 components: - type: Transform pos: 2.7705374,-0.27554154 parent: 1 - proto: ShipVoucherUnionfallKhopesh entities: - - uid: 1360 + - uid: 1070 components: - type: Transform pos: -1.7230849,-0.64961827 parent: 1 - - uid: 1361 + - uid: 1071 components: - type: Transform pos: -1.2308975,-0.29805577 parent: 1 +- proto: ShuttleGunPlasmaRepeater + entities: + - uid: 607 + components: + - type: Transform + rot: -3.141592653589793 rad + pos: -17.5,9.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 18293.36 + - type: ApcPowerReceiverBattery + enabled: True + - type: Physics + fixedRotation: False + - uid: 608 + components: + - type: Transform + rot: -3.141592653589793 rad + pos: -15.5,9.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 18296.846 + - type: ApcPowerReceiverBattery + enabled: True + - type: Physics + fixedRotation: False - proto: SignalButton entities: - - uid: 527 + - uid: 1072 components: - type: Transform rot: 3.141592653589793 rad @@ -8760,9 +9073,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 706: - - Pressed: Toggle - - uid: 626 + 116: + - - Pressed + - Toggle + - uid: 1073 components: - type: Transform rot: 1.5707963267948966 rad @@ -8770,9 +9084,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 484: - - Pressed: Toggle - - uid: 685 + 114: + - - Pressed + - Toggle + - uid: 1074 components: - type: Transform rot: -1.5707963267948966 rad @@ -8780,11 +9095,13 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 61: - - Pressed: Toggle - 60: - - Pressed: Toggle - - uid: 732 + 105: + - - Pressed + - Toggle + 104: + - - Pressed + - Toggle + - uid: 1075 components: - type: Transform rot: 3.141592653589793 rad @@ -8792,44 +9109,52 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 88: - - Pressed: Toggle - 86: - - Pressed: Toggle - 87: - - Pressed: Toggle - - uid: 733 + 108: + - - Pressed + - Toggle + 106: + - - Pressed + - Toggle + 107: + - - Pressed + - Toggle + - uid: 1076 components: - type: Transform pos: 2.5,3.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 89: - - Pressed: Toggle - 90: - - Pressed: Toggle - 91: - - Pressed: Toggle - - uid: 1341 + 109: + - - Pressed + - Toggle + 110: + - - Pressed + - Toggle + 111: + - - Pressed + - Toggle + - uid: 1077 components: - type: Transform pos: 17.5,4.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 280: - - Pressed: Toggle - - uid: 1342 + 112: + - - Pressed + - Toggle + - uid: 1078 components: - type: Transform pos: -19.5,5.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 356: - - Pressed: Toggle - - uid: 1343 + 113: + - - Pressed + - Toggle + - uid: 1079 components: - type: Transform rot: -1.5707963267948966 rad @@ -8837,9 +9162,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 523: - - Pressed: Toggle - - uid: 1358 + 115: + - - Pressed + - Toggle + - uid: 1080 components: - type: Transform rot: -1.5707963267948966 rad @@ -8847,9 +9173,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1357: - - Pressed: Toggle - - uid: 1359 + 118: + - - Pressed + - Toggle + - uid: 1081 components: - type: Transform rot: -1.5707963267948966 rad @@ -8857,106 +9184,107 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1356: - - Pressed: Toggle + 117: + - - Pressed + - Toggle - proto: Sink entities: - - uid: 314 + - uid: 1082 components: - type: Transform pos: -11.5,6.5 parent: 1 - proto: SMESBasic entities: - - uid: 333 + - uid: 1083 components: - type: Transform pos: 15.5,-0.5 parent: 1 - proto: SoapHomemade entities: - - uid: 315 + - uid: 1084 components: - type: Transform pos: -11.754425,6.6113987 parent: 1 - proto: SpaceCash entities: - - uid: 559 + - uid: 1085 components: - type: Transform pos: -8.714531,4.8373466 parent: 1 - - uid: 560 + - uid: 1086 components: - type: Transform pos: -8.714531,4.6029716 parent: 1 - proto: SpawnPointLatejoin entities: - - uid: 1346 + - uid: 1087 components: - type: Transform pos: -9.5,2.5 parent: 1 - - uid: 1347 + - uid: 1088 components: - type: Transform pos: -11.5,2.5 parent: 1 - proto: StationMap entities: - - uid: 1345 + - uid: 1089 components: - type: Transform pos: -18.5,5.5 parent: 1 - - uid: 1348 + - uid: 1090 components: - type: Transform pos: -7.5,5.5 parent: 1 - - uid: 1349 + - uid: 1091 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 1350 + - uid: 1092 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-2.5 parent: 1 - - uid: 1353 + - uid: 1093 components: - type: Transform pos: 10.5,6.5 parent: 1 - - uid: 1355 + - uid: 1094 components: - type: Transform pos: 16.5,4.5 parent: 1 - proto: SubstationBasic entities: - - uid: 336 + - uid: 1095 components: - type: Transform pos: 15.5,5.5 parent: 1 - - uid: 389 + - uid: 1096 components: - type: Transform pos: -9.5,6.5 parent: 1 - proto: SuitStorageBase entities: - - uid: 367 + - uid: 1097 components: - type: Transform pos: 15.5,1.5 parent: 1 - - uid: 368 + - uid: 1098 components: - type: Transform pos: -17.5,2.5 @@ -8965,199 +9293,199 @@ entities: locked: False - proto: TableReinforced entities: - - uid: 190 + - uid: 1099 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,0.5 parent: 1 - - uid: 192 + - uid: 1100 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,1.5 parent: 1 - - uid: 334 + - uid: 1101 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,7.5 parent: 1 - - uid: 369 + - uid: 1102 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-0.5 parent: 1 - - uid: 380 + - uid: 1103 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 1 - - uid: 425 + - uid: 1104 components: - type: Transform pos: 8.5,-4.5 parent: 1 - - uid: 436 + - uid: 1105 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,4.5 parent: 1 - - uid: 494 + - uid: 1106 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-0.5 parent: 1 - - uid: 500 + - uid: 1107 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,5.5 parent: 1 - - uid: 553 + - uid: 1108 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,4.5 parent: 1 - - uid: 554 + - uid: 1109 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,4.5 parent: 1 - - uid: 568 + - uid: 1110 components: - type: Transform pos: -11.5,0.5 parent: 1 - - uid: 570 + - uid: 1111 components: - type: Transform pos: -11.5,-0.5 parent: 1 - - uid: 571 + - uid: 1112 components: - type: Transform pos: -11.5,-1.5 parent: 1 - - uid: 584 + - uid: 1113 components: - type: Transform pos: -10.5,-1.5 parent: 1 - proto: ThrusterNCWLWarship entities: - - uid: 2 + - uid: 1114 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-0.5 parent: 1 - - uid: 10 + - uid: 1115 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-6.5 parent: 1 - - uid: 20 + - uid: 1116 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,8.5 parent: 1 - - uid: 49 + - uid: 1117 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,0.5 parent: 1 - - uid: 50 + - uid: 1118 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-6.5 parent: 1 - - uid: 51 + - uid: 1119 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-6.5 parent: 1 - - uid: 56 + - uid: 1120 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,6.5 parent: 1 - - uid: 57 + - uid: 1121 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,7.5 parent: 1 - - uid: 68 + - uid: 1122 components: - type: Transform pos: -4.5,13.5 parent: 1 - - uid: 69 + - uid: 1123 components: - type: Transform pos: 9.5,15.5 parent: 1 - - uid: 95 + - uid: 1124 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 124 + - uid: 1125 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,7.5 parent: 1 - - uid: 152 + - uid: 1126 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-3.5 parent: 1 - - uid: 153 + - uid: 1127 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-2.5 parent: 1 - - uid: 160 + - uid: 1128 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-6.5 parent: 1 - - uid: 161 + - uid: 1129 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-6.5 parent: 1 - - uid: 162 + - uid: 1130 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-6.5 parent: 1 - - uid: 164 + - uid: 1131 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-6.5 parent: 1 - - uid: 214 + - uid: 1132 components: - type: Transform rot: 3.141592653589793 rad @@ -9165,7 +9493,7 @@ entities: parent: 1 - proto: ToiletEmpty entities: - - uid: 313 + - uid: 1133 components: - type: Transform rot: 1.5707963267948966 rad @@ -9173,74 +9501,58 @@ entities: parent: 1 - proto: TwoWayLever entities: - - uid: 656 + - uid: 1134 components: - type: Transform pos: -18.5,3.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 283: - - Left: Reverse - - Right: Forward - - Middle: Off - 285: - - Left: Reverse - - Right: Forward - - Middle: Off - - uid: 657 + 728: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 730: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + - uid: 1135 components: - type: Transform pos: 16.5,2.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 286: - - Left: Forward - - Right: Reverse - - Middle: Off - 284: - - Left: Forward - - Right: Reverse - - Middle: Off + 731: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 729: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off - proto: Type99Artillery entities: - - uid: 530 + - uid: 1136 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,10.5 parent: 1 - - uid: 686 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,8.5 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: [] - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: DeviceLinkSource - linkedPorts: - 60: - - SpaceArtilleryDetectedFiring: Open - - uid: 687 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,8.5 - parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9255,16 +9567,22 @@ entities: showEnts: False occludes: True ents: [] - - type: DeviceLinkSource - linkedPorts: - 61: - - SpaceArtilleryDetectedFiring: Open - - uid: 688 + - type: Battery + startingCharge: 18048.818 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 1137 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,9.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 18048.818 + - type: ApcPowerReceiverBattery + enabled: True - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -9281,63 +9599,64 @@ entities: ents: [] - type: DeviceLinkSource linkedPorts: - 523: - - SpaceArtilleryDetectedFiring: Open + 115: + - - SpaceArtilleryDetectedFiring + - Open - proto: UnionfallClementineMothershipComputer entities: - - uid: 538 + - uid: 1138 components: - type: Transform pos: 0.5,-0.5 parent: 1 - proto: UnionfallShipNodeNCWL entities: - - uid: 351 + - uid: 1139 components: - type: Transform pos: 8.5,1.5 parent: 1 - proto: VendingMachineChemicals entities: - - uid: 363 + - uid: 1140 components: - type: Transform pos: -16.5,-1.5 parent: 1 - proto: VendingMachineEngivend entities: - - uid: 490 + - uid: 1141 components: - type: Transform pos: 13.5,3.5 parent: 1 - proto: VendingMachineSovietSoda entities: - - uid: 544 + - uid: 1142 components: - type: Transform pos: -15.5,4.5 parent: 1 - proto: VendingMachineTankDispenserEVA entities: - - uid: 365 + - uid: 1143 components: - type: Transform pos: 15.5,3.5 parent: 1 - - uid: 370 + - uid: 1144 components: - type: Transform pos: -17.5,4.5 parent: 1 - - uid: 419 + - uid: 1145 components: - type: Transform pos: 12.5,3.5 parent: 1 - proto: VendingMachineWallMedical entities: - - uid: 586 + - uid: 1146 components: - type: Transform rot: -1.5707963267948966 rad @@ -9345,1516 +9664,1516 @@ entities: parent: 1 - proto: VendingMachineYouTool entities: - - uid: 424 + - uid: 1147 components: - type: Transform pos: 8.5,-3.5 parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 233 + - uid: 1148 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 278 + - uid: 1149 components: - type: Transform pos: -20.5,5.5 parent: 1 - - uid: 309 + - uid: 1150 components: - type: Transform pos: -18.5,10.5 parent: 1 - - uid: 452 + - uid: 1151 components: - type: Transform pos: -3.5,16.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestCurved entities: - - uid: 21 + - uid: 1152 components: - type: Transform pos: 15.5,9.5 parent: 1 - - uid: 108 + - uid: 1153 components: - type: Transform pos: 8.5,18.5 parent: 1 - - uid: 120 + - uid: 1154 components: - type: Transform pos: 10.5,15.5 parent: 1 - - uid: 131 + - uid: 1155 components: - type: Transform pos: 14.5,10.5 parent: 1 - - uid: 138 + - uid: 1156 components: - type: Transform pos: 16.5,6.5 parent: 1 - - uid: 691 + - uid: 1157 components: - type: Transform pos: 4.5,15.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastCurved entities: - - uid: 96 + - uid: 1158 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 107 + - uid: 1159 components: - type: Transform pos: -3.5,-10.5 parent: 1 - - uid: 194 + - uid: 1160 components: - type: Transform pos: -12.5,-6.5 parent: 1 - - uid: 201 + - uid: 1161 components: - type: Transform pos: -16.5,-3.5 parent: 1 - - uid: 208 + - uid: 1162 components: - type: Transform pos: -19.5,-1.5 parent: 1 - - uid: 277 + - uid: 1163 components: - type: Transform pos: -20.5,1.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestCurved entities: - - uid: 67 + - uid: 1164 components: - type: Transform pos: 4.5,-11.5 parent: 1 - - uid: 143 + - uid: 1165 components: - type: Transform pos: 16.5,-1.5 parent: 1 - - uid: 154 + - uid: 1166 components: - type: Transform pos: 14.5,-6.5 parent: 1 - - uid: 216 + - uid: 1167 components: - type: Transform pos: 6.5,-8.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestHollow entities: - - uid: 40 + - uid: 1168 components: - type: Transform pos: 7.5,-7.5 parent: 1 - proto: WallPlastitaniumNCWL entities: - - uid: 5 + - uid: 1169 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 6 + - uid: 1170 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 7 + - uid: 1171 components: - type: Transform pos: -4.5,-2.5 parent: 1 - - uid: 8 + - uid: 1172 components: - type: Transform pos: -1.5,4.5 parent: 1 - - uid: 9 + - uid: 1173 components: - type: Transform pos: 15.5,4.5 parent: 1 - - uid: 11 + - uid: 1174 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 12 + - uid: 1175 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 13 + - uid: 1176 components: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 14 + - uid: 1177 components: - type: Transform pos: 5.5,-2.5 parent: 1 - - uid: 15 + - uid: 1178 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 16 + - uid: 1179 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 17 + - uid: 1180 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 18 + - uid: 1181 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 19 + - uid: 1182 components: - type: Transform pos: 6.5,10.5 parent: 1 - - uid: 22 + - uid: 1183 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 23 + - uid: 1184 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 24 + - uid: 1185 components: - type: Transform pos: -3.5,-3.5 parent: 1 - - uid: 25 + - uid: 1186 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 26 + - uid: 1187 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 27 + - uid: 1188 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 28 + - uid: 1189 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 29 + - uid: 1190 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 30 + - uid: 1191 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 31 + - uid: 1192 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 34 + - uid: 1193 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 35 + - uid: 1194 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 36 + - uid: 1195 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 37 + - uid: 1196 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 39 + - uid: 1197 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-4.5 parent: 1 - - uid: 41 + - uid: 1198 components: - type: Transform pos: 14.5,0.5 parent: 1 - - uid: 52 + - uid: 1199 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-6.5 parent: 1 - - uid: 53 + - uid: 1200 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,1.5 parent: 1 - - uid: 54 + - uid: 1201 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,5.5 parent: 1 - - uid: 55 + - uid: 1202 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,8.5 parent: 1 - - uid: 58 + - uid: 1203 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,8.5 parent: 1 - - uid: 59 + - uid: 1204 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,9.5 parent: 1 - - uid: 62 + - uid: 1205 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,9.5 parent: 1 - - uid: 63 + - uid: 1206 components: - type: Transform pos: -5.5,10.5 parent: 1 - - uid: 64 + - uid: 1207 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,8.5 parent: 1 - - uid: 66 + - uid: 1208 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,10.5 parent: 1 - - uid: 70 + - uid: 1209 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 72 + - uid: 1210 components: - type: Transform pos: -8.5,8.5 parent: 1 - - uid: 73 + - uid: 1211 components: - type: Transform pos: 4.5,-6.5 parent: 1 - - uid: 74 + - uid: 1212 components: - type: Transform pos: 4.5,-4.5 parent: 1 - - uid: 75 + - uid: 1213 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,5.5 parent: 1 - - uid: 76 + - uid: 1214 components: - type: Transform pos: 14.5,4.5 parent: 1 - - uid: 78 + - uid: 1215 components: - type: Transform pos: -5.5,12.5 parent: 1 - - uid: 79 + - uid: 1216 components: - type: Transform pos: 6.5,-7.5 parent: 1 - - uid: 80 + - uid: 1217 components: - type: Transform pos: 5.5,-8.5 parent: 1 - - uid: 81 + - uid: 1218 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 82 + - uid: 1219 components: - type: Transform pos: -6.5,-6.5 parent: 1 - - uid: 83 + - uid: 1220 components: - type: Transform pos: 14.5,1.5 parent: 1 - - uid: 84 + - uid: 1221 components: - type: Transform pos: 14.5,3.5 parent: 1 - - uid: 85 + - uid: 1222 components: - type: Transform pos: 4.5,-10.5 parent: 1 - - uid: 92 + - uid: 1223 components: - type: Transform pos: 17.5,4.5 parent: 1 - - uid: 93 + - uid: 1224 components: - type: Transform pos: 18.5,4.5 parent: 1 - - uid: 98 + - uid: 1225 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 99 + - uid: 1226 components: - type: Transform pos: 4.5,-5.5 parent: 1 - - uid: 100 + - uid: 1227 components: - type: Transform pos: -3.5,-9.5 parent: 1 - - uid: 101 + - uid: 1228 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 102 + - uid: 1229 components: - type: Transform pos: 6.5,-5.5 parent: 1 - - uid: 103 + - uid: 1230 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-6.5 parent: 1 - - uid: 104 + - uid: 1231 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 105 + - uid: 1232 components: - type: Transform pos: -3.5,-8.5 parent: 1 - - uid: 106 + - uid: 1233 components: - type: Transform pos: -3.5,-7.5 parent: 1 - - uid: 109 + - uid: 1234 components: - type: Transform pos: 8.5,17.5 parent: 1 - - uid: 110 + - uid: 1235 components: - type: Transform pos: 8.5,16.5 parent: 1 - - uid: 111 + - uid: 1236 components: - type: Transform pos: 8.5,15.5 parent: 1 - - uid: 112 + - uid: 1237 components: - type: Transform pos: 8.5,14.5 parent: 1 - - uid: 113 + - uid: 1238 components: - type: Transform pos: 8.5,13.5 parent: 1 - - uid: 114 + - uid: 1239 components: - type: Transform pos: 8.5,12.5 parent: 1 - - uid: 115 + - uid: 1240 components: - type: Transform pos: 8.5,11.5 parent: 1 - - uid: 116 + - uid: 1241 components: - type: Transform pos: 8.5,10.5 parent: 1 - - uid: 117 + - uid: 1242 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 118 + - uid: 1243 components: - type: Transform pos: -3.5,-5.5 parent: 1 - - uid: 119 + - uid: 1244 components: - type: Transform pos: -3.5,-6.5 parent: 1 - - uid: 122 + - uid: 1245 components: - type: Transform pos: 9.5,14.5 parent: 1 - - uid: 123 + - uid: 1246 components: - type: Transform pos: 10.5,14.5 parent: 1 - - uid: 126 + - uid: 1247 components: - type: Transform pos: 10.5,12.5 parent: 1 - - uid: 127 + - uid: 1248 components: - type: Transform pos: 11.5,12.5 parent: 1 - - uid: 128 + - uid: 1249 components: - type: Transform pos: 11.5,11.5 parent: 1 - - uid: 129 + - uid: 1250 components: - type: Transform pos: 11.5,10.5 parent: 1 - - uid: 130 + - uid: 1251 components: - type: Transform pos: 12.5,10.5 parent: 1 - - uid: 132 + - uid: 1252 components: - type: Transform pos: 14.5,9.5 parent: 1 - - uid: 133 + - uid: 1253 components: - type: Transform pos: 14.5,8.5 parent: 1 - - uid: 134 + - uid: 1254 components: - type: Transform pos: 14.5,7.5 parent: 1 - - uid: 135 + - uid: 1255 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,6.5 parent: 1 - - uid: 136 + - uid: 1256 components: - type: Transform pos: 12.5,9.5 parent: 1 - - uid: 137 + - uid: 1257 components: - type: Transform pos: 12.5,8.5 parent: 1 - - uid: 139 + - uid: 1258 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,6.5 parent: 1 - - uid: 140 + - uid: 1259 components: - type: Transform pos: 16.5,5.5 parent: 1 - - uid: 141 + - uid: 1260 components: - type: Transform pos: 16.5,0.5 parent: 1 - - uid: 142 + - uid: 1261 components: - type: Transform pos: 16.5,-0.5 parent: 1 - - uid: 144 + - uid: 1262 components: - type: Transform pos: 15.5,-1.5 parent: 1 - - uid: 145 + - uid: 1263 components: - type: Transform pos: 14.5,-1.5 parent: 1 - - uid: 146 + - uid: 1264 components: - type: Transform pos: 14.5,-2.5 parent: 1 - - uid: 147 + - uid: 1265 components: - type: Transform pos: 14.5,-3.5 parent: 1 - - uid: 148 + - uid: 1266 components: - type: Transform pos: 14.5,-4.5 parent: 1 - - uid: 149 + - uid: 1267 components: - type: Transform pos: 14.5,-5.5 parent: 1 - - uid: 150 + - uid: 1268 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-5.5 parent: 1 - - uid: 151 + - uid: 1269 components: - type: Transform pos: 15.5,-4.5 parent: 1 - - uid: 155 + - uid: 1270 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 156 + - uid: 1271 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-5.5 parent: 1 - - uid: 157 + - uid: 1272 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-5.5 parent: 1 - - uid: 158 + - uid: 1273 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-5.5 parent: 1 - - uid: 159 + - uid: 1274 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-5.5 parent: 1 - - uid: 163 + - uid: 1275 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-5.5 parent: 1 - - uid: 165 + - uid: 1276 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-5.5 parent: 1 - - uid: 166 + - uid: 1277 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 1 - - uid: 167 + - uid: 1278 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-5.5 parent: 1 - - uid: 168 + - uid: 1279 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 169 + - uid: 1280 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 170 + - uid: 1281 components: - type: Transform pos: -7.5,8.5 parent: 1 - - uid: 171 + - uid: 1282 components: - type: Transform pos: 8.5,-6.5 parent: 1 - - uid: 172 + - uid: 1283 components: - type: Transform pos: 6.5,9.5 parent: 1 - - uid: 173 + - uid: 1284 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,7.5 parent: 1 - - uid: 174 + - uid: 1285 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,6.5 parent: 1 - - uid: 175 + - uid: 1286 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,5.5 parent: 1 - - uid: 177 + - uid: 1287 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,7.5 parent: 1 - - uid: 178 + - uid: 1288 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,7.5 parent: 1 - - uid: 179 + - uid: 1289 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,7.5 parent: 1 - - uid: 180 + - uid: 1290 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,7.5 parent: 1 - - uid: 181 + - uid: 1291 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,7.5 parent: 1 - - uid: 182 + - uid: 1292 components: - type: Transform pos: 4.5,-7.5 parent: 1 - - uid: 183 + - uid: 1293 components: - type: Transform pos: 4.5,-8.5 parent: 1 - - uid: 184 + - uid: 1294 components: - type: Transform pos: 4.5,-9.5 parent: 1 - - uid: 185 + - uid: 1295 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,1.5 parent: 1 - - uid: 186 + - uid: 1296 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,5.5 parent: 1 - - uid: 187 + - uid: 1297 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,5.5 parent: 1 - - uid: 188 + - uid: 1298 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,1.5 parent: 1 - - uid: 189 + - uid: 1299 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,1.5 parent: 1 - - uid: 191 + - uid: 1300 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,2.5 parent: 1 - - uid: 195 + - uid: 1301 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-1.5 parent: 1 - - uid: 196 + - uid: 1302 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-0.5 parent: 1 - - uid: 197 + - uid: 1303 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,0.5 parent: 1 - - uid: 198 + - uid: 1304 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-1.5 parent: 1 - - uid: 199 + - uid: 1305 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-2.5 parent: 1 - - uid: 200 + - uid: 1306 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-2.5 parent: 1 - - uid: 203 + - uid: 1307 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-3.5 parent: 1 - - uid: 204 + - uid: 1308 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-4.5 parent: 1 - - uid: 205 + - uid: 1309 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-4.5 parent: 1 - - uid: 206 + - uid: 1310 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-4.5 parent: 1 - - uid: 207 + - uid: 1311 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-5.5 parent: 1 - - uid: 209 + - uid: 1312 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-5.5 parent: 1 - - uid: 210 + - uid: 1313 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-5.5 parent: 1 - - uid: 211 + - uid: 1314 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-5.5 parent: 1 - - uid: 212 + - uid: 1315 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-5.5 parent: 1 - - uid: 213 + - uid: 1316 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 215 + - uid: 1317 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-6.5 parent: 1 - - uid: 218 + - uid: 1318 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-4.5 parent: 1 - - uid: 219 + - uid: 1319 components: - type: Transform pos: -4.5,-8.5 parent: 1 - - uid: 220 + - uid: 1320 components: - type: Transform pos: 16.5,4.5 parent: 1 - - uid: 221 + - uid: 1321 components: - type: Transform pos: 18.5,0.5 parent: 1 - - uid: 223 + - uid: 1322 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,6.5 parent: 1 - - uid: 224 + - uid: 1323 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 1 - - uid: 225 + - uid: 1324 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 1 - - uid: 226 + - uid: 1325 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - - uid: 227 + - uid: 1326 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 1 - - uid: 228 + - uid: 1327 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,11.5 parent: 1 - - uid: 229 + - uid: 1328 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,12.5 parent: 1 - - uid: 230 + - uid: 1329 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,13.5 parent: 1 - - uid: 231 + - uid: 1330 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,14.5 parent: 1 - - uid: 232 + - uid: 1331 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,15.5 parent: 1 - - uid: 234 + - uid: 1332 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 1 - - uid: 235 + - uid: 1333 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,6.5 parent: 1 - - uid: 236 + - uid: 1334 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,7.5 parent: 1 - - uid: 237 + - uid: 1335 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 1 - - uid: 238 + - uid: 1336 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - - uid: 239 + - uid: 1337 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,10.5 parent: 1 - - uid: 240 + - uid: 1338 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,11.5 parent: 1 - - uid: 241 + - uid: 1339 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 1 - - uid: 242 + - uid: 1340 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,13.5 parent: 1 - - uid: 243 + - uid: 1341 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,14.5 parent: 1 - - uid: 245 + - uid: 1342 components: - type: Transform pos: -4.5,12.5 parent: 1 - - uid: 246 + - uid: 1343 components: - type: Transform pos: 15.5,0.5 parent: 1 - - uid: 247 + - uid: 1344 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 292 + - uid: 1345 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,7.5 parent: 1 - - uid: 294 + - uid: 1346 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,6.5 parent: 1 - - uid: 295 + - uid: 1347 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,5.5 parent: 1 - - uid: 297 + - uid: 1348 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,1.5 parent: 1 - - uid: 302 + - uid: 1349 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 303 + - uid: 1350 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 304 + - uid: 1351 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 306 + - uid: 1352 components: - type: Transform pos: -12.5,1.5 parent: 1 - - uid: 307 + - uid: 1353 components: - type: Transform pos: -13.5,10.5 parent: 1 - - uid: 308 + - uid: 1354 components: - type: Transform pos: -16.5,10.5 parent: 1 - - uid: 310 + - uid: 1355 components: - type: Transform pos: -12.5,3.5 parent: 1 - - uid: 312 + - uid: 1356 components: - type: Transform pos: -12.5,5.5 parent: 1 - - uid: 317 + - uid: 1357 components: - type: Transform pos: -10.5,5.5 parent: 1 - - uid: 318 + - uid: 1358 components: - type: Transform pos: -10.5,6.5 parent: 1 - - uid: 345 + - uid: 1359 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-3.5 parent: 1 - - uid: 346 + - uid: 1360 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-2.5 parent: 1 - - uid: 347 + - uid: 1361 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-4.5 parent: 1 - - uid: 349 + - uid: 1362 components: - type: Transform pos: 5.5,4.5 parent: 1 - - uid: 358 + - uid: 1363 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,4.5 parent: 1 - - uid: 359 + - uid: 1364 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,2.5 parent: 1 - - uid: 360 + - uid: 1365 components: - type: Transform pos: -14.5,10.5 parent: 1 - - uid: 372 + - uid: 1366 components: - type: Transform pos: -7.5,5.5 parent: 1 - - uid: 373 + - uid: 1367 components: - type: Transform pos: -9.5,1.5 parent: 1 - - uid: 374 + - uid: 1368 components: - type: Transform pos: -8.5,5.5 parent: 1 - - uid: 375 + - uid: 1369 components: - type: Transform pos: -9.5,5.5 parent: 1 - - uid: 376 + - uid: 1370 components: - type: Transform pos: -10.5,1.5 parent: 1 - - uid: 377 + - uid: 1371 components: - type: Transform pos: -8.5,1.5 parent: 1 - - uid: 378 + - uid: 1372 components: - type: Transform pos: -11.5,1.5 parent: 1 - - uid: 379 + - uid: 1373 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 381 + - uid: 1374 components: - type: Transform pos: -7.5,1.5 parent: 1 - - uid: 383 + - uid: 1375 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 385 + - uid: 1376 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 387 + - uid: 1377 components: - type: Transform pos: 10.5,10.5 parent: 1 - - uid: 392 + - uid: 1378 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 393 + - uid: 1379 components: - type: Transform pos: -8.5,-2.5 parent: 1 - - uid: 394 + - uid: 1380 components: - type: Transform pos: -12.5,-0.5 parent: 1 - - uid: 397 + - uid: 1381 components: - type: Transform pos: -9.5,-2.5 parent: 1 - - uid: 398 + - uid: 1382 components: - type: Transform pos: -10.5,-2.5 parent: 1 - - uid: 399 + - uid: 1383 components: - type: Transform pos: -12.5,-2.5 parent: 1 - - uid: 400 + - uid: 1384 components: - type: Transform pos: -12.5,0.5 parent: 1 - - uid: 403 + - uid: 1385 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 404 + - uid: 1386 components: - type: Transform pos: -12.5,-1.5 parent: 1 - - uid: 409 + - uid: 1387 components: - type: Transform pos: -11.5,-2.5 parent: 1 - - uid: 411 + - uid: 1388 components: - type: Transform pos: -7.5,-2.5 parent: 1 - - uid: 412 + - uid: 1389 components: - type: Transform pos: -6.5,-2.5 parent: 1 - - uid: 413 + - uid: 1390 components: - type: Transform pos: -14.5,-1.5 parent: 1 - - uid: 414 + - uid: 1391 components: - type: Transform pos: -14.5,0.5 parent: 1 - - uid: 415 + - uid: 1392 components: - type: Transform pos: -14.5,-2.5 parent: 1 - - uid: 422 + - uid: 1393 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-2.5 parent: 1 - - uid: 423 + - uid: 1394 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - - uid: 432 + - uid: 1395 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 437 + - uid: 1396 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 438 + - uid: 1397 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 439 + - uid: 1398 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 440 + - uid: 1399 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 441 + - uid: 1400 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 442 + - uid: 1401 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 451 + - uid: 1402 components: - type: Transform pos: -15.5,5.5 parent: 1 - - uid: 473 + - uid: 1403 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,11.5 parent: 1 - - uid: 479 + - uid: 1404 components: - type: Transform pos: -6.5,-1.5 parent: 1 - - uid: 480 + - uid: 1405 components: - type: Transform pos: -6.5,0.5 parent: 1 - - uid: 485 + - uid: 1406 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 488 + - uid: 1407 components: - type: Transform pos: 13.5,4.5 parent: 1 - - uid: 489 + - uid: 1408 components: - type: Transform pos: 12.5,4.5 parent: 1 - - uid: 491 + - uid: 1409 components: - type: Transform pos: 13.5,6.5 parent: 1 - - uid: 493 + - uid: 1410 components: - type: Transform pos: 12.5,6.5 parent: 1 - - uid: 495 + - uid: 1411 components: - type: Transform pos: 10.5,4.5 parent: 1 - - uid: 498 + - uid: 1412 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 528 + - uid: 1413 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 529 + - uid: 1414 components: - type: Transform pos: 8.5,7.5 parent: 1 - - uid: 532 + - uid: 1415 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 534 + - uid: 1416 components: - type: Transform pos: 11.5,6.5 parent: 1 - - uid: 535 + - uid: 1417 components: - type: Transform pos: 10.5,6.5 parent: 1 - - uid: 536 + - uid: 1418 components: - type: Transform pos: 10.5,7.5 parent: 1 - - uid: 537 + - uid: 1419 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 540 + - uid: 1420 components: - type: Transform pos: -1.5,-2.5 parent: 1 - - uid: 541 + - uid: 1421 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 542 + - uid: 1422 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 543 + - uid: 1423 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 705 + - uid: 1424 components: - type: Transform pos: 10.5,11.5 parent: 1 - proto: WardrobeGrey entities: - - uid: 545 + - uid: 1425 components: - type: Transform pos: -8.5,2.5 parent: 1 - - uid: 551 + - uid: 1426 components: - type: Transform pos: -10.5,2.5 parent: 1 - proto: WarpPointShip entities: - - uid: 3 + - uid: 1427 components: - type: Transform pos: 0.5,0.5 parent: 1 - proto: WeaponTurretMortar entities: - - uid: 1352 + - uid: 6 components: - type: Transform rot: 3.141592653589793 rad @@ -10866,6 +11185,14 @@ entities: showEnts: False occludes: True ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] gun_magazine: !type:ContainerSlot showEnts: False occludes: True @@ -10874,7 +11201,13 @@ entities: showEnts: False occludes: True ent: null - - uid: 1354 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 668.9596 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 1428 components: - type: Transform rot: 3.141592653589793 rad @@ -10886,6 +11219,14 @@ entities: showEnts: False occludes: True ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] gun_magazine: !type:ContainerSlot showEnts: False occludes: True @@ -10894,74 +11235,242 @@ entities: showEnts: False occludes: True ent: null + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 672.9601 + - type: ApcPowerReceiverBattery + enabled: True - proto: WeaponTurretPDT entities: - - uid: 386 + - uid: 1430 components: - type: Transform pos: -4.5,-9.5 parent: 1 - - uid: 390 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 1431 components: - type: Transform pos: 5.5,-9.5 parent: 1 - - uid: 701 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 1432 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,9.5 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 407 - - uid: 704 + linkedConsoleId: 727 + - uid: 1433 components: - type: Transform pos: 15.5,-5.5 parent: 1 - - uid: 710 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 1434 components: - type: Transform pos: 8.5,-7.5 parent: 1 - - uid: 715 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 1435 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,15.5 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 407 - - uid: 716 + linkedConsoleId: 727 + - uid: 1436 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,5.5 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 407 - - uid: 719 + linkedConsoleId: 727 + - uid: 1437 components: - type: Transform pos: -6.5,-7.5 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 407 - - uid: 720 + linkedConsoleId: 727 + - uid: 1438 components: - type: Transform pos: -18.5,-2.5 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 407 + linkedConsoleId: 727 - proto: WindoorSecure entities: - - uid: 449 + - uid: 1439 components: - type: Transform pos: -15.5,1.5 parent: 1 - - uid: 450 + - uid: 1440 components: - type: Transform rot: 3.141592653589793 rad diff --git a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_sasha.yml b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_sasha.yml index e5bffd94bb3..766298bafb9 100644 --- a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_sasha.yml +++ b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_sasha.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/10/2026 14:27:10 + entityCount: 1145 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 33: FloorDark @@ -17,7 +28,7 @@ tilemap: entities: - proto: "" entities: - - uid: 2 + - uid: 1 components: - type: MetaData name: grid @@ -28,28 +39,28 @@ entities: chunks: 0,0: ind: 0,0 - tiles: BgAAAAAABgAAAAAABwAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAABQAAAAAABQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAIQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAABwAAAAAABQAAAAAABQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAAggAAAAAAggAAAAAAIQAAAAAAggAAAAAAggAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAABwAAAAAABQAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAggAAAAAABQAAAAAABwAAAAAABQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAggAAAAAABgAAAAAABgAAAAAABQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAPQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAPQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: BgAAAAAAAAYAAAAAAAAHAAAAAAAAggAAAAAAAIIAAAAAAAAFAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABwAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAAAHAAAAAAAABQAAAAAAAIIAAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAPQAAAAAAAIIAAAAAAAAFAAAAAAAABwAAAAAAAAUAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAD0AAAAAAACCAAAAAAAABgAAAAAAAAYAAAAAAAAFAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAAA9AAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAPQAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAD0AAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAABQAAAAAAggAAAAAAggAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAABQAAAAAABQAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAABgAAAAAAggAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAABQAAAAAABQAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAggAAAAAAggAAAAAAggAAAAAAIQAAAAAAggAAAAAAggAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAggAAAAAABQAAAAAABgAAAAAABQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABQAAAAAABwAAAAAABQAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABQAAAAAABgAAAAAABwAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAPQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAPQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAIQAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAACCAAAAAAAABQAAAAAAAAYAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAUAAAAAAAAHAAAAAAAABQAAAAAAAIIAAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAFAAAAAAAABgAAAAAAAAcAAAAAAACCAAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAD0AAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAA9AAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAABgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAABgAAAAAAAgAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIQAAAAAABAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIQAAAAAABAAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAggAAAAAAIQAAAAAABAAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAggAAAAAAIQAAAAAABAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAggAAAAAAIQAAAAAAggAAAAAABgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAABgAAAAAABQAAAAAAggAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAABQAAAAAAggAAAAAAggAAAAAABQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABQAAAAAAggAAAAAABgAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAAGAAAAAAAAAgAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAABgAAAAAAAAIAAAAAAACCAAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAIQAAAAAAAAQAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAEAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAIQAAAAAAAAQAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAEAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAAAMAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAACCAAAAAAAAIQAAAAAAAIIAAAAAAAAGAAAAAAAABQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAAAFAAAAAAAAggAAAAAAAD0AAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAAA9AAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAFAAAAAAAAggAAAAAAAAYAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAABgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAggAAAAAAAgAAAAAABgAAAAAABQAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAABgAAAAAABgAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAIQAAAAAABgAAAAAABgAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAggAAAAAAIQAAAAAAIQAAAAAABgAAAAAAggAAAAAAggAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAIQAAAAAAIQAAAAAABgAAAAAAggAAAAAAIQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAAIQAAAAAABgAAAAAAggAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAggAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAggAAAAAABQAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAggAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAABQAAAAAAggAAAAAAggAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAABgAAAAAAggAAAAAABQAAAAAABwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAACAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAgAAAAAAAAYAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAggAAAAAAAAIAAAAAAAAGAAAAAAAABQAAAAAAAIIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAhAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAAIQAAAAAAAAYAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAAYAAAAAAACCAAAAAAAAIQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAGAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAAAAIIAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAPQAAAAAAAIIAAAAAAAAFAAAAAAAABgAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAD0AAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAAA9AAAAAAAAPQAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAFAAAAAAAABgAAAAAAAIIAAAAAAAAFAAAAAAAABwAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPQAAAAAAPQAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAD0AAAAAAAA9AAAAAAAAggAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAggAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAD0AAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAAA9AAAAAAAAggAAAAAAAD0AAAAAAAA9AAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -172,6 +183,13 @@ entities: 626: -8,-11 632: -8,-7 635: -5,-19 + 672: -8,1 + 677: -7,0 + 682: -6,10 + 690: -5,12 + 710: -8,-11 + 716: -8,-7 + 719: -5,-19 - node: zIndex: 1 id: LatticeCornerNW @@ -213,6 +231,13 @@ entities: 617: 8,-11 623: 8,-7 638: 5,-19 + 650: 5,12 + 658: 6,10 + 666: 7,0 + 669: 8,1 + 701: 8,-11 + 707: 8,-7 + 722: 5,-19 - node: zIndex: 1 id: LatticeCornerSE @@ -253,6 +278,13 @@ entities: 609: -5,13 612: -4,14 629: -8,-9 + 675: -7,0 + 680: -6,10 + 685: -6,11 + 688: -5,12 + 693: -5,13 + 696: -4,14 + 713: -8,-9 - node: zIndex: 1 id: LatticeCornerSW @@ -293,6 +325,13 @@ entities: 577: 6,11 581: 7,0 620: 8,-9 + 645: 4,14 + 649: 5,12 + 653: 5,13 + 657: 6,10 + 661: 6,11 + 665: 7,0 + 704: 8,-9 - node: id: LatticeEdgeE decals: @@ -368,6 +407,20 @@ entities: 628: -8,-9 630: -8,-7 633: -5,-19 + 639: 0,12 + 641: 1,12 + 670: -8,1 + 674: -7,0 + 679: -6,10 + 684: -6,11 + 687: -5,12 + 692: -5,13 + 695: -4,14 + 697: -1,12 + 708: -8,-11 + 712: -8,-9 + 714: -8,-7 + 717: -5,-19 - node: id: LatticeEdgeN decals: @@ -447,6 +500,20 @@ entities: 631: -8,-7 634: -5,-19 636: 5,-19 + 647: 5,12 + 655: 6,10 + 663: 7,0 + 667: 8,1 + 671: -8,1 + 676: -7,0 + 681: -6,10 + 689: -5,12 + 699: 8,-11 + 705: 8,-7 + 709: -8,-11 + 715: -8,-7 + 718: -5,-19 + 720: 5,-19 - node: id: LatticeEdgeS decals: @@ -522,6 +589,20 @@ entities: 610: -4,14 618: 8,-9 627: -8,-9 + 643: 4,14 + 646: 5,12 + 651: 5,13 + 654: 6,10 + 659: 6,11 + 662: 7,0 + 673: -7,0 + 678: -6,10 + 683: -6,11 + 686: -5,12 + 691: -5,13 + 694: -4,14 + 702: 8,-9 + 711: -8,-9 - node: id: LatticeEdgeW decals: @@ -597,6 +678,20 @@ entities: 619: 8,-9 622: 8,-7 637: 5,-19 + 640: 0,12 + 642: 1,12 + 644: 4,14 + 648: 5,12 + 652: 5,13 + 656: 6,10 + 660: 6,11 + 664: 7,0 + 668: 8,1 + 698: -1,12 + 700: 8,-11 + 703: 8,-9 + 706: 8,-7 + 721: 5,-19 - node: angle: -1.5707963267948966 rad color: '#EFB34196' @@ -1028,321 +1123,322 @@ entities: - type: RadiationGridResistance - type: BecomesStation id: Sasha + - type: SelfDeleteGrid - proto: AAAHardpointFixed entities: - - uid: 1081 + - uid: 2 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,12.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 1099 + - 618 - type: Physics canCollide: False - - uid: 1082 + - uid: 3 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,12.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 1099 + - 618 - type: Physics canCollide: False - proto: AAAHardpointLargeBallistic entities: - - uid: 354 + - uid: 4 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 606 + - uid: 5 components: - type: Transform pos: 0.5,10.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 1080 + - uid: 6 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-2.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - proto: AAAHardpointSmallBallistic entities: - - uid: 55 + - uid: 7 components: - type: Transform pos: -5.5,-17.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 122 + - uid: 8 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,6.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 123 + - uid: 9 components: - type: Transform pos: 7.5,-13.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 357 + - uid: 10 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,13.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 361 + - uid: 11 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,11.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 365 + - uid: 12 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,11.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 367 + - uid: 13 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,13.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 376 + - uid: 14 components: - type: Transform pos: -1.5,-20.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 377 + - uid: 15 components: - type: Transform pos: 2.5,-20.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 925 + - uid: 16 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,6.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 970 + - uid: 17 components: - type: Transform pos: -6.5,-13.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 971 + - uid: 18 components: - type: Transform pos: 6.5,-17.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - proto: AirlockCommandLockedNCWL entities: - - uid: 128 + - uid: 19 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,1.5 - parent: 2 - - uid: 131 + parent: 1 + - uid: 20 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,1.5 - parent: 2 - - uid: 139 + parent: 1 + - uid: 21 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-9.5 - parent: 2 - - uid: 163 + parent: 1 + - uid: 22 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-12.5 - parent: 2 - - uid: 164 + parent: 1 + - uid: 23 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-6.5 - parent: 2 - - uid: 220 + parent: 1 + - uid: 24 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,6.5 - parent: 2 - - uid: 227 + parent: 1 + - uid: 25 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,10.5 - parent: 2 - - uid: 230 + parent: 1 + - uid: 26 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,1.5 - parent: 2 - - uid: 236 + parent: 1 + - uid: 27 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-12.5 - parent: 2 - - uid: 239 + parent: 1 + - uid: 28 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-6.5 - parent: 2 - - uid: 250 + parent: 1 + - uid: 29 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,10.5 - parent: 2 - - uid: 253 + parent: 1 + - uid: 30 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,6.5 - parent: 2 - - uid: 263 + parent: 1 + - uid: 31 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,6.5 - parent: 2 - - uid: 284 + parent: 1 + - uid: 32 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-2.5 - parent: 2 - - uid: 996 + parent: 1 + - uid: 33 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,1.5 - parent: 2 - - uid: 1110 + parent: 1 + - uid: 34 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-16.5 - parent: 2 + parent: 1 - proto: AirlockCommandLockedNCWLHorizontal entities: - - uid: 142 + - uid: 35 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-5.5 - parent: 2 - - uid: 175 + parent: 1 + - uid: 36 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-7.5 - parent: 2 - - uid: 187 + parent: 1 + - uid: 37 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-5.5 - parent: 2 - - uid: 254 + parent: 1 + - uid: 38 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-14.5 - parent: 2 - - uid: 384 + parent: 1 + - uid: 39 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-14.5 - parent: 2 + parent: 1 - proto: AirlockMaint entities: - - uid: 959 + - uid: 40 components: - type: Transform pos: 4.5,-15.5 - parent: 2 + parent: 1 - proto: AirlockShuttle entities: - - uid: 137 + - uid: 41 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-5.5 - parent: 2 - - uid: 146 + parent: 1 + - uid: 42 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-5.5 - parent: 2 + parent: 1 - proto: AirTankFilled entities: - - uid: 452 + - uid: 44 components: - type: Transform - parent: 447 + parent: 43 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 458 + - uid: 51 components: - type: Transform - parent: 454 + parent: 50 - type: Physics canCollide: False - type: InsideEntityStorage - proto: AmeController entities: - - uid: 296 + - uid: 57 components: - type: Transform pos: -0.5,-10.5 - parent: 2 + parent: 1 - type: AmeController injecting: True - type: ContainerContainer @@ -1350,3052 +1446,3112 @@ entities: fuelSlot: !type:ContainerSlot showEnts: False occludes: True - ent: 297 + ent: 58 - proto: AmeJar entities: - - uid: 297 + - uid: 58 components: - type: Transform - parent: 296 + parent: 57 - type: Physics canCollide: False - proto: AmeShielding entities: - - uid: 138 + - uid: 59 components: - type: Transform pos: 0.5,-11.5 - parent: 2 + parent: 1 - type: PointLight radius: 1 enabled: True - - uid: 140 + - uid: 60 components: - type: Transform pos: 2.5,-11.5 - parent: 2 - - uid: 141 + parent: 1 + - uid: 61 components: - type: Transform pos: 1.5,-11.5 - parent: 2 + parent: 1 - type: PointLight radius: 1 enabled: True - - uid: 150 + - uid: 62 components: - type: Transform pos: 1.5,-12.5 - parent: 2 + parent: 1 - type: PointLight radius: 1 enabled: True - - uid: 184 + - uid: 63 components: - type: Transform pos: -0.5,-11.5 - parent: 2 - - uid: 185 + parent: 1 + - uid: 64 components: - type: Transform pos: -0.5,-12.5 - parent: 2 - - uid: 205 + parent: 1 + - uid: 65 components: - type: Transform pos: 1.5,-13.5 - parent: 2 - - uid: 257 + parent: 1 + - uid: 66 components: - type: Transform pos: 2.5,-13.5 - parent: 2 - - uid: 265 + parent: 1 + - uid: 67 components: - type: Transform pos: 2.5,-10.5 - parent: 2 - - uid: 302 + parent: 1 + - uid: 68 components: - type: Transform pos: 0.5,-12.5 - parent: 2 + parent: 1 - type: PointLight radius: 1 enabled: True - - uid: 325 + - uid: 69 components: - type: Transform pos: -0.5,-10.5 - parent: 2 - - uid: 326 + parent: 1 + - uid: 70 components: - type: Transform pos: 0.5,-10.5 - parent: 2 - - uid: 327 + parent: 1 + - uid: 71 components: - type: Transform pos: 2.5,-12.5 - parent: 2 - - uid: 328 + parent: 1 + - uid: 72 components: - type: Transform pos: 0.5,-13.5 - parent: 2 - - uid: 347 + parent: 1 + - uid: 73 components: - type: Transform pos: 1.5,-10.5 - parent: 2 - - uid: 434 + parent: 1 + - uid: 74 components: - type: Transform pos: -0.5,-13.5 - parent: 2 + parent: 1 - proto: APCBasic entities: - - uid: 309 + - uid: 75 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,0.5 - parent: 2 - - uid: 603 + parent: 1 + - uid: 76 components: - type: Transform pos: -3.5,10.5 - parent: 2 - - uid: 604 + parent: 1 + - uid: 77 components: - type: Transform pos: 4.5,10.5 - parent: 2 - - uid: 605 + parent: 1 + - uid: 78 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,5.5 - parent: 2 - - uid: 607 + parent: 1 + - uid: 79 components: - type: Transform pos: -2.5,-2.5 - parent: 2 - - uid: 608 + parent: 1 + - uid: 80 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-8.5 - parent: 2 - - uid: 609 + parent: 1 + - uid: 81 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-9.5 - parent: 2 - - uid: 610 + parent: 1 + - uid: 82 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-8.5 - parent: 2 + parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 36 + - uid: 83 components: - type: Transform pos: -5.5,-2.5 - parent: 2 - - uid: 42 + parent: 1 + - uid: 84 components: - type: Transform pos: 6.5,-2.5 - parent: 2 - - uid: 43 + parent: 1 + - uid: 85 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-1.5 - parent: 2 - - uid: 70 + parent: 1 + - uid: 86 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-1.5 - parent: 2 - - uid: 101 + parent: 1 + - uid: 87 components: - type: Transform pos: -5.5,-3.5 - parent: 2 - - uid: 104 + parent: 1 + - uid: 88 components: - type: Transform pos: 6.5,-3.5 - parent: 2 - - uid: 147 + parent: 1 + - uid: 89 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,14.5 - parent: 2 - - uid: 148 + parent: 1 + - uid: 90 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-5.5 - parent: 2 - - uid: 151 + parent: 1 + - uid: 91 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-5.5 - parent: 2 - - uid: 154 + parent: 1 + - uid: 92 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,14.5 - parent: 2 - - uid: 401 + parent: 1 + - uid: 93 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,4.5 - parent: 2 - - uid: 402 + parent: 1 + - uid: 94 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,3.5 - parent: 2 - - uid: 403 + parent: 1 + - uid: 95 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,4.5 - parent: 2 - - uid: 404 + parent: 1 + - uid: 96 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,3.5 - parent: 2 - - uid: 1041 + parent: 1 + - uid: 97 components: - type: Transform pos: 0.5,8.5 - parent: 2 + parent: 1 - proto: BaseWeaponTurretBattlemortar entities: - - uid: 580 + - uid: 98 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 617.4533 + - type: ApcPowerReceiverBattery + enabled: True - type: PointCannon linkedConsoleIds: - - 1100 - linkedConsoleId: 1100 - - uid: 715 + - 619 + linkedConsoleId: 619 + - uid: 99 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,10.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 617.4533 + - type: ApcPowerReceiverBattery + enabled: True - type: PointCannon linkedConsoleIds: - - 1100 - linkedConsoleId: 1100 - - uid: 718 + - 619 + linkedConsoleId: 619 + - uid: 100 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-2.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 617.4533 + - type: ApcPowerReceiverBattery + enabled: True - type: PointCannon linkedConsoleIds: - - 1100 - linkedConsoleId: 1100 + - 619 + linkedConsoleId: 619 - proto: BedsheetMedical entities: - - uid: 416 + - uid: 101 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-11.5 - parent: 2 - - uid: 417 + parent: 1 + - uid: 102 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-10.5 - parent: 2 + parent: 1 - proto: BenchSteelLeft entities: - - uid: 387 + - uid: 103 components: - type: Transform pos: -1.5,-3.5 - parent: 2 + parent: 1 - proto: BenchSteelRight entities: - - uid: 388 + - uid: 104 components: - type: Transform pos: -0.5,-3.5 - parent: 2 + parent: 1 - proto: BlastDoor entities: - - uid: 44 + - uid: 105 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-1.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 363 - - uid: 50 + - 862 + - uid: 106 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-1.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 364 - - uid: 53 + - 863 + - uid: 107 components: - type: Transform pos: 0.5,8.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 1048 - - uid: 188 + - 867 + - uid: 108 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-2.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 364 - - uid: 189 + - 863 + - uid: 109 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-3.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 364 - - uid: 190 + - 863 + - uid: 110 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-2.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 363 - - uid: 191 + - 862 + - uid: 111 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-3.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 363 - - uid: 192 + - 862 + - uid: 112 components: - type: Transform pos: -2.5,14.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 360 - - uid: 193 + - 860 + - uid: 113 components: - type: Transform pos: 3.5,14.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 362 + - 861 - proto: BoxT3SuperCapacitor entities: - - uid: 430 + - uid: 115 components: - type: Transform - parent: 429 + parent: 114 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 431 + - uid: 116 components: - type: Transform - parent: 429 + parent: 114 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ButtonFrameCaution entities: - - uid: 8 + - uid: 128 components: - type: Transform pos: 1.5,6.5 - parent: 2 - - uid: 355 + parent: 1 + - uid: 129 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-4.5 - parent: 2 - - uid: 356 + parent: 1 + - uid: 130 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-4.5 - parent: 2 - - uid: 358 + parent: 1 + - uid: 131 components: - type: Transform pos: 4.5,12.5 - parent: 2 - - uid: 359 + parent: 1 + - uid: 132 components: - type: Transform pos: -3.5,12.5 - parent: 2 - - uid: 480 + parent: 1 + - uid: 133 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 - parent: 2 - - uid: 964 + parent: 1 + - uid: 134 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,2.5 - parent: 2 - - uid: 965 + parent: 1 + - uid: 135 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,2.5 - parent: 2 + parent: 1 - proto: CableApcExtension entities: - - uid: 4 + - uid: 136 components: - type: Transform pos: 5.5,13.5 - parent: 2 - - uid: 7 + parent: 1 + - uid: 137 components: - type: Transform pos: 5.5,11.5 - parent: 2 - - uid: 9 + parent: 1 + - uid: 138 components: - type: Transform pos: -4.5,12.5 - parent: 2 - - uid: 11 + parent: 1 + - uid: 139 components: - type: Transform pos: 2.5,-20.5 - parent: 2 - - uid: 12 + parent: 1 + - uid: 140 components: - type: Transform pos: 8.5,6.5 - parent: 2 - - uid: 13 + parent: 1 + - uid: 141 components: - type: Transform pos: 7.5,5.5 - parent: 2 - - uid: 14 + parent: 1 + - uid: 142 components: - type: Transform pos: -1.5,-20.5 - parent: 2 - - uid: 15 + parent: 1 + - uid: 143 components: - type: Transform pos: -7.5,6.5 - parent: 2 - - uid: 16 + parent: 1 + - uid: 144 components: - type: Transform pos: -5.5,6.5 - parent: 2 - - uid: 17 + parent: 1 + - uid: 145 components: - type: Transform pos: -4.5,11.5 - parent: 2 - - uid: 18 + parent: 1 + - uid: 146 components: - type: Transform pos: 3.5,0.5 - parent: 2 - - uid: 19 + parent: 1 + - uid: 147 components: - type: Transform pos: -1.5,-19.5 - parent: 2 - - uid: 20 + parent: 1 + - uid: 148 components: - type: Transform pos: 2.5,-19.5 - parent: 2 - - uid: 25 + parent: 1 + - uid: 149 components: - type: Transform pos: -1.5,1.5 - parent: 2 - - uid: 270 + parent: 1 + - uid: 150 components: - type: Transform pos: 0.5,-9.5 - parent: 2 - - uid: 281 + parent: 1 + - uid: 151 components: - type: Transform pos: 0.5,-12.5 - parent: 2 - - uid: 290 + parent: 1 + - uid: 152 components: - type: Transform pos: 0.5,-11.5 - parent: 2 - - uid: 303 + parent: 1 + - uid: 153 components: - type: Transform pos: 0.5,-8.5 - parent: 2 - - uid: 306 + parent: 1 + - uid: 154 components: - type: Transform pos: 1.5,-8.5 - parent: 2 - - uid: 314 + parent: 1 + - uid: 155 components: - type: Transform pos: -4.5,13.5 - parent: 2 - - uid: 315 + parent: 1 + - uid: 156 components: - type: Transform pos: -6.5,6.5 - parent: 2 - - uid: 317 + parent: 1 + - uid: 157 components: - type: Transform pos: 6.5,11.5 - parent: 2 - - uid: 318 + parent: 1 + - uid: 158 components: - type: Transform pos: 7.5,6.5 - parent: 2 - - uid: 321 + parent: 1 + - uid: 159 components: - type: Transform pos: 6.5,6.5 - parent: 2 - - uid: 350 + parent: 1 + - uid: 160 components: - type: Transform pos: -5.5,11.5 - parent: 2 - - uid: 351 + parent: 1 + - uid: 161 components: - type: Transform pos: 5.5,12.5 - parent: 2 - - uid: 509 + parent: 1 + - uid: 162 components: - type: Transform pos: 5.5,-7.5 - parent: 2 - - uid: 581 + parent: 1 + - uid: 163 components: - type: Transform pos: -4.5,-13.5 - parent: 2 - - uid: 587 + parent: 1 + - uid: 164 components: - type: Transform pos: 3.5,10.5 - parent: 2 - - uid: 613 + parent: 1 + - uid: 165 components: - type: Transform pos: 6.5,-2.5 - parent: 2 - - uid: 614 + parent: 1 + - uid: 166 components: - type: Transform pos: 7.5,-2.5 - parent: 2 - - uid: 615 + parent: 1 + - uid: 167 components: - type: Transform pos: 7.5,-1.5 - parent: 2 - - uid: 625 + parent: 1 + - uid: 168 components: - type: Transform pos: 6.5,-1.5 - parent: 2 - - uid: 673 + parent: 1 + - uid: 169 components: - type: Transform pos: -6.5,-2.5 - parent: 2 - - uid: 710 + parent: 1 + - uid: 170 components: - type: Transform pos: 3.5,-8.5 - parent: 2 - - uid: 711 + parent: 1 + - uid: 171 components: - type: Transform pos: 2.5,-8.5 - parent: 2 - - uid: 712 + parent: 1 + - uid: 172 components: - type: Transform pos: -6.5,-1.5 - parent: 2 - - uid: 713 + parent: 1 + - uid: 173 components: - type: Transform pos: -5.5,-1.5 - parent: 2 - - uid: 714 + parent: 1 + - uid: 174 components: - type: Transform pos: -5.5,-2.5 - parent: 2 - - uid: 716 + parent: 1 + - uid: 175 components: - type: Transform pos: 0.5,-7.5 - parent: 2 - - uid: 717 + parent: 1 + - uid: 176 components: - type: Transform pos: 0.5,-6.5 - parent: 2 - - uid: 719 + parent: 1 + - uid: 177 components: - type: Transform pos: 0.5,-10.5 - parent: 2 - - uid: 720 + parent: 1 + - uid: 178 components: - type: Transform pos: -7.5,-2.5 - parent: 2 - - uid: 721 + parent: 1 + - uid: 179 components: - type: Transform pos: 8.5,-2.5 - parent: 2 - - uid: 723 + parent: 1 + - uid: 180 components: - type: Transform pos: 0.5,8.5 - parent: 2 - - uid: 724 + parent: 1 + - uid: 181 components: - type: Transform pos: 0.5,9.5 - parent: 2 - - uid: 725 + parent: 1 + - uid: 182 components: - type: Transform pos: -0.5,-6.5 - parent: 2 - - uid: 726 + parent: 1 + - uid: 183 components: - type: Transform pos: -1.5,-6.5 - parent: 2 - - uid: 727 + parent: 1 + - uid: 184 components: - type: Transform pos: 1.5,-6.5 - parent: 2 - - uid: 728 + parent: 1 + - uid: 185 components: - type: Transform pos: 2.5,-6.5 - parent: 2 - - uid: 729 + parent: 1 + - uid: 186 components: - type: Transform pos: 0.5,10.5 - parent: 2 - - uid: 730 + parent: 1 + - uid: 187 components: - type: Transform pos: -0.5,10.5 - parent: 2 - - uid: 731 + parent: 1 + - uid: 188 components: - type: Transform pos: -4.5,-8.5 - parent: 2 - - uid: 732 + parent: 1 + - uid: 189 components: - type: Transform pos: -3.5,-8.5 - parent: 2 - - uid: 733 + parent: 1 + - uid: 190 components: - type: Transform pos: -5.5,-8.5 - parent: 2 - - uid: 734 + parent: 1 + - uid: 191 components: - type: Transform pos: -5.5,-7.5 - parent: 2 - - uid: 735 + parent: 1 + - uid: 192 components: - type: Transform pos: -3.5,-9.5 - parent: 2 - - uid: 736 + parent: 1 + - uid: 193 components: - type: Transform pos: -3.5,-10.5 - parent: 2 - - uid: 737 + parent: 1 + - uid: 194 components: - type: Transform pos: -3.5,-11.5 - parent: 2 - - uid: 738 + parent: 1 + - uid: 195 components: - type: Transform pos: -4.5,-11.5 - parent: 2 - - uid: 739 + parent: 1 + - uid: 196 components: - type: Transform pos: -3.5,-7.5 - parent: 2 - - uid: 740 + parent: 1 + - uid: 197 components: - type: Transform pos: 7.5,-9.5 - parent: 2 - - uid: 741 + parent: 1 + - uid: 198 components: - type: Transform pos: 6.5,-9.5 - parent: 2 - - uid: 742 + parent: 1 + - uid: 199 components: - type: Transform pos: 5.5,-9.5 - parent: 2 - - uid: 743 + parent: 1 + - uid: 200 components: - type: Transform pos: 4.5,-9.5 - parent: 2 - - uid: 744 + parent: 1 + - uid: 201 components: - type: Transform pos: 5.5,-8.5 - parent: 2 - - uid: 745 + parent: 1 + - uid: 202 components: - type: Transform pos: 4.5,-7.5 - parent: 2 - - uid: 746 + parent: 1 + - uid: 203 components: - type: Transform pos: 5.5,-10.5 - parent: 2 - - uid: 747 + parent: 1 + - uid: 204 components: - type: Transform pos: 5.5,-11.5 - parent: 2 - - uid: 748 + parent: 1 + - uid: 205 components: - type: Transform pos: 6.5,-11.5 - parent: 2 - - uid: 756 + parent: 1 + - uid: 206 components: - type: Transform pos: 0.5,-13.5 - parent: 2 - - uid: 757 + parent: 1 + - uid: 207 components: - type: Transform pos: 0.5,-14.5 - parent: 2 - - uid: 758 + parent: 1 + - uid: 208 components: - type: Transform pos: 0.5,-15.5 - parent: 2 - - uid: 759 + parent: 1 + - uid: 209 components: - type: Transform pos: 0.5,-16.5 - parent: 2 - - uid: 760 + parent: 1 + - uid: 210 components: - type: Transform pos: 0.5,-17.5 - parent: 2 - - uid: 761 + parent: 1 + - uid: 211 components: - type: Transform pos: 1.5,-16.5 - parent: 2 - - uid: 762 + parent: 1 + - uid: 212 components: - type: Transform pos: 2.5,-16.5 - parent: 2 - - uid: 763 + parent: 1 + - uid: 213 components: - type: Transform pos: 3.5,-16.5 - parent: 2 - - uid: 764 + parent: 1 + - uid: 214 components: - type: Transform pos: 4.5,-16.5 - parent: 2 - - uid: 765 + parent: 1 + - uid: 215 components: - type: Transform pos: -0.5,-16.5 - parent: 2 - - uid: 766 + parent: 1 + - uid: 216 components: - type: Transform pos: -1.5,-16.5 - parent: 2 - - uid: 767 + parent: 1 + - uid: 217 components: - type: Transform pos: -2.5,-16.5 - parent: 2 - - uid: 768 + parent: 1 + - uid: 218 components: - type: Transform pos: -3.5,-16.5 - parent: 2 - - uid: 769 + parent: 1 + - uid: 219 components: - type: Transform pos: 0.5,-18.5 - parent: 2 - - uid: 770 + parent: 1 + - uid: 220 components: - type: Transform pos: 0.5,-19.5 - parent: 2 - - uid: 771 + parent: 1 + - uid: 221 components: - type: Transform pos: 1.5,-19.5 - parent: 2 - - uid: 772 + parent: 1 + - uid: 222 components: - type: Transform pos: -0.5,-19.5 - parent: 2 - - uid: 773 + parent: 1 + - uid: 223 components: - type: Transform pos: -0.5,-18.5 - parent: 2 - - uid: 774 + parent: 1 + - uid: 224 components: - type: Transform pos: -1.5,-18.5 - parent: 2 - - uid: 775 + parent: 1 + - uid: 225 components: - type: Transform pos: -2.5,-18.5 - parent: 2 - - uid: 776 + parent: 1 + - uid: 226 components: - type: Transform pos: -3.5,-18.5 - parent: 2 - - uid: 777 + parent: 1 + - uid: 227 components: - type: Transform pos: 1.5,-18.5 - parent: 2 - - uid: 778 + parent: 1 + - uid: 228 components: - type: Transform pos: 2.5,-18.5 - parent: 2 - - uid: 779 + parent: 1 + - uid: 229 components: - type: Transform pos: 3.5,-18.5 - parent: 2 - - uid: 780 + parent: 1 + - uid: 230 components: - type: Transform pos: 4.5,-18.5 - parent: 2 - - uid: 781 + parent: 1 + - uid: 231 components: - type: Transform pos: 1.5,-14.5 - parent: 2 - - uid: 782 + parent: 1 + - uid: 232 components: - type: Transform pos: 2.5,-14.5 - parent: 2 - - uid: 783 + parent: 1 + - uid: 233 components: - type: Transform pos: 3.5,-14.5 - parent: 2 - - uid: 784 + parent: 1 + - uid: 234 components: - type: Transform pos: 4.5,-14.5 - parent: 2 - - uid: 785 + parent: 1 + - uid: 235 components: - type: Transform pos: 5.5,-14.5 - parent: 2 - - uid: 786 + parent: 1 + - uid: 236 components: - type: Transform pos: 5.5,-13.5 - parent: 2 - - uid: 787 + parent: 1 + - uid: 237 components: - type: Transform pos: -0.5,-14.5 - parent: 2 - - uid: 788 + parent: 1 + - uid: 238 components: - type: Transform pos: -1.5,-14.5 - parent: 2 - - uid: 789 + parent: 1 + - uid: 239 components: - type: Transform pos: -2.5,-14.5 - parent: 2 - - uid: 790 + parent: 1 + - uid: 240 components: - type: Transform pos: -3.5,-14.5 - parent: 2 - - uid: 791 + parent: 1 + - uid: 241 components: - type: Transform pos: -4.5,-14.5 - parent: 2 - - uid: 792 + parent: 1 + - uid: 242 components: - type: Transform pos: -4.5,-13.5 - parent: 2 - - uid: 793 + parent: 1 + - uid: 243 components: - type: Transform pos: 8.5,-9.5 - parent: 2 - - uid: 794 + parent: 1 + - uid: 244 components: - type: Transform pos: 8.5,-8.5 - parent: 2 - - uid: 795 + parent: 1 + - uid: 245 components: - type: Transform pos: -6.5,-8.5 - parent: 2 - - uid: 796 + parent: 1 + - uid: 246 components: - type: Transform pos: -7.5,-8.5 - parent: 2 - - uid: 797 + parent: 1 + - uid: 247 components: - type: Transform pos: -7.5,-9.5 - parent: 2 - - uid: 798 + parent: 1 + - uid: 248 components: - type: Transform pos: -5.5,-8.5 - parent: 2 - - uid: 799 + parent: 1 + - uid: 249 components: - type: Transform pos: -2.5,-2.5 - parent: 2 - - uid: 800 + parent: 1 + - uid: 250 components: - type: Transform pos: -2.5,-3.5 - parent: 2 - - uid: 801 + parent: 1 + - uid: 251 components: - type: Transform pos: -2.5,-4.5 - parent: 2 - - uid: 802 + parent: 1 + - uid: 252 components: - type: Transform pos: -3.5,-4.5 - parent: 2 - - uid: 803 + parent: 1 + - uid: 253 components: - type: Transform pos: -4.5,-4.5 - parent: 2 - - uid: 804 + parent: 1 + - uid: 254 components: - type: Transform pos: -4.5,-5.5 - parent: 2 - - uid: 805 + parent: 1 + - uid: 255 components: - type: Transform pos: -5.5,-5.5 - parent: 2 - - uid: 806 + parent: 1 + - uid: 256 components: - type: Transform pos: -6.5,-5.5 - parent: 2 - - uid: 807 + parent: 1 + - uid: 257 components: - type: Transform pos: -7.5,-5.5 - parent: 2 - - uid: 808 + parent: 1 + - uid: 258 components: - type: Transform pos: -4.5,-3.5 - parent: 2 - - uid: 809 + parent: 1 + - uid: 259 components: - type: Transform pos: -5.5,-3.5 - parent: 2 - - uid: 810 + parent: 1 + - uid: 260 components: - type: Transform pos: -6.5,-3.5 - parent: 2 - - uid: 811 + parent: 1 + - uid: 261 components: - type: Transform pos: -1.5,-4.5 - parent: 2 - - uid: 812 + parent: 1 + - uid: 262 components: - type: Transform pos: -0.5,-4.5 - parent: 2 - - uid: 813 + parent: 1 + - uid: 263 components: - type: Transform pos: 0.5,-4.5 - parent: 2 - - uid: 814 + parent: 1 + - uid: 264 components: - type: Transform pos: 1.5,-4.5 - parent: 2 - - uid: 815 + parent: 1 + - uid: 265 components: - type: Transform pos: 2.5,-4.5 - parent: 2 - - uid: 816 + parent: 1 + - uid: 266 components: - type: Transform pos: 3.5,-4.5 - parent: 2 - - uid: 817 + parent: 1 + - uid: 267 components: - type: Transform pos: 4.5,-4.5 - parent: 2 - - uid: 818 + parent: 1 + - uid: 268 components: - type: Transform pos: 5.5,-4.5 - parent: 2 - - uid: 819 + parent: 1 + - uid: 269 components: - type: Transform pos: 5.5,-5.5 - parent: 2 - - uid: 820 + parent: 1 + - uid: 270 components: - type: Transform pos: 6.5,-5.5 - parent: 2 - - uid: 821 + parent: 1 + - uid: 271 components: - type: Transform pos: 7.5,-5.5 - parent: 2 - - uid: 822 + parent: 1 + - uid: 272 components: - type: Transform pos: 8.5,-5.5 - parent: 2 - - uid: 823 + parent: 1 + - uid: 273 components: - type: Transform pos: 5.5,-3.5 - parent: 2 - - uid: 824 + parent: 1 + - uid: 274 components: - type: Transform pos: 6.5,-3.5 - parent: 2 - - uid: 825 + parent: 1 + - uid: 275 components: - type: Transform pos: 7.5,-3.5 - parent: 2 - - uid: 826 + parent: 1 + - uid: 276 components: - type: Transform pos: 5.5,-2.5 - parent: 2 - - uid: 827 + parent: 1 + - uid: 277 components: - type: Transform pos: 5.5,-1.5 - parent: 2 - - uid: 828 + parent: 1 + - uid: 278 components: - type: Transform pos: 5.5,-0.5 - parent: 2 - - uid: 829 + parent: 1 + - uid: 279 components: - type: Transform pos: 6.5,-0.5 - parent: 2 - - uid: 830 + parent: 1 + - uid: 280 components: - type: Transform pos: 7.5,-0.5 - parent: 2 - - uid: 831 + parent: 1 + - uid: 281 components: - type: Transform pos: 7.5,0.5 - parent: 2 - - uid: 832 + parent: 1 + - uid: 282 components: - type: Transform pos: -4.5,-2.5 - parent: 2 - - uid: 833 + parent: 1 + - uid: 283 components: - type: Transform pos: -4.5,-1.5 - parent: 2 - - uid: 834 + parent: 1 + - uid: 284 components: - type: Transform pos: -4.5,-0.5 - parent: 2 - - uid: 835 + parent: 1 + - uid: 285 components: - type: Transform pos: -5.5,-0.5 - parent: 2 - - uid: 836 + parent: 1 + - uid: 286 components: - type: Transform pos: -6.5,-0.5 - parent: 2 - - uid: 837 + parent: 1 + - uid: 287 components: - type: Transform pos: -6.5,0.5 - parent: 2 - - uid: 838 + parent: 1 + - uid: 288 components: - type: Transform pos: 2.5,1.5 - parent: 2 - - uid: 839 + parent: 1 + - uid: 289 components: - type: Transform pos: 2.5,0.5 - parent: 2 - - uid: 840 + parent: 1 + - uid: 290 components: - type: Transform pos: 2.5,-0.5 - parent: 2 - - uid: 841 + parent: 1 + - uid: 291 components: - type: Transform pos: 2.5,-1.5 - parent: 2 - - uid: 842 + parent: 1 + - uid: 292 components: - type: Transform pos: 1.5,-1.5 - parent: 2 - - uid: 843 + parent: 1 + - uid: 293 components: - type: Transform pos: 0.5,-1.5 - parent: 2 - - uid: 844 + parent: 1 + - uid: 294 components: - type: Transform pos: -0.5,-1.5 - parent: 2 - - uid: 845 + parent: 1 + - uid: 295 components: - type: Transform pos: -1.5,-1.5 - parent: 2 - - uid: 846 + parent: 1 + - uid: 296 components: - type: Transform pos: 0.5,-0.5 - parent: 2 - - uid: 847 + parent: 1 + - uid: 297 components: - type: Transform pos: 0.5,0.5 - parent: 2 - - uid: 848 + parent: 1 + - uid: 298 components: - type: Transform pos: 0.5,1.5 - parent: 2 - - uid: 849 + parent: 1 + - uid: 299 components: - type: Transform pos: -0.5,1.5 - parent: 2 - - uid: 850 + parent: 1 + - uid: 300 components: - type: Transform pos: 1.5,1.5 - parent: 2 - - uid: 851 + parent: 1 + - uid: 301 components: - type: Transform pos: -1.5,0.5 - parent: 2 - - uid: 852 + parent: 1 + - uid: 302 components: - type: Transform pos: -1.5,-0.5 - parent: 2 - - uid: 853 + parent: 1 + - uid: 303 components: - type: Transform pos: -1.5,10.5 - parent: 2 - - uid: 854 + parent: 1 + - uid: 304 components: - type: Transform pos: 5.5,0.5 - parent: 2 - - uid: 855 + parent: 1 + - uid: 305 components: - type: Transform pos: -4.5,0.5 - parent: 2 - - uid: 856 + parent: 1 + - uid: 306 components: - type: Transform pos: -3.5,10.5 - parent: 2 - - uid: 857 + parent: 1 + - uid: 307 components: - type: Transform pos: -3.5,9.5 - parent: 2 - - uid: 858 + parent: 1 + - uid: 308 components: - type: Transform pos: -3.5,8.5 - parent: 2 - - uid: 859 + parent: 1 + - uid: 309 components: - type: Transform pos: -3.5,7.5 - parent: 2 - - uid: 860 + parent: 1 + - uid: 310 components: - type: Transform pos: -4.5,8.5 - parent: 2 - - uid: 861 + parent: 1 + - uid: 311 components: - type: Transform pos: -2.5,8.5 - parent: 2 - - uid: 862 + parent: 1 + - uid: 312 components: - type: Transform pos: -2.5,10.5 - parent: 2 - - uid: 863 + parent: 1 + - uid: 313 components: - type: Transform pos: -2.5,11.5 - parent: 2 - - uid: 864 + parent: 1 + - uid: 314 components: - type: Transform pos: -2.5,12.5 - parent: 2 - - uid: 865 + parent: 1 + - uid: 315 components: - type: Transform pos: -2.5,13.5 - parent: 2 - - uid: 866 + parent: 1 + - uid: 316 components: - type: Transform pos: -4.5,7.5 - parent: 2 - - uid: 867 + parent: 1 + - uid: 317 components: - type: Transform pos: -5.5,7.5 - parent: 2 - - uid: 868 + parent: 1 + - uid: 318 components: - type: Transform pos: -6.5,7.5 - parent: 2 - - uid: 869 + parent: 1 + - uid: 319 components: - type: Transform pos: 4.5,10.5 - parent: 2 - - uid: 870 + parent: 1 + - uid: 320 components: - type: Transform pos: 4.5,9.5 - parent: 2 - - uid: 871 + parent: 1 + - uid: 321 components: - type: Transform pos: 4.5,8.5 - parent: 2 - - uid: 872 + parent: 1 + - uid: 322 components: - type: Transform pos: 4.5,7.5 - parent: 2 - - uid: 873 + parent: 1 + - uid: 323 components: - type: Transform pos: 3.5,7.5 - parent: 2 - - uid: 874 + parent: 1 + - uid: 324 components: - type: Transform pos: 5.5,8.5 - parent: 2 - - uid: 875 + parent: 1 + - uid: 325 components: - type: Transform pos: 6.5,8.5 - parent: 2 - - uid: 876 + parent: 1 + - uid: 326 components: - type: Transform pos: 6.5,7.5 - parent: 2 - - uid: 877 + parent: 1 + - uid: 327 components: - type: Transform pos: 7.5,7.5 - parent: 2 - - uid: 878 + parent: 1 + - uid: 328 components: - type: Transform pos: 3.5,11.5 - parent: 2 - - uid: 879 + parent: 1 + - uid: 329 components: - type: Transform pos: 3.5,12.5 - parent: 2 - - uid: 880 + parent: 1 + - uid: 330 components: - type: Transform pos: 3.5,13.5 - parent: 2 - - uid: 881 + parent: 1 + - uid: 331 components: - type: Transform pos: 4.5,11.5 - parent: 2 - - uid: 882 + parent: 1 + - uid: 332 components: - type: Transform pos: -3.5,11.5 - parent: 2 - - uid: 883 + parent: 1 + - uid: 333 components: - type: Transform pos: -6.5,5.5 - parent: 2 - - uid: 884 + parent: 1 + - uid: 334 components: - type: Transform pos: -5.5,5.5 - parent: 2 - - uid: 885 + parent: 1 + - uid: 335 components: - type: Transform pos: -4.5,5.5 - parent: 2 - - uid: 886 + parent: 1 + - uid: 336 components: - type: Transform pos: -3.5,5.5 - parent: 2 - - uid: 887 + parent: 1 + - uid: 337 components: - type: Transform pos: -2.5,5.5 - parent: 2 - - uid: 888 + parent: 1 + - uid: 338 components: - type: Transform pos: -1.5,5.5 - parent: 2 - - uid: 889 + parent: 1 + - uid: 339 components: - type: Transform pos: -0.5,5.5 - parent: 2 - - uid: 890 + parent: 1 + - uid: 340 components: - type: Transform pos: 0.5,5.5 - parent: 2 - - uid: 891 + parent: 1 + - uid: 341 components: - type: Transform pos: 1.5,5.5 - parent: 2 - - uid: 892 + parent: 1 + - uid: 342 components: - type: Transform pos: 2.5,5.5 - parent: 2 - - uid: 893 + parent: 1 + - uid: 343 components: - type: Transform pos: 3.5,5.5 - parent: 2 - - uid: 894 + parent: 1 + - uid: 344 components: - type: Transform pos: 4.5,5.5 - parent: 2 - - uid: 895 + parent: 1 + - uid: 345 components: - type: Transform pos: 5.5,5.5 - parent: 2 - - uid: 896 + parent: 1 + - uid: 346 components: - type: Transform pos: 6.5,5.5 - parent: 2 - - uid: 897 + parent: 1 + - uid: 347 components: - type: Transform pos: 6.5,4.5 - parent: 2 - - uid: 898 + parent: 1 + - uid: 348 components: - type: Transform pos: 6.5,3.5 - parent: 2 - - uid: 899 + parent: 1 + - uid: 349 components: - type: Transform pos: 6.5,2.5 - parent: 2 - - uid: 900 + parent: 1 + - uid: 350 components: - type: Transform pos: 5.5,4.5 - parent: 2 - - uid: 901 + parent: 1 + - uid: 351 components: - type: Transform pos: 5.5,3.5 - parent: 2 - - uid: 902 + parent: 1 + - uid: 352 components: - type: Transform pos: 5.5,2.5 - parent: 2 - - uid: 903 + parent: 1 + - uid: 353 components: - type: Transform pos: 5.5,2.5 - parent: 2 - - uid: 904 + parent: 1 + - uid: 354 components: - type: Transform pos: 4.5,2.5 - parent: 2 - - uid: 905 + parent: 1 + - uid: 355 components: - type: Transform pos: 3.5,2.5 - parent: 2 - - uid: 906 + parent: 1 + - uid: 356 components: - type: Transform pos: 3.5,3.5 - parent: 2 - - uid: 907 + parent: 1 + - uid: 357 components: - type: Transform pos: 2.5,3.5 - parent: 2 - - uid: 908 + parent: 1 + - uid: 358 components: - type: Transform pos: 1.5,3.5 - parent: 2 - - uid: 909 + parent: 1 + - uid: 359 components: - type: Transform pos: 0.5,3.5 - parent: 2 - - uid: 910 + parent: 1 + - uid: 360 components: - type: Transform pos: -0.5,3.5 - parent: 2 - - uid: 911 + parent: 1 + - uid: 361 components: - type: Transform pos: -1.5,3.5 - parent: 2 - - uid: 912 + parent: 1 + - uid: 362 components: - type: Transform pos: -2.5,3.5 - parent: 2 - - uid: 913 + parent: 1 + - uid: 363 components: - type: Transform pos: -3.5,3.5 - parent: 2 - - uid: 914 + parent: 1 + - uid: 364 components: - type: Transform pos: -4.5,3.5 - parent: 2 - - uid: 915 + parent: 1 + - uid: 365 components: - type: Transform pos: -5.5,3.5 - parent: 2 - - uid: 916 + parent: 1 + - uid: 366 components: - type: Transform pos: -5.5,2.5 - parent: 2 - - uid: 917 + parent: 1 + - uid: 367 components: - type: Transform pos: -5.5,4.5 - parent: 2 - - uid: 918 + parent: 1 + - uid: 368 components: - type: Transform pos: 0.5,4.5 - parent: 2 - - uid: 919 + parent: 1 + - uid: 369 components: - type: Transform pos: 0.5,6.5 - parent: 2 - - uid: 920 + parent: 1 + - uid: 370 components: - type: Transform pos: 0.5,7.5 - parent: 2 - - uid: 921 + parent: 1 + - uid: 371 components: - type: Transform pos: 0.5,8.5 - parent: 2 - - uid: 922 + parent: 1 + - uid: 372 components: - type: Transform pos: 1.5,8.5 - parent: 2 - - uid: 923 + parent: 1 + - uid: 373 components: - type: Transform pos: -0.5,8.5 - parent: 2 - - uid: 928 + parent: 1 + - uid: 374 components: - type: Transform pos: 1.5,10.5 - parent: 2 - - uid: 929 + parent: 1 + - uid: 375 components: - type: Transform pos: 2.5,10.5 - parent: 2 - - uid: 943 + parent: 1 + - uid: 376 components: - type: Transform pos: 2.5,11.5 - parent: 2 - - uid: 945 + parent: 1 + - uid: 377 components: - type: Transform pos: -1.5,11.5 - parent: 2 - - uid: 977 + parent: 1 + - uid: 378 components: - type: Transform pos: -5.5,-13.5 - parent: 2 - - uid: 978 + parent: 1 + - uid: 379 components: - type: Transform pos: -6.5,-13.5 - parent: 2 - - uid: 979 + parent: 1 + - uid: 380 components: - type: Transform pos: 6.5,-13.5 - parent: 2 - - uid: 980 + parent: 1 + - uid: 381 components: - type: Transform pos: 7.5,-13.5 - parent: 2 - - uid: 981 + parent: 1 + - uid: 382 components: - type: Transform pos: 6.5,9.5 - parent: 2 - - uid: 982 + parent: 1 + - uid: 383 components: - type: Transform pos: 6.5,10.5 - parent: 2 - - uid: 984 + parent: 1 + - uid: 384 components: - type: Transform pos: -5.5,8.5 - parent: 2 - - uid: 985 + parent: 1 + - uid: 385 components: - type: Transform pos: -5.5,9.5 - parent: 2 - - uid: 986 + parent: 1 + - uid: 386 components: - type: Transform pos: -5.5,10.5 - parent: 2 + parent: 1 - proto: CableHV entities: - - uid: 96 + - uid: 387 components: - type: Transform pos: -1.5,-11.5 - parent: 2 - - uid: 136 + parent: 1 + - uid: 388 components: - type: Transform pos: -1.5,-10.5 - parent: 2 - - uid: 292 + parent: 1 + - uid: 389 components: - type: Transform pos: -1.5,-12.5 - parent: 2 - - uid: 298 + parent: 1 + - uid: 390 components: - type: Transform pos: -1.5,-14.5 - parent: 2 - - uid: 304 + parent: 1 + - uid: 391 components: - type: Transform pos: -0.5,-14.5 - parent: 2 - - uid: 305 + parent: 1 + - uid: 392 components: - type: Transform pos: -1.5,-13.5 - parent: 2 - - uid: 320 + parent: 1 + - uid: 393 components: - type: Transform pos: 0.5,-14.5 - parent: 2 - - uid: 322 + parent: 1 + - uid: 394 components: - type: Transform pos: 0.5,-15.5 - parent: 2 - - uid: 369 + parent: 1 + - uid: 395 components: - type: Transform pos: -0.5,-10.5 - parent: 2 - - uid: 616 + parent: 1 + - uid: 396 components: - type: Transform pos: 0.5,-16.5 - parent: 2 - - uid: 617 + parent: 1 + - uid: 397 components: - type: Transform pos: 1.5,-16.5 - parent: 2 - - uid: 618 + parent: 1 + - uid: 398 components: - type: Transform pos: 2.5,-16.5 - parent: 2 - - uid: 619 + parent: 1 + - uid: 399 components: - type: Transform pos: 3.5,-16.5 - parent: 2 - - uid: 620 + parent: 1 + - uid: 400 components: - type: Transform pos: 4.5,-16.5 - parent: 2 - - uid: 621 + parent: 1 + - uid: 401 components: - type: Transform pos: -0.5,-16.5 - parent: 2 - - uid: 622 + parent: 1 + - uid: 402 components: - type: Transform pos: -1.5,-16.5 - parent: 2 - - uid: 623 + parent: 1 + - uid: 403 components: - type: Transform pos: -2.5,-16.5 - parent: 2 - - uid: 624 + parent: 1 + - uid: 404 components: - type: Transform pos: -3.5,-16.5 - parent: 2 + parent: 1 - proto: CableMV entities: - - uid: 102 + - uid: 405 components: - type: Transform pos: -3.5,-15.5 - parent: 2 - - uid: 283 + parent: 1 + - uid: 406 components: - type: Transform pos: 0.5,-14.5 - parent: 2 - - uid: 299 + parent: 1 + - uid: 407 components: - type: Transform pos: -0.5,-15.5 - parent: 2 - - uid: 312 + parent: 1 + - uid: 408 components: - type: Transform pos: 3.5,0.5 - parent: 2 - - uid: 433 + parent: 1 + - uid: 409 components: - type: Transform pos: -1.5,-15.5 - parent: 2 - - uid: 626 + parent: 1 + - uid: 410 components: - type: Transform pos: 0.5,-13.5 - parent: 2 - - uid: 627 + parent: 1 + - uid: 411 components: - type: Transform pos: 1.5,-14.5 - parent: 2 - - uid: 628 + parent: 1 + - uid: 412 components: - type: Transform pos: 2.5,-14.5 - parent: 2 - - uid: 629 + parent: 1 + - uid: 413 components: - type: Transform pos: 3.5,-14.5 - parent: 2 - - uid: 630 + parent: 1 + - uid: 414 components: - type: Transform pos: 4.5,-14.5 - parent: 2 - - uid: 631 + parent: 1 + - uid: 415 components: - type: Transform pos: 4.5,-13.5 - parent: 2 - - uid: 632 + parent: 1 + - uid: 416 components: - type: Transform pos: 4.5,-12.5 - parent: 2 - - uid: 633 + parent: 1 + - uid: 417 components: - type: Transform pos: 4.5,-11.5 - parent: 2 - - uid: 634 + parent: 1 + - uid: 418 components: - type: Transform pos: 4.5,-10.5 - parent: 2 - - uid: 635 + parent: 1 + - uid: 419 components: - type: Transform pos: 4.5,-9.5 - parent: 2 - - uid: 636 + parent: 1 + - uid: 420 components: - type: Transform pos: 5.5,-9.5 - parent: 2 - - uid: 637 + parent: 1 + - uid: 421 components: - type: Transform pos: 6.5,-9.5 - parent: 2 - - uid: 638 + parent: 1 + - uid: 422 components: - type: Transform pos: 7.5,-9.5 - parent: 2 - - uid: 639 + parent: 1 + - uid: 423 components: - type: Transform pos: 4.5,-8.5 - parent: 2 - - uid: 640 + parent: 1 + - uid: 424 components: - type: Transform pos: 4.5,-7.5 - parent: 2 - - uid: 641 + parent: 1 + - uid: 425 components: - type: Transform pos: 4.5,-6.5 - parent: 2 - - uid: 642 + parent: 1 + - uid: 426 components: - type: Transform pos: 4.5,-5.5 - parent: 2 - - uid: 643 + parent: 1 + - uid: 427 components: - type: Transform pos: 4.5,-4.5 - parent: 2 - - uid: 644 + parent: 1 + - uid: 428 components: - type: Transform pos: 3.5,-4.5 - parent: 2 - - uid: 645 + parent: 1 + - uid: 429 components: - type: Transform pos: 2.5,-4.5 - parent: 2 - - uid: 646 + parent: 1 + - uid: 430 components: - type: Transform pos: 1.5,-4.5 - parent: 2 - - uid: 647 + parent: 1 + - uid: 431 components: - type: Transform pos: 0.5,-4.5 - parent: 2 - - uid: 648 + parent: 1 + - uid: 432 components: - type: Transform pos: -0.5,-4.5 - parent: 2 - - uid: 649 + parent: 1 + - uid: 433 components: - type: Transform pos: -1.5,-4.5 - parent: 2 - - uid: 650 + parent: 1 + - uid: 434 components: - type: Transform pos: -2.5,-4.5 - parent: 2 - - uid: 651 + parent: 1 + - uid: 435 components: - type: Transform pos: -3.5,-4.5 - parent: 2 - - uid: 652 + parent: 1 + - uid: 436 components: - type: Transform pos: -3.5,-5.5 - parent: 2 - - uid: 653 + parent: 1 + - uid: 437 components: - type: Transform pos: -3.5,-6.5 - parent: 2 - - uid: 654 + parent: 1 + - uid: 438 components: - type: Transform pos: -3.5,-7.5 - parent: 2 - - uid: 655 + parent: 1 + - uid: 439 components: - type: Transform pos: -3.5,-8.5 - parent: 2 - - uid: 656 + parent: 1 + - uid: 440 components: - type: Transform pos: -3.5,-9.5 - parent: 2 - - uid: 657 + parent: 1 + - uid: 441 components: - type: Transform pos: -3.5,-10.5 - parent: 2 - - uid: 658 + parent: 1 + - uid: 442 components: - type: Transform pos: -3.5,-11.5 - parent: 2 - - uid: 659 + parent: 1 + - uid: 443 components: - type: Transform pos: -3.5,-12.5 - parent: 2 - - uid: 660 + parent: 1 + - uid: 444 components: - type: Transform pos: -3.5,-13.5 - parent: 2 - - uid: 661 + parent: 1 + - uid: 445 components: - type: Transform pos: -3.5,-14.5 - parent: 2 - - uid: 662 + parent: 1 + - uid: 446 components: - type: Transform pos: -2.5,-14.5 - parent: 2 - - uid: 663 + parent: 1 + - uid: 447 components: - type: Transform pos: -1.5,-14.5 - parent: 2 - - uid: 664 + parent: 1 + - uid: 448 components: - type: Transform pos: -0.5,-14.5 - parent: 2 - - uid: 665 + parent: 1 + - uid: 449 components: - type: Transform pos: -4.5,-8.5 - parent: 2 - - uid: 666 + parent: 1 + - uid: 450 components: - type: Transform pos: -2.5,-3.5 - parent: 2 - - uid: 667 + parent: 1 + - uid: 451 components: - type: Transform pos: -2.5,-2.5 - parent: 2 - - uid: 668 + parent: 1 + - uid: 452 components: - type: Transform pos: 2.5,-3.5 - parent: 2 - - uid: 669 + parent: 1 + - uid: 453 components: - type: Transform pos: 2.5,-2.5 - parent: 2 - - uid: 670 + parent: 1 + - uid: 454 components: - type: Transform pos: 2.5,-1.5 - parent: 2 - - uid: 671 + parent: 1 + - uid: 455 components: - type: Transform pos: 2.5,-0.5 - parent: 2 - - uid: 672 + parent: 1 + - uid: 456 components: - type: Transform pos: 2.5,0.5 - parent: 2 - - uid: 674 + parent: 1 + - uid: 457 components: - type: Transform pos: 5.5,-4.5 - parent: 2 - - uid: 675 + parent: 1 + - uid: 458 components: - type: Transform pos: 5.5,-3.5 - parent: 2 - - uid: 676 + parent: 1 + - uid: 459 components: - type: Transform pos: 5.5,-2.5 - parent: 2 - - uid: 677 + parent: 1 + - uid: 460 components: - type: Transform pos: 5.5,-1.5 - parent: 2 - - uid: 678 + parent: 1 + - uid: 461 components: - type: Transform pos: 5.5,-0.5 - parent: 2 - - uid: 679 + parent: 1 + - uid: 462 components: - type: Transform pos: 5.5,0.5 - parent: 2 - - uid: 680 + parent: 1 + - uid: 463 components: - type: Transform pos: 5.5,1.5 - parent: 2 - - uid: 681 + parent: 1 + - uid: 464 components: - type: Transform pos: 5.5,2.5 - parent: 2 - - uid: 682 + parent: 1 + - uid: 465 components: - type: Transform pos: 5.5,3.5 - parent: 2 - - uid: 683 + parent: 1 + - uid: 466 components: - type: Transform pos: 5.5,4.5 - parent: 2 - - uid: 684 + parent: 1 + - uid: 467 components: - type: Transform pos: 5.5,5.5 - parent: 2 - - uid: 685 + parent: 1 + - uid: 468 components: - type: Transform pos: 5.5,6.5 - parent: 2 - - uid: 686 + parent: 1 + - uid: 469 components: - type: Transform pos: 5.5,7.5 - parent: 2 - - uid: 687 + parent: 1 + - uid: 470 components: - type: Transform pos: 5.5,8.5 - parent: 2 - - uid: 688 + parent: 1 + - uid: 471 components: - type: Transform pos: 4.5,8.5 - parent: 2 - - uid: 689 + parent: 1 + - uid: 472 components: - type: Transform pos: 4.5,9.5 - parent: 2 - - uid: 690 + parent: 1 + - uid: 473 components: - type: Transform pos: 4.5,10.5 - parent: 2 - - uid: 691 + parent: 1 + - uid: 474 components: - type: Transform pos: -4.5,-2.5 - parent: 2 - - uid: 692 + parent: 1 + - uid: 475 components: - type: Transform pos: -4.5,-3.5 - parent: 2 - - uid: 693 + parent: 1 + - uid: 476 components: - type: Transform pos: -4.5,-4.5 - parent: 2 - - uid: 694 + parent: 1 + - uid: 477 components: - type: Transform pos: -4.5,-1.5 - parent: 2 - - uid: 695 + parent: 1 + - uid: 478 components: - type: Transform pos: -4.5,-0.5 - parent: 2 - - uid: 696 + parent: 1 + - uid: 479 components: - type: Transform pos: -4.5,0.5 - parent: 2 - - uid: 697 + parent: 1 + - uid: 480 components: - type: Transform pos: -4.5,1.5 - parent: 2 - - uid: 698 + parent: 1 + - uid: 481 components: - type: Transform pos: -4.5,2.5 - parent: 2 - - uid: 699 + parent: 1 + - uid: 482 components: - type: Transform pos: -4.5,3.5 - parent: 2 - - uid: 700 + parent: 1 + - uid: 483 components: - type: Transform pos: -4.5,4.5 - parent: 2 - - uid: 701 + parent: 1 + - uid: 484 components: - type: Transform pos: -4.5,5.5 - parent: 2 - - uid: 702 + parent: 1 + - uid: 485 components: - type: Transform pos: -5.5,5.5 - parent: 2 - - uid: 703 + parent: 1 + - uid: 486 components: - type: Transform pos: -6.5,5.5 - parent: 2 - - uid: 704 + parent: 1 + - uid: 487 components: - type: Transform pos: -3.5,5.5 - parent: 2 - - uid: 705 + parent: 1 + - uid: 488 components: - type: Transform pos: -3.5,6.5 - parent: 2 - - uid: 706 + parent: 1 + - uid: 489 components: - type: Transform pos: -3.5,7.5 - parent: 2 - - uid: 707 + parent: 1 + - uid: 490 components: - type: Transform pos: -3.5,8.5 - parent: 2 - - uid: 708 + parent: 1 + - uid: 491 components: - type: Transform pos: -3.5,9.5 - parent: 2 - - uid: 709 + parent: 1 + - uid: 492 components: - type: Transform pos: -3.5,10.5 - parent: 2 - - uid: 972 + parent: 1 + - uid: 493 components: - type: Transform pos: 2.5,-5.5 - parent: 2 - - uid: 973 + parent: 1 + - uid: 494 components: - type: Transform pos: 2.5,-6.5 - parent: 2 - - uid: 974 + parent: 1 + - uid: 495 components: - type: Transform pos: 2.5,-7.5 - parent: 2 - - uid: 975 + parent: 1 + - uid: 496 components: - type: Transform pos: 2.5,-8.5 - parent: 2 - - uid: 976 + parent: 1 + - uid: 497 components: - type: Transform pos: 3.5,-8.5 - parent: 2 - - uid: 1025 + parent: 1 + - uid: 498 components: - type: Transform pos: -3.5,-16.5 - parent: 2 + parent: 1 - proto: CableTerminal entities: - - uid: 226 + - uid: 499 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-14.5 - parent: 2 + parent: 1 - proto: Catwalk entities: - - uid: 30 + - uid: 500 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-5.5 - parent: 2 - - uid: 31 + parent: 1 + - uid: 501 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 - parent: 2 - - uid: 32 + parent: 1 + - uid: 502 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 - parent: 2 - - uid: 33 + parent: 1 + - uid: 503 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,3.5 - parent: 2 - - uid: 34 + parent: 1 + - uid: 504 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,4.5 - parent: 2 - - uid: 35 + parent: 1 + - uid: 505 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-3.5 - parent: 2 - - uid: 37 + parent: 1 + - uid: 506 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-1.5 - parent: 2 - - uid: 39 + parent: 1 + - uid: 507 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,4.5 - parent: 2 - - uid: 40 + parent: 1 + - uid: 508 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,3.5 - parent: 2 - - uid: 41 + parent: 1 + - uid: 509 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,4.5 - parent: 2 - - uid: 46 + parent: 1 + - uid: 510 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,11.5 - parent: 2 - - uid: 49 + parent: 1 + - uid: 511 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 - parent: 2 - - uid: 54 + parent: 1 + - uid: 512 components: - type: Transform pos: -6.5,0.5 - parent: 2 - - uid: 69 + parent: 1 + - uid: 513 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-4.5 - parent: 2 - - uid: 94 + parent: 1 + - uid: 514 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-4.5 - parent: 2 - - uid: 170 + parent: 1 + - uid: 515 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,11.5 - parent: 2 - - uid: 186 + parent: 1 + - uid: 516 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 - parent: 2 - - uid: 199 + parent: 1 + - uid: 517 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-4.5 - parent: 2 - - uid: 266 + parent: 1 + - uid: 518 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-14.5 - parent: 2 - - uid: 285 + parent: 1 + - uid: 519 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,9.5 - parent: 2 - - uid: 300 + parent: 1 + - uid: 520 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-4.5 - parent: 2 - - uid: 310 + parent: 1 + - uid: 521 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 - parent: 2 - - uid: 319 + parent: 1 + - uid: 522 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-9.5 - parent: 2 - - uid: 323 + parent: 1 + - uid: 523 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-10.5 - parent: 2 - - uid: 346 + parent: 1 + - uid: 524 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-12.5 - parent: 2 - - uid: 348 + parent: 1 + - uid: 525 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-11.5 - parent: 2 - - uid: 349 + parent: 1 + - uid: 526 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 - parent: 2 - - uid: 353 + parent: 1 + - uid: 527 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-3.5 - parent: 2 - - uid: 366 + parent: 1 + - uid: 528 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-13.5 - parent: 2 - - uid: 373 + parent: 1 + - uid: 529 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,0.5 - parent: 2 - - uid: 375 + parent: 1 + - uid: 530 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 - parent: 2 - - uid: 381 + parent: 1 + - uid: 531 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 - parent: 2 - - uid: 382 + parent: 1 + - uid: 532 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-1.5 - parent: 2 - - uid: 385 + parent: 1 + - uid: 533 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-0.5 - parent: 2 - - uid: 386 + parent: 1 + - uid: 534 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-0.5 - parent: 2 - - uid: 393 + parent: 1 + - uid: 535 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 - parent: 2 - - uid: 436 + parent: 1 + - uid: 536 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-15.5 - parent: 2 - - uid: 437 + parent: 1 + - uid: 537 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-15.5 - parent: 2 - - uid: 438 + parent: 1 + - uid: 538 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-15.5 - parent: 2 - - uid: 439 + parent: 1 + - uid: 539 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-16.5 - parent: 2 - - uid: 441 + parent: 1 + - uid: 540 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-15.5 - parent: 2 - - uid: 442 + parent: 1 + - uid: 541 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-15.5 - parent: 2 - - uid: 446 + parent: 1 + - uid: 542 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-14.5 - parent: 2 - - uid: 463 + parent: 1 + - uid: 543 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-17.5 - parent: 2 - - uid: 465 + parent: 1 + - uid: 544 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-17.5 - parent: 2 - - uid: 486 + parent: 1 + - uid: 545 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-17.5 - parent: 2 - - uid: 722 + parent: 1 + - uid: 546 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-4.5 - parent: 2 - - uid: 750 + parent: 1 + - uid: 547 components: - type: Transform pos: 4.5,-7.5 - parent: 2 - - uid: 751 + parent: 1 + - uid: 548 components: - type: Transform pos: 4.5,-8.5 - parent: 2 - - uid: 752 + parent: 1 + - uid: 549 components: - type: Transform pos: 4.5,-9.5 - parent: 2 - - uid: 753 + parent: 1 + - uid: 550 components: - type: Transform pos: 4.5,-10.5 - parent: 2 - - uid: 754 + parent: 1 + - uid: 551 components: - type: Transform pos: 4.5,-11.5 - parent: 2 - - uid: 1002 + parent: 1 + - uid: 552 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,10.5 - parent: 2 - - uid: 1006 + parent: 1 + - uid: 553 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-4.5 - parent: 2 - - uid: 1016 + parent: 1 + - uid: 554 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-4.5 - parent: 2 - - uid: 1019 + parent: 1 + - uid: 555 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-4.5 - parent: 2 - - uid: 1020 + parent: 1 + - uid: 556 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-4.5 - parent: 2 - - uid: 1021 + parent: 1 + - uid: 557 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-5.5 - parent: 2 - - uid: 1023 + parent: 1 + - uid: 558 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-2.5 - parent: 2 - - uid: 1024 + parent: 1 + - uid: 559 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-1.5 - parent: 2 - - uid: 1027 + parent: 1 + - uid: 560 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,4.5 - parent: 2 - - uid: 1040 + parent: 1 + - uid: 561 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,4.5 - parent: 2 - - uid: 1042 + parent: 1 + - uid: 562 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,4.5 - parent: 2 - - uid: 1043 + parent: 1 + - uid: 563 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,4.5 - parent: 2 - - uid: 1044 + parent: 1 + - uid: 564 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,2.5 - parent: 2 - - uid: 1045 + parent: 1 + - uid: 565 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,2.5 - parent: 2 - - uid: 1046 + parent: 1 + - uid: 566 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,3.5 - parent: 2 - - uid: 1049 + parent: 1 + - uid: 567 components: - type: Transform pos: -7.5,1.5 - parent: 2 - - uid: 1050 + parent: 1 + - uid: 568 components: - type: Transform pos: -4.5,12.5 - parent: 2 - - uid: 1051 + parent: 1 + - uid: 569 components: - type: Transform pos: 8.5,1.5 - parent: 2 - - uid: 1052 + parent: 1 + - uid: 570 components: - type: Transform pos: 7.5,0.5 - parent: 2 - - uid: 1054 + parent: 1 + - uid: 571 components: - type: Transform pos: 5.5,13.5 - parent: 2 - - uid: 1056 + parent: 1 + - uid: 572 components: - type: Transform pos: 5.5,12.5 - parent: 2 - - uid: 1058 + parent: 1 + - uid: 573 components: - type: Transform pos: -4.5,13.5 - parent: 2 - - uid: 1059 + parent: 1 + - uid: 574 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,4.5 - parent: 2 - - uid: 1060 + parent: 1 + - uid: 575 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,3.5 - parent: 2 - - uid: 1061 + parent: 1 + - uid: 576 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-20.5 - parent: 2 - - uid: 1062 + parent: 1 + - uid: 577 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-19.5 - parent: 2 - - uid: 1063 + parent: 1 + - uid: 578 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-20.5 - parent: 2 - - uid: 1064 + parent: 1 + - uid: 579 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-19.5 - parent: 2 - - uid: 1065 + parent: 1 + - uid: 580 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,5.5 - parent: 2 - - uid: 1066 + parent: 1 + - uid: 581 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,3.5 - parent: 2 - - uid: 1069 + parent: 1 + - uid: 582 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,4.5 - parent: 2 - - uid: 1070 + parent: 1 + - uid: 583 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,3.5 - parent: 2 - - uid: 1071 + parent: 1 + - uid: 584 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,4.5 - parent: 2 - - uid: 1072 + parent: 1 + - uid: 585 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,4.5 - parent: 2 - - uid: 1073 + parent: 1 + - uid: 586 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,4.5 - parent: 2 - - uid: 1074 + parent: 1 + - uid: 587 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,4.5 - parent: 2 - - uid: 1075 + parent: 1 + - uid: 588 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,5.5 - parent: 2 - - uid: 1076 + parent: 1 + - uid: 589 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,5.5 - parent: 2 - - uid: 1077 + parent: 1 + - uid: 590 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,0.5 - parent: 2 - - uid: 1089 + parent: 1 + - uid: 591 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,7.5 - parent: 2 - - uid: 1090 + parent: 1 + - uid: 592 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 - parent: 2 - - uid: 1091 + parent: 1 + - uid: 593 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 - parent: 2 - - uid: 1092 + parent: 1 + - uid: 594 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,9.5 - parent: 2 - - uid: 1104 + parent: 1 + - uid: 595 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-0.5 - parent: 2 - - uid: 1105 + parent: 1 + - uid: 596 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 - parent: 2 - - uid: 1106 + parent: 1 + - uid: 597 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-0.5 - parent: 2 - - uid: 1107 + parent: 1 + - uid: 598 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 - parent: 2 - - uid: 1111 + parent: 1 + - uid: 599 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-10.5 - parent: 2 - - uid: 1112 + parent: 1 + - uid: 600 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-11.5 - parent: 2 - - uid: 1113 + parent: 1 + - uid: 601 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-11.5 - parent: 2 - - uid: 1114 + parent: 1 + - uid: 602 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-10.5 - parent: 2 - - uid: 1115 + parent: 1 + - uid: 603 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-8.5 - parent: 2 - - uid: 1116 + parent: 1 + - uid: 604 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-7.5 - parent: 2 - - uid: 1117 + parent: 1 + - uid: 605 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-13.5 - parent: 2 - - uid: 1118 + parent: 1 + - uid: 606 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-14.5 - parent: 2 - - uid: 1119 + parent: 1 + - uid: 607 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-15.5 - parent: 2 - - uid: 1120 + parent: 1 + - uid: 608 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-14.5 - parent: 2 - - uid: 1121 + parent: 1 + - uid: 609 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-13.5 - parent: 2 + parent: 1 - proto: ChairPilotSeat entities: - - uid: 1108 + - uid: 610 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 - parent: 2 - - uid: 1109 + parent: 1 + - uid: 611 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,0.5 - parent: 2 + parent: 1 - proto: ClosetEmergencyFilledRandom entities: - - uid: 390 + - uid: 612 components: - type: Transform pos: 1.5,-3.5 - parent: 2 + parent: 1 - proto: ClosetFireFilled entities: - - uid: 392 + - uid: 613 components: - type: Transform pos: 3.5,-3.5 - parent: 2 + parent: 1 - proto: ClothingHeadHelmetNCWLEVA entities: - - uid: 450 + - uid: 45 components: - type: Transform - parent: 447 + parent: 43 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 456 + - uid: 52 components: - type: Transform - parent: 454 + parent: 50 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskBreath entities: - - uid: 448 + - uid: 46 components: - type: Transform - parent: 447 + parent: 43 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 457 + - uid: 53 components: - type: Transform - parent: 454 + parent: 50 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterNCWLEVA entities: - - uid: 451 + - uid: 47 components: - type: Transform - parent: 447 + parent: 43 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 459 + - uid: 54 components: - type: Transform - parent: 454 + parent: 50 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesBootsMag entities: - - uid: 449 + - uid: 48 components: - type: Transform - parent: 447 + parent: 43 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 460 + - uid: 55 components: - type: Transform - parent: 454 + parent: 50 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ComputerTabletopAdvancedRadar entities: - - uid: 1098 + - uid: 614 components: - type: Transform pos: 0.5,0.5 - parent: 2 + parent: 1 - proto: ComputerTabletopAlert entities: - - uid: 1103 + - uid: 615 components: - type: Transform pos: 2.5,1.5 - parent: 2 + parent: 1 - proto: ComputerTabletopComms entities: - - uid: 1101 + - uid: 616 components: - type: Transform pos: -1.5,1.5 - parent: 2 + parent: 1 - proto: ComputerTabletopPowerMonitoring entities: - - uid: 276 + - uid: 617 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-13.5 - parent: 2 + parent: 1 - proto: ComputerTabletopShuttle entities: - - uid: 1099 + - uid: 618 components: - type: Transform pos: -0.5,1.5 - parent: 2 + parent: 1 - type: ContainerContainer containers: board: !type:Container @@ -4412,10 +4568,12 @@ entities: ent: null - type: DeviceLinkSource linkedPorts: - 1082: - - Group1: Toggle - 1081: - - Group1: Toggle + 3: + - - Group1 + - Toggle + 2: + - - Group1 + - Toggle - type: NamedModules buttonNames: - Fire Slugthrowers @@ -4425,52 +4583,52 @@ entities: - Module E - proto: ComputerTabletopTargeting entities: - - uid: 1100 + - uid: 619 components: - type: Transform pos: 1.5,1.5 - parent: 2 + parent: 1 - type: TargetingConsole cannonGroups: all: - - 580 - - 715 - - 718 + - 98 + - 99 + - 100 230mm 'Hephaeustus' assault artillery platform: - - 580 - - 715 - - 718 + - 98 + - 99 + - 100 - proto: ComputerTelevision entities: - - uid: 1102 + - uid: 620 components: - type: Transform pos: 0.5,1.5 - parent: 2 + parent: 1 - proto: CrateAssaultMortarAmmo entities: - - uid: 1083 + - uid: 621 components: - type: Transform pos: -1.5,5.5 - parent: 2 - - uid: 1084 + parent: 1 + - uid: 622 components: - type: Transform pos: -1.5,3.5 - parent: 2 - - uid: 1085 + parent: 1 + - uid: 623 components: - type: Transform pos: 2.5,5.5 - parent: 2 + parent: 1 - proto: CrateMaterials entities: - - uid: 429 + - uid: 114 components: - type: Transform pos: -2.5,7.5 - parent: 2 + parent: 1 - type: EntityStorage air: volume: 200 @@ -4495,1706 +4653,1867 @@ entities: showEnts: False occludes: True ents: - - 483 - - 482 - - 484 - - 485 - - 755 - - 990 - - 991 - - 992 - - 431 - - 993 - - 430 - - 994 - - 995 + - 118 + - 117 + - 119 + - 120 + - 121 + - 122 + - 123 + - 124 + - 116 + - 125 + - 115 + - 126 + - 127 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateSlugthrowerAmmo entities: - - uid: 1088 + - uid: 624 components: - type: Transform pos: 2.5,3.5 - parent: 2 + parent: 1 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 330 + - uid: 625 components: - type: Transform pos: 6.5,-7.5 - parent: 2 - - uid: 331 + parent: 1 + - uid: 626 components: - type: Transform pos: 6.5,-11.5 - parent: 2 + parent: 1 - proto: DefaultStationBeaconBridge entities: - - uid: 946 + - uid: 627 components: - type: Transform pos: 0.5,-0.5 - parent: 2 + parent: 1 - proto: DefibrillatorCabinetFilled entities: - - uid: 474 + - uid: 628 components: - type: Transform pos: -4.5,-9.5 - parent: 2 + parent: 1 - proto: FaxMachineShip entities: - - uid: 307 + - uid: 629 components: - type: Transform pos: -0.5,-1.5 - parent: 2 + parent: 1 - proto: FireAxeCabinetFilled entities: - - uid: 963 + - uid: 630 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-1.5 - parent: 2 + parent: 1 - proto: Firelock entities: - - uid: 241 + - uid: 631 components: - type: Transform pos: 0.5,-2.5 - parent: 2 - - uid: 242 + parent: 1 + - uid: 632 components: - type: Transform pos: 4.5,-6.5 - parent: 2 - - uid: 243 + parent: 1 + - uid: 633 components: - type: Transform pos: -3.5,-6.5 - parent: 2 - - uid: 244 + parent: 1 + - uid: 634 components: - type: Transform pos: -3.5,6.5 - parent: 2 - - uid: 245 + parent: 1 + - uid: 635 components: - type: Transform pos: 4.5,6.5 - parent: 2 - - uid: 246 + parent: 1 + - uid: 636 components: - type: Transform pos: -4.5,1.5 - parent: 2 - - uid: 247 + parent: 1 + - uid: 637 components: - type: Transform pos: -3.5,1.5 - parent: 2 - - uid: 248 + parent: 1 + - uid: 638 components: - type: Transform pos: 5.5,1.5 - parent: 2 - - uid: 249 + parent: 1 + - uid: 639 components: - type: Transform pos: 4.5,1.5 - parent: 2 + parent: 1 - proto: GasMixer entities: - - uid: 279 + - uid: 640 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-14.5 - parent: 2 + parent: 1 - proto: GasPassiveVent entities: - - uid: 498 + - uid: 641 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,12.5 - parent: 2 + parent: 1 - proto: GasPipeBend entities: - - uid: 280 + - uid: 642 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-13.5 - parent: 2 - - uid: 499 + parent: 1 + - uid: 643 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-14.5 - parent: 2 - - uid: 501 + parent: 1 + - uid: 644 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-11.5 - parent: 2 - - uid: 504 + parent: 1 + - uid: 645 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-11.5 - parent: 2 - - uid: 530 + parent: 1 + - uid: 646 components: - type: Transform pos: 0.5,-6.5 - parent: 2 - - uid: 531 + parent: 1 + - uid: 647 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-5.5 - parent: 2 - - uid: 532 + parent: 1 + - uid: 648 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-6.5 - parent: 2 - - uid: 533 + parent: 1 + - uid: 649 components: - type: Transform pos: -0.5,-5.5 - parent: 2 - - uid: 535 + parent: 1 + - uid: 650 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-4.5 - parent: 2 - - uid: 552 + parent: 1 + - uid: 651 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,5.5 - parent: 2 - - uid: 554 + parent: 1 + - uid: 652 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,3.5 - parent: 2 - - uid: 561 + parent: 1 + - uid: 653 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,8.5 - parent: 2 - - uid: 562 + parent: 1 + - uid: 654 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,8.5 - parent: 2 - - uid: 565 + parent: 1 + - uid: 655 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,9.5 - parent: 2 - - uid: 566 + parent: 1 + - uid: 656 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,7.5 - parent: 2 - - uid: 571 + parent: 1 + - uid: 657 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,7.5 - parent: 2 - - uid: 573 + parent: 1 + - uid: 658 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 - parent: 2 + parent: 1 - proto: GasPipeStraight entities: - - uid: 1 + - uid: 659 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 - parent: 2 - - uid: 56 + parent: 1 + - uid: 660 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-0.5 - parent: 2 - - uid: 252 + parent: 1 + - uid: 661 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,7.5 - parent: 2 - - uid: 502 + parent: 1 + - uid: 662 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-13.5 - parent: 2 - - uid: 503 + parent: 1 + - uid: 663 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-12.5 - parent: 2 - - uid: 505 + parent: 1 + - uid: 664 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-11.5 - parent: 2 - - uid: 506 + parent: 1 + - uid: 665 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-11.5 - parent: 2 - - uid: 507 + parent: 1 + - uid: 666 components: - type: Transform pos: 4.5,-10.5 - parent: 2 - - uid: 508 + parent: 1 + - uid: 667 components: - type: Transform pos: 4.5,-9.5 - parent: 2 - - uid: 510 + parent: 1 + - uid: 668 components: - type: Transform pos: 4.5,-7.5 - parent: 2 - - uid: 511 + parent: 1 + - uid: 669 components: - type: Transform pos: 4.5,-6.5 - parent: 2 - - uid: 512 + parent: 1 + - uid: 670 components: - type: Transform pos: 4.5,-5.5 - parent: 2 - - uid: 516 + parent: 1 + - uid: 671 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-4.5 - parent: 2 - - uid: 517 + parent: 1 + - uid: 672 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-4.5 - parent: 2 - - uid: 518 + parent: 1 + - uid: 673 components: - type: Transform pos: 4.5,-3.5 - parent: 2 - - uid: 519 + parent: 1 + - uid: 674 components: - type: Transform pos: 4.5,-2.5 - parent: 2 - - uid: 520 + parent: 1 + - uid: 675 components: - type: Transform pos: 4.5,-1.5 - parent: 2 - - uid: 521 + parent: 1 + - uid: 676 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-0.5 - parent: 2 - - uid: 522 + parent: 1 + - uid: 677 components: - type: Transform pos: 4.5,0.5 - parent: 2 - - uid: 523 + parent: 1 + - uid: 678 components: - type: Transform pos: 4.5,1.5 - parent: 2 - - uid: 524 + parent: 1 + - uid: 679 components: - type: Transform pos: 4.5,2.5 - parent: 2 - - uid: 525 + parent: 1 + - uid: 680 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,3.5 - parent: 2 - - uid: 526 + parent: 1 + - uid: 681 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,3.5 - parent: 2 - - uid: 527 + parent: 1 + - uid: 682 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,4.5 - parent: 2 - - uid: 529 + parent: 1 + - uid: 683 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,6.5 - parent: 2 - - uid: 536 + parent: 1 + - uid: 684 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-4.5 - parent: 2 - - uid: 537 + parent: 1 + - uid: 685 components: - type: Transform pos: -3.5,-3.5 - parent: 2 - - uid: 538 + parent: 1 + - uid: 686 components: - type: Transform pos: -3.5,-2.5 - parent: 2 - - uid: 539 + parent: 1 + - uid: 687 components: - type: Transform pos: -3.5,-1.5 - parent: 2 - - uid: 541 + parent: 1 + - uid: 688 components: - type: Transform pos: -3.5,0.5 - parent: 2 - - uid: 542 + parent: 1 + - uid: 689 components: - type: Transform pos: -3.5,1.5 - parent: 2 - - uid: 543 + parent: 1 + - uid: 690 components: - type: Transform pos: -3.5,2.5 - parent: 2 - - uid: 544 + parent: 1 + - uid: 691 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,5.5 - parent: 2 - - uid: 545 + parent: 1 + - uid: 692 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,5.5 - parent: 2 - - uid: 546 + parent: 1 + - uid: 693 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,5.5 - parent: 2 - - uid: 547 + parent: 1 + - uid: 694 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,5.5 - parent: 2 - - uid: 548 + parent: 1 + - uid: 695 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,5.5 - parent: 2 - - uid: 549 + parent: 1 + - uid: 696 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,5.5 - parent: 2 - - uid: 550 + parent: 1 + - uid: 697 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,5.5 - parent: 2 - - uid: 551 + parent: 1 + - uid: 698 components: - type: Transform pos: -3.5,6.5 - parent: 2 - - uid: 555 + parent: 1 + - uid: 699 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,3.5 - parent: 2 - - uid: 556 + parent: 1 + - uid: 700 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,3.5 - parent: 2 - - uid: 557 + parent: 1 + - uid: 701 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 - parent: 2 - - uid: 558 + parent: 1 + - uid: 702 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,5.5 - parent: 2 - - uid: 559 + parent: 1 + - uid: 703 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,6.5 - parent: 2 - - uid: 560 + parent: 1 + - uid: 704 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,7.5 - parent: 2 - - uid: 563 + parent: 1 + - uid: 705 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 - parent: 2 - - uid: 567 + parent: 1 + - uid: 706 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,8.5 - parent: 2 - - uid: 568 + parent: 1 + - uid: 707 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,7.5 - parent: 2 - - uid: 569 + parent: 1 + - uid: 708 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,7.5 - parent: 2 - - uid: 570 + parent: 1 + - uid: 709 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,7.5 - parent: 2 - - uid: 575 + parent: 1 + - uid: 710 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,12.5 - parent: 2 - - uid: 576 + parent: 1 + - uid: 711 components: - type: Transform pos: -2.5,10.5 - parent: 2 - - uid: 578 + parent: 1 + - uid: 712 components: - type: Transform pos: -1.5,8.5 - parent: 2 - - uid: 579 + parent: 1 + - uid: 713 components: - type: Transform pos: -1.5,9.5 - parent: 2 - - uid: 600 + parent: 1 + - uid: 714 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-0.5 - parent: 2 - - uid: 749 + parent: 1 + - uid: 715 components: - type: Transform pos: 4.5,-8.5 - parent: 2 + parent: 1 - proto: GasPipeTJunction entities: - - uid: 500 + - uid: 716 components: - type: Transform pos: 3.5,-11.5 - parent: 2 - - uid: 513 + parent: 1 + - uid: 717 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-4.5 - parent: 2 - - uid: 514 + parent: 1 + - uid: 718 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-0.5 - parent: 2 - - uid: 515 + parent: 1 + - uid: 719 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,3.5 - parent: 2 - - uid: 528 + parent: 1 + - uid: 720 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,5.5 - parent: 2 - - uid: 534 + parent: 1 + - uid: 721 components: - type: Transform pos: -1.5,-4.5 - parent: 2 - - uid: 540 + parent: 1 + - uid: 722 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-0.5 - parent: 2 - - uid: 553 + parent: 1 + - uid: 723 components: - type: Transform pos: -3.5,3.5 - parent: 2 - - uid: 564 + parent: 1 + - uid: 724 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,9.5 - parent: 2 - - uid: 572 + parent: 1 + - uid: 725 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,11.5 - parent: 2 + parent: 1 - proto: GasPort entities: - - uid: 272 + - uid: 726 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-13.5 - parent: 2 - - uid: 273 + parent: 1 + - uid: 727 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-14.5 - parent: 2 + parent: 1 - proto: GasVentPump entities: - - uid: 291 + - uid: 728 components: - type: Transform pos: 0.5,-10.5 - parent: 2 - - uid: 487 + parent: 1 + - uid: 729 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-4.5 - parent: 2 - - uid: 488 + parent: 1 + - uid: 730 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,3.5 - parent: 2 - - uid: 489 + parent: 1 + - uid: 731 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-0.5 - parent: 2 - - uid: 490 + parent: 1 + - uid: 732 components: - type: Transform pos: 4.5,7.5 - parent: 2 - - uid: 491 + parent: 1 + - uid: 733 components: - type: Transform pos: -3.5,7.5 - parent: 2 + parent: 1 - proto: GasVentScrubber entities: - - uid: 492 + - uid: 734 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-4.5 - parent: 2 - - uid: 493 + parent: 1 + - uid: 735 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-7.5 - parent: 2 - - uid: 494 + parent: 1 + - uid: 736 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-0.5 - parent: 2 - - uid: 495 + parent: 1 + - uid: 737 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,3.5 - parent: 2 - - uid: 496 + parent: 1 + - uid: 738 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,9.5 - parent: 2 - - uid: 497 + parent: 1 + - uid: 739 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 - parent: 2 + parent: 1 - proto: GravityGeneratorMini entities: - - uid: 444 + - uid: 740 components: - type: Transform pos: 0.5,-14.5 - parent: 2 + parent: 1 - proto: Grille entities: - - uid: 21 + - uid: 741 components: - type: Transform pos: -0.5,2.5 - parent: 2 - - uid: 22 + parent: 1 + - uid: 742 components: - type: Transform pos: 0.5,2.5 - parent: 2 - - uid: 23 + parent: 1 + - uid: 743 components: - type: Transform pos: 1.5,2.5 - parent: 2 - - uid: 396 + parent: 1 + - uid: 744 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-5.5 - parent: 2 - - uid: 412 + parent: 1 + - uid: 745 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-5.5 - parent: 2 - - uid: 423 + parent: 1 + - uid: 746 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-7.5 - parent: 2 - - uid: 428 + parent: 1 + - uid: 747 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-7.5 - parent: 2 - - uid: 467 + parent: 1 + - uid: 748 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-5.5 - parent: 2 - - uid: 468 + parent: 1 + - uid: 749 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-9.5 - parent: 2 - - uid: 469 + parent: 1 + - uid: 750 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-11.5 - parent: 2 - - uid: 470 + parent: 1 + - uid: 751 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-11.5 - parent: 2 + parent: 1 - proto: GyroscopeNfsd entities: - - uid: 48 + - uid: 752 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-16.5 - parent: 2 - - uid: 1055 + parent: 1 + - uid: 753 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,7.5 - parent: 2 - - uid: 1057 + parent: 1 + - uid: 754 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,7.5 - parent: 2 + parent: 1 - proto: HandheldGPSBasic entities: - - uid: 453 + - uid: 49 components: - type: Transform - parent: 447 + parent: 43 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 455 + - uid: 56 components: - type: Transform - parent: 454 + parent: 50 - type: Physics canCollide: False - type: InsideEntityStorage - proto: HandHeldMassScannerEE entities: - - uid: 345 + - uid: 755 components: - type: Transform pos: 6.5530076,-8.431362 - parent: 2 + parent: 1 - proto: HospitalCurtainsOpen entities: - - uid: 418 + - uid: 756 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-10.5 - parent: 2 - - uid: 419 + parent: 1 + - uid: 757 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-11.5 - parent: 2 + parent: 1 - proto: JugBoriaticFuel entities: - - uid: 482 + - uid: 117 components: - type: Transform - parent: 429 + parent: 114 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 483 + - uid: 118 components: - type: Transform - parent: 429 + parent: 114 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 484 + - uid: 119 components: - type: Transform - parent: 429 + parent: 114 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 485 + - uid: 120 components: - type: Transform - parent: 429 + parent: 114 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 755 + - uid: 121 components: - type: Transform - parent: 429 + parent: 114 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 990 + - uid: 122 components: - type: Transform - parent: 429 + parent: 114 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 991 + - uid: 123 components: - type: Transform - parent: 429 + parent: 114 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 992 + - uid: 124 components: - type: Transform - parent: 429 + parent: 114 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 993 + - uid: 125 components: - type: Transform - parent: 429 + parent: 114 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 994 + - uid: 126 components: - type: Transform - parent: 429 + parent: 114 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 995 + - uid: 127 components: - type: Transform - parent: 429 + parent: 114 - type: Physics canCollide: False - type: InsideEntityStorage - proto: LightStripCorner entities: - - uid: 1122 + - uid: 758 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-8.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1123 + - uid: 759 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-8.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1124 + - uid: 760 components: - type: Transform pos: -0.5,-6.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1125 + - uid: 761 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-6.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF - proto: LightStripInner entities: - - uid: 1130 + - uid: 762 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-7.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 1126 + - uid: 763 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-8.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1127 + - uid: 764 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-7.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1128 + - uid: 765 components: - type: Transform pos: 0.5,-6.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1129 + - uid: 766 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-7.5 - parent: 2 + parent: 1 - type: Fixtures fixtures: {} - type: TurretIFF +- proto: MagazineLightRifleBoxSlug + entities: + - uid: 1131 + components: + - type: Transform + pos: -3.716594,11.621812 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1132 + components: + - type: Transform + pos: -3.4887292,11.621812 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1133 + components: + - type: Transform + pos: -3.3910728,11.638087 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1134 + components: + - type: Transform + pos: -3.2608643,11.638087 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1135 + components: + - type: Transform + pos: -3.846802,11.29629 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1136 + components: + - type: Transform + pos: -3.781698,11.29629 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1137 + components: + - type: Transform + pos: -3.6352136,11.328843 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1138 + components: + - type: Transform + pos: -3.423625,11.377671 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1139 + components: + - type: Transform + pos: -3.3910728,11.377671 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1140 + components: + - type: Transform + pos: 4.25532,11.7357435 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1141 + components: + - type: Transform + pos: 4.4831843,11.719468 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1142 + components: + - type: Transform + pos: 4.759877,11.654364 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1143 + components: + - type: Transform + pos: 4.662221,11.393947 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1144 + components: + - type: Transform + pos: 4.385528,11.377671 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1145 + components: + - type: Transform + pos: 4.3367,11.377671 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] - proto: MedicalBed entities: - - uid: 414 + - uid: 767 components: - type: Transform pos: -5.5,-10.5 - parent: 2 - - uid: 415 + parent: 1 + - uid: 768 components: - type: Transform pos: -5.5,-11.5 - parent: 2 + parent: 1 - proto: MedkitAdvancedFilled entities: - - uid: 464 + - uid: 769 components: - type: Transform pos: -5.201176,-8.571467 - parent: 2 + parent: 1 - proto: MedkitBruteFilled entities: - - uid: 475 + - uid: 770 components: - type: Transform pos: -5.2309003,-8.17008 - parent: 2 + parent: 1 - proto: MedkitBurnFilled entities: - - uid: 472 + - uid: 771 components: - type: Transform pos: -5.201176,-8.333609 - parent: 2 + parent: 1 - proto: MedkitOxygenFilled entities: - - uid: 471 + - uid: 772 components: - type: Transform pos: -5.736208,-8.184947 - parent: 2 + parent: 1 - proto: MedkitRadiationFilled entities: - - uid: 477 + - uid: 773 components: - type: Transform pos: -5.736208,-8.333609 - parent: 2 + parent: 1 - proto: MedkitToxinFilled entities: - - uid: 473 + - uid: 774 components: - type: Transform pos: -5.736208,-8.556602 - parent: 2 + parent: 1 - proto: N14TableMetalGrate entities: - - uid: 311 + - uid: 775 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,0.5 - parent: 2 - - uid: 1093 + parent: 1 + - uid: 776 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,1.5 - parent: 2 - - uid: 1094 + parent: 1 + - uid: 777 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,1.5 - parent: 2 - - uid: 1095 + parent: 1 + - uid: 778 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,1.5 - parent: 2 - - uid: 1096 + parent: 1 + - uid: 779 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,1.5 - parent: 2 - - uid: 1097 + parent: 1 + - uid: 780 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,1.5 - parent: 2 + parent: 1 - proto: NitrogenCanister entities: - - uid: 275 + - uid: 781 components: - type: Transform anchored: True pos: 5.5,-14.5 - parent: 2 + parent: 1 - type: Physics bodyType: Static - proto: OxygenCanister entities: - - uid: 274 + - uid: 782 components: - type: Transform anchored: True pos: 5.5,-13.5 - parent: 2 + parent: 1 - type: Physics bodyType: Static - proto: PlastitaniumWindow entities: - - uid: 26 + - uid: 783 components: - type: Transform pos: -0.5,2.5 - parent: 2 - - uid: 27 + parent: 1 + - uid: 784 components: - type: Transform pos: 0.5,2.5 - parent: 2 - - uid: 28 + parent: 1 + - uid: 785 components: - type: Transform pos: 1.5,2.5 - parent: 2 - - uid: 368 + parent: 1 + - uid: 786 components: - type: Transform pos: 1.5,-5.5 - parent: 2 - - uid: 370 + parent: 1 + - uid: 787 components: - type: Transform pos: -2.5,-7.5 - parent: 2 - - uid: 378 + parent: 1 + - uid: 788 components: - type: Transform pos: 3.5,-7.5 - parent: 2 - - uid: 379 + parent: 1 + - uid: 789 components: - type: Transform pos: 3.5,-11.5 - parent: 2 - - uid: 380 + parent: 1 + - uid: 790 components: - type: Transform pos: 0.5,-5.5 - parent: 2 - - uid: 394 + parent: 1 + - uid: 791 components: - type: Transform pos: -0.5,-5.5 - parent: 2 - - uid: 601 + parent: 1 + - uid: 792 components: - type: Transform pos: -2.5,-11.5 - parent: 2 - - uid: 602 + parent: 1 + - uid: 793 components: - type: Transform pos: -5.5,-9.5 - parent: 2 + parent: 1 - proto: PottedPlantRandom entities: - - uid: 352 + - uid: 794 components: - type: Transform pos: 2.5,-1.5 - parent: 2 - - uid: 389 + parent: 1 + - uid: 795 components: - type: Transform pos: -2.5,-3.5 - parent: 2 + parent: 1 - proto: Poweredlight entities: - - uid: 45 + - uid: 796 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-16.5 - parent: 2 + parent: 1 - proto: PoweredlightLED entities: - - uid: 577 + - uid: 797 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,11.5 - parent: 2 - - uid: 582 + parent: 1 + - uid: 798 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,8.5 - parent: 2 - - uid: 583 + parent: 1 + - uid: 799 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,11.5 - parent: 2 - - uid: 584 + parent: 1 + - uid: 800 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,13.5 - parent: 2 - - uid: 585 + parent: 1 + - uid: 801 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,13.5 - parent: 2 - - uid: 586 + parent: 1 + - uid: 802 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,8.5 - parent: 2 - - uid: 588 + parent: 1 + - uid: 803 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,8.5 - parent: 2 - - uid: 589 + parent: 1 + - uid: 804 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,8.5 - parent: 2 - - uid: 590 + parent: 1 + - uid: 805 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,5.5 - parent: 2 - - uid: 591 + parent: 1 + - uid: 806 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,2.5 - parent: 2 - - uid: 592 + parent: 1 + - uid: 807 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,2.5 - parent: 2 - - uid: 593 + parent: 1 + - uid: 808 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,5.5 - parent: 2 - - uid: 594 + parent: 1 + - uid: 809 components: - type: Transform pos: -1.5,5.5 - parent: 2 - - uid: 595 + parent: 1 + - uid: 810 components: - type: Transform pos: 2.5,5.5 - parent: 2 - - uid: 598 + parent: 1 + - uid: 811 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-0.5 - parent: 2 - - uid: 599 + parent: 1 + - uid: 812 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-0.5 - parent: 2 - - uid: 932 + parent: 1 + - uid: 813 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-5.5 - parent: 2 - - uid: 933 + parent: 1 + - uid: 814 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-5.5 - parent: 2 - - uid: 934 + parent: 1 + - uid: 815 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-2.5 - parent: 2 - - uid: 935 + parent: 1 + - uid: 816 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-5.5 - parent: 2 - - uid: 936 + parent: 1 + - uid: 817 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-5.5 - parent: 2 - - uid: 937 + parent: 1 + - uid: 818 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-2.5 - parent: 2 - - uid: 938 + parent: 1 + - uid: 819 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 - parent: 2 - - uid: 939 + parent: 1 + - uid: 820 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 - parent: 2 - - uid: 940 + parent: 1 + - uid: 821 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-9.5 - parent: 2 - - uid: 941 + parent: 1 + - uid: 822 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-9.5 - parent: 2 - - uid: 942 + parent: 1 + - uid: 823 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-9.5 - parent: 2 - - uid: 944 + parent: 1 + - uid: 824 components: - type: Transform pos: -0.5,-6.5 - parent: 2 - - uid: 947 + parent: 1 + - uid: 825 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-10.5 - parent: 2 - - uid: 948 + parent: 1 + - uid: 826 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-7.5 - parent: 2 - - uid: 949 + parent: 1 + - uid: 827 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-8.5 - parent: 2 - - uid: 950 + parent: 1 + - uid: 828 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-13.5 - parent: 2 - - uid: 951 + parent: 1 + - uid: 829 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-13.5 - parent: 2 - - uid: 954 + parent: 1 + - uid: 830 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-16.5 - parent: 2 + parent: 1 - proto: PoweredlightRed entities: - - uid: 930 + - uid: 831 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,12.5 - parent: 2 - - uid: 931 + parent: 1 + - uid: 832 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,12.5 - parent: 2 - - uid: 968 + parent: 1 + - uid: 833 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,3.5 - parent: 2 - - uid: 969 + parent: 1 + - uid: 834 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,3.5 - parent: 2 + parent: 1 - proto: Rack entities: - - uid: 413 + - uid: 835 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-8.5 - parent: 2 - - uid: 432 + parent: 1 + - uid: 1129 components: - type: Transform - pos: 3.5,7.5 - parent: 2 - - uid: 466 + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 1 + - uid: 1130 components: - type: Transform - pos: 3.5,8.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 1 - proto: RadioHandheld entities: - - uid: 342 + - uid: 836 components: - type: Transform pos: 6.389526,-10.380689 - parent: 2 - - uid: 343 + parent: 1 + - uid: 837 components: - type: Transform pos: 6.64218,-10.380689 - parent: 2 - - uid: 344 + parent: 1 + - uid: 838 components: - type: Transform pos: 6.5084214,-10.276625 - parent: 2 + parent: 1 - proto: Railing entities: - - uid: 282 + - uid: 839 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-8.5 - parent: 2 - - uid: 293 + parent: 1 + - uid: 840 components: - type: Transform pos: 0.5,-9.5 - parent: 2 - - uid: 294 + parent: 1 + - uid: 841 components: - type: Transform pos: 1.5,-9.5 - parent: 2 - - uid: 295 + parent: 1 + - uid: 842 components: - type: Transform pos: 2.5,-9.5 - parent: 2 - - uid: 338 + parent: 1 + - uid: 843 components: - type: Transform pos: 6.5,-9.5 - parent: 2 - - uid: 339 + parent: 1 + - uid: 844 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-9.5 - parent: 2 - - uid: 374 + parent: 1 + - uid: 845 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-1.5 - parent: 2 + parent: 1 - proto: RailingCorner entities: - - uid: 301 + - uid: 846 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-9.5 - parent: 2 - - uid: 334 + parent: 1 + - uid: 847 components: - type: Transform pos: 5.5,-10.5 - parent: 2 - - uid: 335 + parent: 1 + - uid: 848 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-8.5 - parent: 2 + parent: 1 - proto: RailingCornerSmall entities: - - uid: 336 + - uid: 849 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-9.5 - parent: 2 - - uid: 337 + parent: 1 + - uid: 850 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-9.5 - parent: 2 + parent: 1 - proto: RCD entities: - - uid: 277 + - uid: 851 components: - type: Transform pos: -4.4877124,-14.409616 - parent: 2 + parent: 1 - type: RCD constructionDirection: West - proto: RCDAmmo entities: - - uid: 278 + - uid: 852 components: - type: Transform pos: -4.333141,-14.535783 - parent: 2 + parent: 1 - proto: ShuttersNormal entities: - - uid: 405 + - uid: 853 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,4.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 966 - - uid: 406 + - 865 + - uid: 854 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,3.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 966 - - uid: 407 + - 865 + - uid: 855 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,4.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 967 - - uid: 408 + - 866 + - uid: 856 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,3.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 967 + - 866 - proto: ShuttersNormalOpen entities: - - uid: 476 + - uid: 857 components: - type: Transform pos: -0.5,2.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 481 - - uid: 478 + - 864 + - uid: 858 components: - type: Transform pos: 0.5,2.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 481 - - uid: 479 + - 864 + - uid: 859 components: - type: Transform pos: 1.5,2.5 - parent: 2 + parent: 1 - type: DeviceLinkSink links: - - 481 + - 864 - proto: SignalButton entities: - - uid: 360 + - uid: 860 components: - type: Transform pos: -3.5,12.5 - parent: 2 + parent: 1 - type: DeviceLinkSource linkedPorts: - 192: - - Pressed: Toggle - - uid: 362 + 112: + - - Pressed + - Toggle + - uid: 861 components: - type: Transform pos: 4.5,12.5 - parent: 2 + parent: 1 - type: DeviceLinkSource linkedPorts: - 193: - - Pressed: Toggle - - uid: 363 + 113: + - - Pressed + - Toggle + - uid: 862 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-4.5 - parent: 2 + parent: 1 - type: DeviceLinkSource linkedPorts: - 191: - - Pressed: Toggle - 190: - - Pressed: Toggle - 44: - - Pressed: Toggle - - uid: 364 + 111: + - - Pressed + - Toggle + 110: + - - Pressed + - Toggle + 105: + - - Pressed + - Toggle + - uid: 863 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-4.5 - parent: 2 + parent: 1 - type: DeviceLinkSource linkedPorts: - 189: - - Pressed: Toggle - 188: - - Pressed: Toggle - 50: - - Pressed: Toggle - - uid: 481 + 109: + - - Pressed + - Toggle + 108: + - - Pressed + - Toggle + 106: + - - Pressed + - Toggle + - uid: 864 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 - parent: 2 + parent: 1 - type: DeviceLinkSource linkedPorts: - 476: - - Pressed: Toggle - 478: - - Pressed: Toggle - 479: - - Pressed: Toggle - - uid: 966 + 857: + - - Pressed + - Toggle + 858: + - - Pressed + - Toggle + 859: + - - Pressed + - Toggle + - uid: 865 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,2.5 - parent: 2 + parent: 1 - type: DeviceLinkSource linkedPorts: - 406: - - Pressed: Toggle - 405: - - Pressed: Toggle - - uid: 967 + 854: + - - Pressed + - Toggle + 853: + - - Pressed + - Toggle + - uid: 866 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,2.5 - parent: 2 + parent: 1 - type: DeviceLinkSource linkedPorts: - 408: - - Pressed: Toggle - 407: - - Pressed: Toggle - - uid: 1048 + 856: + - - Pressed + - Toggle + 855: + - - Pressed + - Toggle + - uid: 867 components: - type: Transform pos: 1.5,6.5 - parent: 2 + parent: 1 - type: DeviceLinkSource linkedPorts: - 53: - - Pressed: Toggle + 107: + - - Pressed + - Toggle - proto: SlugthrowerCannon entities: - - uid: 1086 + - uid: 868 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,12.5 - parent: 2 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 19619.16 + - type: ApcPowerReceiverBattery + enabled: True - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -6209,14 +6528,28 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: ChamberMagazineAmmoProvider boltClosed: True - - uid: 1087 + - uid: 869 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,12.5 - parent: 2 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 19619.16 + - type: ApcPowerReceiverBattery + enabled: True - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -6231,141 +6564,149 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: ChamberMagazineAmmoProvider boltClosed: True - proto: SMESBasic entities: - - uid: 324 + - uid: 870 components: - type: Transform pos: -0.5,-14.5 - parent: 2 + parent: 1 - proto: SpawnPointLatejoin entities: - - uid: 957 + - uid: 871 components: - type: Transform pos: 6.5,-9.5 - parent: 2 + parent: 1 - proto: StairDark entities: - - uid: 57 + - uid: 872 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,3.5 - parent: 2 - - uid: 91 + parent: 1 + - uid: 873 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,4.5 - parent: 2 - - uid: 240 + parent: 1 + - uid: 874 components: - type: Transform pos: -1.5,-8.5 - parent: 2 - - uid: 397 + parent: 1 + - uid: 875 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,3.5 - parent: 2 - - uid: 398 + parent: 1 + - uid: 876 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,4.5 - parent: 2 + parent: 1 - proto: StairStageDark entities: - - uid: 332 + - uid: 877 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-7.5 - parent: 2 - - uid: 333 + parent: 1 + - uid: 878 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-11.5 - parent: 2 + parent: 1 - proto: StationMap entities: - - uid: 38 + - uid: 879 components: - type: Transform pos: 1.5,-2.5 - parent: 2 - - uid: 171 + parent: 1 + - uid: 880 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-13.5 - parent: 2 - - uid: 316 + parent: 1 + - uid: 881 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-16.5 - parent: 2 - - uid: 952 + parent: 1 + - uid: 882 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-10.5 - parent: 2 - - uid: 953 + parent: 1 + - uid: 883 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-6.5 - parent: 2 - - uid: 956 + parent: 1 + - uid: 884 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-6.5 - parent: 2 - - uid: 960 + parent: 1 + - uid: 885 components: - type: Transform pos: -4.5,6.5 - parent: 2 - - uid: 961 + parent: 1 + - uid: 886 components: - type: Transform pos: 5.5,6.5 - parent: 2 - - uid: 962 + parent: 1 + - uid: 887 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,9.5 - parent: 2 - - uid: 997 + parent: 1 + - uid: 888 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,9.5 - parent: 2 + parent: 1 - proto: SubstationBasic entities: - - uid: 1000 + - uid: 889 components: - type: Transform pos: -3.5,-16.5 - parent: 2 + parent: 1 - proto: SuitStorageWallmount entities: - - uid: 447 + - uid: 43 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,8.5 - parent: 2 + parent: 1 - type: EntityStorage air: volume: 200 @@ -6390,20 +6731,20 @@ entities: showEnts: False occludes: True ents: - - 452 - - 451 - - 450 - - 449 - - 448 - - 453 + - 44 + - 47 + - 45 + - 48 + - 46 + - 49 - type: Physics canCollide: False - - uid: 454 + - uid: 50 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,8.5 - parent: 2 + parent: 1 - type: EntityStorage air: volume: 200 @@ -6428,1480 +6769,1696 @@ entities: showEnts: False occludes: True ents: - - 459 - - 458 - - 457 - - 456 - - 455 - - 460 + - 54 + - 51 + - 53 + - 52 + - 56 + - 55 - type: Lock locked: False - type: Physics canCollide: False - proto: SuitStorageWallmountEVAEmergency entities: - - uid: 461 + - uid: 890 components: - type: Transform pos: 7.5,-4.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - - uid: 462 + - uid: 891 components: - type: Transform pos: -6.5,-4.5 - parent: 2 + parent: 1 - type: Physics canCollide: False - proto: SurveillanceCameraGeneral entities: - - uid: 152 + - uid: 892 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,5.5 - parent: 2 - - uid: 267 + parent: 1 + - uid: 893 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 - parent: 2 - - uid: 268 + parent: 1 + - uid: 894 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 - parent: 2 - - uid: 1007 + parent: 1 + - uid: 895 components: - type: Transform pos: 1.5,-1.5 - parent: 2 - - uid: 1008 + parent: 1 + - uid: 896 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,9.5 - parent: 2 - - uid: 1009 + parent: 1 + - uid: 897 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,11.5 - parent: 2 - - uid: 1010 + parent: 1 + - uid: 898 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,9.5 - parent: 2 - - uid: 1011 + parent: 1 + - uid: 899 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,11.5 - parent: 2 - - uid: 1012 + parent: 1 + - uid: 900 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,12.5 - parent: 2 - - uid: 1013 + parent: 1 + - uid: 901 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-14.5 - parent: 2 - - uid: 1014 + parent: 1 + - uid: 902 components: - type: Transform pos: 8.5,3.5 - parent: 2 - - uid: 1015 + parent: 1 + - uid: 903 components: - type: Transform pos: -7.5,3.5 - parent: 2 - - uid: 1018 + parent: 1 + - uid: 904 components: - type: Transform pos: 1.5,-4.5 - parent: 2 - - uid: 1022 + parent: 1 + - uid: 905 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-14.5 - parent: 2 + parent: 1 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 260 + - uid: 906 components: - type: Transform pos: -2.5,8.5 - parent: 2 + parent: 1 - proto: TableReinforced entities: - - uid: 255 + - uid: 907 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-14.5 - parent: 2 - - uid: 256 + parent: 1 + - uid: 908 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-13.5 - parent: 2 - - uid: 340 + parent: 1 + - uid: 909 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-8.5 - parent: 2 - - uid: 341 + parent: 1 + - uid: 910 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-10.5 - parent: 2 - - uid: 371 + parent: 1 + - uid: 911 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-1.5 - parent: 2 - - uid: 372 + parent: 1 + - uid: 912 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-1.5 - parent: 2 + parent: 1 - proto: ThrusterNCWLWarship entities: - - uid: 5 + - uid: 913 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,0.5 - parent: 2 - - uid: 6 + parent: 1 + - uid: 914 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,0.5 - parent: 2 - - uid: 89 + parent: 1 + - uid: 915 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-18.5 - parent: 2 - - uid: 90 + parent: 1 + - uid: 916 components: - type: Transform pos: -7.5,-9.5 - parent: 2 - - uid: 92 + parent: 1 + - uid: 917 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 - parent: 2 - - uid: 93 + parent: 1 + - uid: 918 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-18.5 - parent: 2 - - uid: 157 + parent: 1 + - uid: 919 components: - type: Transform pos: -6.5,7.5 - parent: 2 - - uid: 159 + parent: 1 + - uid: 920 components: - type: Transform pos: 7.5,7.5 - parent: 2 - - uid: 173 + parent: 1 + - uid: 921 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-18.5 - parent: 2 - - uid: 213 + parent: 1 + - uid: 922 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-19.5 - parent: 2 - - uid: 224 + parent: 1 + - uid: 923 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-19.5 - parent: 2 - - uid: 251 + parent: 1 + - uid: 924 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-18.5 - parent: 2 - - uid: 400 + parent: 1 + - uid: 925 components: - type: Transform pos: 8.5,-9.5 - parent: 2 + parent: 1 - type: Thruster enabled: False - - uid: 1039 + - uid: 926 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,1.5 - parent: 2 - - uid: 1053 + parent: 1 + - uid: 927 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,1.5 - parent: 2 + parent: 1 - proto: UnionfallShipNodeNCWL entities: - - uid: 47 + - uid: 928 components: - type: Transform pos: 0.5,-7.5 - parent: 2 + parent: 1 - proto: VendingMachineCoffee entities: - - uid: 391 + - uid: 929 components: - type: Transform pos: 2.5,-3.5 - parent: 2 + parent: 1 - proto: VendingMachineSovietSoda entities: - - uid: 435 + - uid: 930 components: - type: Transform pos: 1.5,-17.5 - parent: 2 + parent: 1 - proto: VendingMachineYouTool entities: - - uid: 445 + - uid: 931 components: - type: Transform pos: 1.5,-14.5 - parent: 2 + parent: 1 - proto: WallPlastitanium entities: - - uid: 3 + - uid: 932 components: - type: Transform pos: 2.5,-5.5 - parent: 2 - - uid: 51 + parent: 1 + - uid: 933 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-0.5 - parent: 2 - - uid: 52 + parent: 1 + - uid: 934 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-0.5 - parent: 2 - - uid: 58 + parent: 1 + - uid: 935 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-2.5 - parent: 2 - - uid: 59 + parent: 1 + - uid: 936 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-2.5 - parent: 2 - - uid: 60 + parent: 1 + - uid: 937 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-2.5 - parent: 2 - - uid: 61 + parent: 1 + - uid: 938 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-2.5 - parent: 2 - - uid: 62 + parent: 1 + - uid: 939 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-2.5 - parent: 2 - - uid: 63 + parent: 1 + - uid: 940 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-2.5 - parent: 2 - - uid: 64 + parent: 1 + - uid: 941 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-1.5 - parent: 2 - - uid: 65 + parent: 1 + - uid: 942 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,0.5 - parent: 2 - - uid: 66 + parent: 1 + - uid: 943 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,1.5 - parent: 2 - - uid: 68 + parent: 1 + - uid: 944 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,1.5 - parent: 2 - - uid: 71 + parent: 1 + - uid: 945 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,6.5 - parent: 2 - - uid: 72 + parent: 1 + - uid: 946 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,6.5 - parent: 2 - - uid: 73 + parent: 1 + - uid: 947 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,2.5 - parent: 2 - - uid: 74 + parent: 1 + - uid: 948 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-0.5 - parent: 2 - - uid: 75 + parent: 1 + - uid: 949 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-0.5 - parent: 2 - - uid: 76 + parent: 1 + - uid: 950 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,0.5 - parent: 2 - - uid: 77 + parent: 1 + - uid: 951 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,1.5 - parent: 2 - - uid: 78 + parent: 1 + - uid: 952 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,1.5 - parent: 2 - - uid: 79 + parent: 1 + - uid: 953 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-0.5 - parent: 2 - - uid: 80 + parent: 1 + - uid: 954 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-0.5 - parent: 2 - - uid: 81 + parent: 1 + - uid: 955 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,0.5 - parent: 2 - - uid: 82 + parent: 1 + - uid: 956 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,1.5 - parent: 2 - - uid: 83 + parent: 1 + - uid: 957 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,1.5 - parent: 2 - - uid: 84 + parent: 1 + - uid: 958 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,2.5 - parent: 2 - - uid: 85 + parent: 1 + - uid: 959 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,11.5 - parent: 2 - - uid: 86 + parent: 1 + - uid: 960 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,10.5 - parent: 2 - - uid: 87 + parent: 1 + - uid: 961 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,9.5 - parent: 2 - - uid: 88 + parent: 1 + - uid: 962 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,8.5 - parent: 2 - - uid: 95 + parent: 1 + - uid: 963 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,7.5 - parent: 2 - - uid: 97 + parent: 1 + - uid: 964 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,6.5 - parent: 2 - - uid: 98 + parent: 1 + - uid: 965 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,5.5 - parent: 2 - - uid: 99 + parent: 1 + - uid: 966 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,12.5 - parent: 2 - - uid: 100 + parent: 1 + - uid: 967 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,14.5 - parent: 2 - - uid: 103 + parent: 1 + - uid: 968 components: - type: Transform pos: -1.5,9.5 - parent: 2 - - uid: 105 + parent: 1 + - uid: 969 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,8.5 - parent: 2 - - uid: 106 + parent: 1 + - uid: 970 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 - parent: 2 - - uid: 107 + parent: 1 + - uid: 971 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,6.5 - parent: 2 - - uid: 108 + parent: 1 + - uid: 972 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,6.5 - parent: 2 - - uid: 109 + parent: 1 + - uid: 973 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,6.5 - parent: 2 - - uid: 110 + parent: 1 + - uid: 974 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,7.5 - parent: 2 - - uid: 111 + parent: 1 + - uid: 975 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,8.5 - parent: 2 - - uid: 112 + parent: 1 + - uid: 976 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,9.5 - parent: 2 - - uid: 113 + parent: 1 + - uid: 977 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,14.5 - parent: 2 - - uid: 114 + parent: 1 + - uid: 978 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,6.5 - parent: 2 - - uid: 115 + parent: 1 + - uid: 979 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,13.5 - parent: 2 - - uid: 116 + parent: 1 + - uid: 980 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,12.5 - parent: 2 - - uid: 117 + parent: 1 + - uid: 981 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,11.5 - parent: 2 - - uid: 118 + parent: 1 + - uid: 982 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,10.5 - parent: 2 - - uid: 119 + parent: 1 + - uid: 983 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,9.5 - parent: 2 - - uid: 120 + parent: 1 + - uid: 984 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,8.5 - parent: 2 - - uid: 121 + parent: 1 + - uid: 985 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,7.5 - parent: 2 - - uid: 124 + parent: 1 + - uid: 986 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-5.5 - parent: 2 - - uid: 125 + parent: 1 + - uid: 987 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-5.5 - parent: 2 - - uid: 126 + parent: 1 + - uid: 988 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-4.5 - parent: 2 - - uid: 127 + parent: 1 + - uid: 989 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-4.5 - parent: 2 - - uid: 129 + parent: 1 + - uid: 990 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-18.5 - parent: 2 - - uid: 132 + parent: 1 + - uid: 991 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-6.5 - parent: 2 - - uid: 134 + parent: 1 + - uid: 992 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-12.5 - parent: 2 - - uid: 135 + parent: 1 + - uid: 993 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-13.5 - parent: 2 - - uid: 143 + parent: 1 + - uid: 994 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-18.5 - parent: 2 - - uid: 144 + parent: 1 + - uid: 995 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-17.5 - parent: 2 - - uid: 145 + parent: 1 + - uid: 996 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-18.5 - parent: 2 - - uid: 149 + parent: 1 + - uid: 997 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-17.5 - parent: 2 - - uid: 153 + parent: 1 + - uid: 998 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-6.5 - parent: 2 - - uid: 155 + parent: 1 + - uid: 999 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-6.5 - parent: 2 - - uid: 156 + parent: 1 + - uid: 1000 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-6.5 - parent: 2 - - uid: 158 + parent: 1 + - uid: 1001 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-4.5 - parent: 2 - - uid: 160 + parent: 1 + - uid: 1002 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,6.5 - parent: 2 - - uid: 161 + parent: 1 + - uid: 1003 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,6.5 - parent: 2 - - uid: 162 + parent: 1 + - uid: 1004 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,2.5 - parent: 2 - - uid: 165 + parent: 1 + - uid: 1005 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-6.5 - parent: 2 - - uid: 166 + parent: 1 + - uid: 1006 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-4.5 - parent: 2 - - uid: 167 + parent: 1 + - uid: 1007 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-4.5 - parent: 2 - - uid: 169 + parent: 1 + - uid: 1008 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-4.5 - parent: 2 - - uid: 172 + parent: 1 + - uid: 1009 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-12.5 - parent: 2 - - uid: 174 + parent: 1 + - uid: 1010 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-12.5 - parent: 2 - - uid: 176 + parent: 1 + - uid: 1011 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-12.5 - parent: 2 - - uid: 177 + parent: 1 + - uid: 1012 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-12.5 - parent: 2 - - uid: 178 + parent: 1 + - uid: 1013 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-11.5 - parent: 2 - - uid: 179 + parent: 1 + - uid: 1014 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-10.5 - parent: 2 - - uid: 180 + parent: 1 + - uid: 1015 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-9.5 - parent: 2 - - uid: 181 + parent: 1 + - uid: 1016 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-11.5 - parent: 2 - - uid: 182 + parent: 1 + - uid: 1017 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-10.5 - parent: 2 - - uid: 194 + parent: 1 + - uid: 1018 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-9.5 - parent: 2 - - uid: 195 + parent: 1 + - uid: 1019 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-8.5 - parent: 2 - - uid: 196 + parent: 1 + - uid: 1020 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-13.5 - parent: 2 - - uid: 197 + parent: 1 + - uid: 1021 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-15.5 - parent: 2 - - uid: 200 + parent: 1 + - uid: 1022 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-17.5 - parent: 2 - - uid: 201 + parent: 1 + - uid: 1023 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-17.5 - parent: 2 - - uid: 202 + parent: 1 + - uid: 1024 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-15.5 - parent: 2 - - uid: 203 + parent: 1 + - uid: 1025 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-15.5 - parent: 2 - - uid: 204 + parent: 1 + - uid: 1026 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-14.5 - parent: 2 - - uid: 206 + parent: 1 + - uid: 1027 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-13.5 - parent: 2 - - uid: 207 + parent: 1 + - uid: 1028 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-13.5 - parent: 2 - - uid: 208 + parent: 1 + - uid: 1029 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-16.5 - parent: 2 - - uid: 209 + parent: 1 + - uid: 1030 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-17.5 - parent: 2 - - uid: 211 + parent: 1 + - uid: 1031 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-17.5 - parent: 2 - - uid: 212 + parent: 1 + - uid: 1032 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-18.5 - parent: 2 - - uid: 215 + parent: 1 + - uid: 1033 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-8.5 - parent: 2 - - uid: 216 + parent: 1 + - uid: 1034 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-10.5 - parent: 2 - - uid: 217 + parent: 1 + - uid: 1035 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-9.5 - parent: 2 - - uid: 218 + parent: 1 + - uid: 1036 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-17.5 - parent: 2 - - uid: 219 + parent: 1 + - uid: 1037 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-18.5 - parent: 2 - - uid: 221 + parent: 1 + - uid: 1038 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,6.5 - parent: 2 - - uid: 222 + parent: 1 + - uid: 1039 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,6.5 - parent: 2 - - uid: 223 + parent: 1 + - uid: 1040 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,8.5 - parent: 2 - - uid: 225 + parent: 1 + - uid: 1041 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,8.5 - parent: 2 - - uid: 228 + parent: 1 + - uid: 1042 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 - parent: 2 - - uid: 229 + parent: 1 + - uid: 1043 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,10.5 - parent: 2 - - uid: 231 + parent: 1 + - uid: 1044 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-9.5 - parent: 2 - - uid: 232 + parent: 1 + - uid: 1045 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-8.5 - parent: 2 - - uid: 233 + parent: 1 + - uid: 1046 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-16.5 - parent: 2 - - uid: 234 + parent: 1 + - uid: 1047 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-16.5 - parent: 2 - - uid: 235 + parent: 1 + - uid: 1048 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-6.5 - parent: 2 - - uid: 237 + parent: 1 + - uid: 1049 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-0.5 - parent: 2 - - uid: 238 + parent: 1 + - uid: 1050 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,0.5 - parent: 2 - - uid: 258 + parent: 1 + - uid: 1051 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-7.5 - parent: 2 - - uid: 259 + parent: 1 + - uid: 1052 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-1.5 - parent: 2 - - uid: 261 + parent: 1 + - uid: 1053 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-9.5 - parent: 2 - - uid: 262 + parent: 1 + - uid: 1054 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-15.5 - parent: 2 - - uid: 264 + parent: 1 + - uid: 1055 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-10.5 - parent: 2 - - uid: 271 + parent: 1 + - uid: 1056 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-8.5 - parent: 2 - - uid: 286 + parent: 1 + - uid: 1057 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,5.5 - parent: 2 - - uid: 287 + parent: 1 + - uid: 1058 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,5.5 - parent: 2 - - uid: 288 + parent: 1 + - uid: 1059 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,5.5 - parent: 2 - - uid: 289 + parent: 1 + - uid: 1060 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,6.5 - parent: 2 - - uid: 308 + parent: 1 + - uid: 1061 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,2.5 - parent: 2 - - uid: 313 + parent: 1 + - uid: 1062 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,2.5 - parent: 2 - - uid: 383 + parent: 1 + - uid: 1063 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,10.5 - parent: 2 - - uid: 395 + parent: 1 + - uid: 1064 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-8.5 - parent: 2 - - uid: 399 + parent: 1 + - uid: 1065 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,2.5 - parent: 2 - - uid: 409 + parent: 1 + - uid: 1066 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-7.5 - parent: 2 - - uid: 410 + parent: 1 + - uid: 1067 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-14.5 - parent: 2 - - uid: 411 + parent: 1 + - uid: 1068 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,12.5 - parent: 2 - - uid: 426 + parent: 1 + - uid: 1069 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,13.5 - parent: 2 - - uid: 427 + parent: 1 + - uid: 1070 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,11.5 - parent: 2 - - uid: 440 + parent: 1 + - uid: 1071 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-16.5 - parent: 2 - - uid: 596 + parent: 1 + - uid: 1072 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,12.5 - parent: 2 - - uid: 597 + parent: 1 + - uid: 1073 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,13.5 - parent: 2 - - uid: 612 + parent: 1 + - uid: 1074 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-16.5 - parent: 2 - - uid: 926 + parent: 1 + - uid: 1075 components: - type: Transform pos: -1.5,10.5 - parent: 2 - - uid: 927 + parent: 1 + - uid: 1076 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,11.5 - parent: 2 - - uid: 955 + parent: 1 + - uid: 1077 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-6.5 - parent: 2 - - uid: 983 + parent: 1 + - uid: 1078 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-5.5 - parent: 2 - - uid: 987 + parent: 1 + - uid: 1079 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-0.5 - parent: 2 - - uid: 988 + parent: 1 + - uid: 1080 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,13.5 - parent: 2 - - uid: 989 + parent: 1 + - uid: 1081 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-15.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 1003 + - uid: 1082 components: - type: Transform pos: -4.5,12.5 - parent: 2 - - uid: 1005 + parent: 1 + - uid: 1083 components: - type: Transform pos: -3.5,14.5 - parent: 2 - - uid: 1047 + parent: 1 + - uid: 1084 components: - type: Transform pos: -5.5,10.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumDiagonalNortheastHollow entities: - - uid: 1068 + - uid: 1085 components: - type: Transform pos: 1.5,9.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumDiagonalNorthwestCurved entities: - - uid: 999 + - uid: 1086 components: - type: Transform pos: 5.5,12.5 - parent: 2 - - uid: 1001 + parent: 1 + - uid: 1087 components: - type: Transform pos: 4.5,14.5 - parent: 2 - - uid: 1004 + parent: 1 + - uid: 1088 components: - type: Transform pos: 6.5,10.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumDiagonalNorthwestHollow entities: - - uid: 1067 + - uid: 1089 components: - type: Transform pos: -0.5,9.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumDiagonalSoutheastCurved entities: - - uid: 1017 + - uid: 1090 components: - type: Transform pos: -7.5,-6.5 - parent: 2 - - uid: 1028 + parent: 1 + - uid: 1091 components: - type: Transform pos: -1.5,-19.5 - parent: 2 - - uid: 1029 + parent: 1 + - uid: 1092 components: - type: Transform pos: -6.5,-12.5 - parent: 2 - - uid: 1031 + parent: 1 + - uid: 1093 components: - type: Transform pos: -7.5,-10.5 - parent: 2 - - uid: 1032 + parent: 1 + - uid: 1094 components: - type: Transform pos: -4.5,-18.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumDiagonalSoutheastHollow entities: - - uid: 1030 + - uid: 1095 components: - type: Transform pos: -5.5,-16.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumDiagonalSouthwestCurved entities: - - uid: 1033 + - uid: 1096 components: - type: Transform pos: 8.5,-6.5 - parent: 2 - - uid: 1034 + parent: 1 + - uid: 1097 components: - type: Transform pos: 5.5,-18.5 - parent: 2 - - uid: 1035 + parent: 1 + - uid: 1098 components: - type: Transform pos: 2.5,-19.5 - parent: 2 - - uid: 1037 + parent: 1 + - uid: 1099 components: - type: Transform pos: 8.5,-10.5 - parent: 2 - - uid: 1038 + parent: 1 + - uid: 1100 components: - type: Transform pos: 7.5,-12.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumDiagonalSouthwestHollow entities: - - uid: 1036 + - uid: 1101 components: - type: Transform pos: 6.5,-16.5 - parent: 2 + parent: 1 - proto: WallPlastitaniumNCWL entities: - - uid: 443 + - uid: 1102 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-16.5 - parent: 2 - - uid: 611 + parent: 1 + - uid: 1103 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-16.5 - parent: 2 + parent: 1 - proto: WallReinforced entities: - - uid: 133 + - uid: 1104 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-6.5 - parent: 2 - - uid: 168 + parent: 1 + - uid: 1105 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-12.5 - parent: 2 - - uid: 198 + parent: 1 + - uid: 1106 components: - type: Transform pos: 5.5,-15.5 - parent: 2 - - uid: 210 + parent: 1 + - uid: 1107 components: - type: Transform pos: 5.5,-16.5 - parent: 2 - - uid: 214 + parent: 1 + - uid: 1108 components: - type: Transform pos: 5.5,-17.5 - parent: 2 + parent: 1 - proto: WallSolidDiagonalCurved entities: - - uid: 24 + - uid: 1109 components: - type: Transform pos: -2.5,2.5 - parent: 2 - - uid: 67 + parent: 1 + - uid: 1110 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,2.5 - parent: 2 + parent: 1 - proto: WarpPointShip entities: - - uid: 958 + - uid: 1111 components: - type: Transform pos: 0.5,-0.5 - parent: 2 + parent: 1 - proto: WeaponCapacitorRecharger entities: - - uid: 269 + - uid: 1112 components: - type: Transform pos: -1.5,-1.5 - parent: 2 + parent: 1 - proto: WeaponMakeshiftLaser entities: - - uid: 29 + - uid: 1113 components: - type: Transform pos: -1.4766476,-1.3366694 - parent: 2 + parent: 1 - proto: WeaponTurretPDT entities: - - uid: 10 + - uid: 1114 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,6.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 617.4533 + - type: ApcPowerReceiverBattery + enabled: True - type: PointCannon - linkedConsoleId: 1100 - - uid: 420 + linkedConsoleId: 619 + - uid: 1115 components: - type: Transform pos: -1.5,-20.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 617.4533 + - type: ApcPowerReceiverBattery + enabled: True - type: PointCannon - linkedConsoleId: 1100 - - uid: 421 + linkedConsoleId: 619 + - uid: 1116 components: - type: Transform pos: 2.5,-20.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 617.4533 + - type: ApcPowerReceiverBattery + enabled: True - type: PointCannon - linkedConsoleId: 1100 - - uid: 422 + linkedConsoleId: 619 + - uid: 1117 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,11.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 617.4533 + - type: ApcPowerReceiverBattery + enabled: True - type: PointCannon - linkedConsoleId: 1100 - - uid: 424 + linkedConsoleId: 619 + - uid: 1118 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,13.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 617.4533 + - type: ApcPowerReceiverBattery + enabled: True - type: PointCannon - linkedConsoleId: 1100 - - uid: 425 + linkedConsoleId: 619 + - uid: 1119 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,13.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 617.4533 + - type: ApcPowerReceiverBattery + enabled: True - type: PointCannon - linkedConsoleId: 1100 - - uid: 574 + linkedConsoleId: 619 + - uid: 1120 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,11.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 617.4533 + - type: ApcPowerReceiverBattery + enabled: True - type: PointCannon - linkedConsoleId: 1100 - - uid: 924 + linkedConsoleId: 619 + - uid: 1121 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,6.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 617.4533 + - type: ApcPowerReceiverBattery + enabled: True - type: PointCannon - linkedConsoleId: 1100 - - uid: 998 + linkedConsoleId: 619 + - uid: 1122 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-13.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 617.4533 + - type: ApcPowerReceiverBattery + enabled: True - type: PointCannon - linkedConsoleId: 1100 - - uid: 1026 + linkedConsoleId: 619 + - uid: 1123 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-13.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 617.4533 + - type: ApcPowerReceiverBattery + enabled: True - type: PointCannon - linkedConsoleId: 1100 - - uid: 1078 + linkedConsoleId: 619 + - uid: 1124 components: - type: Transform pos: -5.5,-17.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 617.4533 + - type: ApcPowerReceiverBattery + enabled: True - type: PointCannon - linkedConsoleId: 1100 - - uid: 1079 + linkedConsoleId: 619 + - uid: 1125 components: - type: Transform pos: 6.5,-17.5 - parent: 2 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 617.4533 + - type: ApcPowerReceiverBattery + enabled: True - type: PointCannon - linkedConsoleId: 1100 + linkedConsoleId: 619 - proto: WindoorSecure entities: - - uid: 130 + - uid: 1126 components: - type: Transform pos: 3.5,12.5 - parent: 2 - - uid: 183 + parent: 1 + - uid: 1127 components: - type: Transform pos: -2.5,12.5 - parent: 2 + parent: 1 - proto: Wrench entities: - - uid: 329 + - uid: 1128 components: - type: Transform pos: -4.599214,-14.035264 - parent: 2 + parent: 1 ... diff --git a/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml b/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml index b113ba5ee2c..bb58758b45c 100644 --- a/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml +++ b/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/10/2026 14:40:30 + entityCount: 2113 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 4: FloorBlueCircuit @@ -37,44 +48,44 @@ entities: chunks: 0,0: ind: 0,0 - tiles: ggAAAAAAggAAAAAAggAAAAAAgQAAAAAAgQAAAAAAggAAAAAAIQAAAAAABQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAggAAAAAAIQAAAAAAggAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABQAAAAAAIQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACAAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACAAAAAAAggAAAAAACwAAAAAABQAAAAAACwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAACAAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAACAAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAACAAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAACAAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAACAAAAAAAggAAAAAABgAAAAAABgAAAAAABgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAACwAAAAAABQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACwAAAAAACwAAAAAAggAAAAAAggAAAAAACwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAIQAAAAAAIQAAAAAACwAAAAAAggAAAAAABQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAIQAAAAAAAAUAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAUAAAAAAAAhAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAIAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACAAAAAAAAIIAAAAAAAALAAAAAAAABQAAAAAAAAsAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAgAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAIAAAAAAAAAQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAACAAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAgAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAIAAAAAAAAggAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABAAAAAAAAAsAAAAAAAAFAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAABQAAAAAAIQAAAAAAggAAAAAAgQAAAAAAgQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAggAAAAAAIQAAAAAAggAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAgAAAAAAggAAAAAAggAAAAAAIQAAAAAABQAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABAAAAAAABAAAAAAAggAAAAAAggAAAAAAggAAAAAACAAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAACAAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAACAAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAACAAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAAggAAAAAACAAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAggAAAAAACAAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAggAAAAAACAAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAggAAAAAACAAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABQAAAAAACwAAAAAABAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACwAAAAAAggAAAAAAggAAAAAACwAAAAAACwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABQAAAAAAggAAAAAACwAAAAAAIQAAAAAAIQAAAAAAggAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAABQAAAAAAACEAAAAAAACCAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAIIAAAAAAAAhAAAAAAAAggAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAABQAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAABAAAAAAAAAQAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAIAAAAAAAACwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAACAAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAQAAAAAAAAgAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAAIAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAsAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACCAAAAAAAACAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAggAAAAAAAAgAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAIIAAAAAAAAIAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACCAAAAAAAACAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAUAAAAAAAALAAAAAAAABAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAUAAAAAAACCAAAAAAAACwAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAACAAAAAAAggAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAAggAAAAAAIQAAAAAAggAAAAAAIQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACAAAAAAACAAAAAAABwAAAAAAggAAAAAAIQAAAAAACAAAAAAACAAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAABQAAAAAABwAAAAAACAAAAAAAIQAAAAAABwAAAAAACAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAABQAAAAAAAgAAAAAACAAAAAAAIQAAAAAABwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAABQAAAAAABwAAAAAABwAAAAAAIQAAAAAACAAAAAAAggAAAAAAggAAAAAAfgAAAAAAggAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAABQAAAAAABQAAAAAAggAAAAAAIQAAAAAAggAAAAAAfgAAAAAAfgAAAAAAggAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIQAAAAAAggAAAAAAfgAAAAAAfgAAAAAAggAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAUwAAAAAAUwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAUwAAAAAAUwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAACwAAAAAACwAAAAAAggAAAAAAUwAAAAAAUwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIQAAAAAAIQAAAAAACwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAUwAAAAAAUwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAABQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAUwAAAAAAUwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIQAAAAAAggAAAAAAgQAAAAAAggAAAAAACwAAAAAACwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAgAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIIAAAAAAACCAAAAAAAAIQAAAAAAAIIAAAAAAAAhAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAACCAAAAAAAAIQAAAAAAAAgAAAAAAAAIAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAABQAAAAAAAAcAAAAAAAAIAAAAAAAAIQAAAAAAAAcAAAAAAAAIAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAAUAAAAAAAACAAAAAAAACAAAAAAAACEAAAAAAAAHAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAAAFAAAAAAAABwAAAAAAAAcAAAAAAAAhAAAAAAAACAAAAAAAAIIAAAAAAACCAAAAAAAAfgAAAAAAAIIAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAAfgAAAAAAAH4AAAAAAACCAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAAggAAAAAAAH4AAAAAAAB+AAAAAAAAggAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAFMAAAAAAABTAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAABTAAAAAAAAUwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAUwAAAAAAAFMAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAACwAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAABTAAAAAAAAUwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAFAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAUwAAAAAAAFMAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAAgQAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: BwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAABwAAAAAACAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAACAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAABwAAAAAACAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAfgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAUwAAAAAAUwAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAACwAAAAAAUwAAAAAAUwAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAACwAAAAAAUwAAAAAAUwAAAAAAggAAAAAACwAAAAAACwAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACwAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAACwAAAAAAUwAAAAAAUwAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAUwAAAAAAUwAAAAAAggAAAAAAIQAAAAAAIQAAAAAABQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAgQAAAAAAggAAAAAAIQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: BwAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAIAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAABwAAAAAAAAgAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAIAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAAAHAAAAAAAACAAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAACAAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAfgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAABTAAAAAAAAUwAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAAAAAAALAAAAAAAAUwAAAAAAAFMAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAAAAACwAAAAAAAFMAAAAAAABTAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAALAAAAAAAAUwAAAAAAAFMAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAFMAAAAAAABTAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAABQAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAIQAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAggAAAAAAggAAAAAACAAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAgAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: ggAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAgQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAgQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAgQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAggAAAAAACwAAAAAACwAAAAAAggAAAAAAggAAAAAAgQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAAggAAAAAAgQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAIQAAAAAAAQAAAAAAIQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAIQAAAAAAAQAAAAAAIQAAAAAAggAAAAAACAAAAAAABQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAABwAAAAAAAQAAAAAAIQAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAIQAAAAAAAQAAAAAAIQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAIQAAAAAAAQAAAAAAIQAAAAAACwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAIQAAAAAAAQAAAAAAIQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAggAAAAAAIQAAAAAABQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAggAAAAAAIQAAAAAABQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAgQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIEAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACBAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAIAAAAAAAAggAAAAAAAIEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAACEAAAAAAAABAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAAhAAAAAAAAAQAAAAAAACEAAAAAAACCAAAAAAAACAAAAAAAAAUAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAEAAAAAAAAhAAAAAAAAggAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAAIAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAAhAAAAAAAAAQAAAAAAACEAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAAIQAAAAAAAAEAAAAAAAAhAAAAAAAACwAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAACEAAAAAAAABAAAAAAAAIQAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAABAAAAAAAAggAAAAAAACEAAAAAAAAFAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAQAAAAAAAIIAAAAAAAAhAAAAAAAABQAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAAggAAAAAACwAAAAAACwAAAAAACwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAACwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIQAAAAAAAQAAAAAAIQAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABQAAAAAACAAAAAAAggAAAAAAIQAAAAAAAQAAAAAACAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACAAAAAAAggAAAAAAIQAAAAAAAQAAAAAAIQAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAACAAAAAAABwAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIQAAAAAAAQAAAAAAIQAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACwAAAAAAIQAAAAAAAQAAAAAAIQAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACAAAAAAAAQAAAAAAIQAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAACAAAAAAACAAAAAAAggAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAACwAAAAAACwAAAAAAIQAAAAAAIQAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAACwAAAAAACwAAAAAAIQAAAAAAAQAAAAAACwAAAAAACwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAoAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAACgAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAoAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAKAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAAAQAAAAAAACEAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAABQAAAAAAAAgAAAAAAACCAAAAAAAAIQAAAAAAAAEAAAAAAAAIAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAIAAAAAAAAggAAAAAAACEAAAAAAAABAAAAAAAAIQAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAAIAAAAAAAABwAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAIQAAAAAAAAEAAAAAAAAhAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAACwAAAAAAACEAAAAAAAABAAAAAAAAIQAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAIAAAAAAAAAQAAAAAAACEAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAACAAAAAAAAAgAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAAIQAAAAAAAAEAAAAAAAALAAAAAAAACwAAAAAAAA== + version: 7 0,2: ind: 0,2 - tiles: CAAAAAAACAAAAAAAfgAAAAAAAQAAAAAAggAAAAAAIQAAAAAAIQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAggAAAAAACAAAAAAACwAAAAAACAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAACAAAAAAACwAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: CAAAAAAAAAgAAAAAAAB+AAAAAAAAAQAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAggAAAAAAAAgAAAAAAAALAAAAAAAACAAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAAAIAAAAAAAACwAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAABQAAAAAACwAAAAAAIQAAAAAAAQAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAABQAAAAAACwAAAAAAIQAAAAAAggAAAAAAggAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAABQAAAAAACwAAAAAAIQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAAggAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAACAAAAAAACwAAAAAACAAAAAAAggAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAACwAAAAAACAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAAUAAAAAAAALAAAAAAAAIQAAAAAAAAEAAAAAAAB+AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAFAAAAAAAACwAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAABQAAAAAAAAsAAAAAAAAhAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAACAAAAAAAAAsAAAAAAAAIAAAAAAAAggAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAIIAAAAAAAALAAAAAAAACAAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -669,6 +680,7 @@ entities: 3861: -2,11 4109: -2,11 4357: -2,11 + 4605: -2,11 - node: zIndex: 1 angle: -3.141592653589793 rad @@ -679,6 +691,7 @@ entities: 3855: -2,7 4103: -2,7 4351: -2,7 + 4599: -2,7 - node: zIndex: 1 angle: -1.5707963267948966 rad @@ -689,6 +702,7 @@ entities: 3746: 2,7 3994: 2,7 4242: 2,7 + 4490: 2,7 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner @@ -698,6 +712,7 @@ entities: 3752: 2,11 4000: 2,11 4248: 2,11 + 4496: 2,11 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge @@ -727,6 +742,11 @@ entities: 4353: -2,9 4354: -2,10 4356: -2,11 + 4598: -2,7 + 4600: -2,8 + 4601: -2,9 + 4602: -2,10 + 4604: -2,11 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge @@ -756,6 +776,11 @@ entities: 4240: 2,7 4349: -2,7 4366: -1,7 + 4468: 0,7 + 4478: 1,7 + 4488: 2,7 + 4597: -2,7 + 4614: -1,7 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge @@ -785,6 +810,11 @@ entities: 4244: 2,9 4245: 2,10 4246: 2,11 + 4489: 2,7 + 4491: 2,8 + 4492: 2,9 + 4493: 2,10 + 4494: 2,11 - node: id: FloorTechMaintDirectionalEdge decals: @@ -813,6 +843,11 @@ entities: 4247: 2,11 4355: -2,11 4367: -1,11 + 4469: 0,11 + 4479: 1,11 + 4495: 2,11 + 4603: -2,11 + 4615: -1,11 - node: zIndex: 1 id: LatticeCornerNE @@ -1222,6 +1257,33 @@ entities: 4436: 6,19 4444: 6,20 4456: -9,24 + 4464: 0,1 + 4474: 1,1 + 4484: 2,1 + 4501: 3,0 + 4509: 3,1 + 4517: 4,0 + 4525: 4,1 + 4533: 8,12 + 4545: -9,3 + 4553: -8,12 + 4561: -4,0 + 4569: -4,1 + 4577: -3,0 + 4585: -3,1 + 4593: -2,1 + 4610: -1,1 + 4621: -10,-16 + 4626: -4,-1 + 4634: 4,-1 + 4652: -9,-17 + 4655: -3,-20 + 4660: 6,16 + 4668: 6,17 + 4676: 6,18 + 4684: 6,19 + 4692: 6,20 + 4704: -9,24 - node: zIndex: 1 id: LatticeCornerNW @@ -1631,6 +1693,33 @@ entities: 4439: 6,19 4447: 6,20 4450: 9,24 + 4467: 0,1 + 4477: 1,1 + 4487: 2,1 + 4504: 3,0 + 4512: 3,1 + 4520: 4,0 + 4528: 4,1 + 4536: 8,12 + 4539: 9,4 + 4556: -8,12 + 4564: -4,0 + 4572: -4,1 + 4580: -3,0 + 4588: -3,1 + 4596: -2,1 + 4613: -1,1 + 4629: -4,-1 + 4637: 4,-1 + 4640: 10,-16 + 4646: 3,-20 + 4649: 9,-17 + 4663: 6,16 + 4671: 6,17 + 4679: 6,18 + 4687: 6,19 + 4695: 6,20 + 4698: 9,24 - node: zIndex: 1 id: LatticeCornerSE @@ -2010,6 +2099,31 @@ entities: 4434: 6,19 4442: 6,20 4459: -9,28 + 4462: 0,1 + 4472: 1,1 + 4482: 2,1 + 4499: 3,0 + 4507: 3,1 + 4515: 4,0 + 4523: 4,1 + 4531: 8,12 + 4548: -9,12 + 4551: -8,12 + 4559: -4,0 + 4567: -4,1 + 4575: -3,0 + 4583: -3,1 + 4591: -2,1 + 4608: -1,1 + 4618: -12,-10 + 4624: -4,-1 + 4632: 4,-1 + 4658: 6,16 + 4666: 6,17 + 4674: 6,18 + 4682: 6,19 + 4690: 6,20 + 4707: -9,28 - node: zIndex: 1 id: LatticeCornerSW @@ -2389,6 +2503,31 @@ entities: 4438: 6,19 4446: 6,20 4453: 9,28 + 4466: 0,1 + 4476: 1,1 + 4486: 2,1 + 4503: 3,0 + 4511: 3,1 + 4519: 4,0 + 4527: 4,1 + 4535: 8,12 + 4542: 9,12 + 4555: -8,12 + 4563: -4,0 + 4571: -4,1 + 4579: -3,0 + 4587: -3,1 + 4595: -2,1 + 4612: -1,1 + 4628: -4,-1 + 4636: 4,-1 + 4643: 12,-10 + 4662: 6,16 + 4670: 6,17 + 4678: 6,18 + 4686: 6,19 + 4694: 6,20 + 4701: 9,28 - node: id: LatticeEdgeE decals: @@ -2842,6 +2981,36 @@ entities: 4441: 6,20 4454: -9,24 4458: -9,28 + 4461: 0,1 + 4471: 1,1 + 4481: 2,1 + 4498: 3,0 + 4506: 3,1 + 4514: 4,0 + 4522: 4,1 + 4530: 8,12 + 4543: -9,3 + 4547: -9,12 + 4550: -8,12 + 4558: -4,0 + 4566: -4,1 + 4574: -3,0 + 4582: -3,1 + 4590: -2,1 + 4607: -1,1 + 4617: -12,-10 + 4619: -10,-16 + 4623: -4,-1 + 4631: 4,-1 + 4650: -9,-17 + 4653: -3,-20 + 4657: 6,16 + 4665: 6,17 + 4673: 6,18 + 4681: 6,19 + 4689: 6,20 + 4702: -9,24 + 4706: -9,28 - node: id: LatticeEdgeN decals: @@ -3325,6 +3494,38 @@ entities: 4443: 6,20 4448: 9,24 4455: -9,24 + 4463: 0,1 + 4473: 1,1 + 4483: 2,1 + 4500: 3,0 + 4508: 3,1 + 4516: 4,0 + 4524: 4,1 + 4532: 8,12 + 4537: 9,4 + 4544: -9,3 + 4552: -8,12 + 4560: -4,0 + 4568: -4,1 + 4576: -3,0 + 4584: -3,1 + 4592: -2,1 + 4609: -1,1 + 4620: -10,-16 + 4625: -4,-1 + 4633: 4,-1 + 4638: 10,-16 + 4644: 3,-20 + 4647: 9,-17 + 4651: -9,-17 + 4654: -3,-20 + 4659: 6,16 + 4667: 6,17 + 4675: 6,18 + 4683: 6,19 + 4691: 6,20 + 4696: 9,24 + 4703: -9,24 - node: id: LatticeEdgeS decals: @@ -3748,6 +3949,34 @@ entities: 4440: 6,20 4451: 9,28 4457: -9,28 + 4460: 0,1 + 4470: 1,1 + 4480: 2,1 + 4497: 3,0 + 4505: 3,1 + 4513: 4,0 + 4521: 4,1 + 4529: 8,12 + 4540: 9,12 + 4546: -9,12 + 4549: -8,12 + 4557: -4,0 + 4565: -4,1 + 4573: -3,0 + 4581: -3,1 + 4589: -2,1 + 4606: -1,1 + 4616: -12,-10 + 4622: -4,-1 + 4630: 4,-1 + 4641: 12,-10 + 4656: 6,16 + 4664: 6,17 + 4672: 6,18 + 4680: 6,19 + 4688: 6,20 + 4699: 9,28 + 4705: -9,28 - node: id: LatticeEdgeW decals: @@ -4201,6 +4430,36 @@ entities: 4445: 6,20 4449: 9,24 4452: 9,28 + 4465: 0,1 + 4475: 1,1 + 4485: 2,1 + 4502: 3,0 + 4510: 3,1 + 4518: 4,0 + 4526: 4,1 + 4534: 8,12 + 4538: 9,4 + 4541: 9,12 + 4554: -8,12 + 4562: -4,0 + 4570: -4,1 + 4578: -3,0 + 4586: -3,1 + 4594: -2,1 + 4611: -1,1 + 4627: -4,-1 + 4635: 4,-1 + 4639: 10,-16 + 4642: 12,-10 + 4645: 3,-20 + 4648: 9,-17 + 4661: 6,16 + 4669: 6,17 + 4677: 6,18 + 4685: 6,19 + 4693: 6,20 + 4697: 9,24 + 4700: 9,28 - node: color: '#FFFFFFFF' id: Rust @@ -5060,9 +5319,10 @@ entities: id: Clementine - type: StationCargoOrderDatabase orders: [] + - type: SelfDeleteGrid - proto: AAAHardpointFixed entities: - - uid: 1204 + - uid: 2 components: - type: Transform rot: 3.141592653589793 rad @@ -5070,12 +5330,12 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 12 + - 1089 - type: Physics canCollide: False - proto: AAAHardpointMediumBallistic entities: - - uid: 257 + - uid: 3 components: - type: Transform rot: -1.5707963267948966 rad @@ -5083,7 +5343,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 330 + - uid: 4 components: - type: Transform rot: 1.5707963267948966 rad @@ -5091,7 +5351,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 732 + - uid: 5 components: - type: Transform rot: -1.5707963267948966 rad @@ -5099,7 +5359,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 737 + - uid: 6 components: - type: Transform rot: -1.5707963267948966 rad @@ -5107,7 +5367,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 772 + - uid: 7 components: - type: Transform rot: 1.5707963267948966 rad @@ -5115,7 +5375,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 842 + - uid: 8 components: - type: Transform rot: 1.5707963267948966 rad @@ -5123,7 +5383,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 948 + - uid: 9 components: - type: Transform rot: -1.5707963267948966 rad @@ -5131,7 +5391,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 1020 + - uid: 10 components: - type: Transform rot: 1.5707963267948966 rad @@ -5141,14 +5401,14 @@ entities: canCollide: False - proto: AAAHardpointSmallBallistic entities: - - uid: 150 + - uid: 11 components: - type: Transform pos: 8.5,-19.5 parent: 1 - type: Physics canCollide: False - - uid: 180 + - uid: 12 components: - type: Transform rot: 3.141592653589793 rad @@ -5156,7 +5416,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 563 + - uid: 13 components: - type: Transform rot: -1.5707963267948966 rad @@ -5164,7 +5424,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 564 + - uid: 14 components: - type: Transform rot: 1.5707963267948966 rad @@ -5172,7 +5432,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 566 + - uid: 15 components: - type: Transform rot: -1.5707963267948966 rad @@ -5180,14 +5440,14 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 727 + - uid: 16 components: - type: Transform pos: -6.5,36.5 parent: 1 - type: Physics canCollide: False - - uid: 728 + - uid: 17 components: - type: Transform rot: 3.141592653589793 rad @@ -5195,7 +5455,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 730 + - uid: 18 components: - type: Transform rot: 1.5707963267948966 rad @@ -5203,7 +5463,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 733 + - uid: 19 components: - type: Transform rot: 1.5707963267948966 rad @@ -5211,14 +5471,14 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 734 + - uid: 20 components: - type: Transform pos: 0.5,-20.5 parent: 1 - type: Physics canCollide: False - - uid: 735 + - uid: 21 components: - type: Transform rot: 3.141592653589793 rad @@ -5226,7 +5486,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 736 + - uid: 22 components: - type: Transform rot: 3.141592653589793 rad @@ -5234,7 +5494,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 833 + - uid: 23 components: - type: Transform rot: -1.5707963267948966 rad @@ -5242,7 +5502,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 834 + - uid: 24 components: - type: Transform rot: 1.5707963267948966 rad @@ -5250,7 +5510,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 838 + - uid: 25 components: - type: Transform rot: 3.141592653589793 rad @@ -5258,7 +5518,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 952 + - uid: 26 components: - type: Transform rot: -1.5707963267948966 rad @@ -5266,7 +5526,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 966 + - uid: 27 components: - type: Transform pos: -7.5,-19.5 @@ -5275,30 +5535,36 @@ entities: canCollide: False - proto: AcceleratorCannon entities: - - uid: 148 + - uid: 28 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,34.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 25000 + - type: Battery + startingCharge: 93184.19 + - type: ApcPowerReceiverBattery + enabled: True - type: BallisticAmmoProvider entities: - - 746 - - 747 - - 749 - - 752 - - 758 + - 29 + - 30 + - 31 + - 32 + - 33 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: - - 746 - - 747 - - 749 - - 752 - - 758 + - 29 + - 30 + - 31 + - 32 + - 33 SpaceArtillery-CoolantSlot: !type:ContainerSlot showEnts: False occludes: True @@ -5316,7 +5582,7 @@ entities: - type: ItemSlots - proto: AirAlarm entities: - - uid: 2145 + - uid: 34 components: - type: Transform rot: -1.5707963267948966 rad @@ -5324,13 +5590,13 @@ entities: parent: 1 - type: DeviceList devices: - - 2009 - - 2008 - - 2010 - - 2011 - - 2012 - - 2013 - - uid: 2146 + - 1336 + - 1339 + - 1337 + - 1340 + - 1341 + - 1338 + - uid: 35 components: - type: Transform rot: -1.5707963267948966 rad @@ -5338,24 +5604,24 @@ entities: parent: 1 - type: DeviceList configurators: - - 2148 + - 1403 devices: - - 2009 - - 2008 - - 2010 - - 2011 - - 2012 - - 2013 + - 1336 + - 1339 + - 1337 + - 1340 + - 1341 + - 1338 - proto: AirCanister entities: - - uid: 511 + - uid: 36 components: - type: Transform pos: 10.5,-11.5 parent: 1 - proto: AirlockCommand entities: - - uid: 1012 + - uid: 37 components: - type: Transform rot: 1.5707963267948966 rad @@ -5363,43 +5629,43 @@ entities: parent: 1 - proto: AirlockCommandLockedNCWL entities: - - uid: 133 + - uid: 38 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,13.5 parent: 1 - - uid: 394 + - uid: 39 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-7.5 parent: 1 - - uid: 402 + - uid: 40 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-7.5 parent: 1 - - uid: 567 + - uid: 41 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,19.5 parent: 1 - - uid: 589 + - uid: 42 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,23.5 parent: 1 - - uid: 599 + - uid: 43 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,23.5 parent: 1 - - uid: 661 + - uid: 44 components: - type: Transform rot: -1.5707963267948966 rad @@ -5407,7 +5673,7 @@ entities: parent: 1 - proto: AirlockCommandLockedNCWLAdministrator entities: - - uid: 71 + - uid: 45 components: - type: Transform rot: 3.141592653589793 rad @@ -5415,13 +5681,13 @@ entities: parent: 1 - proto: AirlockCommandLockedNCWLCommandHorizontal entities: - - uid: 274 + - uid: 46 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 521 + - uid: 47 components: - type: Transform rot: -1.5707963267948966 rad @@ -5429,73 +5695,73 @@ entities: parent: 1 - proto: AirlockCommandLockedNCWLHorizontal entities: - - uid: 174 + - uid: 48 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,3.5 parent: 1 - - uid: 243 + - uid: 49 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,3.5 parent: 1 - - uid: 989 + - uid: 50 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,6.5 parent: 1 - - uid: 1045 + - uid: 51 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,16.5 parent: 1 - - uid: 1054 + - uid: 52 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,16.5 parent: 1 - - uid: 1056 + - uid: 53 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,31.5 parent: 1 - - uid: 1061 + - uid: 54 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 1 - - uid: 1062 + - uid: 55 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,31.5 parent: 1 - - uid: 1293 + - uid: 56 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 1 - - uid: 1294 + - uid: 57 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-1.5 parent: 1 - - uid: 1295 + - uid: 58 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 1 - - uid: 1296 + - uid: 59 components: - type: Transform rot: 1.5707963267948966 rad @@ -5503,13 +5769,13 @@ entities: parent: 1 - proto: AirlockCommandLockedNCWLJail entities: - - uid: 331 + - uid: 60 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-14.5 parent: 1 - - uid: 332 + - uid: 61 components: - type: Transform rot: 3.141592653589793 rad @@ -5517,7 +5783,7 @@ entities: parent: 1 - proto: AirlockCommandLockedNCWLKommissar entities: - - uid: 364 + - uid: 62 components: - type: Transform rot: 3.141592653589793 rad @@ -5525,44 +5791,44 @@ entities: parent: 1 - proto: AirlockExternal entities: - - uid: 374 + - uid: 63 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,21.5 parent: 1 - - uid: 397 + - uid: 64 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,21.5 parent: 1 - - uid: 415 + - uid: 65 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,15.5 parent: 1 - - uid: 420 + - uid: 66 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,15.5 parent: 1 - - uid: 424 + - uid: 67 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,35.5 parent: 1 - - uid: 819 + - uid: 68 components: - type: Transform pos: 4.5,35.5 parent: 1 - proto: AirlockMaint entities: - - uid: 506 + - uid: 69 components: - type: Transform rot: 3.141592653589793 rad @@ -5570,66 +5836,66 @@ entities: parent: 1 - proto: AirlockMaintHorizontal entities: - - uid: 281 + - uid: 70 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 286 + - uid: 71 components: - type: Transform pos: -0.5,-13.5 parent: 1 - - uid: 507 + - uid: 72 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-15.5 parent: 1 - - uid: 508 + - uid: 73 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-15.5 parent: 1 - - uid: 831 + - uid: 74 components: - type: Transform pos: 8.5,-11.5 parent: 1 - proto: AirlockShuttle entities: - - uid: 479 + - uid: 75 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,25.5 parent: 1 - - uid: 494 + - uid: 76 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,27.5 parent: 1 - - uid: 603 + - uid: 77 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,38.5 parent: 1 - - uid: 604 + - uid: 78 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,38.5 parent: 1 - - uid: 1156 + - uid: 79 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,25.5 parent: 1 - - uid: 1185 + - uid: 80 components: - type: Transform rot: 1.5707963267948966 rad @@ -5637,69 +5903,69 @@ entities: parent: 1 - proto: AirTankFilled entities: - - uid: 520 + - uid: 82 components: - type: Transform - parent: 442 + parent: 81 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 664 + - uid: 88 components: - type: Transform - parent: 621 + parent: 87 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 674 + - uid: 94 components: - type: Transform - parent: 666 + parent: 93 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 702 + - uid: 100 components: - type: Transform - parent: 700 + parent: 99 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 763 + - uid: 106 components: - type: Transform - parent: 761 + parent: 105 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 775 + - uid: 112 components: - type: Transform - parent: 774 + parent: 111 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 805 + - uid: 118 components: - type: Transform - parent: 804 + parent: 117 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 813 + - uid: 124 components: - type: Transform - parent: 811 + parent: 123 - type: Physics canCollide: False - type: InsideEntityStorage - proto: AmeController entities: - - uid: 470 + - uid: 129 components: - type: Transform pos: 3.5,-12.5 @@ -5712,33 +5978,33 @@ entities: fuelSlot: !type:ContainerSlot showEnts: False occludes: True - ent: 471 + ent: 130 - proto: AmeJar entities: - - uid: 471 + - uid: 130 components: - type: Transform - parent: 470 + parent: 129 - type: Physics canCollide: False - - uid: 514 + - uid: 131 components: - type: Transform pos: 2.1912324,-12.405361 parent: 1 - - uid: 515 + - uid: 132 components: - type: Transform pos: 2.3398516,-12.405361 parent: 1 - - uid: 516 + - uid: 133 components: - type: Transform pos: 2.5033343,-12.405361 parent: 1 - proto: AmeShielding entities: - - uid: 191 + - uid: 134 components: - type: Transform pos: 5.5,-9.5 @@ -5746,12 +6012,12 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 192 + - uid: 135 components: - type: Transform pos: 5.5,-8.5 parent: 1 - - uid: 193 + - uid: 136 components: - type: Transform pos: 5.5,-10.5 @@ -5759,17 +6025,17 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 194 + - uid: 137 components: - type: Transform pos: 5.5,-11.5 parent: 1 - - uid: 300 + - uid: 138 components: - type: Transform pos: 4.5,-8.5 parent: 1 - - uid: 301 + - uid: 139 components: - type: Transform pos: 4.5,-9.5 @@ -5777,7 +6043,7 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 302 + - uid: 140 components: - type: Transform pos: 4.5,-10.5 @@ -5785,102 +6051,102 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 303 + - uid: 141 components: - type: Transform pos: 4.5,-11.5 parent: 1 - - uid: 304 + - uid: 142 components: - type: Transform pos: 3.5,-8.5 parent: 1 - - uid: 305 + - uid: 143 components: - type: Transform pos: 3.5,-9.5 parent: 1 - - uid: 306 + - uid: 144 components: - type: Transform pos: 3.5,-10.5 parent: 1 - - uid: 307 + - uid: 145 components: - type: Transform pos: 3.5,-11.5 parent: 1 - - uid: 309 + - uid: 146 components: - type: Transform pos: 6.5,-8.5 parent: 1 - - uid: 423 + - uid: 147 components: - type: Transform pos: 6.5,-10.5 parent: 1 - - uid: 430 + - uid: 148 components: - type: Transform pos: 6.5,-11.5 parent: 1 - - uid: 435 + - uid: 149 components: - type: Transform pos: 6.5,-9.5 parent: 1 - proto: AmmoTechFab entities: - - uid: 1079 + - uid: 150 components: - type: Transform pos: -2.5,14.5 parent: 1 - proto: APCBasic entities: - - uid: 1416 + - uid: 151 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-13.5 parent: 1 - - uid: 1476 + - uid: 152 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 parent: 1 - - uid: 1494 + - uid: 153 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 1 - - uid: 1496 + - uid: 154 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,6.5 parent: 1 - - uid: 1531 + - uid: 155 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,19.5 parent: 1 - - uid: 1532 + - uid: 156 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 1842 + - uid: 157 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-14.5 parent: 1 - - uid: 2210 + - uid: 158 components: - type: Transform rot: -1.5707963267948966 rad @@ -5888,155 +6154,155 @@ entities: parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 366 + - uid: 159 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,27.5 parent: 1 - - uid: 388 + - uid: 160 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,15.5 parent: 1 - - uid: 398 + - uid: 161 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,15.5 parent: 1 - - uid: 407 + - uid: 162 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,21.5 parent: 1 - - uid: 408 + - uid: 163 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,21.5 parent: 1 - - uid: 458 + - uid: 164 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,27.5 parent: 1 - - uid: 459 + - uid: 165 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,25.5 parent: 1 - - uid: 475 + - uid: 166 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,25.5 parent: 1 - - uid: 595 + - uid: 167 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 1 - - uid: 601 + - uid: 168 components: - type: Transform pos: -3.5,38.5 parent: 1 - - uid: 602 + - uid: 169 components: - type: Transform pos: 4.5,38.5 parent: 1 - - uid: 709 + - uid: 170 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-1.5 parent: 1 - - uid: 716 + - uid: 171 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,22.5 parent: 1 - - uid: 717 + - uid: 172 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,13.5 parent: 1 - - uid: 718 + - uid: 173 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,22.5 parent: 1 - - uid: 719 + - uid: 174 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,13.5 parent: 1 - - uid: 753 + - uid: 175 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-1.5 parent: 1 - - uid: 781 + - uid: 176 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 1 - - uid: 1011 + - uid: 177 components: - type: Transform pos: -0.5,37.5 parent: 1 - - uid: 1015 + - uid: 178 components: - type: Transform pos: 1.5,37.5 parent: 1 - - uid: 1018 + - uid: 179 components: - type: Transform pos: 0.5,37.5 parent: 1 - proto: Autolathe entities: - - uid: 951 + - uid: 180 components: - type: Transform pos: 4.5,17.5 parent: 1 - proto: Bed entities: - - uid: 333 + - uid: 181 components: - type: Transform pos: -4.5,-16.5 parent: 1 - - uid: 334 + - uid: 182 components: - type: Transform pos: -1.5,-16.5 parent: 1 - proto: BedsheetOrange entities: - - uid: 335 + - uid: 183 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-16.5 parent: 1 - - uid: 336 + - uid: 184 components: - type: Transform rot: 3.141592653589793 rad @@ -6044,31 +6310,31 @@ entities: parent: 1 - proto: BlastDoor entities: - - uid: 512 + - uid: 185 components: - type: Transform pos: 1.5,37.5 parent: 1 - type: DeviceLinkSink links: - - 1014 - - uid: 1016 + - 1567 + - uid: 186 components: - type: Transform pos: 0.5,37.5 parent: 1 - type: DeviceLinkSink links: - - 1014 - - uid: 1017 + - 1567 + - uid: 187 components: - type: Transform pos: -0.5,37.5 parent: 1 - type: DeviceLinkSink links: - - 1014 - - uid: 2152 + - 1567 + - uid: 188 components: - type: Transform rot: 1.5707963267948966 rad @@ -6076,8 +6342,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2159 - - uid: 2153 + - 1572 + - uid: 189 components: - type: Transform rot: 1.5707963267948966 rad @@ -6085,8 +6351,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2158 - - uid: 2154 + - 1571 + - uid: 190 components: - type: Transform rot: -1.5707963267948966 rad @@ -6094,8 +6360,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2157 - - uid: 2155 + - 1570 + - uid: 191 components: - type: Transform rot: -1.5707963267948966 rad @@ -6103,8 +6369,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2156 - - uid: 2233 + - 1569 + - uid: 192 components: - type: Transform rot: 1.5707963267948966 rad @@ -6112,8 +6378,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1141 - - uid: 2234 + - 1568 + - uid: 193 components: - type: Transform rot: -1.5707963267948966 rad @@ -6121,90 +6387,90 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 964 + - 1566 - proto: BlastDoorOpen entities: - - uid: 48 + - uid: 194 components: - type: Transform pos: 1.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 60 + - 1563 + - uid: 195 components: - type: Transform pos: 2.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 63 + - 1563 + - uid: 196 components: - type: Transform pos: 0.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 64 + - 1563 + - uid: 197 components: - type: Transform pos: -0.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 65 + - 1563 + - uid: 198 components: - type: Transform pos: -1.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 786 + - 1563 + - uid: 199 components: - type: Transform pos: -1.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 787 + - 1563 + - uid: 200 components: - type: Transform pos: -0.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 788 + - 1563 + - uid: 201 components: - type: Transform pos: 0.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 789 + - 1563 + - uid: 202 components: - type: Transform pos: 1.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 790 + - 1563 + - uid: 203 components: - type: Transform pos: 2.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 1600 + - 1563 + - uid: 204 components: - type: Transform rot: -1.5707963267948966 rad @@ -6212,8 +6478,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 1613 + - 1563 + - uid: 205 components: - type: Transform rot: -1.5707963267948966 rad @@ -6221,8 +6487,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 1832 + - 1563 + - uid: 206 components: - type: Transform rot: 1.5707963267948966 rad @@ -6230,8 +6496,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 144 - - uid: 1834 + - 1563 + - uid: 207 components: - type: Transform rot: 1.5707963267948966 rad @@ -6239,10 +6505,10 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 144 + - 1563 - proto: BoriaticGeneratorHerculesShuttle entities: - - uid: 486 + - uid: 208 components: - type: Transform pos: -5.5,7.5 @@ -6251,7 +6517,7 @@ entities: on: False - type: Physics bodyType: Static - - uid: 2235 + - uid: 209 components: - type: Transform pos: 5.5,-16.5 @@ -6262,14 +6528,14 @@ entities: bodyType: Static - proto: BoxBeaker entities: - - uid: 816 + - uid: 210 components: - type: Transform pos: -4.677565,11.774466 parent: 1 - proto: BoxSyringe entities: - - uid: 1022 + - uid: 211 components: - type: Transform pos: -5.2123933,11.760755 @@ -6279,61 +6545,61 @@ entities: linearDamping: 0 - proto: ButtonFrameCaution entities: - - uid: 141 + - uid: 212 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-8.5 parent: 1 - - uid: 143 + - uid: 213 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 1 - - uid: 528 + - uid: 214 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-8.5 parent: 1 - - uid: 757 + - uid: 215 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,19.5 parent: 1 - - uid: 963 + - uid: 216 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,24.5 parent: 1 - - uid: 991 + - uid: 217 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,24.5 parent: 1 - - uid: 1288 + - uid: 218 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,22.5 parent: 1 - - uid: 2149 + - uid: 219 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,14.5 parent: 1 - - uid: 2150 + - uid: 220 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,22.5 parent: 1 - - uid: 2151 + - uid: 221 components: - type: Transform rot: 1.5707963267948966 rad @@ -6341,4189 +6607,4189 @@ entities: parent: 1 - proto: ButtonFrameCautionSecurity entities: - - uid: 694 + - uid: 222 components: - type: Transform pos: 2.5,35.5 parent: 1 - proto: CableApcExtension entities: - - uid: 570 + - uid: 223 components: - type: Transform pos: 8.5,-17.5 parent: 1 - - uid: 571 + - uid: 224 components: - type: Transform pos: 8.5,-16.5 parent: 1 - - uid: 572 + - uid: 225 components: - type: Transform pos: 7.5,-16.5 parent: 1 - - uid: 573 + - uid: 226 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 574 + - uid: 227 components: - type: Transform pos: 6.5,-15.5 parent: 1 - - uid: 575 + - uid: 228 components: - type: Transform pos: 5.5,-15.5 parent: 1 - - uid: 576 + - uid: 229 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 577 + - uid: 230 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 723 + - uid: 231 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 724 + - uid: 232 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 729 + - uid: 233 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 780 + - uid: 234 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 806 + - uid: 235 components: - type: Transform pos: -7.5,11.5 parent: 1 - - uid: 913 + - uid: 236 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 1107 + - uid: 237 components: - type: Transform pos: -6.5,11.5 parent: 1 - - uid: 1108 + - uid: 238 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 1178 + - uid: 239 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 1276 + - uid: 240 components: - type: Transform pos: -9.5,-8.5 parent: 1 - - uid: 1278 + - uid: 241 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 1569 + - uid: 242 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 1570 + - uid: 243 components: - type: Transform pos: 3.5,32.5 parent: 1 - - uid: 1571 + - uid: 244 components: - type: Transform pos: 3.5,31.5 parent: 1 - - uid: 1572 + - uid: 245 components: - type: Transform pos: 2.5,31.5 parent: 1 - - uid: 1573 + - uid: 246 components: - type: Transform pos: 1.5,31.5 parent: 1 - - uid: 1574 + - uid: 247 components: - type: Transform pos: 0.5,31.5 parent: 1 - - uid: 1575 + - uid: 248 components: - type: Transform pos: -0.5,31.5 parent: 1 - - uid: 1576 + - uid: 249 components: - type: Transform pos: -1.5,31.5 parent: 1 - - uid: 1577 + - uid: 250 components: - type: Transform pos: -2.5,31.5 parent: 1 - - uid: 1578 + - uid: 251 components: - type: Transform pos: -3.5,31.5 parent: 1 - - uid: 1579 + - uid: 252 components: - type: Transform pos: -4.5,31.5 parent: 1 - - uid: 1580 + - uid: 253 components: - type: Transform pos: -4.5,32.5 parent: 1 - - uid: 1581 + - uid: 254 components: - type: Transform pos: -4.5,33.5 parent: 1 - - uid: 1582 + - uid: 255 components: - type: Transform pos: -4.5,34.5 parent: 1 - - uid: 1583 + - uid: 256 components: - type: Transform pos: -4.5,35.5 parent: 1 - - uid: 1584 + - uid: 257 components: - type: Transform pos: -4.5,36.5 parent: 1 - - uid: 1585 + - uid: 258 components: - type: Transform pos: -3.5,36.5 parent: 1 - - uid: 1586 + - uid: 259 components: - type: Transform pos: -3.5,37.5 parent: 1 - - uid: 1587 + - uid: 260 components: - type: Transform pos: -3.5,38.5 parent: 1 - - uid: 1588 + - uid: 261 components: - type: Transform pos: 4.5,31.5 parent: 1 - - uid: 1589 + - uid: 262 components: - type: Transform pos: 5.5,31.5 parent: 1 - - uid: 1590 + - uid: 263 components: - type: Transform pos: 5.5,31.5 parent: 1 - - uid: 1591 + - uid: 264 components: - type: Transform pos: 5.5,32.5 parent: 1 - - uid: 1592 + - uid: 265 components: - type: Transform pos: 5.5,33.5 parent: 1 - - uid: 1593 + - uid: 266 components: - type: Transform pos: 5.5,34.5 parent: 1 - - uid: 1594 + - uid: 267 components: - type: Transform pos: 4.5,34.5 parent: 1 - - uid: 1595 + - uid: 268 components: - type: Transform pos: 4.5,35.5 parent: 1 - - uid: 1596 + - uid: 269 components: - type: Transform pos: 4.5,36.5 parent: 1 - - uid: 1597 + - uid: 270 components: - type: Transform pos: 4.5,37.5 parent: 1 - - uid: 1598 + - uid: 271 components: - type: Transform pos: 4.5,38.5 parent: 1 - - uid: 1599 + - uid: 272 components: - type: Transform pos: 5.5,38.5 parent: 1 - - uid: 1601 + - uid: 273 components: - type: Transform pos: 5.5,36.5 parent: 1 - - uid: 1602 + - uid: 274 components: - type: Transform pos: 6.5,36.5 parent: 1 - - uid: 1603 + - uid: 275 components: - type: Transform pos: 7.5,36.5 parent: 1 - - uid: 1604 + - uid: 276 components: - type: Transform pos: 6.5,34.5 parent: 1 - - uid: 1605 + - uid: 277 components: - type: Transform pos: 7.5,34.5 parent: 1 - - uid: 1606 + - uid: 278 components: - type: Transform pos: 8.5,34.5 parent: 1 - - uid: 1607 + - uid: 279 components: - type: Transform pos: -5.5,34.5 parent: 1 - - uid: 1608 + - uid: 280 components: - type: Transform pos: -6.5,34.5 parent: 1 - - uid: 1609 + - uid: 281 components: - type: Transform pos: -7.5,34.5 parent: 1 - - uid: 1610 + - uid: 282 components: - type: Transform pos: -4.5,36.5 parent: 1 - - uid: 1611 + - uid: 283 components: - type: Transform pos: -5.5,36.5 parent: 1 - - uid: 1612 + - uid: 284 components: - type: Transform pos: -6.5,36.5 parent: 1 - - uid: 1614 + - uid: 285 components: - type: Transform pos: -4.5,38.5 parent: 1 - - uid: 1615 + - uid: 286 components: - type: Transform pos: 8.5,33.5 parent: 1 - - uid: 1616 + - uid: 287 components: - type: Transform pos: 8.5,32.5 parent: 1 - - uid: 1617 + - uid: 288 components: - type: Transform pos: 8.5,31.5 parent: 1 - - uid: 1618 + - uid: 289 components: - type: Transform pos: 8.5,30.5 parent: 1 - - uid: 1619 + - uid: 290 components: - type: Transform pos: -7.5,33.5 parent: 1 - - uid: 1620 + - uid: 291 components: - type: Transform pos: -7.5,32.5 parent: 1 - - uid: 1621 + - uid: 292 components: - type: Transform pos: -7.5,31.5 parent: 1 - - uid: 1622 + - uid: 293 components: - type: Transform pos: -7.5,30.5 parent: 1 - - uid: 1623 + - uid: 294 components: - type: Transform pos: -0.5,19.5 parent: 1 - - uid: 1624 + - uid: 295 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 1625 + - uid: 296 components: - type: Transform pos: -0.5,21.5 parent: 1 - - uid: 1626 + - uid: 297 components: - type: Transform pos: -0.5,22.5 parent: 1 - - uid: 1627 + - uid: 298 components: - type: Transform pos: -0.5,23.5 parent: 1 - - uid: 1628 + - uid: 299 components: - type: Transform pos: -0.5,24.5 parent: 1 - - uid: 1629 + - uid: 300 components: - type: Transform pos: -0.5,25.5 parent: 1 - - uid: 1630 + - uid: 301 components: - type: Transform pos: -0.5,26.5 parent: 1 - - uid: 1631 + - uid: 302 components: - type: Transform pos: -0.5,27.5 parent: 1 - - uid: 1632 + - uid: 303 components: - type: Transform pos: -0.5,28.5 parent: 1 - - uid: 1633 + - uid: 304 components: - type: Transform pos: -1.5,28.5 parent: 1 - - uid: 1634 + - uid: 305 components: - type: Transform pos: -2.5,28.5 parent: 1 - - uid: 1635 + - uid: 306 components: - type: Transform pos: -3.5,28.5 parent: 1 - - uid: 1636 + - uid: 307 components: - type: Transform pos: -3.5,27.5 parent: 1 - - uid: 1637 + - uid: 308 components: - type: Transform pos: -3.5,26.5 parent: 1 - - uid: 1638 + - uid: 309 components: - type: Transform pos: -3.5,25.5 parent: 1 - - uid: 1639 + - uid: 310 components: - type: Transform pos: -3.5,24.5 parent: 1 - - uid: 1640 + - uid: 311 components: - type: Transform pos: -3.5,23.5 parent: 1 - - uid: 1641 + - uid: 312 components: - type: Transform pos: -3.5,22.5 parent: 1 - - uid: 1642 + - uid: 313 components: - type: Transform pos: -3.5,21.5 parent: 1 - - uid: 1643 + - uid: 314 components: - type: Transform pos: -3.5,20.5 parent: 1 - - uid: 1644 + - uid: 315 components: - type: Transform pos: -2.5,20.5 parent: 1 - - uid: 1645 + - uid: 316 components: - type: Transform pos: -1.5,20.5 parent: 1 - - uid: 1646 + - uid: 317 components: - type: Transform pos: -2.5,19.5 parent: 1 - - uid: 1647 + - uid: 318 components: - type: Transform pos: -2.5,18.5 parent: 1 - - uid: 1648 + - uid: 319 components: - type: Transform pos: -2.5,17.5 parent: 1 - - uid: 1649 + - uid: 320 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 1650 + - uid: 321 components: - type: Transform pos: -2.5,15.5 parent: 1 - - uid: 1651 + - uid: 322 components: - type: Transform pos: -2.5,14.5 parent: 1 - - uid: 1652 + - uid: 323 components: - type: Transform pos: -1.5,14.5 parent: 1 - - uid: 1653 + - uid: 324 components: - type: Transform pos: -3.5,16.5 parent: 1 - - uid: 1654 + - uid: 325 components: - type: Transform pos: -1.5,16.5 parent: 1 - - uid: 1655 + - uid: 326 components: - type: Transform pos: -0.5,16.5 parent: 1 - - uid: 1656 + - uid: 327 components: - type: Transform pos: 0.5,16.5 parent: 1 - - uid: 1657 + - uid: 328 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 1658 + - uid: 329 components: - type: Transform pos: 2.5,16.5 parent: 1 - - uid: 1659 + - uid: 330 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 1660 + - uid: 331 components: - type: Transform pos: 4.5,16.5 parent: 1 - - uid: 1661 + - uid: 332 components: - type: Transform pos: 4.5,17.5 parent: 1 - - uid: 1662 + - uid: 333 components: - type: Transform pos: 4.5,18.5 parent: 1 - - uid: 1663 + - uid: 334 components: - type: Transform pos: 3.5,18.5 parent: 1 - - uid: 1664 + - uid: 335 components: - type: Transform pos: 2.5,18.5 parent: 1 - - uid: 1665 + - uid: 336 components: - type: Transform pos: 2.5,17.5 parent: 1 - - uid: 1666 + - uid: 337 components: - type: Transform pos: 2.5,15.5 parent: 1 - - uid: 1667 + - uid: 338 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 1668 + - uid: 339 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 1669 + - uid: 340 components: - type: Transform pos: 4.5,14.5 parent: 1 - - uid: 1670 + - uid: 341 components: - type: Transform pos: 4.5,15.5 parent: 1 - - uid: 1671 + - uid: 342 components: - type: Transform pos: 0.5,20.5 parent: 1 - - uid: 1672 + - uid: 343 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 1673 + - uid: 344 components: - type: Transform pos: 2.5,20.5 parent: 1 - - uid: 1674 + - uid: 345 components: - type: Transform pos: 3.5,20.5 parent: 1 - - uid: 1675 + - uid: 346 components: - type: Transform pos: 3.5,19.5 parent: 1 - - uid: 1676 + - uid: 347 components: - type: Transform pos: 4.5,20.5 parent: 1 - - uid: 1677 + - uid: 348 components: - type: Transform pos: 4.5,21.5 parent: 1 - - uid: 1678 + - uid: 349 components: - type: Transform pos: 4.5,22.5 parent: 1 - - uid: 1679 + - uid: 350 components: - type: Transform pos: 4.5,23.5 parent: 1 - - uid: 1680 + - uid: 351 components: - type: Transform pos: 4.5,24.5 parent: 1 - - uid: 1681 + - uid: 352 components: - type: Transform pos: 4.5,25.5 parent: 1 - - uid: 1682 + - uid: 353 components: - type: Transform pos: 4.5,26.5 parent: 1 - - uid: 1683 + - uid: 354 components: - type: Transform pos: 4.5,27.5 parent: 1 - - uid: 1684 + - uid: 355 components: - type: Transform pos: 4.5,28.5 parent: 1 - - uid: 1685 + - uid: 356 components: - type: Transform pos: 3.5,28.5 parent: 1 - - uid: 1686 + - uid: 357 components: - type: Transform pos: 2.5,28.5 parent: 1 - - uid: 1687 + - uid: 358 components: - type: Transform pos: 1.5,28.5 parent: 1 - - uid: 1688 + - uid: 359 components: - type: Transform pos: 0.5,28.5 parent: 1 - - uid: 1689 + - uid: 360 components: - type: Transform pos: 5.5,26.5 parent: 1 - - uid: 1690 + - uid: 361 components: - type: Transform pos: 6.5,26.5 parent: 1 - - uid: 1691 + - uid: 362 components: - type: Transform pos: 7.5,26.5 parent: 1 - - uid: 1692 + - uid: 363 components: - type: Transform pos: 6.5,27.5 parent: 1 - - uid: 1693 + - uid: 364 components: - type: Transform pos: 6.5,28.5 parent: 1 - - uid: 1694 + - uid: 365 components: - type: Transform pos: 6.5,25.5 parent: 1 - - uid: 1695 + - uid: 366 components: - type: Transform pos: 6.5,24.5 parent: 1 - - uid: 1696 + - uid: 367 components: - type: Transform pos: 6.5,23.5 parent: 1 - - uid: 1697 + - uid: 368 components: - type: Transform pos: 6.5,22.5 parent: 1 - - uid: 1698 + - uid: 369 components: - type: Transform pos: 6.5,21.5 parent: 1 - - uid: 1699 + - uid: 370 components: - type: Transform pos: 6.5,20.5 parent: 1 - - uid: 1700 + - uid: 371 components: - type: Transform pos: 6.5,19.5 parent: 1 - - uid: 1701 + - uid: 372 components: - type: Transform pos: 6.5,18.5 parent: 1 - - uid: 1702 + - uid: 373 components: - type: Transform pos: 6.5,17.5 parent: 1 - - uid: 1703 + - uid: 374 components: - type: Transform pos: 6.5,16.5 parent: 1 - - uid: 1704 + - uid: 375 components: - type: Transform pos: 6.5,15.5 parent: 1 - - uid: 1705 + - uid: 376 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 1706 + - uid: 377 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 1707 + - uid: 378 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 1708 + - uid: 379 components: - type: Transform pos: 7.5,16.5 parent: 1 - - uid: 1709 + - uid: 380 components: - type: Transform pos: 7.5,18.5 parent: 1 - - uid: 1710 + - uid: 381 components: - type: Transform pos: 7.5,20.5 parent: 1 - - uid: 1711 + - uid: 382 components: - type: Transform pos: 7.5,22.5 parent: 1 - - uid: 1712 + - uid: 383 components: - type: Transform pos: 8.5,22.5 parent: 1 - - uid: 1713 + - uid: 384 components: - type: Transform pos: 7.5,13.5 parent: 1 - - uid: 1714 + - uid: 385 components: - type: Transform pos: 8.5,13.5 parent: 1 - - uid: 1715 + - uid: 386 components: - type: Transform pos: -4.5,13.5 parent: 1 - - uid: 1716 + - uid: 387 components: - type: Transform pos: -4.5,14.5 parent: 1 - - uid: 1717 + - uid: 388 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 1718 + - uid: 389 components: - type: Transform pos: -5.5,14.5 parent: 1 - - uid: 1719 + - uid: 390 components: - type: Transform pos: -5.5,15.5 parent: 1 - - uid: 1720 + - uid: 391 components: - type: Transform pos: -5.5,16.5 parent: 1 - - uid: 1721 + - uid: 392 components: - type: Transform pos: -5.5,17.5 parent: 1 - - uid: 1722 + - uid: 393 components: - type: Transform pos: -5.5,18.5 parent: 1 - - uid: 1723 + - uid: 394 components: - type: Transform pos: -5.5,19.5 parent: 1 - - uid: 1724 + - uid: 395 components: - type: Transform pos: -5.5,20.5 parent: 1 - - uid: 1725 + - uid: 396 components: - type: Transform pos: -5.5,21.5 parent: 1 - - uid: 1726 + - uid: 397 components: - type: Transform pos: -4.5,21.5 parent: 1 - - uid: 1727 + - uid: 398 components: - type: Transform pos: -6.5,20.5 parent: 1 - - uid: 1728 + - uid: 399 components: - type: Transform pos: -6.5,18.5 parent: 1 - - uid: 1729 + - uid: 400 components: - type: Transform pos: -6.5,16.5 parent: 1 - - uid: 1730 + - uid: 401 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 1731 + - uid: 402 components: - type: Transform pos: -6.5,13.5 parent: 1 - - uid: 1732 + - uid: 403 components: - type: Transform pos: -7.5,13.5 parent: 1 - - uid: 1733 + - uid: 404 components: - type: Transform pos: -5.5,22.5 parent: 1 - - uid: 1734 + - uid: 405 components: - type: Transform pos: -6.5,22.5 parent: 1 - - uid: 1735 + - uid: 406 components: - type: Transform pos: -7.5,22.5 parent: 1 - - uid: 1736 + - uid: 407 components: - type: Transform pos: -5.5,23.5 parent: 1 - - uid: 1737 + - uid: 408 components: - type: Transform pos: -5.5,24.5 parent: 1 - - uid: 1738 + - uid: 409 components: - type: Transform pos: -5.5,25.5 parent: 1 - - uid: 1739 + - uid: 410 components: - type: Transform pos: -5.5,26.5 parent: 1 - - uid: 1740 + - uid: 411 components: - type: Transform pos: -5.5,27.5 parent: 1 - - uid: 1741 + - uid: 412 components: - type: Transform pos: -5.5,28.5 parent: 1 - - uid: 1742 + - uid: 413 components: - type: Transform pos: -6.5,28.5 parent: 1 - - uid: 1743 + - uid: 414 components: - type: Transform pos: -7.5,28.5 parent: 1 - - uid: 1744 + - uid: 415 components: - type: Transform pos: -7.5,27.5 parent: 1 - - uid: 1745 + - uid: 416 components: - type: Transform pos: -7.5,26.5 parent: 1 - - uid: 1746 + - uid: 417 components: - type: Transform pos: -7.5,25.5 parent: 1 - - uid: 1747 + - uid: 418 components: - type: Transform pos: -7.5,24.5 parent: 1 - - uid: 1748 + - uid: 419 components: - type: Transform pos: -7.5,23.5 parent: 1 - - uid: 1749 + - uid: 420 components: - type: Transform pos: -4.5,26.5 parent: 1 - - uid: 1750 + - uid: 421 components: - type: Transform pos: -3.5,26.5 parent: 1 - - uid: 1751 + - uid: 422 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 1752 + - uid: 423 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 1753 + - uid: 424 components: - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 1754 + - uid: 425 components: - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 1755 + - uid: 426 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 1756 + - uid: 427 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 1758 + - uid: 428 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 1759 + - uid: 429 components: - type: Transform pos: -0.5,8.5 parent: 1 - - uid: 1760 + - uid: 430 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 1761 + - uid: 431 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 1762 + - uid: 432 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 1763 + - uid: 433 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 1764 + - uid: 434 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 1765 + - uid: 435 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 1766 + - uid: 436 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 1767 + - uid: 437 components: - type: Transform pos: 6.5,7.5 parent: 1 - - uid: 1768 + - uid: 438 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 1769 + - uid: 439 components: - type: Transform pos: 6.5,9.5 parent: 1 - - uid: 1770 + - uid: 440 components: - type: Transform pos: 6.5,10.5 parent: 1 - - uid: 1771 + - uid: 441 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 1772 + - uid: 442 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 1773 + - uid: 443 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 1774 + - uid: 444 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 1775 + - uid: 445 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 1776 + - uid: 446 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 1777 + - uid: 447 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 1778 + - uid: 448 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 1779 + - uid: 449 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 1780 + - uid: 450 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 1781 + - uid: 451 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 1782 + - uid: 452 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 1783 + - uid: 453 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 1784 + - uid: 454 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 1785 + - uid: 455 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 1786 + - uid: 456 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 1787 + - uid: 457 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 1788 + - uid: 458 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 1789 + - uid: 459 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 1790 + - uid: 460 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 1791 + - uid: 461 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 1792 + - uid: 462 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1793 + - uid: 463 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 1794 + - uid: 464 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 1795 + - uid: 465 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 1796 + - uid: 466 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 1797 + - uid: 467 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 1798 + - uid: 468 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 1799 + - uid: 469 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 1800 + - uid: 470 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 1801 + - uid: 471 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 1802 + - uid: 472 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 1803 + - uid: 473 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 1804 + - uid: 474 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 1805 + - uid: 475 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 1806 + - uid: 476 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 1807 + - uid: 477 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 1808 + - uid: 478 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 1809 + - uid: 479 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 1810 + - uid: 480 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 1811 + - uid: 481 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 1812 + - uid: 482 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 1813 + - uid: 483 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 1814 + - uid: 484 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 1815 + - uid: 485 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 1816 + - uid: 486 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 1817 + - uid: 487 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 1818 + - uid: 488 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 1819 + - uid: 489 components: - type: Transform pos: 6.5,-5.5 parent: 1 - - uid: 1820 + - uid: 490 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 1821 + - uid: 491 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 1822 + - uid: 492 components: - type: Transform pos: 6.5,-2.5 parent: 1 - - uid: 1823 + - uid: 493 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 1824 + - uid: 494 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 1825 + - uid: 495 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 1826 + - uid: 496 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 1827 + - uid: 497 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 1828 + - uid: 498 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 1829 + - uid: 499 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 1830 + - uid: 500 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 1831 + - uid: 501 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 1833 + - uid: 502 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 1835 + - uid: 503 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 1837 + - uid: 504 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 1843 + - uid: 505 components: - type: Transform pos: -3.5,-14.5 parent: 1 - - uid: 1844 + - uid: 506 components: - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 1845 + - uid: 507 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 1846 + - uid: 508 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 1847 + - uid: 509 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 1848 + - uid: 510 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 1849 + - uid: 511 components: - type: Transform pos: -6.5,-11.5 parent: 1 - - uid: 1850 + - uid: 512 components: - type: Transform pos: -7.5,-11.5 parent: 1 - - uid: 1851 + - uid: 513 components: - type: Transform pos: -8.5,-11.5 parent: 1 - - uid: 1852 + - uid: 514 components: - type: Transform pos: -9.5,-11.5 parent: 1 - - uid: 1853 + - uid: 515 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 1854 + - uid: 516 components: - type: Transform pos: -8.5,-9.5 parent: 1 - - uid: 1855 + - uid: 517 components: - type: Transform pos: -8.5,-13.5 parent: 1 - - uid: 1856 + - uid: 518 components: - type: Transform pos: -9.5,-13.5 parent: 1 - - uid: 1857 + - uid: 519 components: - type: Transform pos: -10.5,-13.5 parent: 1 - - uid: 1858 + - uid: 520 components: - type: Transform pos: -10.5,-14.5 parent: 1 - - uid: 1859 + - uid: 521 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 1861 + - uid: 522 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 1862 + - uid: 523 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 1864 + - uid: 524 components: - type: Transform pos: -9.5,-8.5 parent: 1 - - uid: 1865 + - uid: 525 components: - type: Transform pos: -9.5,-7.5 parent: 1 - - uid: 1866 + - uid: 526 components: - type: Transform pos: -8.5,-7.5 parent: 1 - - uid: 1867 + - uid: 527 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 1868 + - uid: 528 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 1869 + - uid: 529 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 1870 + - uid: 530 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 1871 + - uid: 531 components: - type: Transform pos: -1.5,-13.5 parent: 1 - - uid: 1872 + - uid: 532 components: - type: Transform pos: -2.5,-12.5 parent: 1 - - uid: 1873 + - uid: 533 components: - type: Transform pos: -2.5,-11.5 parent: 1 - - uid: 1874 + - uid: 534 components: - type: Transform pos: -2.5,-10.5 parent: 1 - - uid: 1875 + - uid: 535 components: - type: Transform pos: -2.5,-9.5 parent: 1 - - uid: 1876 + - uid: 536 components: - type: Transform pos: -2.5,-8.5 parent: 1 - - uid: 1877 + - uid: 537 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 1878 + - uid: 538 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 1879 + - uid: 539 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 1880 + - uid: 540 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 1881 + - uid: 541 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 1882 + - uid: 542 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 1886 + - uid: 543 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 1887 + - uid: 544 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 1888 + - uid: 545 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 1889 + - uid: 546 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 1890 + - uid: 547 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 1891 + - uid: 548 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 1892 + - uid: 549 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 1893 + - uid: 550 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 1894 + - uid: 551 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 1895 + - uid: 552 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 1896 + - uid: 553 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 1897 + - uid: 554 components: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 1898 + - uid: 555 components: - type: Transform pos: 0.5,-7.5 parent: 1 - - uid: 1899 + - uid: 556 components: - type: Transform pos: 0.5,-8.5 parent: 1 - - uid: 1900 + - uid: 557 components: - type: Transform pos: 0.5,-9.5 parent: 1 - - uid: 1901 + - uid: 558 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 1902 + - uid: 559 components: - type: Transform pos: -0.5,-9.5 parent: 1 - - uid: 1903 + - uid: 560 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 1904 + - uid: 561 components: - type: Transform pos: 1.5,-6.5 parent: 1 - - uid: 1905 + - uid: 562 components: - type: Transform pos: 2.5,-6.5 parent: 1 - - uid: 1906 + - uid: 563 components: - type: Transform pos: 3.5,-6.5 parent: 1 - - uid: 1907 + - uid: 564 components: - type: Transform pos: -0.5,-6.5 parent: 1 - - uid: 1908 + - uid: 565 components: - type: Transform pos: -1.5,-6.5 parent: 1 - - uid: 1909 + - uid: 566 components: - type: Transform pos: -2.5,-6.5 parent: 1 - - uid: 1910 + - uid: 567 components: - type: Transform pos: -1.5,-5.5 parent: 1 - - uid: 1911 + - uid: 568 components: - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 1912 + - uid: 569 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 1913 + - uid: 570 components: - type: Transform pos: -1.5,-2.5 parent: 1 - - uid: 1914 + - uid: 571 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 1915 + - uid: 572 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 1916 + - uid: 573 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 1917 + - uid: 574 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 1918 + - uid: 575 components: - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 1919 + - uid: 576 components: - type: Transform pos: 2.5,-5.5 parent: 1 - - uid: 1920 + - uid: 577 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 1921 + - uid: 578 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 1922 + - uid: 579 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 1923 + - uid: 580 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 1924 + - uid: 581 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 1925 + - uid: 582 components: - type: Transform pos: 4.5,-13.5 parent: 1 - - uid: 1926 + - uid: 583 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 1927 + - uid: 584 components: - type: Transform pos: 6.5,-13.5 parent: 1 - - uid: 1928 + - uid: 585 components: - type: Transform pos: 7.5,-13.5 parent: 1 - - uid: 1929 + - uid: 586 components: - type: Transform pos: 7.5,-12.5 parent: 1 - - uid: 1930 + - uid: 587 components: - type: Transform pos: 7.5,-11.5 parent: 1 - - uid: 1931 + - uid: 588 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 1932 + - uid: 589 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 1933 + - uid: 590 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 1934 + - uid: 591 components: - type: Transform pos: 5.5,-12.5 parent: 1 - - uid: 1935 + - uid: 592 components: - type: Transform pos: 5.5,-11.5 parent: 1 - - uid: 1936 + - uid: 593 components: - type: Transform pos: 5.5,-10.5 parent: 1 - - uid: 1937 + - uid: 594 components: - type: Transform pos: 5.5,-9.5 parent: 1 - - uid: 1938 + - uid: 595 components: - type: Transform pos: 5.5,-8.5 parent: 1 - - uid: 1939 + - uid: 596 components: - type: Transform pos: -11.5,-9.5 parent: 1 - - uid: 1940 + - uid: 597 components: - type: Transform pos: -11.5,-10.5 parent: 1 - - uid: 1941 + - uid: 598 components: - type: Transform pos: -11.5,-11.5 parent: 1 - - uid: 1942 + - uid: 599 components: - type: Transform pos: -11.5,-12.5 parent: 1 - - uid: 1943 + - uid: 600 components: - type: Transform pos: -11.5,-13.5 parent: 1 - - uid: 1944 + - uid: 601 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 1946 + - uid: 602 components: - type: Transform pos: -4.5,-14.5 parent: 1 - - uid: 1947 + - uid: 603 components: - type: Transform pos: -4.5,-15.5 parent: 1 - - uid: 1948 + - uid: 604 components: - type: Transform pos: -4.5,-16.5 parent: 1 - - uid: 1949 + - uid: 605 components: - type: Transform pos: -5.5,-15.5 parent: 1 - - uid: 1950 + - uid: 606 components: - type: Transform pos: -3.5,-15.5 parent: 1 - - uid: 1951 + - uid: 607 components: - type: Transform pos: -2.5,-15.5 parent: 1 - - uid: 1952 + - uid: 608 components: - type: Transform pos: -1.5,-15.5 parent: 1 - - uid: 1953 + - uid: 609 components: - type: Transform pos: -1.5,-16.5 parent: 1 - - uid: 1954 + - uid: 610 components: - type: Transform pos: -4.5,-17.5 parent: 1 - - uid: 1955 + - uid: 611 components: - type: Transform pos: -4.5,-18.5 parent: 1 - - uid: 1956 + - uid: 612 components: - type: Transform pos: -5.5,-18.5 parent: 1 - - uid: 1957 + - uid: 613 components: - type: Transform pos: -6.5,-18.5 parent: 1 - - uid: 1958 + - uid: 614 components: - type: Transform pos: -3.5,-18.5 parent: 1 - - uid: 1959 + - uid: 615 components: - type: Transform pos: -7.5,-18.5 parent: 1 - - uid: 1960 + - uid: 616 components: - type: Transform pos: -7.5,-19.5 parent: 1 - - uid: 1961 + - uid: 617 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 1962 + - uid: 618 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 1963 + - uid: 619 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 1964 + - uid: 620 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 1965 + - uid: 621 components: - type: Transform pos: 0.5,-14.5 parent: 1 - - uid: 1966 + - uid: 622 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 1967 + - uid: 623 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 1968 + - uid: 624 components: - type: Transform pos: 0.5,-17.5 parent: 1 - - uid: 1969 + - uid: 625 components: - type: Transform pos: 0.5,-18.5 parent: 1 - - uid: 1970 + - uid: 626 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - uid: 1971 + - uid: 627 components: - type: Transform pos: 0.5,-20.5 parent: 1 - - uid: 1972 + - uid: 628 components: - type: Transform pos: -0.5,-19.5 parent: 1 - - uid: 1973 + - uid: 629 components: - type: Transform pos: -1.5,-19.5 parent: 1 - - uid: 1974 + - uid: 630 components: - type: Transform pos: 1.5,-19.5 parent: 1 - - uid: 1975 + - uid: 631 components: - type: Transform pos: 2.5,-19.5 parent: 1 - - uid: 1976 + - uid: 632 components: - type: Transform pos: 3.5,-19.5 parent: 1 - - uid: 1977 + - uid: 633 components: - type: Transform pos: 3.5,-18.5 parent: 1 - - uid: 1978 + - uid: 634 components: - type: Transform pos: 4.5,-18.5 parent: 1 - - uid: 1979 + - uid: 635 components: - type: Transform pos: 5.5,-18.5 parent: 1 - - uid: 1980 + - uid: 636 components: - type: Transform pos: 6.5,-18.5 parent: 1 - - uid: 1981 + - uid: 637 components: - type: Transform pos: 7.5,-18.5 parent: 1 - - uid: 1982 + - uid: 638 components: - type: Transform pos: 8.5,-18.5 parent: 1 - - uid: 1983 + - uid: 639 components: - type: Transform pos: 8.5,-19.5 parent: 1 - - uid: 1984 + - uid: 640 components: - type: Transform pos: 8.5,-11.5 parent: 1 - - uid: 1985 + - uid: 641 components: - type: Transform pos: 9.5,-11.5 parent: 1 - - uid: 1986 + - uid: 642 components: - type: Transform pos: 10.5,-11.5 parent: 1 - - uid: 1987 + - uid: 643 components: - type: Transform pos: 9.5,-10.5 parent: 1 - - uid: 1988 + - uid: 644 components: - type: Transform pos: 9.5,-9.5 parent: 1 - - uid: 1989 + - uid: 645 components: - type: Transform pos: 9.5,-13.5 parent: 1 - - uid: 1990 + - uid: 646 components: - type: Transform pos: 9.5,-8.5 parent: 1 - - uid: 1991 + - uid: 647 components: - type: Transform pos: 10.5,-8.5 parent: 1 - - uid: 1993 + - uid: 648 components: - type: Transform pos: 10.5,-7.5 parent: 1 - - uid: 1994 + - uid: 649 components: - type: Transform pos: 9.5,-7.5 parent: 1 - - uid: 1995 + - uid: 650 components: - type: Transform pos: 9.5,-12.5 parent: 1 - - uid: 1996 + - uid: 651 components: - type: Transform pos: 9.5,-13.5 parent: 1 - - uid: 1997 + - uid: 652 components: - type: Transform pos: 10.5,-13.5 parent: 1 - - uid: 1998 + - uid: 653 components: - type: Transform pos: 11.5,-13.5 parent: 1 - - uid: 1999 + - uid: 654 components: - type: Transform pos: 12.5,-13.5 parent: 1 - - uid: 2000 + - uid: 655 components: - type: Transform pos: 12.5,-12.5 parent: 1 - - uid: 2001 + - uid: 656 components: - type: Transform pos: 12.5,-11.5 parent: 1 - - uid: 2002 + - uid: 657 components: - type: Transform pos: 12.5,-10.5 parent: 1 - - uid: 2003 + - uid: 658 components: - type: Transform pos: 12.5,-14.5 parent: 1 - - uid: 2004 + - uid: 659 components: - type: Transform pos: 12.5,-13.5 parent: 1 - - uid: 2006 + - uid: 660 components: - type: Transform pos: 11.5,-14.5 parent: 1 - - uid: 2212 + - uid: 661 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 2213 + - uid: 662 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 2214 + - uid: 663 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 2215 + - uid: 664 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 2216 + - uid: 665 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 2217 + - uid: 666 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 2218 + - uid: 667 components: - type: Transform pos: -5.5,9.5 parent: 1 - - uid: 2221 + - uid: 668 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 2222 + - uid: 669 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 2223 + - uid: 670 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 2224 + - uid: 671 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 2225 + - uid: 672 components: - type: Transform pos: -7.5,4.5 parent: 1 - proto: CableHV entities: - - uid: 276 + - uid: 673 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 378 + - uid: 674 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 477 + - uid: 675 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 485 + - uid: 676 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 487 + - uid: 677 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 488 + - uid: 678 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 489 + - uid: 679 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 495 + - uid: 680 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 550 + - uid: 681 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 579 + - uid: 682 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 600 + - uid: 683 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 607 + - uid: 684 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 608 + - uid: 685 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 611 + - uid: 686 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 612 + - uid: 687 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 613 + - uid: 688 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 614 + - uid: 689 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 617 + - uid: 690 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 618 + - uid: 691 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 832 + - uid: 692 components: - type: Transform pos: 3.5,-12.5 parent: 1 - - uid: 836 + - uid: 693 components: - type: Transform pos: 5.5,-12.5 parent: 1 - - uid: 837 + - uid: 694 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 839 + - uid: 695 components: - type: Transform pos: 4.5,-12.5 parent: 1 - - uid: 845 + - uid: 696 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 925 + - uid: 697 components: - type: Transform pos: 5.5,-15.5 parent: 1 - - uid: 926 + - uid: 698 components: - type: Transform pos: 4.5,-15.5 parent: 1 - - uid: 927 + - uid: 699 components: - type: Transform pos: 5.5,-16.5 parent: 1 - - uid: 928 + - uid: 700 components: - type: Transform pos: 3.5,-15.5 parent: 1 - - uid: 929 + - uid: 701 components: - type: Transform pos: 2.5,-15.5 parent: 1 - - uid: 930 + - uid: 702 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 931 + - uid: 703 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 932 + - uid: 704 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 933 + - uid: 705 components: - type: Transform pos: 6.5,-15.5 parent: 1 - - uid: 934 + - uid: 706 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 935 + - uid: 707 components: - type: Transform pos: 7.5,-16.5 parent: 1 - - uid: 936 + - uid: 708 components: - type: Transform pos: 6.5,-13.5 parent: 1 - - uid: 937 + - uid: 709 components: - type: Transform pos: 7.5,-13.5 parent: 1 - - uid: 938 + - uid: 710 components: - type: Transform pos: 7.5,-12.5 parent: 1 - - uid: 939 + - uid: 711 components: - type: Transform pos: 7.5,-11.5 parent: 1 - - uid: 940 + - uid: 712 components: - type: Transform pos: 8.5,-11.5 parent: 1 - - uid: 941 + - uid: 713 components: - type: Transform pos: 9.5,-11.5 parent: 1 - - uid: 942 + - uid: 714 components: - type: Transform pos: 10.5,-11.5 parent: 1 - - uid: 943 + - uid: 715 components: - type: Transform pos: 10.5,-10.5 parent: 1 - - uid: 944 + - uid: 716 components: - type: Transform pos: 10.5,-12.5 parent: 1 - - uid: 945 + - uid: 717 components: - type: Transform pos: 9.5,-10.5 parent: 1 - - uid: 947 + - uid: 718 components: - type: Transform pos: 9.5,-12.5 parent: 1 - - uid: 961 + - uid: 719 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 962 + - uid: 720 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 990 + - uid: 721 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 993 + - uid: 722 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 994 + - uid: 723 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 1183 + - uid: 724 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 1184 + - uid: 725 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 1287 + - uid: 726 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 1302 + - uid: 727 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 1400 + - uid: 728 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 1495 + - uid: 729 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 1503 + - uid: 730 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 1504 + - uid: 731 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 1505 + - uid: 732 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 1559 + - uid: 733 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 1560 + - uid: 734 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 1561 + - uid: 735 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 1562 + - uid: 736 components: - type: Transform pos: -1.5,-13.5 parent: 1 - - uid: 1563 + - uid: 737 components: - type: Transform pos: -0.5,-13.5 parent: 1 - - uid: 1564 + - uid: 738 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 1565 + - uid: 739 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 1566 + - uid: 740 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 1567 + - uid: 741 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 1568 + - uid: 742 components: - type: Transform pos: 4.5,-13.5 parent: 1 - - uid: 1839 + - uid: 743 components: - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 1840 + - uid: 744 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 1841 + - uid: 745 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 1863 + - uid: 746 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 1945 + - uid: 747 components: - type: Transform pos: 7.5,-7.5 parent: 1 - - uid: 1992 + - uid: 748 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 2005 + - uid: 749 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 2141 + - uid: 750 components: - type: Transform pos: 6.5,-5.5 parent: 1 - - uid: 2172 + - uid: 751 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 2173 + - uid: 752 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 2174 + - uid: 753 components: - type: Transform pos: 6.5,-2.5 parent: 1 - - uid: 2175 + - uid: 754 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 2176 + - uid: 755 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 2177 + - uid: 756 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 2178 + - uid: 757 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 2179 + - uid: 758 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 2180 + - uid: 759 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 2181 + - uid: 760 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 2182 + - uid: 761 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 2183 + - uid: 762 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 2184 + - uid: 763 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 2185 + - uid: 764 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 2186 + - uid: 765 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 2187 + - uid: 766 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 2188 + - uid: 767 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 2189 + - uid: 768 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 2190 + - uid: 769 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 2191 + - uid: 770 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 2192 + - uid: 771 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 2193 + - uid: 772 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 2194 + - uid: 773 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 2195 + - uid: 774 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 2196 + - uid: 775 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 2197 + - uid: 776 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 2198 + - uid: 777 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 2199 + - uid: 778 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 2200 + - uid: 779 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 2201 + - uid: 780 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 2202 + - uid: 781 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 2203 + - uid: 782 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 2204 + - uid: 783 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 2205 + - uid: 784 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 2206 + - uid: 785 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 2207 + - uid: 786 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 2208 + - uid: 787 components: - type: Transform pos: -2.5,7.5 parent: 1 - proto: CableMV entities: - - uid: 1405 + - uid: 788 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 1406 + - uid: 789 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 1407 + - uid: 790 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 1408 + - uid: 791 components: - type: Transform pos: 2.5,-15.5 parent: 1 - - uid: 1409 + - uid: 792 components: - type: Transform pos: 3.5,-15.5 parent: 1 - - uid: 1410 + - uid: 793 components: - type: Transform pos: 4.5,-15.5 parent: 1 - - uid: 1411 + - uid: 794 components: - type: Transform pos: 5.5,-15.5 parent: 1 - - uid: 1412 + - uid: 795 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 1413 + - uid: 796 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 1414 + - uid: 797 components: - type: Transform pos: 4.5,-13.5 parent: 1 - - uid: 1415 + - uid: 798 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 1417 + - uid: 799 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 1418 + - uid: 800 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 1419 + - uid: 801 components: - type: Transform pos: 0.5,-14.5 parent: 1 - - uid: 1420 + - uid: 802 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 1421 + - uid: 803 components: - type: Transform pos: -0.5,-13.5 parent: 1 - - uid: 1422 + - uid: 804 components: - type: Transform pos: -1.5,-13.5 parent: 1 - - uid: 1423 + - uid: 805 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 1424 + - uid: 806 components: - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 1425 + - uid: 807 components: - type: Transform pos: -3.5,-14.5 parent: 1 - - uid: 1426 + - uid: 808 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 1427 + - uid: 809 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 1428 + - uid: 810 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 1429 + - uid: 811 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 1430 + - uid: 812 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 1431 + - uid: 813 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 1432 + - uid: 814 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 1433 + - uid: 815 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 1434 + - uid: 816 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 1435 + - uid: 817 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 1436 + - uid: 818 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 1437 + - uid: 819 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 1438 + - uid: 820 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 1439 + - uid: 821 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 1440 + - uid: 822 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 1441 + - uid: 823 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 1442 + - uid: 824 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 1443 + - uid: 825 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 1444 + - uid: 826 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 1445 + - uid: 827 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 1446 + - uid: 828 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 1447 + - uid: 829 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 1448 + - uid: 830 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 1449 + - uid: 831 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 1450 + - uid: 832 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 1451 + - uid: 833 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 1452 + - uid: 834 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 1453 + - uid: 835 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 1454 + - uid: 836 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 1455 + - uid: 837 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 1456 + - uid: 838 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 1457 + - uid: 839 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 1458 + - uid: 840 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 1459 + - uid: 841 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 1460 + - uid: 842 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 1461 + - uid: 843 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 1462 + - uid: 844 components: - type: Transform pos: 6.5,-2.5 parent: 1 - - uid: 1463 + - uid: 845 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 1464 + - uid: 846 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 1465 + - uid: 847 components: - type: Transform pos: 6.5,-5.5 parent: 1 - - uid: 1466 + - uid: 848 components: - type: Transform pos: 6.5,-6.5 parent: 1 - - uid: 1467 + - uid: 849 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 1468 + - uid: 850 components: - type: Transform pos: 7.5,-7.5 parent: 1 - - uid: 1469 + - uid: 851 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 1470 + - uid: 852 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 1471 + - uid: 853 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 1472 + - uid: 854 components: - type: Transform pos: 7.5,-11.5 parent: 1 - - uid: 1473 + - uid: 855 components: - type: Transform pos: 7.5,-12.5 parent: 1 - - uid: 1474 + - uid: 856 components: - type: Transform pos: 7.5,-13.5 parent: 1 - - uid: 1475 + - uid: 857 components: - type: Transform pos: 6.5,-13.5 parent: 1 - - uid: 1477 + - uid: 858 components: - type: Transform pos: -4.5,-3.5 parent: 1 - - uid: 1478 + - uid: 859 components: - type: Transform pos: -3.5,-3.5 parent: 1 - - uid: 1479 + - uid: 860 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 1480 + - uid: 861 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 1481 + - uid: 862 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 1482 + - uid: 863 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 1483 + - uid: 864 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 1484 + - uid: 865 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 1485 + - uid: 866 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 1486 + - uid: 867 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 1487 + - uid: 868 components: - type: Transform pos: 5.5,-3.5 parent: 1 - - uid: 1488 + - uid: 869 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 1489 + - uid: 870 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 1490 + - uid: 871 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 1491 + - uid: 872 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 1492 + - uid: 873 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 1493 + - uid: 874 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 1497 + - uid: 875 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 1498 + - uid: 876 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 1499 + - uid: 877 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 1500 + - uid: 878 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 1501 + - uid: 879 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 1502 + - uid: 880 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 1506 + - uid: 881 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 1507 + - uid: 882 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 1508 + - uid: 883 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 1509 + - uid: 884 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 1510 + - uid: 885 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 1511 + - uid: 886 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 1512 + - uid: 887 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 1513 + - uid: 888 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 1514 + - uid: 889 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 1515 + - uid: 890 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 1516 + - uid: 891 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 1517 + - uid: 892 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1518 + - uid: 893 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 1519 + - uid: 894 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 1520 + - uid: 895 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 1521 + - uid: 896 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 1522 + - uid: 897 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 1523 + - uid: 898 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 1524 + - uid: 899 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 1525 + - uid: 900 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 1526 + - uid: 901 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 1527 + - uid: 902 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 1528 + - uid: 903 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 1529 + - uid: 904 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 1530 + - uid: 905 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 1533 + - uid: 906 components: - type: Transform pos: 0.5,13.5 parent: 1 - - uid: 1534 + - uid: 907 components: - type: Transform pos: 0.5,14.5 parent: 1 - - uid: 1535 + - uid: 908 components: - type: Transform pos: 0.5,15.5 parent: 1 - - uid: 1536 + - uid: 909 components: - type: Transform pos: 0.5,16.5 parent: 1 - - uid: 1537 + - uid: 910 components: - type: Transform pos: 0.5,17.5 parent: 1 - - uid: 1538 + - uid: 911 components: - type: Transform pos: 0.5,18.5 parent: 1 - - uid: 1539 + - uid: 912 components: - type: Transform pos: 0.5,19.5 parent: 1 - - uid: 1540 + - uid: 913 components: - type: Transform pos: 0.5,20.5 parent: 1 - - uid: 1541 + - uid: 914 components: - type: Transform pos: -0.5,19.5 parent: 1 - - uid: 1542 + - uid: 915 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 1543 + - uid: 916 components: - type: Transform pos: 2.5,20.5 parent: 1 - - uid: 1544 + - uid: 917 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 1545 + - uid: 918 components: - type: Transform pos: 1.5,22.5 parent: 1 - - uid: 1546 + - uid: 919 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 1547 + - uid: 920 components: - type: Transform pos: 1.5,24.5 parent: 1 - - uid: 1548 + - uid: 921 components: - type: Transform pos: 1.5,25.5 parent: 1 - - uid: 1549 + - uid: 922 components: - type: Transform pos: 1.5,26.5 parent: 1 - - uid: 1550 + - uid: 923 components: - type: Transform pos: 1.5,27.5 parent: 1 - - uid: 1551 + - uid: 924 components: - type: Transform pos: 1.5,28.5 parent: 1 - - uid: 1552 + - uid: 925 components: - type: Transform pos: 1.5,29.5 parent: 1 - - uid: 1553 + - uid: 926 components: - type: Transform pos: 1.5,30.5 parent: 1 - - uid: 1554 + - uid: 927 components: - type: Transform pos: 1.5,31.5 parent: 1 - - uid: 1555 + - uid: 928 components: - type: Transform pos: 1.5,32.5 parent: 1 - - uid: 1556 + - uid: 929 components: - type: Transform pos: 2.5,32.5 parent: 1 - - uid: 1557 + - uid: 930 components: - type: Transform pos: 3.5,32.5 parent: 1 - - uid: 1558 + - uid: 931 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 1883 + - uid: 932 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 1884 + - uid: 933 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 1885 + - uid: 934 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 2211 + - uid: 935 components: - type: Transform pos: -3.5,7.5 parent: 1 - proto: CartridgeRailHighExplosive entities: - - uid: 569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.9289885,30.44183 - parent: 1 - - uid: 676 - components: - - type: Transform - pos: 2.1747465,30.236162 - parent: 1 - - uid: 701 - components: - - type: Transform - pos: 2.2158842,30.428118 - parent: 1 - - uid: 725 - components: - - type: Transform - pos: 2.1747465,30.866877 - parent: 1 - - uid: 726 - components: - - type: Transform - pos: 2.2021704,30.688631 - parent: 1 - - uid: 746 + - uid: 29 components: - type: Transform - parent: 148 + parent: 28 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - - uid: 747 + - uid: 30 components: - type: Transform - parent: 148 + parent: 28 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - - uid: 749 + - uid: 31 components: - type: Transform - parent: 148 + parent: 28 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - - uid: 752 + - uid: 32 components: - type: Transform - parent: 148 + parent: 28 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - - uid: 758 + - uid: 33 components: - type: Transform - parent: 148 + parent: 28 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False + - uid: 936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.9289885,30.44183 + parent: 1 + - uid: 937 + components: + - type: Transform + pos: 2.1747465,30.236162 + parent: 1 + - uid: 938 + components: + - type: Transform + pos: 2.2158842,30.428118 + parent: 1 + - uid: 939 + components: + - type: Transform + pos: 2.1747465,30.866877 + parent: 1 + - uid: 940 + components: + - type: Transform + pos: 2.2021704,30.688631 + parent: 1 - proto: Catwalk entities: - - uid: 21 + - uid: 941 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 22 + - uid: 942 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 24 + - uid: 943 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-2.5 parent: 1 - - uid: 25 + - uid: 944 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-1.5 parent: 1 - - uid: 26 + - uid: 945 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 35 + - uid: 946 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 1 - - uid: 36 + - uid: 947 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 1 - - uid: 37 + - uid: 948 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 1 - - uid: 39 + - uid: 949 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-1.5 parent: 1 - - uid: 40 + - uid: 950 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 145 + - uid: 951 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-2.5 parent: 1 - - uid: 146 + - uid: 952 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,0.5 parent: 1 - - uid: 175 + - uid: 953 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-1.5 parent: 1 - - uid: 185 + - uid: 954 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,17.5 parent: 1 - - uid: 187 + - uid: 955 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,19.5 parent: 1 - - uid: 240 + - uid: 956 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,17.5 parent: 1 - - uid: 242 + - uid: 957 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,19.5 parent: 1 - - uid: 290 + - uid: 958 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,1.5 parent: 1 - - uid: 391 + - uid: 959 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 1 - - uid: 431 + - uid: 960 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 1 - - uid: 586 + - uid: 961 components: - type: Transform pos: -0.5,34.5 parent: 1 - - uid: 704 + - uid: 962 components: - type: Transform pos: -5.5,20.5 parent: 1 - - uid: 705 + - uid: 963 components: - type: Transform pos: -5.5,19.5 parent: 1 - - uid: 706 + - uid: 964 components: - type: Transform pos: -5.5,18.5 parent: 1 - - uid: 707 + - uid: 965 components: - type: Transform pos: -5.5,17.5 parent: 1 - - uid: 708 + - uid: 966 components: - type: Transform pos: -5.5,16.5 parent: 1 - - uid: 711 + - uid: 967 components: - type: Transform pos: 6.5,16.5 parent: 1 - - uid: 712 + - uid: 968 components: - type: Transform pos: 6.5,17.5 parent: 1 - - uid: 713 + - uid: 969 components: - type: Transform pos: 6.5,18.5 parent: 1 - - uid: 714 + - uid: 970 components: - type: Transform pos: 6.5,19.5 parent: 1 - - uid: 715 + - uid: 971 components: - type: Transform pos: 6.5,20.5 parent: 1 - - uid: 760 + - uid: 972 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 1 - - uid: 776 + - uid: 973 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - - uid: 820 + - uid: 974 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,16.5 parent: 1 - - uid: 821 + - uid: 975 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,14.5 parent: 1 - - uid: 822 + - uid: 976 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,15.5 parent: 1 - - uid: 824 + - uid: 977 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,18.5 parent: 1 - - uid: 825 + - uid: 978 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,17.5 parent: 1 - - uid: 826 + - uid: 979 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,12.5 parent: 1 - - uid: 828 + - uid: 980 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 - - uid: 829 + - uid: 981 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,12.5 parent: 1 - - uid: 841 + - uid: 982 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,12.5 parent: 1 - - uid: 846 + - uid: 983 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,11.5 parent: 1 - - uid: 847 + - uid: 984 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,10.5 parent: 1 - - uid: 848 + - uid: 985 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,9.5 parent: 1 - - uid: 849 + - uid: 986 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,8.5 parent: 1 - - uid: 850 + - uid: 987 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,7.5 parent: 1 - - uid: 851 + - uid: 988 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,6.5 parent: 1 - - uid: 852 + - uid: 989 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 1 - - uid: 853 + - uid: 990 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 1 - - uid: 854 + - uid: 991 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 1 - - uid: 855 + - uid: 992 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,3.5 parent: 1 - - uid: 856 + - uid: 993 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 1 - - uid: 857 + - uid: 994 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,3.5 parent: 1 - - uid: 858 + - uid: 995 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,3.5 parent: 1 - - uid: 859 + - uid: 996 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,3.5 parent: 1 - - uid: 860 + - uid: 997 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 1 - - uid: 861 + - uid: 998 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 - - uid: 862 + - uid: 999 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 1 - - uid: 863 + - uid: 1000 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 864 + - uid: 1001 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,7.5 parent: 1 - - uid: 865 + - uid: 1002 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,8.5 parent: 1 - - uid: 866 + - uid: 1003 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,9.5 parent: 1 - - uid: 867 + - uid: 1004 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 1 - - uid: 868 + - uid: 1005 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 1 - - uid: 869 + - uid: 1006 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,12.5 parent: 1 - - uid: 870 + - uid: 1007 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,12.5 parent: 1 - - uid: 871 + - uid: 1008 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 1 - - uid: 872 + - uid: 1009 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-16.5 parent: 1 - - uid: 873 + - uid: 1010 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-15.5 parent: 1 - - uid: 874 + - uid: 1011 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-13.5 parent: 1 - - uid: 875 + - uid: 1012 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-13.5 parent: 1 - - uid: 876 + - uid: 1013 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-13.5 parent: 1 - - uid: 877 + - uid: 1014 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-13.5 parent: 1 - - uid: 878 + - uid: 1015 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-13.5 parent: 1 - - uid: 879 + - uid: 1016 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-13.5 parent: 1 - - uid: 880 + - uid: 1017 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-12.5 parent: 1 - - uid: 881 + - uid: 1018 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-11.5 parent: 1 - - uid: 882 + - uid: 1019 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-10.5 parent: 1 - - uid: 883 + - uid: 1020 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-9.5 parent: 1 - - uid: 884 + - uid: 1021 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-8.5 parent: 1 - - uid: 983 + - uid: 1022 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,34.5 parent: 1 - - uid: 987 + - uid: 1023 components: - type: Transform pos: 1.5,34.5 parent: 1 - - uid: 988 + - uid: 1024 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,33.5 parent: 1 - - uid: 1001 + - uid: 1025 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,34.5 parent: 1 - - uid: 1002 + - uid: 1026 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,33.5 parent: 1 - - uid: 1003 + - uid: 1027 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,32.5 parent: 1 - - uid: 1004 + - uid: 1028 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,31.5 parent: 1 - - uid: 1005 + - uid: 1029 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,30.5 parent: 1 - - uid: 1006 + - uid: 1030 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,33.5 parent: 1 - - uid: 1007 + - uid: 1031 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,33.5 parent: 1 - - uid: 1009 + - uid: 1032 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,34.5 parent: 1 - - uid: 1010 + - uid: 1033 components: - type: Transform rot: 3.141592653589793 rad @@ -10531,13 +10797,13 @@ entities: parent: 1 - proto: ChairFolding entities: - - uid: 2122 + - uid: 1034 components: - type: Transform rot: 3.141592653589793 rad pos: 5.6385274,33.79165 parent: 1 - - uid: 2123 + - uid: 1035 components: - type: Transform rot: 3.141592653589793 rad @@ -10545,65 +10811,65 @@ entities: parent: 1 - proto: ChairOfficeDark entities: - - uid: 38 + - uid: 1036 components: - type: Transform rot: 3.141592653589793 rad pos: 3.0168126,-2.2222314 parent: 1 - - uid: 68 + - uid: 1037 components: - type: Transform rot: 3.141592653589793 rad pos: -2.008704,-2.1479003 parent: 1 - - uid: 101 + - uid: 1038 components: - type: Transform rot: 3.141592653589793 rad pos: -2.011708,-5.226958 parent: 1 - - uid: 102 + - uid: 1039 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5255032,-8.341822 parent: 1 - - uid: 103 + - uid: 1040 components: - type: Transform rot: 3.141592653589793 rad pos: 3.0077765,-5.271557 parent: 1 - - uid: 127 + - uid: 1041 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.4135564,-9.459794 parent: 1 - - uid: 358 + - uid: 1042 components: - type: Transform rot: 3.141592653589793 rad pos: -4.0172853,-12.316838 parent: 1 - - uid: 490 + - uid: 1043 components: - type: Transform pos: -5.0352683,6.5428276 parent: 1 - - uid: 503 + - uid: 1044 components: - type: Transform pos: 2.9927013,-15.537149 parent: 1 - - uid: 527 + - uid: 1045 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.6448607,-8.383146 parent: 1 - - uid: 1048 + - uid: 1046 components: - type: Transform rot: 1.5707963267948966 rad @@ -10611,7 +10877,7 @@ entities: parent: 1 - proto: ChairPilotSeat entities: - - uid: 28 + - uid: 1047 components: - type: Transform rot: 3.141592653589793 rad @@ -10619,42 +10885,42 @@ entities: parent: 1 - proto: ChemDispenser entities: - - uid: 792 + - uid: 1048 components: - type: Transform pos: -7.5,11.5 parent: 1 - proto: ChemistryHotplate entities: - - uid: 762 + - uid: 1049 components: - type: Transform pos: -4.5,10.5 parent: 1 - proto: ChemMaster entities: - - uid: 1103 + - uid: 1050 components: - type: Transform pos: -6.5,11.5 parent: 1 - proto: ClosetEmergencyFilledRandom entities: - - uid: 1021 + - uid: 1051 components: - type: Transform pos: -6.5,-6.5 parent: 1 - proto: ClosetFireFilled entities: - - uid: 1037 + - uid: 1052 components: - type: Transform pos: -6.5,-5.5 parent: 1 - proto: ClosetWallOrange entities: - - uid: 341 + - uid: 1053 components: - type: Transform rot: -1.5707963267948966 rad @@ -10666,14 +10932,14 @@ entities: showEnts: False occludes: True ents: - - 342 - - 343 - - 344 - - 345 - - 346 - - 347 - - 348 - - uid: 349 + - 1057 + - 1054 + - 1055 + - 1058 + - 1056 + - 1060 + - 1059 + - uid: 1061 components: - type: Transform rot: 1.5707963267948966 rad @@ -10685,79 +10951,79 @@ entities: showEnts: False occludes: True ents: - - 350 - - 351 - - 352 - - 353 - - 354 - - 355 + - 1066 + - 1064 + - 1063 + - 1065 + - 1067 + - 1062 - proto: ClothingBackpackDuffelSurgeryAdvancedFilled entities: - - uid: 548 + - uid: 1068 components: - type: Transform pos: -4.911055,11.182386 parent: 1 - - uid: 549 + - uid: 1069 components: - type: Transform pos: -4.73918,11.088572 parent: 1 - - uid: 562 + - uid: 1070 components: - type: Transform pos: -4.411055,10.963485 parent: 1 - proto: ClothingBeltHolsterFilled entities: - - uid: 119 + - uid: 1074 components: - type: Transform - parent: 117 + parent: 1071 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHandsGlovesColorYellow entities: - - uid: 1040 + - uid: 1079 components: - type: Transform pos: -3.4274457,17.92572 parent: 1 - - uid: 1049 + - uid: 1080 components: - type: Transform pos: -3.5072637,18.067436 parent: 1 - proto: ClothingHandsGlovesCombat entities: - - uid: 124 + - uid: 1075 components: - type: Transform - parent: 117 + parent: 1071 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatNCWLBeretAdmiral entities: - - uid: 120 + - uid: 1078 components: - type: Transform - parent: 117 + parent: 1071 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatNCWLKommissarHat entities: - - uid: 531 + - uid: 1082 components: - type: Transform - parent: 530 + parent: 1081 - type: Physics canCollide: False - proto: ClothingHeadHatWelding entities: - - uid: 1033 + - uid: 1083 components: - type: Transform rot: 1.5707963267948966 rad @@ -10765,347 +11031,347 @@ entities: parent: 1 - proto: ClothingHeadHelmetNCWLEVA entities: - - uid: 588 + - uid: 83 components: - type: Transform - parent: 442 + parent: 81 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 625 + - uid: 89 components: - type: Transform - parent: 621 + parent: 87 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 681 + - uid: 95 components: - type: Transform - parent: 666 + parent: 93 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 741 + - uid: 101 components: - type: Transform - parent: 700 + parent: 99 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 764 + - uid: 107 components: - type: Transform - parent: 761 + parent: 105 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 799 + - uid: 113 components: - type: Transform - parent: 774 + parent: 111 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 810 + - uid: 119 components: - type: Transform - parent: 804 + parent: 117 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 817 + - uid: 125 components: - type: Transform - parent: 811 + parent: 123 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskBreath entities: - - uid: 446 + - uid: 84 components: - type: Transform - parent: 442 + parent: 81 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 662 + - uid: 90 components: - type: Transform - parent: 621 + parent: 87 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 685 + - uid: 96 components: - type: Transform - parent: 666 + parent: 93 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 745 + - uid: 102 components: - type: Transform - parent: 700 + parent: 99 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 770 + - uid: 108 components: - type: Transform - parent: 761 + parent: 105 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 801 + - uid: 114 components: - type: Transform - parent: 774 + parent: 111 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 808 + - uid: 120 components: - type: Transform - parent: 804 + parent: 117 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 812 + - uid: 126 components: - type: Transform - parent: 811 + parent: 123 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckAdminCapelet entities: - - uid: 118 + - uid: 1072 components: - type: Transform - parent: 117 + parent: 1071 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterNCWLEVA entities: - - uid: 587 + - uid: 85 components: - type: Transform - parent: 442 + parent: 81 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 623 + - uid: 91 components: - type: Transform - parent: 621 + parent: 87 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 669 + - uid: 97 components: - type: Transform - parent: 666 + parent: 93 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 739 + - uid: 103 components: - type: Transform - parent: 700 + parent: 99 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 771 + - uid: 109 components: - type: Transform - parent: 761 + parent: 105 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 802 + - uid: 115 components: - type: Transform - parent: 774 + parent: 111 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 807 + - uid: 121 components: - type: Transform - parent: 804 + parent: 117 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 815 + - uid: 127 components: - type: Transform - parent: 811 + parent: 123 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesBootsCowboyBlack entities: - - uid: 122 + - uid: 1073 components: - type: MetaData desc: Made from real Imperial leather. name: polished officer's longboots - type: Transform - parent: 117 + parent: 1071 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesBootsMag entities: - - uid: 519 + - uid: 86 components: - type: Transform - parent: 442 + parent: 81 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 622 + - uid: 92 components: - type: Transform - parent: 621 + parent: 87 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 677 + - uid: 98 components: - type: Transform - parent: 666 + parent: 93 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 740 + - uid: 104 components: - type: Transform - parent: 700 + parent: 99 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 769 + - uid: 110 components: - type: Transform - parent: 761 + parent: 105 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 800 + - uid: 116 components: - type: Transform - parent: 774 + parent: 111 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 809 + - uid: 122 components: - type: Transform - parent: 804 + parent: 117 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 814 + - uid: 128 components: - type: Transform - parent: 811 + parent: 123 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesColorOrange entities: - - uid: 343 + - uid: 1054 components: - type: Transform - parent: 341 + parent: 1053 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 355 + - uid: 1062 components: - type: Transform - parent: 349 + parent: 1061 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtPrisoner entities: - - uid: 344 + - uid: 1055 components: - type: Transform - parent: 341 + parent: 1053 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 352 + - uid: 1063 components: - type: Transform - parent: 349 + parent: 1061 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitNCWLCommunications entities: - - uid: 125 + - uid: 1077 components: - type: Transform - parent: 117 + parent: 1071 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPrisoner entities: - - uid: 346 + - uid: 1056 components: - type: Transform - parent: 341 + parent: 1053 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 351 + - uid: 1064 components: - type: Transform - parent: 349 + parent: 1061 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Cobweb1 entities: - - uid: 921 + - uid: 1084 components: - type: Transform pos: 0.5,-12.5 parent: 1 - proto: Cobweb2 entities: - - uid: 920 + - uid: 1085 components: - type: Transform pos: 7.5,-15.5 parent: 1 - proto: ComputerBankATM entities: - - uid: 1113 + - uid: 1086 components: - type: Transform rot: -1.5707963267948966 rad @@ -11123,19 +11389,19 @@ entities: ents: [] - proto: ComputerRadar entities: - - uid: 899 + - uid: 1087 components: - type: Transform pos: 2.5,28.5 parent: 1 - - uid: 1035 + - uid: 1088 components: - type: Transform pos: -1.5,18.5 parent: 1 - proto: ComputerShuttle entities: - - uid: 12 + - uid: 1089 components: - type: Transform pos: 0.5,-0.5 @@ -11157,8 +11423,9 @@ entities: - type: DeviceLinkSource range: 300 linkedPorts: - 1204: - - Group1: SpaceArtilleryFire + 2: + - - Group1 + - SpaceArtilleryFire - type: NamedModules buttonNames: - Fire 320mm @@ -11168,25 +11435,25 @@ entities: - Module E - proto: ComputerTabletopAdvancedRadar entities: - - uid: 147 + - uid: 1090 components: - type: Transform pos: 3.5,-4.5 parent: 1 - proto: ComputerTabletopPowerMonitoring entities: - - uid: 152 + - uid: 1091 components: - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 465 + - uid: 1092 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-16.5 parent: 1 - - uid: 492 + - uid: 1093 components: - type: Transform rot: 3.141592653589793 rad @@ -11194,26 +11461,26 @@ entities: parent: 1 - proto: ComputerTabletopStationRecords entities: - - uid: 149 + - uid: 1094 components: - type: Transform pos: -2.5,-1.5 parent: 1 - proto: ComputerTabletopSurveillanceCameraMonitor entities: - - uid: 151 + - uid: 1095 components: - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 363 + - uid: 1096 components: - type: Transform pos: -4.5,-11.5 parent: 1 - proto: ComputerTabletopTargeting entities: - - uid: 886 + - uid: 1097 components: - type: Transform pos: 2.5,-1.5 @@ -11259,7 +11526,7 @@ entities: - invalid - proto: ComputerWallmountBankATM entities: - - uid: 1114 + - uid: 1098 components: - type: Transform rot: -1.5707963267948966 rad @@ -11277,7 +11544,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 1138 + - uid: 1099 components: - type: Transform rot: -1.5707963267948966 rad @@ -11295,7 +11562,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 1139 + - uid: 1100 components: - type: Transform rot: -1.5707963267948966 rad @@ -11313,7 +11580,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 1140 + - uid: 1101 components: - type: Transform rot: 1.5707963267948966 rad @@ -11333,7 +11600,7 @@ entities: canCollide: False - proto: ConveyorBelt entities: - - uid: 379 + - uid: 1102 components: - type: Transform rot: 1.5707963267948966 rad @@ -11341,8 +11608,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 958 - - uid: 765 + - 1696 + - uid: 1103 components: - type: Transform rot: 1.5707963267948966 rad @@ -11350,8 +11617,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 958 - - uid: 766 + - 1696 + - uid: 1104 components: - type: Transform rot: 1.5707963267948966 rad @@ -11359,8 +11626,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 958 - - uid: 767 + - 1696 + - uid: 1105 components: - type: Transform rot: -1.5707963267948966 rad @@ -11368,8 +11635,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 959 - - uid: 768 + - 1697 + - uid: 1106 components: - type: Transform rot: -1.5707963267948966 rad @@ -11377,8 +11644,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 959 - - uid: 1284 + - 1697 + - uid: 1107 components: - type: Transform rot: -1.5707963267948966 rad @@ -11386,29 +11653,57 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 959 + - 1697 - proto: CrateArtifactContainer entities: - - uid: 1060 + - uid: 1108 components: - type: Transform pos: 3.5,14.5 parent: 1 +- proto: CrateArtilleryAmmo + entities: + - uid: 2110 + components: + - type: Transform + pos: -2.5,26.5 + parent: 1 + - uid: 2112 + components: + - type: Transform + pos: 3.5,26.5 + parent: 1 - proto: CrateCoolant entities: - - uid: 722 + - uid: 1109 components: - type: Transform pos: -1.5,30.5 parent: 1 - type: Lock + lockingSound: !type:SoundPathSpecifier + params: + volume: -5 + path: /Audio/Machines/door_lock_on.ogg + unlockingSound: !type:SoundPathSpecifier + params: + volume: -5 + path: /Audio/Machines/door_lock_off.ogg locked: False - - uid: 982 + - uid: 1110 components: - type: Transform pos: -5.5,34.5 parent: 1 - type: Lock + lockingSound: !type:SoundPathSpecifier + params: + volume: -5 + path: /Audio/Machines/door_lock_on.ogg + unlockingSound: !type:SoundPathSpecifier + params: + volume: -5 + path: /Audio/Machines/door_lock_off.ogg locked: False - type: EntityStorage air: @@ -11430,58 +11725,70 @@ entities: - 0 - proto: CrateEngineeringMetalFoamFast entities: - - uid: 1105 + - uid: 1111 components: - type: Transform pos: 3.5,28.5 parent: 1 - - uid: 1106 + - uid: 1112 components: - type: Transform pos: 4.5,28.5 parent: 1 - proto: CrateMortarAmmo entities: - - uid: 843 + - uid: 1113 components: - type: Transform pos: 3.5,27.5 parent: 1 - - uid: 890 + - uid: 1114 components: - type: Transform pos: -2.5,27.5 parent: 1 - - uid: 894 + - uid: 1115 components: - type: Transform pos: 3.5,21.5 parent: 1 - - uid: 897 + - uid: 1116 components: - type: Transform pos: -2.5,21.5 parent: 1 +- proto: CrateVulcanAmmo + entities: + - uid: 2111 + components: + - type: Transform + pos: -2.5,25.5 + parent: 1 + - uid: 2113 + components: + - type: Transform + pos: 3.5,25.5 + parent: 1 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 896 + - uid: 1117 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 916 + - uid: 1118 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 1028 + - uid: 1119 components: - type: Transform pos: 5.5,11.5 parent: 1 - proto: DefaultStationBeaconBridge entities: - - uid: 830 + - uid: 1120 components: - type: Transform rot: 1.5707963267948966 rad @@ -11489,33 +11796,33 @@ entities: parent: 1 - proto: DiceBag entities: - - uid: 353 + - uid: 1065 components: - type: Transform - parent: 349 + parent: 1061 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DisposalBend entities: - - uid: 1318 + - uid: 1121 components: - type: Transform pos: 1.5,31.5 parent: 1 - - uid: 1362 + - uid: 1122 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-10.5 parent: 1 - - uid: 1363 + - uid: 1123 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-10.5 parent: 1 - - uid: 1364 + - uid: 1124 components: - type: Transform rot: -1.5707963267948966 rad @@ -11523,334 +11830,334 @@ entities: parent: 1 - proto: DisposalJunction entities: - - uid: 1344 + - uid: 1125 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 1358 + - uid: 1126 components: - type: Transform pos: 1.5,-6.5 parent: 1 - proto: DisposalPipe entities: - - uid: 1312 + - uid: 1127 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,31.5 parent: 1 - - uid: 1313 + - uid: 1128 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,31.5 parent: 1 - - uid: 1314 + - uid: 1129 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,31.5 parent: 1 - - uid: 1315 + - uid: 1130 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,31.5 parent: 1 - - uid: 1316 + - uid: 1131 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,31.5 parent: 1 - - uid: 1317 + - uid: 1132 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,31.5 parent: 1 - - uid: 1319 + - uid: 1133 components: - type: Transform pos: 1.5,30.5 parent: 1 - - uid: 1320 + - uid: 1134 components: - type: Transform pos: 1.5,29.5 parent: 1 - - uid: 1321 + - uid: 1135 components: - type: Transform pos: 1.5,28.5 parent: 1 - - uid: 1322 + - uid: 1136 components: - type: Transform pos: 1.5,27.5 parent: 1 - - uid: 1323 + - uid: 1137 components: - type: Transform pos: 1.5,26.5 parent: 1 - - uid: 1324 + - uid: 1138 components: - type: Transform pos: 1.5,25.5 parent: 1 - - uid: 1325 + - uid: 1139 components: - type: Transform pos: 1.5,24.5 parent: 1 - - uid: 1326 + - uid: 1140 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 1327 + - uid: 1141 components: - type: Transform pos: 1.5,22.5 parent: 1 - - uid: 1328 + - uid: 1142 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 1329 + - uid: 1143 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 1330 + - uid: 1144 components: - type: Transform pos: 1.5,19.5 parent: 1 - - uid: 1331 + - uid: 1145 components: - type: Transform pos: 1.5,18.5 parent: 1 - - uid: 1332 + - uid: 1146 components: - type: Transform pos: 1.5,17.5 parent: 1 - - uid: 1333 + - uid: 1147 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 1334 + - uid: 1148 components: - type: Transform pos: 1.5,15.5 parent: 1 - - uid: 1335 + - uid: 1149 components: - type: Transform pos: 1.5,14.5 parent: 1 - - uid: 1336 + - uid: 1150 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 1337 + - uid: 1151 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 1338 + - uid: 1152 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 1339 + - uid: 1153 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 1340 + - uid: 1154 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 1341 + - uid: 1155 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 1342 + - uid: 1156 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 1343 + - uid: 1157 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 1345 + - uid: 1158 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 1346 + - uid: 1159 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 1347 + - uid: 1160 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1348 + - uid: 1161 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 1349 + - uid: 1162 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 1350 + - uid: 1163 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 1351 + - uid: 1164 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 1352 + - uid: 1165 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 1353 + - uid: 1166 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 1354 + - uid: 1167 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 1355 + - uid: 1168 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 1356 + - uid: 1169 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 1 - - uid: 1357 + - uid: 1170 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-6.5 parent: 1 - - uid: 1359 + - uid: 1171 components: - type: Transform pos: 1.5,-7.5 parent: 1 - - uid: 1360 + - uid: 1172 components: - type: Transform pos: 1.5,-8.5 parent: 1 - - uid: 1361 + - uid: 1173 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 1365 + - uid: 1174 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-15.5 parent: 1 - - uid: 1366 + - uid: 1175 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-14.5 parent: 1 - - uid: 1367 + - uid: 1176 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-13.5 parent: 1 - - uid: 1368 + - uid: 1177 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-12.5 parent: 1 - - uid: 1369 + - uid: 1178 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-11.5 parent: 1 - - uid: 1370 + - uid: 1179 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-16.5 parent: 1 - - uid: 1371 + - uid: 1180 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 1 - - uid: 1372 + - uid: 1181 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-16.5 parent: 1 - - uid: 1373 + - uid: 1182 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-16.5 parent: 1 - - uid: 1374 + - uid: 1183 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-16.5 parent: 1 - - uid: 1375 + - uid: 1184 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-16.5 parent: 1 - - uid: 1376 + - uid: 1185 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-16.5 parent: 1 - - uid: 1377 + - uid: 1186 components: - type: Transform rot: 1.5707963267948966 rad @@ -11858,25 +12165,25 @@ entities: parent: 1 - proto: DisposalTrunk entities: - - uid: 1305 + - uid: 1187 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-16.5 parent: 1 - - uid: 1306 + - uid: 1188 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-6.5 parent: 1 - - uid: 1310 + - uid: 1189 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,5.5 parent: 1 - - uid: 1311 + - uid: 1190 components: - type: Transform rot: 1.5707963267948966 rad @@ -11884,26 +12191,26 @@ entities: parent: 1 - proto: DisposalUnit entities: - - uid: 1274 + - uid: 1191 components: - type: Transform pos: -1.5,-6.5 parent: 1 - - uid: 1275 + - uid: 1192 components: - type: Transform pos: -5.5,31.5 parent: 1 - proto: Dresser entities: - - uid: 530 + - uid: 1081 components: - type: Transform pos: -3.5,-9.5 parent: 1 - type: Storage storedItems: - 531: + 1082: position: 0,0 _rotation: East - type: ContainerContainer @@ -11912,63 +12219,63 @@ entities: showEnts: False occludes: True ents: - - 531 + - 1082 - proto: DrinkFlaskOld entities: - - uid: 121 + - uid: 1076 components: - type: Transform - parent: 117 + parent: 1071 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DrinkMREFlask entities: - - uid: 342 + - uid: 1057 components: - type: Transform - parent: 341 + parent: 1053 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 350 + - uid: 1066 components: - type: Transform - parent: 349 + parent: 1061 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DrinkVodkaBottleFull entities: - - uid: 134 + - uid: 1193 components: - type: Transform pos: -0.59381837,-9.968295 parent: 1 - proto: DrinkVodkaGlass entities: - - uid: 135 + - uid: 1194 components: - type: Transform pos: -0.3151583,-9.854951 parent: 1 - proto: EncryptionKeyNCWL entities: - - uid: 923 + - uid: 1196 components: - type: Transform - parent: 922 + parent: 1195 - type: Physics canCollide: False - proto: ExplosivesSignMed entities: - - uid: 1174 + - uid: 1197 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,32.5 parent: 1 - - uid: 1282 + - uid: 1198 components: - type: Transform rot: -1.5707963267948966 rad @@ -11976,28 +12283,28 @@ entities: parent: 1 - proto: FaxMachineShip entities: - - uid: 513 + - uid: 1199 components: - type: Transform pos: 3.5,-1.5 parent: 1 - proto: filingCabinetDrawerRandom entities: - - uid: 104 + - uid: 1200 components: - type: Transform pos: 3.5,-6.5 parent: 1 - proto: filingCabinetTallRandom entities: - - uid: 114 + - uid: 1201 components: - type: Transform pos: -2.5,-6.5 parent: 1 - proto: FireAxeCabinetFilled entities: - - uid: 2147 + - uid: 1202 components: - type: Transform rot: 1.5707963267948966 rad @@ -12005,126 +12312,126 @@ entities: parent: 1 - proto: Firelock entities: - - uid: 10 + - uid: 1203 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 359 + - uid: 1204 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,3.5 parent: 1 - - uid: 375 + - uid: 1205 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,3.5 parent: 1 - - uid: 559 + - uid: 1206 components: - type: Transform pos: 0.5,13.5 parent: 1 - - uid: 629 + - uid: 1207 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,27.5 parent: 1 - - uid: 630 + - uid: 1208 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,26.5 parent: 1 - - uid: 631 + - uid: 1209 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,25.5 parent: 1 - - uid: 656 + - uid: 1210 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,27.5 parent: 1 - - uid: 657 + - uid: 1211 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,25.5 parent: 1 - - uid: 658 + - uid: 1212 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,26.5 parent: 1 - - uid: 695 + - uid: 1213 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,19.5 parent: 1 - - uid: 755 + - uid: 1214 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-7.5 parent: 1 - - uid: 756 + - uid: 1215 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-7.5 parent: 1 - - uid: 793 + - uid: 1216 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-4.5 parent: 1 - - uid: 794 + - uid: 1217 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-4.5 parent: 1 - - uid: 795 + - uid: 1218 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-4.5 parent: 1 - - uid: 796 + - uid: 1219 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-4.5 parent: 1 - - uid: 980 + - uid: 1220 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,31.5 parent: 1 - - uid: 1008 + - uid: 1221 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,31.5 parent: 1 - - uid: 1032 + - uid: 1222 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,19.5 parent: 1 - - uid: 1058 + - uid: 1223 components: - type: Transform rot: 1.5707963267948966 rad @@ -12132,7 +12439,7 @@ entities: parent: 1 - proto: FloorDrain entities: - - uid: 965 + - uid: 1224 components: - type: Transform pos: 0.5,6.5 @@ -12141,23 +12448,23 @@ entities: fixtures: {} - proto: FoodSnackMREBrownie entities: - - uid: 345 + - uid: 1058 components: - type: Transform - parent: 341 + parent: 1053 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 354 + - uid: 1067 components: - type: Transform - parent: 349 + parent: 1061 - type: Physics canCollide: False - type: InsideEntityStorage - proto: GasPassiveVent entities: - - uid: 2007 + - uid: 1225 components: - type: Transform rot: -1.5707963267948966 rad @@ -12165,580 +12472,580 @@ entities: parent: 1 - proto: GasPipeBend entities: - - uid: 2017 + - uid: 1226 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 1 - - uid: 2018 + - uid: 1227 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 1 - - uid: 2026 + - uid: 1228 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 1 - - uid: 2027 + - uid: 1229 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 2037 + - uid: 1230 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-11.5 parent: 1 - - uid: 2044 + - uid: 1231 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 2045 + - uid: 1232 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-5.5 parent: 1 - - uid: 2047 + - uid: 1233 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 1 - - uid: 2048 + - uid: 1234 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-4.5 parent: 1 - - uid: 2049 + - uid: 1235 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-3.5 parent: 1 - - uid: 2059 + - uid: 1236 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 2060 + - uid: 1237 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,2.5 parent: 1 - - uid: 2061 + - uid: 1238 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 2062 + - uid: 1239 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 1 - - uid: 2068 + - uid: 1240 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,20.5 parent: 1 - - uid: 2069 + - uid: 1241 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 2070 + - uid: 1242 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,12.5 parent: 1 - - uid: 2071 + - uid: 1243 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 2097 + - uid: 1244 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-5.5 parent: 1 - - uid: 2106 + - uid: 1245 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-11.5 parent: 1 - - uid: 2107 + - uid: 1246 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-16.5 parent: 1 - - uid: 2108 + - uid: 1247 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 2109 + - uid: 1248 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-15.5 parent: 1 - - uid: 2110 + - uid: 1249 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 2111 + - uid: 1250 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 1 - - uid: 2112 + - uid: 1251 components: - type: Transform pos: 1.5,-11.5 parent: 1 - proto: GasPipeStraight entities: - - uid: 1153 + - uid: 1252 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-13.5 parent: 1 - - uid: 1154 + - uid: 1253 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-12.5 parent: 1 - - uid: 1155 + - uid: 1254 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-11.5 parent: 1 - - uid: 1301 + - uid: 1255 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 - - uid: 2014 + - uid: 1256 components: - type: Transform pos: 2.5,23.5 parent: 1 - - uid: 2015 + - uid: 1257 components: - type: Transform pos: 2.5,22.5 parent: 1 - - uid: 2016 + - uid: 1258 components: - type: Transform pos: 2.5,21.5 parent: 1 - - uid: 2019 + - uid: 1259 components: - type: Transform pos: 1.5,19.5 parent: 1 - - uid: 2020 + - uid: 1260 components: - type: Transform pos: 1.5,18.5 parent: 1 - - uid: 2021 + - uid: 1261 components: - type: Transform pos: 1.5,17.5 parent: 1 - - uid: 2022 + - uid: 1262 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 2023 + - uid: 1263 components: - type: Transform pos: 1.5,15.5 parent: 1 - - uid: 2024 + - uid: 1264 components: - type: Transform pos: 1.5,14.5 parent: 1 - - uid: 2025 + - uid: 1265 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 2028 + - uid: 1266 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,12.5 parent: 1 - - uid: 2029 + - uid: 1267 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 1 - - uid: 2030 + - uid: 1268 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 1 - - uid: 2031 + - uid: 1269 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,9.5 parent: 1 - - uid: 2032 + - uid: 1270 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,8.5 parent: 1 - - uid: 2033 + - uid: 1271 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 2034 + - uid: 1272 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 1 - - uid: 2036 + - uid: 1273 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,7.5 parent: 1 - - uid: 2038 + - uid: 1274 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-11.5 parent: 1 - - uid: 2039 + - uid: 1275 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 2040 + - uid: 1276 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 2041 + - uid: 1277 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 2042 + - uid: 1278 components: - type: Transform pos: 7.5,-7.5 parent: 1 - - uid: 2043 + - uid: 1279 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 2050 + - uid: 1280 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-3.5 parent: 1 - - uid: 2051 + - uid: 1281 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 2052 + - uid: 1282 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-3.5 parent: 1 - - uid: 2053 + - uid: 1283 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-4.5 parent: 1 - - uid: 2054 + - uid: 1284 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 1 - - uid: 2055 + - uid: 1285 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 1 - - uid: 2056 + - uid: 1286 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-0.5 parent: 1 - - uid: 2057 + - uid: 1287 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,0.5 parent: 1 - - uid: 2058 + - uid: 1288 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 1 - - uid: 2063 + - uid: 1289 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,3.5 parent: 1 - - uid: 2064 + - uid: 1290 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - - uid: 2065 + - uid: 1291 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,23.5 parent: 1 - - uid: 2066 + - uid: 1292 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,22.5 parent: 1 - - uid: 2067 + - uid: 1293 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,21.5 parent: 1 - - uid: 2072 + - uid: 1294 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,12.5 parent: 1 - - uid: 2073 + - uid: 1295 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 2074 + - uid: 1296 components: - type: Transform pos: -0.5,14.5 parent: 1 - - uid: 2075 + - uid: 1297 components: - type: Transform pos: -0.5,15.5 parent: 1 - - uid: 2076 + - uid: 1298 components: - type: Transform pos: -0.5,16.5 parent: 1 - - uid: 2077 + - uid: 1299 components: - type: Transform pos: -0.5,17.5 parent: 1 - - uid: 2078 + - uid: 1300 components: - type: Transform pos: -0.5,18.5 parent: 1 - - uid: 2079 + - uid: 1301 components: - type: Transform pos: -0.5,19.5 parent: 1 - - uid: 2080 + - uid: 1302 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 2081 + - uid: 1303 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 2082 + - uid: 1304 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 2083 + - uid: 1305 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 2085 + - uid: 1306 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 2086 + - uid: 1307 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 2087 + - uid: 1308 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 2088 + - uid: 1309 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 2089 + - uid: 1310 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 2090 + - uid: 1311 components: - type: Transform pos: -2.5,1.5 parent: 1 - - uid: 2091 + - uid: 1312 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 2092 + - uid: 1313 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 2093 + - uid: 1314 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 2094 + - uid: 1315 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 2095 + - uid: 1316 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 2096 + - uid: 1317 components: - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 2099 + - uid: 1318 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 1 - - uid: 2100 + - uid: 1319 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-5.5 parent: 1 - - uid: 2101 + - uid: 1320 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-6.5 parent: 1 - - uid: 2102 + - uid: 1321 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-7.5 parent: 1 - - uid: 2103 + - uid: 1322 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-8.5 parent: 1 - - uid: 2104 + - uid: 1323 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-9.5 parent: 1 - - uid: 2105 + - uid: 1324 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 1 - - uid: 2113 + - uid: 1325 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-13.5 parent: 1 - - uid: 2114 + - uid: 1326 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-13.5 parent: 1 - - uid: 2115 + - uid: 1327 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 2116 + - uid: 1328 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-15.5 parent: 1 - - uid: 2117 + - uid: 1329 components: - type: Transform rot: -1.5707963267948966 rad @@ -12746,25 +13053,25 @@ entities: parent: 1 - proto: GasPipeTJunction entities: - - uid: 2035 + - uid: 1330 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,7.5 parent: 1 - - uid: 2046 + - uid: 1331 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-3.5 parent: 1 - - uid: 2084 + - uid: 1332 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,7.5 parent: 1 - - uid: 2098 + - uid: 1333 components: - type: Transform rot: -1.5707963267948966 rad @@ -12772,7 +13079,7 @@ entities: parent: 1 - proto: GasPort entities: - - uid: 510 + - uid: 1334 components: - type: Transform rot: -1.5707963267948966 rad @@ -12780,7 +13087,7 @@ entities: parent: 1 - proto: GasPressurePump entities: - - uid: 835 + - uid: 1335 components: - type: Transform rot: -1.5707963267948966 rad @@ -12790,18 +13097,18 @@ entities: targetPressure: 90.325 - proto: GasVentPump entities: - - uid: 2009 + - uid: 1336 components: - type: Transform pos: 1.5,-3.5 parent: 1 - type: DeviceNetwork configurators: - - 2148 + - 1403 deviceLists: - - 2146 - - 2145 - - uid: 2010 + - 35 + - 34 + - uid: 1337 components: - type: Transform rot: 1.5707963267948966 rad @@ -12809,35 +13116,35 @@ entities: parent: 1 - type: DeviceNetwork configurators: - - 2148 + - 1403 deviceLists: - - 2146 - - 2145 - - uid: 2013 + - 35 + - 34 + - uid: 1338 components: - type: Transform pos: 2.5,24.5 parent: 1 - type: DeviceNetwork configurators: - - 2148 + - 1403 deviceLists: - - 2146 - - 2145 + - 35 + - 34 - proto: GasVentScrubber entities: - - uid: 2008 + - uid: 1339 components: - type: Transform pos: -0.5,-3.5 parent: 1 - type: DeviceNetwork configurators: - - 2148 + - 1403 deviceLists: - - 2146 - - 2145 - - uid: 2011 + - 35 + - 34 + - uid: 1340 components: - type: Transform rot: -1.5707963267948966 rad @@ -12845,143 +13152,143 @@ entities: parent: 1 - type: DeviceNetwork configurators: - - 2148 + - 1403 deviceLists: - - 2146 - - 2145 - - uid: 2012 + - 35 + - 34 + - uid: 1341 components: - type: Transform pos: -1.5,24.5 parent: 1 - type: DeviceNetwork configurators: - - 2148 + - 1403 deviceLists: - - 2146 - - 2145 + - 35 + - 34 - proto: GravityGeneratorMini entities: - - uid: 153 + - uid: 1342 components: - type: Transform pos: 0.5,-12.5 parent: 1 - proto: Grille entities: - - uid: 3 + - uid: 1343 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 1 - - uid: 4 + - uid: 1344 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 - - uid: 5 + - uid: 1345 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 6 + - uid: 1346 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 7 + - uid: 1347 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 54 + - uid: 1348 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 1 - - uid: 83 + - uid: 1349 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 88 + - uid: 1350 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 89 + - uid: 1351 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 90 + - uid: 1352 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 91 + - uid: 1353 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 292 + - uid: 1354 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 1 - - uid: 296 + - uid: 1355 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 1 - - uid: 710 + - uid: 1356 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 1 - - uid: 720 + - uid: 1357 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 1 - - uid: 782 + - uid: 1358 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-2.5 parent: 1 - - uid: 783 + - uid: 1359 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 1 - - uid: 1256 + - uid: 1360 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - - uid: 1257 + - uid: 1361 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,11.5 parent: 1 - - uid: 1258 + - uid: 1362 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 1 - - uid: 1259 + - uid: 1363 components: - type: Transform rot: -1.5707963267948966 rad @@ -12989,46 +13296,46 @@ entities: parent: 1 - proto: GyroscopeNfsd entities: - - uid: 76 + - uid: 1364 components: - type: Transform pos: 9.5,-13.5 parent: 1 - - uid: 505 + - uid: 1365 components: - type: Transform pos: 9.5,-9.5 parent: 1 - - uid: 1149 + - uid: 1366 components: - type: Transform pos: 7.5,-16.5 parent: 1 - - uid: 1151 + - uid: 1367 components: - type: Transform pos: 5.5,36.5 parent: 1 - - uid: 1152 + - uid: 1368 components: - type: Transform pos: -4.5,36.5 parent: 1 - proto: HandHeldMassScannerEE entities: - - uid: 2144 + - uid: 1369 components: - type: Transform pos: 6.6539893,34.626114 parent: 1 - proto: JugBoriaticFuel entities: - - uid: 517 + - uid: 1370 components: - type: Transform pos: 2.77085,-12.420227 parent: 1 - - uid: 518 + - uid: 1371 components: - type: Transform rot: -1.5707963267948966 rad @@ -13036,14 +13343,14 @@ entities: parent: 1 - proto: KitchenReagentGrinder entities: - - uid: 840 + - uid: 1372 components: - type: Transform pos: -4.5,9.5 parent: 1 - proto: LampGold entities: - - uid: 535 + - uid: 1373 components: - type: Transform rot: 1.5707963267948966 rad @@ -13051,20 +13358,20 @@ entities: parent: 1 - proto: LightBulbBroken entities: - - uid: 1122 + - uid: 1374 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.6952374,22.684963 parent: 1 - - uid: 1157 + - uid: 1375 components: - type: Transform pos: 1.9922628,28.825588 parent: 1 - proto: LightStripInner entities: - - uid: 171 + - uid: 1376 components: - type: Transform rot: 1.5707963267948966 rad @@ -13073,7 +13380,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 184 + - uid: 1377 components: - type: Transform rot: 3.141592653589793 rad @@ -13082,7 +13389,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 224 + - uid: 1378 components: - type: Transform rot: -1.5707963267948966 rad @@ -13091,7 +13398,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 234 + - uid: 1379 components: - type: Transform pos: -0.5,10.5 @@ -13099,7 +13406,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 693 + - uid: 1380 components: - type: Transform rot: 1.5707963267948966 rad @@ -13110,7 +13417,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 395 + - uid: 1381 components: - type: Transform rot: -1.5707963267948966 rad @@ -13119,7 +13426,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 560 + - uid: 1382 components: - type: Transform rot: 3.141592653589793 rad @@ -13128,7 +13435,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 565 + - uid: 1383 components: - type: Transform rot: 1.5707963267948966 rad @@ -13137,7 +13444,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 568 + - uid: 1384 components: - type: Transform pos: 0.5,8.5 @@ -13147,7 +13454,7 @@ entities: - type: TurretIFF - proto: LockerBoozeFilled entities: - - uid: 1039 + - uid: 1385 components: - type: Transform pos: 7.5,7.5 @@ -13156,11 +13463,13 @@ entities: locked: False - proto: LockerWoodenGeneric entities: - - uid: 117 + - uid: 1071 components: - type: Transform pos: 1.5,-10.5 parent: 1 + - type: Lock + locked: False - type: EntityStorage air: volume: 200 @@ -13185,20 +13494,20 @@ entities: showEnts: False occludes: True ents: - - 125 - - 124 - - 122 - - 121 - - 120 - - 119 - - 118 + - 1075 + - 1072 + - 1074 + - 1078 + - 1076 + - 1073 + - 1077 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LuxuryPen entities: - - uid: 536 + - uid: 1386 components: - type: Transform rot: -1.5707963267948966 rad @@ -13206,14 +13515,14 @@ entities: parent: 1 - proto: MedalCase entities: - - uid: 532 + - uid: 1387 components: - type: Transform pos: -3.4919944,-9.185922 parent: 1 - proto: MedkitAdvancedFilled entities: - - uid: 1109 + - uid: 1388 components: - type: Transform pos: -4.2157016,11.484386 @@ -13223,7 +13532,7 @@ entities: linearDamping: 0 - proto: MedkitBruteFilled entities: - - uid: 1099 + - uid: 1389 components: - type: Transform pos: -6.129805,8.493019 @@ -13233,7 +13542,7 @@ entities: linearDamping: 0 - proto: MedkitBurnFilled entities: - - uid: 1098 + - uid: 1390 components: - type: Transform pos: -6.11418,8.680649 @@ -13243,7 +13552,7 @@ entities: linearDamping: 0 - proto: MedkitCombatFilled entities: - - uid: 1100 + - uid: 1391 components: - type: Transform pos: -6.567305,8.743193 @@ -13253,7 +13562,7 @@ entities: linearDamping: 0 - proto: MedkitFilled entities: - - uid: 1093 + - uid: 1392 components: - type: Transform pos: -6.11418,8.821372 @@ -13263,7 +13572,7 @@ entities: linearDamping: 0 - proto: MedkitOxygenFilled entities: - - uid: 1101 + - uid: 1393 components: - type: Transform pos: -6.11418,8.2741165 @@ -13273,7 +13582,7 @@ entities: linearDamping: 0 - proto: MedkitToxinFilled entities: - - uid: 1097 + - uid: 1394 components: - type: Transform pos: -6.58293,8.383568 @@ -13283,13 +13592,13 @@ entities: linearDamping: 0 - proto: Multitool entities: - - uid: 1038 + - uid: 1395 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.4180918,17.145731 parent: 1 - - uid: 1067 + - uid: 1396 components: - type: Transform rot: 1.5707963267948966 rad @@ -13297,71 +13606,71 @@ entities: parent: 1 - proto: NCWLConscriptAmmoVendory entities: - - uid: 697 + - uid: 1397 components: - type: Transform pos: -2.5,22.5 parent: 1 - proto: NCWLConscriptGearVendory entities: - - uid: 844 + - uid: 1398 components: - type: Transform pos: 3.5,22.5 parent: 1 - proto: NCWLConscriptShipVendory entities: - - uid: 1055 + - uid: 1399 components: - type: Transform pos: -0.5,28.5 parent: 1 - proto: NCWLPoster1 entities: - - uid: 2168 + - uid: 1400 components: - type: Transform pos: -1.5,13.5 parent: 1 - proto: NCWLPoster2 entities: - - uid: 2167 + - uid: 1401 components: - type: Transform pos: 2.5,13.5 parent: 1 - proto: NCWLPoster3 entities: - - uid: 2166 + - uid: 1402 components: - type: Transform pos: -3.5,5.5 parent: 1 - proto: NetworkConfigurator entities: - - uid: 2148 + - uid: 1403 components: - type: Transform pos: -3.7073967,18.259022 parent: 1 - type: NetworkConfigurator devices: - 'UID: 58949': 2009 - 'UID: 58952': 2008 - 'UID: 58950': 2010 - 'UID: 58953': 2011 - 'UID: 58954': 2012 - 'UID: 58951': 2013 + 'UID: 58949': 1336 + 'UID: 58952': 1339 + 'UID: 58950': 1337 + 'UID: 58953': 1340 + 'UID: 58954': 1341 + 'UID: 58951': 1338 linkModeActive: False - proto: OreBox entities: - - uid: 1025 + - uid: 1404 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,15.5 parent: 1 - - uid: 1030 + - uid: 1405 components: - type: Transform rot: -1.5707963267948966 rad @@ -13369,26 +13678,26 @@ entities: parent: 1 - proto: OreProcessor entities: - - uid: 949 + - uid: 1406 components: - type: Transform pos: 4.5,15.5 parent: 1 - proto: OxygenCanister entities: - - uid: 906 + - uid: 1407 components: - type: Transform pos: -3.5,20.5 parent: 1 - - uid: 907 + - uid: 1408 components: - type: Transform pos: 4.5,20.5 parent: 1 - proto: PaperBin20 entities: - - uid: 1135 + - uid: 1409 components: - type: Transform rot: -1.5707963267948966 rad @@ -13396,13 +13705,13 @@ entities: parent: 1 - proto: PaperOffice entities: - - uid: 533 + - uid: 1410 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.3582358,-8.516942 parent: 1 - - uid: 534 + - uid: 1411 components: - type: Transform rot: 1.5707963267948966 rad @@ -13410,7 +13719,7 @@ entities: parent: 1 - proto: Pen entities: - - uid: 1124 + - uid: 1412 components: - type: Transform rot: -1.5707963267948966 rad @@ -13418,22 +13727,22 @@ entities: parent: 1 - proto: PersonalAI entities: - - uid: 348 + - uid: 1059 components: - type: Transform - parent: 341 + parent: 1053 - type: Physics canCollide: False - type: InsideEntityStorage - proto: PlasticFlapsAirtightOpaque entities: - - uid: 2231 + - uid: 1413 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,26.5 parent: 1 - - uid: 2232 + - uid: 1414 components: - type: Transform rot: -1.5707963267948966 rad @@ -13441,119 +13750,119 @@ entities: parent: 1 - proto: PlastitaniumWindow entities: - - uid: 2 + - uid: 1415 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 8 + - uid: 1416 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 9 + - uid: 1417 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 55 + - uid: 1418 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 1 - - uid: 61 + - uid: 1419 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 - - uid: 62 + - uid: 1420 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 1 - - uid: 81 + - uid: 1421 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 82 + - uid: 1422 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 96 + - uid: 1423 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 97 + - uid: 1424 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 98 + - uid: 1425 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 293 + - uid: 1426 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 1 - - uid: 295 + - uid: 1427 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 1 - - uid: 998 + - uid: 1428 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 1 - - uid: 1297 + - uid: 1429 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 1 - - uid: 1298 + - uid: 1430 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 1 - - uid: 1299 + - uid: 1431 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 1 - - uid: 1300 + - uid: 1432 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-2.5 parent: 1 - - uid: 2236 + - uid: 1433 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - - uid: 2237 + - uid: 1434 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 1 - - uid: 2238 + - uid: 1435 components: - type: Transform rot: -1.5707963267948966 rad @@ -13561,7 +13870,7 @@ entities: parent: 1 - proto: PowerCellRecharger entities: - - uid: 2209 + - uid: 1436 components: - type: Transform rot: 3.141592653589793 rad @@ -13569,84 +13878,84 @@ entities: parent: 1 - proto: PoweredLEDSmallLight entities: - - uid: 1160 + - uid: 1437 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,18.5 parent: 1 - - uid: 1169 + - uid: 1438 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,18.5 parent: 1 - - uid: 1260 + - uid: 1439 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,36.5 parent: 1 - - uid: 1261 + - uid: 1440 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,36.5 parent: 1 - - uid: 1262 + - uid: 1441 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,37.5 parent: 1 - - uid: 1263 + - uid: 1442 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,37.5 parent: 1 - - uid: 1264 + - uid: 1443 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,22.5 parent: 1 - - uid: 1265 + - uid: 1444 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,22.5 parent: 1 - - uid: 1266 + - uid: 1445 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,13.5 parent: 1 - - uid: 1267 + - uid: 1446 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,13.5 parent: 1 - - uid: 1268 + - uid: 1447 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-14.5 parent: 1 - - uid: 1269 + - uid: 1448 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-16.5 parent: 1 - - uid: 1270 + - uid: 1449 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 1273 + - uid: 1450 components: - type: Transform rot: -1.5707963267948966 rad @@ -13654,195 +13963,195 @@ entities: parent: 1 - proto: Poweredlight entities: - - uid: 1118 + - uid: 1451 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,10.5 parent: 1 - - uid: 1119 + - uid: 1452 components: - type: Transform pos: -7.5,27.5 parent: 1 - - uid: 1120 + - uid: 1453 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,32.5 parent: 1 - - uid: 1121 + - uid: 1454 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,32.5 parent: 1 - - uid: 1123 + - uid: 1455 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,20.5 parent: 1 - - uid: 1144 + - uid: 1456 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,6.5 parent: 1 - - uid: 1159 + - uid: 1457 components: - type: Transform pos: 8.5,27.5 parent: 1 - - uid: 1179 + - uid: 1458 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,16.5 parent: 1 - - uid: 1180 + - uid: 1459 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,16.5 parent: 1 - - uid: 1181 + - uid: 1460 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 1182 + - uid: 1461 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,17.5 parent: 1 - - uid: 1189 + - uid: 1462 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 1190 + - uid: 1463 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1191 + - uid: 1464 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,5.5 parent: 1 - - uid: 1192 + - uid: 1465 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,5.5 parent: 1 - - uid: 1194 + - uid: 1466 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 1195 + - uid: 1467 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 1196 + - uid: 1468 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 1197 + - uid: 1469 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,3.5 parent: 1 - - uid: 1200 + - uid: 1470 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-4.5 parent: 1 - - uid: 1201 + - uid: 1471 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-4.5 parent: 1 - - uid: 1202 + - uid: 1472 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-10.5 parent: 1 - - uid: 1203 + - uid: 1473 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-5.5 parent: 1 - - uid: 1205 + - uid: 1474 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-5.5 parent: 1 - - uid: 1206 + - uid: 1475 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 1 - - uid: 1207 + - uid: 1476 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-12.5 parent: 1 - - uid: 1208 + - uid: 1477 components: - type: Transform pos: -3.5,-11.5 parent: 1 - - uid: 1209 + - uid: 1478 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-8.5 parent: 1 - - uid: 1210 + - uid: 1479 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - uid: 1212 + - uid: 1480 components: - type: Transform pos: 2.5,-15.5 parent: 1 - - uid: 1213 + - uid: 1481 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-13.5 parent: 1 - - uid: 1214 + - uid: 1482 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,8.5 parent: 1 - - uid: 1215 + - uid: 1483 components: - type: Transform pos: -0.5,28.5 parent: 1 - - uid: 1216 + - uid: 1484 components: - type: Transform rot: 1.5707963267948966 rad @@ -13850,120 +14159,120 @@ entities: parent: 1 - proto: PoweredlightRed entities: - - uid: 1075 + - uid: 1485 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,36.5 parent: 1 - - uid: 1076 + - uid: 1486 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,36.5 parent: 1 - - uid: 1077 + - uid: 1487 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,38.5 parent: 1 - - uid: 1078 + - uid: 1488 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,38.5 parent: 1 - - uid: 1158 + - uid: 1489 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,36.5 parent: 1 - - uid: 1161 + - uid: 1490 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,34.5 parent: 1 - - uid: 1162 + - uid: 1491 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,13.5 parent: 1 - - uid: 1163 + - uid: 1492 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,36.5 parent: 1 - - uid: 1165 + - uid: 1493 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,13.5 parent: 1 - - uid: 1167 + - uid: 1494 components: - type: Transform pos: 8.5,-19.5 parent: 1 - - uid: 1168 + - uid: 1495 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,34.5 parent: 1 - - uid: 1170 + - uid: 1496 components: - type: Transform pos: -7.5,22.5 parent: 1 - - uid: 1172 + - uid: 1497 components: - type: Transform pos: 8.5,22.5 parent: 1 - - uid: 1176 + - uid: 1498 components: - type: Transform pos: 0.5,-20.5 parent: 1 - - uid: 1177 + - uid: 1499 components: - type: Transform pos: -7.5,-19.5 parent: 1 - - uid: 1303 + - uid: 1500 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 1304 + - uid: 1501 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-3.5 parent: 1 - - uid: 1383 + - uid: 1502 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-3.5 parent: 1 - - uid: 1384 + - uid: 1503 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 2130 + - uid: 1504 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 1 - - uid: 2131 + - uid: 1505 components: - type: Transform rot: -1.5707963267948966 rad @@ -13971,12 +14280,12 @@ entities: parent: 1 - proto: PoweredSmallLightEmpty entities: - - uid: 827 + - uid: 1506 components: - type: Transform pos: 2.5,28.5 parent: 1 - - uid: 1143 + - uid: 1507 components: - type: Transform rot: 1.5707963267948966 rad @@ -13984,176 +14293,176 @@ entities: parent: 1 - proto: Rack entities: - - uid: 472 + - uid: 1508 components: - type: Transform pos: 2.5,-12.5 parent: 1 - - uid: 887 + - uid: 1509 components: - type: Transform pos: -9.5,-12.5 parent: 1 - - uid: 891 + - uid: 1510 components: - type: Transform pos: 2.5,30.5 parent: 1 - - uid: 1050 + - uid: 1511 components: - type: Transform pos: -9.5,-10.5 parent: 1 - proto: RadioHandheld entities: - - uid: 2135 + - uid: 1512 components: - type: Transform pos: 5.370796,34.6056 parent: 1 - - uid: 2136 + - uid: 1513 components: - type: Transform pos: 5.4748306,34.67993 parent: 1 - - uid: 2137 + - uid: 1514 components: - type: Transform pos: 5.534279,34.560997 parent: 1 - - uid: 2138 + - uid: 1515 components: - type: Transform pos: 5.2964873,34.67993 parent: 1 - - uid: 2139 + - uid: 1516 components: - type: Transform pos: 5.564003,34.739395 parent: 1 - - uid: 2140 + - uid: 1517 components: - type: Transform pos: 5.682898,34.665062 parent: 1 - proto: Railing entities: - - uid: 16 + - uid: 1518 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-1.5 parent: 1 - - uid: 31 + - uid: 1519 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-1.5 parent: 1 - - uid: 33 + - uid: 1520 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 1 - - uid: 123 + - uid: 1521 components: - type: Transform pos: -0.5,35.5 parent: 1 - - uid: 129 + - uid: 1522 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 130 + - uid: 1523 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 269 + - uid: 1524 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 1 - - uid: 596 + - uid: 1525 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 1 - - uid: 673 + - uid: 1526 components: - type: Transform pos: 1.5,35.5 parent: 1 - - uid: 759 + - uid: 1527 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - - uid: 779 + - uid: 1528 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 1 - - uid: 960 + - uid: 1529 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 968 + - uid: 1530 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,31.5 parent: 1 - - uid: 969 + - uid: 1531 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,30.5 parent: 1 - - uid: 995 + - uid: 1532 components: - type: Transform pos: -5.5,8.5 parent: 1 - proto: RailingCorner entities: - - uid: 15 + - uid: 1533 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-2.5 parent: 1 - - uid: 27 + - uid: 1534 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 131 + - uid: 1535 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,33.5 parent: 1 - - uid: 619 + - uid: 1536 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,8.5 parent: 1 - - uid: 967 + - uid: 1537 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,32.5 parent: 1 - - uid: 1019 + - uid: 1538 components: - type: Transform rot: 1.5707963267948966 rad @@ -14161,13 +14470,13 @@ entities: parent: 1 - proto: RailingCornerSmall entities: - - uid: 66 + - uid: 1539 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-0.5 parent: 1 - - uid: 67 + - uid: 1540 components: - type: Transform rot: 1.5707963267948966 rad @@ -14175,7 +14484,7 @@ entities: parent: 1 - proto: RCD entities: - - uid: 500 + - uid: 1541 components: - type: Transform rot: 1.5707963267948966 rad @@ -14183,13 +14492,13 @@ entities: parent: 1 - proto: RCDAmmo entities: - - uid: 501 + - uid: 1542 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.646629,-16.607515 parent: 1 - - uid: 502 + - uid: 1543 components: - type: Transform rot: 1.5707963267948966 rad @@ -14197,7 +14506,7 @@ entities: parent: 1 - proto: RemoteSignallerAdvanced entities: - - uid: 1072 + - uid: 1544 components: - type: MetaData name: fire supercannon @@ -14206,28 +14515,28 @@ entities: parent: 1 - proto: RubberStampApproved entities: - - uid: 136 + - uid: 1545 components: - type: Transform pos: -0.015409172,-10.201724 parent: 1 - proto: RubberStampDenied entities: - - uid: 137 + - uid: 1546 components: - type: Transform pos: -0.015409172,-10.380118 parent: 1 - proto: RubberStampNCWLCommand entities: - - uid: 138 + - uid: 1547 components: - type: Transform pos: -0.0005475879,-10.5733795 parent: 1 - proto: SheetGlass entities: - - uid: 1031 + - uid: 1548 components: - type: Transform pos: -5.2448807,5.3164644 @@ -14237,7 +14546,7 @@ entities: linearDamping: 0 - proto: SheetPlasma1 entities: - - uid: 912 + - uid: 1549 components: - type: Transform pos: -5.7609353,11.555087 @@ -14245,7 +14554,7 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 919 + - uid: 1550 components: - type: Transform pos: -5.6512265,11.280864 @@ -14253,7 +14562,7 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 984 + - uid: 1551 components: - type: Transform pos: -5.870644,11.747044 @@ -14263,7 +14572,7 @@ entities: linearDamping: 0 - proto: SheetPlastic entities: - - uid: 1041 + - uid: 1552 components: - type: Transform pos: -5.7111416,5.412442 @@ -14273,7 +14582,7 @@ entities: linearDamping: 0 - proto: SheetSteel entities: - - uid: 1064 + - uid: 1553 components: - type: Transform pos: -5.5191517,5.3850203 @@ -14283,7 +14592,7 @@ entities: linearDamping: 0 - proto: ShotGunCabinetFilled entities: - - uid: 126 + - uid: 1554 components: - type: Transform rot: -1.5707963267948966 rad @@ -14291,7 +14600,7 @@ entities: parent: 1 - proto: ShuttersNormal entities: - - uid: 523 + - uid: 1555 components: - type: Transform rot: 1.5707963267948966 rad @@ -14299,8 +14608,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 529 - - uid: 524 + - 1564 + - uid: 1556 components: - type: Transform rot: 1.5707963267948966 rad @@ -14308,8 +14617,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 529 - - uid: 525 + - 1564 + - uid: 1557 components: - type: Transform rot: 1.5707963267948966 rad @@ -14317,44 +14626,44 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 529 + - 1564 - proto: ShuttersNormalOpen entities: - - uid: 139 + - uid: 1558 components: - type: Transform pos: 0.5,-7.5 parent: 1 - type: DeviceLinkSink links: - - 142 - - uid: 140 + - 1562 + - uid: 1559 components: - type: Transform pos: 1.5,-7.5 parent: 1 - type: DeviceLinkSink links: - - 142 - - uid: 751 + - 1562 + - uid: 1560 components: - type: Transform pos: 3.5,19.5 parent: 1 - type: DeviceLinkSink links: - - 823 - - uid: 754 + - 1565 + - uid: 1561 components: - type: Transform pos: 2.5,19.5 parent: 1 - type: DeviceLinkSink links: - - 823 + - 1565 - proto: SignalButton entities: - - uid: 142 + - uid: 1562 components: - type: Transform rot: -1.5707963267948966 rad @@ -14362,11 +14671,13 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 140: - - Pressed: Toggle - 139: - - Pressed: Toggle - - uid: 144 + 1559: + - - Pressed + - Toggle + 1558: + - - Pressed + - Toggle + - uid: 1563 components: - type: Transform rot: -1.5707963267948966 rad @@ -14374,35 +14685,49 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 60: - - Pressed: Toggle - 48: - - Pressed: Toggle - 63: - - Pressed: Toggle - 64: - - Pressed: Toggle - 65: - - Pressed: Toggle - 790: - - Pressed: Toggle - 789: - - Pressed: Toggle - 788: - - Pressed: Toggle - 787: - - Pressed: Toggle - 786: - - Pressed: Toggle - 1834: - - Pressed: Toggle - 1832: - - Pressed: Toggle - 1613: - - Pressed: Toggle - 1600: - - Pressed: Toggle - - uid: 529 + 195: + - - Pressed + - Toggle + 194: + - - Pressed + - Toggle + 196: + - - Pressed + - Toggle + 197: + - - Pressed + - Toggle + 198: + - - Pressed + - Toggle + 203: + - - Pressed + - Toggle + 202: + - - Pressed + - Toggle + 201: + - - Pressed + - Toggle + 200: + - - Pressed + - Toggle + 199: + - - Pressed + - Toggle + 207: + - - Pressed + - Toggle + 206: + - - Pressed + - Toggle + 205: + - - Pressed + - Toggle + 204: + - - Pressed + - Toggle + - uid: 1564 components: - type: MetaData name: armory shutters @@ -14412,13 +14737,16 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 523: - - Pressed: Toggle - 524: - - Pressed: Toggle - 525: - - Pressed: Toggle - - uid: 823 + 1555: + - - Pressed + - Toggle + 1556: + - - Pressed + - Toggle + 1557: + - - Pressed + - Toggle + - uid: 1565 components: - type: Transform rot: 3.141592653589793 rad @@ -14426,11 +14754,13 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 754: - - Pressed: Toggle - 751: - - Pressed: Toggle - - uid: 964 + 1561: + - - Pressed + - Toggle + 1560: + - - Pressed + - Toggle + - uid: 1566 components: - type: Transform rot: 1.5707963267948966 rad @@ -14438,22 +14768,26 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 2234: - - Pressed: Toggle - - uid: 1014 + 193: + - - Pressed + - Toggle + - uid: 1567 components: - type: Transform pos: 2.5,35.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 512: - - Pressed: Toggle - 1016: - - Pressed: Toggle - 1017: - - Pressed: Toggle - - uid: 1141 + 185: + - - Pressed + - Toggle + 186: + - - Pressed + - Toggle + 187: + - - Pressed + - Toggle + - uid: 1568 components: - type: Transform rot: -1.5707963267948966 rad @@ -14461,9 +14795,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 2233: - - Pressed: Toggle - - uid: 2156 + 192: + - - Pressed + - Toggle + - uid: 1569 components: - type: Transform rot: -1.5707963267948966 rad @@ -14471,9 +14806,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 2155: - - Pressed: Toggle - - uid: 2157 + 191: + - - Pressed + - Toggle + - uid: 1570 components: - type: Transform rot: 1.5707963267948966 rad @@ -14481,9 +14817,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 2154: - - Pressed: Toggle - - uid: 2158 + 190: + - - Pressed + - Toggle + - uid: 1571 components: - type: Transform rot: -1.5707963267948966 rad @@ -14491,9 +14828,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 2153: - - Pressed: Toggle - - uid: 2159 + 189: + - - Pressed + - Toggle + - uid: 1572 components: - type: Transform rot: 1.5707963267948966 rad @@ -14501,38 +14839,39 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 2152: - - Pressed: Toggle + 188: + - - Pressed + - Toggle - proto: SignChem entities: - - uid: 1110 + - uid: 1573 components: - type: Transform pos: -3.5,10.5 parent: 1 - proto: SignCryo entities: - - uid: 918 + - uid: 1574 components: - type: Transform pos: 4.5,7.5 parent: 1 - proto: SignLastIdiot entities: - - uid: 2169 + - uid: 1575 components: - type: Transform pos: -3.5,29.5 parent: 1 - proto: SignSpace entities: - - uid: 1291 + - uid: 1576 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-0.5 parent: 1 - - uid: 1292 + - uid: 1577 components: - type: Transform rot: 1.5707963267948966 rad @@ -14540,13 +14879,13 @@ entities: parent: 1 - proto: SinkWide entities: - - uid: 339 + - uid: 1578 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-15.5 parent: 1 - - uid: 340 + - uid: 1579 components: - type: Transform rot: 1.5707963267948966 rad @@ -14554,58 +14893,58 @@ entities: parent: 1 - proto: SMESBasic entities: - - uid: 504 + - uid: 1580 components: - type: Transform pos: 10.5,-10.5 parent: 1 - - uid: 509 + - uid: 1581 components: - type: Transform pos: 10.5,-12.5 parent: 1 - - uid: 1091 + - uid: 1582 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 1092 + - uid: 1583 components: - type: Transform pos: -7.5,4.5 parent: 1 - proto: SoapDeluxe entities: - - uid: 347 + - uid: 1060 components: - type: Transform - parent: 341 + parent: 1053 - type: Physics canCollide: False - type: InsideEntityStorage - proto: StairStageDark entities: - - uid: 23 + - uid: 1584 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 624 + - uid: 1585 components: - type: Transform pos: 2.5,32.5 parent: 1 - - uid: 626 + - uid: 1586 components: - type: Transform pos: -1.5,32.5 parent: 1 - - uid: 1088 + - uid: 1587 components: - type: Transform pos: -7.5,8.5 parent: 1 - - uid: 1147 + - uid: 1588 components: - type: Transform rot: 3.141592653589793 rad @@ -14613,66 +14952,66 @@ entities: parent: 1 - proto: StationMap entities: - - uid: 578 + - uid: 1589 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 580 + - uid: 1590 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,18.5 parent: 1 - - uid: 581 + - uid: 1591 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,33.5 parent: 1 - - uid: 582 + - uid: 1592 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - - uid: 583 + - uid: 1593 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-2.5 parent: 1 - - uid: 584 + - uid: 1594 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,0.5 parent: 1 - - uid: 585 + - uid: 1595 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,0.5 parent: 1 - - uid: 620 + - uid: 1596 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-9.5 parent: 1 - - uid: 798 + - uid: 1597 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 1 - - uid: 2142 + - uid: 1598 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,23.5 parent: 1 - - uid: 2143 + - uid: 1599 components: - type: Transform rot: -1.5707963267948966 rad @@ -14680,26 +15019,26 @@ entities: parent: 1 - proto: SteelBench entities: - - uid: 1052 + - uid: 1600 components: - type: Transform pos: 6.5,-6.5 parent: 1 - proto: SubstationBasic entities: - - uid: 186 + - uid: 1601 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 491 + - uid: 1602 components: - type: Transform pos: -4.5,7.5 parent: 1 - proto: SuitStorageBase entities: - - uid: 442 + - uid: 81 components: - type: Transform pos: -2.5,36.5 @@ -14728,12 +15067,12 @@ entities: showEnts: False occludes: True ents: - - 588 - - 587 - - 520 - - 519 - - 446 - - uid: 621 + - 83 + - 85 + - 82 + - 86 + - 84 + - uid: 87 components: - type: Transform pos: -2.5,37.5 @@ -14762,12 +15101,12 @@ entities: showEnts: False occludes: True ents: - - 622 - - 623 - - 625 - - 662 - - 664 - - uid: 666 + - 92 + - 91 + - 89 + - 90 + - 88 + - uid: 93 components: - type: Transform pos: 3.5,37.5 @@ -14796,12 +15135,12 @@ entities: showEnts: False occludes: True ents: - - 669 - - 674 - - 677 - - 681 - - 685 - - uid: 700 + - 97 + - 94 + - 98 + - 95 + - 96 + - uid: 99 components: - type: Transform pos: 7.5,28.5 @@ -14830,12 +15169,12 @@ entities: showEnts: False occludes: True ents: - - 702 - - 739 - - 740 - - 741 - - 745 - - uid: 761 + - 100 + - 103 + - 104 + - 101 + - 102 + - uid: 105 components: - type: Transform pos: -6.5,28.5 @@ -14864,12 +15203,12 @@ entities: showEnts: False occludes: True ents: - - 763 - - 764 - - 769 - - 770 - - 771 - - uid: 774 + - 106 + - 107 + - 110 + - 108 + - 109 + - uid: 111 components: - type: Transform pos: 3.5,36.5 @@ -14898,12 +15237,12 @@ entities: showEnts: False occludes: True ents: - - 802 - - 801 - - 800 - - 799 - - 775 - - uid: 804 + - 115 + - 114 + - 116 + - 113 + - 112 + - uid: 117 components: - type: Transform pos: -5.5,28.5 @@ -14932,12 +15271,12 @@ entities: showEnts: False occludes: True ents: - - 810 - - 809 - - 808 - - 807 - - 805 - - uid: 811 + - 119 + - 122 + - 120 + - 121 + - 118 + - uid: 123 components: - type: Transform pos: 6.5,28.5 @@ -14966,152 +15305,152 @@ entities: showEnts: False occludes: True ents: - - 812 - - 813 - - 814 - - 815 - - 817 + - 126 + - 124 + - 128 + - 127 + - 125 - proto: SurveillanceCameraGeneral entities: - - uid: 404 + - uid: 1603 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,1.5 parent: 1 - - uid: 443 + - uid: 1604 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,1.5 parent: 1 - - uid: 1379 + - uid: 1605 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 - - uid: 1380 + - uid: 1606 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,3.5 parent: 1 - - uid: 1381 + - uid: 1607 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 1382 + - uid: 1608 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 1385 + - uid: 1609 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-9.5 parent: 1 - - uid: 1386 + - uid: 1610 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-9.5 parent: 1 - - uid: 1387 + - uid: 1611 components: - type: Transform pos: -5.5,-16.5 parent: 1 - - uid: 1388 + - uid: 1612 components: - type: Transform pos: -2.5,-16.5 parent: 1 - - uid: 1389 + - uid: 1613 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - uid: 1390 + - uid: 1614 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-11.5 parent: 1 - - uid: 1391 + - uid: 1615 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 1392 + - uid: 1616 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-8.5 parent: 1 - - uid: 1393 + - uid: 1617 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 - - uid: 1394 + - uid: 1618 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 1395 + - uid: 1619 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 1396 + - uid: 1620 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 1397 + - uid: 1621 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,18.5 parent: 1 - - uid: 1398 + - uid: 1622 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,18.5 parent: 1 - - uid: 1399 + - uid: 1623 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,28.5 parent: 1 - - uid: 1401 + - uid: 1624 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,34.5 parent: 1 - - uid: 1402 + - uid: 1625 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,34.5 parent: 1 - - uid: 1403 + - uid: 1626 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,37.5 parent: 1 - - uid: 1404 + - uid: 1627 components: - type: Transform rot: 1.5707963267948966 rad @@ -15119,159 +15458,159 @@ entities: parent: 1 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 924 + - uid: 1628 components: - type: Transform pos: 5.5,13.5 parent: 1 - proto: Table entities: - - uid: 1145 + - uid: 1629 components: - type: Transform pos: 6.5,34.5 parent: 1 - - uid: 1146 + - uid: 1630 components: - type: Transform pos: 5.5,34.5 parent: 1 - proto: TableGlass entities: - - uid: 791 + - uid: 1631 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 892 + - uid: 1632 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 895 + - uid: 1633 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 1102 + - uid: 1634 components: - type: Transform pos: -4.5,11.5 parent: 1 - proto: TableReinforced entities: - - uid: 53 + - uid: 1635 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 105 + - uid: 1636 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-4.5 parent: 1 - - uid: 106 + - uid: 1637 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 1 - - uid: 107 + - uid: 1638 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-4.5 parent: 1 - - uid: 108 + - uid: 1639 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-4.5 parent: 1 - - uid: 109 + - uid: 1640 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-1.5 parent: 1 - - uid: 110 + - uid: 1641 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 - - uid: 111 + - uid: 1642 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 1 - - uid: 112 + - uid: 1643 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-4.5 parent: 1 - - uid: 275 + - uid: 1644 components: - type: Transform pos: -3.5,-11.5 parent: 1 - - uid: 356 + - uid: 1645 components: - type: Transform pos: -4.5,-11.5 parent: 1 - - uid: 476 + - uid: 1646 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,5.5 parent: 1 - - uid: 498 + - uid: 1647 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-16.5 parent: 1 - - uid: 499 + - uid: 1648 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-16.5 parent: 1 - - uid: 950 + - uid: 1649 components: - type: Transform pos: 4.5,16.5 parent: 1 - - uid: 996 + - uid: 1650 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,5.5 parent: 1 - - uid: 1042 + - uid: 1651 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,17.5 parent: 1 - - uid: 1044 + - uid: 1652 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,18.5 parent: 1 - - uid: 1057 + - uid: 1653 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 1066 + - uid: 1654 components: - type: Transform rot: 1.5707963267948966 rad @@ -15279,25 +15618,25 @@ entities: parent: 1 - proto: TableWood entities: - - uid: 113 + - uid: 1655 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-9.5 parent: 1 - - uid: 116 + - uid: 1656 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-10.5 parent: 1 - - uid: 128 + - uid: 1657 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 1 - - uid: 526 + - uid: 1658 components: - type: Transform rot: 1.5707963267948966 rad @@ -15305,7 +15644,7 @@ entities: parent: 1 - proto: TelecomServer entities: - - uid: 922 + - uid: 1195 components: - type: Transform pos: -4.5,13.5 @@ -15316,7 +15655,7 @@ entities: showEnts: False occludes: True ents: - - 923 + - 1196 machine_board: !type:Container showEnts: False occludes: True @@ -15327,38 +15666,38 @@ entities: ents: [] - proto: TelecomServerFilledNovaBalreska entities: - - uid: 1222 + - uid: 1659 components: - type: Transform pos: 0.5,-5.5 parent: 1 - proto: ThrusterNCWLFighter entities: - - uid: 449 + - uid: 1660 components: - type: Transform pos: -8.5,-7.5 parent: 1 - - uid: 555 + - uid: 1661 components: - type: Transform pos: -9.5,-7.5 parent: 1 - proto: ThrusterNCWLWarship entities: - - uid: 204 + - uid: 1662 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-10.5 parent: 1 - - uid: 206 + - uid: 1663 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-18.5 parent: 1 - - uid: 208 + - uid: 1664 components: - type: Transform rot: -1.5707963267948966 rad @@ -15366,85 +15705,85 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 210 + - uid: 1665 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-18.5 parent: 1 - - uid: 211 + - uid: 1666 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-12.5 parent: 1 - - uid: 212 + - uid: 1667 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-11.5 parent: 1 - - uid: 244 + - uid: 1668 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-18.5 parent: 1 - - uid: 245 + - uid: 1669 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-18.5 parent: 1 - - uid: 247 + - uid: 1670 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-19.5 parent: 1 - - uid: 250 + - uid: 1671 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-18.5 parent: 1 - - uid: 251 + - uid: 1672 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-18.5 parent: 1 - - uid: 252 + - uid: 1673 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-18.5 parent: 1 - - uid: 253 + - uid: 1674 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-18.5 parent: 1 - - uid: 254 + - uid: 1675 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-11.5 parent: 1 - - uid: 255 + - uid: 1676 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-12.5 parent: 1 - - uid: 261 + - uid: 1677 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-14.5 parent: 1 - - uid: 262 + - uid: 1678 components: - type: Transform rot: 3.141592653589793 rad @@ -15452,25 +15791,25 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 327 + - uid: 1679 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-19.5 parent: 1 - - uid: 328 + - uid: 1680 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 parent: 1 - - uid: 329 + - uid: 1681 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-19.5 parent: 1 - - uid: 410 + - uid: 1682 components: - type: Transform rot: -1.5707963267948966 rad @@ -15478,25 +15817,25 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 416 + - uid: 1683 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,32.5 parent: 1 - - uid: 418 + - uid: 1684 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,31.5 parent: 1 - - uid: 605 + - uid: 1685 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,30.5 parent: 1 - - uid: 615 + - uid: 1686 components: - type: Transform rot: -1.5707963267948966 rad @@ -15506,7 +15845,7 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 1 - - uid: 616 + - uid: 1687 components: - type: Transform rot: -1.5707963267948966 rad @@ -15514,35 +15853,35 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 743 + - uid: 1688 components: - type: Transform pos: 9.5,-7.5 parent: 1 - - uid: 744 + - uid: 1689 components: - type: Transform pos: 10.5,-7.5 parent: 1 - - uid: 1283 + - uid: 1690 components: - type: Transform pos: 6.5,38.5 parent: 1 - - uid: 1286 + - uid: 1691 components: - type: Transform pos: -5.5,38.5 parent: 1 - proto: ToiletDirtyWater entities: - - uid: 337 + - uid: 1692 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 1 - - uid: 338 + - uid: 1693 components: - type: Transform rot: 1.5707963267948966 rad @@ -15550,103 +15889,121 @@ entities: parent: 1 - proto: ToolboxElectricalFilled entities: - - uid: 1024 + - uid: 1694 components: - type: Transform pos: -3.4924016,18.751282 parent: 1 - proto: ToolboxMechanicalFilled entities: - - uid: 1065 + - uid: 1695 components: - type: Transform pos: -3.4924016,18.498556 parent: 1 - proto: TwoWayLever entities: - - uid: 958 + - uid: 1696 components: - type: Transform pos: -5.5,26.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 766: - - Left: Forward - - Right: Reverse - - Middle: Off - 765: - - Left: Forward - - Right: Reverse - - Middle: Off - 379: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 959 + 1104: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 1103: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 1102: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + - uid: 1697 components: - type: Transform pos: 6.5,26.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 768: - - Left: Forward - - Right: Reverse - - Middle: Off - 767: - - Left: Forward - - Right: Reverse - - Middle: Off - 1284: - - Left: Forward - - Right: Reverse - - Middle: Off + 1106: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 1105: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off + 1107: + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off - proto: UnionfallClementineMothershipComputer entities: - - uid: 1086 + - uid: 1698 components: - type: Transform pos: 1.5,28.5 parent: 1 - proto: UnionfallShipNodeNCWL entities: - - uid: 543 + - uid: 1699 components: - type: Transform pos: 0.5,9.5 parent: 1 - proto: VendingMachineChemicals entities: - - uid: 721 + - uid: 1700 components: - type: Transform pos: -4.5,8.5 parent: 1 - proto: VendingMachineColaBlack entities: - - uid: 1068 + - uid: 1701 components: - type: Transform pos: -4.5,-6.5 parent: 1 - proto: VendingMachineMedical entities: - - uid: 561 + - uid: 1702 components: - type: Transform pos: -5.5,8.5 parent: 1 - proto: VendingMachineSalvage entities: - - uid: 1000 + - uid: 1703 components: - type: Transform pos: 4.5,18.5 parent: 1 - proto: VendingMachineSnack entities: - - uid: 1036 + - uid: 1704 components: - type: Transform rot: 3.141592653589793 rad @@ -15654,14 +16011,14 @@ entities: parent: 1 - proto: VendingMachineSnackOrange entities: - - uid: 1034 + - uid: 1705 components: - type: Transform pos: 5.5,-6.5 parent: 1 - proto: VendingMachineSoda entities: - - uid: 893 + - uid: 1706 components: - type: Transform rot: 3.141592653589793 rad @@ -15669,14 +16026,14 @@ entities: parent: 1 - proto: VendingMachineSovietSoda entities: - - uid: 803 + - uid: 1707 components: - type: Transform pos: -5.5,30.5 parent: 1 - proto: VendingMachineSustenance entities: - - uid: 917 + - uid: 1708 components: - type: Transform rot: 3.141592653589793 rad @@ -15684,1849 +16041,1849 @@ entities: parent: 1 - proto: VendingMachineTankDispenserEVA entities: - - uid: 914 + - uid: 1709 components: - type: Transform pos: 6.5,31.5 parent: 1 - - uid: 915 + - uid: 1710 components: - type: Transform pos: 6.5,30.5 parent: 1 - - uid: 956 + - uid: 1711 components: - type: Transform pos: -6.5,24.5 parent: 1 - - uid: 957 + - uid: 1712 components: - type: Transform pos: 7.5,24.5 parent: 1 - proto: VendingMachineYouTool entities: - - uid: 1023 + - uid: 1713 components: - type: Transform pos: -3.5,15.5 parent: 1 - proto: WallPlastitanium entities: - - uid: 14 + - uid: 1714 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-5.5 parent: 1 - - uid: 19 + - uid: 1715 components: - type: Transform pos: 4.5,-4.5 parent: 1 - - uid: 20 + - uid: 1716 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 29 + - uid: 1717 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-8.5 parent: 1 - - uid: 30 + - uid: 1718 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 32 + - uid: 1719 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-9.5 parent: 1 - - uid: 34 + - uid: 1720 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 41 + - uid: 1721 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 42 + - uid: 1722 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 43 + - uid: 1723 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 44 + - uid: 1724 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 45 + - uid: 1725 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 1 - - uid: 46 + - uid: 1726 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 1 - - uid: 47 + - uid: 1727 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-5.5 parent: 1 - - uid: 49 + - uid: 1728 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-6.5 parent: 1 - - uid: 50 + - uid: 1729 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-7.5 parent: 1 - - uid: 51 + - uid: 1730 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-7.5 parent: 1 - - uid: 52 + - uid: 1731 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-7.5 parent: 1 - - uid: 56 + - uid: 1732 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 1 - - uid: 57 + - uid: 1733 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 1 - - uid: 58 + - uid: 1734 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-7.5 parent: 1 - - uid: 59 + - uid: 1735 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-6.5 parent: 1 - - uid: 70 + - uid: 1736 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-10.5 parent: 1 - - uid: 73 + - uid: 1737 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-11.5 parent: 1 - - uid: 77 + - uid: 1738 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-11.5 parent: 1 - - uid: 78 + - uid: 1739 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-10.5 parent: 1 - - uid: 79 + - uid: 1740 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-9.5 parent: 1 - - uid: 80 + - uid: 1741 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 1 - - uid: 84 + - uid: 1742 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 85 + - uid: 1743 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 86 + - uid: 1744 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 87 + - uid: 1745 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 92 + - uid: 1746 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 93 + - uid: 1747 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 94 + - uid: 1748 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 95 + - uid: 1749 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 99 + - uid: 1750 components: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 100 + - uid: 1751 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 132 + - uid: 1752 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,30.5 parent: 1 - - uid: 154 + - uid: 1753 components: - type: Transform pos: 1.5,-18.5 parent: 1 - - uid: 155 + - uid: 1754 components: - type: Transform pos: -4.5,-7.5 parent: 1 - - uid: 156 + - uid: 1755 components: - type: Transform pos: -4.5,-8.5 parent: 1 - - uid: 157 + - uid: 1756 components: - type: Transform pos: -4.5,-9.5 parent: 1 - - uid: 158 + - uid: 1757 components: - type: Transform pos: -4.5,-10.5 parent: 1 - - uid: 159 + - uid: 1758 components: - type: Transform pos: -3.5,-10.5 parent: 1 - - uid: 160 + - uid: 1759 components: - type: Transform pos: -10.5,-12.5 parent: 1 - - uid: 161 + - uid: 1760 components: - type: Transform pos: -1.5,-17.5 parent: 1 - - uid: 162 + - uid: 1761 components: - type: Transform pos: -0.5,-17.5 parent: 1 - - uid: 163 + - uid: 1762 components: - type: Transform pos: -2.5,-18.5 parent: 1 - - uid: 164 + - uid: 1763 components: - type: Transform pos: -3.5,-17.5 parent: 1 - - uid: 165 + - uid: 1764 components: - type: Transform pos: -5.5,-17.5 parent: 1 - - uid: 166 + - uid: 1765 components: - type: Transform pos: -7.5,-17.5 parent: 1 - - uid: 167 + - uid: 1766 components: - type: Transform pos: 11.5,-12.5 parent: 1 - - uid: 168 + - uid: 1767 components: - type: Transform pos: 11.5,-10.5 parent: 1 - - uid: 169 + - uid: 1768 components: - type: Transform pos: 11.5,-9.5 parent: 1 - - uid: 170 + - uid: 1769 components: - type: Transform pos: -10.5,-10.5 parent: 1 - - uid: 172 + - uid: 1770 components: - type: Transform pos: -10.5,-13.5 parent: 1 - - uid: 173 + - uid: 1771 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-6.5 parent: 1 - - uid: 176 + - uid: 1772 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,21.5 parent: 1 - - uid: 177 + - uid: 1773 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 178 + - uid: 1774 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 1 - - uid: 181 + - uid: 1775 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,13.5 parent: 1 - - uid: 183 + - uid: 1776 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-0.5 parent: 1 - - uid: 188 + - uid: 1777 components: - type: Transform pos: -11.5,-13.5 parent: 1 - - uid: 189 + - uid: 1778 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-7.5 parent: 1 - - uid: 190 + - uid: 1779 components: - type: Transform pos: 5.5,-7.5 parent: 1 - - uid: 195 + - uid: 1780 components: - type: Transform pos: 8.5,-15.5 parent: 1 - - uid: 196 + - uid: 1781 components: - type: Transform pos: 8.5,-17.5 parent: 1 - - uid: 197 + - uid: 1782 components: - type: Transform pos: 5.5,-17.5 parent: 1 - - uid: 198 + - uid: 1783 components: - type: Transform pos: -1.5,-18.5 parent: 1 - - uid: 199 + - uid: 1784 components: - type: Transform pos: 1.5,-17.5 parent: 1 - - uid: 200 + - uid: 1785 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-4.5 parent: 1 - - uid: 201 + - uid: 1786 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-6.5 parent: 1 - - uid: 202 + - uid: 1787 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-7.5 parent: 1 - - uid: 203 + - uid: 1788 components: - type: Transform pos: 12.5,-13.5 parent: 1 - - uid: 205 + - uid: 1789 components: - type: Transform pos: -7.5,-15.5 parent: 1 - - uid: 207 + - uid: 1790 components: - type: Transform pos: -7.5,-16.5 parent: 1 - - uid: 209 + - uid: 1791 components: - type: Transform pos: 9.5,-15.5 parent: 1 - - uid: 213 + - uid: 1792 components: - type: Transform pos: 8.5,-18.5 parent: 1 - - uid: 214 + - uid: 1793 components: - type: Transform pos: 6.5,-17.5 parent: 1 - - uid: 215 + - uid: 1794 components: - type: Transform pos: 3.5,-17.5 parent: 1 - - uid: 216 + - uid: 1795 components: - type: Transform pos: 3.5,-18.5 parent: 1 - - uid: 217 + - uid: 1796 components: - type: Transform pos: 11.5,-13.5 parent: 1 - - uid: 219 + - uid: 1797 components: - type: Transform pos: 4.5,-17.5 parent: 1 - - uid: 221 + - uid: 1798 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 222 + - uid: 1799 components: - type: Transform pos: 0.5,-17.5 parent: 1 - - uid: 223 + - uid: 1800 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-4.5 parent: 1 - - uid: 225 + - uid: 1801 components: - type: Transform pos: 7.5,-17.5 parent: 1 - - uid: 226 + - uid: 1802 components: - type: Transform pos: 8.5,-16.5 parent: 1 - - uid: 227 + - uid: 1803 components: - type: Transform pos: -2.5,-17.5 parent: 1 - - uid: 228 + - uid: 1804 components: - type: Transform pos: -4.5,-17.5 parent: 1 - - uid: 229 + - uid: 1805 components: - type: Transform pos: -6.5,-17.5 parent: 1 - - uid: 230 + - uid: 1806 components: - type: Transform pos: -7.5,-18.5 parent: 1 - - uid: 231 + - uid: 1807 components: - type: Transform pos: 11.5,-11.5 parent: 1 - - uid: 232 + - uid: 1808 components: - type: Transform pos: -10.5,-11.5 parent: 1 - - uid: 233 + - uid: 1809 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 235 + - uid: 1810 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 1 - - uid: 236 + - uid: 1811 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-5.5 parent: 1 - - uid: 237 + - uid: 1812 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 238 + - uid: 1813 components: - type: Transform pos: 10.5,-13.5 parent: 1 - - uid: 239 + - uid: 1814 components: - type: Transform pos: 10.5,-14.5 parent: 1 - - uid: 241 + - uid: 1815 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 1 - - uid: 246 + - uid: 1816 components: - type: Transform pos: 2.5,-18.5 parent: 1 - - uid: 248 + - uid: 1817 components: - type: Transform pos: 0.5,-18.5 parent: 1 - - uid: 249 + - uid: 1818 components: - type: Transform pos: -0.5,-18.5 parent: 1 - - uid: 256 + - uid: 1819 components: - type: Transform pos: 8.5,-8.5 parent: 1 - - uid: 259 + - uid: 1820 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 260 + - uid: 1821 components: - type: Transform pos: 12.5,-14.5 parent: 1 - - uid: 263 + - uid: 1822 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-8.5 parent: 1 - - uid: 264 + - uid: 1823 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-9.5 parent: 1 - - uid: 265 + - uid: 1824 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-8.5 parent: 1 - - uid: 266 + - uid: 1825 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-8.5 parent: 1 - - uid: 267 + - uid: 1826 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-8.5 parent: 1 - - uid: 268 + - uid: 1827 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-9.5 parent: 1 - - uid: 270 + - uid: 1828 components: - type: Transform pos: 8.5,-12.5 parent: 1 - - uid: 271 + - uid: 1829 components: - type: Transform pos: -6.5,-7.5 parent: 1 - - uid: 272 + - uid: 1830 components: - type: Transform pos: -6.5,-8.5 parent: 1 - - uid: 273 + - uid: 1831 components: - type: Transform pos: -6.5,-9.5 parent: 1 - - uid: 277 + - uid: 1832 components: - type: Transform pos: -6.5,-13.5 parent: 1 - - uid: 278 + - uid: 1833 components: - type: Transform pos: -6.5,-14.5 parent: 1 - - uid: 279 + - uid: 1834 components: - type: Transform pos: -6.5,-15.5 parent: 1 - - uid: 280 + - uid: 1835 components: - type: Transform pos: -0.5,-12.5 parent: 1 - - uid: 282 + - uid: 1836 components: - type: Transform pos: -0.5,-14.5 parent: 1 - - uid: 283 + - uid: 1837 components: - type: Transform pos: -0.5,-15.5 parent: 1 - - uid: 284 + - uid: 1838 components: - type: Transform pos: -0.5,-16.5 parent: 1 - - uid: 285 + - uid: 1839 components: - type: Transform pos: 1.5,-16.5 parent: 1 - - uid: 287 + - uid: 1840 components: - type: Transform pos: 1.5,-14.5 parent: 1 - - uid: 288 + - uid: 1841 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 289 + - uid: 1842 components: - type: Transform pos: 1.5,-12.5 parent: 1 - - uid: 294 + - uid: 1843 components: - type: Transform pos: -3.5,-14.5 parent: 1 - - uid: 297 + - uid: 1844 components: - type: Transform pos: -3.5,-15.5 parent: 1 - - uid: 298 + - uid: 1845 components: - type: Transform pos: -3.5,-16.5 parent: 1 - - uid: 299 + - uid: 1846 components: - type: Transform pos: -6.5,-16.5 parent: 1 - - uid: 310 + - uid: 1847 components: - type: Transform pos: 8.5,-9.5 parent: 1 - - uid: 311 + - uid: 1848 components: - type: Transform pos: 8.5,-10.5 parent: 1 - - uid: 312 + - uid: 1849 components: - type: Transform pos: 2.5,-14.5 parent: 1 - - uid: 313 + - uid: 1850 components: - type: Transform pos: 8.5,-14.5 parent: 1 - - uid: 314 + - uid: 1851 components: - type: Transform pos: 8.5,-13.5 parent: 1 - - uid: 315 + - uid: 1852 components: - type: Transform pos: 9.5,-14.5 parent: 1 - - uid: 316 + - uid: 1853 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 317 + - uid: 1854 components: - type: Transform pos: 3.5,-14.5 parent: 1 - - uid: 318 + - uid: 1855 components: - type: Transform pos: 6.5,-16.5 parent: 1 - - uid: 319 + - uid: 1856 components: - type: Transform pos: 4.5,-14.5 parent: 1 - - uid: 320 + - uid: 1857 components: - type: Transform pos: 6.5,-14.5 parent: 1 - - uid: 321 + - uid: 1858 components: - type: Transform pos: 7.5,-14.5 parent: 1 - - uid: 322 + - uid: 1859 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - uid: 325 + - uid: 1860 components: - type: Transform pos: 4.5,-16.5 parent: 1 - - uid: 326 + - uid: 1861 components: - type: Transform pos: 2.5,-17.5 parent: 1 - - uid: 357 + - uid: 1862 components: - type: Transform pos: -4.5,37.5 parent: 1 - - uid: 360 + - uid: 1863 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,4.5 parent: 1 - - uid: 361 + - uid: 1864 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,3.5 parent: 1 - - uid: 362 + - uid: 1865 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,5.5 parent: 1 - - uid: 365 + - uid: 1866 components: - type: Transform pos: -8.5,7.5 parent: 1 - - uid: 367 + - uid: 1867 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,3.5 parent: 1 - - uid: 368 + - uid: 1868 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,4.5 parent: 1 - - uid: 369 + - uid: 1869 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 1 - - uid: 370 + - uid: 1870 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 1 - - uid: 371 + - uid: 1871 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,4.5 parent: 1 - - uid: 372 + - uid: 1872 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,4.5 parent: 1 - - uid: 373 + - uid: 1873 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,4.5 parent: 1 - - uid: 376 + - uid: 1874 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 377 + - uid: 1875 components: - type: Transform pos: 9.5,11.5 parent: 1 - - uid: 380 + - uid: 1876 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,12.5 parent: 1 - - uid: 381 + - uid: 1877 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,6.5 parent: 1 - - uid: 382 + - uid: 1878 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,7.5 parent: 1 - - uid: 383 + - uid: 1879 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,8.5 parent: 1 - - uid: 384 + - uid: 1880 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 1 - - uid: 385 + - uid: 1881 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,10.5 parent: 1 - - uid: 386 + - uid: 1882 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 387 + - uid: 1883 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,11.5 parent: 1 - - uid: 389 + - uid: 1884 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 1 - - uid: 390 + - uid: 1885 components: - type: Transform pos: -6.5,12.5 parent: 1 - - uid: 392 + - uid: 1886 components: - type: Transform pos: -6.5,14.5 parent: 1 - - uid: 393 + - uid: 1887 components: - type: Transform pos: -6.5,15.5 parent: 1 - - uid: 396 + - uid: 1888 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,23.5 parent: 1 - - uid: 399 + - uid: 1889 components: - type: Transform pos: -6.5,21.5 parent: 1 - - uid: 400 + - uid: 1890 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,14.5 parent: 1 - - uid: 401 + - uid: 1891 components: - type: Transform pos: -6.5,23.5 parent: 1 - - uid: 403 + - uid: 1892 components: - type: Transform pos: 7.5,12.5 parent: 1 - - uid: 405 + - uid: 1893 components: - type: Transform pos: 7.5,14.5 parent: 1 - - uid: 406 + - uid: 1894 components: - type: Transform pos: 7.5,15.5 parent: 1 - - uid: 409 + - uid: 1895 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,23.5 parent: 1 - - uid: 411 + - uid: 1896 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,24.5 parent: 1 - - uid: 412 + - uid: 1897 components: - type: Transform pos: 7.5,21.5 parent: 1 - - uid: 413 + - uid: 1898 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 414 + - uid: 1899 components: - type: Transform pos: 7.5,23.5 parent: 1 - - uid: 417 + - uid: 1900 components: - type: Transform pos: -7.5,33.5 parent: 1 - - uid: 419 + - uid: 1901 components: - type: Transform pos: 8.5,33.5 parent: 1 - - uid: 421 + - uid: 1902 components: - type: Transform pos: 5.5,37.5 parent: 1 - - uid: 422 + - uid: 1903 components: - type: Transform pos: -7.5,29.5 parent: 1 - - uid: 425 + - uid: 1904 components: - type: Transform pos: -1.5,37.5 parent: 1 - - uid: 426 + - uid: 1905 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,34.5 parent: 1 - - uid: 427 + - uid: 1906 components: - type: Transform pos: -2.5,33.5 parent: 1 - - uid: 428 + - uid: 1907 components: - type: Transform pos: 8.5,29.5 parent: 1 - - uid: 429 + - uid: 1908 components: - type: Transform pos: 6.5,-7.5 parent: 1 - - uid: 432 + - uid: 1909 components: - type: Transform pos: -6.5,32.5 parent: 1 - - uid: 433 + - uid: 1910 components: - type: Transform pos: -6.5,31.5 parent: 1 - - uid: 434 + - uid: 1911 components: - type: Transform pos: 7.5,31.5 parent: 1 - - uid: 436 + - uid: 1912 components: - type: Transform pos: 6.5,36.5 parent: 1 - - uid: 437 + - uid: 1913 components: - type: Transform pos: 7.5,32.5 parent: 1 - - uid: 438 + - uid: 1914 components: - type: Transform pos: -1.5,35.5 parent: 1 - - uid: 439 + - uid: 1915 components: - type: Transform pos: -5.5,36.5 parent: 1 - - uid: 440 + - uid: 1916 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,34.5 parent: 1 - - uid: 441 + - uid: 1917 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,35.5 parent: 1 - - uid: 444 + - uid: 1918 components: - type: Transform pos: -1.5,38.5 parent: 1 - - uid: 445 + - uid: 1919 components: - type: Transform pos: -1.5,36.5 parent: 1 - - uid: 447 + - uid: 1920 components: - type: Transform pos: -5.5,35.5 parent: 1 - - uid: 448 + - uid: 1921 components: - type: Transform pos: 6.5,35.5 parent: 1 - - uid: 450 + - uid: 1922 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,12.5 parent: 1 - - uid: 451 + - uid: 1923 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,12.5 parent: 1 - - uid: 452 + - uid: 1924 components: - type: Transform pos: 7.5,33.5 parent: 1 - - uid: 453 + - uid: 1925 components: - type: Transform pos: -6.5,33.5 parent: 1 - - uid: 460 + - uid: 1926 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,12.5 parent: 1 - - uid: 461 + - uid: 1927 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,14.5 parent: 1 - - uid: 462 + - uid: 1928 components: - type: Transform pos: -6.5,29.5 parent: 1 - - uid: 467 + - uid: 1929 components: - type: Transform pos: -6.5,30.5 parent: 1 - - uid: 473 + - uid: 1930 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,30.5 parent: 1 - - uid: 474 + - uid: 1931 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 1 - - uid: 480 + - uid: 1932 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 1 - - uid: 482 + - uid: 1933 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,5.5 parent: 1 - - uid: 483 + - uid: 1934 components: - type: Transform pos: 9.5,8.5 parent: 1 - - uid: 484 + - uid: 1935 components: - type: Transform pos: 9.5,10.5 parent: 1 - - uid: 493 + - uid: 1936 components: - type: Transform pos: 9.5,6.5 parent: 1 - - uid: 496 + - uid: 1937 components: - type: Transform pos: 9.5,5.5 parent: 1 - - uid: 497 + - uid: 1938 components: - type: Transform pos: 9.5,7.5 parent: 1 - - uid: 537 + - uid: 1939 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,12.5 parent: 1 - - uid: 538 + - uid: 1940 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,12.5 parent: 1 - - uid: 539 + - uid: 1941 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 1 - - uid: 540 + - uid: 1942 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 1 - - uid: 541 + - uid: 1943 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,6.5 parent: 1 - - uid: 542 + - uid: 1944 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,7.5 parent: 1 - - uid: 544 + - uid: 1945 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - - uid: 545 + - uid: 1946 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,10.5 parent: 1 - - uid: 546 + - uid: 1947 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,11.5 parent: 1 - - uid: 547 + - uid: 1948 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 1 - - uid: 551 + - uid: 1949 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 552 + - uid: 1950 components: - type: Transform pos: 4.5,13.5 parent: 1 - - uid: 553 + - uid: 1951 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 554 + - uid: 1952 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 556 + - uid: 1953 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 557 + - uid: 1954 components: - type: Transform pos: -2.5,13.5 parent: 1 - - uid: 558 + - uid: 1955 components: - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 590 + - uid: 1956 components: - type: Transform pos: 2.5,36.5 parent: 1 - - uid: 591 + - uid: 1957 components: - type: Transform pos: 2.5,37.5 parent: 1 - - uid: 592 + - uid: 1958 components: - type: Transform pos: 2.5,38.5 parent: 1 - - uid: 593 + - uid: 1959 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,38.5 parent: 1 - - uid: 594 + - uid: 1960 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,38.5 parent: 1 - - uid: 597 + - uid: 1961 components: - type: Transform pos: 2.5,35.5 parent: 1 - - uid: 598 + - uid: 1962 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 606 + - uid: 1963 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,28.5 parent: 1 - - uid: 609 + - uid: 1964 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,28.5 parent: 1 - - uid: 610 + - uid: 1965 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,24.5 parent: 1 - - uid: 627 + - uid: 1966 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,29.5 parent: 1 - - uid: 628 + - uid: 1967 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,28.5 parent: 1 - - uid: 632 + - uid: 1968 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,24.5 parent: 1 - - uid: 633 + - uid: 1969 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,23.5 parent: 1 - - uid: 634 + - uid: 1970 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,22.5 parent: 1 - - uid: 635 + - uid: 1971 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,21.5 parent: 1 - - uid: 636 + - uid: 1972 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,20.5 parent: 1 - - uid: 637 + - uid: 1973 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,19.5 parent: 1 - - uid: 638 + - uid: 1974 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,18.5 parent: 1 - - uid: 639 + - uid: 1975 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,17.5 parent: 1 - - uid: 640 + - uid: 1976 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,16.5 parent: 1 - - uid: 641 + - uid: 1977 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,15.5 parent: 1 - - uid: 642 + - uid: 1978 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,14.5 parent: 1 - - uid: 643 + - uid: 1979 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,14.5 parent: 1 - - uid: 644 + - uid: 1980 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,15.5 parent: 1 - - uid: 645 + - uid: 1981 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,14.5 parent: 1 - - uid: 646 + - uid: 1982 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,14.5 parent: 1 - - uid: 647 + - uid: 1983 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,16.5 parent: 1 - - uid: 648 + - uid: 1984 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,17.5 parent: 1 - - uid: 649 + - uid: 1985 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,18.5 parent: 1 - - uid: 650 + - uid: 1986 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,19.5 parent: 1 - - uid: 651 + - uid: 1987 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,20.5 parent: 1 - - uid: 652 + - uid: 1988 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,21.5 parent: 1 - - uid: 653 + - uid: 1989 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,22.5 parent: 1 - - uid: 654 + - uid: 1990 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,23.5 parent: 1 - - uid: 655 + - uid: 1991 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,24.5 parent: 1 - - uid: 659 + - uid: 1992 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,28.5 parent: 1 - - uid: 660 + - uid: 1993 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,29.5 parent: 1 - - uid: 663 + - uid: 1994 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,29.5 parent: 1 - - uid: 665 + - uid: 1995 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,35.5 parent: 1 - - uid: 667 + - uid: 1996 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,29.5 parent: 1 - - uid: 668 + - uid: 1997 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,29.5 parent: 1 - - uid: 670 + - uid: 1998 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,35.5 parent: 1 - - uid: 671 + - uid: 1999 components: - type: Transform pos: 1.5,29.5 parent: 1 - - uid: 672 + - uid: 2000 components: - type: Transform pos: -2.5,35.5 parent: 1 - - uid: 675 + - uid: 2001 components: - type: Transform pos: -5.5,29.5 parent: 1 - - uid: 678 + - uid: 2002 components: - type: Transform pos: 6.5,29.5 parent: 1 - - uid: 679 + - uid: 2003 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,14.5 parent: 1 - - uid: 680 + - uid: 2004 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,15.5 parent: 1 - - uid: 682 + - uid: 2005 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,17.5 parent: 1 - - uid: 683 + - uid: 2006 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,18.5 parent: 1 - - uid: 684 + - uid: 2007 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,29.5 parent: 1 - - uid: 686 + - uid: 2008 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,29.5 parent: 1 - - uid: 687 + - uid: 2009 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,14.5 parent: 1 - - uid: 688 + - uid: 2010 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,15.5 parent: 1 - - uid: 689 + - uid: 2011 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,32.5 parent: 1 - - uid: 690 + - uid: 2012 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,17.5 parent: 1 - - uid: 691 + - uid: 2013 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,18.5 parent: 1 - - uid: 692 + - uid: 2014 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,21.5 parent: 1 - - uid: 696 + - uid: 2015 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,19.5 parent: 1 - - uid: 698 + - uid: 2016 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,19.5 parent: 1 - - uid: 699 + - uid: 2017 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,19.5 parent: 1 - - uid: 703 + - uid: 2018 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,19.5 parent: 1 - - uid: 742 + - uid: 2019 components: - type: Transform pos: 3.5,35.5 parent: 1 - - uid: 748 + - uid: 2020 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,19.5 parent: 1 - - uid: 750 + - uid: 2021 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,34.5 parent: 1 - - uid: 777 + - uid: 2022 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 778 + - uid: 2023 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 784 + - uid: 2024 components: - type: Transform pos: -5.5,37.5 parent: 1 - - uid: 785 + - uid: 2025 components: - type: Transform pos: -4.5,38.5 parent: 1 - - uid: 818 + - uid: 2026 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,35.5 parent: 1 - - uid: 885 + - uid: 2027 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-11.5 parent: 1 - - uid: 978 + - uid: 2028 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,30.5 parent: 1 - - uid: 985 + - uid: 2029 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,29.5 parent: 1 - - uid: 986 + - uid: 2030 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,32.5 parent: 1 - - uid: 992 + - uid: 2031 components: - type: Transform pos: -8.5,4.5 parent: 1 - - uid: 1013 + - uid: 2032 components: - type: Transform pos: -2.5,34.5 parent: 1 - - uid: 1027 + - uid: 2033 components: - type: Transform pos: 9.5,9.5 parent: 1 - - uid: 1094 + - uid: 2034 components: - type: Transform pos: -8.5,5.5 parent: 1 - - uid: 1164 + - uid: 2035 components: - type: Transform pos: 6.5,37.5 parent: 1 - - uid: 1166 + - uid: 2036 components: - type: Transform pos: 5.5,38.5 parent: 1 - - uid: 1171 + - uid: 2037 components: - type: Transform pos: -7.5,3.5 parent: 1 - - uid: 1173 + - uid: 2038 components: - type: Transform pos: -7.5,-4.5 parent: 1 - - uid: 1186 + - uid: 2039 components: - type: Transform pos: -8.5,10.5 parent: 1 - - uid: 1187 + - uid: 2040 components: - type: Transform pos: -8.5,9.5 parent: 1 - - uid: 1188 + - uid: 2041 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,29.5 parent: 1 - - uid: 1211 + - uid: 2042 components: - type: Transform pos: -8.5,11.5 parent: 1 - - uid: 1223 + - uid: 2043 components: - type: Transform pos: 8.5,-4.5 parent: 1 - - uid: 1255 + - uid: 2044 components: - type: Transform pos: -8.5,8.5 parent: 1 - - uid: 2118 + - uid: 2045 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-11.5 parent: 1 - - uid: 2119 + - uid: 2046 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-11.5 parent: 1 - - uid: 2120 + - uid: 2047 components: - type: Transform rot: -1.5707963267948966 rad @@ -17534,123 +17891,127 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 18 + - uid: 2048 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 220 + - uid: 2049 components: - type: Transform pos: -11.5,-9.5 parent: 1 - - uid: 1029 + - uid: 2050 components: - type: Transform pos: -8.5,28.5 parent: 1 - - uid: 1142 + - uid: 2051 components: - type: Transform pos: -8.5,12.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestCurved entities: - - uid: 17 + - uid: 2052 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 218 + - uid: 2053 components: - type: Transform pos: 12.5,-9.5 parent: 1 - - uid: 1026 + - uid: 2054 components: - type: Transform pos: 9.5,28.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestHollow entities: - - uid: 478 + - uid: 2055 components: - type: Transform pos: 9.5,12.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastCurved entities: - - uid: 13 + - uid: 2056 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 323 + - uid: 2057 components: - type: Transform pos: -2.5,-19.5 parent: 1 - - uid: 481 + - uid: 2058 components: - type: Transform pos: -8.5,3.5 parent: 1 - - uid: 1059 + - uid: 2059 components: - type: Transform pos: -8.5,24.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestCurved entities: - - uid: 72 + - uid: 2060 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 324 + - uid: 2061 components: - type: Transform pos: 3.5,-19.5 parent: 1 - - uid: 999 + - uid: 2062 components: - type: Transform pos: 9.5,24.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestHollow entities: - - uid: 258 + - uid: 2063 components: - type: Transform pos: 10.5,-15.5 parent: 1 - - uid: 291 + - uid: 2064 components: - type: Transform pos: 9.5,4.5 parent: 1 - proto: WarpPointShip entities: - - uid: 1069 + - uid: 2065 components: - type: Transform pos: 0.5,-3.5 parent: 1 - proto: WaterCooler entities: - - uid: 115 + - uid: 2066 components: - type: Transform pos: 2.5,-6.5 parent: 1 - proto: WeaponTurretMortar entities: - - uid: 731 + - uid: 2067 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,20.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -17665,14 +18026,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 886 - - uid: 738 + linkedConsoleId: 1097 + - uid: 2068 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,20.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -17687,14 +18060,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 886 - - uid: 898 + linkedConsoleId: 1097 + - uid: 2069 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,16.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -17709,14 +18094,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 886 - - uid: 910 + linkedConsoleId: 1097 + - uid: 2070 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-3.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -17731,12 +18128,24 @@ entities: showEnts: False occludes: True ent: null - - uid: 946 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 2071 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,16.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -17751,14 +18160,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 886 - - uid: 953 + linkedConsoleId: 1097 + - uid: 2072 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,2.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -17773,12 +18194,24 @@ entities: showEnts: False occludes: True ent: null - - uid: 954 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 2073 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-3.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -17793,12 +18226,24 @@ entities: showEnts: False occludes: True ent: null - - uid: 955 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 2074 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,2.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -17813,161 +18258,475 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - proto: WeaponTurretPDT entities: - - uid: 179 + - uid: 2075 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,34.5 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 886 - - uid: 182 + linkedConsoleId: 1097 + - uid: 2076 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,34.5 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 886 - - uid: 522 + linkedConsoleId: 1097 + - uid: 2077 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,36.5 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 886 - - uid: 970 + linkedConsoleId: 1097 + - uid: 2078 components: - type: Transform pos: -7.5,-19.5 parent: 1 - - uid: 971 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2079 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-8.5 parent: 1 - - uid: 972 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2080 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-8.5 parent: 1 - - uid: 973 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2081 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 1 - - uid: 974 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2082 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 1 - - uid: 975 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2083 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,13.5 parent: 1 - - uid: 979 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2084 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,22.5 parent: 1 - - uid: 981 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2085 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,22.5 parent: 1 - - uid: 997 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2086 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,13.5 parent: 1 - - uid: 1043 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2087 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,36.5 parent: 1 - - uid: 1046 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2088 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,18.5 parent: 1 - - uid: 1053 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2089 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,18.5 parent: 1 - - uid: 1198 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 2090 components: - type: Transform pos: 0.5,-20.5 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 886 - - uid: 1199 + linkedConsoleId: 1097 + - uid: 2091 components: - type: Transform pos: 8.5,-19.5 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleId: 886 + linkedConsoleId: 1097 - proto: WindoorSecure entities: - - uid: 69 + - uid: 2092 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 74 + - uid: 2093 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,36.5 parent: 1 - - uid: 75 + - uid: 2094 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,36.5 parent: 1 - - uid: 469 + - uid: 2095 components: - type: Transform pos: 6.5,-12.5 parent: 1 - - uid: 976 + - uid: 2096 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,13.5 parent: 1 - - uid: 977 + - uid: 2097 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,13.5 parent: 1 - - uid: 1089 + - uid: 2098 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,4.5 parent: 1 - - uid: 1090 + - uid: 2099 components: - type: Transform rot: 3.141592653589793 rad @@ -17975,60 +18734,60 @@ entities: parent: 1 - proto: WindoorSecureNCWLCommand entities: - - uid: 11 + - uid: 2100 components: - type: Transform pos: 1.5,-7.5 parent: 1 - proto: WindowReinforcedDirectional entities: - - uid: 308 + - uid: 2101 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-8.5 parent: 1 - - uid: 454 + - uid: 2102 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-12.5 parent: 1 - - uid: 455 + - uid: 2103 components: - type: Transform pos: 3.5,-12.5 parent: 1 - - uid: 456 + - uid: 2104 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-12.5 parent: 1 - - uid: 457 + - uid: 2105 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-11.5 parent: 1 - - uid: 463 + - uid: 2106 components: - type: Transform pos: 4.5,-12.5 parent: 1 - - uid: 464 + - uid: 2107 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-9.5 parent: 1 - - uid: 466 + - uid: 2108 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-10.5 parent: 1 - - uid: 468 + - uid: 2109 components: - type: Transform pos: 5.5,-12.5 diff --git a/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml b/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml index cd49c610f5b..3ad233231c6 100644 --- a/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml +++ b/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/10/2026 14:35:15 + entityCount: 1749 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 1: FloorDarkDiagonal @@ -36,40 +47,40 @@ entities: chunks: 0,0: ind: 0,0 - tiles: BgAAAAAADQAAAAAADQAAAAAADQAAAAAABgAAAAAABgAAAAAABgAAAAAADwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAABgAAAAAABgAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: BgAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAA8AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAGAAAAAAAABgAAAAAAAIIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAIIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAAMAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAAADAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: ggAAAAAAggAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAIIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAACCAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAAggAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAAAAIIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAggAAAAAABAAAAAAACQAAAAAACQAAAAAABAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAggAAAAAABAAAAAAACQAAAAAACQAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAAAggAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAIIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAIIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAAwAAAAAAAIIAAAAAAAAEAAAAAAAACQAAAAAAAAkAAAAAAAAEAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAMAAAAAAACCAAAAAAAABAAAAAAAAAkAAAAAAAAJAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAQAAAAAAAAggAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAwAAAAAAAIIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAIIAAAAAAAAGAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAIIAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAggAAAAAAAAYAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAGAAAAAAAABgAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAggAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAADwAAAAAABgAAAAAABgAAAAAABgAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIIAAAAAAAAGAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAIIAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAPAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAggAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAADwAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAABwAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAABgAAAAAABgAAAAAABgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAABgAAAAAABgAAAAAABgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAACgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAABwAAAAAABwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAgQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAgQAAAAAAAQAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAggAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAggAAAAAAAwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAAHAAAAAAAABwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAgQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACBAAAAAAAAAQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAAAggAAAAAAAAMAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAAAAIIAAAAAAAADAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: AAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAgQAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAIEAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACBAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -504,6 +515,7 @@ entities: 2174: -8,-12 2378: -8,-12 2659: -8,-12 + 2911: -8,-12 - node: zIndex: 1 angle: -3.141592653589793 rad @@ -513,6 +525,7 @@ entities: 2168: -8,-16 2372: -8,-16 2653: -8,-16 + 2905: -8,-16 - node: zIndex: 1 angle: -1.5707963267948966 rad @@ -522,6 +535,7 @@ entities: 2183: -4,-16 2387: -4,-16 2668: -4,-16 + 2920: -4,-16 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner @@ -530,6 +544,7 @@ entities: 2189: -4,-12 2393: -4,-12 2674: -4,-12 + 2926: -4,-12 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge @@ -554,6 +569,11 @@ entities: 2655: -8,-14 2656: -8,-13 2658: -8,-12 + 2904: -8,-16 + 2906: -8,-15 + 2907: -8,-14 + 2908: -8,-13 + 2910: -8,-12 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge @@ -578,6 +598,11 @@ entities: 2662: -6,-16 2664: -5,-16 2666: -4,-16 + 2903: -8,-16 + 2912: -7,-16 + 2914: -6,-16 + 2916: -5,-16 + 2918: -4,-16 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge @@ -602,6 +627,11 @@ entities: 2670: -4,-14 2671: -4,-13 2672: -4,-12 + 2919: -4,-16 + 2921: -4,-15 + 2922: -4,-14 + 2923: -4,-13 + 2924: -4,-12 - node: id: FloorTechMaintDirectionalEdge decals: @@ -625,6 +655,11 @@ entities: 2663: -6,-12 2665: -5,-12 2673: -4,-12 + 2909: -8,-12 + 2913: -7,-12 + 2915: -6,-12 + 2917: -5,-12 + 2925: -4,-12 - node: zIndex: 1 id: LatticeCornerNE @@ -859,6 +894,31 @@ entities: 2735: 11,-26 2743: 11,-20 2764: 4,16 + 2777: 4,12 + 2785: 4,13 + 2793: 4,14 + 2801: 4,15 + 2809: 8,2 + 2817: 8,3 + 2825: 8,4 + 2868: -13,-15 + 2873: -13,-14 + 2884: -10,-8 + 2892: -10,-7 + 2897: -10,-6 + 2902: -10,-5 + 2931: -8,7 + 2939: -13,-22 + 2944: -13,-21 + 2949: -13,-20 + 2952: -10,-28 + 2957: -9,-30 + 2960: -8,-32 + 2965: 2,-27 + 2979: 10,-27 + 2987: 11,-26 + 2995: 11,-20 + 3016: 4,16 - node: zIndex: 1 id: LatticeCornerNW @@ -1131,6 +1191,30 @@ entities: 2746: 11,-20 2751: 11,-19 2767: 4,16 + 2780: 4,12 + 2788: 4,13 + 2796: 4,14 + 2804: 4,15 + 2812: 8,2 + 2820: 8,3 + 2828: 8,4 + 2833: 9,2 + 2838: 9,3 + 2843: 9,4 + 2848: 2,-13 + 2853: 2,-12 + 2858: 2,-11 + 2863: 2,-10 + 2887: -10,-8 + 2954: -10,-28 + 2968: 2,-27 + 2971: 8,-32 + 2974: 9,-30 + 2982: 10,-27 + 2990: 11,-26 + 2998: 11,-20 + 3003: 11,-19 + 3019: 4,16 - node: zIndex: 1 id: LatticeCornerSE @@ -1369,6 +1453,33 @@ entities: 2754: 12,-20 2762: 4,16 2770: 4,17 + 2775: 4,12 + 2783: 4,13 + 2791: 4,14 + 2799: 4,15 + 2807: 8,2 + 2815: 8,3 + 2823: 8,4 + 2866: -13,-15 + 2871: -13,-14 + 2876: -13,-13 + 2879: -11,-8 + 2882: -10,-8 + 2890: -10,-7 + 2895: -10,-6 + 2900: -10,-5 + 2929: -8,7 + 2934: -8,9 + 2937: -13,-22 + 2942: -13,-21 + 2947: -13,-20 + 2963: 2,-27 + 2977: 10,-27 + 2985: 11,-26 + 2993: 11,-20 + 3006: 12,-20 + 3014: 4,16 + 3022: 4,17 - node: zIndex: 1 id: LatticeCornerSW @@ -1631,6 +1742,30 @@ entities: 2759: 13,-20 2766: 4,16 2772: 4,17 + 2779: 4,12 + 2787: 4,13 + 2795: 4,14 + 2803: 4,15 + 2811: 8,2 + 2819: 8,3 + 2827: 8,4 + 2832: 9,2 + 2837: 9,3 + 2842: 9,4 + 2847: 2,-13 + 2852: 2,-12 + 2857: 2,-11 + 2862: 2,-10 + 2886: -10,-8 + 2967: 2,-27 + 2981: 10,-27 + 2989: 11,-26 + 2997: 11,-20 + 3002: 11,-19 + 3008: 12,-20 + 3011: 13,-20 + 3018: 4,16 + 3024: 4,17 - node: id: LatticeEdgeE decals: @@ -1894,6 +2029,36 @@ entities: 2753: 12,-20 2761: 4,16 2769: 4,17 + 2774: 4,12 + 2782: 4,13 + 2790: 4,14 + 2798: 4,15 + 2806: 8,2 + 2814: 8,3 + 2822: 8,4 + 2865: -13,-15 + 2870: -13,-14 + 2875: -13,-13 + 2878: -11,-8 + 2881: -10,-8 + 2889: -10,-7 + 2894: -10,-6 + 2899: -10,-5 + 2928: -8,7 + 2933: -8,9 + 2936: -13,-22 + 2941: -13,-21 + 2946: -13,-20 + 2950: -10,-28 + 2955: -9,-30 + 2958: -8,-32 + 2962: 2,-27 + 2976: 10,-27 + 2984: 11,-26 + 2992: 11,-20 + 3005: 12,-20 + 3013: 4,16 + 3021: 4,17 - node: id: LatticeEdgeN decals: @@ -2247,6 +2412,41 @@ entities: 2742: 11,-20 2748: 11,-19 2763: 4,16 + 2776: 4,12 + 2784: 4,13 + 2792: 4,14 + 2800: 4,15 + 2808: 8,2 + 2816: 8,3 + 2824: 8,4 + 2830: 9,2 + 2835: 9,3 + 2840: 9,4 + 2845: 2,-13 + 2850: 2,-12 + 2855: 2,-11 + 2860: 2,-10 + 2867: -13,-15 + 2872: -13,-14 + 2883: -10,-8 + 2891: -10,-7 + 2896: -10,-6 + 2901: -10,-5 + 2930: -8,7 + 2938: -13,-22 + 2943: -13,-21 + 2948: -13,-20 + 2951: -10,-28 + 2956: -9,-30 + 2959: -8,-32 + 2964: 2,-27 + 2969: 8,-32 + 2972: 9,-30 + 2978: 10,-27 + 2986: 11,-26 + 2994: 11,-20 + 3000: 11,-19 + 3015: 4,16 - node: id: LatticeEdgeS decals: @@ -2592,6 +2792,42 @@ entities: 2757: 13,-20 2760: 4,16 2768: 4,17 + 2773: 4,12 + 2781: 4,13 + 2789: 4,14 + 2797: 4,15 + 2805: 8,2 + 2813: 8,3 + 2821: 8,4 + 2829: 9,2 + 2834: 9,3 + 2839: 9,4 + 2844: 2,-13 + 2849: 2,-12 + 2854: 2,-11 + 2859: 2,-10 + 2864: -13,-15 + 2869: -13,-14 + 2874: -13,-13 + 2877: -11,-8 + 2880: -10,-8 + 2888: -10,-7 + 2893: -10,-6 + 2898: -10,-5 + 2927: -8,7 + 2932: -8,9 + 2935: -13,-22 + 2940: -13,-21 + 2945: -13,-20 + 2961: 2,-27 + 2975: 10,-27 + 2983: 11,-26 + 2991: 11,-20 + 2999: 11,-19 + 3004: 12,-20 + 3009: 13,-20 + 3012: 4,16 + 3020: 4,17 - node: id: LatticeEdgeW decals: @@ -2879,6 +3115,33 @@ entities: 2758: 13,-20 2765: 4,16 2771: 4,17 + 2778: 4,12 + 2786: 4,13 + 2794: 4,14 + 2802: 4,15 + 2810: 8,2 + 2818: 8,3 + 2826: 8,4 + 2831: 9,2 + 2836: 9,3 + 2841: 9,4 + 2846: 2,-13 + 2851: 2,-12 + 2856: 2,-11 + 2861: 2,-10 + 2885: -10,-8 + 2953: -10,-28 + 2966: 2,-27 + 2970: 8,-32 + 2973: 9,-30 + 2980: 10,-27 + 2988: 11,-26 + 2996: 11,-20 + 3001: 11,-19 + 3007: 12,-20 + 3010: 13,-20 + 3017: 4,16 + 3023: 4,17 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -3460,14 +3723,14 @@ entities: shuttleUid: 1 - proto: AAAardpointMediumMissile entities: - - uid: 21 + - uid: 2 components: - type: Transform pos: 10.5,0.5 parent: 1 - type: Physics canCollide: False - - uid: 141 + - uid: 3 components: - type: Transform rot: -1.5707963267948966 rad @@ -3475,7 +3738,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 142 + - uid: 4 components: - type: Transform rot: 1.5707963267948966 rad @@ -3483,7 +3746,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 206 + - uid: 5 components: - type: Transform pos: -10.5,-8.5 @@ -3492,7 +3755,7 @@ entities: canCollide: False - proto: AAAHardpointFixed entities: - - uid: 1418 + - uid: 6 components: - type: Transform rot: 3.141592653589793 rad @@ -3500,14 +3763,12 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 873 - - 221 - - 825 + - 884 - type: Physics canCollide: False - proto: AAAHardpointMediumBallistic entities: - - uid: 158 + - uid: 7 components: - type: Transform rot: 1.5707963267948966 rad @@ -3515,7 +3776,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 178 + - uid: 8 components: - type: Transform rot: -1.5707963267948966 rad @@ -3523,7 +3784,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 179 + - uid: 9 components: - type: Transform rot: -1.5707963267948966 rad @@ -3531,7 +3792,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 216 + - uid: 10 components: - type: Transform rot: -1.5707963267948966 rad @@ -3541,49 +3802,49 @@ entities: canCollide: False - proto: AAAHardpointSmallBallistic entities: - - uid: 395 + - uid: 11 components: - type: Transform pos: -12.5,-15.5 parent: 1 - type: Physics canCollide: False - - uid: 468 + - uid: 12 components: - type: Transform pos: -6.5,-32.5 parent: 1 - type: Physics canCollide: False - - uid: 472 + - uid: 13 components: - type: Transform pos: 7.5,-32.5 parent: 1 - type: Physics canCollide: False - - uid: 473 + - uid: 14 components: - type: Transform pos: 2.5,16.5 parent: 1 - type: Physics canCollide: False - - uid: 476 + - uid: 15 components: - type: Transform pos: 6.5,16.5 parent: 1 - type: Physics canCollide: False - - uid: 831 + - uid: 16 components: - type: Transform pos: 11.5,-4.5 parent: 1 - type: Physics canCollide: False - - uid: 835 + - uid: 17 components: - type: Transform rot: 1.5707963267948966 rad @@ -3591,14 +3852,14 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 871 + - uid: 18 components: - type: Transform pos: 9.5,6.5 parent: 1 - type: Physics canCollide: False - - uid: 898 + - uid: 19 components: - type: Transform rot: 1.5707963267948966 rad @@ -3606,32 +3867,22 @@ entities: parent: 1 - type: Physics canCollide: False -- proto: AcceleratorCannon +- proto: AcceleratorCannonFilled entities: - - uid: 324 + - uid: 20 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,11.5 parent: 1 - - type: BallisticAmmoProvider - entities: - - 326 - - 393 - - 478 - - 847 - - 1400 + - type: ApcPowerReceiver + powerLoad: 25000 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True - ents: - - 326 - - 393 - - 478 - - 847 - - 1400 + ents: [] SpaceArtillery-CoolantSlot: !type:ContainerSlot showEnts: False occludes: True @@ -3644,12 +3895,14 @@ entities: showEnts: False occludes: True ents: [] - - type: SpaceArtillery - coolantStored: 120 + - type: Battery + startingCharge: 94343.125 + - type: ApcPowerReceiverBattery + enabled: True - type: ItemSlots - proto: AirAlarm entities: - - uid: 1489 + - uid: 21 components: - type: Transform rot: 3.141592653589793 rad @@ -3657,22 +3910,22 @@ entities: parent: 1 - type: DeviceList devices: - - 1407 - - 1406 - - 1408 - - 1409 - - 1405 - - 1416 - - 1417 - - 1415 - - 1414 - - 1402 - - 1403 - - 1420 - - 1421 - - 1412 - - 1413 - - uid: 1490 + - 1053 + - 1061 + - 1054 + - 1062 + - 1060 + - 1057 + - 1065 + - 1056 + - 1064 + - 1059 + - 1052 + - 1058 + - 1066 + - 1055 + - 1063 + - uid: 22 components: - type: Transform rot: -1.5707963267948966 rad @@ -3680,49 +3933,49 @@ entities: parent: 1 - type: DeviceList devices: - - 1407 - - 1406 - - 1408 - - 1409 - - 1405 - - 1416 - - 1417 - - 1415 - - 1414 - - 1402 - - 1403 - - 1420 - - 1421 - - 1412 - - 1413 - - uid: 1493 + - 1053 + - 1061 + - 1054 + - 1062 + - 1060 + - 1057 + - 1065 + - 1056 + - 1064 + - 1059 + - 1052 + - 1058 + - 1066 + - 1055 + - 1063 + - uid: 23 components: - type: Transform pos: -4.5,-20.5 parent: 1 - - uid: 1494 + - uid: 24 components: - type: Transform pos: -11.5,-21.5 parent: 1 - type: DeviceList devices: - - 1407 - - 1406 - - 1408 - - 1409 - - 1405 - - 1416 - - 1417 - - 1415 - - 1414 - - 1402 - - 1403 - - 1420 - - 1421 - - 1412 - - 1413 - - uid: 1495 + - 1053 + - 1061 + - 1054 + - 1062 + - 1060 + - 1057 + - 1065 + - 1056 + - 1064 + - 1059 + - 1052 + - 1058 + - 1066 + - 1055 + - 1063 + - uid: 25 components: - type: Transform rot: 3.141592653589793 rad @@ -3730,24 +3983,24 @@ entities: parent: 1 - type: DeviceList devices: - - 1407 - - 1406 - - 1408 - - 1409 - - 1405 - - 1416 - - 1417 - - 1415 - - 1414 - - 1402 - - 1403 - - 1420 - - 1421 - - 1412 - - 1413 + - 1053 + - 1061 + - 1054 + - 1062 + - 1060 + - 1057 + - 1065 + - 1056 + - 1064 + - 1059 + - 1052 + - 1058 + - 1066 + - 1055 + - 1063 - proto: AirCanister entities: - - uid: 1411 + - uid: 26 components: - type: Transform anchored: True @@ -3757,49 +4010,49 @@ entities: bodyType: Static - proto: AirlockCommandLockedDSM entities: - - uid: 119 + - uid: 27 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,6.5 parent: 1 - - uid: 459 + - uid: 28 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-23.5 parent: 1 - - uid: 465 + - uid: 29 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,1.5 parent: 1 - - uid: 467 + - uid: 30 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,6.5 parent: 1 - - uid: 494 + - uid: 31 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-4.5 parent: 1 - - uid: 531 + - uid: 32 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 1 - - uid: 811 + - uid: 33 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-22.5 parent: 1 - - uid: 812 + - uid: 34 components: - type: Transform rot: 1.5707963267948966 rad @@ -3807,83 +4060,83 @@ entities: parent: 1 - proto: AirlockCommandLockedDSMHorizontal entities: - - uid: 73 + - uid: 35 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 237 + - uid: 36 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-5.5 parent: 1 - - uid: 384 + - uid: 37 components: - type: Transform pos: 0.5,-10.5 parent: 1 - type: Door - secondsUntilStateChange: -14233.606 + secondsUntilStateChange: -15494.238 state: Opening - type: DeviceLinkSource lastSignals: DoorStatus: True - - uid: 458 + - uid: 38 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-22.5 parent: 1 - - uid: 460 + - uid: 39 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-21.5 parent: 1 - - uid: 461 + - uid: 40 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-18.5 parent: 1 - - uid: 462 + - uid: 41 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-18.5 parent: 1 - - uid: 463 + - uid: 42 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-13.5 parent: 1 - - uid: 466 + - uid: 43 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 parent: 1 - - uid: 627 + - uid: 44 components: - type: Transform pos: 1.5,-19.5 parent: 1 - - uid: 1612 + - uid: 45 components: - type: Transform pos: 9.5,-21.5 parent: 1 - proto: AirlockExternal entities: - - uid: 397 + - uid: 46 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,5.5 parent: 1 - - uid: 398 + - uid: 47 components: - type: Transform rot: 3.141592653589793 rad @@ -3891,13 +4144,13 @@ entities: parent: 1 - proto: AirlockMaintHorizontal entities: - - uid: 414 + - uid: 48 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-30.5 parent: 1 - - uid: 510 + - uid: 49 components: - type: Transform rot: 3.141592653589793 rad @@ -3905,13 +4158,13 @@ entities: parent: 1 - proto: AirlockShuttle entities: - - uid: 273 + - uid: 50 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-10.5 parent: 1 - - uid: 274 + - uid: 51 components: - type: Transform rot: 1.5707963267948966 rad @@ -3921,15 +4174,15 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -21472.318 + secondsUntilStateChange: -22732.951 state: Opening - - uid: 403 + - uid: 52 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-17.5 parent: 1 - - uid: 404 + - uid: 53 components: - type: Transform rot: -1.5707963267948966 rad @@ -3937,17 +4190,17 @@ entities: parent: 1 - proto: AirTankFilled entities: - - uid: 1638 + - uid: 55 components: - type: Transform - parent: 741 + parent: 54 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1640 + - uid: 60 components: - type: Transform - parent: 742 + parent: 59 - type: Physics angularDamping: 0 linearDamping: 0 @@ -3955,7 +4208,7 @@ entities: - type: InsideEntityStorage - proto: AmeController entities: - - uid: 1650 + - uid: 64 components: - type: Transform pos: 3.5,-30.5 @@ -3968,53 +4221,53 @@ entities: fuelSlot: !type:ContainerSlot showEnts: False occludes: True - ent: 1651 + ent: 65 - proto: AmeJar entities: - - uid: 169 + - uid: 65 + components: + - type: Transform + parent: 64 + - type: Physics + canCollide: False + - uid: 66 components: - type: Transform pos: 3.8230472,-28.364965 parent: 1 - - uid: 454 + - uid: 67 components: - type: Transform pos: 3.4812212,-28.364965 parent: 1 - - uid: 455 + - uid: 68 components: - type: Transform pos: 3.2880154,-28.364965 parent: 1 - - uid: 553 + - uid: 69 components: - type: Transform pos: 3.659566,-28.364965 parent: 1 - - uid: 1648 + - uid: 70 components: - type: Transform pos: 3.1542568,-28.364965 parent: 1 - - uid: 1651 - components: - - type: Transform - parent: 1650 - - type: Physics - canCollide: False - proto: AmeShielding entities: - - uid: 170 + - uid: 71 components: - type: Transform pos: 4.5,-30.5 parent: 1 - - uid: 452 + - uid: 72 components: - type: Transform pos: 5.5,-30.5 parent: 1 - - uid: 453 + - uid: 73 components: - type: Transform pos: 5.5,-29.5 @@ -4022,22 +4275,22 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 556 + - uid: 74 components: - type: Transform pos: 5.5,-28.5 parent: 1 - - uid: 784 + - uid: 75 components: - type: Transform pos: 4.5,-29.5 parent: 1 - - uid: 1187 + - uid: 76 components: - type: Transform pos: 6.5,-30.5 parent: 1 - - uid: 1193 + - uid: 77 components: - type: Transform pos: 6.5,-29.5 @@ -4045,94 +4298,94 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 1303 + - uid: 78 components: - type: Transform pos: 6.5,-28.5 parent: 1 - - uid: 1644 + - uid: 79 components: - type: Transform pos: 7.5,-30.5 parent: 1 - - uid: 1645 + - uid: 80 components: - type: Transform pos: 7.5,-29.5 parent: 1 - - uid: 1646 + - uid: 81 components: - type: Transform pos: 7.5,-28.5 parent: 1 - - uid: 1649 + - uid: 82 components: - type: Transform pos: 4.5,-28.5 parent: 1 - proto: APCBasic entities: - - uid: 931 + - uid: 83 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-27.5 parent: 1 - - uid: 932 + - uid: 84 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-25.5 parent: 1 - - uid: 933 + - uid: 85 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-21.5 parent: 1 - - uid: 934 + - uid: 86 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-21.5 parent: 1 - - uid: 935 + - uid: 87 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-1.5 parent: 1 - - uid: 936 + - uid: 88 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-6.5 parent: 1 - - uid: 937 + - uid: 89 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-17.5 parent: 1 - - uid: 938 + - uid: 90 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-24.5 parent: 1 - - uid: 939 + - uid: 91 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-1.5 parent: 1 - - uid: 940 + - uid: 92 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,6.5 parent: 1 - - uid: 1081 + - uid: 93 components: - type: Transform rot: 1.5707963267948966 rad @@ -4140,88 +4393,92 @@ entities: parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 9 + - uid: 94 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 10 + - uid: 95 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 162 + - uid: 96 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 223 + - uid: 97 components: - type: Transform pos: 11.5,-20.5 parent: 1 - - uid: 234 + - uid: 98 components: - type: Transform pos: -8.5,-5.5 parent: 1 - - uid: 383 + - uid: 99 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 390 + - uid: 100 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 391 + - uid: 101 components: - type: Transform pos: -8.5,-5.5 parent: 1 - - uid: 399 + - uid: 102 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,5.5 parent: 1 - - uid: 400 + - uid: 103 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,2.5 parent: 1 - - uid: 401 + - uid: 104 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-17.5 parent: 1 - - uid: 402 + - uid: 105 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-18.5 parent: 1 - - uid: 689 + - uid: 106 components: - type: Transform pos: 7.5,0.5 parent: 1 - - uid: 1674 + - uid: 107 components: - type: Transform pos: 6.5,8.5 parent: 1 - proto: BaseWeaponTurretJeong entities: - - uid: 545 + - uid: 108 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-8.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -4232,16 +4489,28 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon linkedConsoleIds: - - 840 - linkedConsoleId: 840 - - uid: 561 + - 894 + linkedConsoleId: 894 + - uid: 109 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,0.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -4252,16 +4521,28 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon linkedConsoleIds: - - 840 - linkedConsoleId: 840 - - uid: 1540 + - 894 + linkedConsoleId: 894 + - uid: 110 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-17.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -4272,16 +4553,28 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon linkedConsoleIds: - - 840 - linkedConsoleId: 840 - - uid: 1541 + - 894 + linkedConsoleId: 894 + - uid: 111 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,8.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -4292,35 +4585,43 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon linkedConsoleIds: - - 840 - linkedConsoleId: 840 + - 894 + linkedConsoleId: 894 - proto: Bed entities: - - uid: 576 + - uid: 112 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 653 + - uid: 113 components: - type: Transform pos: -8.5,-23.5 parent: 1 - - uid: 654 + - uid: 114 components: - type: Transform pos: -8.5,-24.5 parent: 1 - - uid: 655 + - uid: 115 components: - type: Transform pos: -8.5,-25.5 parent: 1 - proto: BedsheetMedical entities: - - uid: 17 + - uid: 116 components: - type: Transform pos: -3.4646935,-7.445119 @@ -4330,24 +4631,24 @@ entities: linearDamping: 0 - proto: BedsheetPurple entities: - - uid: 656 + - uid: 117 components: - type: Transform pos: -8.5,-23.5 parent: 1 - - uid: 657 + - uid: 118 components: - type: Transform pos: -8.5,-24.5 parent: 1 - - uid: 658 + - uid: 119 components: - type: Transform pos: -8.5,-25.5 parent: 1 - proto: BedsheetRD entities: - - uid: 577 + - uid: 120 components: - type: MetaData name: imperial bedsheet @@ -4357,28 +4658,28 @@ entities: parent: 1 - proto: BenchSteelLeft entities: - - uid: 790 + - uid: 121 components: - type: Transform pos: 3.5,-18.5 parent: 1 - proto: BenchSteelRight entities: - - uid: 791 + - uid: 122 components: - type: Transform pos: 4.5,-18.5 parent: 1 - proto: BiomassReclaimer entities: - - uid: 600 + - uid: 123 components: - type: Transform pos: -3.5,-3.5 parent: 1 - proto: BlastDoor entities: - - uid: 224 + - uid: 124 components: - type: Transform rot: 3.141592653589793 rad @@ -4386,8 +4687,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1739 - - uid: 471 + - 1309 + - uid: 125 components: - type: Transform rot: 1.5707963267948966 rad @@ -4395,81 +4696,26 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 641 - - uid: 484 + - 1311 + - uid: 126 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 753 - - uid: 485 + - uid: 127 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-23.5 parent: 1 - - type: DeviceLinkSink - links: - - 753 - - uid: 486 + - uid: 128 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-24.5 parent: 1 - - type: DeviceLinkSink - links: - - 753 - - uid: 487 - components: - - type: Transform - pos: -12.5,-25.5 - parent: 1 - - type: DeviceLinkSink - links: - - 753 - - uid: 488 - components: - - type: Transform - pos: -11.5,-25.5 - parent: 1 - - type: DeviceLinkSink - links: - - 753 - - uid: 489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-26.5 - parent: 1 - - type: DeviceLinkSink - links: - - 753 - - uid: 490 - components: - - type: Transform - pos: -10.5,-26.5 - parent: 1 - - type: DeviceLinkSink - links: - - 753 - - uid: 491 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 1 - - uid: 492 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 1 - - type: DeviceLinkSink - links: - - 753 - - uid: 499 + - uid: 131 components: - type: Transform rot: 1.5707963267948966 rad @@ -4477,16 +4723,16 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 751 - - uid: 513 + - 1312 + - uid: 132 components: - type: Transform pos: 11.5,-20.5 parent: 1 - type: DeviceLinkSink links: - - 755 - - uid: 640 + - 1313 + - uid: 133 components: - type: Transform rot: -1.5707963267948966 rad @@ -4494,8 +4740,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1609 - - uid: 663 + - 1314 + - uid: 134 components: - type: Transform rot: 1.5707963267948966 rad @@ -4503,8 +4749,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 543 - - uid: 1626 + - 1310 + - uid: 135 components: - type: Transform rot: 3.141592653589793 rad @@ -4512,10 +4758,10 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1739 + - 1309 - proto: BoozeDispenser entities: - - uid: 702 + - uid: 136 components: - type: Transform rot: 1.5707963267948966 rad @@ -4523,14 +4769,14 @@ entities: parent: 1 - proto: BoriaticFuelTankFull entities: - - uid: 44 + - uid: 137 components: - type: Transform pos: -8.5,-17.5 parent: 1 - proto: BoriaticGeneratorHerculesShuttle entities: - - uid: 348 + - uid: 138 components: - type: Transform pos: -6.5,-30.5 @@ -4541,3119 +4787,3113 @@ entities: bodyType: Static - proto: BoxBeaker entities: - - uid: 716 + - uid: 139 components: - type: Transform pos: -6.66038,-8.189533 parent: 1 - proto: BoxBottle entities: - - uid: 718 + - uid: 140 components: - type: Transform pos: -6.50413,-8.470783 parent: 1 - - uid: 719 + - uid: 141 components: - type: Transform pos: -6.50413,-8.470783 parent: 1 - proto: BoxPillCanister entities: - - uid: 717 + - uid: 142 components: - type: Transform pos: -6.301005,-8.189533 parent: 1 - proto: BoxSyringe entities: - - uid: 1566 + - uid: 143 components: - type: Transform pos: -6.777571,-8.547294 parent: 1 - proto: ButtonFrameCaution entities: - - uid: 20 + - uid: 144 components: - type: Transform pos: 10.5,-20.5 parent: 1 - - uid: 209 + - uid: 145 components: - type: Transform pos: -7.5,-4.5 parent: 1 - - uid: 389 + - uid: 146 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,7.5 parent: 1 - - uid: 519 + - uid: 147 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 538 + - uid: 148 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,10.5 parent: 1 - - uid: 639 + - uid: 149 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 1 - - uid: 754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-26.5 - parent: 1 - proto: ButtonFrameCautionSecurity entities: - - uid: 1661 + - uid: 151 components: - type: Transform pos: 4.5,8.5 parent: 1 - proto: CableApcExtension entities: - - uid: 22 + - uid: 152 components: - type: Transform pos: 9.5,-24.5 parent: 1 - - uid: 48 + - uid: 153 components: - type: Transform pos: -11.5,-16.5 parent: 1 - - uid: 53 + - uid: 154 components: - type: Transform pos: -11.5,-15.5 parent: 1 - - uid: 59 + - uid: 155 components: - type: Transform pos: -11.5,-17.5 parent: 1 - - uid: 63 + - uid: 156 components: - type: Transform pos: 9.5,-25.5 parent: 1 - - uid: 72 + - uid: 157 components: - type: Transform pos: 9.5,-27.5 parent: 1 - - uid: 79 + - uid: 158 components: - type: Transform pos: -9.5,-26.5 parent: 1 - - uid: 88 + - uid: 159 components: - type: Transform pos: -8.5,-26.5 parent: 1 - - uid: 89 + - uid: 160 components: - type: Transform pos: -8.5,-27.5 parent: 1 - - uid: 90 + - uid: 161 components: - type: Transform pos: -8.5,-28.5 parent: 1 - - uid: 110 + - uid: 162 components: - type: Transform pos: 12.5,-23.5 parent: 1 - - uid: 111 + - uid: 163 components: - type: Transform pos: -8.5,-29.5 parent: 1 - - uid: 137 + - uid: 164 components: - type: Transform pos: -6.5,9.5 parent: 1 - - uid: 140 + - uid: 165 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 145 + - uid: 166 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 175 + - uid: 167 components: - type: Transform pos: 9.5,-29.5 parent: 1 - - uid: 176 + - uid: 168 components: - type: Transform pos: 11.5,-25.5 parent: 1 - - uid: 195 + - uid: 169 components: - type: Transform pos: -10.5,-26.5 parent: 1 - - uid: 196 + - uid: 170 components: - type: Transform pos: 9.5,-26.5 parent: 1 - - uid: 197 + - uid: 171 components: - type: Transform pos: 9.5,-28.5 parent: 1 - - uid: 213 + - uid: 172 components: - type: Transform pos: 11.5,-17.5 parent: 1 - - uid: 215 + - uid: 173 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 218 + - uid: 174 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 219 + - uid: 175 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 220 + - uid: 176 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 244 + - uid: 177 components: - type: Transform pos: 13.5,-20.5 parent: 1 - - uid: 289 + - uid: 178 components: - type: Transform pos: 10.5,-17.5 parent: 1 - - uid: 295 + - uid: 179 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 394 + - uid: 180 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 584 + - uid: 181 components: - type: Transform pos: 7.5,8.5 parent: 1 - - uid: 598 + - uid: 182 components: - type: Transform pos: -11.5,-20.5 parent: 1 - - uid: 602 + - uid: 183 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 750 + - uid: 184 components: - type: Transform pos: -6.5,10.5 parent: 1 - - uid: 752 + - uid: 185 components: - type: Transform pos: 13.5,-25.5 parent: 1 - - uid: 830 + - uid: 186 components: - type: Transform pos: 12.5,-25.5 parent: 1 - - uid: 841 + - uid: 187 components: - type: Transform pos: 8.5,-23.5 parent: 1 - - uid: 842 + - uid: 188 components: - type: Transform pos: 8.5,-24.5 parent: 1 - - uid: 844 + - uid: 189 components: - type: Transform pos: 7.5,-26.5 parent: 1 - - uid: 845 + - uid: 190 components: - type: Transform pos: 8.5,-26.5 parent: 1 - - uid: 846 + - uid: 191 components: - type: Transform pos: 7.5,-23.5 parent: 1 - - uid: 852 + - uid: 192 components: - type: Transform pos: 12.5,-20.5 parent: 1 - - uid: 893 + - uid: 193 components: - type: Transform pos: -0.5,9.5 parent: 1 - - uid: 903 + - uid: 194 components: - type: Transform pos: 7.5,-18.5 parent: 1 - - uid: 1082 + - uid: 195 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 1083 + - uid: 196 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 1084 + - uid: 197 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 1085 + - uid: 198 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 1086 + - uid: 199 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 1087 + - uid: 200 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 1088 + - uid: 201 components: - type: Transform pos: -5.5,4.5 parent: 1 - - uid: 1089 + - uid: 202 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 1090 + - uid: 203 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 1091 + - uid: 204 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 1092 + - uid: 205 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 1093 + - uid: 206 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 1094 + - uid: 207 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 1095 + - uid: 208 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 1096 + - uid: 209 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 1097 + - uid: 210 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 1098 + - uid: 211 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 1099 + - uid: 212 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 1100 + - uid: 213 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 1101 + - uid: 214 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 1102 + - uid: 215 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 1103 + - uid: 216 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 1104 + - uid: 217 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 1105 + - uid: 218 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 1106 + - uid: 219 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 1107 + - uid: 220 components: - type: Transform pos: -5.5,-14.5 parent: 1 - - uid: 1108 + - uid: 221 components: - type: Transform pos: -5.5,-15.5 parent: 1 - - uid: 1109 + - uid: 222 components: - type: Transform pos: -5.5,-16.5 parent: 1 - - uid: 1110 + - uid: 223 components: - type: Transform pos: -5.5,-17.5 parent: 1 - - uid: 1111 + - uid: 224 components: - type: Transform pos: -5.5,-18.5 parent: 1 - - uid: 1112 + - uid: 225 components: - type: Transform pos: -5.5,-19.5 parent: 1 - - uid: 1113 + - uid: 226 components: - type: Transform pos: -5.5,-20.5 parent: 1 - - uid: 1114 + - uid: 227 components: - type: Transform pos: -5.5,-21.5 parent: 1 - - uid: 1115 + - uid: 228 components: - type: Transform pos: -5.5,-22.5 parent: 1 - - uid: 1116 + - uid: 229 components: - type: Transform pos: -5.5,-23.5 parent: 1 - - uid: 1117 + - uid: 230 components: - type: Transform pos: -5.5,-24.5 parent: 1 - - uid: 1118 + - uid: 231 components: - type: Transform pos: -5.5,-25.5 parent: 1 - - uid: 1119 + - uid: 232 components: - type: Transform pos: -4.5,-25.5 parent: 1 - - uid: 1120 + - uid: 233 components: - type: Transform pos: -3.5,-25.5 parent: 1 - - uid: 1121 + - uid: 234 components: - type: Transform pos: -2.5,-25.5 parent: 1 - - uid: 1122 + - uid: 235 components: - type: Transform pos: -5.5,-25.5 parent: 1 - - uid: 1123 + - uid: 236 components: - type: Transform pos: -6.5,-25.5 parent: 1 - - uid: 1124 + - uid: 237 components: - type: Transform pos: -7.5,-25.5 parent: 1 - - uid: 1125 + - uid: 238 components: - type: Transform pos: -7.5,-24.5 parent: 1 - - uid: 1126 + - uid: 239 components: - type: Transform pos: -6.5,-17.5 parent: 1 - - uid: 1127 + - uid: 240 components: - type: Transform pos: -7.5,-17.5 parent: 1 - - uid: 1128 + - uid: 241 components: - type: Transform pos: -6.5,-6.5 parent: 1 - - uid: 1129 + - uid: 242 components: - type: Transform pos: -7.5,-6.5 parent: 1 - - uid: 1130 + - uid: 243 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 1131 + - uid: 244 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 1132 + - uid: 245 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 1133 + - uid: 246 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 1134 + - uid: 247 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 1135 + - uid: 248 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 1136 + - uid: 249 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 1137 + - uid: 250 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 1138 + - uid: 251 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 1139 + - uid: 252 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 1140 + - uid: 253 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 1141 + - uid: 254 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 1142 + - uid: 255 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 1143 + - uid: 256 components: - type: Transform pos: -1.5,7.5 parent: 1 - - uid: 1144 + - uid: 257 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 1145 + - uid: 258 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 1146 + - uid: 259 components: - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 1147 + - uid: 260 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 1148 + - uid: 261 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 1149 + - uid: 262 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 1150 + - uid: 263 components: - type: Transform pos: 4.5,7.5 parent: 1 - - uid: 1151 + - uid: 264 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 1152 + - uid: 265 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 1153 + - uid: 266 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 1154 + - uid: 267 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 1155 + - uid: 268 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 1156 + - uid: 269 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 1157 + - uid: 270 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 1158 + - uid: 271 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 1159 + - uid: 272 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 1160 + - uid: 273 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 1161 + - uid: 274 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 1162 + - uid: 275 components: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 1163 + - uid: 276 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 1164 + - uid: 277 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 1166 + - uid: 278 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 1167 + - uid: 279 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 1168 + - uid: 280 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 1169 + - uid: 281 components: - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 1170 + - uid: 282 components: - type: Transform pos: -0.5,-5.5 parent: 1 - - uid: 1171 + - uid: 283 components: - type: Transform pos: -0.5,-6.5 parent: 1 - - uid: 1172 + - uid: 284 components: - type: Transform pos: -0.5,-7.5 parent: 1 - - uid: 1173 + - uid: 285 components: - type: Transform pos: -0.5,-8.5 parent: 1 - - uid: 1174 + - uid: 286 components: - type: Transform pos: -0.5,-9.5 parent: 1 - - uid: 1175 + - uid: 287 components: - type: Transform pos: -0.5,-10.5 parent: 1 - - uid: 1176 + - uid: 288 components: - type: Transform pos: -0.5,-11.5 parent: 1 - - uid: 1177 + - uid: 289 components: - type: Transform pos: -0.5,-12.5 parent: 1 - - uid: 1178 + - uid: 290 components: - type: Transform pos: -0.5,-13.5 parent: 1 - - uid: 1179 + - uid: 291 components: - type: Transform pos: -0.5,-14.5 parent: 1 - - uid: 1180 + - uid: 292 components: - type: Transform pos: -0.5,-15.5 parent: 1 - - uid: 1181 + - uid: 293 components: - type: Transform pos: -0.5,-16.5 parent: 1 - - uid: 1182 + - uid: 294 components: - type: Transform pos: -0.5,-17.5 parent: 1 - - uid: 1183 + - uid: 295 components: - type: Transform pos: -0.5,-18.5 parent: 1 - - uid: 1184 + - uid: 296 components: - type: Transform pos: -0.5,-19.5 parent: 1 - - uid: 1185 + - uid: 297 components: - type: Transform pos: -0.5,-20.5 parent: 1 - - uid: 1186 + - uid: 298 components: - type: Transform pos: -0.5,-21.5 parent: 1 - - uid: 1188 + - uid: 299 components: - type: Transform pos: -1.5,-22.5 parent: 1 - - uid: 1189 + - uid: 300 components: - type: Transform pos: -2.5,-22.5 parent: 1 - - uid: 1190 + - uid: 301 components: - type: Transform pos: -3.5,-22.5 parent: 1 - - uid: 1191 + - uid: 302 components: - type: Transform pos: -4.5,-22.5 parent: 1 - - uid: 1192 + - uid: 303 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - uid: 1194 + - uid: 304 components: - type: Transform pos: 2.5,-19.5 parent: 1 - - uid: 1195 + - uid: 305 components: - type: Transform pos: 3.5,-19.5 parent: 1 - - uid: 1196 + - uid: 306 components: - type: Transform pos: 3.5,-20.5 parent: 1 - - uid: 1197 + - uid: 307 components: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 1198 + - uid: 308 components: - type: Transform pos: 0.5,-22.5 parent: 1 - - uid: 1199 + - uid: 309 components: - type: Transform pos: 1.5,-22.5 parent: 1 - - uid: 1200 + - uid: 310 components: - type: Transform pos: 2.5,-22.5 parent: 1 - - uid: 1201 + - uid: 311 components: - type: Transform pos: 3.5,-22.5 parent: 1 - - uid: 1202 + - uid: 312 components: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 1203 + - uid: 313 components: - type: Transform pos: 1.5,-23.5 parent: 1 - - uid: 1204 + - uid: 314 components: - type: Transform pos: 1.5,-24.5 parent: 1 - - uid: 1205 + - uid: 315 components: - type: Transform pos: 0.5,-24.5 parent: 1 - - uid: 1206 + - uid: 316 components: - type: Transform pos: 0.5,-25.5 parent: 1 - - uid: 1207 + - uid: 317 components: - type: Transform pos: 0.5,-26.5 parent: 1 - - uid: 1208 + - uid: 318 components: - type: Transform pos: 0.5,-27.5 parent: 1 - - uid: 1209 + - uid: 319 components: - type: Transform pos: 0.5,-28.5 parent: 1 - - uid: 1210 + - uid: 320 components: - type: Transform pos: 0.5,-29.5 parent: 1 - - uid: 1211 + - uid: 321 components: - type: Transform pos: 0.5,-30.5 parent: 1 - - uid: 1212 + - uid: 322 components: - type: Transform pos: 1.5,-30.5 parent: 1 - - uid: 1213 + - uid: 323 components: - type: Transform pos: 2.5,-30.5 parent: 1 - - uid: 1214 + - uid: 324 components: - type: Transform pos: 2.5,-29.5 parent: 1 - - uid: 1215 + - uid: 325 components: - type: Transform pos: 3.5,-29.5 parent: 1 - - uid: 1216 + - uid: 326 components: - type: Transform pos: 4.5,-29.5 parent: 1 - - uid: 1217 + - uid: 327 components: - type: Transform pos: 5.5,-29.5 parent: 1 - - uid: 1218 + - uid: 328 components: - type: Transform pos: 6.5,-29.5 parent: 1 - - uid: 1219 + - uid: 329 components: - type: Transform pos: 7.5,-29.5 parent: 1 - - uid: 1220 + - uid: 330 components: - type: Transform pos: -0.5,-27.5 parent: 1 - - uid: 1221 + - uid: 331 components: - type: Transform pos: -1.5,-27.5 parent: 1 - - uid: 1222 + - uid: 332 components: - type: Transform pos: -6.5,-9.5 parent: 1 - - uid: 1223 + - uid: 333 components: - type: Transform pos: -7.5,-9.5 parent: 1 - - uid: 1224 + - uid: 334 components: - type: Transform pos: -8.5,-9.5 parent: 1 - - uid: 1225 + - uid: 335 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 1226 + - uid: 336 components: - type: Transform pos: -8.5,-11.5 parent: 1 - - uid: 1227 + - uid: 337 components: - type: Transform pos: -8.5,-12.5 parent: 1 - - uid: 1228 + - uid: 338 components: - type: Transform pos: -8.5,-13.5 parent: 1 - - uid: 1229 + - uid: 339 components: - type: Transform pos: -8.5,-14.5 parent: 1 - - uid: 1230 + - uid: 340 components: - type: Transform pos: -8.5,-15.5 parent: 1 - - uid: 1231 + - uid: 341 components: - type: Transform pos: -8.5,-16.5 parent: 1 - - uid: 1232 + - uid: 342 components: - type: Transform pos: -8.5,-17.5 parent: 1 - - uid: 1233 + - uid: 343 components: - type: Transform pos: -8.5,-18.5 parent: 1 - - uid: 1234 + - uid: 344 components: - type: Transform pos: -9.5,-18.5 parent: 1 - - uid: 1235 + - uid: 345 components: - type: Transform pos: -10.5,-18.5 parent: 1 - - uid: 1236 + - uid: 346 components: - type: Transform pos: -11.5,-18.5 parent: 1 - - uid: 1237 + - uid: 347 components: - type: Transform pos: -12.5,-18.5 parent: 1 - - uid: 1238 + - uid: 348 components: - type: Transform pos: -12.5,-17.5 parent: 1 - - uid: 1239 + - uid: 349 components: - type: Transform pos: -10.5,-19.5 parent: 1 - - uid: 1240 + - uid: 350 components: - type: Transform pos: -10.5,-20.5 parent: 1 - - uid: 1241 + - uid: 351 components: - type: Transform pos: -10.5,-21.5 parent: 1 - - uid: 1242 + - uid: 352 components: - type: Transform pos: -10.5,-22.5 parent: 1 - - uid: 1243 + - uid: 353 components: - type: Transform pos: -10.5,-23.5 parent: 1 - - uid: 1244 + - uid: 354 components: - type: Transform pos: -10.5,-24.5 parent: 1 - - uid: 1245 + - uid: 355 components: - type: Transform pos: -10.5,-25.5 parent: 1 - - uid: 1246 + - uid: 356 components: - type: Transform pos: -10.5,-26.5 parent: 1 - - uid: 1247 + - uid: 357 components: - type: Transform pos: -10.5,-27.5 parent: 1 - - uid: 1248 + - uid: 358 components: - type: Transform pos: -9.5,-24.5 parent: 1 - - uid: 1249 + - uid: 359 components: - type: Transform pos: -8.5,-24.5 parent: 1 - - uid: 1250 + - uid: 360 components: - type: Transform pos: -7.5,-24.5 parent: 1 - - uid: 1251 + - uid: 361 components: - type: Transform pos: -10.5,-24.5 parent: 1 - - uid: 1252 + - uid: 362 components: - type: Transform pos: -12.5,-24.5 parent: 1 - - uid: 1253 + - uid: 363 components: - type: Transform pos: -11.5,-24.5 parent: 1 - - uid: 1254 + - uid: 364 components: - type: Transform pos: -9.5,-26.5 parent: 1 - - uid: 1255 + - uid: 365 components: - type: Transform pos: -8.5,-26.5 parent: 1 - - uid: 1256 + - uid: 366 components: - type: Transform pos: -7.5,-26.5 parent: 1 - - uid: 1257 + - uid: 367 components: - type: Transform pos: -7.5,-27.5 parent: 1 - - uid: 1258 + - uid: 368 components: - type: Transform pos: -7.5,-28.5 parent: 1 - - uid: 1259 + - uid: 369 components: - type: Transform pos: -7.5,-29.5 parent: 1 - - uid: 1260 + - uid: 370 components: - type: Transform pos: -7.5,-30.5 parent: 1 - - uid: 1261 + - uid: 371 components: - type: Transform pos: -6.5,-30.5 parent: 1 - - uid: 1262 + - uid: 372 components: - type: Transform pos: -5.5,-30.5 parent: 1 - - uid: 1263 + - uid: 373 components: - type: Transform pos: -4.5,-30.5 parent: 1 - - uid: 1264 + - uid: 374 components: - type: Transform pos: -3.5,-30.5 parent: 1 - - uid: 1265 + - uid: 375 components: - type: Transform pos: -2.5,-30.5 parent: 1 - - uid: 1266 + - uid: 376 components: - type: Transform pos: -1.5,-30.5 parent: 1 - - uid: 1267 + - uid: 377 components: - type: Transform pos: -0.5,-30.5 parent: 1 - - uid: 1268 + - uid: 378 components: - type: Transform pos: -3.5,-31.5 parent: 1 - - uid: 1269 + - uid: 379 components: - type: Transform pos: -3.5,-32.5 parent: 1 - - uid: 1270 + - uid: 380 components: - type: Transform pos: -4.5,-32.5 parent: 1 - - uid: 1271 + - uid: 381 components: - type: Transform pos: -2.5,-32.5 parent: 1 - - uid: 1272 + - uid: 382 components: - type: Transform pos: -1.5,-32.5 parent: 1 - - uid: 1273 + - uid: 383 components: - type: Transform pos: -0.5,-32.5 parent: 1 - - uid: 1274 + - uid: 384 components: - type: Transform pos: 0.5,-32.5 parent: 1 - - uid: 1275 + - uid: 385 components: - type: Transform pos: 1.5,-32.5 parent: 1 - - uid: 1276 + - uid: 386 components: - type: Transform pos: 2.5,-32.5 parent: 1 - - uid: 1277 + - uid: 387 components: - type: Transform pos: 3.5,-32.5 parent: 1 - - uid: 1278 + - uid: 388 components: - type: Transform pos: 4.5,-32.5 parent: 1 - - uid: 1279 + - uid: 389 components: - type: Transform pos: 5.5,-32.5 parent: 1 - - uid: 1280 + - uid: 390 components: - type: Transform pos: 6.5,-28.5 parent: 1 - - uid: 1281 + - uid: 391 components: - type: Transform pos: 6.5,-27.5 parent: 1 - - uid: 1282 + - uid: 392 components: - type: Transform pos: 6.5,-26.5 parent: 1 - - uid: 1283 + - uid: 393 components: - type: Transform pos: 6.5,-25.5 parent: 1 - - uid: 1284 + - uid: 394 components: - type: Transform pos: 6.5,-24.5 parent: 1 - - uid: 1285 + - uid: 395 components: - type: Transform pos: 6.5,-23.5 parent: 1 - - uid: 1286 + - uid: 396 components: - type: Transform pos: 6.5,-22.5 parent: 1 - - uid: 1287 + - uid: 397 components: - type: Transform pos: 6.5,-21.5 parent: 1 - - uid: 1288 + - uid: 398 components: - type: Transform pos: 6.5,-20.5 parent: 1 - - uid: 1289 + - uid: 399 components: - type: Transform pos: 6.5,-19.5 parent: 1 - - uid: 1290 + - uid: 400 components: - type: Transform pos: 5.5,-19.5 parent: 1 - - uid: 1291 + - uid: 401 components: - type: Transform pos: 4.5,-19.5 parent: 1 - - uid: 1292 + - uid: 402 components: - type: Transform pos: 7.5,-21.5 parent: 1 - - uid: 1293 + - uid: 403 components: - type: Transform pos: 8.5,-21.5 parent: 1 - - uid: 1294 + - uid: 404 components: - type: Transform pos: 9.5,-21.5 parent: 1 - - uid: 1295 + - uid: 405 components: - type: Transform pos: 10.5,-21.5 parent: 1 - - uid: 1296 + - uid: 406 components: - type: Transform pos: 11.5,-21.5 parent: 1 - - uid: 1297 + - uid: 407 components: - type: Transform pos: 11.5,-22.5 parent: 1 - - uid: 1298 + - uid: 408 components: - type: Transform pos: 11.5,-23.5 parent: 1 - - uid: 1299 + - uid: 409 components: - type: Transform pos: 6.5,-18.5 parent: 1 - - uid: 1300 + - uid: 410 components: - type: Transform pos: 1.5,-21.5 parent: 1 - - uid: 1301 + - uid: 411 components: - type: Transform pos: 1.5,-20.5 parent: 1 - - uid: 1302 + - uid: 412 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 1304 + - uid: 413 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 1305 + - uid: 414 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 1306 + - uid: 415 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 1307 + - uid: 416 components: - type: Transform pos: 5.5,-3.5 parent: 1 - - uid: 1308 + - uid: 417 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 1309 + - uid: 418 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 1310 + - uid: 419 components: - type: Transform pos: 8.5,-3.5 parent: 1 - - uid: 1311 + - uid: 420 components: - type: Transform pos: 8.5,-3.5 parent: 1 - - uid: 1312 + - uid: 421 components: - type: Transform pos: 8.5,-1.5 parent: 1 - - uid: 1313 + - uid: 422 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 1314 + - uid: 423 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 1315 + - uid: 424 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 1316 + - uid: 425 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 1317 + - uid: 426 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 1318 + - uid: 427 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 1319 + - uid: 428 components: - type: Transform pos: 4.5,9.5 parent: 1 - - uid: 1320 + - uid: 429 components: - type: Transform pos: 4.5,10.5 parent: 1 - - uid: 1321 + - uid: 430 components: - type: Transform pos: 4.5,11.5 parent: 1 - - uid: 1322 + - uid: 431 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 1323 + - uid: 432 components: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 1324 + - uid: 433 components: - type: Transform pos: 2.5,10.5 parent: 1 - - uid: 1325 + - uid: 434 components: - type: Transform pos: 2.5,11.5 parent: 1 - - uid: 1326 + - uid: 435 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 1327 + - uid: 436 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 1328 + - uid: 437 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 1329 + - uid: 438 components: - type: Transform pos: 5.5,7.5 parent: 1 - - uid: 1330 + - uid: 439 components: - type: Transform pos: 6.5,7.5 parent: 1 - - uid: 1331 + - uid: 440 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 1332 + - uid: 441 components: - type: Transform pos: 6.5,9.5 parent: 1 - - uid: 1333 + - uid: 442 components: - type: Transform pos: 6.5,10.5 parent: 1 - - uid: 1334 + - uid: 443 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 1335 + - uid: 444 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 1336 + - uid: 445 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 1337 + - uid: 446 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 1338 + - uid: 447 components: - type: Transform pos: -3.5,5.5 parent: 1 - - uid: 1339 + - uid: 448 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 1340 + - uid: 449 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 1341 + - uid: 450 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 1342 + - uid: 451 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 1343 + - uid: 452 components: - type: Transform pos: -4.5,-6.5 parent: 1 - - uid: 1344 + - uid: 453 components: - type: Transform pos: -3.5,-6.5 parent: 1 - - uid: 1345 + - uid: 454 components: - type: Transform pos: -2.5,-6.5 parent: 1 - - uid: 1346 + - uid: 455 components: - type: Transform pos: -1.5,-6.5 parent: 1 - - uid: 1347 + - uid: 456 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 1348 + - uid: 457 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 1349 + - uid: 458 components: - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 1350 + - uid: 459 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 1351 + - uid: 460 components: - type: Transform pos: -1.5,-13.5 parent: 1 - - uid: 1352 + - uid: 461 components: - type: Transform pos: -6.5,-13.5 parent: 1 - - uid: 1353 + - uid: 462 components: - type: Transform pos: -7.5,-13.5 parent: 1 - - uid: 1354 + - uid: 463 components: - type: Transform pos: -8.5,-13.5 parent: 1 - - uid: 1355 + - uid: 464 components: - type: Transform pos: -8.5,-12.5 parent: 1 - - uid: 1356 + - uid: 465 components: - type: Transform pos: -8.5,-11.5 parent: 1 - - uid: 1357 + - uid: 466 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 1358 + - uid: 467 components: - type: Transform pos: -8.5,-14.5 parent: 1 - - uid: 1359 + - uid: 468 components: - type: Transform pos: -8.5,-15.5 parent: 1 - - uid: 1360 + - uid: 469 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 1361 + - uid: 470 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 1362 + - uid: 471 components: - type: Transform pos: -7.5,5.5 parent: 1 - - uid: 1363 + - uid: 472 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 1364 + - uid: 473 components: - type: Transform pos: -7.5,3.5 parent: 1 - - uid: 1365 + - uid: 474 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 1366 + - uid: 475 components: - type: Transform pos: -7.5,6.5 parent: 1 - - uid: 1367 + - uid: 476 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 1368 + - uid: 477 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 1369 + - uid: 478 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 1370 + - uid: 479 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 1371 + - uid: 480 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 1372 + - uid: 481 components: - type: Transform pos: -4.5,12.5 parent: 1 - - uid: 1373 + - uid: 482 components: - type: Transform pos: -5.5,12.5 parent: 1 - - uid: 1385 + - uid: 483 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 1386 + - uid: 484 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 1387 + - uid: 485 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 1388 + - uid: 486 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 1389 + - uid: 487 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 1390 + - uid: 488 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 1391 + - uid: 489 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 1392 + - uid: 490 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 1393 + - uid: 491 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1394 + - uid: 492 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 1395 + - uid: 493 components: - type: Transform pos: 8.5,-18.5 parent: 1 - - uid: 1396 + - uid: 494 components: - type: Transform pos: 9.5,-18.5 parent: 1 - - uid: 1397 + - uid: 495 components: - type: Transform pos: 10.5,-18.5 parent: 1 - - uid: 1399 + - uid: 496 components: - type: Transform pos: 8.5,-2.5 parent: 1 - - uid: 1496 + - uid: 497 components: - type: Transform pos: 12.5,-24.5 parent: 1 - - uid: 1571 + - uid: 498 components: - type: Transform pos: 1.5,-25.5 parent: 1 - - uid: 1572 + - uid: 499 components: - type: Transform pos: 2.5,-25.5 parent: 1 - - uid: 1573 + - uid: 500 components: - type: Transform pos: 3.5,-25.5 parent: 1 - - uid: 1574 + - uid: 501 components: - type: Transform pos: 4.5,-25.5 parent: 1 - - uid: 1575 + - uid: 502 components: - type: Transform pos: 5.5,-25.5 parent: 1 - - uid: 1576 + - uid: 503 components: - type: Transform pos: 7.5,-25.5 parent: 1 - - uid: 1577 + - uid: 504 components: - type: Transform pos: 8.5,-25.5 parent: 1 - - uid: 1578 + - uid: 505 components: - type: Transform pos: 9.5,-25.5 parent: 1 - - uid: 1579 + - uid: 506 components: - type: Transform pos: 9.5,-24.5 parent: 1 - - uid: 1580 + - uid: 507 components: - type: Transform pos: 9.5,-23.5 parent: 1 - - uid: 1581 + - uid: 508 components: - type: Transform pos: 9.5,-22.5 parent: 1 - - uid: 1582 + - uid: 509 components: - type: Transform pos: 5.5,-21.5 parent: 1 - - uid: 1583 + - uid: 510 components: - type: Transform pos: 4.5,-21.5 parent: 1 - - uid: 1584 + - uid: 511 components: - type: Transform pos: 1.5,-17.5 parent: 1 - - uid: 1585 + - uid: 512 components: - type: Transform pos: 1.5,-16.5 parent: 1 - - uid: 1586 + - uid: 513 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 1587 + - uid: 514 components: - type: Transform pos: 1.5,-14.5 parent: 1 - - uid: 1588 + - uid: 515 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 1589 + - uid: 516 components: - type: Transform pos: 1.5,-12.5 parent: 1 - - uid: 1590 + - uid: 517 components: - type: Transform pos: 1.5,-11.5 parent: 1 - - uid: 1591 + - uid: 518 components: - type: Transform pos: 1.5,-10.5 parent: 1 - - uid: 1592 + - uid: 519 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 1593 + - uid: 520 components: - type: Transform pos: 1.5,-8.5 parent: 1 - - uid: 1594 + - uid: 521 components: - type: Transform pos: 1.5,-7.5 parent: 1 - - uid: 1595 + - uid: 522 components: - type: Transform pos: 1.5,-6.5 parent: 1 - - uid: 1596 + - uid: 523 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 1597 + - uid: 524 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 1624 + - uid: 525 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 1629 + - uid: 526 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 1630 + - uid: 527 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 1631 + - uid: 528 components: - type: Transform pos: 7.5,9.5 parent: 1 - - uid: 1632 + - uid: 529 components: - type: Transform pos: 7.5,10.5 parent: 1 - - uid: 1633 + - uid: 530 components: - type: Transform pos: 7.5,12.5 parent: 1 - - uid: 1634 + - uid: 531 components: - type: Transform pos: 6.5,-31.5 parent: 1 - - uid: 1653 + - uid: 532 components: - type: Transform pos: -4.5,-29.5 parent: 1 - - uid: 1654 + - uid: 533 components: - type: Transform pos: -4.5,-28.5 parent: 1 - - uid: 1664 + - uid: 534 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 1713 + - uid: 535 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 1714 + - uid: 536 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 1715 + - uid: 537 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1716 + - uid: 538 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 1717 + - uid: 539 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 1718 + - uid: 540 components: - type: Transform pos: 5.5,14.5 parent: 1 - - uid: 1719 + - uid: 541 components: - type: Transform pos: 5.5,15.5 parent: 1 - - uid: 1720 + - uid: 542 components: - type: Transform pos: 5.5,16.5 parent: 1 - - uid: 1722 + - uid: 543 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 1723 + - uid: 544 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 1728 + - uid: 545 components: - type: Transform pos: 5.5,-31.5 parent: 1 - - uid: 1731 + - uid: 546 components: - type: Transform pos: 3.5,-31.5 parent: 1 - - uid: 1732 + - uid: 547 components: - type: Transform pos: 4.5,-31.5 parent: 1 - - uid: 1733 + - uid: 548 components: - type: Transform pos: 7.5,-31.5 parent: 1 - - uid: 1734 + - uid: 549 components: - type: Transform pos: -6.5,-31.5 parent: 1 - - uid: 1735 + - uid: 550 components: - type: Transform pos: -10.5,-20.5 parent: 1 - - uid: 1737 + - uid: 551 components: - type: Transform pos: 2.5,-31.5 parent: 1 - - uid: 1742 + - uid: 552 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 1780 + - uid: 553 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 1781 + - uid: 554 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 1782 + - uid: 555 components: - type: Transform pos: 8.5,0.5 parent: 1 - - uid: 1783 + - uid: 556 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 1784 + - uid: 557 components: - type: Transform pos: 9.5,0.5 parent: 1 - - uid: 1785 + - uid: 558 components: - type: Transform pos: 9.5,-3.5 parent: 1 - - uid: 1786 + - uid: 559 components: - type: Transform pos: 10.5,-3.5 parent: 1 - - uid: 1788 + - uid: 560 components: - type: Transform pos: 11.5,-20.5 parent: 1 - - uid: 1789 + - uid: 561 components: - type: Transform pos: -9.5,-8.5 parent: 1 - - uid: 1790 + - uid: 562 components: - type: Transform pos: -8.5,-8.5 parent: 1 - - uid: 1791 + - uid: 563 components: - type: Transform pos: -8.5,-9.5 parent: 1 - - uid: 1792 + - uid: 564 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 1793 + - uid: 565 components: - type: Transform pos: -9.5,-10.5 parent: 1 - - uid: 1794 + - uid: 566 components: - type: Transform pos: -9.5,-7.5 parent: 1 - - uid: 1795 + - uid: 567 components: - type: Transform pos: -9.5,-6.5 parent: 1 - - uid: 1796 + - uid: 568 components: - type: Transform pos: -9.5,-5.5 parent: 1 - - uid: 1797 + - uid: 569 components: - type: Transform pos: -9.5,-4.5 parent: 1 - - uid: 1798 + - uid: 570 components: - type: Transform pos: -5.5,10.5 parent: 1 - - uid: 1799 + - uid: 571 components: - type: Transform pos: 2.5,15.5 parent: 1 - - uid: 1800 + - uid: 572 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 1801 + - uid: 573 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 1802 + - uid: 574 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 1803 + - uid: 575 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 1804 + - uid: 576 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 1805 + - uid: 577 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 1806 + - uid: 578 components: - type: Transform pos: 6.5,15.5 parent: 1 - proto: CableHV entities: - - uid: 889 + - uid: 579 components: - type: Transform pos: -6.5,-29.5 parent: 1 - - uid: 902 + - uid: 580 components: - type: Transform pos: -6.5,-28.5 parent: 1 - - uid: 905 + - uid: 581 components: - type: Transform pos: -5.5,-29.5 parent: 1 - - uid: 906 + - uid: 582 components: - type: Transform pos: -4.5,-29.5 parent: 1 - - uid: 907 + - uid: 583 components: - type: Transform pos: -3.5,-29.5 parent: 1 - - uid: 908 + - uid: 584 components: - type: Transform pos: -3.5,-30.5 parent: 1 - - uid: 909 + - uid: 585 components: - type: Transform pos: -2.5,-30.5 parent: 1 - - uid: 910 + - uid: 586 components: - type: Transform pos: -1.5,-30.5 parent: 1 - - uid: 911 + - uid: 587 components: - type: Transform pos: -0.5,-30.5 parent: 1 - - uid: 912 + - uid: 588 components: - type: Transform pos: 0.5,-30.5 parent: 1 - - uid: 913 + - uid: 589 components: - type: Transform pos: 1.5,-30.5 parent: 1 - - uid: 914 + - uid: 590 components: - type: Transform pos: 2.5,-30.5 parent: 1 - - uid: 915 + - uid: 591 components: - type: Transform pos: 3.5,-30.5 parent: 1 - - uid: 916 + - uid: 592 components: - type: Transform pos: 4.5,-30.5 parent: 1 - - uid: 917 + - uid: 593 components: - type: Transform pos: 4.5,-29.5 parent: 1 - - uid: 918 + - uid: 594 components: - type: Transform pos: 5.5,-29.5 parent: 1 - - uid: 919 + - uid: 595 components: - type: Transform pos: 6.5,-29.5 parent: 1 - - uid: 920 + - uid: 596 components: - type: Transform pos: 7.5,-29.5 parent: 1 - - uid: 921 + - uid: 597 components: - type: Transform pos: 7.5,-28.5 parent: 1 - - uid: 922 + - uid: 598 components: - type: Transform pos: 0.5,-29.5 parent: 1 - - uid: 923 + - uid: 599 components: - type: Transform pos: 0.5,-28.5 parent: 1 - - uid: 924 + - uid: 600 components: - type: Transform pos: 0.5,-27.5 parent: 1 - - uid: 925 + - uid: 601 components: - type: Transform pos: 0.5,-26.5 parent: 1 - - uid: 926 + - uid: 602 components: - type: Transform pos: 0.5,-25.5 parent: 1 - - uid: 927 + - uid: 603 components: - type: Transform pos: -0.5,-25.5 parent: 1 - - uid: 928 + - uid: 604 components: - type: Transform pos: -1.5,-25.5 parent: 1 - - uid: 929 + - uid: 605 components: - type: Transform pos: -1.5,-24.5 parent: 1 - - uid: 930 + - uid: 606 components: - type: Transform pos: -1.5,-26.5 parent: 1 - - uid: 1647 + - uid: 607 components: - type: Transform pos: -6.5,-30.5 parent: 1 - - uid: 1771 + - uid: 608 components: - type: Transform pos: -5.5,-28.5 parent: 1 - proto: CableMV entities: - - uid: 941 + - uid: 609 components: - type: Transform pos: 7.5,-29.5 parent: 1 - - uid: 942 + - uid: 610 components: - type: Transform pos: 6.5,-29.5 parent: 1 - - uid: 943 + - uid: 611 components: - type: Transform pos: 5.5,-29.5 parent: 1 - - uid: 944 + - uid: 612 components: - type: Transform pos: 4.5,-29.5 parent: 1 - - uid: 945 + - uid: 613 components: - type: Transform pos: 3.5,-29.5 parent: 1 - - uid: 946 + - uid: 614 components: - type: Transform pos: 2.5,-29.5 parent: 1 - - uid: 947 + - uid: 615 components: - type: Transform pos: 2.5,-30.5 parent: 1 - - uid: 948 + - uid: 616 components: - type: Transform pos: 1.5,-30.5 parent: 1 - - uid: 949 + - uid: 617 components: - type: Transform pos: 0.5,-30.5 parent: 1 - - uid: 950 + - uid: 618 components: - type: Transform pos: 0.5,-29.5 parent: 1 - - uid: 951 + - uid: 619 components: - type: Transform pos: 0.5,-28.5 parent: 1 - - uid: 952 + - uid: 620 components: - type: Transform pos: 0.5,-27.5 parent: 1 - - uid: 953 + - uid: 621 components: - type: Transform pos: 0.5,-26.5 parent: 1 - - uid: 954 + - uid: 622 components: - type: Transform pos: 0.5,-25.5 parent: 1 - - uid: 955 + - uid: 623 components: - type: Transform pos: 0.5,-24.5 parent: 1 - - uid: 956 + - uid: 624 components: - type: Transform pos: 1.5,-24.5 parent: 1 - - uid: 957 + - uid: 625 components: - type: Transform pos: 1.5,-23.5 parent: 1 - - uid: 958 + - uid: 626 components: - type: Transform pos: 1.5,-22.5 parent: 1 - - uid: 959 + - uid: 627 components: - type: Transform pos: 0.5,-22.5 parent: 1 - - uid: 960 + - uid: 628 components: - type: Transform pos: -0.5,-22.5 parent: 1 - - uid: 961 + - uid: 629 components: - type: Transform pos: -1.5,-22.5 parent: 1 - - uid: 962 + - uid: 630 components: - type: Transform pos: -0.5,-21.5 parent: 1 - - uid: 963 + - uid: 631 components: - type: Transform pos: 2.5,-22.5 parent: 1 - - uid: 964 + - uid: 632 components: - type: Transform pos: 3.5,-22.5 parent: 1 - - uid: 965 + - uid: 633 components: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 966 + - uid: 634 components: - type: Transform pos: -0.5,-27.5 parent: 1 - - uid: 967 + - uid: 635 components: - type: Transform pos: -1.5,-27.5 parent: 1 - - uid: 968 + - uid: 636 components: - type: Transform pos: -0.5,-25.5 parent: 1 - - uid: 969 + - uid: 637 components: - type: Transform pos: -1.5,-25.5 parent: 1 - - uid: 970 + - uid: 638 components: - type: Transform pos: -2.5,-25.5 parent: 1 - - uid: 971 + - uid: 639 components: - type: Transform pos: -3.5,-25.5 parent: 1 - - uid: 972 + - uid: 640 components: - type: Transform pos: -4.5,-25.5 parent: 1 - - uid: 973 + - uid: 641 components: - type: Transform pos: -5.5,-25.5 parent: 1 - - uid: 974 + - uid: 642 components: - type: Transform pos: -6.5,-25.5 parent: 1 - - uid: 975 + - uid: 643 components: - type: Transform pos: -7.5,-25.5 parent: 1 - - uid: 976 + - uid: 644 components: - type: Transform pos: -7.5,-24.5 parent: 1 - - uid: 977 + - uid: 645 components: - type: Transform pos: -5.5,-24.5 parent: 1 - - uid: 978 + - uid: 646 components: - type: Transform pos: -5.5,-23.5 parent: 1 - - uid: 979 + - uid: 647 components: - type: Transform pos: -5.5,-22.5 parent: 1 - - uid: 980 + - uid: 648 components: - type: Transform pos: -5.5,-21.5 parent: 1 - - uid: 981 + - uid: 649 components: - type: Transform pos: -5.5,-20.5 parent: 1 - - uid: 982 + - uid: 650 components: - type: Transform pos: -5.5,-19.5 parent: 1 - - uid: 983 + - uid: 651 components: - type: Transform pos: -5.5,-18.5 parent: 1 - - uid: 984 + - uid: 652 components: - type: Transform pos: -5.5,-17.5 parent: 1 - - uid: 985 + - uid: 653 components: - type: Transform pos: -6.5,-17.5 parent: 1 - - uid: 986 + - uid: 654 components: - type: Transform pos: -7.5,-17.5 parent: 1 - - uid: 987 + - uid: 655 components: - type: Transform pos: -5.5,-16.5 parent: 1 - - uid: 988 + - uid: 656 components: - type: Transform pos: -5.5,-15.5 parent: 1 - - uid: 989 + - uid: 657 components: - type: Transform pos: -5.5,-14.5 parent: 1 - - uid: 990 + - uid: 658 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 991 + - uid: 659 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 992 + - uid: 660 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 993 + - uid: 661 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 994 + - uid: 662 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 995 + - uid: 663 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 996 + - uid: 664 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 997 + - uid: 665 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 998 + - uid: 666 components: - type: Transform pos: -6.5,-6.5 parent: 1 - - uid: 999 + - uid: 667 components: - type: Transform pos: -7.5,-6.5 parent: 1 - - uid: 1000 + - uid: 668 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 1001 + - uid: 669 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 1002 + - uid: 670 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 1003 + - uid: 671 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 1004 + - uid: 672 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 1005 + - uid: 673 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 1006 + - uid: 674 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 1007 + - uid: 675 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 1008 + - uid: 676 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 1009 + - uid: 677 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 1010 + - uid: 678 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 1011 + - uid: 679 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 1012 + - uid: 680 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 1013 + - uid: 681 components: - type: Transform pos: -5.5,4.5 parent: 1 - - uid: 1014 + - uid: 682 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 1015 + - uid: 683 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 1016 + - uid: 684 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 1017 + - uid: 685 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 1018 + - uid: 686 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 1019 + - uid: 687 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 1020 + - uid: 688 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 1021 + - uid: 689 components: - type: Transform pos: -1.5,7.5 parent: 1 - - uid: 1022 + - uid: 690 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 1023 + - uid: 691 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 1024 + - uid: 692 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 1025 + - uid: 693 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 1026 + - uid: 694 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 1027 + - uid: 695 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 1028 + - uid: 696 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 1029 + - uid: 697 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 1030 + - uid: 698 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 1031 + - uid: 699 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 1032 + - uid: 700 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 1033 + - uid: 701 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 1034 + - uid: 702 components: - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 1035 + - uid: 703 components: - type: Transform pos: -0.5,-5.5 parent: 1 - - uid: 1036 + - uid: 704 components: - type: Transform pos: -0.5,-6.5 parent: 1 - - uid: 1037 + - uid: 705 components: - type: Transform pos: -0.5,-7.5 parent: 1 - - uid: 1038 + - uid: 706 components: - type: Transform pos: -0.5,-8.5 parent: 1 - - uid: 1039 + - uid: 707 components: - type: Transform pos: -0.5,-9.5 parent: 1 - - uid: 1040 + - uid: 708 components: - type: Transform pos: -0.5,-10.5 parent: 1 - - uid: 1041 + - uid: 709 components: - type: Transform pos: -0.5,-11.5 parent: 1 - - uid: 1042 + - uid: 710 components: - type: Transform pos: -0.5,-12.5 parent: 1 - - uid: 1043 + - uid: 711 components: - type: Transform pos: -0.5,-13.5 parent: 1 - - uid: 1044 + - uid: 712 components: - type: Transform pos: -0.5,-14.5 parent: 1 - - uid: 1045 + - uid: 713 components: - type: Transform pos: -0.5,-15.5 parent: 1 - - uid: 1046 + - uid: 714 components: - type: Transform pos: -0.5,-16.5 parent: 1 - - uid: 1047 + - uid: 715 components: - type: Transform pos: -0.5,-17.5 parent: 1 - - uid: 1048 + - uid: 716 components: - type: Transform pos: -0.5,-18.5 parent: 1 - - uid: 1049 + - uid: 717 components: - type: Transform pos: -0.5,-19.5 parent: 1 - - uid: 1050 + - uid: 718 components: - type: Transform pos: -0.5,-20.5 parent: 1 - - uid: 1051 + - uid: 719 components: - type: Transform pos: -0.5,-21.5 parent: 1 - - uid: 1052 + - uid: 720 components: - type: Transform pos: -2.5,-22.5 parent: 1 - - uid: 1053 + - uid: 721 components: - type: Transform pos: -3.5,-22.5 parent: 1 - - uid: 1054 + - uid: 722 components: - type: Transform pos: -4.5,-22.5 parent: 1 - - uid: 1055 + - uid: 723 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - uid: 1056 + - uid: 724 components: - type: Transform pos: 1.5,-19.5 parent: 1 - - uid: 1057 + - uid: 725 components: - type: Transform pos: 2.5,-19.5 parent: 1 - - uid: 1058 + - uid: 726 components: - type: Transform pos: 3.5,-19.5 parent: 1 - - uid: 1059 + - uid: 727 components: - type: Transform pos: 3.5,-20.5 parent: 1 - - uid: 1060 + - uid: 728 components: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 1061 + - uid: 729 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 1062 + - uid: 730 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 1063 + - uid: 731 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 1064 + - uid: 732 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 1065 + - uid: 733 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 1066 + - uid: 734 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 1067 + - uid: 735 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 1068 + - uid: 736 components: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 1069 + - uid: 737 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 1070 + - uid: 738 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 1071 + - uid: 739 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 1072 + - uid: 740 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 1073 + - uid: 741 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 1074 + - uid: 742 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 1075 + - uid: 743 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 1076 + - uid: 744 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 1077 + - uid: 745 components: - type: Transform pos: 4.5,7.5 parent: 1 - - uid: 1078 + - uid: 746 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 1079 + - uid: 747 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 1080 + - uid: 748 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 1379 + - uid: 749 components: - type: Transform pos: -6.5,-29.5 parent: 1 - - uid: 1380 + - uid: 750 components: - type: Transform pos: -5.5,-29.5 parent: 1 - - uid: 1381 + - uid: 751 components: - type: Transform pos: -4.5,-29.5 parent: 1 - - uid: 1382 + - uid: 752 components: - type: Transform pos: -3.5,-29.5 parent: 1 - - uid: 1383 + - uid: 753 components: - type: Transform pos: -3.5,-30.5 parent: 1 - - uid: 1384 + - uid: 754 components: - type: Transform pos: -2.5,-30.5 parent: 1 - - uid: 1601 + - uid: 755 components: - type: Transform pos: -1.5,-30.5 parent: 1 - - uid: 1652 + - uid: 756 components: - type: Transform pos: -0.5,-30.5 parent: 1 - proto: CableTerminal entities: - - uid: 1770 + - uid: 757 components: - type: Transform rot: -1.5707963267948966 rad @@ -7661,487 +7901,472 @@ entities: parent: 1 - proto: CarpetBlack entities: - - uid: 647 + - uid: 758 components: - type: Transform pos: -8.5,-25.5 parent: 1 - - uid: 648 + - uid: 759 components: - type: Transform pos: -8.5,-24.5 parent: 1 - - uid: 649 + - uid: 760 components: - type: Transform pos: -8.5,-23.5 parent: 1 - - uid: 650 + - uid: 761 components: - type: Transform pos: -9.5,-25.5 parent: 1 - - uid: 651 + - uid: 762 components: - type: Transform pos: -9.5,-24.5 parent: 1 - - uid: 652 + - uid: 763 components: - type: Transform pos: -9.5,-23.5 parent: 1 - proto: CarpetPurple entities: - - uid: 562 + - uid: 764 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 563 + - uid: 765 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 565 + - uid: 766 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 566 + - uid: 767 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 567 + - uid: 768 components: - type: Transform pos: -4.5,4.5 parent: 1 - - uid: 568 + - uid: 769 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 569 + - uid: 770 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 570 + - uid: 771 components: - type: Transform pos: -3.5,4.5 parent: 1 - proto: CartridgeRailHighExplosive entities: - - uid: 326 + - uid: 1745 components: - type: Transform - parent: 324 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - uid: 393 + pos: 3.6922448,6.6476736 + parent: 1 + - uid: 1746 components: - type: Transform - parent: 324 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - uid: 478 + pos: 3.5132082,6.4360847 + parent: 1 + - uid: 1747 components: - type: Transform - parent: 324 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - uid: 847 + pos: 3.5132082,6.2570486 + parent: 1 + - uid: 1748 components: - type: Transform - parent: 324 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - uid: 1400 + pos: 3.5132082,6.6151214 + parent: 1 + - uid: 1749 components: - type: Transform - parent: 324 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False + pos: 3.4969323,6.501189 + parent: 1 - proto: Catwalk entities: - - uid: 148 + - uid: 772 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-13.5 parent: 1 - - uid: 150 + - uid: 773 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-12.5 parent: 1 - - uid: 152 + - uid: 774 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-14.5 parent: 1 - - uid: 164 + - uid: 775 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-13.5 parent: 1 - - uid: 251 + - uid: 776 components: - type: Transform pos: 2.5,-5.5 parent: 1 - - uid: 252 + - uid: 777 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 253 + - uid: 778 components: - type: Transform pos: 1.5,-6.5 parent: 1 - - uid: 254 + - uid: 779 components: - type: Transform pos: 1.5,-7.5 parent: 1 - - uid: 255 + - uid: 780 components: - type: Transform pos: 1.5,-8.5 parent: 1 - - uid: 256 + - uid: 781 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 257 + - uid: 782 components: - type: Transform pos: 1.5,-10.5 parent: 1 - - uid: 258 + - uid: 783 components: - type: Transform pos: 1.5,-11.5 parent: 1 - - uid: 259 + - uid: 784 components: - type: Transform pos: 1.5,-12.5 parent: 1 - - uid: 260 + - uid: 785 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 261 + - uid: 786 components: - type: Transform pos: 1.5,-14.5 parent: 1 - - uid: 262 + - uid: 787 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 263 + - uid: 788 components: - type: Transform pos: 1.5,-16.5 parent: 1 - - uid: 264 + - uid: 789 components: - type: Transform pos: 2.5,-16.5 parent: 1 - - uid: 360 + - uid: 790 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 392 + - uid: 791 components: - type: Transform pos: 4.5,11.5 parent: 1 - - uid: 412 + - uid: 792 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-24.5 parent: 1 - - uid: 413 + - uid: 793 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-24.5 parent: 1 - - uid: 415 + - uid: 794 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-22.5 parent: 1 - - uid: 416 + - uid: 795 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-23.5 parent: 1 - - uid: 418 + - uid: 796 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-22.5 parent: 1 - - uid: 420 + - uid: 797 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-26.5 parent: 1 - - uid: 428 + - uid: 798 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-30.5 parent: 1 - - uid: 429 + - uid: 799 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-28.5 parent: 1 - - uid: 430 + - uid: 800 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-25.5 parent: 1 - - uid: 432 + - uid: 801 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-27.5 parent: 1 - - uid: 433 + - uid: 802 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-30.5 parent: 1 - - uid: 434 + - uid: 803 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-29.5 parent: 1 - - uid: 552 + - uid: 804 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-19.5 parent: 1 - - uid: 596 + - uid: 805 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-19.5 parent: 1 - - uid: 599 + - uid: 806 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-18.5 parent: 1 - - uid: 638 + - uid: 807 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-19.5 parent: 1 - - uid: 1660 + - uid: 808 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-7.5 parent: 1 - - uid: 1665 + - uid: 809 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-7.5 parent: 1 - - uid: 1666 + - uid: 810 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 1667 + - uid: 811 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-6.5 parent: 1 - - uid: 1668 + - uid: 812 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-5.5 parent: 1 - - uid: 1669 + - uid: 813 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 1670 + - uid: 814 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-4.5 parent: 1 - - uid: 1671 + - uid: 815 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,9.5 parent: 1 - - uid: 1672 + - uid: 816 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,7.5 parent: 1 - - uid: 1673 + - uid: 817 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 1678 + - uid: 818 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 1699 + - uid: 819 components: - type: Transform pos: 5.5,9.5 parent: 1 - - uid: 1700 + - uid: 820 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 1701 + - uid: 821 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 1702 + - uid: 822 components: - type: Transform pos: 4.5,10.5 parent: 1 - - uid: 1703 + - uid: 823 components: - type: Transform pos: 4.5,9.5 parent: 1 - - uid: 1724 + - uid: 824 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 1725 + - uid: 825 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 1730 + - uid: 826 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 1758 + - uid: 827 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 1759 + - uid: 828 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 1760 + - uid: 829 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 1765 + - uid: 830 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-15.5 parent: 1 - - uid: 1773 + - uid: 831 components: - type: Transform pos: 9.5,2.5 parent: 1 - - uid: 1774 + - uid: 832 components: - type: Transform pos: 9.5,3.5 parent: 1 - - uid: 1775 + - uid: 833 components: - type: Transform pos: 9.5,4.5 parent: 1 - proto: ChairFolding entities: - - uid: 524 + - uid: 834 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.363054,-19.397055 parent: 1 - - uid: 525 + - uid: 835 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.675554,-19.41268 parent: 1 - - uid: 526 + - uid: 836 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.675554,-19.41268 parent: 1 - - uid: 734 + - uid: 837 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.750229,-22.76684 parent: 1 - - uid: 736 + - uid: 838 components: - type: Transform rot: -1.5707963267948966 rad @@ -8149,26 +8374,26 @@ entities: parent: 1 - proto: ChairOfficeDark entities: - - uid: 559 + - uid: 839 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.325447,-29.204823 parent: 1 - - uid: 631 + - uid: 840 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.422879,-19.352354 parent: 1 - - uid: 724 + - uid: 841 components: - type: Transform pos: -5.5834303,-8.422228 parent: 1 - proto: ChairPilotSeat entities: - - uid: 1772 + - uid: 842 components: - type: Transform rot: 3.141592653589793 rad @@ -8176,108 +8401,108 @@ entities: parent: 1 - proto: ChairWood entities: - - uid: 581 + - uid: 843 components: - type: Transform pos: -5.4415607,3.1557019 parent: 1 - proto: ChemDispenser entities: - - uid: 470 + - uid: 844 components: - type: Transform pos: -6.5,-6.5 parent: 1 - proto: ChemistryHotplate entities: - - uid: 722 + - uid: 845 components: - type: Transform pos: -5.5,-9.5 parent: 1 - proto: ChemMaster entities: - - uid: 688 + - uid: 846 components: - type: Transform pos: -6.5,-7.5 parent: 1 - proto: CloningPod entities: - - uid: 677 + - uid: 847 components: - type: Transform pos: -5.5,-3.5 parent: 1 - proto: ClosetEmergencyFilledRandom entities: - - uid: 607 + - uid: 848 components: - type: Transform pos: -2.5,-17.5 parent: 1 - - uid: 617 + - uid: 849 components: - type: Transform pos: -6.5,-24.5 parent: 1 - proto: ClothingBackpackDuffelSurgeryAdvancedFilled entities: - - uid: 887 + - uid: 850 components: - type: Transform pos: -3.3814595,-5.8999166 parent: 1 - - uid: 1374 + - uid: 851 components: - type: Transform pos: -3.4363146,-5.5297155 parent: 1 - - uid: 1375 + - uid: 852 components: - type: Transform pos: -3.4363146,-5.337759 parent: 1 - proto: ClothingHeadHelmetImperialEVA entities: - - uid: 730 + - uid: 56 components: - type: Transform - parent: 645 + parent: 54 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 804 + - uid: 61 components: - type: Transform - parent: 748 + parent: 59 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 806 + - uid: 854 components: - type: Transform - parent: 805 + parent: 853 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 1639 + - uid: 860 components: - type: Transform - parent: 741 + parent: 859 - type: Physics + angularDamping: 0 + linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 1641 + - uid: 866 components: - type: Transform - parent: 742 + parent: 865 - type: Physics angularDamping: 0 linearDamping: 0 @@ -8285,34 +8510,34 @@ entities: - type: InsideEntityStorage - proto: ClothingHeadsetEmpire entities: - - uid: 619 + - uid: 871 components: - type: Transform pos: -6.560283,-25.952425 parent: 1 - - uid: 620 + - uid: 872 components: - type: Transform pos: -6.560283,-25.952425 parent: 1 - - uid: 621 + - uid: 873 components: - type: Transform pos: -6.372783,-25.9993 parent: 1 - proto: ClothingMaskImperialCombatGasmask entities: - - uid: 1636 + - uid: 57 components: - type: Transform - parent: 741 + parent: 54 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1642 + - uid: 62 components: - type: Transform - parent: 742 + parent: 59 - type: Physics angularDamping: 0 linearDamping: 0 @@ -8320,44 +8545,44 @@ entities: - type: InsideEntityStorage - proto: ClothingOuterCoatImperialSoftsuit entities: - - uid: 747 + - uid: 58 components: - type: Transform - parent: 645 + parent: 54 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 797 + - uid: 63 components: - type: Transform - parent: 748 + parent: 59 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 808 + - uid: 855 components: - type: Transform - parent: 805 + parent: 853 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 1637 + - uid: 861 components: - type: Transform - parent: 741 + parent: 859 - type: Physics + angularDamping: 0 + linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 1643 + - uid: 867 components: - type: Transform - parent: 742 + parent: 865 - type: Physics angularDamping: 0 linearDamping: 0 @@ -8365,28 +8590,28 @@ entities: - type: InsideEntityStorage - proto: ClothingShoesBootsMag entities: - - uid: 669 + - uid: 856 components: - type: Transform - parent: 645 + parent: 853 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 801 + - uid: 862 components: - type: Transform - parent: 748 + parent: 859 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 810 + - uid: 868 components: - type: Transform - parent: 805 + parent: 865 - type: Physics angularDamping: 0 linearDamping: 0 @@ -8394,36 +8619,36 @@ entities: - type: InsideEntityStorage - proto: Cobweb1 entities: - - uid: 820 + - uid: 874 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 821 + - uid: 875 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,7.5 parent: 1 - - uid: 837 + - uid: 876 components: - type: Transform pos: 2.5,7.5 parent: 1 - proto: Cobweb2 entities: - - uid: 155 + - uid: 877 components: - type: Transform pos: 9.5,-24.5 parent: 1 - - uid: 802 + - uid: 878 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-18.5 parent: 1 - - uid: 803 + - uid: 879 components: - type: Transform rot: 1.5707963267948966 rad @@ -8431,14 +8656,14 @@ entities: parent: 1 - proto: ComputerAdvancedRadar entities: - - uid: 1497 + - uid: 880 components: - type: Transform pos: 6.5,-23.5 parent: 1 - proto: ComputerBankATM entities: - - uid: 469 + - uid: 881 components: - type: Transform rot: -1.5707963267948966 rad @@ -8456,14 +8681,14 @@ entities: ents: [] - proto: ComputerCloningConsole entities: - - uid: 680 + - uid: 882 components: - type: Transform pos: -4.5,-3.5 parent: 1 - proto: ComputerRadar entities: - - uid: 880 + - uid: 883 components: - type: Transform rot: 3.141592653589793 rad @@ -8471,11 +8696,16 @@ entities: parent: 1 - proto: ComputerShuttle entities: - - uid: 813 + - uid: 884 components: - type: Transform pos: 7.5,-23.5 parent: 1 + - type: DeviceLinkSource + linkedPorts: + 6: + - - Group1 + - SpaceArtilleryFire - type: ContainerContainer containers: board: !type:Container @@ -8499,7 +8729,7 @@ entities: - Module E - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 518 + - uid: 885 components: - type: Transform rot: -1.5707963267948966 rad @@ -8507,13 +8737,13 @@ entities: parent: 1 - proto: ComputerTabletopAlert entities: - - uid: 635 + - uid: 886 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-28.5 parent: 1 - - uid: 838 + - uid: 887 components: - type: Transform rot: -1.5707963267948966 rad @@ -8521,7 +8751,7 @@ entities: parent: 1 - proto: ComputerTabletopCommsShip entities: - - uid: 1536 + - uid: 888 components: - type: Transform rot: 3.141592653589793 rad @@ -8529,7 +8759,7 @@ entities: parent: 1 - proto: ComputerTabletopCrewMonitoring entities: - - uid: 868 + - uid: 889 components: - type: Transform rot: 3.141592653589793 rad @@ -8537,19 +8767,19 @@ entities: parent: 1 - proto: ComputerTabletopPowerMonitoring entities: - - uid: 623 + - uid: 890 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-29.5 parent: 1 - - uid: 624 + - uid: 891 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-23.5 parent: 1 - - uid: 839 + - uid: 892 components: - type: Transform rot: -1.5707963267948966 rad @@ -8557,7 +8787,7 @@ entities: parent: 1 - proto: ComputerTabletopSurveillanceCameraMonitor entities: - - uid: 633 + - uid: 893 components: - type: Transform rot: 1.5707963267948966 rad @@ -8565,7 +8795,7 @@ entities: parent: 1 - proto: ComputerTargeting entities: - - uid: 840 + - uid: 894 components: - type: Transform pos: 8.5,-23.5 @@ -8573,39 +8803,39 @@ entities: - type: TargetingConsole cannonGroups: all: - - 545 - - 561 - - 1540 - - 1541 + - 108 + - 109 + - 110 + - 111 70mm "Jeong" swarmrocket platform: - - 545 - - 561 - - 1540 - - 1541 + - 108 + - 109 + - 110 + - 111 - proto: CoolantCartridge entities: - - uid: 534 + - uid: 896 components: - type: Transform - parent: 500 + parent: 895 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 535 + - uid: 897 components: - type: Transform - parent: 500 + parent: 895 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 536 + - uid: 898 components: - type: Transform - parent: 500 + parent: 895 - type: Physics angularDamping: 0 linearDamping: 0 @@ -8613,19 +8843,19 @@ entities: - type: InsideEntityStorage - proto: CoolantCartridge30 entities: - - uid: 501 + - uid: 899 components: - type: Transform - parent: 500 + parent: 895 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 560 + - uid: 900 components: - type: Transform - parent: 500 + parent: 895 - type: Physics angularDamping: 0 linearDamping: 0 @@ -8633,24 +8863,32 @@ entities: - type: InsideEntityStorage - proto: CrateAutogunAmmo entities: - - uid: 1677 + - uid: 901 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 1679 + - uid: 902 components: - type: Transform pos: -3.5,11.5 parent: 1 - proto: CrateCoolant entities: - - uid: 500 + - uid: 895 components: - type: Transform pos: 2.5,6.5 parent: 1 - type: Lock + lockingSound: !type:SoundPathSpecifier + params: + volume: -5 + path: /Audio/Machines/door_lock_on.ogg + unlockingSound: !type:SoundPathSpecifier + params: + volume: -5 + path: /Audio/Machines/door_lock_off.ogg locked: False - type: EntityStorage air: @@ -8676,48 +8914,60 @@ entities: showEnts: False occludes: True ents: - - 560 - - 501 - - 536 - - 535 - - 534 + - 900 + - 899 + - 898 + - 897 + - 896 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null -- proto: CrateSwarmerAmmo +- proto: CrateJeongAmmo entities: - - uid: 1680 + - uid: 903 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 904 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 1681 +- proto: CrateVulcanAmmo + entities: + - uid: 150 components: - type: Transform - pos: -3.5,10.5 + pos: -4.5,11.5 + parent: 1 + - uid: 1308 + components: + - type: Transform + pos: -4.5,10.5 parent: 1 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 610 + - uid: 905 components: - type: Transform pos: -3.5,-24.5 parent: 1 - - uid: 611 + - uid: 906 components: - type: Transform pos: -3.5,-26.5 parent: 1 - proto: CurtainsBlackOpen entities: - - uid: 695 + - uid: 907 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,0.5 parent: 1 - - uid: 697 + - uid: 908 components: - type: Transform rot: 3.141592653589793 rad @@ -8725,51 +8975,51 @@ entities: parent: 1 - proto: CurtainsPurpleOpen entities: - - uid: 578 + - uid: 909 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,2.5 parent: 1 - - uid: 659 + - uid: 910 components: - type: Transform pos: -8.5,-23.5 parent: 1 - - uid: 660 + - uid: 911 components: - type: Transform pos: -8.5,-25.5 parent: 1 - - uid: 661 + - uid: 912 components: - type: Transform pos: -8.5,-24.5 parent: 1 - proto: DoubleEmergencyOxygenTank entities: - - uid: 646 + - uid: 857 components: - type: Transform - parent: 645 + parent: 853 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 768 + - uid: 863 components: - type: Transform - parent: 748 + parent: 859 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 809 + - uid: 869 components: - type: Transform - parent: 805 + parent: 865 - type: Physics angularDamping: 0 linearDamping: 0 @@ -8777,14 +9027,14 @@ entities: - type: InsideEntityStorage - proto: Dresser entities: - - uid: 579 + - uid: 913 components: - type: Transform pos: -3.5,3.5 parent: 1 - proto: DresserFilled entities: - - uid: 725 + - uid: 914 components: - type: Transform rot: -1.5707963267948966 rad @@ -8792,119 +9042,119 @@ entities: parent: 1 - proto: DrinkColaCan entities: - - uid: 739 + - uid: 915 components: - type: Transform pos: -11.672104,-24.42309 parent: 1 - proto: DrinkGlass entities: - - uid: 704 + - uid: 916 components: - type: Transform pos: -1.6902208,4.7378936 parent: 1 - - uid: 705 + - uid: 917 components: - type: Transform pos: -1.4870958,4.7535186 parent: 1 - - uid: 706 + - uid: 918 components: - type: Transform pos: -1.3620958,4.5972686 parent: 1 - - uid: 707 + - uid: 919 components: - type: Transform pos: -1.5808458,4.4878936 parent: 1 - proto: DrinkRootBeerCan entities: - - uid: 757 + - uid: 920 components: - type: Transform pos: -5.30653,-19.372026 parent: 1 - proto: DrinkWineBottleFull entities: - - uid: 582 + - uid: 921 components: - type: Transform pos: -5.69732,2.8443413 parent: 1 - proto: DrinkWineGlass entities: - - uid: 583 + - uid: 922 components: - type: Transform pos: -5.35357,2.6412163 parent: 1 - proto: Dropper entities: - - uid: 720 + - uid: 923 components: - type: Transform pos: -4.53538,-9.439533 parent: 1 - proto: DSMConscriptAmmoVendory entities: - - uid: 860 + - uid: 924 components: - type: Transform pos: 6.5,-0.5 parent: 1 - proto: DSMConscriptGearVendory entities: - - uid: 595 + - uid: 925 components: - type: Transform pos: 6.5,-2.5 parent: 1 - proto: DSMConscriptShipVendory entities: - - uid: 1603 + - uid: 926 components: - type: Transform pos: 1.5,1.5 parent: 1 - proto: EncryptionKeyEmpire entities: - - uid: 817 + - uid: 928 components: - type: Transform - parent: 816 + parent: 927 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - proto: ExtinguisherCabinetFilled entities: - - uid: 881 + - uid: 929 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 1 - - uid: 882 + - uid: 930 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-14.5 parent: 1 - - uid: 883 + - uid: 931 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-20.5 parent: 1 - - uid: 884 + - uid: 932 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-21.5 parent: 1 - - uid: 885 + - uid: 933 components: - type: Transform rot: 1.5707963267948966 rad @@ -8912,7 +9162,7 @@ entities: parent: 1 - proto: FireAxeCabinetFilled entities: - - uid: 818 + - uid: 934 components: - type: Transform rot: 1.5707963267948966 rad @@ -8920,110 +9170,110 @@ entities: parent: 1 - proto: Firelock entities: - - uid: 208 + - uid: 935 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 232 + - uid: 936 components: - type: Transform pos: -2.5,-6.5 parent: 1 - - uid: 758 + - uid: 937 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 759 + - uid: 938 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 760 + - uid: 939 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 761 + - uid: 940 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 764 + - uid: 941 components: - type: Transform pos: -2.5,-5.5 parent: 1 - - uid: 765 + - uid: 942 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 766 + - uid: 943 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 767 + - uid: 944 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 769 + - uid: 945 components: - type: Transform pos: 1.5,-19.5 parent: 1 - - uid: 770 + - uid: 946 components: - type: Transform pos: 9.5,-21.5 parent: 1 - - uid: 771 + - uid: 947 components: - type: Transform pos: -3.5,-18.5 parent: 1 - - uid: 772 + - uid: 948 components: - type: Transform pos: -7.5,-18.5 parent: 1 - - uid: 773 + - uid: 949 components: - type: Transform pos: -7.5,-21.5 parent: 1 - - uid: 774 + - uid: 950 components: - type: Transform pos: -5.5,-23.5 parent: 1 - - uid: 775 + - uid: 951 components: - type: Transform pos: -0.5,-22.5 parent: 1 - - uid: 854 + - uid: 952 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-16.5 parent: 1 - - uid: 888 + - uid: 953 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-16.5 parent: 1 - - uid: 890 + - uid: 954 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-21.5 parent: 1 - - uid: 891 + - uid: 955 components: - type: Transform rot: 1.5707963267948966 rad @@ -9031,25 +9281,25 @@ entities: parent: 1 - proto: FirelockEdge entities: - - uid: 776 + - uid: 956 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-21.5 parent: 1 - - uid: 777 + - uid: 957 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-20.5 parent: 1 - - uid: 778 + - uid: 958 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 1 - - uid: 779 + - uid: 959 components: - type: Transform rot: 1.5707963267948966 rad @@ -9057,7 +9307,7 @@ entities: parent: 1 - proto: FloorDrain entities: - - uid: 691 + - uid: 960 components: - type: Transform rot: 3.141592653589793 rad @@ -9067,7 +9317,7 @@ entities: fixtures: {} - proto: FoodBoxDonkpocketHonk entities: - - uid: 738 + - uid: 961 components: - type: Transform rot: -1.5707963267948966 rad @@ -9075,14 +9325,14 @@ entities: parent: 1 - proto: FoodSnackNutribrick entities: - - uid: 622 + - uid: 962 components: - type: Transform pos: -6.497783,-26.421175 parent: 1 - proto: GasPassiveVent entities: - - uid: 609 + - uid: 963 components: - type: Transform rot: -1.5707963267948966 rad @@ -9090,81 +9340,81 @@ entities: parent: 1 - proto: GasPipeBend entities: - - uid: 1424 + - uid: 964 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 1433 + - uid: 965 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,7.5 parent: 1 - - uid: 1434 + - uid: 966 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 1447 + - uid: 967 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 1 - - uid: 1452 + - uid: 968 components: - type: Transform pos: -4.5,-12.5 parent: 1 - - uid: 1453 + - uid: 969 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-14.5 parent: 1 - - uid: 1458 + - uid: 970 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-22.5 parent: 1 - - uid: 1459 + - uid: 971 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 1 - - uid: 1467 + - uid: 972 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-22.5 parent: 1 - - uid: 1468 + - uid: 973 components: - type: Transform pos: 0.5,-22.5 parent: 1 - - uid: 1486 + - uid: 974 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-7.5 parent: 1 - - uid: 1487 + - uid: 975 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-7.5 parent: 1 - - uid: 1614 + - uid: 976 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-30.5 parent: 1 - - uid: 1615 + - uid: 977 components: - type: Transform rot: -1.5707963267948966 rad @@ -9172,415 +9422,415 @@ entities: parent: 1 - proto: GasPipeFourway entities: - - uid: 1426 + - uid: 978 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 1456 + - uid: 979 components: - type: Transform pos: -1.5,-19.5 parent: 1 - proto: GasPipeStraight entities: - - uid: 1427 + - uid: 980 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-2.5 parent: 1 - - uid: 1428 + - uid: 981 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 1 - - uid: 1429 + - uid: 982 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-2.5 parent: 1 - - uid: 1430 + - uid: 983 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-2.5 parent: 1 - - uid: 1435 + - uid: 984 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - - uid: 1436 + - uid: 985 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,5.5 parent: 1 - - uid: 1437 + - uid: 986 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 1 - - uid: 1438 + - uid: 987 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 1 - - uid: 1439 + - uid: 988 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,1.5 parent: 1 - - uid: 1440 + - uid: 989 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 parent: 1 - - uid: 1441 + - uid: 990 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-0.5 parent: 1 - - uid: 1442 + - uid: 991 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 1 - - uid: 1443 + - uid: 992 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 1 - - uid: 1444 + - uid: 993 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-5.5 parent: 1 - - uid: 1446 + - uid: 994 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-5.5 parent: 1 - - uid: 1448 + - uid: 995 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-18.5 parent: 1 - - uid: 1449 + - uid: 996 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-6.5 parent: 1 - - uid: 1450 + - uid: 997 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 - - uid: 1451 + - uid: 998 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-6.5 parent: 1 - - uid: 1460 + - uid: 999 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-21.5 parent: 1 - - uid: 1461 + - uid: 1000 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 1 - - uid: 1462 + - uid: 1001 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-21.5 parent: 1 - - uid: 1463 + - uid: 1002 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-21.5 parent: 1 - - uid: 1464 + - uid: 1003 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-21.5 parent: 1 - - uid: 1465 + - uid: 1004 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-21.5 parent: 1 - - uid: 1470 + - uid: 1005 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-26.5 parent: 1 - - uid: 1471 + - uid: 1006 components: - type: Transform pos: 0.5,-25.5 parent: 1 - - uid: 1472 + - uid: 1007 components: - type: Transform pos: 0.5,-24.5 parent: 1 - - uid: 1473 + - uid: 1008 components: - type: Transform pos: 0.5,-23.5 parent: 1 - - uid: 1474 + - uid: 1009 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-22.5 parent: 1 - - uid: 1476 + - uid: 1010 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-17.5 parent: 1 - - uid: 1477 + - uid: 1011 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-16.5 parent: 1 - - uid: 1478 + - uid: 1012 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-15.5 parent: 1 - - uid: 1479 + - uid: 1013 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 1 - - uid: 1480 + - uid: 1014 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-13.5 parent: 1 - - uid: 1481 + - uid: 1015 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-12.5 parent: 1 - - uid: 1482 + - uid: 1016 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-11.5 parent: 1 - - uid: 1483 + - uid: 1017 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-10.5 parent: 1 - - uid: 1484 + - uid: 1018 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-9.5 parent: 1 - - uid: 1485 + - uid: 1019 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-8.5 parent: 1 - - uid: 1491 + - uid: 1020 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-13.5 parent: 1 - - uid: 1498 + - uid: 1021 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-20.5 parent: 1 - - uid: 1499 + - uid: 1022 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-20.5 parent: 1 - - uid: 1500 + - uid: 1023 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-20.5 parent: 1 - - uid: 1501 + - uid: 1024 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-20.5 parent: 1 - - uid: 1502 + - uid: 1025 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-20.5 parent: 1 - - uid: 1503 + - uid: 1026 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-20.5 parent: 1 - - uid: 1616 + - uid: 1027 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-30.5 parent: 1 - - uid: 1617 + - uid: 1028 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-30.5 parent: 1 - - uid: 1618 + - uid: 1029 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-30.5 parent: 1 - - uid: 1619 + - uid: 1030 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-30.5 parent: 1 - - uid: 1620 + - uid: 1031 components: - type: Transform pos: 0.5,-29.5 parent: 1 - - uid: 1621 + - uid: 1032 components: - type: Transform pos: 0.5,-28.5 parent: 1 - - uid: 1623 + - uid: 1033 components: - type: Transform pos: 0.5,-27.5 parent: 1 - proto: GasPipeTJunction entities: - - uid: 1398 + - uid: 1034 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 1 - - uid: 1422 + - uid: 1035 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 1423 + - uid: 1036 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - - uid: 1425 + - uid: 1037 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 1 - - uid: 1431 + - uid: 1038 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-2.5 parent: 1 - - uid: 1432 + - uid: 1039 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 1 - - uid: 1445 + - uid: 1040 components: - type: Transform pos: -4.5,-5.5 parent: 1 - - uid: 1454 + - uid: 1041 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-13.5 parent: 1 - - uid: 1455 + - uid: 1042 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-20.5 parent: 1 - - uid: 1457 + - uid: 1043 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-22.5 parent: 1 - - uid: 1466 + - uid: 1044 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-21.5 parent: 1 - - uid: 1469 + - uid: 1045 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-26.5 parent: 1 - - uid: 1475 + - uid: 1046 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-20.5 parent: 1 - - uid: 1492 + - uid: 1047 components: - type: Transform rot: -1.5707963267948966 rad @@ -9588,33 +9838,33 @@ entities: parent: 1 - proto: GasPort entities: - - uid: 1410 + - uid: 1048 components: - type: Transform pos: -4.5,-28.5 parent: 1 - proto: GasValve entities: - - uid: 1613 + - uid: 1049 components: - type: Transform pos: -4.5,-29.5 parent: 1 - proto: GasVentPump entities: - - uid: 532 + - uid: 1050 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 608 + - uid: 1051 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-3.5 parent: 1 - - uid: 1403 + - uid: 1052 components: - type: Transform rot: -1.5707963267948966 rad @@ -9622,22 +9872,22 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1407 + - 24 + - 25 + - 22 + - 21 + - uid: 1053 components: - type: Transform pos: 0.5,4.5 parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1408 + - 24 + - 25 + - 22 + - 21 + - uid: 1054 components: - type: Transform rot: -1.5707963267948966 rad @@ -9645,22 +9895,22 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1412 + - 24 + - 25 + - 22 + - 21 + - uid: 1055 components: - type: Transform pos: -9.5,-21.5 parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1415 + - 24 + - 25 + - 22 + - 21 + - uid: 1056 components: - type: Transform rot: 1.5707963267948966 rad @@ -9668,11 +9918,11 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1416 + - 24 + - 25 + - 22 + - 21 + - uid: 1057 components: - type: Transform rot: 1.5707963267948966 rad @@ -9680,11 +9930,11 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1420 + - 24 + - 25 + - 22 + - 21 + - uid: 1058 components: - type: Transform rot: 3.141592653589793 rad @@ -9692,13 +9942,13 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 + - 24 + - 25 + - 22 + - 21 - proto: GasVentScrubber entities: - - uid: 1402 + - uid: 1059 components: - type: Transform rot: 1.5707963267948966 rad @@ -9706,11 +9956,11 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1405 + - 24 + - 25 + - 22 + - 21 + - uid: 1060 components: - type: Transform rot: 1.5707963267948966 rad @@ -9718,11 +9968,11 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1406 + - 24 + - 25 + - 22 + - 21 + - uid: 1061 components: - type: Transform rot: 3.141592653589793 rad @@ -9730,11 +9980,11 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1409 + - 24 + - 25 + - 22 + - 21 + - uid: 1062 components: - type: Transform rot: 1.5707963267948966 rad @@ -9742,11 +9992,11 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1413 + - 24 + - 25 + - 22 + - 21 + - uid: 1063 components: - type: Transform rot: 1.5707963267948966 rad @@ -9754,11 +10004,11 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1414 + - 24 + - 25 + - 22 + - 21 + - uid: 1064 components: - type: Transform rot: 1.5707963267948966 rad @@ -9766,11 +10016,11 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1417 + - 24 + - 25 + - 22 + - 21 + - uid: 1065 components: - type: Transform rot: -1.5707963267948966 rad @@ -9778,211 +10028,186 @@ entities: parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 - - uid: 1421 + - 24 + - 25 + - 22 + - 21 + - uid: 1066 components: - type: Transform pos: 5.5,-19.5 parent: 1 - type: DeviceNetwork deviceLists: - - 1494 - - 1495 - - 1490 - - 1489 + - 24 + - 25 + - 22 + - 21 - proto: Girder entities: - - uid: 275 + - uid: 1067 components: - type: Transform pos: 2.5,-9.5 parent: 1 - - uid: 276 + - uid: 1068 components: - type: Transform pos: 2.5,-12.5 parent: 1 - proto: GravityGeneratorMini entities: - - uid: 606 + - uid: 1069 components: - type: Transform pos: -1.5,-26.5 parent: 1 - proto: Grille entities: - - uid: 36 + - uid: 1070 components: - type: Transform pos: -2.5,-9.5 parent: 1 - - uid: 37 + - uid: 1071 components: - type: Transform pos: -2.5,-8.5 parent: 1 - - uid: 38 + - uid: 1072 components: - type: Transform pos: -2.5,-7.5 parent: 1 - - uid: 97 + - uid: 1073 components: - type: Transform pos: -2.5,-15.5 parent: 1 - - uid: 146 + - uid: 1074 components: - type: Transform pos: -2.5,-11.5 parent: 1 - - uid: 246 + - uid: 1075 components: - type: Transform pos: 5.5,-4.5 parent: 1 - - uid: 247 + - uid: 1076 components: - type: Transform pos: 4.5,-4.5 parent: 1 - - uid: 248 + - uid: 1077 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 270 + - uid: 1078 components: - type: Transform pos: 3.5,-4.5 parent: 1 - - uid: 290 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 1 - - uid: 315 + - uid: 1080 components: - type: Transform pos: -12.5,-22.5 parent: 1 - - uid: 316 + - uid: 1081 components: - type: Transform pos: -12.5,-23.5 parent: 1 - - uid: 317 + - uid: 1082 components: - type: Transform pos: -12.5,-24.5 parent: 1 - - uid: 318 - components: - - type: Transform - pos: -12.5,-25.5 - parent: 1 - - uid: 319 - components: - - type: Transform - pos: -11.5,-25.5 - parent: 1 - - uid: 320 - components: - - type: Transform - pos: -11.5,-26.5 - parent: 1 - - uid: 321 - components: - - type: Transform - pos: -10.5,-26.5 - parent: 1 - - uid: 371 + - uid: 1087 components: - type: Transform pos: 2.5,-25.5 parent: 1 - - uid: 372 + - uid: 1088 components: - type: Transform pos: 1.5,-25.5 parent: 1 - - uid: 374 + - uid: 1089 components: - type: Transform pos: 1.5,-26.5 parent: 1 - - uid: 456 + - uid: 1090 components: - type: Transform pos: 4.5,-17.5 parent: 1 - - uid: 464 + - uid: 1091 components: - type: Transform pos: 5.5,-17.5 parent: 1 - - uid: 496 + - uid: 1092 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,12.5 parent: 1 - - uid: 498 + - uid: 1093 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 508 + - uid: 1094 components: - type: Transform pos: 3.5,-17.5 parent: 1 - - uid: 509 + - uid: 1095 components: - type: Transform pos: 6.5,-17.5 parent: 1 - - uid: 511 + - uid: 1096 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-21.5 parent: 1 - - uid: 512 + - uid: 1097 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-23.5 parent: 1 - - uid: 520 + - uid: 1098 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-22.5 parent: 1 - - uid: 586 + - uid: 1099 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 588 + - uid: 1100 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,12.5 parent: 1 - - uid: 1627 + - uid: 1101 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,11.5 parent: 1 - - uid: 1628 + - uid: 1102 components: - type: Transform rot: 1.5707963267948966 rad @@ -9990,42 +10215,42 @@ entities: parent: 1 - proto: Gyroscope entities: - - uid: 1746 + - uid: 1103 components: - type: Transform pos: 0.5,-23.5 parent: 1 - proto: GyroscopeNfsd entities: - - uid: 235 + - uid: 1104 components: - type: Transform pos: -1.5,-24.5 parent: 1 - proto: JetpackBlackFilled entities: - - uid: 666 + - uid: 858 components: - type: Transform - parent: 645 + parent: 853 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 796 + - uid: 864 components: - type: Transform - parent: 748 + parent: 859 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 807 + - uid: 870 components: - type: Transform - parent: 805 + parent: 865 - type: Physics angularDamping: 0 linearDamping: 0 @@ -10033,18 +10258,18 @@ entities: - type: InsideEntityStorage - proto: JugBoriaticFuel entities: - - uid: 1656 + - uid: 1105 components: - type: Transform pos: -2.9984322,-28.354212 parent: 1 - - uid: 1657 + - uid: 1106 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5525718,-28.844797 parent: 1 - - uid: 1658 + - uid: 1107 components: - type: Transform rot: -1.5707963267948966 rad @@ -10052,28 +10277,28 @@ entities: parent: 1 - proto: Jukebox entities: - - uid: 1741 + - uid: 1108 components: - type: Transform pos: 0.5,5.5 parent: 1 - proto: KitchenMicrowave entities: - - uid: 737 + - uid: 1109 components: - type: Transform pos: -11.5,-22.5 parent: 1 - proto: KitchenReagentGrinder entities: - - uid: 721 + - uid: 1110 components: - type: Transform pos: -6.5,-9.5 parent: 1 - proto: LampGold entities: - - uid: 483 + - uid: 1111 components: - type: Transform rot: 3.141592653589793 rad @@ -10081,7 +10306,7 @@ entities: parent: 1 - proto: LightStripInner entities: - - uid: 19 + - uid: 1112 components: - type: Transform rot: 1.5707963267948966 rad @@ -10090,7 +10315,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 156 + - uid: 1113 components: - type: Transform pos: -6.5,-12.5 @@ -10098,7 +10323,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 229 + - uid: 1114 components: - type: Transform rot: -1.5707963267948966 rad @@ -10107,7 +10332,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 344 + - uid: 1115 components: - type: Transform rot: 3.141592653589793 rad @@ -10116,7 +10341,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 667 + - uid: 1116 components: - type: Transform rot: 1.5707963267948966 rad @@ -10127,7 +10352,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 497 + - uid: 1117 components: - type: Transform pos: -5.5,-14.5 @@ -10135,7 +10360,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 539 + - uid: 1118 components: - type: Transform rot: -1.5707963267948966 rad @@ -10144,7 +10369,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 664 + - uid: 1119 components: - type: Transform rot: 3.141592653589793 rad @@ -10153,7 +10378,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 665 + - uid: 1120 components: - type: Transform rot: 1.5707963267948966 rad @@ -10164,78 +10389,132 @@ entities: - type: TurretIFF - proto: LockerFreezerBase entities: - - uid: 701 + - uid: 1121 components: - type: Transform pos: -1.5,5.5 parent: 1 - proto: LuxuryPen entities: - - uid: 585 + - uid: 1122 components: - type: Transform pos: -3.8295627,4.734175 parent: 1 - proto: MagazineNeedler entities: - - uid: 138 + - uid: 1123 components: - type: Transform pos: 4.721819,-3.2654834 parent: 1 - - uid: 144 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1124 components: - type: Transform pos: 4.3233814,-3.3123584 parent: 1 - - uid: 225 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1125 components: - type: Transform pos: 4.674944,-3.6639209 parent: 1 - - uid: 411 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1126 components: - type: Transform pos: 4.2765064,-3.6639209 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] +- proto: MagazineVulcan + entities: + - uid: 130 + components: + - type: Transform + pos: 5.2243333,-3.277742 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1079 + components: + - type: Transform + pos: 5.40337,-3.7171946 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1086 + components: + - type: Transform + pos: 5.842823,-3.6520905 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1277 + components: + - type: Transform + pos: 5.793995,-3.2451897 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] - proto: MedicalBed entities: - - uid: 601 + - uid: 1127 components: - type: Transform pos: -3.5,-7.5 parent: 1 - proto: MedicalScanner entities: - - uid: 681 + - uid: 1128 components: - type: Transform pos: -6.5,-3.5 parent: 1 - proto: MedkitAdvancedFilled entities: - - uid: 714 + - uid: 1129 components: - type: Transform pos: -3.2042627,-9.149912 parent: 1 - proto: MedkitBruteFilled entities: - - uid: 712 + - uid: 1130 components: - type: Transform pos: -3.6261377,-9.165537 parent: 1 - proto: MedkitBurnFilled entities: - - uid: 713 + - uid: 1131 components: - type: Transform pos: -3.6261377,-9.399912 parent: 1 - proto: MedkitCombatFilled entities: - - uid: 708 + - uid: 1132 components: - type: Transform pos: -3.6678185,-8.195641 @@ -10243,101 +10522,79 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 709 + - uid: 1133 components: - type: Transform pos: -3.2355127,-8.177672 parent: 1 - proto: MedkitOxygenFilled entities: - - uid: 710 + - uid: 1134 components: - type: Transform pos: -3.6573877,-8.443297 parent: 1 - proto: MedkitRadiationFilled entities: - - uid: 715 + - uid: 1135 components: - type: Transform pos: -3.1730127,-9.446787 parent: 1 - proto: MedkitToxinFilled entities: - - uid: 711 + - uid: 1136 components: - type: Transform pos: -3.2042627,-8.412047 parent: 1 - proto: MiningDrill entities: - - uid: 171 + - uid: 1137 components: - type: Transform pos: -5.622288,-17.293901 parent: 1 - - uid: 530 + - uid: 1138 components: - type: Transform pos: -5.316179,-17.278828 parent: 1 - proto: OreBag entities: - - uid: 236 + - uid: 1139 components: - type: Transform pos: -5.700413,-17.450151 parent: 1 - - uid: 528 + - uid: 1140 components: - type: Transform pos: -5.363054,-17.435078 parent: 1 - proto: OreBox entities: - - uid: 554 + - uid: 1141 components: - type: Transform pos: -8.5,-19.5 parent: 1 - proto: OreProcessor entities: - - uid: 207 + - uid: 1142 components: - type: Transform pos: -6.5,-17.5 parent: 1 -- proto: Paper - entities: - - uid: 1404 - components: - - type: Transform - pos: 4.7522736,-24.147545 - parent: 1 - - type: Paper - content: >- - NOTE FROM ENGINEERS: - - - we moved the cockpit in the most secure place on the ship. the downside is that the shuttle console's signals don't reach the main cannon - - - we made these signallers so you can use them to fire it still. it's unideal, but it's better than getting flung out a window at the first moment of engagement - - - DON'T LOSE THEM!!! - - type: Physics - angularDamping: 0 - linearDamping: 0 - proto: PaperBin20 entities: - - uid: 632 + - uid: 1143 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-20.5 parent: 1 - - uid: 904 + - uid: 1144 components: - type: Transform rot: 3.141592653589793 rad @@ -10345,19 +10602,19 @@ entities: parent: 1 - proto: Pen entities: - - uid: 662 + - uid: 1145 components: - type: Transform pos: 7.504503,-20.35259 parent: 1 - proto: PlasmaWindowDirectional entities: - - uid: 597 + - uid: 1146 components: - type: Transform pos: -6.5,-0.5 parent: 1 - - uid: 696 + - uid: 1147 components: - type: Transform rot: 3.141592653589793 rad @@ -10365,45 +10622,52 @@ entities: parent: 1 - proto: PlastitaniumWindow entities: - - uid: 592 + - uid: 1148 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 593 + - uid: 1149 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,12.5 parent: 1 - - uid: 594 + - uid: 1150 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 746 + - uid: 1151 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,11.5 parent: 1 - - uid: 1599 + - uid: 1152 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,12.5 parent: 1 - - uid: 1659 + - uid: 1153 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,12.5 parent: 1 +- proto: PlushiePearCat + entities: + - uid: 1297 + components: + - type: Transform + pos: 4.504834,-25.221157 + parent: 1 - proto: PlushieSharkBlue entities: - - uid: 154 + - uid: 1154 components: - type: Transform pos: -3.3709435,-7.382575 @@ -10413,7 +10677,7 @@ entities: linearDamping: 0 - proto: PosterLegitBarDrinks entities: - - uid: 815 + - uid: 1155 components: - type: Transform rot: 1.5707963267948966 rad @@ -10421,19 +10685,19 @@ entities: parent: 1 - proto: PottedPlantRandom entities: - - uid: 792 + - uid: 1156 components: - type: Transform pos: 5.5,-18.5 parent: 1 - - uid: 793 + - uid: 1157 components: - type: Transform pos: 2.5,-18.5 parent: 1 - proto: PowerCellRecharger entities: - - uid: 636 + - uid: 1158 components: - type: Transform rot: -1.5707963267948966 rad @@ -10441,13 +10705,13 @@ entities: parent: 1 - proto: Poweredlight entities: - - uid: 864 + - uid: 1159 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-9.5 parent: 1 - - uid: 872 + - uid: 1160 components: - type: Transform rot: 1.5707963267948966 rad @@ -10455,325 +10719,325 @@ entities: parent: 1 - proto: PoweredlightLED entities: - - uid: 1488 + - uid: 1161 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 1504 + - uid: 1162 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-29.5 parent: 1 - - uid: 1505 + - uid: 1163 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-29.5 parent: 1 - - uid: 1506 + - uid: 1164 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-29.5 parent: 1 - - uid: 1507 + - uid: 1165 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-29.5 parent: 1 - - uid: 1508 + - uid: 1166 components: - type: Transform pos: -0.5,-24.5 parent: 1 - - uid: 1509 + - uid: 1167 components: - type: Transform pos: 1.5,-22.5 parent: 1 - - uid: 1510 + - uid: 1168 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-21.5 parent: 1 - - uid: 1511 + - uid: 1169 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-22.5 parent: 1 - - uid: 1512 + - uid: 1170 components: - type: Transform pos: -4.5,-24.5 parent: 1 - - uid: 1513 + - uid: 1171 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-26.5 parent: 1 - - uid: 1514 + - uid: 1172 components: - type: Transform pos: -11.5,-22.5 parent: 1 - - uid: 1515 + - uid: 1173 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-24.5 parent: 1 - - uid: 1516 + - uid: 1174 components: - type: Transform pos: -8.5,-21.5 parent: 1 - - uid: 1517 + - uid: 1175 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-18.5 parent: 1 - - uid: 1518 + - uid: 1176 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-17.5 parent: 1 - - uid: 1519 + - uid: 1177 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-19.5 parent: 1 - - uid: 1520 + - uid: 1178 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-19.5 parent: 1 - - uid: 1522 + - uid: 1179 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-14.5 parent: 1 - - uid: 1523 + - uid: 1180 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-12.5 parent: 1 - - uid: 1524 + - uid: 1181 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-12.5 parent: 1 - - uid: 1525 + - uid: 1182 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-9.5 parent: 1 - - uid: 1526 + - uid: 1183 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-9.5 parent: 1 - - uid: 1527 + - uid: 1184 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-4.5 parent: 1 - - uid: 1528 + - uid: 1185 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-4.5 parent: 1 - - uid: 1529 + - uid: 1186 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-0.5 parent: 1 - - uid: 1530 + - uid: 1187 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,0.5 parent: 1 - - uid: 1531 + - uid: 1188 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-1.5 parent: 1 - - uid: 1532 + - uid: 1189 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,2.5 parent: 1 - - uid: 1533 + - uid: 1190 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,5.5 parent: 1 - - uid: 1534 + - uid: 1191 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,7.5 parent: 1 - - uid: 1535 + - uid: 1192 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,7.5 parent: 1 - - uid: 1537 + - uid: 1193 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 1538 + - uid: 1194 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,6.5 parent: 1 - - uid: 1539 + - uid: 1195 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,4.5 parent: 1 - - uid: 1543 + - uid: 1196 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-3.5 parent: 1 - - uid: 1546 + - uid: 1197 components: - type: Transform pos: -1.5,0.5 parent: 1 - - uid: 1547 + - uid: 1198 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,2.5 parent: 1 - - uid: 1548 + - uid: 1199 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,2.5 parent: 1 - - uid: 1549 + - uid: 1200 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 1550 + - uid: 1201 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 1551 + - uid: 1202 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-10.5 parent: 1 - - uid: 1552 + - uid: 1203 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-15.5 parent: 1 - - uid: 1553 + - uid: 1204 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-15.5 parent: 1 - - uid: 1554 + - uid: 1205 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-20.5 parent: 1 - - uid: 1555 + - uid: 1206 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-20.5 parent: 1 - - uid: 1556 + - uid: 1207 components: - type: Transform pos: 6.5,-24.5 parent: 1 - - uid: 1557 + - uid: 1208 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-25.5 parent: 1 - - uid: 1558 + - uid: 1209 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 1 - - uid: 1559 + - uid: 1210 components: - type: Transform pos: 7.5,-23.5 parent: 1 - - uid: 1560 + - uid: 1211 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-20.5 parent: 1 - - uid: 1561 + - uid: 1212 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-20.5 parent: 1 - - uid: 1562 + - uid: 1213 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-22.5 parent: 1 - - uid: 1563 + - uid: 1214 components: - type: Transform pos: 7.5,-18.5 parent: 1 - - uid: 1564 + - uid: 1215 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-18.5 parent: 1 - - uid: 1565 + - uid: 1216 components: - type: Transform rot: 3.141592653589793 rad @@ -10781,37 +11045,37 @@ entities: parent: 1 - proto: PoweredlightRed entities: - - uid: 1787 + - uid: 1217 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,5.5 parent: 1 - - uid: 1807 + - uid: 1218 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 1 - - uid: 1808 + - uid: 1219 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - - uid: 1809 + - uid: 1220 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,9.5 parent: 1 - - uid: 1811 + - uid: 1221 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-7.5 parent: 1 - - uid: 1812 + - uid: 1222 components: - type: Transform rot: -1.5707963267948966 rad @@ -10819,25 +11083,25 @@ entities: parent: 1 - proto: PoweredSmallLight entities: - - uid: 1567 + - uid: 1223 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-29.5 parent: 1 - - uid: 1568 + - uid: 1224 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-29.5 parent: 1 - - uid: 1569 + - uid: 1225 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-26.5 parent: 1 - - uid: 1570 + - uid: 1226 components: - type: Transform rot: -1.5707963267948966 rad @@ -10845,68 +11109,69 @@ entities: parent: 1 - proto: Rack entities: - - uid: 174 + - uid: 1085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 1227 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 522 + - uid: 1228 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-17.5 parent: 1 - - uid: 557 + - uid: 1229 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-28.5 parent: 1 - - uid: 558 + - uid: 1230 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-28.5 parent: 1 - - uid: 686 + - uid: 1231 components: - type: Transform pos: -3.5,-9.5 parent: 1 - - uid: 687 + - uid: 1232 components: - type: Transform pos: -3.5,-8.5 parent: 1 - - uid: 723 + - uid: 1233 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 836 + - uid: 1234 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,9.5 parent: 1 - - uid: 1419 - components: - - type: Transform - pos: 4.5,-24.5 - parent: 1 - - uid: 1625 + - uid: 1236 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,6.5 parent: 1 - - uid: 1675 + - uid: 1237 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,6.5 parent: 1 - - uid: 1676 + - uid: 1238 components: - type: Transform rot: 3.141592653589793 rad @@ -10914,158 +11179,158 @@ entities: parent: 1 - proto: Railing entities: - - uid: 277 + - uid: 1239 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-15.5 parent: 1 - - uid: 278 + - uid: 1240 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-14.5 parent: 1 - - uid: 279 + - uid: 1241 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-13.5 parent: 1 - - uid: 280 + - uid: 1242 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-8.5 parent: 1 - - uid: 281 + - uid: 1243 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-7.5 parent: 1 - - uid: 282 + - uid: 1244 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-6.5 parent: 1 - - uid: 448 + - uid: 1245 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-26.5 parent: 1 - - uid: 449 + - uid: 1246 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-24.5 parent: 1 - - uid: 482 + - uid: 1247 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-17.5 parent: 1 - - uid: 493 + - uid: 1248 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 1 - - uid: 571 + - uid: 1249 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 1 - - uid: 572 + - uid: 1250 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 1 - - uid: 612 + - uid: 1251 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-26.5 parent: 1 - - uid: 615 + - uid: 1252 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-24.5 parent: 1 - - uid: 675 + - uid: 1253 components: - type: Transform pos: -6.5,-4.5 parent: 1 - - uid: 676 + - uid: 1254 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-5.5 parent: 1 - - uid: 678 + - uid: 1255 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-5.5 parent: 1 - - uid: 794 + - uid: 1256 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,1.5 parent: 1 - - uid: 799 + - uid: 1257 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 819 + - uid: 1258 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 1663 + - uid: 1259 components: - type: Transform pos: -3.5,9.5 parent: 1 - - uid: 1744 + - uid: 1260 components: - type: Transform pos: 11.5,-4.5 parent: 1 - proto: RailingCorner entities: - - uid: 265 + - uid: 1261 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-16.5 parent: 1 - - uid: 272 + - uid: 1262 components: - type: Transform pos: 2.5,-5.5 parent: 1 - - uid: 495 + - uid: 1263 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,9.5 parent: 1 - - uid: 823 + - uid: 1264 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 833 + - uid: 1265 components: - type: Transform rot: -1.5707963267948966 rad @@ -11073,12 +11338,12 @@ entities: parent: 1 - proto: RailingCornerSmall entities: - - uid: 450 + - uid: 1266 components: - type: Transform pos: -0.5,-27.5 parent: 1 - - uid: 1662 + - uid: 1267 components: - type: Transform rot: 1.5707963267948966 rad @@ -11086,266 +11351,203 @@ entities: parent: 1 - proto: RandomVendingSnacks entities: - - uid: 1401 + - uid: 1268 components: - type: Transform pos: 0.5,-20.5 parent: 1 - proto: RCD entities: - - uid: 780 + - uid: 1269 components: - type: Transform pos: 2.4895868,-28.36768 parent: 1 - proto: RCDAmmo entities: - - uid: 781 + - uid: 1270 components: - type: Transform pos: 2.2552118,-28.539555 parent: 1 - - uid: 782 + - uid: 1271 components: - type: Transform pos: 2.4114618,-28.539555 parent: 1 - proto: ReinforcedPlasmaWindow entities: - - uid: 436 + - uid: 1272 components: - type: Transform pos: -12.5,-22.5 parent: 1 - - uid: 437 + - uid: 1273 components: - type: Transform pos: -12.5,-23.5 parent: 1 - - uid: 438 + - uid: 1274 components: - type: Transform pos: -12.5,-24.5 parent: 1 - - uid: 439 - components: - - type: Transform - pos: -12.5,-25.5 - parent: 1 - - uid: 440 - components: - - type: Transform - pos: -11.5,-25.5 - parent: 1 - - uid: 441 - components: - - type: Transform - pos: -11.5,-26.5 - parent: 1 - - uid: 442 - components: - - type: Transform - pos: -10.5,-26.5 - parent: 1 - - uid: 443 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 1 - - uid: 642 + - uid: 1278 components: - type: Transform pos: 12.5,-21.5 parent: 1 - - uid: 643 + - uid: 1279 components: - type: Transform pos: 12.5,-22.5 parent: 1 - - uid: 644 + - uid: 1280 components: - type: Transform pos: 12.5,-23.5 parent: 1 - - uid: 786 + - uid: 1281 components: - type: Transform pos: 3.5,-17.5 parent: 1 - - uid: 787 + - uid: 1282 components: - type: Transform pos: 4.5,-17.5 parent: 1 - - uid: 788 + - uid: 1283 components: - type: Transform pos: 5.5,-17.5 parent: 1 - - uid: 789 + - uid: 1284 components: - type: Transform pos: 6.5,-17.5 parent: 1 - - uid: 850 + - uid: 1285 components: - type: Transform pos: 5.5,-4.5 parent: 1 - - uid: 857 + - uid: 1286 components: - type: Transform pos: 3.5,-4.5 parent: 1 - - uid: 862 + - uid: 1287 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 870 + - uid: 1288 components: - type: Transform pos: 4.5,-4.5 parent: 1 - proto: ReinforcedWindow entities: - - uid: 29 + - uid: 1289 components: - type: Transform pos: -2.5,-8.5 parent: 1 - - uid: 33 + - uid: 1290 components: - type: Transform pos: -2.5,-7.5 parent: 1 - - uid: 117 + - uid: 1291 components: - type: Transform pos: -2.5,-9.5 parent: 1 - - uid: 370 + - uid: 1292 components: - type: Transform pos: 2.5,-25.5 parent: 1 - - uid: 373 + - uid: 1293 components: - type: Transform pos: 1.5,-25.5 parent: 1 - - uid: 377 + - uid: 1294 components: - type: Transform pos: 1.5,-26.5 parent: 1 - - uid: 1605 + - uid: 1295 components: - type: Transform pos: -2.5,-11.5 parent: 1 - - uid: 1606 + - uid: 1296 components: - type: Transform pos: -2.5,-15.5 parent: 1 -- proto: RemoteSignallerAdvanced - entities: - - uid: 221 - components: - - type: Transform - pos: 4.4483914,-24.476612 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1418: - - Pressed: SpaceArtilleryFire - - type: Physics - angularDamping: 0 - linearDamping: 0 - - uid: 825 - components: - - type: Transform - pos: 4.1604066,-24.174967 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1418: - - Pressed: SpaceArtilleryFire - - type: Physics - angularDamping: 0 - linearDamping: 0 - - uid: 873 - components: - - type: Transform - pos: 4.654095,-24.627434 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1418: - - Pressed: SpaceArtilleryFire - - type: Physics - angularDamping: 0 - linearDamping: 0 - proto: RubberStampEmpire entities: - - uid: 587 + - uid: 1298 components: - type: Transform pos: -3.8295627,4.3123 parent: 1 - proto: SheetPlasma1 entities: - - uid: 1542 + - uid: 1299 components: - type: Transform pos: -6.2016025,-9.712741 parent: 1 - - uid: 1544 + - uid: 1300 components: - type: Transform pos: -6.4895864,-9.781297 parent: 1 - - uid: 1545 + - uid: 1301 components: - type: Transform pos: -6.722717,-9.753875 parent: 1 - proto: ShuttersNormalOpen entities: - - uid: 480 + - uid: 1302 components: - type: Transform pos: -5.5,12.5 parent: 1 - type: DeviceLinkSink links: - - 634 - - uid: 533 + - 1307 + - uid: 1303 components: - type: Transform pos: -1.5,12.5 parent: 1 - type: DeviceLinkSink links: - - 634 - - uid: 542 + - 1307 + - uid: 1304 components: - type: Transform pos: -2.5,12.5 parent: 1 - type: DeviceLinkSink links: - - 634 - - uid: 544 + - 1307 + - uid: 1305 components: - type: Transform pos: -4.5,12.5 parent: 1 - type: DeviceLinkSink links: - - 634 - - uid: 575 + - 1307 + - uid: 1306 components: - type: Transform rot: -1.5707963267948966 rad @@ -11353,10 +11555,10 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 634 + - 1307 - proto: SignalButton entities: - - uid: 634 + - uid: 1307 components: - type: Transform rot: -1.5707963267948966 rad @@ -11364,54 +11566,37 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 575: - - Pressed: Toggle - 533: - - Pressed: Toggle - 542: - - Pressed: Toggle - 544: - - Pressed: Toggle - 480: - - Pressed: Toggle - - uid: 753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-26.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 492: - - Pressed: Toggle - 490: - - Pressed: Toggle - 489: - - Pressed: Toggle - 488: - - Pressed: Toggle - 487: - - Pressed: Toggle - 486: - - Pressed: Toggle - 485: - - Pressed: Toggle - 484: - - Pressed: Toggle - - uid: 1739 + 1306: + - - Pressed + - Toggle + 1303: + - - Pressed + - Toggle + 1304: + - - Pressed + - Toggle + 1305: + - - Pressed + - Toggle + 1302: + - - Pressed + - Toggle + - uid: 1309 components: - type: Transform pos: 4.5,8.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 224: - - Pressed: Toggle - 1626: - - Pressed: Toggle + 124: + - - Pressed + - Toggle + 135: + - - Pressed + - Toggle - proto: SignalButtonDirectional entities: - - uid: 543 + - uid: 1310 components: - type: Transform rot: 1.5707963267948966 rad @@ -11419,9 +11604,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 663: - - Pressed: Toggle - - uid: 641 + 134: + - - Pressed + - Toggle + - uid: 1311 components: - type: Transform rot: 1.5707963267948966 rad @@ -11429,44 +11615,48 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 471: - - Pressed: Toggle - - uid: 751 + 125: + - - Pressed + - Toggle + - uid: 1312 components: - type: Transform pos: -7.5,-4.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 499: - - Pressed: Toggle - - uid: 755 + 131: + - - Pressed + - Toggle + - uid: 1313 components: - type: Transform pos: 10.5,-20.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 513: - - Pressed: Toggle - - uid: 1609 + 132: + - - Pressed + - Toggle + - uid: 1314 components: - type: Transform pos: 6.5,1.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 640: - - Pressed: Toggle + 133: + - - Pressed + - Toggle - proto: SignBridge entities: - - uid: 814 + - uid: 1315 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-20.5 parent: 1 - - uid: 843 + - uid: 1316 components: - type: Transform rot: 1.5707963267948966 rad @@ -11474,56 +11664,56 @@ entities: parent: 1 - proto: SignCargo entities: - - uid: 744 + - uid: 1317 components: - type: Transform pos: -2.5,-12.5 parent: 1 - proto: SignConference entities: - - uid: 762 + - uid: 1318 components: - type: Transform pos: 0.5,-5.5 parent: 1 - proto: SignEngineering entities: - - uid: 745 + - uid: 1319 components: - type: Transform pos: -1.5,-23.5 parent: 1 - proto: SignEVA entities: - - uid: 731 + - uid: 1320 components: - type: Transform pos: 0.5,-12.5 parent: 1 - - uid: 763 + - uid: 1321 components: - type: Transform pos: 0.5,-9.5 parent: 1 - proto: SinkWide entities: - - uid: 694 + - uid: 1322 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 849 + - uid: 1323 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-1.5 parent: 1 - - uid: 861 + - uid: 1324 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 867 + - uid: 1325 components: - type: Transform rot: 3.141592653589793 rad @@ -11531,21 +11721,21 @@ entities: parent: 1 - proto: SMESBasic entities: - - uid: 457 + - uid: 1326 components: - type: Transform pos: -6.5,-28.5 parent: 1 - proto: SoapSyndie entities: - - uid: 853 + - uid: 1327 components: - type: Transform pos: -6.4883375,-0.45261037 parent: 1 - proto: SodaDispenser entities: - - uid: 703 + - uid: 1328 components: - type: Transform rot: 1.5707963267948966 rad @@ -11553,25 +11743,25 @@ entities: parent: 1 - proto: StairDark entities: - - uid: 672 + - uid: 1329 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 679 + - uid: 1330 components: - type: Transform pos: -4.5,-5.5 parent: 1 - proto: StairStage entities: - - uid: 451 + - uid: 1331 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-25.5 parent: 1 - - uid: 564 + - uid: 1332 components: - type: Transform rot: 3.141592653589793 rad @@ -11579,32 +11769,32 @@ entities: parent: 1 - proto: StairStageDark entities: - - uid: 614 + - uid: 1333 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-25.5 parent: 1 - - uid: 832 + - uid: 1334 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,1.5 parent: 1 - - uid: 1600 + - uid: 1335 components: - type: Transform pos: -2.5,8.5 parent: 1 - proto: StoolBar entities: - - uid: 733 + - uid: 1336 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,3.5 parent: 1 - - uid: 735 + - uid: 1337 components: - type: Transform rot: -1.5707963267948966 rad @@ -11612,32 +11802,14 @@ entities: parent: 1 - proto: SubstationBasic entities: - - uid: 350 + - uid: 1338 components: - type: Transform pos: -6.5,-29.5 parent: 1 - proto: SuitStorageBase entities: - - uid: 645 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 646 - - 666 - - 669 - - 730 - - 747 - - uid: 741 + - uid: 54 components: - type: Transform pos: 5.5,4.5 @@ -11666,11 +11838,11 @@ entities: showEnts: False occludes: True ents: - - 1636 - - 1637 - - 1638 - - 1639 - - uid: 742 + - 57 + - 58 + - 55 + - 56 + - uid: 59 components: - type: Transform pos: 5.5,3.5 @@ -11701,11 +11873,29 @@ entities: showEnts: False occludes: True ents: - - 1643 - - 1642 - - 1641 - - 1640 - - uid: 748 + - 63 + - 62 + - 61 + - 60 + - uid: 853 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 857 + - 858 + - 856 + - 854 + - 855 + - uid: 859 components: - type: Transform pos: 0.5,8.5 @@ -11718,12 +11908,12 @@ entities: showEnts: False occludes: True ents: - - 768 - - 796 - - 797 - - 801 - - 804 - - uid: 805 + - 863 + - 864 + - 861 + - 862 + - 860 + - uid: 865 components: - type: Transform pos: -1.5,8.5 @@ -11736,33 +11926,33 @@ entities: showEnts: False occludes: True ents: - - 806 - - 807 - - 808 - - 809 - - 810 + - 866 + - 870 + - 867 + - 869 + - 868 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 783 + - uid: 1339 components: - type: Transform pos: -4.5,-30.5 parent: 1 - proto: SwarmrocketClip entities: - - uid: 160 + - uid: 1340 components: - type: Transform pos: 3.5939274,-3.408547 parent: 1 - - uid: 180 + - uid: 1341 components: - type: Transform pos: 3.3595524,-3.7132344 parent: 1 - proto: SyndicatePersonalAI entities: - - uid: 740 + - uid: 1342 components: - type: MetaData desc: An Imperial model personal AI. @@ -11773,25 +11963,25 @@ entities: parent: 1 - proto: Table entities: - - uid: 523 + - uid: 1343 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-19.5 parent: 1 - - uid: 726 + - uid: 1344 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-22.5 parent: 1 - - uid: 727 + - uid: 1345 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-23.5 parent: 1 - - uid: 728 + - uid: 1346 components: - type: Transform rot: -1.5707963267948966 rad @@ -11799,25 +11989,30 @@ entities: parent: 1 - proto: TableFancyPurple entities: - - uid: 856 + - uid: 1235 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 1 + - uid: 1347 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-24.5 parent: 1 - - uid: 859 + - uid: 1348 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 1 - - uid: 863 + - uid: 1349 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-26.5 parent: 1 - - uid: 865 + - uid: 1350 components: - type: Transform rot: -1.5707963267948966 rad @@ -11825,132 +12020,132 @@ entities: parent: 1 - proto: TableGlass entities: - - uid: 682 + - uid: 1351 components: - type: Transform pos: -6.5,-8.5 parent: 1 - - uid: 683 + - uid: 1352 components: - type: Transform pos: -6.5,-9.5 parent: 1 - - uid: 684 + - uid: 1353 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 685 + - uid: 1354 components: - type: Transform pos: -4.5,-9.5 parent: 1 - proto: TableReinforced entities: - - uid: 217 + - uid: 1355 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,8.5 parent: 1 - - uid: 222 + - uid: 1356 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,8.5 parent: 1 - - uid: 241 + - uid: 1357 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-24.5 parent: 1 - - uid: 417 + - uid: 1358 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-22.5 parent: 1 - - uid: 419 + - uid: 1359 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-23.5 parent: 1 - - uid: 547 + - uid: 1360 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 - - uid: 548 + - uid: 1361 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-28.5 parent: 1 - - uid: 550 + - uid: 1362 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-29.5 parent: 1 - - uid: 555 + - uid: 1363 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-28.5 parent: 1 - - uid: 613 + - uid: 1364 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-26.5 parent: 1 - - uid: 616 + - uid: 1365 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-25.5 parent: 1 - - uid: 628 + - uid: 1366 components: - type: Transform pos: 7.5,-18.5 parent: 1 - - uid: 629 + - uid: 1367 components: - type: Transform pos: 7.5,-19.5 parent: 1 - - uid: 630 + - uid: 1368 components: - type: Transform pos: 7.5,-20.5 parent: 1 - proto: TableWood entities: - - uid: 580 + - uid: 1369 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 698 + - uid: 1370 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 699 + - uid: 1371 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 700 + - uid: 1372 components: - type: Transform pos: -1.5,4.5 parent: 1 - - uid: 1743 + - uid: 1373 components: - type: Transform rot: 3.141592653589793 rad @@ -11958,7 +12153,7 @@ entities: parent: 1 - proto: TelecomServer entities: - - uid: 816 + - uid: 927 components: - type: Transform pos: 0.5,-25.5 @@ -11969,7 +12164,7 @@ entities: showEnts: False occludes: True ents: - - 817 + - 928 machine_board: !type:Container showEnts: False occludes: True @@ -11980,119 +12175,119 @@ entities: ents: [] - proto: ThrusterDSMWarship entities: - - uid: 24 + - uid: 1374 components: - type: Transform pos: 0.5,10.5 parent: 1 - - uid: 198 + - uid: 1375 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-32.5 parent: 1 - - uid: 199 + - uid: 1376 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-32.5 parent: 1 - - uid: 203 + - uid: 1377 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-32.5 parent: 1 - - uid: 204 + - uid: 1378 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-32.5 parent: 1 - - uid: 205 + - uid: 1379 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-32.5 parent: 1 - - uid: 211 + - uid: 1380 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-32.5 parent: 1 - - uid: 212 + - uid: 1381 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-32.5 parent: 1 - - uid: 214 + - uid: 1382 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-32.5 parent: 1 - - uid: 238 + - uid: 1383 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,2.5 parent: 1 - - uid: 239 + - uid: 1384 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,3.5 parent: 1 - - uid: 240 + - uid: 1385 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,4.5 parent: 1 - - uid: 287 + - uid: 1386 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,5.5 parent: 1 - - uid: 294 + - uid: 1387 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-18.5 parent: 1 - - uid: 297 + - uid: 1388 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,2.5 parent: 1 - - uid: 322 + - uid: 1389 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,3.5 parent: 1 - - uid: 346 + - uid: 1390 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,4.5 parent: 1 - - uid: 351 + - uid: 1391 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-32.5 parent: 1 - - uid: 894 + - uid: 1392 components: - type: Transform pos: -0.5,10.5 parent: 1 - - uid: 1768 + - uid: 1393 components: - type: Transform rot: 1.5707963267948966 rad @@ -12100,13 +12295,13 @@ entities: parent: 1 - proto: ToiletDirtyWater entities: - - uid: 692 + - uid: 1394 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 1 - - uid: 693 + - uid: 1395 components: - type: Transform rot: 1.5707963267948966 rad @@ -12114,28 +12309,28 @@ entities: parent: 1 - proto: ToolboxElectricalFilled entities: - - uid: 625 + - uid: 1396 components: - type: Transform pos: -3.4456987,-28.261448 parent: 1 - proto: ToolboxEmergencyFilled entities: - - uid: 618 + - uid: 1397 components: - type: Transform pos: -6.497783,-25.358675 parent: 1 - proto: ToolboxMechanicalFilled entities: - - uid: 626 + - uid: 1398 components: - type: Transform pos: -3.4456987,-28.464573 parent: 1 - proto: UnionfallNemesisMothershipComputer entities: - - uid: 210 + - uid: 1399 components: - type: Transform rot: 3.141592653589793 rad @@ -12143,49 +12338,49 @@ entities: parent: 1 - proto: UnionfallShipNodeDSM entities: - - uid: 151 + - uid: 1400 components: - type: Transform pos: -5.5,-13.5 parent: 1 - proto: VendingMachineCoffee entities: - - uid: 732 + - uid: 1401 components: - type: Transform pos: 1.5,4.5 parent: 1 - proto: VendingMachineSalvage entities: - - uid: 521 + - uid: 1402 components: - type: Transform pos: -4.5,-17.5 parent: 1 - proto: VendingMachineSovietSoda entities: - - uid: 878 + - uid: 1403 components: - type: Transform pos: 1.5,3.5 parent: 1 - proto: VendingMachineSustenance entities: - - uid: 877 + - uid: 1404 components: - type: Transform pos: -1.5,0.5 parent: 1 - proto: VendingMachineTankDispenserEVA entities: - - uid: 743 + - uid: 1405 components: - type: Transform pos: 3.5,4.5 parent: 1 - proto: VendingMachineYouTool entities: - - uid: 869 + - uid: 1406 components: - type: Transform rot: -1.5707963267948966 rad @@ -12193,1234 +12388,1259 @@ entities: parent: 1 - proto: WallPlastitanium entities: - - uid: 2 + - uid: 129 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 1 + - uid: 1083 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 1 + - uid: 1084 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 1 + - uid: 1275 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 1 + - uid: 1276 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 1 + - uid: 1407 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 3 + - uid: 1408 components: - type: Transform pos: 0.5,-17.5 parent: 1 - - uid: 4 + - uid: 1409 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 5 + - uid: 1410 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 6 + - uid: 1411 components: - type: Transform pos: 0.5,-14.5 parent: 1 - - uid: 7 + - uid: 1412 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 8 + - uid: 1413 components: - type: Transform pos: 0.5,-12.5 parent: 1 - - uid: 11 + - uid: 1414 components: - type: Transform pos: 0.5,-9.5 parent: 1 - - uid: 12 + - uid: 1415 components: - type: Transform pos: 0.5,-8.5 parent: 1 - - uid: 13 + - uid: 1416 components: - type: Transform pos: 0.5,-7.5 parent: 1 - - uid: 14 + - uid: 1417 components: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 15 + - uid: 1418 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 16 + - uid: 1419 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 18 + - uid: 1420 components: - type: Transform pos: -10.5,-16.5 parent: 1 - - uid: 23 + - uid: 1421 components: - type: Transform pos: 11.5,-27.5 parent: 1 - - uid: 25 + - uid: 1422 components: - type: Transform pos: -1.5,1.5 parent: 1 - - uid: 26 + - uid: 1423 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 27 + - uid: 1424 components: - type: Transform pos: -2.5,1.5 parent: 1 - - uid: 28 + - uid: 1425 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 30 + - uid: 1426 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 31 + - uid: 1427 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 32 + - uid: 1428 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 34 + - uid: 1429 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 1 - - uid: 35 + - uid: 1430 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,6.5 parent: 1 - - uid: 39 + - uid: 1431 components: - type: Transform pos: -2.5,-10.5 parent: 1 - - uid: 40 + - uid: 1432 components: - type: Transform pos: -10.5,-15.5 parent: 1 - - uid: 41 + - uid: 1433 components: - type: Transform pos: -2.5,-12.5 parent: 1 - - uid: 43 + - uid: 1434 components: - type: Transform pos: -2.5,-14.5 parent: 1 - - uid: 45 + - uid: 1435 components: - type: Transform pos: -2.5,-16.5 parent: 1 - - uid: 46 + - uid: 1436 components: - type: Transform pos: 1.5,-17.5 parent: 1 - - uid: 47 + - uid: 1437 components: - type: Transform pos: 1.5,-18.5 parent: 1 - - uid: 49 + - uid: 1438 components: - type: Transform pos: 1.5,-20.5 parent: 1 - - uid: 50 + - uid: 1439 components: - type: Transform pos: 1.5,-21.5 parent: 1 - - uid: 51 + - uid: 1440 components: - type: Transform pos: 0.5,-21.5 parent: 1 - - uid: 52 + - uid: 1441 components: - type: Transform pos: -0.5,-21.5 parent: 1 - - uid: 54 + - uid: 1442 components: - type: Transform pos: -0.5,-23.5 parent: 1 - - uid: 55 + - uid: 1443 components: - type: Transform pos: -1.5,-23.5 parent: 1 - - uid: 56 + - uid: 1444 components: - type: Transform pos: -2.5,-23.5 parent: 1 - - uid: 57 + - uid: 1445 components: - type: Transform pos: -3.5,-23.5 parent: 1 - - uid: 58 + - uid: 1446 components: - type: Transform pos: -4.5,-23.5 parent: 1 - - uid: 60 + - uid: 1447 components: - type: Transform pos: -6.5,-23.5 parent: 1 - - uid: 61 + - uid: 1448 components: - type: Transform pos: -3.5,-16.5 parent: 1 - - uid: 62 + - uid: 1449 components: - type: Transform pos: -3.5,-17.5 parent: 1 - - uid: 64 + - uid: 1450 components: - type: Transform pos: -3.5,-19.5 parent: 1 - - uid: 65 + - uid: 1451 components: - type: Transform pos: -3.5,-20.5 parent: 1 - - uid: 66 + - uid: 1452 components: - type: Transform pos: -4.5,-16.5 parent: 1 - - uid: 67 + - uid: 1453 components: - type: Transform pos: -5.5,-16.5 parent: 1 - - uid: 68 + - uid: 1454 components: - type: Transform pos: -6.5,-16.5 parent: 1 - - uid: 69 + - uid: 1455 components: - type: Transform pos: -7.5,-16.5 parent: 1 - - uid: 70 + - uid: 1456 components: - type: Transform pos: -8.5,-16.5 parent: 1 - - uid: 71 + - uid: 1457 components: - type: Transform pos: -7.5,-19.5 parent: 1 - - uid: 74 + - uid: 1458 components: - type: Transform pos: -7.5,-17.5 parent: 1 - - uid: 75 + - uid: 1459 components: - type: Transform pos: -7.5,-20.5 parent: 1 - - uid: 76 + - uid: 1460 components: - type: Transform pos: -6.5,-20.5 parent: 1 - - uid: 77 + - uid: 1461 components: - type: Transform pos: -5.5,-20.5 parent: 1 - - uid: 78 + - uid: 1462 components: - type: Transform pos: -4.5,-20.5 parent: 1 - - uid: 80 + - uid: 1463 components: - type: Transform pos: -7.5,-22.5 parent: 1 - - uid: 81 + - uid: 1464 components: - type: Transform pos: -7.5,-23.5 parent: 1 - - uid: 82 + - uid: 1465 components: - type: Transform pos: -3.5,-10.5 parent: 1 - - uid: 83 + - uid: 1466 components: - type: Transform pos: -4.5,-10.5 parent: 1 - - uid: 84 + - uid: 1467 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 85 + - uid: 1468 components: - type: Transform pos: -6.5,-10.5 parent: 1 - - uid: 86 + - uid: 1469 components: - type: Transform pos: -7.5,-10.5 parent: 1 - - uid: 87 + - uid: 1470 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 91 + - uid: 1471 components: - type: Transform pos: -8.5,-14.5 parent: 1 - - uid: 92 + - uid: 1472 components: - type: Transform pos: -8.5,-15.5 parent: 1 - - uid: 93 + - uid: 1473 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 94 + - uid: 1474 components: - type: Transform pos: -4.5,-2.5 parent: 1 - - uid: 95 + - uid: 1475 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 96 + - uid: 1476 components: - type: Transform pos: -6.5,-2.5 parent: 1 - - uid: 98 + - uid: 1477 components: - type: Transform pos: -7.5,-4.5 parent: 1 - - uid: 99 + - uid: 1478 components: - type: Transform pos: -7.5,-3.5 parent: 1 - - uid: 100 + - uid: 1479 components: - type: Transform pos: -9.5,-16.5 parent: 1 - - uid: 101 + - uid: 1480 components: - type: Transform pos: -7.5,-6.5 parent: 1 - - uid: 103 + - uid: 1481 components: - type: Transform pos: -7.5,-8.5 parent: 1 - - uid: 104 + - uid: 1482 components: - type: Transform pos: -7.5,-9.5 parent: 1 - - uid: 105 + - uid: 1483 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 106 + - uid: 1484 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 107 + - uid: 1485 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 108 + - uid: 1486 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 109 + - uid: 1487 components: - type: Transform pos: -7.5,1.5 parent: 1 - - uid: 112 + - uid: 1488 components: - type: Transform pos: -11.5,-12.5 parent: 1 - - uid: 113 + - uid: 1489 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 114 + - uid: 1490 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 115 + - uid: 1491 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 116 + - uid: 1492 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 118 + - uid: 1493 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 120 + - uid: 1494 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 121 + - uid: 1495 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 122 + - uid: 1496 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 123 + - uid: 1497 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 124 + - uid: 1498 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 125 + - uid: 1499 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 126 + - uid: 1500 components: - type: Transform pos: -1.5,6.5 parent: 1 - - uid: 127 + - uid: 1501 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 128 + - uid: 1502 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 129 + - uid: 1503 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 130 + - uid: 1504 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 131 + - uid: 1505 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 132 + - uid: 1506 components: - type: Transform pos: 11.5,-26.5 parent: 1 - - uid: 133 + - uid: 1507 components: - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 134 + - uid: 1508 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 135 + - uid: 1509 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 136 + - uid: 1510 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 139 + - uid: 1511 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 143 + - uid: 1512 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 147 + - uid: 1513 components: - type: Transform pos: -11.5,-10.5 parent: 1 - - uid: 149 + - uid: 1514 components: - type: Transform pos: -11.5,-13.5 parent: 1 - - uid: 157 + - uid: 1515 components: - type: Transform pos: -9.5,-11.5 parent: 1 - - uid: 165 + - uid: 1516 components: - type: Transform pos: 12.5,-25.5 parent: 1 - - uid: 166 + - uid: 1517 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 167 + - uid: 1518 components: - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 168 + - uid: 1519 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-23.5 parent: 1 - - uid: 172 + - uid: 1520 components: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 173 + - uid: 1521 components: - type: Transform pos: 7.5,-2.5 parent: 1 - - uid: 181 + - uid: 1522 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 182 + - uid: 1523 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 183 + - uid: 1524 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 184 + - uid: 1525 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 185 + - uid: 1526 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 186 + - uid: 1527 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 187 + - uid: 1528 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 188 + - uid: 1529 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 189 + - uid: 1530 components: - type: Transform pos: -11.5,-11.5 parent: 1 - - uid: 190 + - uid: 1531 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 191 + - uid: 1532 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 192 + - uid: 1533 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 193 + - uid: 1534 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 194 + - uid: 1535 components: - type: Transform pos: 7.5,5.5 parent: 1 - - uid: 200 + - uid: 1536 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 201 + - uid: 1537 components: - type: Transform pos: 7.5,12.5 parent: 1 - - uid: 202 + - uid: 1538 components: - type: Transform pos: -9.5,-10.5 parent: 1 - - uid: 226 + - uid: 1539 components: - type: Transform pos: 5.5,8.5 parent: 1 - - uid: 230 + - uid: 1540 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 233 + - uid: 1541 components: - type: Transform pos: 2.5,-17.5 parent: 1 - - uid: 243 + - uid: 1542 components: - type: Transform pos: 4.5,-26.5 parent: 1 - - uid: 249 + - uid: 1543 components: - type: Transform pos: 10.5,-23.5 parent: 1 - - uid: 250 + - uid: 1544 components: - type: Transform pos: 10.5,-20.5 parent: 1 - - uid: 266 + - uid: 1545 components: - type: Transform pos: 9.5,-22.5 parent: 1 - - uid: 267 + - uid: 1546 components: - type: Transform pos: 9.5,-18.5 parent: 1 - - uid: 268 + - uid: 1547 components: - type: Transform pos: 9.5,-19.5 parent: 1 - - uid: 269 + - uid: 1548 components: - type: Transform pos: 9.5,-20.5 parent: 1 - - uid: 283 + - uid: 1549 components: - type: Transform pos: 5.5,-26.5 parent: 1 - - uid: 284 + - uid: 1550 components: - type: Transform pos: 10.5,-24.5 parent: 1 - - uid: 285 + - uid: 1551 components: - type: Transform pos: 11.5,-24.5 parent: 1 - - uid: 286 + - uid: 1552 components: - type: Transform pos: 10.5,-25.5 parent: 1 - - uid: 288 + - uid: 1553 components: - type: Transform pos: 9.5,-26.5 parent: 1 - - uid: 291 + - uid: 1554 components: - type: Transform pos: 2.5,-21.5 parent: 1 - - uid: 292 + - uid: 1555 components: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 293 + - uid: 1556 components: - type: Transform pos: 3.5,-22.5 parent: 1 - - uid: 296 + - uid: 1557 components: - type: Transform pos: 6.5,-22.5 parent: 1 - - uid: 298 + - uid: 1558 components: - type: Transform pos: 8.5,-22.5 parent: 1 - - uid: 299 + - uid: 1559 components: - type: Transform pos: 3.5,-23.5 parent: 1 - - uid: 300 + - uid: 1560 components: - type: Transform pos: 3.5,-24.5 parent: 1 - - uid: 301 + - uid: 1561 components: - type: Transform pos: 3.5,-25.5 parent: 1 - - uid: 302 + - uid: 1562 components: - type: Transform pos: 3.5,-26.5 parent: 1 - - uid: 303 + - uid: 1563 components: - type: Transform pos: 3.5,-27.5 parent: 1 - - uid: 304 + - uid: 1564 components: - type: Transform pos: 4.5,-27.5 parent: 1 - - uid: 305 + - uid: 1565 components: - type: Transform pos: 5.5,-27.5 parent: 1 - - uid: 306 + - uid: 1566 components: - type: Transform pos: 6.5,-27.5 parent: 1 - - uid: 307 + - uid: 1567 components: - type: Transform pos: 7.5,-27.5 parent: 1 - - uid: 308 + - uid: 1568 components: - type: Transform pos: 8.5,-27.5 parent: 1 - - uid: 309 + - uid: 1569 components: - type: Transform pos: -8.5,-20.5 parent: 1 - - uid: 310 + - uid: 1570 components: - type: Transform pos: -10.5,-20.5 parent: 1 - - uid: 311 + - uid: 1571 components: - type: Transform pos: -9.5,-20.5 parent: 1 - - uid: 312 + - uid: 1572 components: - type: Transform pos: -10.5,-21.5 parent: 1 - - uid: 313 + - uid: 1573 components: - type: Transform pos: -11.5,-21.5 parent: 1 - - uid: 323 + - uid: 1574 components: - type: Transform pos: -9.5,-26.5 parent: 1 - - uid: 325 + - uid: 1575 components: - type: Transform pos: -8.5,-26.5 parent: 1 - - uid: 328 + - uid: 1576 components: - type: Transform pos: -7.5,-29.5 parent: 1 - - uid: 329 + - uid: 1577 components: - type: Transform pos: -7.5,-28.5 parent: 1 - - uid: 330 + - uid: 1578 components: - type: Transform pos: -7.5,-24.5 parent: 1 - - uid: 331 + - uid: 1579 components: - type: Transform pos: -7.5,-25.5 parent: 1 - - uid: 332 + - uid: 1580 components: - type: Transform pos: -7.5,-26.5 parent: 1 - - uid: 333 + - uid: 1581 components: - type: Transform pos: -7.5,-27.5 parent: 1 - - uid: 334 + - uid: 1582 components: - type: Transform pos: -2.5,-24.5 parent: 1 - - uid: 335 + - uid: 1583 components: - type: Transform pos: -2.5,-25.5 parent: 1 - - uid: 336 + - uid: 1584 components: - type: Transform pos: -2.5,-26.5 parent: 1 - - uid: 337 + - uid: 1585 components: - type: Transform pos: -2.5,-27.5 parent: 1 - - uid: 338 + - uid: 1586 components: - type: Transform pos: -3.5,-27.5 parent: 1 - - uid: 339 + - uid: 1587 components: - type: Transform pos: -4.5,-27.5 parent: 1 - - uid: 340 + - uid: 1588 components: - type: Transform pos: -5.5,-27.5 parent: 1 - - uid: 341 + - uid: 1589 components: - type: Transform pos: -6.5,-27.5 parent: 1 - - uid: 342 + - uid: 1590 components: - type: Transform pos: 8.5,-28.5 parent: 1 - - uid: 343 + - uid: 1591 components: - type: Transform pos: 8.5,-29.5 parent: 1 - - uid: 347 + - uid: 1592 components: - type: Transform pos: -7.5,-30.5 parent: 1 - - uid: 349 + - uid: 1593 components: - type: Transform pos: 8.5,-30.5 parent: 1 - - uid: 352 + - uid: 1594 components: - type: Transform pos: 6.5,-31.5 parent: 1 - - uid: 355 + - uid: 1595 components: - type: Transform pos: 2.5,-31.5 parent: 1 - - uid: 356 + - uid: 1596 components: - type: Transform pos: -5.5,-31.5 parent: 1 - - uid: 358 + - uid: 1597 components: - type: Transform pos: -1.5,-31.5 parent: 1 - - uid: 361 + - uid: 1598 components: - type: Transform pos: 5.5,-31.5 parent: 1 - - uid: 362 + - uid: 1599 components: - type: Transform pos: 4.5,-31.5 parent: 1 - - uid: 363 + - uid: 1600 components: - type: Transform pos: 3.5,-31.5 parent: 1 - - uid: 364 + - uid: 1601 components: - type: Transform pos: 1.5,-31.5 parent: 1 - - uid: 365 + - uid: 1602 components: - type: Transform pos: 0.5,-31.5 parent: 1 - - uid: 366 + - uid: 1603 components: - type: Transform pos: -0.5,-31.5 parent: 1 - - uid: 367 + - uid: 1604 components: - type: Transform pos: -2.5,-31.5 parent: 1 - - uid: 368 + - uid: 1605 components: - type: Transform pos: -3.5,-31.5 parent: 1 - - uid: 369 + - uid: 1606 components: - type: Transform pos: -4.5,-31.5 parent: 1 - - uid: 375 + - uid: 1607 components: - type: Transform pos: 2.5,-27.5 parent: 1 - - uid: 376 + - uid: 1608 components: - type: Transform pos: 1.5,-28.5 parent: 1 - - uid: 378 + - uid: 1609 components: - type: Transform pos: 1.5,-27.5 parent: 1 - - uid: 379 + - uid: 1610 components: - type: Transform pos: 1.5,-29.5 parent: 1 - - uid: 380 + - uid: 1611 components: - type: Transform pos: -1.5,-27.5 parent: 1 - - uid: 381 + - uid: 1612 components: - type: Transform pos: -1.5,-28.5 parent: 1 - - uid: 382 + - uid: 1613 components: - type: Transform pos: -1.5,-29.5 parent: 1 - - uid: 385 + - uid: 1614 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 396 + - uid: 1615 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,9.5 parent: 1 - - uid: 407 + - uid: 1616 components: - type: Transform pos: -11.5,-19.5 parent: 1 - - uid: 408 + - uid: 1617 components: - type: Transform pos: -10.5,-19.5 parent: 1 - - uid: 409 + - uid: 1618 components: - type: Transform pos: -11.5,-15.5 parent: 1 - - uid: 410 + - uid: 1619 components: - type: Transform pos: -11.5,-16.5 parent: 1 - - uid: 477 + - uid: 1620 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,10.5 parent: 1 - - uid: 479 + - uid: 1621 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,9.5 parent: 1 - - uid: 529 + - uid: 1622 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-22.5 parent: 1 - - uid: 537 + - uid: 1623 components: - type: Transform pos: -9.5,-12.5 parent: 1 - - uid: 540 + - uid: 1624 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 541 + - uid: 1625 components: - type: Transform pos: 10.5,-27.5 parent: 1 - - uid: 589 + - uid: 1626 components: - type: Transform pos: 10.5,-28.5 parent: 1 - - uid: 603 + - uid: 1627 components: - type: Transform pos: -10.5,-14.5 parent: 1 - - uid: 604 + - uid: 1628 components: - type: Transform pos: -10.5,-13.5 parent: 1 - - uid: 690 + - uid: 1629 components: - type: Transform pos: -10.5,-10.5 parent: 1 - - uid: 798 + - uid: 1630 components: - type: Transform pos: -10.5,-11.5 parent: 1 - - uid: 824 + - uid: 1631 components: - type: Transform pos: 6.5,-26.5 parent: 1 - - uid: 826 + - uid: 1632 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 848 + - uid: 1633 components: - type: Transform pos: 10.5,-26.5 parent: 1 - - uid: 851 + - uid: 1634 components: - type: Transform pos: 12.5,-24.5 parent: 1 - - uid: 855 + - uid: 1635 components: - type: Transform pos: 11.5,-25.5 parent: 1 - - uid: 866 + - uid: 1636 components: - type: Transform pos: -10.5,-12.5 parent: 1 - - uid: 886 + - uid: 1637 components: - type: Transform pos: -9.5,-14.5 parent: 1 - - uid: 1521 + - uid: 1638 components: - type: Transform pos: -9.5,-15.5 parent: 1 - - uid: 1598 + - uid: 1639 components: - type: Transform pos: -9.5,-13.5 parent: 1 - - uid: 1608 + - uid: 1640 components: - type: Transform pos: -9.5,-8.5 parent: 1 - proto: WallPlastitaniumCMM entities: - - uid: 42 + - uid: 1641 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-4.5 parent: 1 - - uid: 102 + - uid: 1642 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-7.5 parent: 1 - - uid: 153 + - uid: 1643 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-3.5 parent: 1 - - uid: 159 + - uid: 1644 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-1.5 parent: 1 - - uid: 163 + - uid: 1645 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-0.5 parent: 1 - - uid: 517 + - uid: 1646 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-8.5 parent: 1 - - uid: 1635 + - uid: 1647 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-9.5 parent: 1 - - uid: 1764 + - uid: 1648 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-6.5 parent: 1 - - uid: 1767 + - uid: 1649 components: - type: Transform rot: -1.5707963267948966 rad @@ -13428,363 +13648,363 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 314 + - uid: 1650 components: - type: Transform pos: -12.5,-21.5 parent: 1 - - uid: 405 + - uid: 1651 components: - type: Transform pos: -12.5,-16.5 parent: 1 - - uid: 431 + - uid: 1652 components: - type: Transform pos: -7.5,6.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestCurved entities: - - uid: 245 + - uid: 1653 components: - type: Transform pos: 12.5,-20.5 parent: 1 - - uid: 435 + - uid: 1654 components: - type: Transform pos: 10.5,-4.5 parent: 1 - - uid: 756 + - uid: 1655 components: - type: Transform pos: 7.5,1.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestHollow entities: - - uid: 177 + - uid: 1656 components: - type: Transform pos: 8.5,-3.5 parent: 1 - - uid: 271 + - uid: 1657 components: - type: Transform pos: 10.5,-19.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastCurved entities: - - uid: 406 + - uid: 1658 components: - type: Transform pos: -12.5,-19.5 parent: 1 - - uid: 785 + - uid: 1659 components: - type: Transform pos: -7.5,-31.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastHollow entities: - - uid: 327 + - uid: 1660 components: - type: Transform pos: -8.5,-29.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestCurved entities: - - uid: 242 + - uid: 1661 components: - type: Transform pos: 10.5,-17.5 parent: 1 - - uid: 1165 + - uid: 1662 components: - type: Transform pos: 8.5,-31.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestHollow entities: - - uid: 345 + - uid: 1663 components: - type: Transform pos: 9.5,-29.5 parent: 1 - proto: WallPlastitaniumDSM entities: - - uid: 161 + - uid: 1664 components: - type: Transform pos: 5.5,15.5 parent: 1 - - uid: 227 + - uid: 1665 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 228 + - uid: 1666 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 231 + - uid: 1667 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 353 + - uid: 1668 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-27.5 parent: 1 - - uid: 354 + - uid: 1669 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-27.5 parent: 1 - - uid: 357 + - uid: 1670 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-31.5 parent: 1 - - uid: 359 + - uid: 1671 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-4.5 parent: 1 - - uid: 386 + - uid: 1672 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 387 + - uid: 1673 components: - type: Transform pos: 5.5,17.5 parent: 1 - - uid: 388 + - uid: 1674 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 421 + - uid: 1675 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-28.5 parent: 1 - - uid: 422 + - uid: 1676 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-32.5 parent: 1 - - uid: 423 + - uid: 1677 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-32.5 parent: 1 - - uid: 424 + - uid: 1678 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-32.5 parent: 1 - - uid: 425 + - uid: 1679 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,10.5 parent: 1 - - uid: 426 + - uid: 1680 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 427 + - uid: 1681 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,9.5 parent: 1 - - uid: 444 + - uid: 1682 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-17.5 parent: 1 - - uid: 445 + - uid: 1683 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,7.5 parent: 1 - - uid: 446 + - uid: 1684 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,6.5 parent: 1 - - uid: 447 + - uid: 1685 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-0.5 parent: 1 - - uid: 474 + - uid: 1686 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 475 + - uid: 1687 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 481 + - uid: 1688 components: - type: Transform pos: 2.5,15.5 parent: 1 - - uid: 502 + - uid: 1689 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 1 - - uid: 503 + - uid: 1690 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-4.5 parent: 1 - - uid: 504 + - uid: 1691 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-4.5 parent: 1 - - uid: 505 + - uid: 1692 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-17.5 parent: 1 - - uid: 506 + - uid: 1693 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-17.5 parent: 1 - - uid: 507 + - uid: 1694 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-27.5 parent: 1 - - uid: 590 + - uid: 1695 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 1 - - uid: 591 + - uid: 1696 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,10.5 parent: 1 - - uid: 605 + - uid: 1697 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-32.5 parent: 1 - - uid: 670 + - uid: 1698 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,2.5 parent: 1 - - uid: 671 + - uid: 1699 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,2.5 parent: 1 - - uid: 729 + - uid: 1700 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 1 - - uid: 749 + - uid: 1701 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-28.5 parent: 1 - - uid: 892 + - uid: 1702 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-31.5 parent: 1 - - uid: 895 + - uid: 1703 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-0.5 parent: 1 - - uid: 896 + - uid: 1704 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 1 - - uid: 897 + - uid: 1705 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-13.5 parent: 1 - - uid: 899 + - uid: 1706 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-12.5 parent: 1 - - uid: 900 + - uid: 1707 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-2.5 parent: 1 - - uid: 901 + - uid: 1708 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,12.5 parent: 1 - - uid: 1376 + - uid: 1709 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 1 - - uid: 1377 + - uid: 1710 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - uid: 1622 + - uid: 1711 components: - type: Transform rot: 1.5707963267948966 rad @@ -13795,64 +14015,64 @@ entities: - type: Transform pos: 5.5,16.5 parent: 1 - - uid: 1726 + - uid: 1713 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 1729 + - uid: 1714 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 1749 + - uid: 1715 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 1750 + - uid: 1716 components: - type: Transform pos: 3.5,18.5 parent: 1 - - uid: 1751 + - uid: 1717 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 1752 + - uid: 1718 components: - type: Transform pos: 6.5,15.5 parent: 1 - - uid: 1753 + - uid: 1719 components: - type: Transform pos: 5.5,18.5 parent: 1 - - uid: 1754 + - uid: 1720 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 1755 + - uid: 1721 components: - type: Transform pos: 5.5,14.5 parent: 1 - - uid: 1756 + - uid: 1722 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 1757 + - uid: 1723 components: - type: Transform pos: 3.5,17.5 parent: 1 - proto: WarpPointShip entities: - - uid: 1602 + - uid: 1724 components: - type: Transform rot: -1.5707963267948966 rad @@ -13860,7 +14080,7 @@ entities: parent: 1 - proto: WeaponCapacitorRecharger entities: - - uid: 637 + - uid: 1725 components: - type: Transform rot: -1.5707963267948966 rad @@ -13868,19 +14088,23 @@ entities: parent: 1 - proto: WeaponFlareGun entities: - - uid: 546 + - uid: 1726 components: - type: Transform pos: -5.634655,-19.159256 parent: 1 - proto: WeaponTurretNeedler entities: - - uid: 573 + - uid: 1727 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,11.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -13895,14 +14119,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 840 - - uid: 574 + linkedConsoleId: 894 + - uid: 1728 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,10.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -13917,14 +14153,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 840 - - uid: 1610 + linkedConsoleId: 894 + - uid: 1729 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-3.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -13939,14 +14187,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 840 - - uid: 1611 + linkedConsoleId: 894 + - uid: 1730 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-20.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -13961,15 +14221,27 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 840 + linkedConsoleId: 894 - proto: WeaponTurretVulcan entities: - - uid: 527 + - uid: 1731 components: - type: Transform pos: 13.5,-25.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -13984,14 +14256,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 840 - - uid: 874 + linkedConsoleId: 894 + - uid: 1732 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-15.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -14006,14 +14290,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 840 - - uid: 875 + linkedConsoleId: 894 + - uid: 1733 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,16.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -14028,13 +14324,25 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 840 - - uid: 876 + linkedConsoleId: 894 + - uid: 1734 components: - type: Transform pos: 7.5,-32.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -14049,13 +14357,25 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 840 - - uid: 879 + linkedConsoleId: 894 + - uid: 1735 components: - type: Transform pos: -6.5,-32.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -14070,14 +14390,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 840 - - uid: 1604 + linkedConsoleId: 894 + - uid: 1736 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,16.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -14092,14 +14424,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 840 - - uid: 1607 + linkedConsoleId: 894 + - uid: 1737 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,6.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -14114,14 +14458,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 840 - - uid: 1655 + linkedConsoleId: 894 + - uid: 1738 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-4.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -14136,14 +14492,26 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: PointCannon - linkedConsoleId: 840 - - uid: 1682 + linkedConsoleId: 894 + - uid: 1739 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,0.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -14158,21 +14526,29 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - proto: WindoorSecure entities: - - uid: 516 + - uid: 1740 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 1 - - uid: 549 + - uid: 1741 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 - - uid: 551 + - uid: 1742 components: - type: Transform rot: 1.5707963267948966 rad @@ -14180,13 +14556,13 @@ entities: parent: 1 - proto: WindowReinforcedDirectional entities: - - uid: 514 + - uid: 1743 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-20.5 parent: 1 - - uid: 515 + - uid: 1744 components: - type: Transform rot: 1.5707963267948966 rad diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml index c07b8f96abc..9d1adc6dbd7 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml @@ -84,7 +84,7 @@ id: NCWLHomeguardLeaderPDA ears: ClothingHeadsetNCWL shoes: ClothingShoesBootsMagNCWL - outerClothing: ClothingOuterHardsuitNCWLPetya + outerClothing: ClothingOuterCoatJacketJamrock head: ClothingHeadHatNCWLBeretAdmiral belt: ClothingBeltAssaultFilledCrew #looks better pocket1: DoubleEmergencyOxygenTankFilled @@ -93,7 +93,10 @@ eyes: ClothingEyesHudSecurity suitstorage: WeaponPistolT91 storage: - back: + inhand: + - ClothingOuterHardsuitNCWLPetya + - JetpackBlackFilled + back: - VoidsuitKitNCWL - BoxMRE - WeaponPistolT91 From 00d7cfefa3b75d165d6accc41e3b6023d58c3c9d Mon Sep 17 00:00:00 2001 From: Emre D Date: Wed, 11 Mar 2026 01:06:46 +0100 Subject: [PATCH 3/6] Unionfallupdate1 --- .../UnionfallCapturePointSystem.cs | 64 +- .../Unionfall/DSM/unionfall_ibis.yml | 1682 +- .../Unionfall/DSM/unionfall_laelaps.yml | 8834 ++++----- .../Unionfall/DSM/unionfall_saintsfall.yml | 896 +- .../Unionfall/NCWL/unionfall_gargut.yml | 7899 ++++---- .../Unionfall/NCWL/unionfall_sasha.yml | 4010 +++-- .../Unionfall/unionfall_clementine.yml | 14984 +++++++++------- .../_Crescent/Unionfall/unionfall_nemesis.yml | 13310 +++++++------- .../Objects/Misc/UnionfallDSMCadetNote.yml | 10 +- .../Objects/Misc/UnionfallNCWLCadetNote.yml | 4 +- .../unionfall_clementine.yml | 6 +- .../unionfall_gamemode/unionfall_nemesis.yml | 6 +- .../Roles/Jobs/UnionfallDSM/dsm_cadet.yml | 11 +- .../Roles/Jobs/UnionfallDSM/dsm_doctor.yml | 26 +- .../Roles/Jobs/UnionfallDSM/dsm_leader.yml | 13 +- .../Roles/Jobs/UnionfallDSM/dsm_officer.yml | 9 +- .../Roles/Jobs/UnionfallDSM/dsm_rifleman.yml | 8 +- .../Jobs/UnionfallDSM/dsm_ship_captain.yml | 12 +- .../Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml | 5 +- .../Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml | 15 +- .../Roles/Jobs/UnionfallNCWL/ncwl_doctor.yml | 26 +- .../Roles/Jobs/UnionfallNCWL/ncwl_leader.yml | 8 +- .../Roles/Jobs/UnionfallNCWL/ncwl_officer.yml | 8 +- .../Jobs/UnionfallNCWL/ncwl_rifleman.yml | 10 +- .../Jobs/UnionfallNCWL/ncwl_ship_captain.yml | 20 +- .../Jobs/UnionfallNCWL/ncwl_ship_crew.yml | 8 +- 26 files changed, 27817 insertions(+), 24067 deletions(-) diff --git a/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointSystem.cs b/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointSystem.cs index f7839d44151..b7dc00c402d 100644 --- a/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointSystem.cs +++ b/Content.Server/_Crescent/UnionfallObjectives/UnionfallCapturePointSystem.cs @@ -41,16 +41,11 @@ public override void Initialize() _sawmill = IoCManager.Resolve().GetSawmill("audio.ambience"); } - private void OnComponentInit(EntityUid uid, UnionfallCapturePointComponent component, ComponentInit args) - { - TimeSpan graceTime = TimeSpan.FromSeconds(component.GracePeriod); - Timer.Spawn(TimeSpan.FromMinutes(1), () => AnnouncementWarStart(graceTime)); - Timer.Spawn(graceTime * 0.25, () => AnnouncementWarPeriodic(graceTime - graceTime * 0.25)); - Timer.Spawn(graceTime * 0.50, () => AnnouncementWarPeriodic(graceTime - graceTime * 0.50)); - Timer.Spawn(graceTime * 0.75, () => AnnouncementWarPeriodic(graceTime - graceTime * 0.75)); - Timer.Spawn(graceTime - TimeSpan.FromMinutes(1), AnnouncementWarAlmost); - Timer.Spawn(graceTime - TimeSpan.FromSeconds(10), AnnouncementWarGraceOver); - } +private void OnComponentInit(EntityUid uid, UnionfallCapturePointComponent component, ComponentInit args) +{ + // Announcement timer'ları buradan kaldırıldı. + // Tüm announcement'lar UnionfallAnnouncerSystem üzerinden yönetiliyor. +} public override void Update(float frameTime) { @@ -59,19 +54,19 @@ public override void Update(float frameTime) var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var capturepoint)) { - capturepoint.GracePeriod -= frameTime; + capturepoint.GracePeriod -= frameTime; //we do it this way so we can VVedit in admin mode midgame - if (capturepoint.GracePeriod > 0f) + if (capturepoint.GracePeriod > 0f) //point is still in grace period return; - if (capturepoint.CapturingFaction == null) + if (capturepoint.CapturingFaction == null) //if nobody's capping it then don't do anything return; - else + else //someone is capping it rn { - capturepoint.CurrentCaptureProgress -= frameTime; + capturepoint.CurrentCaptureProgress -= frameTime; //this is how the timer decreases } - if (capturepoint.CurrentCaptureProgress <= 0) + if (capturepoint.CurrentCaptureProgress <= 0) //capturing complete. TODO: NEED TO END THE ROUND SOMEHOW { _announcer.SendAnnouncement(_announcer.GetAnnouncementId("Fallback"), Filter.Broadcast(), capturepoint.CapturingFaction + " has secured the control point! The round is over."); @@ -84,13 +79,13 @@ public override void Update(float frameTime) private void OnActivatedInWorld(EntityUid uid, UnionfallCapturePointComponent component, ActivateInWorldEvent args) { - if (component.GracePeriod > 0) + if (component.GracePeriod > 0) //grace period still active { _popup.PopupEntity(Loc.GetString("capturepoint-grace-period-fail"), uid, args.User); return; } - if (!TryComp(args.User, out var comp)) + if (!TryComp(args.User, out var comp)) //someone with no faction interacted with this. modified client only return; string faction = comp.Faction; @@ -116,21 +111,21 @@ private void OnCaptureDoAfter(EntityUid uid, UnionfallCapturePointComponent comp if (args.Target is null) return; - if (!TryComp(args.User, out var comp)) + if (!TryComp(args.User, out var comp)) //someone with no faction interacted with this. modified client only return; string faction = comp.Faction; - if (component.CapturingFaction == null) + if (component.CapturingFaction == null) //faction now controls da point { component.CapturingFaction = faction; _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallPointCapture"), Filter.Broadcast(), faction + " has activated the control point! It will finish in " + float.Round(component.CurrentCaptureProgress).ToString() + " seconds."); } - else if (component.CapturingFaction != faction) + else if (component.CapturingFaction != faction) //opposing faction touched control point { component.CapturingFaction = faction; - component.CurrentCaptureProgress += component.CaptureTimeBonus; - if (component.CurrentCaptureProgress > component.TimeToEnd) + component.CurrentCaptureProgress += component.CaptureTimeBonus; //takes longer since it switched sides + if (component.CurrentCaptureProgress > component.TimeToEnd) //cant go longer than this amount component.CurrentCaptureProgress = component.TimeToEnd; _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallPointCapture"), Filter.Broadcast(), faction + " seized control of the control point! The time left is " + float.Round(component.CurrentCaptureProgress).ToString() + " seconds."); @@ -140,13 +135,12 @@ private void OnCaptureDoAfter(EntityUid uid, UnionfallCapturePointComponent comp private void AnnouncementWarStart(TimeSpan time) { _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallBegin"), Filter.Broadcast(), - "HADAL STORM DETECTED - Emergency repulsion field deployed, estimated storm dispersion time: <" + time.ToString(@"hh\:mm\:ss") + ">... Dispersion pattern confirms presence of a hostile fleet in the operating area."); + "HADAL STORM DETECTED - Emergency repulsion field deployed, estimated storm dispersion time: <" + time + ">... Dispersion pattern confirms presence of a hostile fleet in the operating area."); } - private void AnnouncementWarPeriodic(TimeSpan time) { _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallPeriodic"), Filter.Broadcast(), - "<" + time.ToString(@"hh\:mm\:ss") + "> until the Hadal storm disperses."); + "<" + time + "> until the Hadal storm disperses."); } private void AnnouncementWarAlmost() @@ -154,23 +148,9 @@ private void AnnouncementWarAlmost() _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallAlmost"), Filter.Broadcast(), "<00:01:00> LEFT UNTIL FULL HADAL STORM DISPERSION."); } - private void AnnouncementWarGraceOver() { - for (int i = 10; i > 0; i--) - { - int countdown = i; - Timer.Spawn(TimeSpan.FromSeconds(10 - countdown), () => - { - _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallCountdown"), Filter.Broadcast(), - "HADAL STORM DISPERSING IN <00:00:" + countdown.ToString("D2") + ">..."); - }); - } - - Timer.Spawn(TimeSpan.FromSeconds(10), () => - { - _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallGraceOver"), Filter.Broadcast(), + _announcer.SendAnnouncement(_announcer.GetAnnouncementId("unionfallGraceOver"), Filter.Broadcast(), "HADAL STORM HAS DISPERSED. Emergency dispersion field has been disabled. Long-Range radar readings confirm presence of hostile fleet, with interception course set to NanoTransen Vladzena Extraction Station"); - }); } -} \ No newline at end of file +} diff --git a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_ibis.yml b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_ibis.yml index b03c5771166..260280a57f6 100644 --- a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_ibis.yml +++ b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_ibis.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/10/2026 21:18:49 + entityCount: 346 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 34: FloorDarkDiagonal @@ -27,20 +38,20 @@ entities: chunks: 0,0: ind: 0,0 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAAwAAAAAAggAAAAAAAwAAAAAAggAAAAAAggAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAwAAAAAAggAAAAAAAwAAAAAAAwAAAAAABAAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAwAAAAAAggAAAAAAAwAAAAAAAwAAAAAABQAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAggAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIgAAAAAAIgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: IgAAAAAAACIAAAAAAAAiAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMAAAAAAAAjAAAAAAAAAwAAAAAAAIIAAAAAAAADAAAAAAAAggAAAAAAAIIAAAAAAAA9AAAAAAAAPQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAAMAAAAAAACCAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAAPQAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAADAAAAAAAAggAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAD0AAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIIAAAAAAAADAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAADAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACIAAAAAAAAiAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAPQAAAAAAAD0AAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPQAAAAAAPQAAAAAAggAAAAAAggAAAAAAAwAAAAAAggAAAAAAAwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAggAAAAAAAwAAAAAAAwAAAAAAggAAAAAAAwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAggAAAAAAAwAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAggAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIgAAAAAAIgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAiAAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAPQAAAAAAAD0AAAAAAACCAAAAAAAAggAAAAAAAAMAAAAAAACCAAAAAAAAAwAAAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAAA9AAAAAAAAggAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAAMAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAPQAAAAAAAAUAAAAAAAADAAAAAAAAAwAAAAAAAIIAAAAAAAADAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAMAAAAAAACCAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAAwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAiAAAAAAAAIgAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAD0AAAAAAAA9AAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPQAAAAAAPQAAAAAAggAAAAAAggAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIgAAAAAAIgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAD0AAAAAAAA9AAAAAAAAggAAAAAAAIIAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAiAAAAAAAAIgAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAggAAAAAAggAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAADAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAIIAAAAAAACCAAAAAAAAPQAAAAAAAD0AAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -66,359 +77,448 @@ entities: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 93: -4,6 - 94: 5,6 + 83: -4,6 + 84: 5,6 - node: angle: 6.283185307179586 rad color: '#D381C996' id: BrickTileSteelCornerNe decals: - 390: 2,0 - 392: -1,0 + 378: 2,0 + 380: -1,0 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 91: -5,6 - 92: 4,6 + 81: -5,6 + 82: 4,6 - node: angle: 6.283185307179586 rad color: '#D381C996' id: BrickTileSteelCornerNw decals: - 391: 1,0 - 393: -2,0 + 379: 1,0 + 381: -2,0 - node: color: '#D381C996' id: BrickTileSteelCornerSe decals: - 88: 2,-1 - 97: 5,5 - 98: -4,5 + 80: 2,-1 + 87: 5,5 + 88: -4,5 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: - 87: -2,-1 - 95: -5,5 - 96: 4,5 + 79: -2,-1 + 85: -5,5 + 86: 4,5 - node: color: '#D381C996' id: BrickTileSteelInnerNe decals: - 121: -1,-1 + 109: -1,-1 - node: color: '#D381C996' id: BrickTileSteelInnerNw decals: - 120: 1,-1 + 108: 1,-1 - node: color: '#D381C996' id: BrickTileSteelLineN decals: - 122: 0,-1 + 110: 0,-1 - node: color: '#D381C996' id: BrickTileSteelLineS decals: - 111: -1,-1 - 112: 0,-1 - 113: 1,-1 + 101: -1,-1 + 102: 0,-1 + 103: 1,-1 - node: zIndex: 1 id: LatticeCornerNE decals: - 137: 2,4 - 166: -2,4 - 180: -6,-2 - 183: -2,-3 - 208: 3,7 - 226: 2,4 - 237: 3,7 - 277: -2,4 - 291: -6,-2 - 294: -2,-3 - 315: 2,4 - 326: 3,7 - 366: -2,4 - 380: -6,-2 - 383: -2,-3 + 125: 2,4 + 154: -2,4 + 168: -6,-2 + 171: -2,-3 + 196: 3,7 + 214: 2,4 + 225: 3,7 + 265: -2,4 + 279: -6,-2 + 282: -2,-3 + 303: 2,4 + 314: 3,7 + 354: -2,4 + 368: -6,-2 + 371: -2,-3 + 400: 2,4 + 411: 3,7 + 451: -2,4 + 465: -6,-2 + 468: -2,-3 - node: zIndex: 1 id: LatticeCornerNW decals: - 140: 2,4 - 169: -2,4 - 186: 2,-3 - 189: 6,-2 - 197: -3,7 - 229: 2,4 - 269: -3,7 - 280: -2,4 - 297: 2,-3 - 300: 6,-2 - 318: 2,4 - 358: -3,7 - 369: -2,4 - 386: 2,-3 - 389: 6,-2 + 128: 2,4 + 157: -2,4 + 174: 2,-3 + 177: 6,-2 + 185: -3,7 + 217: 2,4 + 257: -3,7 + 268: -2,4 + 285: 2,-3 + 288: 6,-2 + 306: 2,4 + 346: -3,7 + 357: -2,4 + 374: 2,-3 + 377: 6,-2 + 403: 2,4 + 443: -3,7 + 454: -2,4 + 471: 2,-3 + 474: 6,-2 - node: zIndex: 1 id: LatticeCornerSE decals: - 125: 0,4 - 130: 1,4 - 135: 2,4 - 143: 2,5 - 155: -11,0 - 158: -9,1 - 161: -8,4 - 164: -2,4 - 175: -1,4 - 203: 4,9 - 206: 3,7 - 211: 3,8 - 214: 0,4 - 219: 1,4 - 224: 2,4 - 232: 2,5 - 235: 3,7 - 240: 3,8 - 243: 4,9 - 255: -11,0 - 258: -9,1 - 261: -8,4 - 275: -2,4 - 286: -1,4 - 303: 0,4 - 308: 1,4 - 313: 2,4 - 321: 2,5 - 324: 3,7 - 329: 3,8 - 332: 4,9 - 344: -11,0 - 347: -9,1 - 350: -8,4 - 364: -2,4 - 375: -1,4 + 113: 0,4 + 118: 1,4 + 123: 2,4 + 131: 2,5 + 143: -11,0 + 146: -9,1 + 149: -8,4 + 152: -2,4 + 163: -1,4 + 191: 4,9 + 194: 3,7 + 199: 3,8 + 202: 0,4 + 207: 1,4 + 212: 2,4 + 220: 2,5 + 223: 3,7 + 228: 3,8 + 231: 4,9 + 243: -11,0 + 246: -9,1 + 249: -8,4 + 263: -2,4 + 274: -1,4 + 291: 0,4 + 296: 1,4 + 301: 2,4 + 309: 2,5 + 312: 3,7 + 317: 3,8 + 320: 4,9 + 332: -11,0 + 335: -9,1 + 338: -8,4 + 352: -2,4 + 363: -1,4 + 388: 0,4 + 393: 1,4 + 398: 2,4 + 406: 2,5 + 409: 3,7 + 414: 3,8 + 417: 4,9 + 429: -11,0 + 432: -9,1 + 435: -8,4 + 449: -2,4 + 460: -1,4 - node: zIndex: 1 id: LatticeCornerSW decals: - 127: 0,4 - 132: 1,4 - 139: 2,4 - 146: 8,4 - 149: 9,1 - 152: 11,0 - 168: -2,4 - 172: -2,5 - 177: -1,4 - 192: -4,9 - 196: -3,7 - 200: -3,8 - 216: 0,4 - 221: 1,4 - 228: 2,4 - 246: 8,4 - 249: 9,1 - 252: 11,0 - 264: -4,9 - 268: -3,7 - 272: -3,8 - 279: -2,4 - 283: -2,5 - 288: -1,4 - 305: 0,4 - 310: 1,4 - 317: 2,4 - 335: 8,4 - 338: 9,1 - 341: 11,0 - 353: -4,9 - 357: -3,7 - 361: -3,8 - 368: -2,4 - 372: -2,5 - 377: -1,4 + 115: 0,4 + 120: 1,4 + 127: 2,4 + 134: 8,4 + 137: 9,1 + 140: 11,0 + 156: -2,4 + 160: -2,5 + 165: -1,4 + 180: -4,9 + 184: -3,7 + 188: -3,8 + 204: 0,4 + 209: 1,4 + 216: 2,4 + 234: 8,4 + 237: 9,1 + 240: 11,0 + 252: -4,9 + 256: -3,7 + 260: -3,8 + 267: -2,4 + 271: -2,5 + 276: -1,4 + 293: 0,4 + 298: 1,4 + 305: 2,4 + 323: 8,4 + 326: 9,1 + 329: 11,0 + 341: -4,9 + 345: -3,7 + 349: -3,8 + 356: -2,4 + 360: -2,5 + 365: -1,4 + 390: 0,4 + 395: 1,4 + 402: 2,4 + 420: 8,4 + 423: 9,1 + 426: 11,0 + 438: -4,9 + 442: -3,7 + 446: -3,8 + 453: -2,4 + 457: -2,5 + 462: -1,4 - node: id: LatticeEdgeE decals: - 124: 0,4 - 129: 1,4 - 134: 2,4 - 142: 2,5 - 154: -11,0 - 157: -9,1 - 160: -8,4 - 163: -2,4 - 174: -1,4 - 178: -6,-2 - 181: -2,-3 - 202: 4,9 - 205: 3,7 - 210: 3,8 - 213: 0,4 - 218: 1,4 - 223: 2,4 - 231: 2,5 - 234: 3,7 - 239: 3,8 - 242: 4,9 - 254: -11,0 - 257: -9,1 - 260: -8,4 - 274: -2,4 - 285: -1,4 - 289: -6,-2 - 292: -2,-3 - 302: 0,4 - 307: 1,4 - 312: 2,4 - 320: 2,5 - 323: 3,7 - 328: 3,8 - 331: 4,9 - 343: -11,0 - 346: -9,1 - 349: -8,4 - 363: -2,4 - 374: -1,4 - 378: -6,-2 - 381: -2,-3 + 112: 0,4 + 117: 1,4 + 122: 2,4 + 130: 2,5 + 142: -11,0 + 145: -9,1 + 148: -8,4 + 151: -2,4 + 162: -1,4 + 166: -6,-2 + 169: -2,-3 + 190: 4,9 + 193: 3,7 + 198: 3,8 + 201: 0,4 + 206: 1,4 + 211: 2,4 + 219: 2,5 + 222: 3,7 + 227: 3,8 + 230: 4,9 + 242: -11,0 + 245: -9,1 + 248: -8,4 + 262: -2,4 + 273: -1,4 + 277: -6,-2 + 280: -2,-3 + 290: 0,4 + 295: 1,4 + 300: 2,4 + 308: 2,5 + 311: 3,7 + 316: 3,8 + 319: 4,9 + 331: -11,0 + 334: -9,1 + 337: -8,4 + 351: -2,4 + 362: -1,4 + 366: -6,-2 + 369: -2,-3 + 387: 0,4 + 392: 1,4 + 397: 2,4 + 405: 2,5 + 408: 3,7 + 413: 3,8 + 416: 4,9 + 428: -11,0 + 431: -9,1 + 434: -8,4 + 448: -2,4 + 459: -1,4 + 463: -6,-2 + 466: -2,-3 - node: id: LatticeEdgeN decals: - 136: 2,4 - 165: -2,4 - 179: -6,-2 - 182: -2,-3 - 184: 2,-3 - 187: 6,-2 - 194: -3,7 - 207: 3,7 - 225: 2,4 - 236: 3,7 - 266: -3,7 - 276: -2,4 - 290: -6,-2 - 293: -2,-3 - 295: 2,-3 - 298: 6,-2 - 314: 2,4 - 325: 3,7 - 355: -3,7 - 365: -2,4 - 379: -6,-2 - 382: -2,-3 - 384: 2,-3 - 387: 6,-2 + 124: 2,4 + 153: -2,4 + 167: -6,-2 + 170: -2,-3 + 172: 2,-3 + 175: 6,-2 + 182: -3,7 + 195: 3,7 + 213: 2,4 + 224: 3,7 + 254: -3,7 + 264: -2,4 + 278: -6,-2 + 281: -2,-3 + 283: 2,-3 + 286: 6,-2 + 302: 2,4 + 313: 3,7 + 343: -3,7 + 353: -2,4 + 367: -6,-2 + 370: -2,-3 + 372: 2,-3 + 375: 6,-2 + 399: 2,4 + 410: 3,7 + 440: -3,7 + 450: -2,4 + 464: -6,-2 + 467: -2,-3 + 469: 2,-3 + 472: 6,-2 - node: id: LatticeEdgeS decals: - 123: 0,4 - 128: 1,4 - 133: 2,4 - 141: 2,5 - 144: 8,4 - 147: 9,1 - 150: 11,0 - 153: -11,0 - 156: -9,1 - 159: -8,4 - 162: -2,4 - 170: -2,5 - 173: -1,4 - 190: -4,9 - 193: -3,7 - 198: -3,8 - 201: 4,9 - 204: 3,7 - 209: 3,8 - 212: 0,4 - 217: 1,4 - 222: 2,4 - 230: 2,5 - 233: 3,7 - 238: 3,8 - 241: 4,9 - 244: 8,4 - 247: 9,1 - 250: 11,0 - 253: -11,0 - 256: -9,1 - 259: -8,4 - 262: -4,9 - 265: -3,7 - 270: -3,8 - 273: -2,4 - 281: -2,5 - 284: -1,4 - 301: 0,4 - 306: 1,4 - 311: 2,4 - 319: 2,5 - 322: 3,7 - 327: 3,8 - 330: 4,9 - 333: 8,4 - 336: 9,1 - 339: 11,0 - 342: -11,0 - 345: -9,1 - 348: -8,4 - 351: -4,9 - 354: -3,7 - 359: -3,8 - 362: -2,4 - 370: -2,5 - 373: -1,4 + 111: 0,4 + 116: 1,4 + 121: 2,4 + 129: 2,5 + 132: 8,4 + 135: 9,1 + 138: 11,0 + 141: -11,0 + 144: -9,1 + 147: -8,4 + 150: -2,4 + 158: -2,5 + 161: -1,4 + 178: -4,9 + 181: -3,7 + 186: -3,8 + 189: 4,9 + 192: 3,7 + 197: 3,8 + 200: 0,4 + 205: 1,4 + 210: 2,4 + 218: 2,5 + 221: 3,7 + 226: 3,8 + 229: 4,9 + 232: 8,4 + 235: 9,1 + 238: 11,0 + 241: -11,0 + 244: -9,1 + 247: -8,4 + 250: -4,9 + 253: -3,7 + 258: -3,8 + 261: -2,4 + 269: -2,5 + 272: -1,4 + 289: 0,4 + 294: 1,4 + 299: 2,4 + 307: 2,5 + 310: 3,7 + 315: 3,8 + 318: 4,9 + 321: 8,4 + 324: 9,1 + 327: 11,0 + 330: -11,0 + 333: -9,1 + 336: -8,4 + 339: -4,9 + 342: -3,7 + 347: -3,8 + 350: -2,4 + 358: -2,5 + 361: -1,4 + 386: 0,4 + 391: 1,4 + 396: 2,4 + 404: 2,5 + 407: 3,7 + 412: 3,8 + 415: 4,9 + 418: 8,4 + 421: 9,1 + 424: 11,0 + 427: -11,0 + 430: -9,1 + 433: -8,4 + 436: -4,9 + 439: -3,7 + 444: -3,8 + 447: -2,4 + 455: -2,5 + 458: -1,4 - node: id: LatticeEdgeW decals: - 126: 0,4 - 131: 1,4 - 138: 2,4 - 145: 8,4 - 148: 9,1 - 151: 11,0 - 167: -2,4 - 171: -2,5 - 176: -1,4 - 185: 2,-3 - 188: 6,-2 - 191: -4,9 - 195: -3,7 - 199: -3,8 - 215: 0,4 - 220: 1,4 - 227: 2,4 - 245: 8,4 - 248: 9,1 - 251: 11,0 - 263: -4,9 - 267: -3,7 - 271: -3,8 - 278: -2,4 - 282: -2,5 - 287: -1,4 - 296: 2,-3 - 299: 6,-2 - 304: 0,4 - 309: 1,4 - 316: 2,4 - 334: 8,4 - 337: 9,1 - 340: 11,0 - 352: -4,9 - 356: -3,7 - 360: -3,8 - 367: -2,4 - 371: -2,5 - 376: -1,4 - 385: 2,-3 - 388: 6,-2 + 114: 0,4 + 119: 1,4 + 126: 2,4 + 133: 8,4 + 136: 9,1 + 139: 11,0 + 155: -2,4 + 159: -2,5 + 164: -1,4 + 173: 2,-3 + 176: 6,-2 + 179: -4,9 + 183: -3,7 + 187: -3,8 + 203: 0,4 + 208: 1,4 + 215: 2,4 + 233: 8,4 + 236: 9,1 + 239: 11,0 + 251: -4,9 + 255: -3,7 + 259: -3,8 + 266: -2,4 + 270: -2,5 + 275: -1,4 + 284: 2,-3 + 287: 6,-2 + 292: 0,4 + 297: 1,4 + 304: 2,4 + 322: 8,4 + 325: 9,1 + 328: 11,0 + 340: -4,9 + 344: -3,7 + 348: -3,8 + 355: -2,4 + 359: -2,5 + 364: -1,4 + 373: 2,-3 + 376: 6,-2 + 389: 0,4 + 394: 1,4 + 401: 2,4 + 419: 8,4 + 422: 9,1 + 425: 11,0 + 437: -4,9 + 441: -3,7 + 445: -3,8 + 452: -2,4 + 456: -2,5 + 461: -1,4 + 470: 2,-3 + 473: 6,-2 - node: color: '#FFFFFFFF' id: TechE @@ -428,32 +528,32 @@ entities: 72: 5,3 73: 5,2 77: 7,0 - 114: -4,3 - 115: -4,2 + 104: -4,3 + 105: -4,2 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: TechNE decals: - 408: 2,1 + 384: 2,1 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechNE decals: - 407: 2,2 + 383: 2,2 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: TechNW decals: - 409: -2,1 + 385: -2,1 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechNW decals: - 405: -2,2 + 382: -2,2 - node: color: '#FFFFFFFF' id: TechS @@ -468,8 +568,8 @@ entities: 74: -5,3 75: -5,2 76: -7,0 - 116: 4,3 - 117: 4,2 + 106: 4,3 + 107: 4,2 - node: color: '#D381C996' id: WarnCornerNE @@ -526,12 +626,12 @@ entities: 59: 5,-2 70: 4,4 71: 4,4 - 105: -1,-2 - 106: -1,-2 - 107: 0,-2 - 108: 0,-2 - 109: 1,-2 - 110: 1,-2 + 95: -1,-2 + 96: -1,-2 + 97: 0,-2 + 98: 0,-2 + 99: 1,-2 + 100: 1,-2 - node: color: '#D381C996' id: WarnLineS @@ -568,12 +668,12 @@ entities: 45: -1,-3 46: 1,-3 47: 1,-3 - 99: -1,-2 - 100: -1,-2 - 101: 0,-2 - 102: 0,-2 - 103: 1,-2 - 104: 1,-2 + 89: -1,-2 + 90: -1,-2 + 91: 0,-2 + 92: 0,-2 + 93: 1,-2 + 94: 1,-2 - type: GridAtmosphere version: 2 data: @@ -669,6 +769,7 @@ entities: - type: ShuttleDeed shuttleName: Shuttle ALP-421 shuttleUid: 1 + - type: SelfDeleteGrid - proto: AAAHardpointFixed entities: - uid: 2 @@ -679,7 +780,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 162 + - 164 - type: Physics canCollide: False - uid: 3 @@ -690,10 +791,10 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 162 + - 164 - type: Physics canCollide: False - - uid: 225 + - uid: 4 components: - type: Transform rot: 3.141592653589793 rad @@ -701,28 +802,28 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 162 + - 164 - type: Physics canCollide: False - proto: AirAlarm entities: - - uid: 4 + - uid: 5 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 5 + - uid: 6 components: - type: Transform pos: -0.5,1.5 parent: 1 - type: DeviceList devices: - - 188 - - 187 + - 191 + - 190 - proto: AirCanister entities: - - uid: 6 + - uid: 7 components: - type: Transform anchored: True @@ -732,25 +833,25 @@ entities: bodyType: Static - proto: AirlockCommand entities: - - uid: 7 + - uid: 8 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,1.5 parent: 1 - - uid: 8 + - uid: 9 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 1 - - uid: 9 + - uid: 10 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,4.5 parent: 1 - - uid: 10 + - uid: 11 components: - type: Transform rot: 3.141592653589793 rad @@ -758,13 +859,13 @@ entities: parent: 1 - proto: AirlockCommandHorizontal entities: - - uid: 11 + - uid: 12 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,0.5 parent: 1 - - uid: 12 + - uid: 13 components: - type: Transform rot: 3.141592653589793 rad @@ -772,34 +873,34 @@ entities: parent: 1 - proto: AirlockMaintHorizontal entities: - - uid: 13 + - uid: 14 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 14 + - uid: 15 components: - type: Transform pos: -4.5,0.5 parent: 1 - proto: AirlockShuttle entities: - - uid: 15 + - uid: 16 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 16 + - uid: 17 components: - type: Transform pos: 1.5,-2.5 parent: 1 - proto: AirTankFilled entities: - - uid: 18 + - uid: 19 components: - type: Transform - parent: 17 + parent: 18 - type: Physics angularDamping: 0 linearDamping: 0 @@ -807,64 +908,64 @@ entities: - type: InsideEntityStorage - proto: APCBasic entities: - - uid: 25 + - uid: 26 components: - type: Transform pos: 1.5,1.5 parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 26 + - uid: 27 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 27 + - uid: 28 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 28 + - uid: 29 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 29 + - uid: 30 components: - type: Transform pos: 2.5,3.5 parent: 1 - proto: BlastDoor entities: - - uid: 30 + - uid: 31 components: - type: Transform pos: -1.5,3.5 parent: 1 - type: DeviceLinkSink links: - - 222 - - uid: 31 + - 232 + - uid: 32 components: - type: Transform pos: 2.5,3.5 parent: 1 - type: DeviceLinkSink links: - - 223 + - 233 - proto: BlastDoorOpen entities: - - uid: 339 + - uid: 33 components: - type: Transform pos: 0.5,3.5 parent: 1 - type: DeviceLinkSink links: - - 162 + - 164 - proto: BoriaticGeneratorEinsteinShuttle entities: - - uid: 32 + - uid: 34 components: - type: Transform pos: -5.5,3.5 @@ -909,7 +1010,7 @@ entities: - Explosive - proto: ButtonFrameCaution entities: - - uid: 33 + - uid: 35 components: - type: Transform rot: 3.141592653589793 rad @@ -917,13 +1018,13 @@ entities: parent: 1 - proto: ButtonFrameCautionSecurity entities: - - uid: 34 + - uid: 36 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,2.5 parent: 1 - - uid: 35 + - uid: 37 components: - type: Transform rot: -1.5707963267948966 rad @@ -931,625 +1032,625 @@ entities: parent: 1 - proto: CableApcExtension entities: - - uid: 36 + - uid: 38 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 37 + - uid: 39 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 38 + - uid: 40 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 39 + - uid: 41 components: - type: Transform pos: -7.5,0.5 parent: 1 - - uid: 40 + - uid: 42 components: - type: Transform pos: -6.5,0.5 parent: 1 - - uid: 41 + - uid: 43 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 42 + - uid: 44 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 43 + - uid: 45 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 44 + - uid: 46 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 45 + - uid: 47 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 46 + - uid: 48 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 47 + - uid: 49 components: - type: Transform pos: -4.5,4.5 parent: 1 - - uid: 48 + - uid: 50 components: - type: Transform pos: -4.5,5.5 parent: 1 - - uid: 49 + - uid: 51 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 50 + - uid: 52 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 51 + - uid: 53 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 52 + - uid: 54 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 53 + - uid: 55 components: - type: Transform pos: -3.5,5.5 parent: 1 - - uid: 54 + - uid: 56 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 55 + - uid: 57 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 56 + - uid: 58 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 57 + - uid: 59 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 58 + - uid: 60 components: - type: Transform pos: 5.5,7.5 parent: 1 - - uid: 59 + - uid: 61 components: - type: Transform pos: 5.5,8.5 parent: 1 - - uid: 60 + - uid: 62 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 61 + - uid: 63 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 62 + - uid: 64 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 63 + - uid: 65 components: - type: Transform pos: 5.5,4.5 parent: 1 - - uid: 64 + - uid: 66 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 65 + - uid: 67 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 66 + - uid: 68 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 67 + - uid: 69 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 68 + - uid: 70 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 69 + - uid: 71 components: - type: Transform pos: 7.5,0.5 parent: 1 - - uid: 70 + - uid: 72 components: - type: Transform pos: 8.5,0.5 parent: 1 - - uid: 71 + - uid: 73 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 72 + - uid: 74 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 73 + - uid: 75 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 74 + - uid: 76 components: - type: Transform pos: -7.5,1.5 parent: 1 - - uid: 75 + - uid: 77 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 76 + - uid: 78 components: - type: Transform pos: -7.5,3.5 parent: 1 - - uid: 77 + - uid: 79 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 78 + - uid: 80 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 79 + - uid: 81 components: - type: Transform pos: -1.5,0.5 parent: 1 - - uid: 80 + - uid: 82 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 81 + - uid: 83 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 82 + - uid: 84 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 83 + - uid: 85 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 84 + - uid: 86 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 85 + - uid: 87 components: - type: Transform pos: -3.5,-0.5 parent: 1 - - uid: 86 + - uid: 88 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 87 + - uid: 89 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 88 + - uid: 90 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 89 + - uid: 91 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 90 + - uid: 92 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 91 + - uid: 93 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 92 + - uid: 94 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 93 + - uid: 95 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 94 + - uid: 96 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 95 + - uid: 97 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 96 + - uid: 98 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 97 + - uid: 99 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 98 + - uid: 100 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 99 + - uid: 101 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 100 + - uid: 102 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 101 + - uid: 103 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 102 + - uid: 104 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 103 + - uid: 105 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 104 + - uid: 106 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 105 + - uid: 107 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 106 + - uid: 108 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 107 + - uid: 109 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 108 + - uid: 110 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 109 + - uid: 111 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 110 + - uid: 112 components: - type: Transform pos: -3.5,4.5 parent: 1 - proto: CableHV entities: - - uid: 111 + - uid: 113 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 112 + - uid: 114 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 114 + - uid: 115 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 115 + - uid: 116 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 116 + - uid: 117 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 117 + - uid: 118 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 118 + - uid: 119 components: - type: Transform pos: -1.5,0.5 parent: 1 - - uid: 119 + - uid: 120 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 120 + - uid: 121 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 121 + - uid: 122 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 122 + - uid: 123 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 123 + - uid: 124 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 124 + - uid: 125 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 125 + - uid: 126 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 126 + - uid: 127 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 127 + - uid: 128 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 128 + - uid: 129 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 129 + - uid: 130 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 130 + - uid: 131 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 131 + - uid: 132 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 340 + - uid: 133 components: - type: Transform pos: -1.5,-0.5 parent: 1 - proto: CableMV entities: - - uid: 132 + - uid: 134 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 133 + - uid: 135 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 134 + - uid: 136 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 135 + - uid: 137 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 136 + - uid: 138 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 137 + - uid: 139 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 138 + - uid: 140 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 139 + - uid: 141 components: - type: Transform pos: -1.5,0.5 parent: 1 - - uid: 140 + - uid: 142 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 141 + - uid: 143 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 142 + - uid: 144 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 143 + - uid: 145 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 144 + - uid: 146 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 145 + - uid: 147 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 146 + - uid: 148 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 147 + - uid: 149 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 148 + - uid: 150 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 149 + - uid: 151 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 150 + - uid: 152 components: - type: Transform pos: 1.5,1.5 parent: 1 - proto: Catwalk entities: - - uid: 151 + - uid: 153 components: - type: Transform pos: -1.5,4.5 parent: 1 - - uid: 152 + - uid: 154 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 153 + - uid: 155 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 154 + - uid: 156 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 155 + - uid: 157 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 156 + - uid: 158 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 157 + - uid: 159 components: - type: Transform pos: -1.5,5.5 parent: 1 - proto: ChairOfficeDark entities: - - uid: 158 + - uid: 160 components: - type: Transform rot: -1.5707963267948966 rad @@ -1557,7 +1658,7 @@ entities: parent: 1 - proto: ChairPilotSeat entities: - - uid: 159 + - uid: 161 components: - type: Transform rot: 3.141592653589793 rad @@ -1565,7 +1666,7 @@ entities: parent: 1 - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 160 + - uid: 162 components: - type: Transform rot: -1.5707963267948966 rad @@ -1573,17 +1674,17 @@ entities: parent: 1 - proto: ClothingBeltUtility entities: - - uid: 161 + - uid: 163 components: - type: Transform pos: 5.4772058,6.4890842 parent: 1 - proto: ClothingHeadHelmetImperialEVA entities: - - uid: 19 + - uid: 20 components: - type: Transform - parent: 17 + parent: 18 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1591,10 +1692,10 @@ entities: - type: InsideEntityStorage - proto: ClothingMaskImperialCombatGasmask entities: - - uid: 20 + - uid: 21 components: - type: Transform - parent: 17 + parent: 18 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1602,10 +1703,10 @@ entities: - type: InsideEntityStorage - proto: ClothingOuterCoatImperialSoftsuit entities: - - uid: 21 + - uid: 22 components: - type: Transform - parent: 17 + parent: 18 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1613,10 +1714,10 @@ entities: - type: InsideEntityStorage - proto: ClothingShoesBootsMagCombat entities: - - uid: 22 + - uid: 23 components: - type: Transform - parent: 17 + parent: 18 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1624,7 +1725,7 @@ entities: - type: InsideEntityStorage - proto: ComputerShuttle entities: - - uid: 162 + - uid: 164 components: - type: Transform pos: 0.5,2.5 @@ -1646,111 +1747,99 @@ entities: - type: DeviceLinkSource linkedPorts: 2: - - Group1: Toggle - 225: - - Group1: Toggle + - - Group1 + - Toggle + 4: + - - Group1 + - Toggle 3: - - Group2: SpaceArtilleryFire - 339: - - Group3: Toggle - 220: - - Group4: Toggle - 219: - - Group4: Toggle - 221: - - Group4: Toggle + - - Group2 + - SpaceArtilleryFire + 33: + - - Group3 + - Toggle + 228: + - - Group4 + - Toggle + 227: + - - Group4 + - Toggle + 229: + - - Group4 + - Toggle - type: NamedModules buttonNames: - - Toggle Plasmacasters + - Toggle Slugthrowers - Fire Idna - Close Front Blast Door - - Close Shutters + - Close Shutters""" - Module E - proto: ComputerTabletopCommsShip entities: - - uid: 163 + - uid: 165 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,5.5 parent: 1 -- proto: DrinkMugOne - entities: - - uid: 164 - components: - - type: Transform - pos: -3.846043,6.786028 - parent: 1 - proto: EmergencyLight entities: - - uid: 165 + - uid: 167 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 166 + - uid: 168 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,3.5 parent: 1 - - uid: 167 + - uid: 169 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,6.5 parent: 1 - - uid: 168 + - uid: 170 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,6.5 parent: 1 -- proto: FaxMachineShip - entities: - - uid: 169 - components: - - type: Transform - pos: -4.5,6.5 - parent: 1 - - uid: 342 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 1 - proto: Firelock entities: - - uid: 170 + - uid: 173 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,1.5 parent: 1 - - uid: 171 + - uid: 174 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,0.5 parent: 1 - - uid: 172 + - uid: 175 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,1.5 parent: 1 - - uid: 173 + - uid: 176 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 1 - - uid: 174 + - uid: 177 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,4.5 parent: 1 - - uid: 175 + - uid: 178 components: - type: Transform rot: 3.141592653589793 rad @@ -1758,61 +1847,61 @@ entities: parent: 1 - proto: GasPassiveVent entities: - - uid: 176 + - uid: 179 components: - type: Transform pos: -0.5,4.5 parent: 1 - proto: GasPipeStraight entities: - - uid: 177 + - uid: 180 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,0.5 parent: 1 - - uid: 178 + - uid: 181 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 1 - - uid: 179 + - uid: 182 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 parent: 1 - - uid: 180 + - uid: 183 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,0.5 parent: 1 - - uid: 181 + - uid: 184 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 1 - - uid: 182 + - uid: 185 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 183 + - uid: 186 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 184 + - uid: 187 components: - type: Transform pos: -0.5,2.5 parent: 1 - proto: GasPort entities: - - uid: 185 + - uid: 188 components: - type: Transform rot: -1.5707963267948966 rad @@ -1820,7 +1909,7 @@ entities: parent: 1 - proto: GasPressurePump entities: - - uid: 186 + - uid: 189 components: - type: Transform rot: -1.5707963267948966 rad @@ -1828,7 +1917,7 @@ entities: parent: 1 - proto: GasVentPump entities: - - uid: 187 + - uid: 190 components: - type: Transform rot: 1.5707963267948966 rad @@ -1838,10 +1927,10 @@ entities: configurators: - invalid deviceLists: - - 5 + - 6 - proto: GasVentScrubber entities: - - uid: 188 + - uid: 191 components: - type: Transform rot: 3.141592653589793 rad @@ -1851,47 +1940,47 @@ entities: configurators: - invalid deviceLists: - - 5 + - 6 - proto: GravityGeneratorMini entities: - - uid: 189 + - uid: 192 components: - type: Transform pos: 6.5,2.5 parent: 1 - proto: Grille entities: - - uid: 190 + - uid: 193 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - - uid: 191 + - uid: 194 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - - uid: 192 + - uid: 195 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - - uid: 193 + - uid: 196 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - - uid: 194 + - uid: 197 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - - uid: 195 + - uid: 198 components: - type: Transform rot: -1.5707963267948966 rad @@ -1899,17 +1988,17 @@ entities: parent: 1 - proto: Gyroscope entities: - - uid: 196 + - uid: 199 components: - type: Transform pos: -7.5,0.5 parent: 1 - proto: HandheldGPSBasic entities: - - uid: 23 + - uid: 24 components: - type: Transform - parent: 17 + parent: 18 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1917,7 +2006,7 @@ entities: - type: InsideEntityStorage - proto: HeavyReinforcedPlasmaWindow entities: - - uid: 197 + - uid: 200 components: - type: Transform rot: -1.5707963267948966 rad @@ -1925,95 +2014,115 @@ entities: parent: 1 - proto: IdnaTorpedo entities: - - uid: 227 + - uid: 172 + components: + - type: Transform + pos: 2.532313,-0.26476252 + parent: 1 + - uid: 202 components: - type: Transform - parent: 226 + parent: 201 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - - uid: 228 + - uid: 203 components: - type: Transform - parent: 226 + parent: 201 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - - uid: 345 - components: - - type: Transform - pos: 2.363921,-0.4045136 - parent: 1 - - uid: 346 + - uid: 205 components: - type: Transform - pos: 2.6553326,-0.40753734 + pos: 2.2881725,-0.2918892 parent: 1 - proto: JetpackMiniFilled entities: - - uid: 24 + - uid: 25 components: - type: Transform - parent: 17 + parent: 18 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: PaperBin20 +- proto: MagazineLightRifleBoxSlug entities: - - uid: 198 + - uid: 204 + components: + - type: Transform + pos: -1.6873913,-0.28807497 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 206 + components: + - type: Transform + pos: -1.4296871,-0.28807497 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] +- proto: PaperBin + entities: + - uid: 207 components: - type: Transform pos: -3.5,6.5 parent: 1 -- proto: Pen +- proto: PenCentcom entities: - - uid: 199 + - uid: 166 components: - type: Transform - pos: -3.8757882,6.5035696 + pos: -3.9823503,6.632785 parent: 1 - proto: PoweredLEDSmallLight entities: - - uid: 200 + - uid: 208 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,2.5 parent: 1 - - uid: 201 + - uid: 209 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,2.5 parent: 1 - - uid: 202 + - uid: 210 components: - type: Transform pos: 0.5,2.5 parent: 1 - proto: PoweredlightLED entities: - - uid: 203 + - uid: 211 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 204 + - uid: 212 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-0.5 parent: 1 - - uid: 205 + - uid: 213 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 206 + - uid: 214 components: - type: Transform rot: 1.5707963267948966 rad @@ -2021,13 +2130,13 @@ entities: parent: 1 - proto: PoweredlightRed entities: - - uid: 207 + - uid: 215 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 1 - - uid: 208 + - uid: 216 components: - type: Transform rot: 3.141592653589793 rad @@ -2035,41 +2144,41 @@ entities: parent: 1 - proto: PoweredSmallLight entities: - - uid: 209 + - uid: 217 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,2.5 parent: 1 - - uid: 210 + - uid: 218 components: - type: Transform pos: -6.5,0.5 parent: 1 - - uid: 211 + - uid: 219 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 1 - - uid: 212 + - uid: 220 components: - type: Transform pos: 7.5,0.5 parent: 1 - - uid: 213 + - uid: 221 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,0.5 parent: 1 - - uid: 214 + - uid: 222 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,0.5 parent: 1 - - uid: 215 + - uid: 223 components: - type: Transform rot: 1.5707963267948966 rad @@ -2077,73 +2186,80 @@ entities: parent: 1 - proto: Rack entities: - - uid: 216 + - uid: 224 components: - type: Transform pos: 5.5,6.5 parent: 1 + - uid: 237 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 - proto: Railing entities: - - uid: 217 + - uid: 225 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,0.5 parent: 1 - - uid: 338 + - uid: 226 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,0.5 parent: 1 +- proto: ScrapFaxMachine + entities: + - uid: 171 + components: + - type: Transform + pos: -4.4706316,6.5107145 + parent: 1 - proto: ShuttersNormalOpen entities: - - uid: 219 + - uid: 227 components: - type: Transform pos: 0.5,-1.5 parent: 1 - type: DeviceLinkSink links: - - 162 - - uid: 220 + - 164 + - uid: 228 components: - type: Transform pos: -0.5,-1.5 parent: 1 - type: DeviceLinkSink links: - - 162 - - uid: 221 + - 164 + - uid: 229 components: - type: Transform pos: 1.5,-1.5 parent: 1 - type: DeviceLinkSink links: - - 162 -- proto: ShuttleGunPlasmaRepeater - entities: - - uid: 343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,5.5 - parent: 1 - - uid: 344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 1 + - 164 - proto: ShuttleGunTorpedo entities: - - uid: 226 + - uid: 201 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 1 + - type: Battery + startingCharge: 19229.688 + - type: ApcPowerReceiverBattery + enabled: True - type: ContainerContainer containers: machine_board: !type:Container @@ -2158,15 +2274,15 @@ entities: showEnts: False occludes: True ents: - - 227 - - 228 + - 202 + - 203 - type: BallisticAmmoProvider entities: - - 227 - - 228 + - 202 + - 203 - proto: SignalButton entities: - - uid: 222 + - uid: 232 components: - type: Transform rot: 1.5707963267948966 rad @@ -2174,9 +2290,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 30: - - Pressed: Toggle - - uid: 223 + 31: + - - Pressed + - Toggle + - uid: 233 components: - type: Transform rot: -1.5707963267948966 rad @@ -2184,24 +2301,95 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 31: - - Pressed: Toggle - - uid: 224 + 32: + - - Pressed + - Toggle + - uid: 234 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 +- proto: SlugthrowerCannon + entities: + - uid: 230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + gun_chamber: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Battery + startingCharge: 19895.576 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + gun_chamber: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Battery + startingCharge: 19891.758 + - type: ApcPowerReceiverBattery + enabled: True - proto: StairStageDark entities: - - uid: 229 + - uid: 235 components: - type: Transform pos: 0.5,0.5 parent: 1 - proto: SubstationBasic entities: - - uid: 230 + - uid: 236 components: - type: Transform pos: 6.5,3.5 @@ -2210,7 +2398,7 @@ entities: - Explosive - proto: SuitStorageBase entities: - - uid: 17 + - uid: 18 components: - type: Transform pos: 5.5,5.5 @@ -2239,95 +2427,85 @@ entities: showEnts: False occludes: True ents: - - 18 - - 21 - 19 - - 23 - - 20 - 22 + - 20 - 24 + - 21 + - 23 + - 25 - proto: TableReinforced entities: - - uid: 113 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 1 - - uid: 231 + - uid: 238 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 232 + - uid: 239 components: - type: Transform pos: -4.5,5.5 parent: 1 - - uid: 233 + - uid: 240 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 341 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 1 - proto: ThrusterDSMFighter entities: - - uid: 234 + - uid: 242 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,2.5 parent: 1 - - uid: 235 + - uid: 243 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-1.5 parent: 1 - - uid: 236 + - uid: 244 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-1.5 parent: 1 - - uid: 237 + - uid: 245 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-1.5 parent: 1 - - uid: 238 + - uid: 246 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 239 + - uid: 247 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,3.5 parent: 1 - - uid: 240 + - uid: 248 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,3.5 parent: 1 - - uid: 241 + - uid: 249 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,2.5 parent: 1 - - uid: 242 + - uid: 250 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 243 + - uid: 251 components: - type: Transform rot: 3.141592653589793 rad @@ -2335,482 +2513,482 @@ entities: parent: 1 - proto: ToolboxMechanicalFilled entities: - - uid: 244 + - uid: 252 components: - type: Transform pos: 5.4772058,6.7566757 parent: 1 - proto: WallPlastitanium entities: - - uid: 245 + - uid: 253 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 246 + - uid: 254 components: - type: Transform pos: 5.5,1.5 parent: 1 - proto: WallReinforced entities: - - uid: 247 + - uid: 255 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 1 - - uid: 248 + - uid: 256 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-2.5 parent: 1 - - uid: 249 + - uid: 257 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,1.5 parent: 1 - - uid: 250 + - uid: 258 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 1 - - uid: 251 + - uid: 259 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,4.5 parent: 1 - - uid: 252 + - uid: 260 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,4.5 parent: 1 - - uid: 253 + - uid: 261 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,7.5 parent: 1 - - uid: 254 + - uid: 262 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,0.5 parent: 1 - - uid: 255 + - uid: 263 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-0.5 parent: 1 - - uid: 256 + - uid: 264 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,0.5 parent: 1 - - uid: 257 + - uid: 265 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-0.5 parent: 1 - - uid: 258 + - uid: 266 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-0.5 parent: 1 - - uid: 259 + - uid: 267 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-0.5 parent: 1 - - uid: 260 + - uid: 268 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,0.5 parent: 1 - - uid: 261 + - uid: 269 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,0.5 parent: 1 - - uid: 262 + - uid: 270 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 1 - - uid: 263 + - uid: 271 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 1 - - uid: 264 + - uid: 272 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,8.5 parent: 1 - - uid: 265 + - uid: 273 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 266 + - uid: 274 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 1 - - uid: 267 + - uid: 275 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,9.5 parent: 1 - - uid: 268 + - uid: 276 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,1.5 parent: 1 - - uid: 269 + - uid: 277 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,9.5 parent: 1 - - uid: 270 + - uid: 278 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,2.5 parent: 1 - - uid: 271 + - uid: 279 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,2.5 parent: 1 - - uid: 272 + - uid: 280 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,3.5 parent: 1 - - uid: 273 + - uid: 281 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,1.5 parent: 1 - - uid: 274 + - uid: 282 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,6.5 parent: 1 - - uid: 275 + - uid: 283 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,7.5 parent: 1 - - uid: 276 + - uid: 284 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,7.5 parent: 1 - - uid: 277 + - uid: 285 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,5.5 parent: 1 - - uid: 278 + - uid: 286 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,2.5 parent: 1 - - uid: 279 + - uid: 287 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,3.5 parent: 1 - - uid: 280 + - uid: 288 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 1 - - uid: 281 + - uid: 289 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 1 - - uid: 282 + - uid: 290 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,4.5 parent: 1 - - uid: 283 + - uid: 291 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,5.5 parent: 1 - - uid: 284 + - uid: 292 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,4.5 parent: 1 - - uid: 285 + - uid: 293 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 - - uid: 286 + - uid: 294 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,6.5 parent: 1 - - uid: 287 + - uid: 295 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,8.5 parent: 1 - - uid: 288 + - uid: 296 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-0.5 parent: 1 - - uid: 289 + - uid: 297 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 1 - - uid: 290 + - uid: 298 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,7.5 parent: 1 - - uid: 291 + - uid: 299 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,7.5 parent: 1 - - uid: 292 + - uid: 300 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-1.5 parent: 1 - - uid: 293 + - uid: 301 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 1 - - uid: 294 + - uid: 302 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-0.5 parent: 1 - - uid: 295 + - uid: 303 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-0.5 parent: 1 - - uid: 296 + - uid: 304 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-0.5 parent: 1 - - uid: 297 + - uid: 305 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,1.5 parent: 1 - - uid: 298 + - uid: 306 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 1 - - uid: 299 + - uid: 307 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,1.5 parent: 1 - - uid: 300 + - uid: 308 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 1 - - uid: 301 + - uid: 309 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,1.5 parent: 1 - - uid: 302 + - uid: 310 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 1 - - uid: 303 + - uid: 311 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,6.5 parent: 1 - - uid: 304 + - uid: 312 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,1.5 parent: 1 - - uid: 305 + - uid: 313 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,3.5 parent: 1 - - uid: 306 + - uid: 314 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,7.5 parent: 1 - - uid: 307 + - uid: 315 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,4.5 parent: 1 - - uid: 308 + - uid: 316 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,1.5 parent: 1 - - uid: 309 + - uid: 317 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 - - uid: 310 + - uid: 318 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,1.5 parent: 1 - - uid: 311 + - uid: 319 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-0.5 parent: 1 - - uid: 312 + - uid: 320 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 1 - - uid: 313 + - uid: 321 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-0.5 parent: 1 - - uid: 314 + - uid: 322 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 1 - - uid: 315 + - uid: 323 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-0.5 parent: 1 - - uid: 316 + - uid: 324 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,1.5 parent: 1 - - uid: 317 + - uid: 325 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,2.5 parent: 1 - - uid: 318 + - uid: 326 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,8.5 parent: 1 - - uid: 319 + - uid: 327 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-0.5 parent: 1 - - uid: 320 + - uid: 328 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-0.5 parent: 1 - - uid: 321 + - uid: 329 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-0.5 parent: 1 - - uid: 322 + - uid: 330 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 1 - - uid: 323 + - uid: 331 components: - type: Transform rot: 3.141592653589793 rad @@ -2818,58 +2996,58 @@ entities: parent: 1 - proto: WallSolidDiagonalNortheastCurved entities: - - uid: 324 + - uid: 332 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 1 - - uid: 325 + - uid: 333 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 326 + - uid: 334 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,4.5 parent: 1 - - uid: 327 + - uid: 335 components: - type: Transform pos: -8.5,1.5 parent: 1 - - uid: 328 + - uid: 336 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,1.5 parent: 1 - - uid: 329 + - uid: 337 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-1.5 parent: 1 - - uid: 330 + - uid: 338 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-2.5 parent: 1 - - uid: 331 + - uid: 339 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 1 - - uid: 332 + - uid: 340 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 333 + - uid: 341 components: - type: Transform rot: -1.5707963267948966 rad @@ -2877,12 +3055,12 @@ entities: parent: 1 - proto: WallSolidDiagonalNortheastHollow entities: - - uid: 334 + - uid: 342 components: - type: Transform pos: 4.5,9.5 parent: 1 - - uid: 335 + - uid: 343 components: - type: Transform rot: -1.5707963267948966 rad @@ -2890,7 +3068,7 @@ entities: parent: 1 - proto: WallSolidDiagonalSoutheastHollow entities: - - uid: 336 + - uid: 344 components: - type: Transform rot: -1.5707963267948966 rad @@ -2898,7 +3076,7 @@ entities: parent: 1 - proto: WallSolidDiagonalSouthwestHollow entities: - - uid: 337 + - uid: 345 components: - type: Transform rot: 1.5707963267948966 rad @@ -2906,7 +3084,7 @@ entities: parent: 1 - proto: WarpPointShip entities: - - uid: 218 + - uid: 346 components: - type: Transform pos: 0.5,0.5 diff --git a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_laelaps.yml b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_laelaps.yml index a85ac0f3245..03a903b0671 100644 --- a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_laelaps.yml +++ b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_laelaps.yml @@ -4,8 +4,8 @@ meta: engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 03/10/2026 14:13:44 - entityCount: 990 + time: 03/10/2026 22:15:54 + entityCount: 1027 maps: [] grids: - 1 @@ -49,11 +49,11 @@ entities: chunks: 0,0: ind: 0,0 - tiles: ggAAAAAAAA8AAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAAYAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAA8AAAAAAAAKAAAAAAAADwAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAPAAAAAAAACgAAAAAAAA8AAAAAAACCAAAAAAAACgAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAADwAAAAAAAAoAAAAAAAAPAAAAAAAAggAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAAoAAAAAAAAPAAAAAAAACgAAAAAAAIIAAAAAAAAPAAAAAAAAggAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAACwAAAAAAAA8AAAAAAAAKAAAAAAAACgAAAAAAAA8AAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAoAAAAAAAAPAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAALAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAYAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAACCAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ggAAAAAAAA8AAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAAYAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAA8AAAAAAAAKAAAAAAAADwAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAPAAAAAAAACgAAAAAAAA8AAAAAAACCAAAAAAAACgAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAsAAAAAAACCAAAAAAAADwAAAAAAAAoAAAAAAAAPAAAAAAAAggAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAALAAAAAAAAggAAAAAAAAoAAAAAAAAPAAAAAAAACgAAAAAAAIIAAAAAAAAPAAAAAAAAggAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAACwAAAAAAAA8AAAAAAAAKAAAAAAAACgAAAAAAAA8AAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAoAAAAAAAAPAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAALAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAYAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAACCAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAggAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAAANAAAAAAAAggAAAAAAAAwAAAAAAAAOAAAAAAAADAAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAANAAAAAAAADQAAAAAAAIIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACCAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAADQAAAAAAAA0AAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAA0AAAAAAAANAAAAAAAADwAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA8AAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAANAAAAAAAADQAAAAAAAIIAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAACCAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA0AAAAAAAANAAAAAAAAggAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAAEgAAAAAAABEAAAAAAAAPAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAACCAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAGAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAggAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAIIAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAATAAAAAAAAEwAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAggAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAAANAAAAAAAAggAAAAAAAAwAAAAAAAAOAAAAAAAADAAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAANAAAAAAAADQAAAAAAAIIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACCAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAADQAAAAAAAA0AAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAA0AAAAAAAANAAAAAAAADwAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA8AAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAANAAAAAAAADQAAAAAAAIIAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAACCAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA0AAAAAAAANAAAAAAAAggAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAEgAAAAAAABEAAAAAAAAPAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAACCAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAGAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAggAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAIIAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAATAAAAAAAAEwAAAAAAAA== version: 7 -1,-1: ind: -1,-1 @@ -65,19 +65,19 @@ entities: version: 7 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAATAAAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAEwAAAAAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAggAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABMAAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAATAAAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAACCAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAACCAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAADwAAAAAAAA8AAAAAAAASAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAADwAAAAAAABEAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAARAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAAAABEAAAAAAACCAAAAAAAAgQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAATAAAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAEwAAAAAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAABMAAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAATAAAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAACCAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAACCAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAADwAAAAAAAA8AAAAAAAASAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAADwAAAAAAABEAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAARAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAABEAAAAAAACCAAAAAAAAgQAAAAAAAA== version: 7 0,1: ind: 0,1 - tiles: EwAAAAAAABMAAAAAAAATAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAACCAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAADwAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAACCAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAABIAAAAAAAARAAAAAAAAEQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAEQAAAAAAAA8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAABEAAAAAAAAPAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAABgAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAARAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: EwAAAAAAABMAAAAAAAATAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAACCAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAggAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAADwAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAACCAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAABIAAAAAAAARAAAAAAAAEQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAEQAAAAAAAA8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAABEAAAAAAAAPAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAABgAAAAAAAIIAAAAAAAAPAAAAAAAADwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAARAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAADwAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 - type: Broadphase - type: Physics @@ -105,2937 +105,2958 @@ entities: id: BrickTileSteelCornerNe decals: 82: 1,7 - 162: 4,7 - 233: -3,7 - 234: -3,7 - 235: -3,3 - 236: -3,3 + 159: 4,7 + 230: -3,7 + 231: -3,7 + 232: -3,3 + 233: -3,3 - node: angle: 4.71238898038469 rad color: '#D381C996' id: BrickTileSteelCornerNe decals: - 567: 1,12 - 792: 8,5 + 519: 1,12 + 717: 8,5 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: 81: -1,7 - 155: 7,3 - 158: 6,6 - 161: 3,7 - 221: -5,3 - 222: -5,3 - 223: -5,6 - 224: -5,6 - 231: -4,7 - 232: -4,7 + 152: 7,3 + 155: 6,6 + 158: 3,7 + 218: -5,3 + 219: -5,3 + 220: -5,6 + 221: -5,6 + 228: -4,7 + 229: -4,7 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: BrickTileSteelCornerNw decals: - 575: -1,9 + 526: -1,9 - node: angle: 3.141592653589793 rad color: '#D381C996' id: BrickTileSteelCornerNw decals: - 574: 1,9 + 525: 1,9 - node: angle: 4.71238898038469 rad color: '#D381C996' id: BrickTileSteelCornerNw decals: - 573: 1,10 - 793: 8,6 + 524: 1,10 + 718: 8,6 - node: angle: 6.283185307179586 rad color: '#D381C996' id: BrickTileSteelCornerNw decals: - 572: -1,10 + 523: -1,10 - node: color: '#D381C996' id: BrickTileSteelCornerSe decals: 83: 1,3 - 163: 4,5 - 237: -3,1 - 238: -3,1 - 239: -3,5 - 240: -3,5 + 160: 4,5 + 234: -3,1 + 235: -3,1 + 236: -3,5 + 237: -3,5 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: BrickTileSteelCornerSe decals: - 783: -7,6 - 784: -7,6 + 708: -7,6 + 709: -7,6 - node: angle: 3.141592653589793 rad color: '#D381C996' id: BrickTileSteelCornerSe decals: - 785: -8,6 - 786: -8,6 + 710: -8,6 + 711: -8,6 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: 84: -1,3 - 159: 6,5 - 160: 3,5 - 225: -8,3 - 226: -8,3 - 227: -5,1 - 228: -5,1 - 229: -5,5 - 230: -5,5 + 156: 6,5 + 157: 3,5 + 222: -8,3 + 223: -8,3 + 224: -5,1 + 225: -5,1 + 226: -5,5 + 227: -5,5 - node: angle: 6.283185307179586 rad color: '#D381C996' id: BrickTileSteelCornerSw decals: - 569: -1,12 + 520: -1,12 - node: color: '#D381C996' id: BrickTileSteelEndE decals: - 154: 8,3 + 151: 8,3 - node: color: '#D381C996' id: BrickTileSteelEndS decals: - 157: 7,2 - 241: -7,2 - 242: -7,2 + 154: 7,2 + 238: -7,2 + 239: -7,2 - node: color: '#D381C996' id: BrickTileSteelInnerNw decals: - 255: -4,6 - 256: -4,6 + 252: -4,6 + 253: -4,6 - node: color: '#D381C996' id: BrickTileSteelInnerSe decals: - 156: 7,3 + 153: 7,3 - node: color: '#D381C996' id: BrickTileSteelInnerSw decals: - 243: -7,3 - 244: -7,3 + 240: -7,3 + 241: -7,3 - node: color: '#D381C996' id: BrickTileSteelLineE decals: - 88: 1,6 - 89: 1,4 - 165: 4,6 - 175: 4,3 - 176: 4,2 - 177: 4,1 - 245: -7,3 - 246: -7,3 - 247: -7,4 - 248: -7,4 - 249: -3,6 - 250: -3,6 - 251: -3,2 - 252: -3,2 - 266: 1,5 + 86: 1,4 + 162: 4,6 + 172: 4,3 + 173: 4,2 + 174: 4,1 + 242: -7,3 + 243: -7,3 + 244: -7,4 + 245: -7,4 + 246: -3,6 + 247: -3,6 + 248: -3,2 + 249: -3,2 + 263: 1,5 - node: angle: 3.141592653589793 rad color: '#D381C996' id: BrickTileSteelLineE decals: - 787: -8,5 - 788: -8,5 + 712: -8,5 + 713: -8,5 - node: angle: 6.283185307179586 rad color: '#D381C996' id: BrickTileSteelLineE decals: - 781: -7,5 - 782: -7,5 - - node: - color: '#D381C996' - id: BrickTileSteelLineN - decals: - 90: 0,7 - 263: -4,3 - 264: -4,3 - 576: 0,10 + 706: -7,5 + 707: -7,5 - node: - angle: 3.141592653589793 rad color: '#D381C996' id: BrickTileSteelLineN decals: - 577: 0,9 + 87: 0,7 + 260: -4,3 + 261: -4,3 + 2711: 0,10 - node: color: '#D381C996' id: BrickTileSteelLineS decals: - 85: 0,3 - 253: -4,5 - 254: -4,5 - 259: -4,1 - 260: -4,1 + 250: -4,5 + 251: -4,5 + 256: -4,1 + 257: -4,1 + 2712: 0,12 - node: angle: 3.141592653589793 rad color: '#D381C996' id: BrickTileSteelLineS decals: - 790: 7,6 + 715: 7,6 - node: angle: 6.283185307179586 rad color: '#D381C996' id: BrickTileSteelLineS decals: - 568: 0,12 - 791: 7,5 + 716: 7,5 - node: color: '#D381C996' id: BrickTileSteelLineW decals: - 86: -1,4 - 87: -1,6 - 164: 3,6 - 172: 4,3 - 173: 4,2 - 174: 4,1 - 257: -8,4 - 258: -8,4 - 261: -5,2 - 262: -5,2 - 265: -1,5 - 563: -1,13 - 564: -1,14 + 85: -1,6 + 161: 3,6 + 169: 4,3 + 170: 4,2 + 171: 4,1 + 254: -8,4 + 255: -8,4 + 258: -5,2 + 259: -5,2 + 262: -1,5 + 515: -1,13 + 516: -1,14 - node: angle: 3.141592653589793 rad color: '#D381C996' id: BrickTileSteelLineW decals: - 565: 1,14 - 566: 1,13 + 517: 1,14 + 518: 1,13 - node: color: '#D381C996' id: Caution decals: - 789: -8,6 - 794: 8,6 + 714: -8,6 + 719: 8,6 - node: color: '#D381C996' id: Delivery decals: - 795: -4,26 - 796: -4,27 + 720: -4,26 + 721: -4,27 - node: angle: 6.283185307179586 rad color: '#EFB34196' id: Delivery decals: - 585: 2,24 - 586: -2,24 + 534: 2,24 + 535: -2,24 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: Dirt decals: - 1147: 0,21 - 1148: -1,22 - 1149: -1,21 - 1150: -1,20 - 1151: 1,20 - 1152: 1,22 + 997: 0,21 + 998: -1,22 + 999: -1,21 + 1000: -1,20 + 1001: 1,20 + 1002: 1,22 - node: angle: 4.71238898038469 rad color: '#D381C996' id: Dirt decals: - 757: -4,13 - 758: -2,12 + 684: -4,13 + 685: -2,12 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 2687: -5,16 + 2688: -6,16 + 2705: -1,3 + 2706: 0,7 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 2707: 0,6 + 2708: -1,6 + 2709: 1,5 + 2710: 1,3 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 767: 3,14 - 768: 4,14 - 769: 5,14 - 770: -5,13 - 771: -4,13 - 772: -3,14 - 773: -4,14 - 774: -5,14 - 775: -5,18 - 776: -4,18 - 777: -4,18 - 778: 3,18 - 779: 4,18 - 780: 5,18 + 693: 3,14 + 694: 4,14 + 695: 5,14 + 696: -5,13 + 697: -4,13 + 698: -3,14 + 699: -4,14 + 700: -5,14 + 701: -4,18 + 702: -4,18 + 703: 3,18 + 704: 4,18 + 705: 5,18 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 1154: 0,22 - 1155: 0,21 - 1156: -1,22 - 1157: -1,21 - 1158: 1,22 - 1159: 1,21 - 1160: -1,20 - 1161: 1,20 + 1004: 0,22 + 1005: 0,21 + 1006: -1,22 + 1007: -1,21 + 1008: 1,22 + 1009: 1,21 + 1010: -1,20 + 1011: 1,20 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 2689: -5,14 + 2690: 5,14 + 2691: 5,14 + 2692: 5,15 + 2693: 5,16 + 2694: 5,17 + 2695: 4,17 + 2696: 5,18 + 2697: 4,19 + 2698: -4,19 + 2699: -4,20 + 2700: -5,19 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtLight decals: - 993: -5,19 + 874: -5,19 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 2701: -5,16 + 2702: -4,17 + 2703: -1,13 + 2704: 1,13 - node: zIndex: 1 angle: -4.71238898038469 rad id: FloorTechMaintDirectionalCorner decals: - 2040: -2,19 - 2102: -2,19 - 2260: -2,19 - 2456: -2,19 - 2641: -2,19 - 2826: -2,19 - 3011: -2,19 + 1738: -2,19 + 1785: -2,19 + 1916: -2,19 + 2047: -2,19 + 2178: -2,19 + 2309: -2,19 + 2440: -2,19 + 2571: -2,19 + 2767: -2,19 + 2898: -2,19 + 3029: -2,19 - node: zIndex: 1 angle: -3.141592653589793 rad id: FloorTechMaintDirectionalCorner decals: + 1726: -2,15 + 1766: -2,15 + 1897: -2,15 2028: -2,15 - 2078: -2,15 - 2241: -2,15 - 2426: -2,15 - 2611: -2,15 - 2796: -2,15 - 2981: -2,15 + 2159: -2,15 + 2290: -2,15 + 2421: -2,15 + 2552: -2,15 + 2748: -2,15 + 2879: -2,15 + 3010: -2,15 - node: zIndex: 1 angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalCorner decals: - 2035: 2,15 - 2053: 2,15 - 2216: 2,15 - 2401: 2,15 - 2586: 2,15 - 2771: 2,15 - 2956: 2,15 + 1733: 2,15 + 1751: 2,15 + 1882: 2,15 + 2013: 2,15 + 2144: 2,15 + 2275: 2,15 + 2406: 2,15 + 2537: 2,15 + 2733: 2,15 + 2864: 2,15 + 2995: 2,15 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner decals: - 2044: 2,19 - 2171: 2,19 - 2358: 2,19 - 2554: 2,19 - 2739: 2,19 - 2924: 2,19 - 3109: 2,19 + 1742: 2,19 + 1848: 2,19 + 2008: 2,19 + 2139: 2,19 + 2270: 2,19 + 2401: 2,19 + 2532: 2,19 + 2663: 2,19 + 2859: 2,19 + 2990: 2,19 + 3121: 2,19 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge decals: - 2025: -2,17 + 1723: -2,17 + 1725: -2,15 + 1727: -2,16 + 1737: -2,19 + 1739: -2,18 + 1765: -2,15 + 1780: -2,16 + 1781: -2,17 + 1782: -2,18 + 1784: -2,19 + 1896: -2,15 + 1911: -2,16 + 1912: -2,17 + 1913: -2,18 + 1915: -2,19 2027: -2,15 - 2029: -2,16 - 2039: -2,19 - 2041: -2,18 - 2077: -2,15 - 2097: -2,16 - 2098: -2,17 - 2099: -2,18 - 2101: -2,19 - 2240: -2,15 - 2255: -2,16 - 2256: -2,17 - 2257: -2,18 - 2259: -2,19 - 2425: -2,15 - 2451: -2,16 - 2452: -2,17 - 2453: -2,18 - 2455: -2,19 - 2610: -2,15 - 2636: -2,16 - 2637: -2,17 - 2638: -2,18 - 2640: -2,19 - 2795: -2,15 - 2821: -2,16 - 2822: -2,17 - 2823: -2,18 - 2825: -2,19 - 2980: -2,15 - 3006: -2,16 - 3007: -2,17 - 3008: -2,18 - 3010: -2,19 + 2042: -2,16 + 2043: -2,17 + 2044: -2,18 + 2046: -2,19 + 2158: -2,15 + 2173: -2,16 + 2174: -2,17 + 2175: -2,18 + 2177: -2,19 + 2289: -2,15 + 2304: -2,16 + 2305: -2,17 + 2306: -2,18 + 2308: -2,19 + 2420: -2,15 + 2435: -2,16 + 2436: -2,17 + 2437: -2,18 + 2439: -2,19 + 2551: -2,15 + 2566: -2,16 + 2567: -2,17 + 2568: -2,18 + 2570: -2,19 + 2747: -2,15 + 2762: -2,16 + 2763: -2,17 + 2764: -2,18 + 2766: -2,19 + 2878: -2,15 + 2893: -2,16 + 2894: -2,17 + 2895: -2,18 + 2897: -2,19 + 3009: -2,15 + 3024: -2,16 + 3025: -2,17 + 3026: -2,18 + 3028: -2,19 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge decals: + 1724: -2,15 + 1728: -1,15 + 1729: 0,15 + 1731: 2,15 + 1735: 1,15 + 1747: 0,15 + 1748: 1,15 + 1749: 2,15 + 1764: -2,15 + 1767: -1,15 + 1878: 0,15 + 1879: 1,15 + 1880: 2,15 + 1895: -2,15 + 1898: -1,15 + 2009: 0,15 + 2010: 1,15 + 2011: 2,15 2026: -2,15 - 2030: -1,15 - 2031: 0,15 - 2033: 2,15 - 2037: 1,15 - 2049: 0,15 - 2050: 1,15 - 2051: 2,15 - 2076: -2,15 - 2079: -1,15 - 2212: 0,15 - 2213: 1,15 - 2214: 2,15 - 2239: -2,15 - 2242: -1,15 - 2397: 0,15 - 2398: 1,15 - 2399: 2,15 - 2424: -2,15 - 2427: -1,15 - 2582: 0,15 - 2583: 1,15 - 2584: 2,15 - 2609: -2,15 - 2612: -1,15 - 2767: 0,15 - 2768: 1,15 - 2769: 2,15 - 2794: -2,15 - 2797: -1,15 - 2952: 0,15 - 2953: 1,15 - 2954: 2,15 - 2979: -2,15 - 2982: -1,15 + 2029: -1,15 + 2140: 0,15 + 2141: 1,15 + 2142: 2,15 + 2157: -2,15 + 2160: -1,15 + 2271: 0,15 + 2272: 1,15 + 2273: 2,15 + 2288: -2,15 + 2291: -1,15 + 2402: 0,15 + 2403: 1,15 + 2404: 2,15 + 2419: -2,15 + 2422: -1,15 + 2533: 0,15 + 2534: 1,15 + 2535: 2,15 + 2550: -2,15 + 2553: -1,15 + 2729: 0,15 + 2730: 1,15 + 2731: 2,15 + 2746: -2,15 + 2749: -1,15 + 2860: 0,15 + 2861: 1,15 + 2862: 2,15 + 2877: -2,15 + 2880: -1,15 + 2991: 0,15 + 2992: 1,15 + 2993: 2,15 + 3008: -2,15 + 3011: -1,15 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge decals: - 2032: 2,17 - 2034: 2,15 - 2036: 2,16 - 2042: 2,19 - 2045: 2,18 - 2052: 2,15 - 2166: 2,16 - 2167: 2,17 - 2168: 2,18 - 2169: 2,19 - 2215: 2,15 - 2353: 2,16 - 2354: 2,17 - 2355: 2,18 - 2356: 2,19 - 2400: 2,15 - 2549: 2,16 - 2550: 2,17 - 2551: 2,18 - 2552: 2,19 - 2585: 2,15 - 2734: 2,16 - 2735: 2,17 - 2736: 2,18 - 2737: 2,19 - 2770: 2,15 - 2919: 2,16 - 2920: 2,17 - 2921: 2,18 - 2922: 2,19 - 2955: 2,15 - 3104: 2,16 - 3105: 2,17 - 3106: 2,18 - 3107: 2,19 + 1730: 2,17 + 1732: 2,15 + 1734: 2,16 + 1740: 2,19 + 1743: 2,18 + 1750: 2,15 + 1843: 2,16 + 1844: 2,17 + 1845: 2,18 + 1846: 2,19 + 1881: 2,15 + 2003: 2,16 + 2004: 2,17 + 2005: 2,18 + 2006: 2,19 + 2012: 2,15 + 2134: 2,16 + 2135: 2,17 + 2136: 2,18 + 2137: 2,19 + 2143: 2,15 + 2265: 2,16 + 2266: 2,17 + 2267: 2,18 + 2268: 2,19 + 2274: 2,15 + 2396: 2,16 + 2397: 2,17 + 2398: 2,18 + 2399: 2,19 + 2405: 2,15 + 2527: 2,16 + 2528: 2,17 + 2529: 2,18 + 2530: 2,19 + 2536: 2,15 + 2658: 2,16 + 2659: 2,17 + 2660: 2,18 + 2661: 2,19 + 2732: 2,15 + 2854: 2,16 + 2855: 2,17 + 2856: 2,18 + 2857: 2,19 + 2863: 2,15 + 2985: 2,16 + 2986: 2,17 + 2987: 2,18 + 2988: 2,19 + 2994: 2,15 + 3116: 2,16 + 3117: 2,17 + 3118: 2,18 + 3119: 2,19 - node: id: FloorTechMaintDirectionalEdge decals: - 2038: -2,19 - 2043: 2,19 - 2046: 0,19 - 2047: -1,19 - 2048: 1,19 - 2100: -2,19 - 2103: -1,19 - 2124: 0,19 - 2145: 1,19 - 2170: 2,19 - 2258: -2,19 - 2261: -1,19 - 2290: 0,19 - 2324: 1,19 - 2357: 2,19 - 2454: -2,19 - 2457: -1,19 - 2486: 0,19 - 2520: 1,19 - 2553: 2,19 - 2639: -2,19 - 2642: -1,19 - 2671: 0,19 - 2705: 1,19 - 2738: 2,19 - 2824: -2,19 - 2827: -1,19 - 2856: 0,19 - 2890: 1,19 - 2923: 2,19 - 3009: -2,19 - 3012: -1,19 - 3041: 0,19 - 3075: 1,19 - 3108: 2,19 + 1736: -2,19 + 1741: 2,19 + 1744: 0,19 + 1745: -1,19 + 1746: 1,19 + 1783: -2,19 + 1786: -1,19 + 1805: 0,19 + 1824: 1,19 + 1847: 2,19 + 1914: -2,19 + 1917: -1,19 + 1944: 0,19 + 1976: 1,19 + 2007: 2,19 + 2045: -2,19 + 2048: -1,19 + 2075: 0,19 + 2107: 1,19 + 2138: 2,19 + 2176: -2,19 + 2179: -1,19 + 2206: 0,19 + 2238: 1,19 + 2269: 2,19 + 2307: -2,19 + 2310: -1,19 + 2337: 0,19 + 2369: 1,19 + 2400: 2,19 + 2438: -2,19 + 2441: -1,19 + 2468: 0,19 + 2500: 1,19 + 2531: 2,19 + 2569: -2,19 + 2572: -1,19 + 2599: 0,19 + 2631: 1,19 + 2662: 2,19 + 2765: -2,19 + 2768: -1,19 + 2795: 0,19 + 2827: 1,19 + 2858: 2,19 + 2896: -2,19 + 2899: -1,19 + 2926: 0,19 + 2958: 1,19 + 2989: 2,19 + 3027: -2,19 + 3030: -1,19 + 3057: 0,19 + 3089: 1,19 + 3120: 2,19 - node: zIndex: 1 id: LatticeCornerNE decals: - 335: -9,2 - 338: -8,0 - 344: -5,-1 - 367: 0,24 - 379: -2,-2 - 395: -7,13 - 400: -6,9 - 405: -6,10 - 410: -1,26 - 421: 1,26 - 437: 0,25 - 462: -9,2 - 465: -8,0 - 473: -6,9 - 478: -6,10 - 481: -5,-1 - 492: -1,26 - 503: 0,24 - 511: 0,25 - 524: 1,26 - 598: -7,13 - 613: -2,-2 - 628: -9,2 - 631: -8,0 - 637: -5,-1 - 640: -2,-2 - 701: 1,26 - 709: -1,26 - 717: 0,25 - 725: 0,24 - 749: -6,9 - 812: -6,9 - 815: -5,-1 - 818: -2,-2 - 829: -1,26 - 844: 0,24 - 852: 0,25 - 869: 1,26 - 888: -8,0 - 906: -8,0 - 911: -6,9 - 914: -5,-1 - 917: -2,-2 - 928: -1,26 - 943: 0,24 - 951: 0,25 - 968: 1,26 - 1039: -8,0 - 1044: -6,9 - 1047: -5,-1 - 1050: -2,-2 - 1178: 1,26 - 1186: -1,26 - 1199: -1,24 - 1207: -1,25 - 1215: 1,24 - 1223: 1,25 - 1231: 0,24 - 1239: 0,25 - 1259: -8,0 - 1264: -6,9 - 1267: -5,-1 - 1270: -2,-2 - 1281: -1,24 - 1289: -1,25 - 1297: -1,26 - 1312: 0,24 - 1320: 0,25 - 1337: 1,24 - 1345: 1,25 - 1353: 1,26 - 1386: -8,0 - 1391: -6,9 - 1394: -5,-1 - 1397: -2,-2 - 1408: -1,24 - 1416: -1,25 - 1424: -1,26 - 1439: 0,24 - 1447: 0,25 - 1464: 1,24 - 1472: 1,25 - 1480: 1,26 - 1513: -8,0 - 1518: -6,9 - 1521: -5,-1 - 1524: -2,-2 - 1535: -1,24 - 1543: -1,25 - 1551: -1,26 - 1566: 0,24 - 1574: 0,25 - 1591: 1,24 - 1599: 1,25 - 1607: 1,26 - 1640: -8,0 - 1645: -6,9 - 1648: -5,-1 - 1651: -2,-2 - 1662: -1,24 - 1670: -1,25 - 1678: -1,26 - 1693: 0,24 - 1701: 0,25 - 1718: 1,24 - 1726: 1,25 - 1734: 1,26 - 1767: -8,0 - 1772: -6,9 - 1775: -5,-1 - 1778: -2,-2 - 1789: -1,24 - 1797: -1,25 - 1805: -1,26 - 1820: 0,24 - 1828: 0,25 - 1845: 1,24 - 1853: 1,25 + 328: -9,2 + 331: -8,0 + 337: -5,-1 + 354: 0,24 + 366: -2,-2 + 377: -7,13 + 382: -6,10 + 387: -1,26 + 398: 1,26 + 414: 0,25 + 434: -9,2 + 437: -8,0 + 445: -6,10 + 448: -5,-1 + 459: -1,26 + 470: 0,24 + 478: 0,25 + 491: 1,26 + 547: -7,13 + 562: -2,-2 + 577: -9,2 + 580: -8,0 + 586: -5,-1 + 589: -2,-2 + 638: 1,26 + 646: -1,26 + 654: 0,25 + 662: 0,24 + 730: -5,-1 + 733: -2,-2 + 744: -1,26 + 757: 0,24 + 765: 0,25 + 780: 1,26 + 791: -8,0 + 804: -8,0 + 807: -5,-1 + 810: -2,-2 + 821: -1,26 + 834: 0,24 + 842: 0,25 + 857: 1,26 + 912: -8,0 + 915: -5,-1 + 918: -2,-2 + 1028: 1,26 + 1036: -1,26 + 1049: -1,24 + 1057: -1,25 + 1065: 1,24 + 1073: 1,25 + 1081: 0,24 + 1089: 0,25 + 1104: -8,0 + 1107: -5,-1 + 1110: -2,-2 + 1121: -1,24 + 1129: -1,25 + 1137: -1,26 + 1150: 0,24 + 1158: 0,25 + 1173: 1,24 + 1181: 1,25 + 1189: 1,26 + 1209: -8,0 + 1212: -5,-1 + 1215: -2,-2 + 1226: -1,24 + 1234: -1,25 + 1242: -1,26 + 1255: 0,24 + 1263: 0,25 + 1278: 1,24 + 1286: 1,25 + 1294: 1,26 + 1314: -8,0 + 1317: -5,-1 + 1320: -2,-2 + 1331: -1,24 + 1339: -1,25 + 1347: -1,26 + 1360: 0,24 + 1368: 0,25 + 1383: 1,24 + 1391: 1,25 + 1399: 1,26 + 1419: -8,0 + 1422: -5,-1 + 1425: -2,-2 + 1436: -1,24 + 1444: -1,25 + 1452: -1,26 + 1465: 0,24 + 1473: 0,25 + 1488: 1,24 + 1496: 1,25 + 1504: 1,26 + 1524: -8,0 + 1527: -5,-1 + 1530: -2,-2 + 1541: -1,24 + 1549: -1,25 + 1557: -1,26 + 1570: 0,24 + 1578: 0,25 + 1593: 1,24 + 1601: 1,25 + 1609: 1,26 + 1629: -8,0 + 1632: -5,-1 + 1635: -2,-2 + 1646: -1,24 + 1654: -1,25 + 1662: -1,26 + 1675: 0,24 + 1683: 0,25 + 1698: 1,24 + 1706: 1,25 + 1714: 1,26 + 1763: -8,0 + 1770: -5,-1 + 1773: -2,-2 + 1791: -1,24 + 1799: -1,25 + 1810: 0,24 + 1818: 0,25 + 1829: 1,24 + 1837: 1,25 + 1853: -1,26 1861: 1,26 - 1876: -5,31 - 1904: -8,0 - 1909: -6,9 - 1912: -5,-1 - 1915: -2,-2 - 1926: -5,31 - 1931: -1,24 - 1939: -1,25 - 1947: -1,26 - 1962: 0,24 - 1970: 0,25 - 1987: 1,24 - 1995: 1,25 - 2003: 1,26 - 2070: -8,0 - 2075: -6,9 - 2082: -5,-1 - 2085: -2,-2 - 2096: -5,31 - 2108: -1,24 - 2116: -1,25 - 2129: 0,24 - 2137: 0,25 - 2150: 1,24 - 2158: 1,25 - 2187: -1,26 - 2195: 1,26 - 2208: 0,26 - 2233: -8,0 - 2238: -6,9 - 2245: -5,-1 - 2248: -2,-2 - 2266: -1,24 - 2274: -1,25 - 2282: -1,26 - 2295: 0,24 - 2303: 0,25 - 2311: 0,26 - 2329: 1,24 - 2337: 1,25 - 2345: 1,26 - 2372: -5,31 - 2380: -5,32 - 2388: 5,31 + 1874: 0,26 + 1894: -8,0 + 1901: -5,-1 + 1904: -2,-2 + 1922: -1,24 + 1930: -1,25 + 1938: -1,26 + 1949: 0,24 + 1957: 0,25 + 1965: 0,26 + 1981: 1,24 + 1989: 1,25 + 1997: 1,26 + 2025: -8,0 + 2032: -5,-1 + 2035: -2,-2 + 2053: -1,24 + 2061: -1,25 + 2069: -1,26 + 2080: 0,24 + 2088: 0,25 + 2096: 0,26 + 2112: 1,24 + 2120: 1,25 + 2128: 1,26 + 2156: -8,0 + 2163: -5,-1 + 2166: -2,-2 + 2184: -1,24 + 2192: -1,25 + 2200: -1,26 + 2211: 0,24 + 2219: 0,25 + 2227: 0,26 + 2243: 1,24 + 2251: 1,25 + 2259: 1,26 + 2287: -8,0 + 2294: -5,-1 + 2297: -2,-2 + 2315: -1,24 + 2323: -1,25 + 2331: -1,26 + 2342: 0,24 + 2350: 0,25 + 2358: 0,26 + 2374: 1,24 + 2382: 1,25 + 2390: 1,26 2418: -8,0 - 2423: -6,9 - 2430: -5,-1 - 2433: -2,-2 - 2447: -5,31 - 2462: -1,24 - 2470: -1,25 - 2478: -1,26 - 2491: 0,24 - 2499: 0,25 - 2507: 0,26 - 2525: 1,24 - 2533: 1,25 - 2541: 1,26 - 2559: 5,31 - 2578: -5,32 - 2603: -8,0 - 2608: -6,9 - 2615: -5,-1 - 2618: -2,-2 - 2632: -5,31 - 2647: -1,24 - 2655: -1,25 - 2663: -1,26 - 2676: 0,24 - 2684: 0,25 - 2692: 0,26 - 2710: 1,24 - 2718: 1,25 - 2726: 1,26 - 2744: 5,31 - 2763: -5,32 - 2788: -8,0 - 2793: -6,9 - 2800: -5,-1 - 2803: -2,-2 - 2817: -5,31 - 2832: -1,24 - 2840: -1,25 - 2848: -1,26 - 2861: 0,24 - 2869: 0,25 - 2877: 0,26 - 2895: 1,24 - 2903: 1,25 - 2911: 1,26 - 2929: 5,31 - 2948: -5,32 - 2973: -8,0 - 2978: -6,9 - 2985: -5,-1 - 2988: -2,-2 - 3002: -5,31 - 3017: -1,24 - 3025: -1,25 - 3033: -1,26 - 3046: 0,24 - 3054: 0,25 - 3062: 0,26 - 3080: 1,24 - 3088: 1,25 - 3096: 1,26 - 3114: 5,31 - 3133: -5,32 + 2425: -5,-1 + 2428: -2,-2 + 2446: -1,24 + 2454: -1,25 + 2462: -1,26 + 2473: 0,24 + 2481: 0,25 + 2489: 0,26 + 2505: 1,24 + 2513: 1,25 + 2521: 1,26 + 2549: -8,0 + 2556: -5,-1 + 2559: -2,-2 + 2577: -1,24 + 2585: -1,25 + 2593: -1,26 + 2604: 0,24 + 2612: 0,25 + 2620: 0,26 + 2636: 1,24 + 2644: 1,25 + 2652: 1,26 + 2745: -8,0 + 2752: -5,-1 + 2755: -2,-2 + 2773: -1,24 + 2781: -1,25 + 2789: -1,26 + 2800: 0,24 + 2808: 0,25 + 2816: 0,26 + 2832: 1,24 + 2840: 1,25 + 2848: 1,26 + 2876: -8,0 + 2883: -5,-1 + 2886: -2,-2 + 2904: -1,24 + 2912: -1,25 + 2920: -1,26 + 2931: 0,24 + 2939: 0,25 + 2947: 0,26 + 2963: 1,24 + 2971: 1,25 + 2979: 1,26 + 3007: -8,0 + 3014: -5,-1 + 3017: -2,-2 + 3035: -1,24 + 3043: -1,25 + 3051: -1,26 + 3062: 0,24 + 3070: 0,25 + 3078: 0,26 + 3094: 1,24 + 3102: 1,25 + 3110: 1,26 - node: zIndex: 1 id: LatticeCornerNW decals: - 326: 8,0 - 332: 9,2 - 347: 5,-1 - 362: 7,13 - 370: 0,24 - 382: 2,-2 - 387: 6,9 - 392: 6,10 - 413: -1,26 - 424: 1,26 - 440: 0,25 - 445: 6,9 - 450: 6,10 - 453: 8,0 - 459: 9,2 - 484: 5,-1 - 495: -1,26 - 506: 0,24 - 514: 0,25 - 527: 1,26 - 595: 7,13 - 616: 2,-2 - 619: 8,0 - 625: 9,2 - 643: 2,-2 - 646: 5,-1 - 704: 1,26 - 712: -1,26 - 720: 0,25 - 728: 0,24 - 754: 6,9 - 801: 6,9 - 821: 2,-2 - 824: 5,-1 - 832: -1,26 - 847: 0,24 - 855: 0,25 - 872: 1,26 - 891: 8,0 - 900: 6,9 + 319: 8,0 + 325: 9,2 + 340: 5,-1 + 349: 7,13 + 357: 0,24 + 369: 2,-2 + 374: 6,10 + 390: -1,26 + 401: 1,26 + 417: 0,25 + 422: 6,10 + 425: 8,0 + 431: 9,2 + 451: 5,-1 + 462: -1,26 + 473: 0,24 + 481: 0,25 + 494: 1,26 + 544: 7,13 + 565: 2,-2 + 568: 8,0 + 574: 9,2 + 592: 2,-2 + 595: 5,-1 + 641: 1,26 + 649: -1,26 + 657: 0,25 + 665: 0,24 + 736: 2,-2 + 739: 5,-1 + 747: -1,26 + 760: 0,24 + 768: 0,25 + 783: 1,26 + 794: 8,0 + 801: 8,0 + 813: 2,-2 + 816: 5,-1 + 824: -1,26 + 837: 0,24 + 845: 0,25 + 860: 1,26 903: 8,0 - 920: 2,-2 - 923: 5,-1 - 931: -1,26 - 946: 0,24 - 954: 0,25 - 971: 1,26 - 1027: 6,9 - 1030: 8,0 - 1053: 2,-2 - 1056: 5,-1 - 1181: 1,26 - 1189: -1,26 - 1202: -1,24 - 1210: -1,25 - 1218: 1,24 - 1226: 1,25 - 1234: 0,24 - 1242: 0,25 - 1247: 6,9 - 1250: 8,0 - 1273: 2,-2 - 1276: 5,-1 - 1284: -1,24 - 1292: -1,25 - 1300: -1,26 - 1315: 0,24 - 1323: 0,25 - 1340: 1,24 - 1348: 1,25 - 1356: 1,26 - 1374: 6,9 - 1377: 8,0 - 1400: 2,-2 - 1403: 5,-1 - 1411: -1,24 - 1419: -1,25 - 1427: -1,26 - 1442: 0,24 - 1450: 0,25 - 1467: 1,24 - 1475: 1,25 - 1483: 1,26 - 1501: 6,9 - 1504: 8,0 - 1527: 2,-2 - 1530: 5,-1 - 1538: -1,24 - 1546: -1,25 - 1554: -1,26 - 1569: 0,24 - 1577: 0,25 - 1594: 1,24 - 1602: 1,25 - 1610: 1,26 - 1628: 6,9 - 1631: 8,0 - 1654: 2,-2 - 1657: 5,-1 - 1665: -1,24 - 1673: -1,25 - 1681: -1,26 - 1696: 0,24 - 1704: 0,25 - 1721: 1,24 - 1729: 1,25 - 1737: 1,26 - 1755: 6,9 - 1758: 8,0 - 1781: 2,-2 - 1784: 5,-1 - 1792: -1,24 - 1800: -1,25 - 1808: -1,26 - 1823: 0,24 - 1831: 0,25 - 1848: 1,24 - 1856: 1,25 + 921: 2,-2 + 924: 5,-1 + 1031: 1,26 + 1039: -1,26 + 1052: -1,24 + 1060: -1,25 + 1068: 1,24 + 1076: 1,25 + 1084: 0,24 + 1092: 0,25 + 1095: 8,0 + 1113: 2,-2 + 1116: 5,-1 + 1124: -1,24 + 1132: -1,25 + 1140: -1,26 + 1153: 0,24 + 1161: 0,25 + 1176: 1,24 + 1184: 1,25 + 1192: 1,26 + 1200: 8,0 + 1218: 2,-2 + 1221: 5,-1 + 1229: -1,24 + 1237: -1,25 + 1245: -1,26 + 1258: 0,24 + 1266: 0,25 + 1281: 1,24 + 1289: 1,25 + 1297: 1,26 + 1305: 8,0 + 1323: 2,-2 + 1326: 5,-1 + 1334: -1,24 + 1342: -1,25 + 1350: -1,26 + 1363: 0,24 + 1371: 0,25 + 1386: 1,24 + 1394: 1,25 + 1402: 1,26 + 1410: 8,0 + 1428: 2,-2 + 1431: 5,-1 + 1439: -1,24 + 1447: -1,25 + 1455: -1,26 + 1468: 0,24 + 1476: 0,25 + 1491: 1,24 + 1499: 1,25 + 1507: 1,26 + 1515: 8,0 + 1533: 2,-2 + 1536: 5,-1 + 1544: -1,24 + 1552: -1,25 + 1560: -1,26 + 1573: 0,24 + 1581: 0,25 + 1596: 1,24 + 1604: 1,25 + 1612: 1,26 + 1620: 8,0 + 1638: 2,-2 + 1641: 5,-1 + 1649: -1,24 + 1657: -1,25 + 1665: -1,26 + 1678: 0,24 + 1686: 0,25 + 1701: 1,24 + 1709: 1,25 + 1717: 1,26 + 1754: 8,0 + 1776: 2,-2 + 1779: 5,-1 + 1794: -1,24 + 1802: -1,25 + 1813: 0,24 + 1821: 0,25 + 1832: 1,24 + 1840: 1,25 + 1856: -1,26 1864: 1,26 - 1884: 5,31 - 1892: 6,9 - 1895: 8,0 - 1918: 2,-2 - 1921: 5,-1 - 1934: -1,24 - 1942: -1,25 - 1950: -1,26 - 1965: 0,24 - 1973: 0,25 - 1990: 1,24 - 1998: 1,25 - 2006: 1,26 - 2018: 5,31 - 2058: 6,9 - 2061: 8,0 - 2088: 2,-2 - 2091: 5,-1 - 2111: -1,24 - 2119: -1,25 - 2132: 0,24 - 2140: 0,25 - 2153: 1,24 - 2161: 1,25 - 2176: 5,31 - 2190: -1,26 - 2198: 1,26 - 2211: 0,26 - 2221: 6,9 - 2224: 8,0 - 2251: 2,-2 - 2254: 5,-1 - 2269: -1,24 - 2277: -1,25 - 2285: -1,26 - 2298: 0,24 - 2306: 0,25 - 2314: 0,26 - 2332: 1,24 - 2340: 1,25 - 2348: 1,26 - 2375: -5,31 - 2391: 5,31 - 2396: 5,32 - 2406: 6,9 + 1877: 0,26 + 1885: 8,0 + 1907: 2,-2 + 1910: 5,-1 + 1925: -1,24 + 1933: -1,25 + 1941: -1,26 + 1952: 0,24 + 1960: 0,25 + 1968: 0,26 + 1984: 1,24 + 1992: 1,25 + 2000: 1,26 + 2016: 8,0 + 2038: 2,-2 + 2041: 5,-1 + 2056: -1,24 + 2064: -1,25 + 2072: -1,26 + 2083: 0,24 + 2091: 0,25 + 2099: 0,26 + 2115: 1,24 + 2123: 1,25 + 2131: 1,26 + 2147: 8,0 + 2169: 2,-2 + 2172: 5,-1 + 2187: -1,24 + 2195: -1,25 + 2203: -1,26 + 2214: 0,24 + 2222: 0,25 + 2230: 0,26 + 2246: 1,24 + 2254: 1,25 + 2262: 1,26 + 2278: 8,0 + 2300: 2,-2 + 2303: 5,-1 + 2318: -1,24 + 2326: -1,25 + 2334: -1,26 + 2345: 0,24 + 2353: 0,25 + 2361: 0,26 + 2377: 1,24 + 2385: 1,25 + 2393: 1,26 2409: 8,0 - 2436: 2,-2 - 2439: 5,-1 - 2450: -5,31 - 2465: -1,24 - 2473: -1,25 - 2481: -1,26 - 2494: 0,24 - 2502: 0,25 - 2510: 0,26 - 2528: 1,24 - 2536: 1,25 - 2544: 1,26 - 2562: 5,31 - 2570: 5,32 - 2591: 6,9 - 2594: 8,0 - 2621: 2,-2 - 2624: 5,-1 - 2635: -5,31 - 2650: -1,24 - 2658: -1,25 - 2666: -1,26 - 2679: 0,24 - 2687: 0,25 - 2695: 0,26 - 2713: 1,24 - 2721: 1,25 - 2729: 1,26 - 2747: 5,31 - 2755: 5,32 - 2776: 6,9 - 2779: 8,0 - 2806: 2,-2 - 2809: 5,-1 - 2820: -5,31 - 2835: -1,24 - 2843: -1,25 - 2851: -1,26 - 2864: 0,24 - 2872: 0,25 - 2880: 0,26 - 2898: 1,24 - 2906: 1,25 - 2914: 1,26 - 2932: 5,31 - 2940: 5,32 - 2961: 6,9 - 2964: 8,0 - 2991: 2,-2 - 2994: 5,-1 - 3005: -5,31 - 3020: -1,24 - 3028: -1,25 - 3036: -1,26 - 3049: 0,24 - 3057: 0,25 - 3065: 0,26 - 3083: 1,24 - 3091: 1,25 - 3099: 1,26 - 3117: 5,31 - 3125: 5,32 + 2431: 2,-2 + 2434: 5,-1 + 2449: -1,24 + 2457: -1,25 + 2465: -1,26 + 2476: 0,24 + 2484: 0,25 + 2492: 0,26 + 2508: 1,24 + 2516: 1,25 + 2524: 1,26 + 2540: 8,0 + 2562: 2,-2 + 2565: 5,-1 + 2580: -1,24 + 2588: -1,25 + 2596: -1,26 + 2607: 0,24 + 2615: 0,25 + 2623: 0,26 + 2639: 1,24 + 2647: 1,25 + 2655: 1,26 + 2736: 8,0 + 2758: 2,-2 + 2761: 5,-1 + 2776: -1,24 + 2784: -1,25 + 2792: -1,26 + 2803: 0,24 + 2811: 0,25 + 2819: 0,26 + 2835: 1,24 + 2843: 1,25 + 2851: 1,26 + 2867: 8,0 + 2889: 2,-2 + 2892: 5,-1 + 2907: -1,24 + 2915: -1,25 + 2923: -1,26 + 2934: 0,24 + 2942: 0,25 + 2950: 0,26 + 2966: 1,24 + 2974: 1,25 + 2982: 1,26 + 2998: 8,0 + 3020: 2,-2 + 3023: 5,-1 + 3038: -1,24 + 3046: -1,25 + 3054: -1,26 + 3065: 0,24 + 3073: 0,25 + 3081: 0,26 + 3097: 1,24 + 3105: 1,25 + 3113: 1,26 - node: zIndex: 1 id: LatticeCornerSE decals: - 341: -8,8 - 365: 0,24 - 376: -7,19 - 398: -6,9 - 403: -6,10 - 408: -1,26 - 419: 1,26 - 427: 1,27 - 430: 0,26 - 435: 0,25 - 468: -8,8 - 471: -6,9 - 476: -6,10 - 487: -7,19 - 490: -1,26 - 501: 0,24 - 509: 0,25 - 517: 0,26 - 522: 1,26 - 530: 1,27 - 559: -5,32 - 634: -8,8 - 660: 1,27 - 670: -5,32 - 699: 1,26 - 707: -1,26 - 715: 0,25 - 723: 0,24 - 731: 0,26 - 747: -6,9 - 807: -8,8 - 810: -6,9 - 827: -1,26 - 842: 0,24 - 850: 0,25 - 858: 0,26 - 867: 1,26 - 875: 1,27 - 885: -5,32 - 909: -6,9 - 926: -1,26 - 941: 0,24 - 949: 0,25 - 957: 0,26 - 966: 1,26 - 974: 1,27 - 984: -5,32 - 1011: -9,7 - 1036: -9,7 - 1042: -6,9 - 1070: 1,27 - 1121: -5,32 - 1176: 1,26 - 1184: -1,26 - 1192: 0,26 - 1197: -1,24 - 1205: -1,25 - 1213: 1,24 - 1221: 1,25 - 1229: 0,24 - 1237: 0,25 - 1256: -9,7 - 1262: -6,9 - 1279: -1,24 - 1287: -1,25 - 1295: -1,26 - 1310: 0,24 - 1318: 0,25 - 1326: 0,26 - 1335: 1,24 - 1343: 1,25 - 1351: 1,26 - 1359: 1,27 - 1369: -5,32 - 1383: -9,7 - 1389: -6,9 - 1406: -1,24 - 1414: -1,25 - 1422: -1,26 - 1437: 0,24 - 1445: 0,25 - 1453: 0,26 - 1462: 1,24 - 1470: 1,25 - 1478: 1,26 - 1486: 1,27 - 1496: -5,32 - 1510: -9,7 - 1516: -6,9 - 1533: -1,24 - 1541: -1,25 - 1549: -1,26 - 1564: 0,24 - 1572: 0,25 - 1580: 0,26 - 1589: 1,24 - 1597: 1,25 - 1605: 1,26 - 1613: 1,27 - 1623: -5,32 - 1637: -9,7 - 1643: -6,9 - 1660: -1,24 - 1668: -1,25 - 1676: -1,26 - 1691: 0,24 - 1699: 0,25 - 1707: 0,26 - 1716: 1,24 - 1724: 1,25 - 1732: 1,26 - 1740: 1,27 - 1750: -5,32 - 1764: -9,7 - 1770: -6,9 - 1787: -1,24 - 1795: -1,25 - 1803: -1,26 - 1818: 0,24 - 1826: 0,25 - 1834: 0,26 - 1843: 1,24 - 1851: 1,25 + 334: -8,8 + 352: 0,24 + 363: -7,19 + 380: -6,10 + 385: -1,26 + 396: 1,26 + 404: 1,27 + 407: 0,26 + 412: 0,25 + 440: -8,8 + 443: -6,10 + 454: -7,19 + 457: -1,26 + 468: 0,24 + 476: 0,25 + 484: 0,26 + 489: 1,26 + 497: 1,27 + 583: -8,8 + 605: 1,27 + 636: 1,26 + 644: -1,26 + 652: 0,25 + 660: 0,24 + 668: 0,26 + 727: -8,8 + 742: -1,26 + 755: 0,24 + 763: 0,25 + 771: 0,26 + 778: 1,26 + 786: 1,27 + 819: -1,26 + 832: 0,24 + 840: 0,25 + 848: 0,26 + 855: 1,26 + 863: 1,27 + 892: -9,7 + 909: -9,7 + 934: 1,27 + 1026: 1,26 + 1034: -1,26 + 1042: 0,26 + 1047: -1,24 + 1055: -1,25 + 1063: 1,24 + 1071: 1,25 + 1079: 0,24 + 1087: 0,25 + 1101: -9,7 + 1119: -1,24 + 1127: -1,25 + 1135: -1,26 + 1148: 0,24 + 1156: 0,25 + 1164: 0,26 + 1171: 1,24 + 1179: 1,25 + 1187: 1,26 + 1195: 1,27 + 1206: -9,7 + 1224: -1,24 + 1232: -1,25 + 1240: -1,26 + 1253: 0,24 + 1261: 0,25 + 1269: 0,26 + 1276: 1,24 + 1284: 1,25 + 1292: 1,26 + 1300: 1,27 + 1311: -9,7 + 1329: -1,24 + 1337: -1,25 + 1345: -1,26 + 1358: 0,24 + 1366: 0,25 + 1374: 0,26 + 1381: 1,24 + 1389: 1,25 + 1397: 1,26 + 1405: 1,27 + 1416: -9,7 + 1434: -1,24 + 1442: -1,25 + 1450: -1,26 + 1463: 0,24 + 1471: 0,25 + 1479: 0,26 + 1486: 1,24 + 1494: 1,25 + 1502: 1,26 + 1510: 1,27 + 1521: -9,7 + 1539: -1,24 + 1547: -1,25 + 1555: -1,26 + 1568: 0,24 + 1576: 0,25 + 1584: 0,26 + 1591: 1,24 + 1599: 1,25 + 1607: 1,26 + 1615: 1,27 + 1626: -9,7 + 1644: -1,24 + 1652: -1,25 + 1660: -1,26 + 1673: 0,24 + 1681: 0,25 + 1689: 0,26 + 1696: 1,24 + 1704: 1,25 + 1712: 1,26 + 1720: 1,27 + 1760: -9,7 + 1789: -1,24 + 1797: -1,25 + 1808: 0,24 + 1816: 0,25 + 1827: 1,24 + 1835: 1,25 + 1851: -1,26 1859: 1,26 - 1867: 1,27 - 1874: -5,31 - 1879: -5,32 - 1901: -9,7 - 1907: -6,9 - 1924: -5,31 - 1929: -1,24 - 1937: -1,25 - 1945: -1,26 - 1960: 0,24 - 1968: 0,25 - 1976: 0,26 - 1985: 1,24 - 1993: 1,25 - 2001: 1,26 - 2009: 1,27 - 2024: -5,32 - 2067: -9,7 - 2073: -6,9 - 2094: -5,31 - 2106: -1,24 - 2114: -1,25 - 2127: 0,24 - 2135: 0,25 - 2148: 1,24 - 2156: 1,25 - 2182: -5,32 - 2185: -1,26 - 2193: 1,26 - 2201: 0,27 - 2206: 0,26 - 2230: -9,7 - 2236: -6,9 - 2264: -1,24 - 2272: -1,25 - 2280: -1,26 - 2293: 0,24 - 2301: 0,25 - 2309: 0,26 - 2317: 0,27 - 2327: 1,24 - 2335: 1,25 - 2343: 1,26 - 2361: -5,33 - 2367: -6,31 - 2370: -5,31 - 2378: -5,32 - 2386: 5,31 + 1867: 0,27 + 1872: 0,26 + 1891: -9,7 + 1920: -1,24 + 1928: -1,25 + 1936: -1,26 + 1947: 0,24 + 1955: 0,25 + 1963: 0,26 + 1971: 0,27 + 1979: 1,24 + 1987: 1,25 + 1995: 1,26 + 2022: -9,7 + 2051: -1,24 + 2059: -1,25 + 2067: -1,26 + 2078: 0,24 + 2086: 0,25 + 2094: 0,26 + 2102: 0,27 + 2110: 1,24 + 2118: 1,25 + 2126: 1,26 + 2153: -9,7 + 2182: -1,24 + 2190: -1,25 + 2198: -1,26 + 2209: 0,24 + 2217: 0,25 + 2225: 0,26 + 2233: 0,27 + 2241: 1,24 + 2249: 1,25 + 2257: 1,26 + 2284: -9,7 + 2313: -1,24 + 2321: -1,25 + 2329: -1,26 + 2340: 0,24 + 2348: 0,25 + 2356: 0,26 + 2364: 0,27 + 2372: 1,24 + 2380: 1,25 + 2388: 1,26 2415: -9,7 - 2421: -6,9 - 2442: -6,31 - 2445: -5,31 - 2460: -1,24 - 2468: -1,25 - 2476: -1,26 - 2489: 0,24 - 2497: 0,25 - 2505: 0,26 - 2513: 0,27 - 2523: 1,24 - 2531: 1,25 - 2539: 1,26 - 2557: 5,31 - 2576: -5,32 - 2581: -5,33 - 2600: -9,7 - 2606: -6,9 - 2627: -6,31 - 2630: -5,31 - 2645: -1,24 - 2653: -1,25 - 2661: -1,26 - 2674: 0,24 - 2682: 0,25 - 2690: 0,26 - 2698: 0,27 - 2708: 1,24 - 2716: 1,25 - 2724: 1,26 - 2742: 5,31 - 2761: -5,32 - 2766: -5,33 - 2785: -9,7 - 2791: -6,9 - 2812: -6,31 - 2815: -5,31 - 2830: -1,24 - 2838: -1,25 - 2846: -1,26 - 2859: 0,24 - 2867: 0,25 - 2875: 0,26 - 2883: 0,27 - 2893: 1,24 - 2901: 1,25 - 2909: 1,26 - 2927: 5,31 - 2946: -5,32 - 2951: -5,33 - 2970: -9,7 - 2976: -6,9 - 2997: -6,31 - 3000: -5,31 - 3015: -1,24 - 3023: -1,25 - 3031: -1,26 - 3044: 0,24 - 3052: 0,25 - 3060: 0,26 - 3068: 0,27 - 3078: 1,24 - 3086: 1,25 - 3094: 1,26 - 3112: 5,31 - 3131: -5,32 - 3136: -5,33 + 2444: -1,24 + 2452: -1,25 + 2460: -1,26 + 2471: 0,24 + 2479: 0,25 + 2487: 0,26 + 2495: 0,27 + 2503: 1,24 + 2511: 1,25 + 2519: 1,26 + 2546: -9,7 + 2575: -1,24 + 2583: -1,25 + 2591: -1,26 + 2602: 0,24 + 2610: 0,25 + 2618: 0,26 + 2626: 0,27 + 2634: 1,24 + 2642: 1,25 + 2650: 1,26 + 2742: -9,7 + 2771: -1,24 + 2779: -1,25 + 2787: -1,26 + 2798: 0,24 + 2806: 0,25 + 2814: 0,26 + 2822: 0,27 + 2830: 1,24 + 2838: 1,25 + 2846: 1,26 + 2873: -9,7 + 2902: -1,24 + 2910: -1,25 + 2918: -1,26 + 2929: 0,24 + 2937: 0,25 + 2945: 0,26 + 2953: 0,27 + 2961: 1,24 + 2969: 1,25 + 2977: 1,26 + 3004: -9,7 + 3033: -1,24 + 3041: -1,25 + 3049: -1,26 + 3060: 0,24 + 3068: 0,25 + 3076: 0,26 + 3084: 0,27 + 3092: 1,24 + 3100: 1,25 + 3108: 1,26 - node: zIndex: 1 id: LatticeCornerSW decals: - 329: 8,8 - 369: 0,24 - 373: 7,19 - 386: 6,9 - 391: 6,10 - 412: -1,26 - 416: -1,27 - 423: 1,26 - 432: 0,26 - 439: 0,25 - 444: 6,9 - 449: 6,10 - 456: 8,8 - 494: -1,26 - 498: -1,27 - 505: 0,24 - 513: 0,25 - 519: 0,26 - 526: 1,26 - 533: 7,19 - 562: 5,32 - 622: 8,8 - 649: -1,27 - 667: 5,32 - 703: 1,26 - 711: -1,26 - 719: 0,25 - 727: 0,24 - 733: 0,26 - 753: 6,9 - 800: 6,9 - 804: 8,8 - 831: -1,26 - 835: -1,27 - 846: 0,24 - 854: 0,25 - 860: 0,26 - 871: 1,26 - 882: 5,32 - 899: 6,9 - 930: -1,26 - 934: -1,27 - 945: 0,24 - 953: 0,25 - 959: 0,26 - 970: 1,26 - 981: 5,32 - 1014: 9,7 - 1026: 6,9 - 1033: 9,7 - 1059: -1,27 - 1124: 5,32 - 1180: 1,26 - 1188: -1,26 - 1194: 0,26 - 1201: -1,24 - 1209: -1,25 - 1217: 1,24 - 1225: 1,25 - 1233: 0,24 - 1241: 0,25 - 1246: 6,9 - 1253: 9,7 - 1283: -1,24 - 1291: -1,25 - 1299: -1,26 - 1303: -1,27 - 1314: 0,24 - 1322: 0,25 - 1328: 0,26 - 1339: 1,24 - 1347: 1,25 - 1355: 1,26 - 1366: 5,32 - 1373: 6,9 - 1380: 9,7 - 1410: -1,24 - 1418: -1,25 - 1426: -1,26 - 1430: -1,27 - 1441: 0,24 - 1449: 0,25 - 1455: 0,26 - 1466: 1,24 - 1474: 1,25 - 1482: 1,26 - 1493: 5,32 - 1500: 6,9 - 1507: 9,7 - 1537: -1,24 - 1545: -1,25 - 1553: -1,26 - 1557: -1,27 - 1568: 0,24 - 1576: 0,25 - 1582: 0,26 - 1593: 1,24 - 1601: 1,25 - 1609: 1,26 - 1620: 5,32 - 1627: 6,9 - 1634: 9,7 - 1664: -1,24 - 1672: -1,25 - 1680: -1,26 - 1684: -1,27 - 1695: 0,24 - 1703: 0,25 - 1709: 0,26 - 1720: 1,24 - 1728: 1,25 - 1736: 1,26 - 1747: 5,32 - 1754: 6,9 - 1761: 9,7 - 1791: -1,24 - 1799: -1,25 - 1807: -1,26 - 1811: -1,27 - 1822: 0,24 - 1830: 0,25 - 1836: 0,26 - 1847: 1,24 - 1855: 1,25 + 322: 8,8 + 356: 0,24 + 360: 7,19 + 373: 6,10 + 389: -1,26 + 393: -1,27 + 400: 1,26 + 409: 0,26 + 416: 0,25 + 421: 6,10 + 428: 8,8 + 461: -1,26 + 465: -1,27 + 472: 0,24 + 480: 0,25 + 486: 0,26 + 493: 1,26 + 500: 7,19 + 571: 8,8 + 598: -1,27 + 640: 1,26 + 648: -1,26 + 656: 0,25 + 664: 0,24 + 670: 0,26 + 724: 8,8 + 746: -1,26 + 750: -1,27 + 759: 0,24 + 767: 0,25 + 773: 0,26 + 782: 1,26 + 823: -1,26 + 827: -1,27 + 836: 0,24 + 844: 0,25 + 850: 0,26 + 859: 1,26 + 895: 9,7 + 906: 9,7 + 927: -1,27 + 1030: 1,26 + 1038: -1,26 + 1044: 0,26 + 1051: -1,24 + 1059: -1,25 + 1067: 1,24 + 1075: 1,25 + 1083: 0,24 + 1091: 0,25 + 1098: 9,7 + 1123: -1,24 + 1131: -1,25 + 1139: -1,26 + 1143: -1,27 + 1152: 0,24 + 1160: 0,25 + 1166: 0,26 + 1175: 1,24 + 1183: 1,25 + 1191: 1,26 + 1203: 9,7 + 1228: -1,24 + 1236: -1,25 + 1244: -1,26 + 1248: -1,27 + 1257: 0,24 + 1265: 0,25 + 1271: 0,26 + 1280: 1,24 + 1288: 1,25 + 1296: 1,26 + 1308: 9,7 + 1333: -1,24 + 1341: -1,25 + 1349: -1,26 + 1353: -1,27 + 1362: 0,24 + 1370: 0,25 + 1376: 0,26 + 1385: 1,24 + 1393: 1,25 + 1401: 1,26 + 1413: 9,7 + 1438: -1,24 + 1446: -1,25 + 1454: -1,26 + 1458: -1,27 + 1467: 0,24 + 1475: 0,25 + 1481: 0,26 + 1490: 1,24 + 1498: 1,25 + 1506: 1,26 + 1518: 9,7 + 1543: -1,24 + 1551: -1,25 + 1559: -1,26 + 1563: -1,27 + 1572: 0,24 + 1580: 0,25 + 1586: 0,26 + 1595: 1,24 + 1603: 1,25 + 1611: 1,26 + 1623: 9,7 + 1648: -1,24 + 1656: -1,25 + 1664: -1,26 + 1668: -1,27 + 1677: 0,24 + 1685: 0,25 + 1691: 0,26 + 1700: 1,24 + 1708: 1,25 + 1716: 1,26 + 1757: 9,7 + 1793: -1,24 + 1801: -1,25 + 1812: 0,24 + 1820: 0,25 + 1831: 1,24 + 1839: 1,25 + 1855: -1,26 1863: 1,26 - 1883: 5,31 - 1887: 5,32 - 1891: 6,9 - 1898: 9,7 - 1933: -1,24 - 1941: -1,25 - 1949: -1,26 - 1953: -1,27 - 1964: 0,24 - 1972: 0,25 - 1978: 0,26 - 1989: 1,24 - 1997: 1,25 - 2005: 1,26 - 2017: 5,31 - 2021: 5,32 - 2057: 6,9 - 2064: 9,7 - 2110: -1,24 - 2118: -1,25 - 2131: 0,24 - 2139: 0,25 - 2152: 1,24 - 2160: 1,25 - 2175: 5,31 - 2179: 5,32 - 2189: -1,26 - 2197: 1,26 - 2203: 0,27 - 2210: 0,26 - 2220: 6,9 - 2227: 9,7 - 2268: -1,24 - 2276: -1,25 - 2284: -1,26 - 2297: 0,24 - 2305: 0,25 - 2313: 0,26 - 2319: 0,27 - 2331: 1,24 - 2339: 1,25 - 2347: 1,26 - 2364: 5,33 - 2374: -5,31 - 2383: 6,31 - 2390: 5,31 - 2395: 5,32 - 2405: 6,9 + 1869: 0,27 + 1876: 0,26 + 1888: 9,7 + 1924: -1,24 + 1932: -1,25 + 1940: -1,26 + 1951: 0,24 + 1959: 0,25 + 1967: 0,26 + 1973: 0,27 + 1983: 1,24 + 1991: 1,25 + 1999: 1,26 + 2019: 9,7 + 2055: -1,24 + 2063: -1,25 + 2071: -1,26 + 2082: 0,24 + 2090: 0,25 + 2098: 0,26 + 2104: 0,27 + 2114: 1,24 + 2122: 1,25 + 2130: 1,26 + 2150: 9,7 + 2186: -1,24 + 2194: -1,25 + 2202: -1,26 + 2213: 0,24 + 2221: 0,25 + 2229: 0,26 + 2235: 0,27 + 2245: 1,24 + 2253: 1,25 + 2261: 1,26 + 2281: 9,7 + 2317: -1,24 + 2325: -1,25 + 2333: -1,26 + 2344: 0,24 + 2352: 0,25 + 2360: 0,26 + 2366: 0,27 + 2376: 1,24 + 2384: 1,25 + 2392: 1,26 2412: 9,7 - 2449: -5,31 - 2464: -1,24 - 2472: -1,25 - 2480: -1,26 - 2493: 0,24 - 2501: 0,25 - 2509: 0,26 - 2515: 0,27 - 2527: 1,24 - 2535: 1,25 - 2543: 1,26 - 2561: 5,31 - 2565: 6,31 - 2569: 5,32 - 2573: 5,33 - 2590: 6,9 - 2597: 9,7 - 2634: -5,31 - 2649: -1,24 - 2657: -1,25 - 2665: -1,26 - 2678: 0,24 - 2686: 0,25 - 2694: 0,26 - 2700: 0,27 - 2712: 1,24 - 2720: 1,25 - 2728: 1,26 - 2746: 5,31 - 2750: 6,31 - 2754: 5,32 - 2758: 5,33 - 2775: 6,9 - 2782: 9,7 - 2819: -5,31 - 2834: -1,24 - 2842: -1,25 - 2850: -1,26 - 2863: 0,24 - 2871: 0,25 - 2879: 0,26 - 2885: 0,27 - 2897: 1,24 - 2905: 1,25 - 2913: 1,26 - 2931: 5,31 - 2935: 6,31 - 2939: 5,32 - 2943: 5,33 - 2960: 6,9 - 2967: 9,7 - 3004: -5,31 - 3019: -1,24 - 3027: -1,25 - 3035: -1,26 - 3048: 0,24 - 3056: 0,25 - 3064: 0,26 - 3070: 0,27 - 3082: 1,24 - 3090: 1,25 - 3098: 1,26 - 3116: 5,31 - 3120: 6,31 - 3124: 5,32 - 3128: 5,33 + 2448: -1,24 + 2456: -1,25 + 2464: -1,26 + 2475: 0,24 + 2483: 0,25 + 2491: 0,26 + 2497: 0,27 + 2507: 1,24 + 2515: 1,25 + 2523: 1,26 + 2543: 9,7 + 2579: -1,24 + 2587: -1,25 + 2595: -1,26 + 2606: 0,24 + 2614: 0,25 + 2622: 0,26 + 2628: 0,27 + 2638: 1,24 + 2646: 1,25 + 2654: 1,26 + 2739: 9,7 + 2775: -1,24 + 2783: -1,25 + 2791: -1,26 + 2802: 0,24 + 2810: 0,25 + 2818: 0,26 + 2824: 0,27 + 2834: 1,24 + 2842: 1,25 + 2850: 1,26 + 2870: 9,7 + 2906: -1,24 + 2914: -1,25 + 2922: -1,26 + 2933: 0,24 + 2941: 0,25 + 2949: 0,26 + 2955: 0,27 + 2965: 1,24 + 2973: 1,25 + 2981: 1,26 + 3001: 9,7 + 3037: -1,24 + 3045: -1,25 + 3053: -1,26 + 3064: 0,24 + 3072: 0,25 + 3080: 0,26 + 3086: 0,27 + 3096: 1,24 + 3104: 1,25 + 3112: 1,26 - node: id: LatticeEdgeE decals: - 333: -9,2 - 336: -8,0 - 340: -8,8 - 342: -5,-1 - 348: -1,29 - 350: -1,31 - 352: 0,29 - 354: 0,31 - 356: 1,29 - 358: 1,31 - 364: 0,24 - 375: -7,19 - 377: -2,-2 - 393: -7,13 - 397: -6,9 - 402: -6,10 - 407: -1,26 - 418: 1,26 - 426: 1,27 - 429: 0,26 - 434: 0,25 - 460: -9,2 - 463: -8,0 - 467: -8,8 - 470: -6,9 - 475: -6,10 - 479: -5,-1 - 486: -7,19 - 489: -1,26 - 500: 0,24 - 508: 0,25 - 516: 0,26 - 521: 1,26 - 529: 1,27 - 541: 0,31 - 543: 0,29 - 545: -1,29 - 547: 1,29 - 549: -1,31 - 551: 1,31 - 558: -5,32 - 596: -7,13 - 611: -2,-2 - 626: -9,2 - 629: -8,0 - 633: -8,8 - 635: -5,-1 - 638: -2,-2 - 650: -1,29 - 652: -1,31 - 654: 0,29 - 656: 0,31 - 659: 1,27 - 661: 1,29 - 663: 1,31 - 669: -5,32 - 698: 1,26 - 706: -1,26 - 714: 0,25 - 722: 0,24 - 730: 0,26 - 746: -6,9 - 806: -8,8 - 809: -6,9 - 813: -5,-1 - 816: -2,-2 - 826: -1,26 - 836: -1,29 - 838: -1,31 - 841: 0,24 - 849: 0,25 - 857: 0,26 - 861: 0,29 - 863: 0,31 - 866: 1,26 - 874: 1,27 - 876: 1,29 - 878: 1,31 - 884: -5,32 - 886: -8,0 - 904: -8,0 - 908: -6,9 - 912: -5,-1 - 915: -2,-2 - 925: -1,26 - 935: -1,29 - 937: -1,31 - 940: 0,24 - 948: 0,25 - 956: 0,26 - 960: 0,29 - 962: 0,31 - 965: 1,26 - 973: 1,27 - 975: 1,29 - 977: 1,31 - 983: -5,32 - 1010: -9,7 - 1035: -9,7 - 1037: -8,0 - 1041: -6,9 - 1045: -5,-1 - 1048: -2,-2 - 1060: -1,29 - 1062: -1,31 - 1064: 0,29 - 1066: 0,31 - 1069: 1,27 - 1071: 1,29 - 1073: 1,31 - 1120: -5,32 - 1175: 1,26 - 1183: -1,26 - 1191: 0,26 - 1196: -1,24 - 1204: -1,25 - 1212: 1,24 - 1220: 1,25 - 1228: 0,24 - 1236: 0,25 - 1255: -9,7 - 1257: -8,0 - 1261: -6,9 - 1265: -5,-1 - 1268: -2,-2 - 1278: -1,24 - 1286: -1,25 - 1294: -1,26 - 1304: -1,29 - 1306: -1,31 - 1309: 0,24 - 1317: 0,25 - 1325: 0,26 - 1329: 0,29 - 1331: 0,31 - 1334: 1,24 - 1342: 1,25 - 1350: 1,26 - 1358: 1,27 - 1360: 1,29 - 1362: 1,31 - 1368: -5,32 - 1382: -9,7 - 1384: -8,0 - 1388: -6,9 - 1392: -5,-1 - 1395: -2,-2 - 1405: -1,24 - 1413: -1,25 - 1421: -1,26 - 1431: -1,29 - 1433: -1,31 - 1436: 0,24 - 1444: 0,25 - 1452: 0,26 - 1456: 0,29 - 1458: 0,31 - 1461: 1,24 - 1469: 1,25 - 1477: 1,26 - 1485: 1,27 - 1487: 1,29 - 1489: 1,31 - 1495: -5,32 - 1509: -9,7 - 1511: -8,0 - 1515: -6,9 - 1519: -5,-1 - 1522: -2,-2 - 1532: -1,24 - 1540: -1,25 - 1548: -1,26 - 1558: -1,29 - 1560: -1,31 - 1563: 0,24 - 1571: 0,25 - 1579: 0,26 - 1583: 0,29 - 1585: 0,31 - 1588: 1,24 - 1596: 1,25 - 1604: 1,26 - 1612: 1,27 - 1614: 1,29 + 326: -9,2 + 329: -8,0 + 333: -8,8 + 335: -5,-1 + 341: -1,31 + 343: 0,31 + 345: 1,31 + 351: 0,24 + 362: -7,19 + 364: -2,-2 + 375: -7,13 + 379: -6,10 + 384: -1,26 + 395: 1,26 + 403: 1,27 + 406: 0,26 + 411: 0,25 + 432: -9,2 + 435: -8,0 + 439: -8,8 + 442: -6,10 + 446: -5,-1 + 453: -7,19 + 456: -1,26 + 467: 0,24 + 475: 0,25 + 483: 0,26 + 488: 1,26 + 496: 1,27 + 505: 0,31 + 507: -1,31 + 509: 1,31 + 545: -7,13 + 560: -2,-2 + 575: -9,2 + 578: -8,0 + 582: -8,8 + 584: -5,-1 + 587: -2,-2 + 599: -1,31 + 601: 0,31 + 604: 1,27 + 606: 1,31 + 635: 1,26 + 643: -1,26 + 651: 0,25 + 659: 0,24 + 667: 0,26 + 726: -8,8 + 728: -5,-1 + 731: -2,-2 + 741: -1,26 + 751: -1,31 + 754: 0,24 + 762: 0,25 + 770: 0,26 + 774: 0,31 + 777: 1,26 + 785: 1,27 + 787: 1,31 + 789: -8,0 + 802: -8,0 + 805: -5,-1 + 808: -2,-2 + 818: -1,26 + 828: -1,31 + 831: 0,24 + 839: 0,25 + 847: 0,26 + 851: 0,31 + 854: 1,26 + 862: 1,27 + 864: 1,31 + 891: -9,7 + 908: -9,7 + 910: -8,0 + 913: -5,-1 + 916: -2,-2 + 928: -1,31 + 930: 0,31 + 933: 1,27 + 935: 1,31 + 1025: 1,26 + 1033: -1,26 + 1041: 0,26 + 1046: -1,24 + 1054: -1,25 + 1062: 1,24 + 1070: 1,25 + 1078: 0,24 + 1086: 0,25 + 1100: -9,7 + 1102: -8,0 + 1105: -5,-1 + 1108: -2,-2 + 1118: -1,24 + 1126: -1,25 + 1134: -1,26 + 1144: -1,31 + 1147: 0,24 + 1155: 0,25 + 1163: 0,26 + 1167: 0,31 + 1170: 1,24 + 1178: 1,25 + 1186: 1,26 + 1194: 1,27 + 1196: 1,31 + 1205: -9,7 + 1207: -8,0 + 1210: -5,-1 + 1213: -2,-2 + 1223: -1,24 + 1231: -1,25 + 1239: -1,26 + 1249: -1,31 + 1252: 0,24 + 1260: 0,25 + 1268: 0,26 + 1272: 0,31 + 1275: 1,24 + 1283: 1,25 + 1291: 1,26 + 1299: 1,27 + 1301: 1,31 + 1310: -9,7 + 1312: -8,0 + 1315: -5,-1 + 1318: -2,-2 + 1328: -1,24 + 1336: -1,25 + 1344: -1,26 + 1354: -1,31 + 1357: 0,24 + 1365: 0,25 + 1373: 0,26 + 1377: 0,31 + 1380: 1,24 + 1388: 1,25 + 1396: 1,26 + 1404: 1,27 + 1406: 1,31 + 1415: -9,7 + 1417: -8,0 + 1420: -5,-1 + 1423: -2,-2 + 1433: -1,24 + 1441: -1,25 + 1449: -1,26 + 1459: -1,31 + 1462: 0,24 + 1470: 0,25 + 1478: 0,26 + 1482: 0,31 + 1485: 1,24 + 1493: 1,25 + 1501: 1,26 + 1509: 1,27 + 1511: 1,31 + 1520: -9,7 + 1522: -8,0 + 1525: -5,-1 + 1528: -2,-2 + 1538: -1,24 + 1546: -1,25 + 1554: -1,26 + 1564: -1,31 + 1567: 0,24 + 1575: 0,25 + 1583: 0,26 + 1587: 0,31 + 1590: 1,24 + 1598: 1,25 + 1606: 1,26 + 1614: 1,27 1616: 1,31 - 1622: -5,32 - 1636: -9,7 - 1638: -8,0 - 1642: -6,9 - 1646: -5,-1 - 1649: -2,-2 - 1659: -1,24 - 1667: -1,25 - 1675: -1,26 - 1685: -1,29 - 1687: -1,31 - 1690: 0,24 - 1698: 0,25 - 1706: 0,26 - 1710: 0,29 - 1712: 0,31 - 1715: 1,24 - 1723: 1,25 - 1731: 1,26 - 1739: 1,27 - 1741: 1,29 - 1743: 1,31 - 1749: -5,32 - 1763: -9,7 - 1765: -8,0 - 1769: -6,9 - 1773: -5,-1 - 1776: -2,-2 - 1786: -1,24 - 1794: -1,25 - 1802: -1,26 - 1812: -1,29 - 1814: -1,31 - 1817: 0,24 - 1825: 0,25 - 1833: 0,26 - 1837: 0,29 - 1839: 0,31 - 1842: 1,24 - 1850: 1,25 + 1625: -9,7 + 1627: -8,0 + 1630: -5,-1 + 1633: -2,-2 + 1643: -1,24 + 1651: -1,25 + 1659: -1,26 + 1669: -1,31 + 1672: 0,24 + 1680: 0,25 + 1688: 0,26 + 1692: 0,31 + 1695: 1,24 + 1703: 1,25 + 1711: 1,26 + 1719: 1,27 + 1721: 1,31 + 1759: -9,7 + 1761: -8,0 + 1768: -5,-1 + 1771: -2,-2 + 1788: -1,24 + 1796: -1,25 + 1803: -1,31 + 1807: 0,24 + 1815: 0,25 + 1822: 0,31 + 1826: 1,24 + 1834: 1,25 + 1841: 1,31 + 1850: -1,26 1858: 1,26 - 1866: 1,27 - 1868: 1,29 - 1870: 1,31 - 1873: -5,31 - 1878: -5,32 - 1900: -9,7 - 1902: -8,0 - 1906: -6,9 - 1910: -5,-1 - 1913: -2,-2 - 1923: -5,31 - 1928: -1,24 - 1936: -1,25 - 1944: -1,26 - 1954: -1,29 - 1956: -1,31 - 1959: 0,24 - 1967: 0,25 - 1975: 0,26 - 1979: 0,29 - 1981: 0,31 - 1984: 1,24 - 1992: 1,25 - 2000: 1,26 - 2008: 1,27 - 2010: 1,29 - 2012: 1,31 - 2023: -5,32 - 2066: -9,7 - 2068: -8,0 - 2072: -6,9 - 2080: -5,-1 - 2083: -2,-2 - 2093: -5,31 - 2105: -1,24 - 2113: -1,25 - 2120: -1,29 - 2122: -1,31 - 2126: 0,24 - 2134: 0,25 - 2141: 0,29 - 2143: 0,31 - 2147: 1,24 - 2155: 1,25 - 2162: 1,29 - 2164: 1,31 - 2181: -5,32 - 2184: -1,26 - 2192: 1,26 - 2200: 0,27 - 2205: 0,26 - 2229: -9,7 - 2231: -8,0 - 2235: -6,9 - 2243: -5,-1 - 2246: -2,-2 - 2263: -1,24 - 2271: -1,25 - 2279: -1,26 - 2286: -1,29 - 2288: -1,31 - 2292: 0,24 - 2300: 0,25 - 2308: 0,26 - 2316: 0,27 - 2320: 0,29 - 2322: 0,31 - 2326: 1,24 - 2334: 1,25 - 2342: 1,26 - 2349: 1,29 - 2351: 1,31 - 2360: -5,33 - 2366: -6,31 - 2369: -5,31 - 2377: -5,32 - 2385: 5,31 + 1866: 0,27 + 1871: 0,26 + 1890: -9,7 + 1892: -8,0 + 1899: -5,-1 + 1902: -2,-2 + 1919: -1,24 + 1927: -1,25 + 1935: -1,26 + 1942: -1,31 + 1946: 0,24 + 1954: 0,25 + 1962: 0,26 + 1970: 0,27 + 1974: 0,31 + 1978: 1,24 + 1986: 1,25 + 1994: 1,26 + 2001: 1,31 + 2021: -9,7 + 2023: -8,0 + 2030: -5,-1 + 2033: -2,-2 + 2050: -1,24 + 2058: -1,25 + 2066: -1,26 + 2073: -1,31 + 2077: 0,24 + 2085: 0,25 + 2093: 0,26 + 2101: 0,27 + 2105: 0,31 + 2109: 1,24 + 2117: 1,25 + 2125: 1,26 + 2132: 1,31 + 2152: -9,7 + 2154: -8,0 + 2161: -5,-1 + 2164: -2,-2 + 2181: -1,24 + 2189: -1,25 + 2197: -1,26 + 2204: -1,31 + 2208: 0,24 + 2216: 0,25 + 2224: 0,26 + 2232: 0,27 + 2236: 0,31 + 2240: 1,24 + 2248: 1,25 + 2256: 1,26 + 2263: 1,31 + 2283: -9,7 + 2285: -8,0 + 2292: -5,-1 + 2295: -2,-2 + 2312: -1,24 + 2320: -1,25 + 2328: -1,26 + 2335: -1,31 + 2339: 0,24 + 2347: 0,25 + 2355: 0,26 + 2363: 0,27 + 2367: 0,31 + 2371: 1,24 + 2379: 1,25 + 2387: 1,26 + 2394: 1,31 2414: -9,7 2416: -8,0 - 2420: -6,9 - 2428: -5,-1 - 2431: -2,-2 - 2441: -6,31 - 2444: -5,31 - 2459: -1,24 - 2467: -1,25 - 2475: -1,26 - 2482: -1,29 - 2484: -1,31 - 2488: 0,24 - 2496: 0,25 - 2504: 0,26 - 2512: 0,27 - 2516: 0,29 - 2518: 0,31 - 2522: 1,24 - 2530: 1,25 - 2538: 1,26 - 2545: 1,29 - 2547: 1,31 - 2556: 5,31 - 2575: -5,32 - 2580: -5,33 - 2599: -9,7 - 2601: -8,0 - 2605: -6,9 - 2613: -5,-1 - 2616: -2,-2 - 2626: -6,31 - 2629: -5,31 - 2644: -1,24 - 2652: -1,25 - 2660: -1,26 - 2667: -1,29 - 2669: -1,31 - 2673: 0,24 - 2681: 0,25 - 2689: 0,26 - 2697: 0,27 - 2701: 0,29 - 2703: 0,31 - 2707: 1,24 - 2715: 1,25 - 2723: 1,26 - 2730: 1,29 - 2732: 1,31 - 2741: 5,31 - 2760: -5,32 - 2765: -5,33 - 2784: -9,7 - 2786: -8,0 - 2790: -6,9 - 2798: -5,-1 - 2801: -2,-2 - 2811: -6,31 - 2814: -5,31 - 2829: -1,24 - 2837: -1,25 - 2845: -1,26 - 2852: -1,29 - 2854: -1,31 - 2858: 0,24 - 2866: 0,25 - 2874: 0,26 - 2882: 0,27 - 2886: 0,29 - 2888: 0,31 - 2892: 1,24 - 2900: 1,25 - 2908: 1,26 - 2915: 1,29 - 2917: 1,31 - 2926: 5,31 - 2945: -5,32 - 2950: -5,33 - 2969: -9,7 - 2971: -8,0 - 2975: -6,9 - 2983: -5,-1 - 2986: -2,-2 - 2996: -6,31 - 2999: -5,31 - 3014: -1,24 - 3022: -1,25 - 3030: -1,26 - 3037: -1,29 - 3039: -1,31 - 3043: 0,24 - 3051: 0,25 - 3059: 0,26 - 3067: 0,27 - 3071: 0,29 - 3073: 0,31 - 3077: 1,24 - 3085: 1,25 - 3093: 1,26 - 3100: 1,29 - 3102: 1,31 - 3111: 5,31 - 3130: -5,32 - 3135: -5,33 + 2423: -5,-1 + 2426: -2,-2 + 2443: -1,24 + 2451: -1,25 + 2459: -1,26 + 2466: -1,31 + 2470: 0,24 + 2478: 0,25 + 2486: 0,26 + 2494: 0,27 + 2498: 0,31 + 2502: 1,24 + 2510: 1,25 + 2518: 1,26 + 2525: 1,31 + 2545: -9,7 + 2547: -8,0 + 2554: -5,-1 + 2557: -2,-2 + 2574: -1,24 + 2582: -1,25 + 2590: -1,26 + 2597: -1,31 + 2601: 0,24 + 2609: 0,25 + 2617: 0,26 + 2625: 0,27 + 2629: 0,31 + 2633: 1,24 + 2641: 1,25 + 2649: 1,26 + 2656: 1,31 + 2741: -9,7 + 2743: -8,0 + 2750: -5,-1 + 2753: -2,-2 + 2770: -1,24 + 2778: -1,25 + 2786: -1,26 + 2793: -1,31 + 2797: 0,24 + 2805: 0,25 + 2813: 0,26 + 2821: 0,27 + 2825: 0,31 + 2829: 1,24 + 2837: 1,25 + 2845: 1,26 + 2852: 1,31 + 2872: -9,7 + 2874: -8,0 + 2881: -5,-1 + 2884: -2,-2 + 2901: -1,24 + 2909: -1,25 + 2917: -1,26 + 2924: -1,31 + 2928: 0,24 + 2936: 0,25 + 2944: 0,26 + 2952: 0,27 + 2956: 0,31 + 2960: 1,24 + 2968: 1,25 + 2976: 1,26 + 2983: 1,31 + 3003: -9,7 + 3005: -8,0 + 3012: -5,-1 + 3015: -2,-2 + 3032: -1,24 + 3040: -1,25 + 3048: -1,26 + 3055: -1,31 + 3059: 0,24 + 3067: 0,25 + 3075: 0,26 + 3083: 0,27 + 3087: 0,31 + 3091: 1,24 + 3099: 1,25 + 3107: 1,26 + 3114: 1,31 - node: id: LatticeEdgeN decals: - 324: 8,0 - 330: 9,2 - 334: -9,2 - 337: -8,0 - 343: -5,-1 - 345: 5,-1 - 360: 7,13 - 366: 0,24 - 378: -2,-2 - 380: 2,-2 - 384: 6,9 - 389: 6,10 - 394: -7,13 - 399: -6,9 - 404: -6,10 - 409: -1,26 - 420: 1,26 - 436: 0,25 - 442: 6,9 - 447: 6,10 - 451: 8,0 - 457: 9,2 - 461: -9,2 - 464: -8,0 - 472: -6,9 - 477: -6,10 - 480: -5,-1 - 482: 5,-1 - 491: -1,26 - 502: 0,24 - 510: 0,25 - 523: 1,26 - 593: 7,13 - 597: -7,13 - 612: -2,-2 - 614: 2,-2 - 617: 8,0 - 623: 9,2 - 627: -9,2 - 630: -8,0 - 636: -5,-1 - 639: -2,-2 - 641: 2,-2 - 644: 5,-1 - 700: 1,26 - 708: -1,26 - 716: 0,25 - 724: 0,24 - 748: -6,9 - 751: 6,9 - 798: 6,9 - 811: -6,9 - 814: -5,-1 - 817: -2,-2 - 819: 2,-2 - 822: 5,-1 - 828: -1,26 - 843: 0,24 - 851: 0,25 - 868: 1,26 - 887: -8,0 - 889: 8,0 - 897: 6,9 + 317: 8,0 + 323: 9,2 + 327: -9,2 + 330: -8,0 + 336: -5,-1 + 338: 5,-1 + 347: 7,13 + 353: 0,24 + 365: -2,-2 + 367: 2,-2 + 371: 6,10 + 376: -7,13 + 381: -6,10 + 386: -1,26 + 397: 1,26 + 413: 0,25 + 419: 6,10 + 423: 8,0 + 429: 9,2 + 433: -9,2 + 436: -8,0 + 444: -6,10 + 447: -5,-1 + 449: 5,-1 + 458: -1,26 + 469: 0,24 + 477: 0,25 + 490: 1,26 + 542: 7,13 + 546: -7,13 + 561: -2,-2 + 563: 2,-2 + 566: 8,0 + 572: 9,2 + 576: -9,2 + 579: -8,0 + 585: -5,-1 + 588: -2,-2 + 590: 2,-2 + 593: 5,-1 + 637: 1,26 + 645: -1,26 + 653: 0,25 + 661: 0,24 + 729: -5,-1 + 732: -2,-2 + 734: 2,-2 + 737: 5,-1 + 743: -1,26 + 756: 0,24 + 764: 0,25 + 779: 1,26 + 790: -8,0 + 792: 8,0 + 799: 8,0 + 803: -8,0 + 806: -5,-1 + 809: -2,-2 + 811: 2,-2 + 814: 5,-1 + 820: -1,26 + 833: 0,24 + 841: 0,25 + 856: 1,26 901: 8,0 - 905: -8,0 - 910: -6,9 - 913: -5,-1 - 916: -2,-2 - 918: 2,-2 - 921: 5,-1 - 927: -1,26 - 942: 0,24 - 950: 0,25 - 967: 1,26 - 1024: 6,9 - 1028: 8,0 - 1038: -8,0 - 1043: -6,9 - 1046: -5,-1 - 1049: -2,-2 - 1051: 2,-2 - 1054: 5,-1 - 1177: 1,26 - 1185: -1,26 - 1198: -1,24 - 1206: -1,25 - 1214: 1,24 - 1222: 1,25 - 1230: 0,24 - 1238: 0,25 - 1244: 6,9 - 1248: 8,0 - 1258: -8,0 - 1263: -6,9 - 1266: -5,-1 - 1269: -2,-2 - 1271: 2,-2 - 1274: 5,-1 - 1280: -1,24 - 1288: -1,25 - 1296: -1,26 - 1311: 0,24 - 1319: 0,25 - 1336: 1,24 - 1344: 1,25 - 1352: 1,26 - 1371: 6,9 - 1375: 8,0 - 1385: -8,0 - 1390: -6,9 - 1393: -5,-1 - 1396: -2,-2 - 1398: 2,-2 - 1401: 5,-1 - 1407: -1,24 - 1415: -1,25 - 1423: -1,26 - 1438: 0,24 - 1446: 0,25 - 1463: 1,24 - 1471: 1,25 - 1479: 1,26 - 1498: 6,9 - 1502: 8,0 - 1512: -8,0 - 1517: -6,9 - 1520: -5,-1 - 1523: -2,-2 - 1525: 2,-2 - 1528: 5,-1 - 1534: -1,24 - 1542: -1,25 - 1550: -1,26 - 1565: 0,24 - 1573: 0,25 - 1590: 1,24 - 1598: 1,25 - 1606: 1,26 - 1625: 6,9 - 1629: 8,0 - 1639: -8,0 - 1644: -6,9 - 1647: -5,-1 - 1650: -2,-2 - 1652: 2,-2 - 1655: 5,-1 - 1661: -1,24 - 1669: -1,25 - 1677: -1,26 - 1692: 0,24 - 1700: 0,25 - 1717: 1,24 - 1725: 1,25 - 1733: 1,26 - 1752: 6,9 - 1756: 8,0 - 1766: -8,0 - 1771: -6,9 - 1774: -5,-1 - 1777: -2,-2 - 1779: 2,-2 - 1782: 5,-1 - 1788: -1,24 - 1796: -1,25 - 1804: -1,26 - 1819: 0,24 - 1827: 0,25 - 1844: 1,24 - 1852: 1,25 + 911: -8,0 + 914: -5,-1 + 917: -2,-2 + 919: 2,-2 + 922: 5,-1 + 1027: 1,26 + 1035: -1,26 + 1048: -1,24 + 1056: -1,25 + 1064: 1,24 + 1072: 1,25 + 1080: 0,24 + 1088: 0,25 + 1093: 8,0 + 1103: -8,0 + 1106: -5,-1 + 1109: -2,-2 + 1111: 2,-2 + 1114: 5,-1 + 1120: -1,24 + 1128: -1,25 + 1136: -1,26 + 1149: 0,24 + 1157: 0,25 + 1172: 1,24 + 1180: 1,25 + 1188: 1,26 + 1198: 8,0 + 1208: -8,0 + 1211: -5,-1 + 1214: -2,-2 + 1216: 2,-2 + 1219: 5,-1 + 1225: -1,24 + 1233: -1,25 + 1241: -1,26 + 1254: 0,24 + 1262: 0,25 + 1277: 1,24 + 1285: 1,25 + 1293: 1,26 + 1303: 8,0 + 1313: -8,0 + 1316: -5,-1 + 1319: -2,-2 + 1321: 2,-2 + 1324: 5,-1 + 1330: -1,24 + 1338: -1,25 + 1346: -1,26 + 1359: 0,24 + 1367: 0,25 + 1382: 1,24 + 1390: 1,25 + 1398: 1,26 + 1408: 8,0 + 1418: -8,0 + 1421: -5,-1 + 1424: -2,-2 + 1426: 2,-2 + 1429: 5,-1 + 1435: -1,24 + 1443: -1,25 + 1451: -1,26 + 1464: 0,24 + 1472: 0,25 + 1487: 1,24 + 1495: 1,25 + 1503: 1,26 + 1513: 8,0 + 1523: -8,0 + 1526: -5,-1 + 1529: -2,-2 + 1531: 2,-2 + 1534: 5,-1 + 1540: -1,24 + 1548: -1,25 + 1556: -1,26 + 1569: 0,24 + 1577: 0,25 + 1592: 1,24 + 1600: 1,25 + 1608: 1,26 + 1618: 8,0 + 1628: -8,0 + 1631: -5,-1 + 1634: -2,-2 + 1636: 2,-2 + 1639: 5,-1 + 1645: -1,24 + 1653: -1,25 + 1661: -1,26 + 1674: 0,24 + 1682: 0,25 + 1697: 1,24 + 1705: 1,25 + 1713: 1,26 + 1752: 8,0 + 1762: -8,0 + 1769: -5,-1 + 1772: -2,-2 + 1774: 2,-2 + 1777: 5,-1 + 1790: -1,24 + 1798: -1,25 + 1809: 0,24 + 1817: 0,25 + 1828: 1,24 + 1836: 1,25 + 1852: -1,26 1860: 1,26 - 1875: -5,31 - 1881: 5,31 - 1889: 6,9 - 1893: 8,0 - 1903: -8,0 - 1908: -6,9 - 1911: -5,-1 - 1914: -2,-2 - 1916: 2,-2 - 1919: 5,-1 - 1925: -5,31 - 1930: -1,24 - 1938: -1,25 - 1946: -1,26 - 1961: 0,24 - 1969: 0,25 - 1986: 1,24 - 1994: 1,25 - 2002: 1,26 - 2015: 5,31 - 2055: 6,9 - 2059: 8,0 - 2069: -8,0 - 2074: -6,9 - 2081: -5,-1 - 2084: -2,-2 - 2086: 2,-2 - 2089: 5,-1 - 2095: -5,31 - 2107: -1,24 - 2115: -1,25 - 2128: 0,24 - 2136: 0,25 - 2149: 1,24 - 2157: 1,25 - 2173: 5,31 - 2186: -1,26 - 2194: 1,26 - 2207: 0,26 - 2218: 6,9 - 2222: 8,0 - 2232: -8,0 - 2237: -6,9 - 2244: -5,-1 - 2247: -2,-2 - 2249: 2,-2 - 2252: 5,-1 - 2265: -1,24 - 2273: -1,25 - 2281: -1,26 - 2294: 0,24 - 2302: 0,25 - 2310: 0,26 - 2328: 1,24 - 2336: 1,25 - 2344: 1,26 - 2371: -5,31 - 2379: -5,32 - 2387: 5,31 - 2393: 5,32 - 2403: 6,9 + 1873: 0,26 + 1883: 8,0 + 1893: -8,0 + 1900: -5,-1 + 1903: -2,-2 + 1905: 2,-2 + 1908: 5,-1 + 1921: -1,24 + 1929: -1,25 + 1937: -1,26 + 1948: 0,24 + 1956: 0,25 + 1964: 0,26 + 1980: 1,24 + 1988: 1,25 + 1996: 1,26 + 2014: 8,0 + 2024: -8,0 + 2031: -5,-1 + 2034: -2,-2 + 2036: 2,-2 + 2039: 5,-1 + 2052: -1,24 + 2060: -1,25 + 2068: -1,26 + 2079: 0,24 + 2087: 0,25 + 2095: 0,26 + 2111: 1,24 + 2119: 1,25 + 2127: 1,26 + 2145: 8,0 + 2155: -8,0 + 2162: -5,-1 + 2165: -2,-2 + 2167: 2,-2 + 2170: 5,-1 + 2183: -1,24 + 2191: -1,25 + 2199: -1,26 + 2210: 0,24 + 2218: 0,25 + 2226: 0,26 + 2242: 1,24 + 2250: 1,25 + 2258: 1,26 + 2276: 8,0 + 2286: -8,0 + 2293: -5,-1 + 2296: -2,-2 + 2298: 2,-2 + 2301: 5,-1 + 2314: -1,24 + 2322: -1,25 + 2330: -1,26 + 2341: 0,24 + 2349: 0,25 + 2357: 0,26 + 2373: 1,24 + 2381: 1,25 + 2389: 1,26 2407: 8,0 2417: -8,0 - 2422: -6,9 - 2429: -5,-1 - 2432: -2,-2 - 2434: 2,-2 - 2437: 5,-1 - 2446: -5,31 - 2461: -1,24 - 2469: -1,25 - 2477: -1,26 - 2490: 0,24 - 2498: 0,25 - 2506: 0,26 - 2524: 1,24 - 2532: 1,25 - 2540: 1,26 - 2558: 5,31 - 2567: 5,32 - 2577: -5,32 - 2588: 6,9 - 2592: 8,0 - 2602: -8,0 - 2607: -6,9 - 2614: -5,-1 - 2617: -2,-2 - 2619: 2,-2 - 2622: 5,-1 - 2631: -5,31 - 2646: -1,24 - 2654: -1,25 - 2662: -1,26 - 2675: 0,24 - 2683: 0,25 - 2691: 0,26 - 2709: 1,24 - 2717: 1,25 - 2725: 1,26 - 2743: 5,31 - 2752: 5,32 - 2762: -5,32 - 2773: 6,9 - 2777: 8,0 - 2787: -8,0 - 2792: -6,9 - 2799: -5,-1 - 2802: -2,-2 - 2804: 2,-2 - 2807: 5,-1 - 2816: -5,31 - 2831: -1,24 - 2839: -1,25 - 2847: -1,26 - 2860: 0,24 - 2868: 0,25 - 2876: 0,26 - 2894: 1,24 - 2902: 1,25 - 2910: 1,26 - 2928: 5,31 - 2937: 5,32 - 2947: -5,32 - 2958: 6,9 - 2962: 8,0 - 2972: -8,0 - 2977: -6,9 - 2984: -5,-1 - 2987: -2,-2 - 2989: 2,-2 - 2992: 5,-1 - 3001: -5,31 - 3016: -1,24 - 3024: -1,25 - 3032: -1,26 - 3045: 0,24 - 3053: 0,25 - 3061: 0,26 - 3079: 1,24 - 3087: 1,25 - 3095: 1,26 - 3113: 5,31 - 3122: 5,32 - 3132: -5,32 + 2424: -5,-1 + 2427: -2,-2 + 2429: 2,-2 + 2432: 5,-1 + 2445: -1,24 + 2453: -1,25 + 2461: -1,26 + 2472: 0,24 + 2480: 0,25 + 2488: 0,26 + 2504: 1,24 + 2512: 1,25 + 2520: 1,26 + 2538: 8,0 + 2548: -8,0 + 2555: -5,-1 + 2558: -2,-2 + 2560: 2,-2 + 2563: 5,-1 + 2576: -1,24 + 2584: -1,25 + 2592: -1,26 + 2603: 0,24 + 2611: 0,25 + 2619: 0,26 + 2635: 1,24 + 2643: 1,25 + 2651: 1,26 + 2734: 8,0 + 2744: -8,0 + 2751: -5,-1 + 2754: -2,-2 + 2756: 2,-2 + 2759: 5,-1 + 2772: -1,24 + 2780: -1,25 + 2788: -1,26 + 2799: 0,24 + 2807: 0,25 + 2815: 0,26 + 2831: 1,24 + 2839: 1,25 + 2847: 1,26 + 2865: 8,0 + 2875: -8,0 + 2882: -5,-1 + 2885: -2,-2 + 2887: 2,-2 + 2890: 5,-1 + 2903: -1,24 + 2911: -1,25 + 2919: -1,26 + 2930: 0,24 + 2938: 0,25 + 2946: 0,26 + 2962: 1,24 + 2970: 1,25 + 2978: 1,26 + 2996: 8,0 + 3006: -8,0 + 3013: -5,-1 + 3016: -2,-2 + 3018: 2,-2 + 3021: 5,-1 + 3034: -1,24 + 3042: -1,25 + 3050: -1,26 + 3061: 0,24 + 3069: 0,25 + 3077: 0,26 + 3093: 1,24 + 3101: 1,25 + 3109: 1,26 - node: id: LatticeEdgeS decals: - 327: 8,8 - 339: -8,8 - 363: 0,24 - 371: 7,19 - 374: -7,19 - 383: 6,9 - 388: 6,10 - 396: -6,9 - 401: -6,10 - 406: -1,26 - 414: -1,27 - 417: 1,26 - 425: 1,27 - 428: 0,26 - 433: 0,25 - 441: 6,9 - 446: 6,10 - 454: 8,8 - 466: -8,8 - 469: -6,9 - 474: -6,10 - 485: -7,19 - 488: -1,26 - 496: -1,27 - 499: 0,24 - 507: 0,25 - 515: 0,26 - 520: 1,26 - 528: 1,27 - 531: 7,19 - 557: -5,32 - 560: 5,32 - 620: 8,8 - 632: -8,8 - 647: -1,27 - 658: 1,27 - 665: 5,32 - 668: -5,32 - 697: 1,26 - 705: -1,26 - 713: 0,25 - 721: 0,24 - 729: 0,26 - 745: -6,9 - 750: 6,9 - 797: 6,9 - 802: 8,8 - 805: -8,8 - 808: -6,9 - 825: -1,26 - 833: -1,27 - 840: 0,24 - 848: 0,25 - 856: 0,26 - 865: 1,26 - 873: 1,27 - 880: 5,32 - 883: -5,32 - 896: 6,9 - 907: -6,9 - 924: -1,26 - 932: -1,27 - 939: 0,24 - 947: 0,25 - 955: 0,26 - 964: 1,26 - 972: 1,27 - 979: 5,32 - 982: -5,32 - 1009: -9,7 - 1012: 9,7 - 1023: 6,9 - 1031: 9,7 - 1034: -9,7 - 1040: -6,9 - 1057: -1,27 - 1068: 1,27 - 1119: -5,32 - 1122: 5,32 - 1174: 1,26 - 1182: -1,26 - 1190: 0,26 - 1195: -1,24 - 1203: -1,25 - 1211: 1,24 - 1219: 1,25 - 1227: 0,24 - 1235: 0,25 - 1243: 6,9 - 1251: 9,7 - 1254: -9,7 - 1260: -6,9 - 1277: -1,24 - 1285: -1,25 - 1293: -1,26 - 1301: -1,27 - 1308: 0,24 - 1316: 0,25 - 1324: 0,26 - 1333: 1,24 - 1341: 1,25 - 1349: 1,26 - 1357: 1,27 - 1364: 5,32 - 1367: -5,32 - 1370: 6,9 - 1378: 9,7 - 1381: -9,7 - 1387: -6,9 - 1404: -1,24 - 1412: -1,25 - 1420: -1,26 - 1428: -1,27 - 1435: 0,24 - 1443: 0,25 - 1451: 0,26 - 1460: 1,24 - 1468: 1,25 - 1476: 1,26 - 1484: 1,27 - 1491: 5,32 - 1494: -5,32 - 1497: 6,9 - 1505: 9,7 - 1508: -9,7 - 1514: -6,9 - 1531: -1,24 - 1539: -1,25 - 1547: -1,26 - 1555: -1,27 - 1562: 0,24 - 1570: 0,25 - 1578: 0,26 - 1587: 1,24 - 1595: 1,25 - 1603: 1,26 - 1611: 1,27 - 1618: 5,32 - 1621: -5,32 - 1624: 6,9 - 1632: 9,7 - 1635: -9,7 - 1641: -6,9 - 1658: -1,24 - 1666: -1,25 - 1674: -1,26 - 1682: -1,27 - 1689: 0,24 - 1697: 0,25 - 1705: 0,26 - 1714: 1,24 - 1722: 1,25 - 1730: 1,26 - 1738: 1,27 - 1745: 5,32 - 1748: -5,32 - 1751: 6,9 - 1759: 9,7 - 1762: -9,7 - 1768: -6,9 - 1785: -1,24 - 1793: -1,25 - 1801: -1,26 - 1809: -1,27 - 1816: 0,24 - 1824: 0,25 - 1832: 0,26 - 1841: 1,24 - 1849: 1,25 + 320: 8,8 + 332: -8,8 + 350: 0,24 + 358: 7,19 + 361: -7,19 + 370: 6,10 + 378: -6,10 + 383: -1,26 + 391: -1,27 + 394: 1,26 + 402: 1,27 + 405: 0,26 + 410: 0,25 + 418: 6,10 + 426: 8,8 + 438: -8,8 + 441: -6,10 + 452: -7,19 + 455: -1,26 + 463: -1,27 + 466: 0,24 + 474: 0,25 + 482: 0,26 + 487: 1,26 + 495: 1,27 + 498: 7,19 + 569: 8,8 + 581: -8,8 + 596: -1,27 + 603: 1,27 + 634: 1,26 + 642: -1,26 + 650: 0,25 + 658: 0,24 + 666: 0,26 + 722: 8,8 + 725: -8,8 + 740: -1,26 + 748: -1,27 + 753: 0,24 + 761: 0,25 + 769: 0,26 + 776: 1,26 + 784: 1,27 + 817: -1,26 + 825: -1,27 + 830: 0,24 + 838: 0,25 + 846: 0,26 + 853: 1,26 + 861: 1,27 + 890: -9,7 + 893: 9,7 + 904: 9,7 + 907: -9,7 + 925: -1,27 + 932: 1,27 + 1024: 1,26 + 1032: -1,26 + 1040: 0,26 + 1045: -1,24 + 1053: -1,25 + 1061: 1,24 + 1069: 1,25 + 1077: 0,24 + 1085: 0,25 + 1096: 9,7 + 1099: -9,7 + 1117: -1,24 + 1125: -1,25 + 1133: -1,26 + 1141: -1,27 + 1146: 0,24 + 1154: 0,25 + 1162: 0,26 + 1169: 1,24 + 1177: 1,25 + 1185: 1,26 + 1193: 1,27 + 1201: 9,7 + 1204: -9,7 + 1222: -1,24 + 1230: -1,25 + 1238: -1,26 + 1246: -1,27 + 1251: 0,24 + 1259: 0,25 + 1267: 0,26 + 1274: 1,24 + 1282: 1,25 + 1290: 1,26 + 1298: 1,27 + 1306: 9,7 + 1309: -9,7 + 1327: -1,24 + 1335: -1,25 + 1343: -1,26 + 1351: -1,27 + 1356: 0,24 + 1364: 0,25 + 1372: 0,26 + 1379: 1,24 + 1387: 1,25 + 1395: 1,26 + 1403: 1,27 + 1411: 9,7 + 1414: -9,7 + 1432: -1,24 + 1440: -1,25 + 1448: -1,26 + 1456: -1,27 + 1461: 0,24 + 1469: 0,25 + 1477: 0,26 + 1484: 1,24 + 1492: 1,25 + 1500: 1,26 + 1508: 1,27 + 1516: 9,7 + 1519: -9,7 + 1537: -1,24 + 1545: -1,25 + 1553: -1,26 + 1561: -1,27 + 1566: 0,24 + 1574: 0,25 + 1582: 0,26 + 1589: 1,24 + 1597: 1,25 + 1605: 1,26 + 1613: 1,27 + 1621: 9,7 + 1624: -9,7 + 1642: -1,24 + 1650: -1,25 + 1658: -1,26 + 1666: -1,27 + 1671: 0,24 + 1679: 0,25 + 1687: 0,26 + 1694: 1,24 + 1702: 1,25 + 1710: 1,26 + 1718: 1,27 + 1755: 9,7 + 1758: -9,7 + 1787: -1,24 + 1795: -1,25 + 1806: 0,24 + 1814: 0,25 + 1825: 1,24 + 1833: 1,25 + 1849: -1,26 1857: 1,26 - 1865: 1,27 - 1872: -5,31 - 1877: -5,32 - 1880: 5,31 - 1885: 5,32 - 1888: 6,9 - 1896: 9,7 - 1899: -9,7 - 1905: -6,9 - 1922: -5,31 - 1927: -1,24 - 1935: -1,25 - 1943: -1,26 - 1951: -1,27 - 1958: 0,24 - 1966: 0,25 - 1974: 0,26 - 1983: 1,24 - 1991: 1,25 - 1999: 1,26 - 2007: 1,27 - 2014: 5,31 - 2019: 5,32 - 2022: -5,32 - 2054: 6,9 - 2062: 9,7 - 2065: -9,7 - 2071: -6,9 - 2092: -5,31 - 2104: -1,24 - 2112: -1,25 - 2125: 0,24 - 2133: 0,25 - 2146: 1,24 - 2154: 1,25 - 2172: 5,31 - 2177: 5,32 - 2180: -5,32 - 2183: -1,26 - 2191: 1,26 - 2199: 0,27 - 2204: 0,26 - 2217: 6,9 - 2225: 9,7 - 2228: -9,7 - 2234: -6,9 - 2262: -1,24 - 2270: -1,25 - 2278: -1,26 - 2291: 0,24 - 2299: 0,25 - 2307: 0,26 - 2315: 0,27 - 2325: 1,24 - 2333: 1,25 - 2341: 1,26 - 2359: -5,33 - 2362: 5,33 - 2365: -6,31 - 2368: -5,31 - 2376: -5,32 - 2381: 6,31 - 2384: 5,31 - 2392: 5,32 - 2402: 6,9 + 1865: 0,27 + 1870: 0,26 + 1886: 9,7 + 1889: -9,7 + 1918: -1,24 + 1926: -1,25 + 1934: -1,26 + 1945: 0,24 + 1953: 0,25 + 1961: 0,26 + 1969: 0,27 + 1977: 1,24 + 1985: 1,25 + 1993: 1,26 + 2017: 9,7 + 2020: -9,7 + 2049: -1,24 + 2057: -1,25 + 2065: -1,26 + 2076: 0,24 + 2084: 0,25 + 2092: 0,26 + 2100: 0,27 + 2108: 1,24 + 2116: 1,25 + 2124: 1,26 + 2148: 9,7 + 2151: -9,7 + 2180: -1,24 + 2188: -1,25 + 2196: -1,26 + 2207: 0,24 + 2215: 0,25 + 2223: 0,26 + 2231: 0,27 + 2239: 1,24 + 2247: 1,25 + 2255: 1,26 + 2279: 9,7 + 2282: -9,7 + 2311: -1,24 + 2319: -1,25 + 2327: -1,26 + 2338: 0,24 + 2346: 0,25 + 2354: 0,26 + 2362: 0,27 + 2370: 1,24 + 2378: 1,25 + 2386: 1,26 2410: 9,7 2413: -9,7 - 2419: -6,9 - 2440: -6,31 - 2443: -5,31 - 2458: -1,24 - 2466: -1,25 - 2474: -1,26 - 2487: 0,24 - 2495: 0,25 - 2503: 0,26 - 2511: 0,27 - 2521: 1,24 - 2529: 1,25 - 2537: 1,26 - 2555: 5,31 - 2563: 6,31 - 2566: 5,32 - 2571: 5,33 - 2574: -5,32 - 2579: -5,33 - 2587: 6,9 - 2595: 9,7 - 2598: -9,7 - 2604: -6,9 - 2625: -6,31 - 2628: -5,31 - 2643: -1,24 - 2651: -1,25 - 2659: -1,26 - 2672: 0,24 - 2680: 0,25 - 2688: 0,26 - 2696: 0,27 - 2706: 1,24 - 2714: 1,25 - 2722: 1,26 - 2740: 5,31 - 2748: 6,31 - 2751: 5,32 - 2756: 5,33 - 2759: -5,32 - 2764: -5,33 - 2772: 6,9 - 2780: 9,7 - 2783: -9,7 - 2789: -6,9 - 2810: -6,31 - 2813: -5,31 - 2828: -1,24 - 2836: -1,25 - 2844: -1,26 - 2857: 0,24 - 2865: 0,25 - 2873: 0,26 - 2881: 0,27 - 2891: 1,24 - 2899: 1,25 - 2907: 1,26 - 2925: 5,31 - 2933: 6,31 - 2936: 5,32 - 2941: 5,33 - 2944: -5,32 - 2949: -5,33 - 2957: 6,9 - 2965: 9,7 - 2968: -9,7 - 2974: -6,9 - 2995: -6,31 - 2998: -5,31 - 3013: -1,24 - 3021: -1,25 - 3029: -1,26 - 3042: 0,24 - 3050: 0,25 - 3058: 0,26 - 3066: 0,27 - 3076: 1,24 - 3084: 1,25 - 3092: 1,26 - 3110: 5,31 - 3118: 6,31 - 3121: 5,32 - 3126: 5,33 - 3129: -5,32 - 3134: -5,33 + 2442: -1,24 + 2450: -1,25 + 2458: -1,26 + 2469: 0,24 + 2477: 0,25 + 2485: 0,26 + 2493: 0,27 + 2501: 1,24 + 2509: 1,25 + 2517: 1,26 + 2541: 9,7 + 2544: -9,7 + 2573: -1,24 + 2581: -1,25 + 2589: -1,26 + 2600: 0,24 + 2608: 0,25 + 2616: 0,26 + 2624: 0,27 + 2632: 1,24 + 2640: 1,25 + 2648: 1,26 + 2737: 9,7 + 2740: -9,7 + 2769: -1,24 + 2777: -1,25 + 2785: -1,26 + 2796: 0,24 + 2804: 0,25 + 2812: 0,26 + 2820: 0,27 + 2828: 1,24 + 2836: 1,25 + 2844: 1,26 + 2868: 9,7 + 2871: -9,7 + 2900: -1,24 + 2908: -1,25 + 2916: -1,26 + 2927: 0,24 + 2935: 0,25 + 2943: 0,26 + 2951: 0,27 + 2959: 1,24 + 2967: 1,25 + 2975: 1,26 + 2999: 9,7 + 3002: -9,7 + 3031: -1,24 + 3039: -1,25 + 3047: -1,26 + 3058: 0,24 + 3066: 0,25 + 3074: 0,26 + 3082: 0,27 + 3090: 1,24 + 3098: 1,25 + 3106: 1,26 - node: id: LatticeEdgeW decals: - 325: 8,0 - 328: 8,8 - 331: 9,2 - 346: 5,-1 - 349: -1,29 - 351: -1,31 - 353: 0,29 - 355: 0,31 - 357: 1,29 - 359: 1,31 - 361: 7,13 - 368: 0,24 - 372: 7,19 - 381: 2,-2 - 385: 6,9 - 390: 6,10 - 411: -1,26 - 415: -1,27 - 422: 1,26 - 431: 0,26 - 438: 0,25 - 443: 6,9 - 448: 6,10 - 452: 8,0 - 455: 8,8 - 458: 9,2 - 483: 5,-1 - 493: -1,26 - 497: -1,27 - 504: 0,24 - 512: 0,25 - 518: 0,26 - 525: 1,26 - 532: 7,19 - 542: 0,31 - 544: 0,29 - 546: -1,29 - 548: 1,29 - 550: -1,31 - 552: 1,31 - 561: 5,32 - 594: 7,13 - 615: 2,-2 - 618: 8,0 - 621: 8,8 - 624: 9,2 - 642: 2,-2 - 645: 5,-1 - 648: -1,27 - 651: -1,29 - 653: -1,31 - 655: 0,29 - 657: 0,31 - 662: 1,29 - 664: 1,31 - 666: 5,32 - 702: 1,26 - 710: -1,26 - 718: 0,25 - 726: 0,24 - 732: 0,26 - 752: 6,9 - 799: 6,9 - 803: 8,8 - 820: 2,-2 - 823: 5,-1 - 830: -1,26 - 834: -1,27 - 837: -1,29 - 839: -1,31 - 845: 0,24 - 853: 0,25 - 859: 0,26 - 862: 0,29 - 864: 0,31 - 870: 1,26 - 877: 1,29 - 879: 1,31 - 881: 5,32 - 890: 8,0 - 898: 6,9 + 318: 8,0 + 321: 8,8 + 324: 9,2 + 339: 5,-1 + 342: -1,31 + 344: 0,31 + 346: 1,31 + 348: 7,13 + 355: 0,24 + 359: 7,19 + 368: 2,-2 + 372: 6,10 + 388: -1,26 + 392: -1,27 + 399: 1,26 + 408: 0,26 + 415: 0,25 + 420: 6,10 + 424: 8,0 + 427: 8,8 + 430: 9,2 + 450: 5,-1 + 460: -1,26 + 464: -1,27 + 471: 0,24 + 479: 0,25 + 485: 0,26 + 492: 1,26 + 499: 7,19 + 506: 0,31 + 508: -1,31 + 510: 1,31 + 543: 7,13 + 564: 2,-2 + 567: 8,0 + 570: 8,8 + 573: 9,2 + 591: 2,-2 + 594: 5,-1 + 597: -1,27 + 600: -1,31 + 602: 0,31 + 607: 1,31 + 639: 1,26 + 647: -1,26 + 655: 0,25 + 663: 0,24 + 669: 0,26 + 723: 8,8 + 735: 2,-2 + 738: 5,-1 + 745: -1,26 + 749: -1,27 + 752: -1,31 + 758: 0,24 + 766: 0,25 + 772: 0,26 + 775: 0,31 + 781: 1,26 + 788: 1,31 + 793: 8,0 + 800: 8,0 + 812: 2,-2 + 815: 5,-1 + 822: -1,26 + 826: -1,27 + 829: -1,31 + 835: 0,24 + 843: 0,25 + 849: 0,26 + 852: 0,31 + 858: 1,26 + 865: 1,31 + 894: 9,7 902: 8,0 - 919: 2,-2 - 922: 5,-1 - 929: -1,26 - 933: -1,27 - 936: -1,29 - 938: -1,31 - 944: 0,24 - 952: 0,25 - 958: 0,26 - 961: 0,29 - 963: 0,31 - 969: 1,26 - 976: 1,29 - 978: 1,31 - 980: 5,32 - 1013: 9,7 - 1025: 6,9 - 1029: 8,0 - 1032: 9,7 - 1052: 2,-2 - 1055: 5,-1 - 1058: -1,27 - 1061: -1,29 - 1063: -1,31 - 1065: 0,29 - 1067: 0,31 - 1072: 1,29 - 1074: 1,31 - 1123: 5,32 - 1179: 1,26 - 1187: -1,26 - 1193: 0,26 - 1200: -1,24 - 1208: -1,25 - 1216: 1,24 - 1224: 1,25 - 1232: 0,24 - 1240: 0,25 - 1245: 6,9 - 1249: 8,0 - 1252: 9,7 - 1272: 2,-2 - 1275: 5,-1 - 1282: -1,24 - 1290: -1,25 - 1298: -1,26 - 1302: -1,27 - 1305: -1,29 - 1307: -1,31 - 1313: 0,24 - 1321: 0,25 - 1327: 0,26 - 1330: 0,29 - 1332: 0,31 - 1338: 1,24 - 1346: 1,25 - 1354: 1,26 - 1361: 1,29 - 1363: 1,31 - 1365: 5,32 - 1372: 6,9 - 1376: 8,0 - 1379: 9,7 - 1399: 2,-2 - 1402: 5,-1 - 1409: -1,24 - 1417: -1,25 - 1425: -1,26 - 1429: -1,27 - 1432: -1,29 - 1434: -1,31 - 1440: 0,24 - 1448: 0,25 - 1454: 0,26 - 1457: 0,29 - 1459: 0,31 - 1465: 1,24 - 1473: 1,25 - 1481: 1,26 - 1488: 1,29 - 1490: 1,31 - 1492: 5,32 - 1499: 6,9 - 1503: 8,0 - 1506: 9,7 - 1526: 2,-2 - 1529: 5,-1 - 1536: -1,24 - 1544: -1,25 - 1552: -1,26 - 1556: -1,27 - 1559: -1,29 - 1561: -1,31 - 1567: 0,24 - 1575: 0,25 - 1581: 0,26 - 1584: 0,29 - 1586: 0,31 - 1592: 1,24 - 1600: 1,25 - 1608: 1,26 - 1615: 1,29 + 905: 9,7 + 920: 2,-2 + 923: 5,-1 + 926: -1,27 + 929: -1,31 + 931: 0,31 + 936: 1,31 + 1029: 1,26 + 1037: -1,26 + 1043: 0,26 + 1050: -1,24 + 1058: -1,25 + 1066: 1,24 + 1074: 1,25 + 1082: 0,24 + 1090: 0,25 + 1094: 8,0 + 1097: 9,7 + 1112: 2,-2 + 1115: 5,-1 + 1122: -1,24 + 1130: -1,25 + 1138: -1,26 + 1142: -1,27 + 1145: -1,31 + 1151: 0,24 + 1159: 0,25 + 1165: 0,26 + 1168: 0,31 + 1174: 1,24 + 1182: 1,25 + 1190: 1,26 + 1197: 1,31 + 1199: 8,0 + 1202: 9,7 + 1217: 2,-2 + 1220: 5,-1 + 1227: -1,24 + 1235: -1,25 + 1243: -1,26 + 1247: -1,27 + 1250: -1,31 + 1256: 0,24 + 1264: 0,25 + 1270: 0,26 + 1273: 0,31 + 1279: 1,24 + 1287: 1,25 + 1295: 1,26 + 1302: 1,31 + 1304: 8,0 + 1307: 9,7 + 1322: 2,-2 + 1325: 5,-1 + 1332: -1,24 + 1340: -1,25 + 1348: -1,26 + 1352: -1,27 + 1355: -1,31 + 1361: 0,24 + 1369: 0,25 + 1375: 0,26 + 1378: 0,31 + 1384: 1,24 + 1392: 1,25 + 1400: 1,26 + 1407: 1,31 + 1409: 8,0 + 1412: 9,7 + 1427: 2,-2 + 1430: 5,-1 + 1437: -1,24 + 1445: -1,25 + 1453: -1,26 + 1457: -1,27 + 1460: -1,31 + 1466: 0,24 + 1474: 0,25 + 1480: 0,26 + 1483: 0,31 + 1489: 1,24 + 1497: 1,25 + 1505: 1,26 + 1512: 1,31 + 1514: 8,0 + 1517: 9,7 + 1532: 2,-2 + 1535: 5,-1 + 1542: -1,24 + 1550: -1,25 + 1558: -1,26 + 1562: -1,27 + 1565: -1,31 + 1571: 0,24 + 1579: 0,25 + 1585: 0,26 + 1588: 0,31 + 1594: 1,24 + 1602: 1,25 + 1610: 1,26 1617: 1,31 - 1619: 5,32 - 1626: 6,9 - 1630: 8,0 - 1633: 9,7 - 1653: 2,-2 - 1656: 5,-1 - 1663: -1,24 - 1671: -1,25 - 1679: -1,26 - 1683: -1,27 - 1686: -1,29 - 1688: -1,31 - 1694: 0,24 - 1702: 0,25 - 1708: 0,26 - 1711: 0,29 - 1713: 0,31 - 1719: 1,24 - 1727: 1,25 - 1735: 1,26 - 1742: 1,29 - 1744: 1,31 - 1746: 5,32 - 1753: 6,9 - 1757: 8,0 - 1760: 9,7 - 1780: 2,-2 - 1783: 5,-1 - 1790: -1,24 - 1798: -1,25 - 1806: -1,26 - 1810: -1,27 - 1813: -1,29 - 1815: -1,31 - 1821: 0,24 - 1829: 0,25 - 1835: 0,26 - 1838: 0,29 - 1840: 0,31 - 1846: 1,24 - 1854: 1,25 + 1619: 8,0 + 1622: 9,7 + 1637: 2,-2 + 1640: 5,-1 + 1647: -1,24 + 1655: -1,25 + 1663: -1,26 + 1667: -1,27 + 1670: -1,31 + 1676: 0,24 + 1684: 0,25 + 1690: 0,26 + 1693: 0,31 + 1699: 1,24 + 1707: 1,25 + 1715: 1,26 + 1722: 1,31 + 1753: 8,0 + 1756: 9,7 + 1775: 2,-2 + 1778: 5,-1 + 1792: -1,24 + 1800: -1,25 + 1804: -1,31 + 1811: 0,24 + 1819: 0,25 + 1823: 0,31 + 1830: 1,24 + 1838: 1,25 + 1842: 1,31 + 1854: -1,26 1862: 1,26 - 1869: 1,29 - 1871: 1,31 - 1882: 5,31 - 1886: 5,32 - 1890: 6,9 - 1894: 8,0 - 1897: 9,7 - 1917: 2,-2 - 1920: 5,-1 - 1932: -1,24 - 1940: -1,25 - 1948: -1,26 - 1952: -1,27 - 1955: -1,29 - 1957: -1,31 - 1963: 0,24 - 1971: 0,25 - 1977: 0,26 - 1980: 0,29 - 1982: 0,31 - 1988: 1,24 - 1996: 1,25 - 2004: 1,26 - 2011: 1,29 - 2013: 1,31 - 2016: 5,31 - 2020: 5,32 - 2056: 6,9 - 2060: 8,0 - 2063: 9,7 - 2087: 2,-2 - 2090: 5,-1 - 2109: -1,24 - 2117: -1,25 - 2121: -1,29 - 2123: -1,31 - 2130: 0,24 - 2138: 0,25 - 2142: 0,29 - 2144: 0,31 - 2151: 1,24 - 2159: 1,25 - 2163: 1,29 - 2165: 1,31 - 2174: 5,31 - 2178: 5,32 - 2188: -1,26 - 2196: 1,26 - 2202: 0,27 - 2209: 0,26 - 2219: 6,9 - 2223: 8,0 - 2226: 9,7 - 2250: 2,-2 - 2253: 5,-1 - 2267: -1,24 - 2275: -1,25 - 2283: -1,26 - 2287: -1,29 - 2289: -1,31 - 2296: 0,24 - 2304: 0,25 - 2312: 0,26 - 2318: 0,27 - 2321: 0,29 - 2323: 0,31 - 2330: 1,24 - 2338: 1,25 - 2346: 1,26 - 2350: 1,29 - 2352: 1,31 - 2363: 5,33 - 2373: -5,31 - 2382: 6,31 - 2389: 5,31 - 2394: 5,32 - 2404: 6,9 + 1868: 0,27 + 1875: 0,26 + 1884: 8,0 + 1887: 9,7 + 1906: 2,-2 + 1909: 5,-1 + 1923: -1,24 + 1931: -1,25 + 1939: -1,26 + 1943: -1,31 + 1950: 0,24 + 1958: 0,25 + 1966: 0,26 + 1972: 0,27 + 1975: 0,31 + 1982: 1,24 + 1990: 1,25 + 1998: 1,26 + 2002: 1,31 + 2015: 8,0 + 2018: 9,7 + 2037: 2,-2 + 2040: 5,-1 + 2054: -1,24 + 2062: -1,25 + 2070: -1,26 + 2074: -1,31 + 2081: 0,24 + 2089: 0,25 + 2097: 0,26 + 2103: 0,27 + 2106: 0,31 + 2113: 1,24 + 2121: 1,25 + 2129: 1,26 + 2133: 1,31 + 2146: 8,0 + 2149: 9,7 + 2168: 2,-2 + 2171: 5,-1 + 2185: -1,24 + 2193: -1,25 + 2201: -1,26 + 2205: -1,31 + 2212: 0,24 + 2220: 0,25 + 2228: 0,26 + 2234: 0,27 + 2237: 0,31 + 2244: 1,24 + 2252: 1,25 + 2260: 1,26 + 2264: 1,31 + 2277: 8,0 + 2280: 9,7 + 2299: 2,-2 + 2302: 5,-1 + 2316: -1,24 + 2324: -1,25 + 2332: -1,26 + 2336: -1,31 + 2343: 0,24 + 2351: 0,25 + 2359: 0,26 + 2365: 0,27 + 2368: 0,31 + 2375: 1,24 + 2383: 1,25 + 2391: 1,26 + 2395: 1,31 2408: 8,0 2411: 9,7 - 2435: 2,-2 - 2438: 5,-1 - 2448: -5,31 - 2463: -1,24 - 2471: -1,25 - 2479: -1,26 - 2483: -1,29 - 2485: -1,31 - 2492: 0,24 - 2500: 0,25 - 2508: 0,26 - 2514: 0,27 - 2517: 0,29 - 2519: 0,31 - 2526: 1,24 - 2534: 1,25 - 2542: 1,26 - 2546: 1,29 - 2548: 1,31 - 2560: 5,31 - 2564: 6,31 - 2568: 5,32 - 2572: 5,33 - 2589: 6,9 - 2593: 8,0 - 2596: 9,7 - 2620: 2,-2 - 2623: 5,-1 - 2633: -5,31 - 2648: -1,24 - 2656: -1,25 - 2664: -1,26 - 2668: -1,29 - 2670: -1,31 - 2677: 0,24 - 2685: 0,25 - 2693: 0,26 - 2699: 0,27 - 2702: 0,29 - 2704: 0,31 - 2711: 1,24 - 2719: 1,25 - 2727: 1,26 - 2731: 1,29 - 2733: 1,31 - 2745: 5,31 - 2749: 6,31 - 2753: 5,32 - 2757: 5,33 - 2774: 6,9 - 2778: 8,0 - 2781: 9,7 - 2805: 2,-2 - 2808: 5,-1 - 2818: -5,31 - 2833: -1,24 - 2841: -1,25 - 2849: -1,26 - 2853: -1,29 - 2855: -1,31 - 2862: 0,24 - 2870: 0,25 - 2878: 0,26 - 2884: 0,27 - 2887: 0,29 - 2889: 0,31 - 2896: 1,24 - 2904: 1,25 - 2912: 1,26 - 2916: 1,29 - 2918: 1,31 - 2930: 5,31 - 2934: 6,31 - 2938: 5,32 - 2942: 5,33 - 2959: 6,9 - 2963: 8,0 - 2966: 9,7 - 2990: 2,-2 - 2993: 5,-1 - 3003: -5,31 - 3018: -1,24 - 3026: -1,25 - 3034: -1,26 - 3038: -1,29 - 3040: -1,31 - 3047: 0,24 - 3055: 0,25 - 3063: 0,26 - 3069: 0,27 - 3072: 0,29 - 3074: 0,31 - 3081: 1,24 - 3089: 1,25 - 3097: 1,26 - 3101: 1,29 - 3103: 1,31 - 3115: 5,31 - 3119: 6,31 - 3123: 5,32 - 3127: 5,33 + 2430: 2,-2 + 2433: 5,-1 + 2447: -1,24 + 2455: -1,25 + 2463: -1,26 + 2467: -1,31 + 2474: 0,24 + 2482: 0,25 + 2490: 0,26 + 2496: 0,27 + 2499: 0,31 + 2506: 1,24 + 2514: 1,25 + 2522: 1,26 + 2526: 1,31 + 2539: 8,0 + 2542: 9,7 + 2561: 2,-2 + 2564: 5,-1 + 2578: -1,24 + 2586: -1,25 + 2594: -1,26 + 2598: -1,31 + 2605: 0,24 + 2613: 0,25 + 2621: 0,26 + 2627: 0,27 + 2630: 0,31 + 2637: 1,24 + 2645: 1,25 + 2653: 1,26 + 2657: 1,31 + 2735: 8,0 + 2738: 9,7 + 2757: 2,-2 + 2760: 5,-1 + 2774: -1,24 + 2782: -1,25 + 2790: -1,26 + 2794: -1,31 + 2801: 0,24 + 2809: 0,25 + 2817: 0,26 + 2823: 0,27 + 2826: 0,31 + 2833: 1,24 + 2841: 1,25 + 2849: 1,26 + 2853: 1,31 + 2866: 8,0 + 2869: 9,7 + 2888: 2,-2 + 2891: 5,-1 + 2905: -1,24 + 2913: -1,25 + 2921: -1,26 + 2925: -1,31 + 2932: 0,24 + 2940: 0,25 + 2948: 0,26 + 2954: 0,27 + 2957: 0,31 + 2964: 1,24 + 2972: 1,25 + 2980: 1,26 + 2984: 1,31 + 2997: 8,0 + 3000: 9,7 + 3019: 2,-2 + 3022: 5,-1 + 3036: -1,24 + 3044: -1,25 + 3052: -1,26 + 3056: -1,31 + 3063: 0,24 + 3071: 0,25 + 3079: 0,26 + 3085: 0,27 + 3088: 0,31 + 3095: 1,24 + 3103: 1,25 + 3111: 1,26 + 3115: 1,31 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: LoadingArea decals: - 1100: 3,13 - 1101: 3,19 + 962: 3,13 + 963: 3,19 - node: angle: 4.71238898038469 rad color: '#D381C996' id: LoadingArea decals: - 1099: -3,13 - 1102: -3,19 + 961: -3,13 + 964: -3,19 - node: angle: 3.141592653589793 rad color: '#D381C996' id: MedicalTextZeta decals: - 1103: -4,6 + 965: -4,6 + - node: + color: '#D381C996' + id: Rust + decals: + 2713: 0,22 + 2714: -3,23 + 2715: -4,24 + 2716: 4,24 + 2717: 3,22 + 2718: 3,23 + 2719: 3,2 + 2720: 4,2 + 2721: 7,3 + 2722: -4,3 + 2723: -7,5 + 2724: -7,6 + 2725: -4,6 + 2726: 1,6 + 2727: 3,9 + 2728: -3,9 + - node: + color: '#FFFFFFFF' + id: Rust + decals: + 2664: -1,9 + 2665: 0,13 + 2666: -1,13 + 2667: -5,15 + 2668: -5,17 + 2669: -4,17 + 2670: -4,18 + 2671: -5,19 + 2672: 5,19 + 2673: 4,18 + 2674: 4,19 + 2675: 5,15 + 2676: 5,13 + 2677: 4,14 + 2678: 1,4 + 2679: -1,5 + 2680: -4,5 + 2681: 7,5 + 2682: 6,5 + 2683: 8,6 + 2684: -7,5 + 2685: -7,4 + 2686: -8,6 - node: angle: 6.283185307179586 rad color: '#D381C996' id: SecTextZeta decals: - 1104: 4,5 + 966: 4,5 - node: color: '#FFFFFFFF' id: TechE @@ -3043,81 +3064,81 @@ entities: 78: 1,1 79: 1,0 80: 1,-1 - 169: 3,3 - 170: 3,2 - 171: 3,1 + 166: 3,3 + 167: 3,2 + 168: 3,1 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: TechNE decals: - 578: -4,27 + 527: -4,27 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechNE decals: - 583: 4,27 + 532: 4,27 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: TechS decals: - 1005: 4,23 - 1006: 4,24 - 1007: 4,25 - 1008: 4,26 - 1137: 1,21 - 1138: 1,20 + 886: 4,23 + 887: 4,24 + 888: 4,25 + 889: 4,26 + 993: 1,21 + 994: 1,20 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: TechS decals: - 579: -3,27 - 582: 3,27 - 1153: 0,22 + 528: -3,27 + 531: 3,27 + 1003: 0,22 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: TechS decals: - 1002: -4,23 - 1003: -4,24 - 1004: -4,25 - 1139: -1,21 - 1140: -1,20 + 883: -4,23 + 884: -4,24 + 885: -4,25 + 995: -1,21 + 996: -1,20 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechS decals: - 1133: -3,22 - 1134: 3,22 + 989: -3,22 + 990: 3,22 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: TechSE decals: - 1136: 1,22 + 992: 1,22 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: TechSE decals: - 1135: -1,22 + 991: -1,22 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: TechSE decals: - 581: -4,22 + 530: -4,22 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechSE decals: - 584: 4,22 + 533: 4,22 - node: color: '#FFFFFFFF' id: TechW @@ -3125,188 +3146,166 @@ entities: 75: -1,-1 76: -1,0 77: -1,1 - 166: 5,3 - 167: 5,2 - 168: 5,1 + 163: 5,3 + 164: 5,2 + 165: 5,1 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: TechW decals: - 553: -4,18 - 554: -3,18 - 555: 3,18 - 556: 4,18 - 587: 1,19 - 588: 0,19 - 589: -1,19 - 590: 6,18 - 736: 5,18 - 765: -4,18 - 766: -5,18 + 511: -4,18 + 512: -3,18 + 513: 3,18 + 514: 4,18 + 536: 1,19 + 537: 0,19 + 538: -1,19 + 539: 6,18 + 673: 5,18 + 692: -4,18 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: TechW decals: - 592: -3,9 - 1020: -3,10 + 541: -3,9 + 898: -3,10 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: TechW decals: - 759: -5,14 - 760: -4,14 - 761: -3,14 - 762: 4,14 - 763: 3,14 - 764: 5,14 + 686: -5,14 + 687: -4,14 + 688: -3,14 + 689: 4,14 + 690: 3,14 + 691: 5,14 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechW decals: - 580: -4,26 - 591: 3,9 - 1021: 3,10 - - node: - color: '#D381C996' - id: WarnCornerGreyscaleNE - decals: - 535: 4,33 + 529: -4,26 + 540: 3,9 + 899: 3,10 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: WarnCornerGreyscaleNE decals: - 536: -4,33 - 540: -6,23 - 738: -7,19 - 741: -7,18 - 1015: -6,23 - 1016: -4,33 - 1079: 3,20 - 1080: 3,20 - 1083: -5,20 - 1084: -5,20 - 1143: -4,33 - 1144: -4,33 - 1145: -3,33 - 1146: -3,33 + 504: -6,23 + 675: -7,19 + 678: -7,18 + 896: -6,23 + 941: 3,20 + 942: 3,20 + 945: -5,20 + 946: -5,20 - node: angle: 3.141592653589793 rad color: '#D381C996' id: WarnCornerGreyscaleNE decals: - 739: -7,13 - 742: -7,14 - 755: -6,10 - 892: -9,1 - 893: -9,2 - 1093: -5,12 - 1094: -5,12 + 676: -7,13 + 679: -7,14 + 682: -6,10 + 795: -9,1 + 796: -9,2 + 955: -5,12 + 956: -5,12 - node: angle: 4.71238898038469 rad color: '#D381C996' id: WarnCornerGreyscaleNE decals: - 740: 7,13 - 743: 7,14 - 756: 6,10 - 894: 9,1 - 895: 9,2 - 1022: 9,1 - 1077: 5,12 - 1078: 5,12 - 1095: -3,12 - 1096: -3,12 + 677: 7,13 + 680: 7,14 + 683: 6,10 + 797: 9,1 + 798: 9,2 + 900: 9,1 + 939: 5,12 + 940: 5,12 + 957: -3,12 + 958: -3,12 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnCornerGreyscaleNE decals: - 539: 6,23 - 737: 7,19 - 744: 7,18 - 1017: 6,23 - 1018: 4,33 - 1081: 5,20 - 1082: 5,20 - 1085: -3,20 - 1086: -3,20 - 1141: 4,33 - 1142: 4,33 + 503: 6,23 + 674: 7,19 + 681: 7,18 + 897: 6,23 + 943: 5,20 + 944: 5,20 + 947: -3,20 + 948: -3,20 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: WarnCornerGreyscaleNW decals: - 1075: 3,12 - 1076: 3,12 + 937: 3,12 + 938: 3,12 - node: angle: 4.71238898038469 rad color: '#D381C996' id: WarnCornerSmallGreyscaleNE decals: - 1113: 5,14 - 1114: 5,14 + 975: 5,14 + 976: 5,14 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnCornerSmallGreyscaleNE decals: - 1115: 5,18 - 1116: 5,18 + 977: 5,18 + 978: 5,18 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnCornerSmallGreyscaleSW decals: - 1117: -5,14 - 1118: -5,14 + 979: -5,14 + 980: -5,14 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnCornerSmallNE decals: - 691: -5,15 - 696: 3,15 + 628: -5,15 + 633: 3,15 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnCornerSmallNW decals: - 692: -3,15 - 693: 5,15 + 629: -3,15 + 630: 5,15 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnCornerSmallSE decals: - 690: -5,17 - 695: 3,17 + 627: -5,17 + 632: 3,17 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnCornerSmallSW decals: - 689: -3,17 - 694: 5,17 - - node: - color: '#D381C996' - id: WarnEndGreyscaleN - decals: - 127: 0,0 - 128: 0,0 - 129: 0,0 - 534: 2,33 + 626: -3,17 + 631: 5,17 - node: - angle: 6.283185307179586 rad color: '#D381C996' id: WarnEndGreyscaleN decals: - 1019: 2,33 + 124: 0,0 + 125: 0,0 + 126: 0,0 - node: color: '#EFB34196' id: WarnEndN @@ -3317,8 +3316,8 @@ entities: color: '#D381C996' id: WarnFull decals: - 570: -4,16 - 571: 4,16 + 521: -4,16 + 522: 4,16 - node: color: '#D381C996' id: WarnFullGreyscale @@ -3332,37 +3331,37 @@ entities: color: '#D381C996' id: WarnLineE decals: - 679: 0,8 + 616: 0,8 - node: angle: 3.141592653589793 rad color: '#D381C996' id: WarnLineE decals: - 676: 2,19 - 677: -2,19 - 1166: -2,9 - 1167: -2,9 - 1172: 2,9 - 1173: 2,9 + 613: 2,19 + 614: -2,19 + 1016: -2,9 + 1017: -2,9 + 1022: 2,9 + 1023: 2,9 - node: angle: 4.71238898038469 rad color: '#D381C996' id: WarnLineE decals: - 680: 0,8 + 617: 0,8 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnLineE decals: - 675: 2,19 - 678: -2,19 - 682: 3,16 - 687: -5,16 - 1168: 2,9 - 1169: 2,9 - 1170: -2,9 - 1171: -2,9 + 612: 2,19 + 615: -2,19 + 619: 3,16 + 624: -5,16 + 1018: 2,9 + 1019: 2,9 + 1020: -2,9 + 1021: -2,9 - node: color: '#EFB34196' id: WarnLineE @@ -3372,133 +3371,130 @@ entities: 34: 2,5 35: 2,5 73: 0,-1 - 152: 5,5 - 153: 5,5 - 184: -6,5 - 185: -6,5 - 269: 6,20 - 278: 5,29 - 279: 5,28 - 293: 5,30 - 300: 9,6 + 149: 5,5 + 150: 5,5 + 181: -6,5 + 182: -6,5 + 266: 6,20 + 275: 5,29 + 276: 5,28 + 289: 5,30 + 293: 9,6 - node: color: '#D381C996' id: WarnLineGreyscaleE decals: - 94: 0,-1 - 95: 0,-1 - 96: 0,-1 - 133: -2,5 - 134: -2,5 - 135: -2,5 - 136: 2,5 - 137: 2,5 - 138: 2,5 - 195: -6,5 - 196: -6,5 - 197: -6,5 - 198: -2,5 - 199: -2,5 - 200: -2,5 - 201: 5,5 - 202: 5,5 - 203: 5,5 - 270: 6,20 - 271: 6,20 - 280: 5,29 - 281: 5,29 - 282: 5,28 - 283: 5,28 - 284: 5,28 - 285: 5,29 - 294: 5,30 - 295: 5,30 - 296: 5,30 - 318: 9,6 - 319: 9,6 - 320: 9,6 + 91: 0,-1 + 92: 0,-1 + 93: 0,-1 + 130: -2,5 + 131: -2,5 + 132: -2,5 + 133: 2,5 + 134: 2,5 + 135: 2,5 + 192: -6,5 + 193: -6,5 + 194: -6,5 + 195: -2,5 + 196: -2,5 + 197: -2,5 + 198: 5,5 + 199: 5,5 + 200: 5,5 + 267: 6,20 + 268: 6,20 + 277: 5,29 + 278: 5,29 + 279: 5,28 + 280: 5,28 + 281: 5,28 + 282: 5,29 + 290: 5,30 + 291: 5,30 + 292: 5,30 + 311: 9,6 + 312: 9,6 + 313: 9,6 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnLineGreyscaleE decals: - 538: 4,32 - 1111: 5,19 - 1112: 5,19 + 502: 4,32 + 973: 5,19 + 974: 5,19 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 103: -1,-2 - 104: -1,-2 - 105: -1,-2 - 106: 1,-2 - 107: 1,-2 - 108: 1,-2 - 109: 1,2 - 110: 1,2 - 111: 1,2 - 112: 0,2 - 113: 0,2 - 114: 0,2 - 115: -1,2 - 116: -1,2 - 117: -1,2 - 189: -4,4 - 190: -4,4 - 191: -4,4 - 211: 4,4 - 212: 4,4 - 213: 4,4 - 214: 7,4 - 215: 7,4 - 216: 7,4 - 297: 3,33 - 298: 3,33 - 299: 3,33 - 306: -7,8 - 307: -7,8 - 308: -7,8 - 309: -6,8 - 310: -6,8 - 311: -6,8 - 312: 6,8 - 313: 6,8 - 314: 6,8 - 315: 7,8 - 316: 7,8 - 317: 7,8 + 100: -1,-2 + 101: -1,-2 + 102: -1,-2 + 103: 1,-2 + 104: 1,-2 + 105: 1,-2 + 106: 1,2 + 107: 1,2 + 108: 1,2 + 109: 0,2 + 110: 0,2 + 111: 0,2 + 112: -1,2 + 113: -1,2 + 114: -1,2 + 186: -4,4 + 187: -4,4 + 188: -4,4 + 208: 4,4 + 209: 4,4 + 210: 4,4 + 211: 7,4 + 212: 7,4 + 213: 7,4 + 299: -7,8 + 300: -7,8 + 301: -7,8 + 302: -6,8 + 303: -6,8 + 304: -6,8 + 305: 6,8 + 306: 6,8 + 307: 6,8 + 308: 7,8 + 309: 7,8 + 310: 7,8 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: WarnLineGreyscaleN decals: - 537: -4,32 - 1109: -5,19 - 1110: -5,19 + 501: -4,32 + 971: -5,19 + 972: -5,19 - node: angle: 3.141592653589793 rad color: '#D381C996' id: WarnLineGreyscaleN decals: - 1091: 4,12 - 1092: 4,12 + 953: 4,12 + 954: 4,12 - node: angle: 4.71238898038469 rad color: '#D381C996' id: WarnLineGreyscaleN decals: - 1107: 5,13 - 1108: 5,13 + 969: 5,13 + 970: 5,13 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnLineGreyscaleN decals: - 1087: -4,20 - 1088: -4,20 - 1089: 4,20 - 1090: 4,20 + 949: -4,20 + 950: -4,20 + 951: 4,20 + 952: 4,20 - node: color: '#D381C996' id: WarnLineGreyscaleS @@ -3527,118 +3523,118 @@ entities: 69: 7,0 70: 7,0 71: 7,0 - 97: -1,-2 - 98: -1,-2 - 99: -1,-2 - 100: 1,-2 - 101: 1,-2 - 102: 1,-2 - 118: -1,2 - 119: -1,2 - 120: -1,2 - 121: 0,2 - 122: 0,2 - 123: 0,2 - 124: 1,2 - 125: 1,2 - 126: 1,2 - 186: -4,4 - 187: -4,4 - 188: -4,4 - 208: 4,4 - 209: 4,4 - 210: 4,4 + 94: -1,-2 + 95: -1,-2 + 96: -1,-2 + 97: 1,-2 + 98: 1,-2 + 99: 1,-2 + 115: -1,2 + 116: -1,2 + 117: -1,2 + 118: 0,2 + 119: 0,2 + 120: 0,2 + 121: 1,2 + 122: 1,2 + 123: 1,2 + 183: -4,4 + 184: -4,4 + 185: -4,4 + 205: 4,4 + 206: 4,4 + 207: 4,4 + 214: 7,4 + 215: 7,4 + 216: 7,4 217: 7,4 - 218: 7,4 - 219: 7,4 - 220: 7,4 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: WarnLineGreyscaleS decals: - 599: 6,12 - 600: 6,13 - 603: 6,12 - 604: 6,13 - 605: 6,12 - 606: 6,13 + 548: 6,12 + 549: 6,13 + 552: 6,12 + 553: 6,13 + 554: 6,12 + 555: 6,13 - node: angle: 4.71238898038469 rad color: '#D381C996' id: WarnLineGreyscaleS decals: - 601: -6,12 - 602: -6,13 - 607: -6,12 - 608: -6,13 - 609: -6,12 - 610: -6,13 + 550: -6,12 + 551: -6,13 + 556: -6,12 + 557: -6,13 + 558: -6,12 + 559: -6,13 - node: color: '#D381C996' id: WarnLineGreyscaleW decals: - 91: 0,-1 - 92: 0,-1 - 93: 0,-1 - 130: -2,5 - 131: -2,5 - 132: -2,5 - 139: 2,5 - 140: 2,5 - 141: 2,5 - 192: -6,5 - 193: -6,5 - 194: -6,5 + 88: 0,-1 + 89: 0,-1 + 90: 0,-1 + 127: -2,5 + 128: -2,5 + 129: -2,5 + 136: 2,5 + 137: 2,5 + 138: 2,5 + 189: -6,5 + 190: -6,5 + 191: -6,5 + 201: 5,5 + 202: 5,5 + 203: 5,5 204: 5,5 - 205: 5,5 - 206: 5,5 - 207: 5,5 - 272: -6,21 - 273: -6,21 - 274: -6,20 - 275: -6,20 - 286: -5,28 - 287: -5,28 - 288: -5,28 - 289: -5,29 - 290: -5,29 - 291: -5,29 - 321: -9,6 - 322: -9,6 - 323: -9,6 + 269: -6,21 + 270: -6,21 + 271: -6,20 + 272: -6,20 + 283: -5,28 + 284: -5,28 + 285: -5,28 + 286: -5,29 + 287: -5,29 + 288: -5,29 + 314: -9,6 + 315: -9,6 + 316: -9,6 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: WarnLineGreyscaleW decals: - 1097: -4,12 - 1098: -4,12 + 959: -4,12 + 960: -4,12 - node: angle: 3.141592653589793 rad color: '#D381C996' id: WarnLineGreyscaleW decals: - 734: 6,22 - 1164: 6,11 - 1165: 6,11 + 671: 6,22 + 1014: 6,11 + 1015: 6,11 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnLineGreyscaleW decals: - 735: -6,22 - 1105: -5,13 - 1106: -5,13 - 1162: -6,11 - 1163: -6,11 + 672: -6,22 + 967: -5,13 + 968: -5,13 + 1012: -6,11 + 1013: -6,11 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnLineN decals: - 683: 4,17 - 686: -4,17 + 620: 4,17 + 623: -4,17 - node: color: '#EFB34196' id: WarnLineN @@ -3667,44 +3663,44 @@ entities: 45: -4,-1 46: -7,0 47: -7,0 - 146: 4,4 - 147: 4,4 - 148: 7,4 - 149: 7,4 - 180: -4,4 - 181: -4,4 + 143: 4,4 + 144: 4,4 + 145: 7,4 + 146: 7,4 + 177: -4,4 + 178: -4,4 - node: angle: 3.141592653589793 rad color: '#D381C996' id: WarnLineS decals: - 671: -2,13 - 674: 2,13 - 994: 2,22 - 995: 2,22 - 1000: -2,22 - 1001: -2,22 - 1127: 4,31 - 1128: 4,31 - 1131: -4,31 - 1132: -4,31 + 608: -2,13 + 611: 2,13 + 875: 2,22 + 876: 2,22 + 881: -2,22 + 882: -2,22 + 983: 4,31 + 984: 4,31 + 987: -4,31 + 988: -4,31 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnLineS decals: - 672: -2,13 - 673: 2,13 - 681: 5,16 - 685: -3,16 - 996: 2,22 - 997: 2,22 - 998: -2,22 - 999: -2,22 - 1125: 4,31 - 1126: 4,31 - 1129: -4,31 - 1130: -4,31 + 609: -2,13 + 610: 2,13 + 618: 5,16 + 622: -3,16 + 877: 2,22 + 878: 2,22 + 879: -2,22 + 880: -2,22 + 981: 4,31 + 982: 4,31 + 985: -4,31 + 986: -4,31 - node: color: '#EFB34196' id: WarnLineS @@ -3714,35 +3710,35 @@ entities: 30: 2,5 31: 2,5 74: 0,-1 - 150: 5,5 - 151: 5,5 - 182: -6,5 - 183: -6,5 - 267: -6,21 - 268: -6,20 - 276: -5,29 - 277: -5,28 - 301: -9,6 + 147: 5,5 + 148: 5,5 + 179: -6,5 + 180: -6,5 + 264: -6,21 + 265: -6,20 + 273: -5,29 + 274: -5,28 + 294: -9,6 - node: angle: 3.141592653589793 rad color: '#D381C996' id: WarnLineW decals: - 985: -8,7 - 986: -8,7 - 989: 8,7 - 990: 8,7 + 866: -8,7 + 867: -8,7 + 870: 8,7 + 871: 8,7 - node: angle: 6.283185307179586 rad color: '#D381C996' id: WarnLineW decals: - 684: 4,15 - 688: -4,15 - 987: -8,7 - 988: -8,7 - 991: 8,7 - 992: 8,7 + 621: 4,15 + 625: -4,15 + 868: -8,7 + 869: -8,7 + 872: 8,7 + 873: 8,7 - node: color: '#EFB34196' id: WarnLineW @@ -3759,17 +3755,16 @@ entities: 25: 0,2 26: -1,2 27: -1,2 - 142: 4,4 - 143: 4,4 - 144: 7,4 - 145: 7,4 - 178: -4,4 - 179: -4,4 - 292: 3,33 - 302: -6,8 - 303: -7,8 - 304: 6,8 - 305: 7,8 + 139: 4,4 + 140: 4,4 + 141: 7,4 + 142: 7,4 + 175: -4,4 + 176: -4,4 + 295: -6,8 + 296: -7,8 + 297: 6,8 + 298: 7,8 - type: GridAtmosphere version: 2 data: @@ -3955,60 +3950,72 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 484 + - 502 - type: Physics canCollide: False - - uid: 6 + - uid: 5 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,33.5 + pos: -1.5,33.5 parent: 1 + - type: DeviceLinkSink + links: + - 502 - type: Physics canCollide: False - - uid: 7 + - uid: 6 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,33.5 + pos: -0.5,27.5 parent: 1 + - type: DeviceLinkSink + links: + - 502 - type: Physics canCollide: False -- proto: AAAHardpointMediumBallistic - entities: - - uid: 8 + - uid: 7 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,23.5 + rot: 3.141592653589793 rad + pos: 1.5,27.5 parent: 1 + - type: DeviceLinkSink + links: + - 502 - type: Physics canCollide: False - - uid: 9 + - uid: 8 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,23.5 + rot: 3.141592653589793 rad + pos: 2.5,33.5 parent: 1 + - type: DeviceLinkSink + links: + - 502 - type: Physics canCollide: False - - uid: 10 +- proto: AAAHardpointMediumBallistic + entities: + - uid: 9 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,33.5 + rot: 1.5707963267948966 rad + pos: 6.5,23.5 parent: 1 - type: Physics canCollide: False - - uid: 11 + - uid: 10 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,33.5 + rot: -1.5707963267948966 rad + pos: -5.5,23.5 parent: 1 - type: Physics canCollide: False - - uid: 12 + - uid: 11 components: - type: Transform rot: -1.5707963267948966 rad @@ -4016,7 +4023,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 13 + - uid: 12 components: - type: Transform rot: 1.5707963267948966 rad @@ -4026,21 +4033,21 @@ entities: canCollide: False - proto: AAAHardpointSmallBallistic entities: - - uid: 14 + - uid: 13 components: - type: Transform pos: -8.5,1.5 parent: 1 - type: Physics canCollide: False - - uid: 15 + - uid: 14 components: - type: Transform pos: 9.5,1.5 parent: 1 - type: Physics canCollide: False - - uid: 16 + - uid: 15 components: - type: Transform rot: 1.5707963267948966 rad @@ -4048,7 +4055,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 17 + - uid: 16 components: - type: Transform rot: -1.5707963267948966 rad @@ -4058,236 +4065,221 @@ entities: canCollide: False - proto: AirCanister entities: - - uid: 18 + - uid: 17 components: - type: Transform pos: 4.5,27.5 parent: 1 - proto: AirlockCommandLockedDSM entities: - - uid: 19 + - uid: 18 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 20 + - uid: 19 components: - type: Transform pos: 4.5,21.5 parent: 1 - - uid: 21 + - uid: 20 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 22 + - uid: 21 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 23 + - uid: 22 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 24 + - uid: 23 components: - type: Transform pos: -3.5,21.5 parent: 1 - - uid: 25 + - uid: 24 components: - type: Transform pos: -2.5,28.5 parent: 1 - - uid: 26 + - uid: 25 components: - type: Transform pos: 3.5,28.5 parent: 1 - - uid: 27 + - uid: 26 components: - type: Transform pos: 0.5,11.5 parent: 1 - - uid: 28 - components: - - type: Transform - pos: 0.5,20.5 - parent: 1 - proto: AirlockCommandLockedDSMHorizontal entities: - - uid: 29 + - uid: 27 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 30 + - uid: 28 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 31 + - uid: 29 components: - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 32 + - uid: 30 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 33 + - uid: 31 components: - type: Transform pos: 2.5,22.5 parent: 1 - - uid: 34 + - uid: 32 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 35 + - uid: 33 components: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 36 + - uid: 34 components: - type: Transform pos: -1.5,9.5 parent: 1 - - uid: 37 + - uid: 35 components: - type: Transform pos: -1.5,22.5 parent: 1 - - uid: 38 + - uid: 36 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 39 + - uid: 37 components: - type: Transform pos: -2.5,17.5 parent: 1 - - uid: 40 + - uid: 38 components: - type: Transform pos: 3.5,17.5 parent: 1 - proto: AirlockShuttle entities: - - uid: 41 + - uid: 39 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 42 + - uid: 40 components: - type: Transform pos: 1.5,-1.5 parent: 1 - proto: AirTankFilled entities: - - uid: 44 + - uid: 42 components: - type: Transform - parent: 43 + parent: 41 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 51 + - uid: 49 components: - type: Transform - parent: 50 + parent: 48 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 58 + - uid: 56 components: - type: Transform - parent: 57 + parent: 55 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: AlwaysPoweredStrobeLight - entities: - - uid: 64 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,25.5 - parent: 1 - - type: PointLight - color: '#FB4747FF' - proto: AtmosDeviceFanTiny entities: - - uid: 65 + - uid: 62 components: - type: Transform pos: -3.5,31.5 parent: 1 - - uid: 66 + - uid: 63 components: - type: Transform pos: 5.5,23.5 parent: 1 - - uid: 67 + - uid: 64 components: - type: Transform pos: -4.5,23.5 parent: 1 - - uid: 68 + - uid: 65 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,23.5 parent: 1 - - uid: 69 + - uid: 66 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 70 + - uid: 67 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 71 + - uid: 68 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 72 + - uid: 69 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 73 + - uid: 70 components: - type: Transform pos: 8.5,7.5 parent: 1 - - uid: 74 + - uid: 71 components: - type: Transform pos: 4.5,31.5 parent: 1 - - uid: 75 + - uid: 72 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,16.5 parent: 1 - - uid: 76 + - uid: 73 components: - type: Transform rot: 1.5707963267948966 rad @@ -4295,37 +4287,37 @@ entities: parent: 1 - proto: BaseAPC entities: - - uid: 77 + - uid: 74 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 - - uid: 78 + - uid: 75 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 1 - - uid: 79 + - uid: 76 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,21.5 parent: 1 - - uid: 80 + - uid: 77 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,21.5 parent: 1 - - uid: 81 + - uid: 78 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,14.5 parent: 1 - - uid: 82 + - uid: 79 components: - type: Transform rot: -1.5707963267948966 rad @@ -4333,7 +4325,7 @@ entities: parent: 1 - proto: BaseWeaponTurretJeong entities: - - uid: 83 + - uid: 80 components: - type: Transform rot: 3.141592653589793 rad @@ -4363,9 +4355,9 @@ entities: ents: [] - type: PointCannon linkedConsoleIds: - - 485 - linkedConsoleId: 485 - - uid: 84 + - 503 + linkedConsoleId: 503 + - uid: 81 components: - type: Transform rot: 3.141592653589793 rad @@ -4395,39 +4387,39 @@ entities: ents: [] - type: PointCannon linkedConsoleIds: - - 485 - linkedConsoleId: 485 + - 503 + linkedConsoleId: 503 - proto: Beaker entities: - - uid: 85 + - uid: 82 components: - type: Transform pos: -7.270003,4.018259 parent: 1 - type: CollisionWake enabled: False - - uid: 86 + - uid: 83 components: - type: Transform pos: -7.238753,4.143259 parent: 1 - proto: Bed entities: - - uid: 87 + - uid: 84 components: - type: Transform pos: 8.5,3.5 parent: 1 - proto: BedsheetOrange entities: - - uid: 88 + - uid: 85 components: - type: Transform pos: 8.5,3.5 parent: 1 - proto: BlastDoor entities: - - uid: 89 + - uid: 86 components: - type: Transform rot: 1.5707963267948966 rad @@ -4435,8 +4427,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 701 - - uid: 90 + - 739 + - uid: 87 components: - type: Transform rot: 1.5707963267948966 rad @@ -4444,37 +4436,37 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 700 - - uid: 91 + - 738 + - uid: 88 components: - type: Transform pos: 0.5,23.5 parent: 1 - type: DeviceLinkSink links: - - 702 - - uid: 92 + - 740 + - uid: 89 components: - type: Transform pos: 8.5,7.5 parent: 1 - type: DeviceLinkSink links: - - 708 - - uid: 93 + - 746 + - uid: 90 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 94 + - uid: 91 components: - type: Transform pos: -7.5,7.5 parent: 1 - type: DeviceLinkSink links: - - 705 - - uid: 95 + - 743 + - uid: 92 components: - type: Transform rot: -1.5707963267948966 rad @@ -4482,8 +4474,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 709 - - uid: 96 + - 747 + - uid: 93 components: - type: Transform rot: 1.5707963267948966 rad @@ -4491,8 +4483,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 699 - - uid: 97 + - 737 + - uid: 94 components: - type: Transform rot: -1.5707963267948966 rad @@ -4500,8 +4492,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 710 - - uid: 98 + - 748 + - uid: 95 components: - type: Transform rot: 1.5707963267948966 rad @@ -4509,18 +4501,18 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 711 + - 749 - proto: BlastDoorOpen entities: - - uid: 99 + - uid: 96 components: - type: Transform pos: 8.5,4.5 parent: 1 - type: DeviceLinkSink links: - - 704 - - uid: 100 + - 742 + - uid: 97 components: - type: Transform rot: 1.5707963267948966 rad @@ -4528,8 +4520,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 703 - - uid: 101 + - 741 + - uid: 98 components: - type: Transform rot: 1.5707963267948966 rad @@ -4537,8 +4529,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 703 - - uid: 102 + - 741 + - uid: 99 components: - type: Transform rot: 1.5707963267948966 rad @@ -4546,10 +4538,10 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 703 + - 741 - proto: BoriaticGeneratorEinsteinShuttle entities: - - uid: 103 + - uid: 100 components: - type: Transform pos: -3.5,16.5 @@ -4560,7 +4552,7 @@ entities: bodyType: Static missingComponents: - Explosive - - uid: 104 + - uid: 101 components: - type: Transform pos: 4.5,16.5 @@ -4573,106 +4565,119 @@ entities: - Explosive - proto: BoxTeargasGrenades entities: - - uid: 105 + - uid: 102 components: - type: Transform pos: 5.331721,3.0633063 parent: 1 - - uid: 106 + - uid: 103 components: - type: Transform pos: 5.737971,3.0789313 parent: 1 +- proto: BrokenBottle + entities: + - uid: 104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.3771772,18.39844 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 5.6377606,13.892456 + parent: 1 - proto: Brutepack entities: - - uid: 107 + - uid: 106 components: - type: Transform pos: -2.9211304,7.6591873 parent: 1 - - uid: 108 + - uid: 107 components: - type: Transform pos: -2.7023804,7.5966873 parent: 1 - proto: ButtonFrameCaution entities: - - uid: 109 + - uid: 108 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,30.5 parent: 1 - - uid: 110 + - uid: 109 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,30.5 parent: 1 - - uid: 111 + - uid: 110 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 112 + - uid: 111 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,22.5 parent: 1 - - uid: 113 + - uid: 112 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,22.5 parent: 1 - - uid: 114 + - uid: 113 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 115 + - uid: 114 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 116 + - uid: 115 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,4.5 parent: 1 - - uid: 117 + - uid: 116 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 1 - - uid: 118 + - uid: 117 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,22.5 parent: 1 - - uid: 119 + - uid: 118 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,1.5 parent: 1 - - uid: 120 + - uid: 119 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,3.5 parent: 1 - - uid: 121 + - uid: 120 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,15.5 parent: 1 - - uid: 122 + - uid: 121 components: - type: Transform rot: 1.5707963267948966 rad @@ -4680,195 +4685,200 @@ entities: parent: 1 - proto: CableApcExtension entities: + - uid: 122 + components: + - type: Transform + pos: 1.5,23.5 + parent: 1 - uid: 123 components: - type: Transform - pos: -2.5,14.5 + pos: 0.5,23.5 parent: 1 - uid: 124 components: - type: Transform - pos: 0.5,15.5 + pos: -2.5,14.5 parent: 1 - uid: 125 components: - type: Transform - pos: -4.5,2.5 + pos: 0.5,15.5 parent: 1 - uid: 126 components: - type: Transform - pos: 3.5,4.5 + pos: -4.5,2.5 parent: 1 - uid: 127 components: - type: Transform - pos: 3.5,5.5 + pos: 3.5,4.5 parent: 1 - uid: 128 components: - type: Transform - pos: 3.5,6.5 + pos: 3.5,5.5 parent: 1 - uid: 129 components: - type: Transform - pos: 3.5,7.5 + pos: 3.5,6.5 parent: 1 - uid: 130 components: - type: Transform - pos: 4.5,5.5 + pos: 3.5,7.5 parent: 1 - uid: 131 components: - type: Transform - pos: 5.5,5.5 + pos: 4.5,5.5 parent: 1 - uid: 132 components: - type: Transform - pos: 6.5,5.5 + pos: 5.5,5.5 parent: 1 - uid: 133 components: - type: Transform - pos: 7.5,5.5 + pos: 6.5,5.5 parent: 1 - uid: 134 components: - type: Transform - pos: 8.5,5.5 + pos: 7.5,5.5 parent: 1 - uid: 135 components: - type: Transform - pos: 3.5,24.5 + pos: 8.5,5.5 parent: 1 - uid: 136 components: - type: Transform - pos: -2.5,28.5 + pos: 3.5,24.5 parent: 1 - uid: 137 components: - type: Transform - pos: -2.5,4.5 + pos: -2.5,28.5 parent: 1 - uid: 138 components: - type: Transform - pos: -2.5,5.5 + pos: -2.5,4.5 parent: 1 - uid: 139 components: - type: Transform - pos: -2.5,6.5 + pos: -2.5,5.5 parent: 1 - uid: 140 components: - type: Transform - pos: -3.5,6.5 + pos: -2.5,6.5 parent: 1 - uid: 141 components: - type: Transform - pos: -2.5,3.5 + pos: -3.5,6.5 parent: 1 - uid: 142 components: - type: Transform - pos: -3.5,3.5 + pos: -2.5,3.5 parent: 1 - uid: 143 components: - type: Transform - pos: -3.5,2.5 + pos: -3.5,3.5 parent: 1 - uid: 144 components: - type: Transform - pos: -4.5,6.5 + pos: -3.5,2.5 parent: 1 - uid: 145 components: - type: Transform - pos: -4.5,5.5 + pos: -4.5,6.5 parent: 1 - uid: 146 components: - type: Transform - pos: -5.5,5.5 + pos: -4.5,5.5 parent: 1 - uid: 147 components: - type: Transform - pos: -6.5,5.5 + pos: -5.5,5.5 parent: 1 - uid: 148 components: - type: Transform - pos: -6.5,4.5 + pos: -6.5,5.5 parent: 1 - uid: 149 components: - type: Transform - pos: -7.5,4.5 + pos: -6.5,4.5 parent: 1 - uid: 150 components: - type: Transform - pos: -6.5,6.5 + pos: -7.5,4.5 parent: 1 - uid: 151 components: - type: Transform - pos: -6.5,7.5 + pos: -6.5,6.5 parent: 1 - uid: 152 components: - type: Transform - pos: -7.5,7.5 + pos: -6.5,7.5 parent: 1 - uid: 153 components: - type: Transform - pos: -6.5,3.5 + pos: -7.5,7.5 parent: 1 - uid: 154 components: - type: Transform - pos: -6.5,2.5 + pos: -6.5,3.5 parent: 1 - uid: 155 components: - type: Transform - pos: -6.5,1.5 + pos: -6.5,2.5 parent: 1 - uid: 156 components: - type: Transform - pos: -3.5,1.5 + pos: -6.5,1.5 parent: 1 - uid: 157 components: - type: Transform - pos: -3.5,0.5 + pos: -3.5,1.5 parent: 1 - uid: 158 components: - type: Transform - pos: -0.5,5.5 + pos: -3.5,0.5 parent: 1 - uid: 159 components: - type: Transform - pos: 0.5,5.5 + pos: -0.5,5.5 parent: 1 - uid: 160 components: - type: Transform - pos: -1.5,5.5 + pos: 0.5,5.5 parent: 1 - uid: 161 components: @@ -4878,27 +4888,27 @@ entities: - uid: 162 components: - type: Transform - pos: 1.5,5.5 + pos: -1.5,5.5 parent: 1 - uid: 163 components: - type: Transform - pos: 2.5,5.5 + pos: 1.5,5.5 parent: 1 - uid: 164 components: - type: Transform - pos: 0.5,4.5 + pos: 2.5,5.5 parent: 1 - uid: 165 components: - type: Transform - pos: 0.5,3.5 + pos: 0.5,4.5 parent: 1 - uid: 166 components: - type: Transform - pos: 0.5,2.5 + pos: 0.5,3.5 parent: 1 - uid: 167 components: @@ -4908,22 +4918,22 @@ entities: - uid: 168 components: - type: Transform - pos: 0.5,1.5 + pos: 0.5,2.5 parent: 1 - uid: 169 components: - type: Transform - pos: 0.5,0.5 + pos: 0.5,1.5 parent: 1 - uid: 170 components: - type: Transform - pos: 0.5,-0.5 + pos: 0.5,0.5 parent: 1 - uid: 171 components: - type: Transform - pos: 4.5,3.5 + pos: 0.5,-0.5 parent: 1 - uid: 172 components: @@ -4933,12 +4943,12 @@ entities: - uid: 173 components: - type: Transform - pos: 4.5,2.5 + pos: 4.5,3.5 parent: 1 - uid: 174 components: - type: Transform - pos: 4.5,1.5 + pos: 4.5,2.5 parent: 1 - uid: 175 components: @@ -4948,12 +4958,12 @@ entities: - uid: 176 components: - type: Transform - pos: 4.5,0.5 + pos: 4.5,1.5 parent: 1 - uid: 177 components: - type: Transform - pos: 4.5,4.5 + pos: 4.5,0.5 parent: 1 - uid: 178 components: @@ -4963,42 +4973,42 @@ entities: - uid: 179 components: - type: Transform - pos: 7.5,6.5 + pos: 4.5,4.5 parent: 1 - uid: 180 components: - type: Transform - pos: 7.5,7.5 + pos: 7.5,6.5 parent: 1 - uid: 181 components: - type: Transform - pos: 7.5,4.5 + pos: 7.5,7.5 parent: 1 - uid: 182 components: - type: Transform - pos: 7.5,3.5 + pos: 7.5,4.5 parent: 1 - uid: 183 components: - type: Transform - pos: 7.5,2.5 + pos: 7.5,3.5 parent: 1 - uid: 184 components: - type: Transform - pos: 7.5,1.5 + pos: 7.5,2.5 parent: 1 - uid: 185 components: - type: Transform - pos: 0.5,6.5 + pos: 7.5,1.5 parent: 1 - uid: 186 components: - type: Transform - pos: 0.5,7.5 + pos: 0.5,6.5 parent: 1 - uid: 187 components: @@ -5008,12 +5018,12 @@ entities: - uid: 188 components: - type: Transform - pos: -1.5,16.5 + pos: 0.5,7.5 parent: 1 - uid: 189 components: - type: Transform - pos: -2.5,16.5 + pos: -1.5,16.5 parent: 1 - uid: 190 components: @@ -5023,82 +5033,82 @@ entities: - uid: 191 components: - type: Transform - pos: -3.5,16.5 + pos: -2.5,16.5 parent: 1 - uid: 192 components: - type: Transform - pos: -4.5,16.5 + pos: -3.5,16.5 parent: 1 - uid: 193 components: - type: Transform - pos: 2.5,16.5 + pos: -4.5,16.5 parent: 1 - uid: 194 components: - type: Transform - pos: 3.5,16.5 + pos: 2.5,16.5 parent: 1 - uid: 195 components: - type: Transform - pos: 4.5,16.5 + pos: 3.5,16.5 parent: 1 - uid: 196 components: - type: Transform - pos: 5.5,16.5 + pos: 4.5,16.5 parent: 1 - uid: 197 components: - type: Transform - pos: 6.5,16.5 + pos: 5.5,16.5 parent: 1 - uid: 198 components: - type: Transform - pos: 7.5,16.5 + pos: 6.5,16.5 parent: 1 - uid: 199 components: - type: Transform - pos: 4.5,17.5 + pos: 7.5,16.5 parent: 1 - uid: 200 components: - type: Transform - pos: 4.5,18.5 + pos: 4.5,17.5 parent: 1 - uid: 201 components: - type: Transform - pos: 4.5,19.5 + pos: 4.5,18.5 parent: 1 - uid: 202 components: - type: Transform - pos: 4.5,15.5 + pos: 4.5,19.5 parent: 1 - uid: 203 components: - type: Transform - pos: 4.5,14.5 + pos: 4.5,15.5 parent: 1 - uid: 204 components: - type: Transform - pos: 4.5,13.5 + pos: 4.5,14.5 parent: 1 - uid: 205 components: - type: Transform - pos: 5.5,13.5 + pos: 4.5,13.5 parent: 1 - uid: 206 components: - type: Transform - pos: 5.5,19.5 + pos: 5.5,13.5 parent: 1 - uid: 207 components: @@ -5108,12 +5118,12 @@ entities: - uid: 208 components: - type: Transform - pos: -5.5,16.5 + pos: 5.5,19.5 parent: 1 - uid: 209 components: - type: Transform - pos: -6.5,16.5 + pos: -5.5,16.5 parent: 1 - uid: 210 components: @@ -5123,12 +5133,12 @@ entities: - uid: 211 components: - type: Transform - pos: -3.5,17.5 + pos: -6.5,16.5 parent: 1 - uid: 212 components: - type: Transform - pos: -3.5,18.5 + pos: -3.5,17.5 parent: 1 - uid: 213 components: @@ -5138,22 +5148,22 @@ entities: - uid: 214 components: - type: Transform - pos: -3.5,19.5 + pos: -3.5,18.5 parent: 1 - uid: 215 components: - type: Transform - pos: -4.5,19.5 + pos: -3.5,19.5 parent: 1 - uid: 216 components: - type: Transform - pos: -3.5,15.5 + pos: -4.5,19.5 parent: 1 - uid: 217 components: - type: Transform - pos: -3.5,14.5 + pos: -3.5,15.5 parent: 1 - uid: 218 components: @@ -5163,52 +5173,52 @@ entities: - uid: 219 components: - type: Transform - pos: -3.5,13.5 + pos: -3.5,14.5 parent: 1 - uid: 220 components: - type: Transform - pos: -4.5,13.5 + pos: -3.5,13.5 parent: 1 - uid: 221 components: - type: Transform - pos: -4.5,7.5 + pos: -4.5,13.5 parent: 1 - uid: 222 components: - type: Transform - pos: -2.5,13.5 + pos: -4.5,7.5 parent: 1 - uid: 223 components: - type: Transform - pos: -1.5,13.5 + pos: -2.5,13.5 parent: 1 - uid: 224 components: - type: Transform - pos: -0.5,13.5 + pos: -1.5,13.5 parent: 1 - uid: 225 components: - type: Transform - pos: 0.5,13.5 + pos: -0.5,13.5 parent: 1 - uid: 226 components: - type: Transform - pos: 3.5,13.5 + pos: 0.5,13.5 parent: 1 - uid: 227 components: - type: Transform - pos: 2.5,13.5 + pos: 3.5,13.5 parent: 1 - uid: 228 components: - type: Transform - pos: 1.5,13.5 + pos: 2.5,13.5 parent: 1 - uid: 229 components: @@ -5218,7 +5228,7 @@ entities: - uid: 230 components: - type: Transform - pos: 0.5,14.5 + pos: 1.5,13.5 parent: 1 - uid: 231 components: @@ -5228,22 +5238,22 @@ entities: - uid: 232 components: - type: Transform - pos: 0.5,12.5 + pos: 0.5,14.5 parent: 1 - uid: 233 components: - type: Transform - pos: 0.5,8.5 + pos: 0.5,12.5 parent: 1 - uid: 234 components: - type: Transform - pos: 0.5,9.5 + pos: 0.5,8.5 parent: 1 - uid: 235 components: - type: Transform - pos: 0.5,11.5 + pos: 0.5,9.5 parent: 1 - uid: 236 components: @@ -5253,107 +5263,107 @@ entities: - uid: 237 components: - type: Transform - pos: 1.5,9.5 + pos: 0.5,11.5 parent: 1 - uid: 238 components: - type: Transform - pos: -0.5,9.5 + pos: 1.5,9.5 parent: 1 - uid: 239 components: - type: Transform - pos: 0.5,16.5 + pos: -0.5,9.5 parent: 1 - uid: 240 components: - type: Transform - pos: 2.5,21.5 + pos: 0.5,16.5 parent: 1 - uid: 241 components: - type: Transform - pos: 1.5,21.5 + pos: 2.5,21.5 parent: 1 - uid: 242 components: - type: Transform - pos: 0.5,21.5 + pos: 1.5,21.5 parent: 1 - uid: 243 components: - type: Transform - pos: -0.5,21.5 + pos: 0.5,21.5 parent: 1 - uid: 244 components: - type: Transform - pos: -1.5,21.5 + pos: -0.5,21.5 parent: 1 - uid: 245 components: - type: Transform - pos: 0.5,20.5 + pos: -1.5,21.5 parent: 1 - uid: 246 components: - type: Transform - pos: 0.5,19.5 + pos: 0.5,20.5 parent: 1 - uid: 247 components: - type: Transform - pos: 0.5,22.5 + pos: 0.5,19.5 parent: 1 - uid: 248 components: - type: Transform - pos: 0.5,23.5 + pos: 0.5,22.5 parent: 1 - uid: 249 components: - type: Transform - pos: -0.5,23.5 + pos: 0.5,23.5 parent: 1 - uid: 250 components: - type: Transform - pos: -1.5,23.5 + pos: -0.5,23.5 parent: 1 - uid: 251 components: - type: Transform - pos: -2.5,23.5 + pos: -1.5,23.5 parent: 1 - uid: 252 components: - type: Transform - pos: -3.5,23.5 + pos: -2.5,23.5 parent: 1 - uid: 253 components: - type: Transform - pos: -2.5,24.5 + pos: -3.5,23.5 parent: 1 - uid: 254 components: - type: Transform - pos: -2.5,25.5 + pos: -2.5,24.5 parent: 1 - uid: 255 components: - type: Transform - pos: -2.5,26.5 + pos: -2.5,25.5 parent: 1 - uid: 256 components: - type: Transform - pos: -2.5,27.5 + pos: -2.5,26.5 parent: 1 - uid: 257 components: - type: Transform - pos: -2.5,29.5 + pos: -2.5,27.5 parent: 1 - uid: 258 components: @@ -5363,27 +5373,27 @@ entities: - uid: 259 components: - type: Transform - pos: -3.5,29.5 + pos: -2.5,29.5 parent: 1 - uid: 260 components: - type: Transform - pos: -3.5,30.5 + pos: -3.5,29.5 parent: 1 - uid: 261 components: - type: Transform - pos: -3.5,31.5 + pos: -3.5,30.5 parent: 1 - uid: 262 components: - type: Transform - pos: -3.5,32.5 + pos: -3.5,31.5 parent: 1 - uid: 263 components: - type: Transform - pos: 1.5,23.5 + pos: -3.5,32.5 parent: 1 - uid: 264 components: @@ -5393,12 +5403,12 @@ entities: - uid: 265 components: - type: Transform - pos: 2.5,23.5 + pos: 1.5,23.5 parent: 1 - uid: 266 components: - type: Transform - pos: 3.5,23.5 + pos: 2.5,23.5 parent: 1 - uid: 267 components: @@ -5408,42 +5418,42 @@ entities: - uid: 268 components: - type: Transform - pos: 4.5,23.5 + pos: 3.5,23.5 parent: 1 - uid: 269 components: - type: Transform - pos: 3.5,25.5 + pos: 4.5,23.5 parent: 1 - uid: 270 components: - type: Transform - pos: 3.5,26.5 + pos: 3.5,25.5 parent: 1 - uid: 271 components: - type: Transform - pos: 3.5,27.5 + pos: 3.5,26.5 parent: 1 - uid: 272 components: - type: Transform - pos: 3.5,28.5 + pos: 3.5,27.5 parent: 1 - uid: 273 components: - type: Transform - pos: 3.5,29.5 + pos: 3.5,28.5 parent: 1 - uid: 274 components: - type: Transform - pos: 4.5,29.5 + pos: 3.5,29.5 parent: 1 - uid: 275 components: - type: Transform - pos: 4.5,30.5 + pos: 4.5,29.5 parent: 1 - uid: 276 components: @@ -5453,32 +5463,32 @@ entities: - uid: 277 components: - type: Transform - pos: 4.5,31.5 + pos: 4.5,30.5 parent: 1 - uid: 278 components: - type: Transform - pos: 4.5,32.5 + pos: 4.5,31.5 parent: 1 - uid: 279 components: - type: Transform - pos: -2.5,32.5 + pos: 4.5,32.5 parent: 1 - uid: 280 components: - type: Transform - pos: -3.5,32.5 + pos: -2.5,32.5 parent: 1 - uid: 281 components: - type: Transform - pos: 4.5,32.5 + pos: -3.5,32.5 parent: 1 - uid: 282 components: - type: Transform - pos: 3.5,32.5 + pos: 4.5,32.5 parent: 1 - uid: 283 components: @@ -5488,396 +5498,394 @@ entities: - uid: 284 components: - type: Transform - pos: 1.5,16.5 + pos: 3.5,32.5 parent: 1 - uid: 285 components: - type: Transform - pos: -0.5,16.5 + pos: 1.5,16.5 parent: 1 - uid: 286 components: - type: Transform - pos: 0.5,16.5 + pos: -0.5,16.5 parent: 1 - uid: 287 components: - type: Transform - pos: -0.5,16.5 + pos: 0.5,16.5 parent: 1 - uid: 288 components: - type: Transform - pos: -1.5,16.5 + pos: -0.5,16.5 parent: 1 - uid: 289 components: - type: Transform - pos: 1.5,16.5 + pos: -1.5,16.5 parent: 1 - uid: 290 components: - type: Transform - pos: 2.5,16.5 + pos: 1.5,16.5 parent: 1 - uid: 291 components: - type: Transform - pos: -5.5,12.5 + pos: 2.5,16.5 parent: 1 - uid: 292 components: - type: Transform - pos: -4.5,11.5 + pos: -5.5,12.5 parent: 1 - uid: 293 components: - type: Transform - pos: 6.5,11.5 + pos: -4.5,11.5 parent: 1 - uid: 294 components: - type: Transform - pos: 5.5,10.5 + pos: 6.5,11.5 parent: 1 - uid: 295 components: - type: Transform - pos: -4.5,9.5 + pos: 5.5,10.5 parent: 1 - uid: 296 components: - type: Transform - pos: -5.5,11.5 + pos: -4.5,9.5 parent: 1 - uid: 297 components: - type: Transform - pos: -5.5,13.5 + pos: -5.5,11.5 parent: 1 - uid: 298 components: - type: Transform - pos: 5.5,10.5 + pos: -5.5,13.5 parent: 1 - uid: 299 components: - type: Transform - pos: 6.5,13.5 + pos: 5.5,10.5 parent: 1 - uid: 300 components: - type: Transform - pos: 6.5,12.5 + pos: 6.5,13.5 parent: 1 - uid: 301 components: - type: Transform - pos: -4.5,10.5 + pos: 6.5,12.5 parent: 1 - uid: 302 components: - type: Transform - pos: 7.5,16.5 + pos: -4.5,10.5 parent: 1 - uid: 303 components: - type: Transform - pos: 6.5,16.5 + pos: 7.5,16.5 parent: 1 - uid: 304 components: - type: Transform - pos: -1.5,14.5 + pos: 6.5,16.5 parent: 1 - uid: 305 components: - type: Transform - pos: 2.5,14.5 + pos: -1.5,14.5 parent: 1 - uid: 306 components: - type: Transform - pos: 3.5,14.5 + pos: 2.5,14.5 parent: 1 - uid: 307 components: - type: Transform - pos: 8.5,16.5 + pos: 3.5,14.5 parent: 1 - uid: 308 components: - type: Transform - pos: -7.5,16.5 + pos: 8.5,16.5 parent: 1 - uid: 309 components: - type: Transform - pos: -2.5,30.5 + pos: -7.5,16.5 parent: 1 - uid: 310 components: - type: Transform - pos: -5.5,19.5 + pos: -2.5,30.5 parent: 1 - uid: 311 components: - type: Transform - pos: -6.5,20.5 + pos: -5.5,19.5 parent: 1 - uid: 312 components: - type: Transform - pos: 7.5,20.5 + pos: -6.5,20.5 parent: 1 - uid: 313 components: - type: Transform - pos: 7.5,19.5 + pos: 7.5,20.5 parent: 1 - uid: 314 components: - type: Transform - pos: 6.5,19.5 + pos: 7.5,19.5 parent: 1 - uid: 315 components: - type: Transform - pos: -6.5,19.5 + pos: 6.5,19.5 parent: 1 - uid: 316 components: - type: Transform - pos: -4.5,23.5 + pos: -6.5,19.5 parent: 1 - uid: 317 components: - type: Transform - pos: -5.5,23.5 + pos: -4.5,23.5 parent: 1 - uid: 318 components: - type: Transform - pos: 5.5,23.5 + pos: -5.5,23.5 parent: 1 - uid: 319 components: - type: Transform - pos: 6.5,23.5 + pos: 5.5,23.5 parent: 1 - uid: 320 components: - type: Transform - pos: -2.5,33.5 + pos: 6.5,23.5 parent: 1 - uid: 321 components: - type: Transform - pos: -3.5,33.5 + pos: -1.5,33.5 parent: 1 - uid: 322 components: - type: Transform - pos: -1.5,33.5 + pos: 2.5,33.5 parent: 1 - uid: 323 components: - type: Transform - pos: 3.5,33.5 + pos: 3.5,32.5 parent: 1 - uid: 324 components: - type: Transform - pos: 2.5,33.5 + pos: 3.5,31.5 parent: 1 - uid: 325 components: - type: Transform - pos: 4.5,33.5 + pos: 3.5,30.5 parent: 1 - uid: 326 components: - type: Transform - pos: 3.5,32.5 + pos: 1.5,24.5 parent: 1 - uid: 327 components: - type: Transform - pos: 3.5,31.5 + pos: -0.5,24.5 parent: 1 - uid: 328 components: - type: Transform - pos: 3.5,30.5 + pos: 0.5,24.5 parent: 1 -- proto: CableHV - entities: - uid: 329 components: - type: Transform - pos: 4.5,16.5 + pos: 1.5,25.5 parent: 1 - uid: 330 components: - type: Transform - pos: 4.5,15.5 + pos: -0.5,23.5 parent: 1 - uid: 331 components: - type: Transform - pos: 4.5,14.5 + pos: -0.5,27.5 parent: 1 - uid: 332 components: - type: Transform - pos: 4.5,13.5 + pos: 1.5,27.5 parent: 1 - uid: 333 components: - type: Transform - pos: 4.5,12.5 + pos: 0.5,25.5 parent: 1 - uid: 334 components: - type: Transform - pos: -3.5,16.5 + pos: 2.5,27.5 parent: 1 - uid: 335 components: - type: Transform - pos: -3.5,15.5 + pos: 1.5,27.5 parent: 1 - uid: 336 components: - type: Transform - pos: -3.5,14.5 + pos: -1.5,27.5 parent: 1 - uid: 337 components: - type: Transform - pos: -3.5,13.5 + pos: -0.5,27.5 parent: 1 - uid: 338 components: - type: Transform - pos: -3.5,12.5 + pos: 0.5,24.5 parent: 1 - uid: 339 components: - type: Transform - pos: -3.5,11.5 + pos: -1.5,24.5 parent: 1 - uid: 340 components: - type: Transform - pos: -3.5,10.5 + pos: -0.5,24.5 parent: 1 - uid: 341 components: - type: Transform - pos: -3.5,9.5 + pos: 1.5,24.5 parent: 1 - uid: 342 components: - type: Transform - pos: 4.5,12.5 + pos: 2.5,24.5 parent: 1 - uid: 343 components: - type: Transform - pos: 4.5,11.5 + pos: 1.5,23.5 parent: 1 - uid: 344 components: - type: Transform - pos: 4.5,10.5 + pos: 0.5,23.5 parent: 1 - uid: 345 components: - type: Transform - pos: 4.5,9.5 + pos: -0.5,23.5 parent: 1 - uid: 346 components: - type: Transform - pos: 5.5,13.5 + pos: -1.5,23.5 parent: 1 - uid: 347 components: - type: Transform - pos: 5.5,12.5 + pos: -0.5,25.5 parent: 1 +- proto: CableHV + entities: - uid: 348 components: - type: Transform - pos: 5.5,10.5 + pos: 4.5,16.5 parent: 1 - uid: 349 components: - type: Transform - pos: -4.5,13.5 + pos: 4.5,15.5 parent: 1 - uid: 350 components: - type: Transform - pos: -4.5,12.5 + pos: 4.5,14.5 parent: 1 - uid: 351 components: - type: Transform - pos: -4.5,11.5 + pos: 4.5,13.5 parent: 1 - uid: 352 components: - type: Transform - pos: 5.5,11.5 + pos: 4.5,12.5 parent: 1 -- proto: CableMV - entities: - uid: 353 components: - type: Transform - pos: 3.5,4.5 + pos: -3.5,16.5 parent: 1 - uid: 354 components: - type: Transform - pos: -3.5,13.5 + pos: -3.5,15.5 parent: 1 - uid: 355 components: - type: Transform - pos: 4.5,9.5 + pos: -3.5,14.5 parent: 1 - uid: 356 components: - type: Transform - pos: 4.5,7.5 + pos: -3.5,13.5 parent: 1 - uid: 357 components: - type: Transform - pos: 4.5,6.5 + pos: -3.5,12.5 parent: 1 - uid: 358 components: - type: Transform - pos: 4.5,5.5 + pos: -3.5,11.5 parent: 1 - uid: 359 components: - type: Transform - pos: 4.5,4.5 + pos: -3.5,10.5 parent: 1 - uid: 360 components: - type: Transform - pos: 3.5,4.5 + pos: -3.5,9.5 parent: 1 - uid: 361 components: - type: Transform - pos: 4.5,10.5 + pos: 4.5,12.5 parent: 1 - uid: 362 components: @@ -5887,182 +5895,184 @@ entities: - uid: 363 components: - type: Transform - pos: 4.5,12.5 + pos: 4.5,10.5 parent: 1 - uid: 364 components: - type: Transform - pos: 4.5,13.5 + pos: 4.5,9.5 parent: 1 - uid: 365 components: - type: Transform - pos: 4.5,14.5 + pos: 5.5,13.5 parent: 1 - uid: 366 components: - type: Transform - pos: 4.5,15.5 + pos: 5.5,12.5 parent: 1 - uid: 367 components: - type: Transform - pos: 3.5,15.5 + pos: 5.5,10.5 parent: 1 - uid: 368 components: - type: Transform - pos: 3.5,16.5 + pos: -4.5,13.5 parent: 1 - uid: 369 components: - type: Transform - pos: 2.5,16.5 + pos: -4.5,12.5 parent: 1 - uid: 370 components: - type: Transform - pos: 2.5,17.5 + pos: -4.5,11.5 parent: 1 - uid: 371 components: - type: Transform - pos: 2.5,18.5 + pos: 5.5,11.5 parent: 1 +- proto: CableMV + entities: - uid: 372 components: - type: Transform - pos: 2.5,19.5 + pos: 3.5,4.5 parent: 1 - uid: 373 components: - type: Transform - pos: 2.5,20.5 + pos: -3.5,13.5 parent: 1 - uid: 374 components: - type: Transform - pos: 2.5,21.5 + pos: 4.5,9.5 parent: 1 - uid: 375 components: - type: Transform - pos: -3.5,9.5 + pos: 4.5,7.5 parent: 1 - uid: 376 components: - type: Transform - pos: -3.5,10.5 + pos: 4.5,6.5 parent: 1 - uid: 377 components: - type: Transform - pos: -3.5,11.5 + pos: 4.5,5.5 parent: 1 - uid: 378 components: - type: Transform - pos: -3.5,12.5 + pos: 4.5,4.5 parent: 1 - uid: 379 components: - type: Transform - pos: -3.5,13.5 + pos: 3.5,4.5 parent: 1 - uid: 380 components: - type: Transform - pos: -3.5,14.5 + pos: 4.5,10.5 parent: 1 - uid: 381 components: - type: Transform - pos: -3.5,15.5 + pos: 4.5,11.5 parent: 1 - uid: 382 components: - type: Transform - pos: -2.5,15.5 + pos: 4.5,12.5 parent: 1 - uid: 383 components: - type: Transform - pos: -2.5,16.5 + pos: 4.5,13.5 parent: 1 - uid: 384 components: - type: Transform - pos: -1.5,16.5 + pos: 4.5,14.5 parent: 1 - uid: 385 components: - type: Transform - pos: -1.5,17.5 + pos: 4.5,15.5 parent: 1 - uid: 386 components: - type: Transform - pos: -1.5,18.5 + pos: 3.5,15.5 parent: 1 - uid: 387 components: - type: Transform - pos: -1.5,19.5 + pos: 3.5,16.5 parent: 1 - uid: 388 components: - type: Transform - pos: -1.5,20.5 + pos: 2.5,16.5 parent: 1 - uid: 389 components: - type: Transform - pos: -1.5,21.5 + pos: 2.5,17.5 parent: 1 - uid: 390 components: - type: Transform - pos: -3.5,8.5 + pos: 2.5,18.5 parent: 1 - uid: 391 components: - type: Transform - pos: -3.5,7.5 + pos: 2.5,19.5 parent: 1 - uid: 392 components: - type: Transform - pos: -3.5,6.5 + pos: 2.5,20.5 parent: 1 - uid: 393 components: - type: Transform - pos: -3.5,5.5 + pos: 2.5,21.5 parent: 1 - uid: 394 components: - type: Transform - pos: -3.5,4.5 + pos: -3.5,9.5 parent: 1 - uid: 395 components: - type: Transform - pos: -2.5,4.5 + pos: -3.5,10.5 parent: 1 - uid: 396 components: - type: Transform - pos: -3.5,14.5 + pos: -3.5,11.5 parent: 1 - uid: 397 components: - type: Transform - pos: 4.5,8.5 + pos: -3.5,12.5 parent: 1 - uid: 398 components: - type: Transform - pos: -3.5,12.5 + pos: -3.5,13.5 parent: 1 - uid: 399 components: @@ -6072,360 +6082,455 @@ entities: - uid: 400 components: - type: Transform - pos: 4.5,14.5 + pos: -3.5,15.5 parent: 1 - uid: 401 components: - type: Transform - pos: 4.5,13.5 + pos: -2.5,15.5 parent: 1 - uid: 402 components: - type: Transform - pos: 4.5,12.5 + pos: -2.5,16.5 parent: 1 - uid: 403 components: - type: Transform - pos: 4.5,14.5 + pos: -1.5,16.5 parent: 1 - uid: 404 components: - type: Transform - pos: 4.5,11.5 + pos: -1.5,17.5 parent: 1 - uid: 405 components: - type: Transform - pos: -4.5,11.5 + pos: -1.5,18.5 parent: 1 - uid: 406 components: - type: Transform - pos: -4.5,13.5 + pos: -1.5,19.5 parent: 1 - uid: 407 components: - type: Transform - pos: -4.5,10.5 + pos: -1.5,20.5 parent: 1 - uid: 408 components: - type: Transform - pos: -4.5,12.5 + pos: -1.5,21.5 parent: 1 - uid: 409 components: - type: Transform - pos: 5.5,9.5 + pos: -3.5,8.5 parent: 1 - uid: 410 components: - type: Transform - pos: 5.5,10.5 + pos: -3.5,7.5 parent: 1 - uid: 411 components: - type: Transform - pos: 5.5,11.5 + pos: -3.5,6.5 parent: 1 - uid: 412 components: - type: Transform - pos: 5.5,12.5 + pos: -3.5,5.5 parent: 1 - uid: 413 components: - type: Transform - pos: -3.5,9.5 + pos: -3.5,4.5 parent: 1 - uid: 414 components: - type: Transform - pos: -3.5,9.5 + pos: -2.5,4.5 parent: 1 - uid: 415 components: - type: Transform - pos: 5.5,13.5 + pos: -3.5,14.5 parent: 1 - uid: 416 components: - type: Transform - pos: 2.5,14.5 + pos: 4.5,8.5 parent: 1 - uid: 417 components: - type: Transform - pos: -2.5,14.5 + pos: -3.5,12.5 parent: 1 - uid: 418 components: - type: Transform - pos: 3.5,14.5 + pos: -3.5,14.5 parent: 1 - uid: 419 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 438 components: - type: Transform pos: -1.5,14.5 parent: 1 - proto: CableTerminal entities: - - uid: 420 + - uid: 439 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 421 + - uid: 440 components: - type: Transform pos: 4.5,13.5 parent: 1 - proto: CartridgeShellArmorPiercing entities: - - uid: 422 + - uid: 441 components: - type: Transform pos: -0.668946,21.262907 parent: 1 - - uid: 423 + - uid: 442 components: - type: Transform pos: -0.622071,21.42697 parent: 1 - - uid: 424 + - uid: 443 components: - type: Transform pos: -0.6455085,21.544157 parent: 1 - - uid: 425 + - uid: 444 components: - type: Transform pos: -0.668946,21.684782 parent: 1 - - uid: 426 + - uid: 445 components: - type: Transform pos: -0.668946,21.755095 parent: 1 - - uid: 427 + - uid: 446 components: - type: Transform pos: -0.668946,21.872282 parent: 1 - - uid: 428 + - uid: 447 components: - type: Transform pos: -0.27050856,21.23947 parent: 1 - - uid: 429 + - uid: 448 components: - type: Transform pos: -0.24707106,21.403532 parent: 1 - - uid: 430 + - uid: 449 components: - type: Transform pos: -0.24707106,21.497282 parent: 1 - - uid: 431 + - uid: 450 components: - type: Transform pos: -0.22363356,21.61447 parent: 1 - - uid: 432 + - uid: 451 components: - type: Transform pos: -0.22363356,21.661345 parent: 1 - - uid: 433 + - uid: 452 components: - type: Transform pos: -0.20019606,21.825407 parent: 1 - proto: CartridgeShellHighExplosive entities: - - uid: 434 + - uid: 453 components: - type: Transform pos: 1.440429,21.473845 parent: 1 - - uid: 435 + - uid: 454 components: - type: Transform pos: 1.3701165,21.23947 parent: 1 - proto: Catwalk entities: - - uid: 436 + - uid: 455 components: - type: Transform pos: -3.5,17.5 parent: 1 - - uid: 437 + - uid: 456 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 1 - - uid: 438 + - uid: 457 components: - type: Transform pos: -2.5,25.5 parent: 1 - - uid: 439 + - uid: 458 components: - type: Transform pos: 1.5,24.5 parent: 1 - - uid: 440 + - uid: 459 components: - type: Transform pos: 3.5,20.5 parent: 1 - - uid: 441 + - uid: 460 components: - type: Transform pos: 0.5,24.5 parent: 1 - - uid: 442 + - uid: 461 components: - type: Transform pos: 0.5,25.5 parent: 1 - - uid: 443 + - uid: 462 components: - type: Transform pos: -0.5,24.5 parent: 1 - - uid: 444 + - uid: 463 components: - type: Transform pos: 3.5,29.5 parent: 1 - - uid: 445 + - uid: 464 components: - type: Transform pos: 4.5,29.5 parent: 1 - - uid: 446 + - uid: 465 components: - type: Transform pos: 4.5,29.5 parent: 1 - - uid: 447 + - uid: 466 components: - type: Transform pos: 4.5,30.5 parent: 1 - - uid: 448 + - uid: 467 components: - type: Transform pos: 3.5,30.5 parent: 1 - - uid: 449 + - uid: 468 components: - type: Transform pos: -2.5,29.5 parent: 1 - - uid: 450 + - uid: 469 components: - type: Transform pos: -3.5,29.5 parent: 1 - - uid: 451 + - uid: 470 components: - type: Transform pos: -3.5,30.5 parent: 1 - - uid: 452 + - uid: 471 components: - type: Transform pos: -2.5,30.5 parent: 1 - - uid: 453 + - uid: 472 components: - type: Transform pos: -0.5,25.5 parent: 1 - - uid: 454 + - uid: 473 components: - type: Transform pos: 1.5,25.5 parent: 1 - - uid: 455 + - uid: 474 components: - type: Transform pos: -3.5,15.5 parent: 1 - - uid: 456 + - uid: 475 components: - type: Transform pos: 5.5,17.5 parent: 1 - - uid: 457 + - uid: 476 components: - type: Transform pos: 4.5,15.5 parent: 1 - - uid: 458 + - uid: 477 components: - type: Transform pos: 5.5,15.5 parent: 1 - - uid: 459 + - uid: 478 components: - type: Transform pos: 5.5,16.5 parent: 1 - - uid: 460 + - uid: 479 components: - type: Transform pos: 4.5,17.5 parent: 1 - - uid: 461 + - uid: 480 components: - type: Transform pos: 1.5,26.5 parent: 1 - - uid: 462 + - uid: 481 components: - type: Transform pos: -4.5,15.5 parent: 1 - - uid: 463 + - uid: 482 components: - type: Transform pos: 0.5,26.5 parent: 1 - - uid: 464 + - uid: 483 components: - type: Transform pos: -0.5,26.5 parent: 1 - - uid: 465 + - uid: 484 components: - type: Transform pos: -5.5,16.5 parent: 1 - - uid: 466 + - uid: 485 components: - type: Transform pos: -4.5,17.5 parent: 1 - - uid: 467 + - uid: 486 components: - type: Transform pos: -4.5,16.5 parent: 1 - - uid: 468 + - uid: 487 components: - type: Transform pos: 6.5,16.5 parent: 1 - proto: ChairFolding entities: - - uid: 469 + - uid: 488 components: - type: Transform rot: 1.5707963267948966 rad @@ -6433,7 +6538,7 @@ entities: parent: 1 - proto: ChairOfficeDark entities: - - uid: 470 + - uid: 489 components: - type: Transform rot: -1.5707963267948966 rad @@ -6441,76 +6546,71 @@ entities: parent: 1 - proto: CheapRollerBed entities: - - uid: 471 + - uid: 490 components: - type: Transform pos: -2.4544098,1.424509 parent: 1 - proto: ChemistryHotplate entities: - - uid: 472 + - uid: 491 components: - type: Transform pos: -7.5,3.5 parent: 1 - type: ItemPlacer placedEntities: - - 85 + - 82 - type: PlaceableSurface isPlaceable: False - proto: ChemMaster entities: - - uid: 473 + - uid: 492 components: - type: Transform pos: -7.5,4.5 parent: 1 - proto: ClosetEmergencyFilledRandom entities: - - uid: 474 - components: - - type: Transform - pos: -4.5,3.5 - parent: 1 - - uid: 475 + - uid: 493 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 476 + - uid: 494 components: - type: Transform pos: -4.5,12.5 parent: 1 - proto: ClosetFireFilled entities: - - uid: 477 + - uid: 495 components: - type: Transform pos: -0.5,10.5 parent: 1 - - uid: 478 +- proto: ClosetToolFilled + entities: + - uid: 496 components: - type: Transform pos: 5.5,12.5 parent: 1 -- proto: ClosetToolFilled - entities: - - uid: 479 + - uid: 497 components: - type: Transform pos: -4.5,20.5 parent: 1 - proto: ClosetWallFireFilledRandom entities: - - uid: 480 + - uid: 498 components: - type: Transform pos: 3.5,8.5 parent: 1 - proto: ClosetWallOrange entities: - - uid: 481 + - uid: 499 components: - type: Transform rot: 1.5707963267948966 rad @@ -6518,28 +6618,28 @@ entities: parent: 1 - proto: ClothingHeadHelmetImperialEVA entities: - - uid: 45 + - uid: 43 components: - type: Transform - parent: 43 + parent: 41 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 52 + - uid: 50 components: - type: Transform - parent: 50 + parent: 48 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 59 + - uid: 57 components: - type: Transform - parent: 57 + parent: 55 - type: Physics angularDamping: 0 linearDamping: 0 @@ -6547,28 +6647,28 @@ entities: - type: InsideEntityStorage - proto: ClothingOuterCoatImperialSoftsuit entities: - - uid: 46 + - uid: 44 components: - type: Transform - parent: 43 + parent: 41 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 53 + - uid: 51 components: - type: Transform - parent: 50 + parent: 48 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 60 + - uid: 58 components: - type: Transform - parent: 57 + parent: 55 - type: Physics angularDamping: 0 linearDamping: 0 @@ -6576,28 +6676,28 @@ entities: - type: InsideEntityStorage - proto: ClothingShoesBootsMagCombat entities: - - uid: 47 + - uid: 45 components: - type: Transform - parent: 43 + parent: 41 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 54 + - uid: 52 components: - type: Transform - parent: 50 + parent: 48 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 61 + - uid: 59 components: - type: Transform - parent: 57 + parent: 55 - type: Physics angularDamping: 0 linearDamping: 0 @@ -6605,25 +6705,32 @@ entities: - type: InsideEntityStorage - proto: ComputerTabletopAdvancedRadar entities: - - uid: 482 + - uid: 500 components: - type: Transform pos: 0.5,14.5 parent: 1 - proto: ComputerTabletopCriminalRecords entities: - - uid: 483 + - uid: 501 components: - type: Transform pos: 6.5,6.5 parent: 1 - proto: ComputerTabletopShuttle entities: - - uid: 484 + - uid: 502 components: - type: Transform pos: 1.5,14.5 parent: 1 + - type: NamedModules + buttonNames: + - Fire 120mm + - Toggle Plasma Bolt Repeater + - Module C + - Module D + - Module E - type: ContainerContainer containers: board: !type:Container @@ -6643,9 +6750,21 @@ entities: 4: - - Group1 - SpaceArtilleryFire + 7: + - - Group2 + - Toggle + 6: + - - Group2 + - Toggle + 5: + - - Group2 + - Toggle + 8: + - - Group2 + - Toggle - proto: ComputerTabletopTargeting entities: - - uid: 485 + - uid: 503 components: - type: Transform pos: -0.5,14.5 @@ -6653,66 +6772,66 @@ entities: - type: TargetingConsole cannonGroups: all: - - 83 - - 84 + - 80 + - 81 70mm "Jeong" swarmrocket platform: - - 83 - - 84 + - 80 + - 81 - proto: ConveyorBelt entities: - - uid: 486 + - uid: 504 components: - type: Transform pos: 0.5,-1.5 parent: 1 - type: DeviceLinkSink links: - - 770 - - uid: 487 + - 807 + - uid: 505 components: - type: Transform pos: 0.5,-0.5 parent: 1 - type: DeviceLinkSink links: - - 770 - - uid: 488 + - 807 + - uid: 506 components: - type: Transform pos: 0.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 770 + - 807 - proto: CrateAutogunAmmo entities: - - uid: 489 + - uid: 507 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 490 + - uid: 508 components: - type: Transform pos: 1.5,7.5 parent: 1 - proto: CrateJeongAmmo entities: - - uid: 990 + - uid: 509 components: - type: Transform pos: 0.5,5.5 parent: 1 - proto: DefaultStationBeaconBridge entities: - - uid: 491 + - uid: 510 components: - type: Transform pos: 0.5,13.5 parent: 1 - proto: DefibrillatorCabinetFilled entities: - - uid: 492 + - uid: 511 components: - type: Transform rot: 3.141592653589793 rad @@ -6720,14 +6839,14 @@ entities: parent: 1 - proto: Dropper entities: - - uid: 493 + - uid: 512 components: - type: Transform pos: -7.491656,5.143259 parent: 1 - proto: EmergencyLight entities: - - uid: 494 + - uid: 513 components: - type: Transform rot: 3.141592653589793 rad @@ -6735,101 +6854,143 @@ entities: parent: 1 - proto: EmergencyMedipen entities: - - uid: 495 + - uid: 514 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.413235,3.612009 parent: 1 - - uid: 496 + - uid: 515 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.225735,3.612009 parent: 1 -- proto: FaxMachineShip - entities: - - uid: 497 - components: - - type: Transform - pos: 1.5,12.5 - parent: 1 - proto: Firelock entities: - - uid: 498 + - uid: 516 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 499 + - uid: 517 components: - type: Transform pos: 0.5,11.5 parent: 1 - - uid: 500 + - uid: 518 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 501 + - uid: 519 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 502 + - uid: 520 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 503 + - uid: 521 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 504 + - uid: 522 components: - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 505 + - uid: 523 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 506 + - uid: 524 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 507 + - uid: 525 components: - type: Transform pos: 2.5,5.5 parent: 1 - proto: Flash entities: - - uid: 508 + - uid: 526 components: - type: Transform pos: 5.3090024,3.6101813 parent: 1 - - uid: 509 + - uid: 527 components: - type: Transform pos: 5.6996274,3.5945563 parent: 1 +- proto: FloodlightBroken + entities: + - uid: 528 + components: + - type: Transform + pos: 4.541318,24.510738 + parent: 1 - proto: FloorDrain entities: - - uid: 510 + - uid: 529 components: - type: Transform pos: -4.5,2.5 parent: 1 - type: Fixtures fixtures: {} +- proto: FoodPacketChipsTrash + entities: + - uid: 530 + components: + - type: Transform + pos: -0.27207223,4.3121834 + parent: 1 +- proto: FoodPacketChowMeinTrash + entities: + - uid: 531 + components: + - type: Transform + pos: 3.6525846,30.351187 + parent: 1 +- proto: FoodPacketEnergyTrash + entities: + - uid: 532 + components: + - type: Transform + pos: 5.3311996,18.245098 + parent: 1 +- proto: FoodPacketRaisinsTrash + entities: + - uid: 533 + components: + - type: Transform + pos: 8.750652,6.3564634 + parent: 1 +- proto: FoodPlateTrash + entities: + - uid: 534 + components: + - type: Transform + pos: -2.6465223,6.7096605 + parent: 1 +- proto: FoodTinPeachesMaintTrash + entities: + - uid: 535 + components: + - type: Transform + pos: -3.3345368,25.552786 + parent: 1 - proto: GasPassiveVent entities: - - uid: 511 + - uid: 536 components: - type: Transform rot: -1.5707963267948966 rad @@ -6837,53 +6998,53 @@ entities: parent: 1 - proto: GasPipeBend entities: - - uid: 512 + - uid: 537 components: - type: Transform pos: -0.5,22.5 parent: 1 - - uid: 513 + - uid: 538 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,22.5 parent: 1 - - uid: 514 + - uid: 539 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,22.5 parent: 1 - - uid: 515 + - uid: 540 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,19.5 parent: 1 - - uid: 516 + - uid: 541 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,19.5 parent: 1 - - uid: 517 + - uid: 542 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 518 + - uid: 543 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 1 - - uid: 519 + - uid: 544 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,27.5 parent: 1 - - uid: 520 + - uid: 545 components: - type: Transform rot: 3.141592653589793 rad @@ -6891,291 +7052,291 @@ entities: parent: 1 - proto: GasPipeStraight entities: - - uid: 521 + - uid: 546 components: - type: Transform pos: 4.5,25.5 parent: 1 - - uid: 522 + - uid: 547 components: - type: Transform pos: 4.5,24.5 parent: 1 - - uid: 523 + - uid: 548 components: - type: Transform pos: 4.5,23.5 parent: 1 - - uid: 524 + - uid: 549 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,22.5 parent: 1 - - uid: 525 + - uid: 550 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,22.5 parent: 1 - - uid: 526 + - uid: 551 components: - type: Transform pos: 0.5,20.5 parent: 1 - - uid: 527 + - uid: 552 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 528 + - uid: 553 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 529 + - uid: 554 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,19.5 parent: 1 - - uid: 530 + - uid: 555 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,19.5 parent: 1 - - uid: 531 + - uid: 556 components: - type: Transform pos: 3.5,17.5 parent: 1 - - uid: 532 + - uid: 557 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 533 + - uid: 558 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 534 + - uid: 559 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 535 + - uid: 560 components: - type: Transform pos: -2.5,18.5 parent: 1 - - uid: 536 + - uid: 561 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,13.5 parent: 1 - - uid: 537 + - uid: 562 components: - type: Transform pos: -2.5,17.5 parent: 1 - - uid: 538 + - uid: 563 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 539 + - uid: 564 components: - type: Transform pos: -2.5,15.5 parent: 1 - - uid: 540 + - uid: 565 components: - type: Transform pos: -2.5,14.5 parent: 1 - - uid: 541 + - uid: 566 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,13.5 parent: 1 - - uid: 542 + - uid: 567 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 543 + - uid: 568 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 544 + - uid: 569 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 545 + - uid: 570 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,18.5 parent: 1 - - uid: 546 + - uid: 571 components: - type: Transform pos: -0.5,11.5 parent: 1 - - uid: 547 + - uid: 572 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 548 + - uid: 573 components: - type: Transform pos: 0.5,11.5 parent: 1 - - uid: 549 + - uid: 574 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 550 + - uid: 575 components: - type: Transform pos: -0.5,21.5 parent: 1 - - uid: 551 + - uid: 576 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,27.5 parent: 1 - - uid: 552 + - uid: 577 components: - type: Transform pos: -2.5,25.5 parent: 1 - - uid: 553 + - uid: 578 components: - type: Transform pos: -2.5,24.5 parent: 1 - - uid: 554 + - uid: 579 components: - type: Transform pos: -2.5,23.5 parent: 1 - - uid: 555 + - uid: 580 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,22.5 parent: 1 - - uid: 556 + - uid: 581 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 557 + - uid: 582 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 558 + - uid: 583 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 559 + - uid: 584 components: - type: Transform pos: -0.5,10.5 parent: 1 - - uid: 560 + - uid: 585 components: - type: Transform pos: -0.5,9.5 parent: 1 - - uid: 561 + - uid: 586 components: - type: Transform pos: -0.5,8.5 parent: 1 - - uid: 562 + - uid: 587 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 563 + - uid: 588 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 564 + - uid: 589 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 565 + - uid: 590 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 566 + - uid: 591 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 567 + - uid: 592 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 568 + - uid: 593 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 569 + - uid: 594 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 570 + - uid: 595 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 571 + - uid: 596 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 572 + - uid: 597 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 573 + - uid: 598 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 574 + - uid: 599 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 575 + - uid: 600 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 576 + - uid: 601 components: - type: Transform rot: 1.5707963267948966 rad @@ -7183,23 +7344,23 @@ entities: parent: 1 - proto: GasPipeTJunction entities: - - uid: 577 + - uid: 602 components: - type: Transform pos: -2.5,19.5 parent: 1 - - uid: 578 + - uid: 603 components: - type: Transform pos: 3.5,19.5 parent: 1 - - uid: 579 + - uid: 604 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,13.5 parent: 1 - - uid: 580 + - uid: 605 components: - type: Transform rot: 3.141592653589793 rad @@ -7207,19 +7368,19 @@ entities: parent: 1 - proto: GasPort entities: - - uid: 581 + - uid: 606 components: - type: Transform pos: 4.5,27.5 parent: 1 - proto: GasPressurePump entities: - - uid: 582 + - uid: 607 components: - type: Transform pos: 4.5,26.5 parent: 1 - - uid: 583 + - uid: 608 components: - type: Transform rot: 3.141592653589793 rad @@ -7227,19 +7388,19 @@ entities: parent: 1 - proto: GasVentPump entities: - - uid: 584 + - uid: 609 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,10.5 parent: 1 - - uid: 585 + - uid: 610 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,19.5 parent: 1 - - uid: 586 + - uid: 611 components: - type: Transform rot: -1.5707963267948966 rad @@ -7248,19 +7409,19 @@ entities: - type: DeviceNetwork configurators: - invalid - - uid: 587 + - uid: 612 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 1 - - uid: 588 + - uid: 613 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,5.5 parent: 1 - - uid: 589 + - uid: 614 components: - type: Transform rot: 3.141592653589793 rad @@ -7268,37 +7429,37 @@ entities: parent: 1 - proto: GasVentScrubber entities: - - uid: 590 + - uid: 615 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,19.5 parent: 1 - - uid: 591 + - uid: 616 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,10.5 parent: 1 - - uid: 592 + - uid: 617 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,13.5 parent: 1 - - uid: 593 + - uid: 618 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 - - uid: 594 + - uid: 619 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,5.5 parent: 1 - - uid: 595 + - uid: 620 components: - type: Transform rot: 3.141592653589793 rad @@ -7306,94 +7467,100 @@ entities: parent: 1 - proto: GravityGeneratorMini entities: - - uid: 596 + - uid: 621 components: - type: Transform pos: 3.5,7.5 parent: 1 - proto: Grille entities: - - uid: 597 + - uid: 622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,20.5 + parent: 1 + - uid: 623 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 598 + - uid: 624 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 599 + - uid: 625 components: - type: Transform pos: -2.5,18.5 parent: 1 - - uid: 600 + - uid: 626 components: - type: Transform pos: 3.5,18.5 parent: 1 - - uid: 601 + - uid: 627 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 602 + - uid: 628 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 603 + - uid: 629 components: - type: Transform pos: -3.5,10.5 parent: 1 - - uid: 604 + - uid: 630 components: - type: Transform pos: 4.5,10.5 parent: 1 - - uid: 605 + - uid: 631 components: - type: Transform pos: -8.5,4.5 parent: 1 - - uid: 606 + - uid: 632 components: - type: Transform pos: -8.5,3.5 parent: 1 - - uid: 607 + - uid: 633 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 608 + - uid: 634 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,29.5 parent: 1 - - uid: 609 + - uid: 635 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,29.5 parent: 1 - - uid: 610 + - uid: 636 components: - type: Transform pos: -8.5,5.5 parent: 1 - proto: GrilleBroken entities: - - uid: 611 + - uid: 637 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,31.5 parent: 1 - - uid: 612 + - uid: 638 components: - type: Transform rot: 3.141592653589793 rad @@ -7401,47 +7568,47 @@ entities: parent: 1 - proto: Gyroscope entities: - - uid: 613 + - uid: 639 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 614 + - uid: 640 components: - type: Transform pos: 3.5,12.5 parent: 1 - proto: HandheldCrewMonitor entities: - - uid: 615 + - uid: 641 components: - type: Transform pos: -3.599592,7.616263 parent: 1 - proto: HandheldGPSBasic entities: - - uid: 48 + - uid: 46 components: - type: Transform - parent: 43 + parent: 41 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 55 + - uid: 53 components: - type: Transform - parent: 50 + parent: 48 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 62 + - uid: 60 components: - type: Transform - parent: 57 + parent: 55 - type: Physics angularDamping: 0 linearDamping: 0 @@ -7449,42 +7616,42 @@ entities: - type: InsideEntityStorage - proto: HandheldHealthAnalyzer entities: - - uid: 616 + - uid: 642 components: - type: Transform pos: -3.112308,7.621122 parent: 1 - proto: HospitalCurtainsOpen entities: - - uid: 617 + - uid: 643 components: - type: Transform pos: -2.5,1.5 parent: 1 - proto: JetpackMiniFilled entities: - - uid: 49 + - uid: 47 components: - type: Transform - parent: 43 + parent: 41 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 56 + - uid: 54 components: - type: Transform - parent: 50 + parent: 48 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 63 + - uid: 61 components: - type: Transform - parent: 57 + parent: 55 - type: Physics angularDamping: 0 linearDamping: 0 @@ -7492,21 +7659,21 @@ entities: - type: InsideEntityStorage - proto: KitchenReagentGrinder entities: - - uid: 618 + - uid: 644 components: - type: Transform pos: -7.5,5.5 parent: 1 - proto: LargeBeaker entities: - - uid: 619 + - uid: 645 components: - type: Transform pos: -7.510775,4.049509 parent: 1 - proto: LightStripInner entities: - - uid: 620 + - uid: 646 components: - type: Transform rot: 1.5707963267948966 rad @@ -7515,7 +7682,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 621 + - uid: 647 components: - type: Transform rot: 3.141592653589793 rad @@ -7524,7 +7691,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 622 + - uid: 648 components: - type: Transform rot: -1.5707963267948966 rad @@ -7533,7 +7700,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 623 + - uid: 649 components: - type: Transform pos: -0.5,18.5 @@ -7541,7 +7708,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 624 + - uid: 650 components: - type: Transform rot: 1.5707963267948966 rad @@ -7552,7 +7719,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 625 + - uid: 651 components: - type: Transform rot: -1.5707963267948966 rad @@ -7561,7 +7728,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 626 + - uid: 652 components: - type: Transform pos: 0.5,16.5 @@ -7569,7 +7736,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 627 + - uid: 653 components: - type: Transform rot: 1.5707963267948966 rad @@ -7578,7 +7745,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 628 + - uid: 654 components: - type: Transform rot: 3.141592653589793 rad @@ -7589,26 +7756,26 @@ entities: - type: TurretIFF - proto: MachineFrame entities: - - uid: 629 + - uid: 655 components: - type: Transform pos: 5.5,20.5 parent: 1 - proto: MaintenanceFluffSpawner entities: - - uid: 630 + - uid: 656 components: - type: Transform pos: 3.5,31.5 parent: 1 - - uid: 631 + - uid: 657 components: - type: Transform pos: 3.5,10.5 parent: 1 - proto: MaintenanceToolSpawner entities: - - uid: 632 + - uid: 658 components: - type: Transform rot: 1.5707963267948966 rad @@ -7616,33 +7783,77 @@ entities: parent: 1 - proto: MaintenanceWeaponSpawner entities: - - uid: 633 + - uid: 659 components: - type: Transform pos: -2.5,31.5 parent: 1 - proto: MedkitAdvancedFilled entities: - - uid: 634 + - uid: 660 components: - type: Transform pos: -2.402193,7.596414 parent: 1 +- proto: N14JunkArcade + entities: + - uid: 661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,27.5 + parent: 1 +- proto: NitrogenCanisterBroken + entities: + - uid: 662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,26.5 + parent: 1 +- proto: Paper + entities: + - uid: 663 + components: + - type: Transform + pos: 1.227263,14.248247 + parent: 1 + - type: Paper + content: >- + From: Regiment Battalion Engineering Corps + + + Sir, + + + The new Laelaps plans are in regrettably poor condition. Production has been curtailed, and material usage strictly limited. As the engineer assigned to this battalion, I shall offer no excuses. + + + I have implemented several modifications based upon the original Laelaps drafts. I am fully aware that the engine placements are far from ideal; however, given the circumstances, no better options were available. Supplies have been exceedingly scarce for an extended period, and the same engine oil has been reused countless times — the vessel is, quite literally, barely holding together. + + + I wish you every success, and trust that the ship endures until we reach our objective. + + + For the Kaiser. + + + — Regiment Battalion Engineering Corps - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 635 + - uid: 664 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,14.5 parent: 1 - - uid: 636 + - uid: 665 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,14.5 parent: 1 - - uid: 637 + - uid: 666 components: - type: Transform rot: 3.141592653589793 rad @@ -7650,7 +7861,7 @@ entities: parent: 1 - proto: PlasticFlapsAirtightClear entities: - - uid: 638 + - uid: 667 components: - type: Transform rot: 1.5707963267948966 rad @@ -7658,177 +7869,189 @@ entities: parent: 1 - proto: PottedPlantRandomPlastic entities: - - uid: 639 + - uid: 668 components: - type: Transform - pos: 4.5,6.5 + pos: -4.5,1.5 parent: 1 - - uid: 640 +- proto: Poweredlight + entities: + - uid: 669 components: - type: Transform - pos: -4.5,1.5 + rot: 3.141592653589793 rad + pos: 5.5,12.5 parent: 1 -- proto: PoweredlightLED - entities: - - uid: 641 + - uid: 670 components: - type: Transform - pos: -6.5,6.5 + pos: -3.5,7.5 parent: 1 - - uid: 642 + - uid: 671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,4.5 + pos: -0.5,7.5 parent: 1 - - uid: 643 + - uid: 672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,12.5 + pos: -4.5,20.5 parent: 1 - - uid: 644 + - uid: 673 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,12.5 + pos: -4.5,12.5 parent: 1 - - uid: 645 + - uid: 674 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,12.5 + pos: 1.5,9.5 parent: 1 - - uid: 646 + - uid: 675 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,12.5 + pos: 1.5,12.5 parent: 1 - - uid: 647 + - uid: 676 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,9.5 parent: 1 - - uid: 648 + - uid: 677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,9.5 + pos: 1.5,7.5 parent: 1 - - uid: 649 + - uid: 678 components: - type: Transform - pos: -0.5,7.5 + pos: 4.5,7.5 parent: 1 - - uid: 650 + - uid: 679 components: - type: Transform - pos: 1.5,7.5 + rot: 3.141592653589793 rad + pos: 4.5,1.5 parent: 1 - - uid: 651 + - uid: 680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,4.5 + rot: 3.141592653589793 rad + pos: -0.5,12.5 parent: 1 - - uid: 652 + - uid: 681 components: - type: Transform - pos: 4.5,7.5 + rot: 1.5707963267948966 rad + pos: -7.5,6.5 parent: 1 - - uid: 653 + - uid: 682 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,1.5 + pos: -6.5,2.5 parent: 1 - - uid: 654 + - uid: 683 components: - type: Transform - pos: 6.5,6.5 + rot: 3.141592653589793 rad + pos: -3.5,1.5 parent: 1 - - uid: 655 + - uid: 684 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,1.5 + pos: 7.5,2.5 parent: 1 - - uid: 656 + - uid: 685 components: - type: Transform - pos: -2.5,7.5 + pos: 6.5,6.5 parent: 1 - - uid: 657 + - uid: 686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,2.5 + rot: -1.5707963267948966 rad + pos: 1.5,0.5 parent: 1 - - uid: 658 + - uid: 687 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,3.5 + pos: -0.5,0.5 parent: 1 - - uid: 659 + - uid: 688 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,3.5 + pos: -3.5,25.5 parent: 1 - - uid: 660 + - uid: 689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,0.5 + rot: -1.5707963267948966 rad + pos: 4.5,25.5 parent: 1 - - uid: 661 + - uid: 690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,0.5 + pos: -1.5,19.5 parent: 1 - - uid: 662 + - uid: 691 + components: + - type: Transform + pos: 5.5,20.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1 +- proto: PoweredlightRed + entities: + - uid: 693 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,25.5 + pos: -0.5,26.5 parent: 1 - - uid: 663 + - uid: 694 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,25.5 + pos: 1.5,26.5 parent: 1 - proto: PoweredSmallLight entities: - - uid: 664 + - uid: 695 components: - type: Transform pos: -2.5,31.5 parent: 1 - - uid: 665 + - uid: 696 components: - type: Transform pos: 3.5,31.5 parent: 1 - proto: Rack entities: - - uid: 666 + - uid: 697 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,21.5 parent: 1 - - uid: 667 + - uid: 698 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,1.5 parent: 1 - - uid: 668 + - uid: 699 components: - type: Transform rot: 3.141592653589793 rad @@ -7836,95 +8059,109 @@ entities: parent: 1 - proto: Railing entities: - - uid: 669 + - uid: 700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,31.5 + parent: 1 + - uid: 701 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,9.5 parent: 1 - - uid: 670 + - uid: 702 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,10.5 parent: 1 - - uid: 671 + - uid: 703 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,10.5 parent: 1 - - uid: 672 + - uid: 704 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,9.5 parent: 1 - - uid: 673 + - uid: 705 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,6.5 + pos: 0.5,31.5 parent: 1 -- proto: RailingCorner - entities: - - uid: 674 + - uid: 706 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,23.5 + pos: -0.5,31.5 parent: 1 - - uid: 675 + - uid: 707 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,33.5 + pos: 1.5,31.5 parent: 1 - - uid: 676 + - uid: 708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,33.5 + pos: 0.5,31.5 parent: 1 - - uid: 677 + - uid: 709 + components: + - type: Transform + pos: -0.5,31.5 + parent: 1 +- proto: RailingCorner + entities: + - uid: 710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,23.5 + parent: 1 + - uid: 711 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,23.5 parent: 1 - - uid: 678 + - uid: 712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,33.5 + pos: 9.5,1.5 parent: 1 - - uid: 679 + - uid: 713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,33.5 + rot: -1.5707963267948966 rad + pos: -8.5,1.5 parent: 1 - proto: RailingRound entities: - - uid: 680 + - uid: 714 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,16.5 parent: 1 - - uid: 681 + - uid: 715 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,16.5 parent: 1 - - uid: 682 + - uid: 716 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,30.5 parent: 1 - - uid: 683 + - uid: 717 components: - type: Transform rot: -1.5707963267948966 rad @@ -7932,88 +8169,102 @@ entities: parent: 1 - proto: ReinforcedPlasmaWindow entities: - - uid: 684 + - uid: 718 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 685 + - uid: 719 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 686 + - uid: 720 components: - type: Transform pos: -8.5,5.5 parent: 1 - - uid: 687 + - uid: 721 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 688 + - uid: 722 components: - type: Transform pos: -8.5,4.5 parent: 1 - - uid: 689 + - uid: 723 components: - type: Transform pos: -8.5,3.5 parent: 1 - - uid: 690 + - uid: 724 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 691 + - uid: 725 components: - type: Transform pos: -2.5,18.5 parent: 1 - - uid: 692 + - uid: 726 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 693 + - uid: 727 components: - type: Transform pos: 3.5,18.5 parent: 1 + - uid: 728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,20.5 + parent: 1 +- proto: ScrapFaxMachine + entities: + - uid: 729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.6527574,12.66847 + parent: 1 - proto: ShuttersNormal entities: - - uid: 694 + - uid: 730 components: - type: Transform pos: -0.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 706 - - 707 - - uid: 695 + - 744 + - 745 + - uid: 731 components: - type: Transform pos: 0.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 706 - - 707 - - uid: 696 + - 744 + - 745 + - uid: 732 components: - type: Transform pos: 1.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 706 - - 707 + - 744 + - 745 - proto: ShuttleGunPlasmaRepeater entities: - - uid: 697 + - uid: 733 components: - type: Transform rot: 3.141592653589793 rad @@ -8022,10 +8273,10 @@ entities: - type: ApcPowerReceiver powerLoad: 1000 - type: Battery - startingCharge: 18568.613 + startingCharge: 19005.566 - type: ApcPowerReceiverBattery enabled: True - - uid: 698 + - uid: 734 components: - type: Transform rot: 3.141592653589793 rad @@ -8034,12 +8285,32 @@ entities: - type: ApcPowerReceiver powerLoad: 1000 - type: Battery - startingCharge: 18568.613 + startingCharge: 19009.219 - type: ApcPowerReceiverBattery enabled: True + - uid: 735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,27.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 + - uid: 736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,27.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - proto: SignalButton entities: - - uid: 699 + - uid: 737 components: - type: Transform rot: -1.5707963267948966 rad @@ -8047,10 +8318,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 96: + 93: - - Pressed - Toggle - - uid: 700 + - uid: 738 components: - type: Transform rot: 1.5707963267948966 rad @@ -8058,10 +8329,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 90: + 87: - - Pressed - Toggle - - uid: 701 + - uid: 739 components: - type: Transform rot: -1.5707963267948966 rad @@ -8069,20 +8340,20 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 89: + 86: - - Pressed - Toggle - - uid: 702 + - uid: 740 components: - type: Transform pos: 1.5,23.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 91: + 88: - - Pressed - Toggle - - uid: 703 + - uid: 741 components: - type: Transform rot: -1.5707963267948966 rad @@ -8090,16 +8361,16 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 101: + 98: - - Pressed - Toggle - 100: + 97: - - Pressed - Toggle - 102: + 99: - - Pressed - Toggle - - uid: 704 + - uid: 742 components: - type: Transform rot: -1.5707963267948966 rad @@ -8107,20 +8378,20 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 99: + 96: - - Pressed - Toggle - - uid: 705 + - uid: 743 components: - type: Transform pos: -6.5,7.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 94: + 91: - - Pressed - Toggle - - uid: 706 + - uid: 744 components: - type: Transform rot: 1.5707963267948966 rad @@ -8128,16 +8399,16 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 694: + 730: - - Pressed - Toggle - 695: + 731: - - Pressed - Toggle - 696: + 732: - - Pressed - Toggle - - uid: 707 + - uid: 745 components: - type: Transform rot: -1.5707963267948966 rad @@ -8145,26 +8416,26 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 696: + 732: - - Pressed - Toggle - 695: + 731: - - Pressed - Toggle - 694: + 730: - - Pressed - Toggle - - uid: 708 + - uid: 746 components: - type: Transform pos: 7.5,7.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 92: + 89: - - Pressed - Toggle - - uid: 709 + - uid: 747 components: - type: Transform rot: 1.5707963267948966 rad @@ -8172,12 +8443,12 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 95: + 92: - - Pressed - Toggle - proto: SignalButtonDirectional entities: - - uid: 710 + - uid: 748 components: - type: Transform rot: 1.5707963267948966 rad @@ -8185,10 +8456,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 97: + 94: - - Pressed - Toggle - - uid: 711 + - uid: 749 components: - type: Transform rot: -1.5707963267948966 rad @@ -8196,38 +8467,38 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 98: + 95: - - Pressed - Toggle - proto: SignBridge entities: - - uid: 712 + - uid: 750 components: - type: Transform pos: -0.5,11.5 parent: 1 - - uid: 713 + - uid: 751 components: - type: Transform pos: 1.5,11.5 parent: 1 - proto: SignMedical entities: - - uid: 714 + - uid: 752 components: - type: Transform pos: -1.5,6.5 parent: 1 - proto: SignPrison entities: - - uid: 715 + - uid: 753 components: - type: Transform pos: 2.5,6.5 parent: 1 - proto: SinkStemlessWater entities: - - uid: 716 + - uid: 754 components: - type: Transform rot: 1.5707963267948966 rad @@ -8235,7 +8506,7 @@ entities: parent: 1 - proto: SinkWide entities: - - uid: 717 + - uid: 755 components: - type: Transform rot: 1.5707963267948966 rad @@ -8243,42 +8514,32 @@ entities: parent: 1 - proto: SMESBasic entities: - - uid: 718 + - uid: 756 components: - type: Transform pos: -3.5,12.5 parent: 1 - - uid: 719 + - uid: 757 components: - type: Transform pos: 4.5,12.5 parent: 1 - proto: SpawnPointLatejoin entities: - - uid: 720 + - uid: 758 components: - type: Transform pos: 0.5,6.5 parent: 1 - proto: StairDark entities: - - uid: 721 - components: - - type: Transform - pos: 3.5,6.5 - parent: 1 - - uid: 722 - components: - - type: Transform - pos: 3.5,6.5 - parent: 1 - - uid: 723 + - uid: 759 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,13.5 parent: 1 - - uid: 724 + - uid: 760 components: - type: Transform rot: -1.5707963267948966 rad @@ -8286,68 +8547,76 @@ entities: parent: 1 - proto: StationMap entities: - - uid: 725 + - uid: 761 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,24.5 parent: 1 - - uid: 726 + - uid: 762 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,24.5 parent: 1 - - uid: 727 + - uid: 763 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 1 - - uid: 728 + - uid: 764 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 729 + - uid: 765 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,6.5 parent: 1 - - uid: 730 + - uid: 766 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,10.5 parent: 1 - - uid: 731 + - uid: 767 components: - type: Transform pos: -0.5,23.5 parent: 1 - proto: StorageCanister entities: - - uid: 732 + - uid: 768 components: - type: Transform pos: 4.5,25.5 parent: 1 +- proto: StorageCanisterBroken + entities: + - uid: 769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,26.5 + parent: 1 - proto: SubstationBasic entities: - - uid: 733 + - uid: 770 components: - type: Transform pos: 4.5,9.5 parent: 1 - - uid: 734 + - uid: 771 components: - type: Transform pos: -3.5,9.5 parent: 1 - proto: SuitStorageBase entities: - - uid: 43 + - uid: 41 components: - type: Transform pos: 3.5,3.5 @@ -8358,13 +8627,13 @@ entities: showEnts: False occludes: True ents: - - 46 - - 47 - 44 - 45 - - 49 - - 48 - - uid: 50 + - 42 + - 43 + - 47 + - 46 + - uid: 48 components: - type: Transform pos: 3.5,2.5 @@ -8375,13 +8644,13 @@ entities: showEnts: False occludes: True ents: - - 56 - - 51 - 54 - - 55 - - 53 + - 49 - 52 - - uid: 57 + - 53 + - 51 + - 50 + - uid: 55 components: - type: Transform pos: 3.5,1.5 @@ -8392,45 +8661,45 @@ entities: showEnts: False occludes: True ents: - - 62 - - 61 - 60 - - 58 - 59 - - 63 + - 58 + - 56 + - 57 + - 61 - proto: Table entities: - - uid: 735 + - uid: 772 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,3.5 parent: 1 - - uid: 736 + - uid: 773 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,5.5 parent: 1 - - uid: 737 + - uid: 774 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,2.5 parent: 1 - - uid: 738 + - uid: 775 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 739 + - uid: 776 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,6.5 parent: 1 - - uid: 740 + - uid: 777 components: - type: Transform rot: -1.5707963267948966 rad @@ -8438,19 +8707,19 @@ entities: parent: 1 - proto: TableFancyPurple entities: - - uid: 741 + - uid: 778 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,14.5 parent: 1 - - uid: 742 + - uid: 779 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,14.5 parent: 1 - - uid: 743 + - uid: 780 components: - type: Transform rot: 3.141592653589793 rad @@ -8458,24 +8727,24 @@ entities: parent: 1 - proto: TablePlasmaGlass entities: - - uid: 744 + - uid: 781 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 745 + - uid: 782 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 746 + - uid: 783 components: - type: Transform pos: -2.5,7.5 parent: 1 - proto: TableReinforced entities: - - uid: 747 + - uid: 784 components: - type: Transform rot: 1.5707963267948966 rad @@ -8483,119 +8752,119 @@ entities: parent: 1 - proto: ThrusterDSMWarship entities: - - uid: 748 + - uid: 785 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 1 - - uid: 749 + - uid: 786 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-0.5 parent: 1 - - uid: 750 + - uid: 787 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,0.5 parent: 1 - - uid: 751 + - uid: 788 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-0.5 parent: 1 - - uid: 752 + - uid: 789 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 1 - - uid: 753 + - uid: 790 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,0.5 parent: 1 - - uid: 754 + - uid: 791 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 755 + - uid: 792 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 756 + - uid: 793 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,13.5 parent: 1 - - uid: 757 + - uid: 794 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,19.5 parent: 1 - - uid: 758 + - uid: 795 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,13.5 parent: 1 - - uid: 759 + - uid: 796 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,13.5 parent: 1 - - uid: 760 + - uid: 797 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,19.5 parent: 1 - - uid: 761 + - uid: 798 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 1 - - uid: 762 + - uid: 799 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,10.5 parent: 1 - - uid: 763 + - uid: 800 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,13.5 parent: 1 - - uid: 764 + - uid: 801 components: - type: Transform pos: -6.5,20.5 parent: 1 - - uid: 765 + - uid: 802 components: - type: Transform pos: 7.5,20.5 parent: 1 - proto: ToiletDirtyWater entities: - - uid: 766 + - uid: 803 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,2.5 parent: 1 - - uid: 767 + - uid: 804 components: - type: Transform rot: 3.141592653589793 rad @@ -8603,40 +8872,40 @@ entities: parent: 1 - proto: Truncheon entities: - - uid: 768 + - uid: 805 components: - type: Transform pos: 5.3152604,2.5320563 parent: 1 - - uid: 769 + - uid: 806 components: - type: Transform pos: 5.5965104,2.4539313 parent: 1 - proto: TwoWayLever entities: - - uid: 770 + - uid: 807 components: - type: Transform pos: 0.5,1.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 488: + 506: - - Left - Forward - - Right - Reverse - - Middle - Off - 487: + 505: - - Left - Forward - - Right - Reverse - - Middle - Off - 486: + 504: - - Left - Forward - - Right @@ -8645,14 +8914,14 @@ entities: - Off - proto: Type99ArtilleryFilled entities: - - uid: 5 + - uid: 808 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,24.5 parent: 1 - type: ApcPowerReceiver - powerLoad: 1000 + powerLoad: 5 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -8668,878 +8937,900 @@ entities: occludes: True ents: [] - type: Battery - startingCharge: 19300.908 - - type: ApcPowerReceiverBattery - enabled: True + startingCharge: 0 - proto: UnionfallShipNodeDSM entities: - - uid: 771 + - uid: 809 components: - type: Transform pos: 0.5,17.5 parent: 1 - proto: VendingMachineChemicals entities: - - uid: 772 + - uid: 810 components: - type: Transform pos: -6.5,2.5 parent: 1 - proto: VendingMachineCoffee entities: - - uid: 773 + - uid: 811 components: - type: Transform pos: 4.5,7.5 parent: 1 - proto: VendingMachineMedical entities: - - uid: 774 + - uid: 812 components: - type: Transform pos: -2.5,2.5 parent: 1 - proto: WallPlastitanium entities: - - uid: 775 + - uid: 813 components: - type: Transform pos: -2.5,19.5 parent: 1 - - uid: 776 + - uid: 814 components: - type: Transform pos: -2.5,15.5 parent: 1 - - uid: 777 + - uid: 815 components: - type: Transform pos: -1.5,20.5 parent: 1 - - uid: 778 + - uid: 816 components: - type: Transform pos: -2.5,20.5 parent: 1 - - uid: 779 + - uid: 817 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 780 + - uid: 818 components: - type: Transform pos: -1.5,32.5 parent: 1 - - uid: 781 + - uid: 819 components: - type: Transform pos: -4.5,30.5 parent: 1 - - uid: 782 + - uid: 820 components: - type: Transform pos: 2.5,32.5 parent: 1 - - uid: 783 + - uid: 821 components: - type: Transform pos: 2.5,24.5 parent: 1 - - uid: 784 + - uid: 822 components: - type: Transform pos: -1.5,24.5 parent: 1 - - uid: 785 + - uid: 823 components: - type: Transform pos: 3.5,32.5 parent: 1 - - uid: 786 + - uid: 824 components: - type: Transform pos: -5.5,12.5 parent: 1 - - uid: 787 + - uid: 825 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 788 + - uid: 826 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 789 + - uid: 827 components: - type: Transform pos: 6.5,20.5 parent: 1 - - uid: 790 + - uid: 828 components: - type: Transform pos: 6.5,19.5 parent: 1 - - uid: 791 + - uid: 829 components: - type: Transform pos: -6.5,15.5 parent: 1 - - uid: 792 + - uid: 830 components: - type: Transform pos: 7.5,17.5 parent: 1 - - uid: 793 + - uid: 831 components: - type: Transform pos: 7.5,15.5 parent: 1 - - uid: 794 + - uid: 832 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 795 + - uid: 833 components: - type: Transform pos: -1.5,10.5 parent: 1 - - uid: 796 + - uid: 834 components: - type: Transform pos: -1.5,23.5 parent: 1 - - uid: 797 + - uid: 835 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 798 + - uid: 836 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 799 + - uid: 837 components: - type: Transform pos: -1.5,14.5 parent: 1 - - uid: 800 + - uid: 838 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 801 + - uid: 839 components: - type: Transform pos: -4.5,24.5 parent: 1 - - uid: 802 + - uid: 840 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 803 + - uid: 841 components: - type: Transform pos: -4.5,27.5 parent: 1 - - uid: 804 + - uid: 842 components: - type: Transform pos: 3.5,19.5 parent: 1 - - uid: 805 + - uid: 843 components: - type: Transform pos: 5.5,24.5 parent: 1 - - uid: 806 + - uid: 844 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 807 + - uid: 845 components: - type: Transform pos: 5.5,28.5 parent: 1 - - uid: 808 + - uid: 846 components: - type: Transform pos: -5.5,20.5 parent: 1 - - uid: 809 + - uid: 847 components: - type: Transform pos: 6.5,18.5 parent: 1 - - uid: 810 + - uid: 848 components: - type: Transform pos: -5.5,18.5 parent: 1 - - uid: 811 + - uid: 849 components: - type: Transform pos: -1.5,29.5 parent: 1 - - uid: 812 + - uid: 850 components: - type: Transform pos: -1.5,27.5 parent: 1 - - uid: 813 + - uid: 851 components: - type: Transform pos: 5.5,21.5 parent: 1 - - uid: 814 + - uid: 852 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 815 + - uid: 853 components: - type: Transform pos: 5.5,9.5 parent: 1 - - uid: 816 + - uid: 854 components: - type: Transform pos: -2.5,21.5 parent: 1 - - uid: 817 + - uid: 855 components: - type: Transform pos: 2.5,26.5 parent: 1 - - uid: 818 + - uid: 856 components: - type: Transform pos: 2.5,31.5 parent: 1 - - uid: 819 + - uid: 857 components: - type: Transform pos: -4.5,28.5 parent: 1 - - uid: 820 + - uid: 858 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 821 + - uid: 859 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 822 + - uid: 860 components: - type: Transform pos: -1.5,11.5 parent: 1 - - uid: 823 + - uid: 861 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 824 + - uid: 862 components: - type: Transform pos: -1.5,30.5 parent: 1 - - uid: 825 + - uid: 863 components: - type: Transform pos: -1.5,31.5 parent: 1 - - uid: 826 + - uid: 864 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 827 + - uid: 865 components: - type: Transform pos: 5.5,27.5 parent: 1 - - uid: 828 + - uid: 866 components: - type: Transform pos: -1.5,25.5 parent: 1 - - uid: 829 + - uid: 867 components: - type: Transform pos: -1.5,26.5 parent: 1 - - uid: 830 + - uid: 868 components: - type: Transform pos: -0.5,24.5 parent: 1 - - uid: 831 + - uid: 869 components: - type: Transform pos: 3.5,21.5 parent: 1 - - uid: 832 + - uid: 870 components: - type: Transform pos: 2.5,28.5 parent: 1 - - uid: 833 + - uid: 871 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 834 + - uid: 872 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 835 + - uid: 873 components: - type: Transform pos: 2.5,11.5 parent: 1 - - uid: 836 + - uid: 874 components: - type: Transform pos: -1.5,28.5 parent: 1 - - uid: 837 + - uid: 875 components: - type: Transform pos: 2.5,23.5 parent: 1 - - uid: 838 + - uid: 876 components: - type: Transform pos: 5.5,30.5 parent: 1 - - uid: 839 + - uid: 877 components: - type: Transform pos: 5.5,29.5 parent: 1 - - uid: 840 + - uid: 878 components: - type: Transform pos: 2.5,30.5 parent: 1 - - uid: 841 + - uid: 879 components: - type: Transform pos: -1.5,21.5 parent: 1 - - uid: 842 + - uid: 880 components: - type: Transform pos: 2.5,25.5 parent: 1 - - uid: 843 + - uid: 881 components: - type: Transform pos: -0.5,23.5 parent: 1 - - uid: 844 + - uid: 882 components: - type: Transform pos: 1.5,24.5 parent: 1 - - uid: 845 + - uid: 883 components: - type: Transform pos: 2.5,29.5 parent: 1 - - uid: 846 + - uid: 884 components: - type: Transform pos: -4.5,25.5 parent: 1 - - uid: 847 + - uid: 885 components: - type: Transform pos: 5.5,22.5 parent: 1 - - uid: 848 + - uid: 886 components: - type: Transform pos: -4.5,22.5 parent: 1 - - uid: 849 + - uid: 887 components: - type: Transform pos: 4.5,28.5 parent: 1 - - uid: 850 + - uid: 888 components: - type: Transform pos: 2.5,21.5 parent: 1 - - uid: 851 + - uid: 889 components: - type: Transform pos: -5.5,19.5 parent: 1 - - uid: 852 + - uid: 890 components: - type: Transform pos: 2.5,10.5 parent: 1 - - uid: 853 + - uid: 891 components: - type: Transform pos: 4.5,30.5 parent: 1 - - uid: 854 + - uid: 892 components: - type: Transform pos: -4.5,26.5 parent: 1 - - uid: 855 + - uid: 893 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 856 + - uid: 894 components: - type: Transform pos: -5.5,14.5 parent: 1 - - uid: 857 + - uid: 895 components: - type: Transform pos: 4.5,11.5 parent: 1 - - uid: 858 + - uid: 896 components: - type: Transform pos: -0.5,11.5 parent: 1 - - uid: 859 + - uid: 897 components: - type: Transform pos: 2.5,20.5 parent: 1 - - uid: 860 + - uid: 898 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 861 + - uid: 899 components: - type: Transform pos: -4.5,29.5 parent: 1 - - uid: 862 + - uid: 900 components: - type: Transform pos: -4.5,21.5 parent: 1 - - uid: 863 + - uid: 901 components: - type: Transform pos: 5.5,26.5 parent: 1 - - uid: 864 + - uid: 902 components: - type: Transform pos: -3.5,28.5 parent: 1 - - uid: 865 + - uid: 903 components: - type: Transform pos: -6.5,17.5 parent: 1 - - uid: 866 + - uid: 904 components: - type: Transform pos: 2.5,27.5 parent: 1 - - uid: 867 + - uid: 905 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 868 + - uid: 906 components: - type: Transform pos: 5.5,25.5 parent: 1 - - uid: 869 + - uid: 907 components: - type: Transform pos: 6.5,21.5 parent: 1 - - uid: 870 + - uid: 908 components: - type: Transform pos: -5.5,21.5 parent: 1 - - uid: 871 + - uid: 909 components: - type: Transform pos: -3.5,30.5 parent: 1 - - uid: 872 + - uid: 910 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 873 + - uid: 911 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 874 + - uid: 912 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 875 + - uid: 913 components: - type: Transform pos: -1.5,1.5 parent: 1 - - uid: 876 + - uid: 914 components: - type: Transform pos: 5.5,4.5 parent: 1 - - uid: 877 + - uid: 915 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 878 + - uid: 916 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 879 + - uid: 917 components: - type: Transform pos: -7.5,1.5 parent: 1 - - uid: 880 + - uid: 918 components: - type: Transform pos: 7.5,1.5 parent: 1 - - uid: 881 + - uid: 919 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 882 + - uid: 920 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 883 + - uid: 921 components: - type: Transform pos: -4.5,4.5 parent: 1 - - uid: 884 + - uid: 922 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 885 + - uid: 923 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 886 + - uid: 924 components: - type: Transform pos: -5.5,4.5 parent: 1 - - uid: 887 + - uid: 925 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 888 + - uid: 926 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 889 + - uid: 927 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 890 + - uid: 928 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 891 + - uid: 929 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 892 + - uid: 930 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 893 + - uid: 931 components: - type: Transform pos: -1.5,0.5 parent: 1 - - uid: 894 + - uid: 932 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 895 + - uid: 933 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 896 + - uid: 934 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 897 + - uid: 935 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 898 + - uid: 936 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 899 + - uid: 937 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 900 + - uid: 938 components: - type: Transform pos: 5.5,8.5 parent: 1 - - uid: 901 + - uid: 939 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 902 + - uid: 940 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 903 + - uid: 941 components: - type: Transform pos: 6.5,7.5 parent: 1 - - uid: 904 + - uid: 942 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 905 + - uid: 943 components: - type: Transform pos: -1.5,4.5 parent: 1 - - uid: 906 + - uid: 944 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 907 + - uid: 945 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 908 + - uid: 946 components: - type: Transform pos: 9.5,6.5 parent: 1 - - uid: 909 + - uid: 947 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 910 + - uid: 948 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 911 + - uid: 949 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 912 + - uid: 950 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 913 + - uid: 951 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 914 + - uid: 952 components: - type: Transform pos: 7.5,8.5 parent: 1 - - uid: 915 + - uid: 953 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 916 + - uid: 954 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 917 + - uid: 955 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 918 + - uid: 956 components: - type: Transform pos: 9.5,5.5 parent: 1 - - uid: 919 + - uid: 957 components: - type: Transform pos: 9.5,4.5 parent: 1 - - uid: 920 + - uid: 958 components: - type: Transform pos: 9.5,3.5 parent: 1 - - uid: 921 + - uid: 959 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 922 + - uid: 960 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 923 + - uid: 961 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 924 + - uid: 962 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 925 + - uid: 963 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 926 + - uid: 964 components: - type: Transform pos: 5.5,7.5 parent: 1 - - uid: 927 + - uid: 965 components: - type: Transform pos: 2.5,6.5 parent: 1 - - uid: 928 + - uid: 966 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 929 + - uid: 967 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 930 + - uid: 968 components: - type: Transform pos: -3.5,8.5 parent: 1 - - uid: 931 + - uid: 969 components: - type: Transform pos: -1.5,7.5 parent: 1 - - uid: 932 + - uid: 970 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 933 + - uid: 971 components: - type: Transform pos: -1.5,8.5 parent: 1 - - uid: 934 + - uid: 972 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 935 + - uid: 973 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 936 + - uid: 974 components: - type: Transform pos: -0.5,8.5 parent: 1 - - uid: 937 + - uid: 975 components: - type: Transform pos: -2.5,32.5 parent: 1 - - uid: 938 + - uid: 976 components: - type: Transform pos: 3.5,20.5 parent: 1 - - uid: 939 + - uid: 977 components: - type: Transform - pos: 3.5,33.5 + rot: 3.141592653589793 rad + pos: -3.5,32.5 parent: 1 - - uid: 940 + - uid: 978 components: - type: Transform - pos: -2.5,33.5 + rot: 3.141592653589793 rad + pos: 4.5,32.5 parent: 1 - proto: WallPlastitaniumDiagonalCurved entities: - - uid: 941 + - uid: 979 + components: + - type: Transform + pos: 3.5,33.5 + parent: 1 + - uid: 980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,33.5 + parent: 1 + - uid: 981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,33.5 + parent: 1 + - uid: 982 + components: + - type: Transform + pos: -3.5,33.5 + parent: 1 + - uid: 983 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,14.5 parent: 1 - - uid: 942 + - uid: 984 components: - type: Transform rot: 3.141592653589793 rad @@ -9547,24 +9838,24 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalHollow entities: - - uid: 943 + - uid: 985 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,17.5 parent: 1 - - uid: 944 + - uid: 986 components: - type: Transform pos: 6.5,15.5 parent: 1 - - uid: 945 + - uid: 987 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,15.5 parent: 1 - - uid: 946 + - uid: 988 components: - type: Transform rot: 3.141592653589793 rad @@ -9572,83 +9863,72 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,32.5 - parent: 1 - - uid: 948 - components: - - type: Transform - pos: -3.5,32.5 - parent: 1 - - uid: 949 + - uid: 989 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,11.5 parent: 1 - - uid: 950 + - uid: 990 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,11.5 parent: 1 - - uid: 951 + - uid: 991 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,7.5 parent: 1 - - uid: 952 + - uid: 992 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,2.5 parent: 1 - - uid: 953 + - uid: 993 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 1 - - uid: 954 + - uid: 994 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 - - uid: 955 + - uid: 995 components: - type: Transform pos: -8.5,7.5 parent: 1 - - uid: 956 + - uid: 996 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,0.5 parent: 1 - - uid: 957 + - uid: 997 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,2.5 parent: 1 - - uid: 958 + - uid: 998 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 1 - - uid: 959 + - uid: 999 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 1 - - uid: 960 + - uid: 1000 components: - type: Transform rot: 1.5707963267948966 rad @@ -9656,48 +9936,48 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalSoutheastHollow entities: - - uid: 961 + - uid: 1001 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,18.5 parent: 1 - - uid: 962 + - uid: 1002 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,18.5 parent: 1 - - uid: 963 + - uid: 1003 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,14.5 parent: 1 - - uid: 964 + - uid: 1004 components: - type: Transform pos: -6.5,14.5 parent: 1 - - uid: 965 + - uid: 1005 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,25.5 parent: 1 - - uid: 966 + - uid: 1006 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,25.5 parent: 1 - - uid: 967 + - uid: 1007 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,22.5 parent: 1 - - uid: 968 + - uid: 1008 components: - type: Transform rot: 3.141592653589793 rad @@ -9705,22 +9985,24 @@ entities: parent: 1 - proto: WallReinforced entities: - - uid: 969 + - uid: 1009 components: - type: Transform pos: -1.5,6.5 parent: 1 - proto: WarpPointShip entities: - - uid: 970 + - uid: 1010 components: + - type: MetaData + name: DSM Laelaps - type: Transform rot: -1.5707963267948966 rad pos: 0.5,13.5 parent: 1 - proto: WeaponCapacitorRecharger entities: - - uid: 971 + - uid: 1011 components: - type: Transform rot: -1.5707963267948966 rad @@ -9728,7 +10010,7 @@ entities: parent: 1 - proto: WeaponDisabler entities: - - uid: 972 + - uid: 1012 components: - type: Transform pos: 5.8357854,1.3758063 @@ -9736,7 +10018,7 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 973 + - uid: 1013 components: - type: Transform pos: 5.8514104,1.6258063 @@ -9746,7 +10028,7 @@ entities: linearDamping: 0 - proto: WeaponPistolComplianceImperial entities: - - uid: 974 + - uid: 1014 components: - type: Transform pos: 5.2889104,1.3445563 @@ -9754,7 +10036,7 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 975 + - uid: 1015 components: - type: Transform pos: 5.307101,1.5945563 @@ -9764,7 +10046,7 @@ entities: linearDamping: 0 - proto: WeaponTurretNeedler entities: - - uid: 976 + - uid: 1016 components: - type: Transform rot: 1.5707963267948966 rad @@ -9797,8 +10079,8 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 485 - - uid: 977 + linkedConsoleId: 503 + - uid: 1017 components: - type: Transform rot: -1.5707963267948966 rad @@ -9831,8 +10113,8 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 485 - - uid: 978 + linkedConsoleId: 503 + - uid: 1018 components: - type: Transform rot: 1.5707963267948966 rad @@ -9865,8 +10147,8 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 485 - - uid: 979 + linkedConsoleId: 503 + - uid: 1019 components: - type: Transform rot: -1.5707963267948966 rad @@ -9899,31 +10181,21 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 485 - - uid: 980 + linkedConsoleId: 503 +- proto: WeaponTurretPDT + entities: + - uid: 1020 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,33.5 + rot: 1.5707963267948966 rad + pos: 9.5,1.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 5 - - type: Battery - startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: null machine_board: !type:Container showEnts: False occludes: True @@ -9932,67 +10204,24 @@ entities: showEnts: False occludes: True ents: [] - - type: PointCannon - linkedConsoleId: 485 - - uid: 981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,33.5 - parent: 1 - type: ApcPowerReceiver powerLoad: 5 + - type: PointCannon + linkedConsoleId: 503 - type: Battery startingCharge: 0 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: PointCannon - linkedConsoleId: 485 -- proto: WeaponTurretVulcan - entities: - - uid: 982 + - uid: 1021 components: - type: Transform - pos: 9.5,1.5 + rot: -1.5707963267948966 rad + pos: -5.5,30.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 5 - - type: Battery - startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: null machine_board: !type:Container showEnts: False occludes: True @@ -10001,65 +10230,24 @@ entities: showEnts: False occludes: True ents: [] - - type: PointCannon - linkedConsoleId: 485 - - uid: 983 - components: - - type: Transform - pos: -8.5,1.5 - parent: 1 - type: ApcPowerReceiver powerLoad: 5 + - type: PointCannon + linkedConsoleId: 503 - type: Battery startingCharge: 0 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: PointCannon - linkedConsoleId: 485 - - uid: 984 + - uid: 1022 components: - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: 6.5,30.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 5 - - type: Battery - startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: null machine_board: !type:Container showEnts: False occludes: True @@ -10068,30 +10256,24 @@ entities: showEnts: False occludes: True ents: [] - - uid: 985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,30.5 - parent: 1 - type: ApcPowerReceiver powerLoad: 5 + - type: PointCannon + linkedConsoleId: 503 - type: Battery startingCharge: 0 + - uid: 1023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,1.5 + parent: 1 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: null machine_board: !type:Container showEnts: False occludes: True @@ -10100,27 +10282,33 @@ entities: showEnts: False occludes: True ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: PointCannon + linkedConsoleId: 503 + - type: Battery + startingCharge: 0 - proto: WindowReinforcedDirectional entities: - - uid: 986 + - uid: 1024 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,12.5 parent: 1 - - uid: 987 + - uid: 1025 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 988 + - uid: 1026 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,12.5 parent: 1 - - uid: 989 + - uid: 1027 components: - type: Transform rot: -1.5707963267948966 rad diff --git a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_saintsfall.yml b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_saintsfall.yml index 33342c16716..bac3b7601f5 100644 --- a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_saintsfall.yml +++ b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_saintsfall.yml @@ -4,8 +4,8 @@ meta: engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 03/10/2026 14:33:24 - entityCount: 196 + time: 03/10/2026 22:11:44 + entityCount: 214 maps: [] grids: - 1 @@ -159,6 +159,36 @@ entities: 246: 1,-4 251: 3,-4 256: 5,-4 + 266: 0,2 + 271: 0,3 + 300: 0,-4 + 303: 1,-4 + 308: 3,-4 + 313: 5,-4 + 323: 0,2 + 328: 0,3 + 357: 0,-4 + 360: 1,-4 + 365: 3,-4 + 370: 5,-4 + 380: 0,2 + 385: 0,3 + 414: 0,-4 + 417: 1,-4 + 422: 3,-4 + 427: 5,-4 + 437: 0,2 + 442: 0,3 + 471: 0,-4 + 474: 1,-4 + 479: 3,-4 + 484: 5,-4 + 494: 0,2 + 499: 0,3 + 528: 0,-4 + 531: 1,-4 + 536: 3,-4 + 541: 5,-4 - node: zIndex: 1 id: LatticeCornerNW @@ -187,6 +217,36 @@ entities: 253: 3,-4 258: 5,-4 261: 6,-4 + 289: 6,2 + 294: 6,3 + 305: 1,-4 + 310: 3,-4 + 315: 5,-4 + 318: 6,-4 + 346: 6,2 + 351: 6,3 + 362: 1,-4 + 367: 3,-4 + 372: 5,-4 + 375: 6,-4 + 403: 6,2 + 408: 6,3 + 419: 1,-4 + 424: 3,-4 + 429: 5,-4 + 432: 6,-4 + 460: 6,2 + 465: 6,3 + 476: 1,-4 + 481: 3,-4 + 486: 5,-4 + 489: 6,-4 + 517: 6,2 + 522: 6,3 + 533: 1,-4 + 538: 3,-4 + 543: 5,-4 + 546: 6,-4 - node: zIndex: 1 id: LatticeCornerSE @@ -211,6 +271,31 @@ entities: 217: 0,4 220: 1,4 225: 5,4 + 264: 0,2 + 269: 0,3 + 274: 0,4 + 277: 1,4 + 282: 5,4 + 321: 0,2 + 326: 0,3 + 331: 0,4 + 334: 1,4 + 339: 5,4 + 378: 0,2 + 383: 0,3 + 388: 0,4 + 391: 1,4 + 396: 5,4 + 435: 0,2 + 440: 0,3 + 445: 0,4 + 448: 1,4 + 453: 5,4 + 492: 0,2 + 497: 0,3 + 502: 0,4 + 505: 1,4 + 510: 5,4 - node: zIndex: 1 id: LatticeCornerSW @@ -235,6 +320,31 @@ entities: 231: 6,2 236: 6,3 240: 6,4 + 279: 1,4 + 284: 5,4 + 288: 6,2 + 293: 6,3 + 297: 6,4 + 336: 1,4 + 341: 5,4 + 345: 6,2 + 350: 6,3 + 354: 6,4 + 393: 1,4 + 398: 5,4 + 402: 6,2 + 407: 6,3 + 411: 6,4 + 450: 1,4 + 455: 5,4 + 459: 6,2 + 464: 6,3 + 468: 6,4 + 507: 1,4 + 512: 5,4 + 516: 6,2 + 521: 6,3 + 525: 6,4 - node: id: LatticeEdgeE decals: @@ -274,6 +384,51 @@ entities: 244: 1,-4 249: 3,-4 254: 5,-4 + 263: 0,2 + 268: 0,3 + 273: 0,4 + 276: 1,4 + 281: 5,4 + 298: 0,-4 + 301: 1,-4 + 306: 3,-4 + 311: 5,-4 + 320: 0,2 + 325: 0,3 + 330: 0,4 + 333: 1,4 + 338: 5,4 + 355: 0,-4 + 358: 1,-4 + 363: 3,-4 + 368: 5,-4 + 377: 0,2 + 382: 0,3 + 387: 0,4 + 390: 1,4 + 395: 5,4 + 412: 0,-4 + 415: 1,-4 + 420: 3,-4 + 425: 5,-4 + 434: 0,2 + 439: 0,3 + 444: 0,4 + 447: 1,4 + 452: 5,4 + 469: 0,-4 + 472: 1,-4 + 477: 3,-4 + 482: 5,-4 + 491: 0,2 + 496: 0,3 + 501: 0,4 + 504: 1,4 + 509: 5,4 + 526: 0,-4 + 529: 1,-4 + 534: 3,-4 + 539: 5,-4 - node: id: LatticeEdgeN decals: @@ -313,6 +468,51 @@ entities: 250: 3,-4 255: 5,-4 259: 6,-4 + 265: 0,2 + 270: 0,3 + 286: 6,2 + 291: 6,3 + 299: 0,-4 + 302: 1,-4 + 307: 3,-4 + 312: 5,-4 + 316: 6,-4 + 322: 0,2 + 327: 0,3 + 343: 6,2 + 348: 6,3 + 356: 0,-4 + 359: 1,-4 + 364: 3,-4 + 369: 5,-4 + 373: 6,-4 + 379: 0,2 + 384: 0,3 + 400: 6,2 + 405: 6,3 + 413: 0,-4 + 416: 1,-4 + 421: 3,-4 + 426: 5,-4 + 430: 6,-4 + 436: 0,2 + 441: 0,3 + 457: 6,2 + 462: 6,3 + 470: 0,-4 + 473: 1,-4 + 478: 3,-4 + 483: 5,-4 + 487: 6,-4 + 493: 0,2 + 498: 0,3 + 514: 6,2 + 519: 6,3 + 527: 0,-4 + 530: 1,-4 + 535: 3,-4 + 540: 5,-4 + 544: 6,-4 - node: id: LatticeEdgeS decals: @@ -348,6 +548,46 @@ entities: 228: 6,2 233: 6,3 238: 6,4 + 262: 0,2 + 267: 0,3 + 272: 0,4 + 275: 1,4 + 280: 5,4 + 285: 6,2 + 290: 6,3 + 295: 6,4 + 319: 0,2 + 324: 0,3 + 329: 0,4 + 332: 1,4 + 337: 5,4 + 342: 6,2 + 347: 6,3 + 352: 6,4 + 376: 0,2 + 381: 0,3 + 386: 0,4 + 389: 1,4 + 394: 5,4 + 399: 6,2 + 404: 6,3 + 409: 6,4 + 433: 0,2 + 438: 0,3 + 443: 0,4 + 446: 1,4 + 451: 5,4 + 456: 6,2 + 461: 6,3 + 466: 6,4 + 490: 0,2 + 495: 0,3 + 500: 0,4 + 503: 1,4 + 508: 5,4 + 513: 6,2 + 518: 6,3 + 523: 6,4 - node: id: LatticeEdgeW decals: @@ -387,6 +627,51 @@ entities: 252: 3,-4 257: 5,-4 260: 6,-4 + 278: 1,4 + 283: 5,4 + 287: 6,2 + 292: 6,3 + 296: 6,4 + 304: 1,-4 + 309: 3,-4 + 314: 5,-4 + 317: 6,-4 + 335: 1,4 + 340: 5,4 + 344: 6,2 + 349: 6,3 + 353: 6,4 + 361: 1,-4 + 366: 3,-4 + 371: 5,-4 + 374: 6,-4 + 392: 1,4 + 397: 5,4 + 401: 6,2 + 406: 6,3 + 410: 6,4 + 418: 1,-4 + 423: 3,-4 + 428: 5,-4 + 431: 6,-4 + 449: 1,4 + 454: 5,4 + 458: 6,2 + 463: 6,3 + 467: 6,4 + 475: 1,-4 + 480: 3,-4 + 485: 5,-4 + 488: 6,-4 + 506: 1,4 + 511: 5,4 + 515: 6,2 + 520: 6,3 + 524: 6,4 + 532: 1,-4 + 537: 3,-4 + 542: 5,-4 + 545: 6,-4 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' @@ -525,7 +810,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 83 + - 126 - type: Physics canCollide: False - uid: 3 @@ -536,7 +821,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 83 + - 126 - type: Physics canCollide: False - proto: AirlockShuttle @@ -555,7 +840,7 @@ entities: parent: 1 - proto: AirTankFilled entities: - - uid: 10 + - uid: 7 components: - type: Transform parent: 6 @@ -564,9 +849,20 @@ entities: linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: APCHyperCapacity +- proto: APCHighCapacity entities: - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - type: BatterySelfRecharger + autoRechargeRate: 100000 + autoRecharge: True +- proto: APCHyperCapacity + entities: + - uid: 14 components: - type: Transform rot: 3.141592653589793 rad @@ -577,30 +873,37 @@ entities: autoRecharge: True - proto: AtmosDeviceFanTiny entities: - - uid: 14 + - uid: 15 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,4.5 parent: 1 - - uid: 15 + - uid: 16 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 16 + - uid: 17 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 17 + - uid: 18 components: - type: Transform pos: 2.5,4.5 parent: 1 -- proto: BoriaticGeneratorHerculesShuttle +- proto: BaseSubstationWall entities: - - uid: 18 + - uid: 19 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 +- proto: BoriaticGeneratorEinsteinShuttle + entities: + - uid: 20 components: - type: Transform pos: 2.5,-1.5 @@ -611,7 +914,7 @@ entities: bodyType: Static - proto: ButtonFrameCaution entities: - - uid: 19 + - uid: 21 components: - type: Transform rot: -1.5707963267948966 rad @@ -619,435 +922,525 @@ entities: parent: 1 - proto: CableApcExtension entities: - - uid: 20 + - uid: 22 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 21 + - uid: 23 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 22 + - uid: 24 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 23 + - uid: 25 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 24 + - uid: 26 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 25 + - uid: 27 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 26 + - uid: 28 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 27 + - uid: 29 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 28 + - uid: 30 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 29 + - uid: 31 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 30 + - uid: 32 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 31 + - uid: 33 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 32 + - uid: 34 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 33 + - uid: 35 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 34 + - uid: 36 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 35 + - uid: 37 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 36 + - uid: 38 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 37 + - uid: 39 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 38 + - uid: 40 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 39 + - uid: 41 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 40 + - uid: 42 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 41 + - uid: 43 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 42 + - uid: 44 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 43 + - uid: 45 components: - type: Transform pos: 3.5,-2.5 parent: 1 - - uid: 44 + - uid: 46 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 45 + - uid: 47 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 46 + - uid: 48 components: - type: Transform pos: 5.5,-3.5 parent: 1 - - uid: 47 + - uid: 49 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 48 + - uid: 50 components: - type: Transform pos: 6.5,-2.5 parent: 1 - - uid: 49 + - uid: 51 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 50 + - uid: 52 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 51 + - uid: 53 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 52 + - uid: 54 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 53 + - uid: 55 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 54 + - uid: 56 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 55 + - uid: 57 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 56 + - uid: 58 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 57 + - uid: 59 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 58 + - uid: 60 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 59 + - uid: 61 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 60 + - uid: 62 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 61 + - uid: 63 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 62 + - uid: 64 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 63 + - uid: 65 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 64 + - uid: 66 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 65 + - uid: 67 components: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 66 + - uid: 68 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 67 + - uid: 69 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 68 + - uid: 70 components: - type: Transform pos: 3.5,-2.5 parent: 1 - - uid: 69 + - uid: 71 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 70 + - uid: 72 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 71 + - uid: 73 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 174 + - uid: 74 components: - type: Transform pos: 2.5,-1.5 parent: 1 - proto: CableHV entities: - - uid: 72 + - uid: 75 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 73 + - uid: 76 components: - type: Transform pos: 2.5,-2.5 parent: 1 + - uid: 77 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 - proto: CableMV entities: - - uid: 74 + - uid: 90 components: - type: Transform pos: 3.5,-2.5 parent: 1 - - uid: 75 + - uid: 91 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 76 + - uid: 92 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 77 + - uid: 93 components: - type: Transform pos: 3.5,-2.5 parent: 1 - - uid: 78 + - uid: 94 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 175 + - uid: 95 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 176 + - uid: 96 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 177 + - uid: 97 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 178 + - uid: 98 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 179 + - uid: 99 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 180 + - uid: 100 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 181 + - uid: 101 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 182 + - uid: 102 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 183 + - uid: 103 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 184 + - uid: 104 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 185 + - uid: 105 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 186 + - uid: 106 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 187 + - uid: 107 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 188 + - uid: 108 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 189 + - uid: 109 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 190 + - uid: 110 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 191 + - uid: 111 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 192 + - uid: 112 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 193 + - uid: 113 components: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 194 + - uid: 114 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 195 + - uid: 115 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 196 + - uid: 116 components: - type: Transform pos: 5.5,-2.5 parent: 1 + - uid: 117 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 - proto: CargoPallet entities: - - uid: 79 + - uid: 122 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 80 + - uid: 123 components: - type: Transform pos: 5.5,1.5 parent: 1 - proto: ChairPilotSeat entities: - - uid: 81 + - uid: 124 components: - type: Transform rot: 3.141592653589793 rad @@ -1055,7 +1448,7 @@ entities: parent: 1 - proto: ClothingHeadHelmetImperialEVA entities: - - uid: 11 + - uid: 8 components: - type: Transform parent: 6 @@ -1066,7 +1459,7 @@ entities: - type: InsideEntityStorage - proto: ClothingMaskImperialCombatGasmask entities: - - uid: 8 + - uid: 9 components: - type: Transform parent: 6 @@ -1077,7 +1470,7 @@ entities: - type: InsideEntityStorage - proto: ClothingOuterCoatImperialSoftsuit entities: - - uid: 9 + - uid: 10 components: - type: Transform parent: 6 @@ -1088,7 +1481,7 @@ entities: - type: InsideEntityStorage - proto: ClothingShoesBootsMagCombat entities: - - uid: 7 + - uid: 11 components: - type: Transform parent: 6 @@ -1099,14 +1492,14 @@ entities: - type: InsideEntityStorage - proto: ComputerTabletopAdvancedRadar entities: - - uid: 82 + - uid: 125 components: - type: Transform pos: 5.5,-0.5 parent: 1 - proto: ComputerTabletopShuttle entities: - - uid: 83 + - uid: 126 components: - type: Transform pos: 4.5,-0.5 @@ -1142,31 +1535,31 @@ entities: - Module E - proto: FaxMachineShip entities: - - uid: 84 + - uid: 127 components: - type: Transform pos: 5.5,-1.5 parent: 1 - proto: FirelockEdge entities: - - uid: 85 + - uid: 128 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 1 - - uid: 86 + - uid: 129 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 87 + - uid: 130 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 - - uid: 88 + - uid: 131 components: - type: Transform rot: -1.5707963267948966 rad @@ -1174,32 +1567,32 @@ entities: parent: 1 - proto: GasPassiveVent entities: - - uid: 89 + - uid: 132 components: - type: Transform pos: 6.5,4.5 parent: 1 - proto: GasPipeBend entities: - - uid: 90 + - uid: 133 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,3.5 parent: 1 - - uid: 91 + - uid: 134 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,0.5 parent: 1 - - uid: 92 + - uid: 135 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 parent: 1 - - uid: 93 + - uid: 136 components: - type: Transform rot: 1.5707963267948966 rad @@ -1207,19 +1600,19 @@ entities: parent: 1 - proto: GasPipeStraight entities: - - uid: 94 + - uid: 137 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 95 + - uid: 138 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,2.5 parent: 1 - - uid: 96 + - uid: 139 components: - type: Transform rot: 3.141592653589793 rad @@ -1227,7 +1620,7 @@ entities: parent: 1 - proto: GasPipeTJunction entities: - - uid: 97 + - uid: 140 components: - type: Transform rot: 3.141592653589793 rad @@ -1235,7 +1628,7 @@ entities: parent: 1 - proto: GasVentPump entities: - - uid: 98 + - uid: 141 components: - type: Transform rot: 1.5707963267948966 rad @@ -1243,7 +1636,7 @@ entities: parent: 1 - proto: GasVentScrubber entities: - - uid: 99 + - uid: 142 components: - type: Transform rot: -1.5707963267948966 rad @@ -1251,20 +1644,20 @@ entities: parent: 1 - proto: GravityGeneratorMini entities: - - uid: 100 + - uid: 143 components: - type: Transform pos: 1.5,-1.5 parent: 1 - proto: Grille entities: - - uid: 101 + - uid: 144 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 1 - - uid: 102 + - uid: 145 components: - type: Transform rot: 3.141592653589793 rad @@ -1283,24 +1676,19 @@ entities: - type: InsideEntityStorage - proto: JugBoriaticFuel entities: - - uid: 103 - components: - - type: Transform - pos: 2.2914922,-1.4761214 - parent: 1 - - uid: 104 + - uid: 146 components: - type: Transform - pos: 2.499561,-1.4761214 + pos: 2.3516612,-1.6302726 parent: 1 - - uid: 105 + - uid: 147 components: - type: Transform - pos: 2.6481805,-1.4761214 + pos: 2.6861567,-1.4002066 parent: 1 - proto: MagazineVulcan entities: - - uid: 106 + - uid: 148 components: - type: Transform pos: 5.522419,1.5607862 @@ -1309,7 +1697,7 @@ entities: containers: ballistic-ammo: !type:Container ents: [] - - uid: 107 + - uid: 149 components: - type: Transform pos: 5.522419,1.5607862 @@ -1318,20 +1706,18 @@ entities: containers: ballistic-ammo: !type:Container ents: [] -- proto: NTVulcanTurret +- proto: NTVulcanTurretFilled entities: - - uid: 108 + - uid: 150 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,3.5 parent: 1 + - type: ChamberMagazineAmmoProvider + boltClosed: True - type: ApcPowerReceiver powerLoad: 5000 - - type: Battery - startingCharge: 19519.053 - - type: ApcPowerReceiverBattery - enabled: True - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -1354,20 +1740,20 @@ entities: showEnts: False occludes: True ents: [] - - type: ChamberMagazineAmmoProvider - boltClosed: True - - uid: 109 + - type: Battery + startingCharge: 19666.309 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 151 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,3.5 parent: 1 + - type: ChamberMagazineAmmoProvider + boltClosed: True - type: ApcPowerReceiver powerLoad: 5000 - - type: Battery - startingCharge: 19519.053 - - type: ApcPowerReceiverBattery - enabled: True - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -1390,35 +1776,37 @@ entities: showEnts: False occludes: True ents: [] - - type: ChamberMagazineAmmoProvider - boltClosed: True + - type: Battery + startingCharge: 19669.629 + - type: ApcPowerReceiverBattery + enabled: True - proto: PoweredSmallLight entities: - - uid: 110 + - uid: 152 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,1.5 parent: 1 - - uid: 111 + - uid: 153 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,1.5 parent: 1 - - uid: 112 + - uid: 154 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 1 - - uid: 113 + - uid: 155 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,2.5 parent: 1 - - uid: 114 + - uid: 156 components: - type: Transform rot: -1.5707963267948966 rad @@ -1426,7 +1814,7 @@ entities: parent: 1 - proto: Rack entities: - - uid: 115 + - uid: 157 components: - type: Transform rot: -1.5707963267948966 rad @@ -1434,25 +1822,25 @@ entities: parent: 1 - proto: ShuttersNormal entities: - - uid: 116 + - uid: 158 components: - type: Transform pos: 2.5,4.5 parent: 1 - type: DeviceLinkSink links: - - 118 - - uid: 117 + - 160 + - uid: 159 components: - type: Transform pos: 4.5,4.5 parent: 1 - type: DeviceLinkSink links: - - 118 + - 160 - proto: SignalButton entities: - - uid: 118 + - uid: 160 components: - type: Transform rot: -1.5707963267948966 rad @@ -1460,28 +1848,20 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 117: + 159: - - Pressed - Toggle - 116: + 158: - - Pressed - Toggle - proto: SmallGyroscopeSecurity entities: - - uid: 119 + - uid: 161 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 1 -- proto: SubstationWallBasic - entities: - - uid: 120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 1 - proto: SuitStorageBase entities: - uid: 6 @@ -1495,27 +1875,27 @@ entities: showEnts: False occludes: True ents: + - 7 - 10 - 9 - 8 - 11 - - 7 - 12 - proto: TableReinforced entities: - - uid: 121 + - uid: 162 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 1 - - uid: 122 + - uid: 163 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 1 - - uid: 123 + - uid: 164 components: - type: Transform rot: 3.141592653589793 rad @@ -1523,301 +1903,289 @@ entities: parent: 1 - proto: ThrusterDSMFighter entities: - - uid: 124 + - uid: 165 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 125 + - uid: 166 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,3.5 parent: 1 - - uid: 126 + - uid: 167 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 127 + - uid: 168 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-3.5 parent: 1 - - uid: 128 + - uid: 169 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - - uid: 129 + - uid: 170 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 1 - - uid: 130 + - uid: 171 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-3.5 parent: 1 -- proto: WallReinforced +- proto: WallPlastitanium entities: - - uid: 131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,0.5 - parent: 1 - - uid: 132 + - uid: 172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 + pos: 0.5,-2.5 parent: 1 - - uid: 133 + - uid: 173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,1.5 + pos: 5.5,2.5 parent: 1 - - uid: 134 + - uid: 174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,3.5 + pos: 5.5,3.5 parent: 1 - - uid: 135 + - uid: 175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 + pos: 6.5,-2.5 parent: 1 - - uid: 136 + - uid: 176 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 1 - - uid: 137 + - uid: 177 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-3.5 + pos: 4.5,-2.5 parent: 1 - - uid: 138 + - uid: 178 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-2.5 + pos: 2.5,-2.5 parent: 1 - - uid: 139 + - uid: 179 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 1 - - uid: 140 + - uid: 180 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-2.5 + pos: 2.5,-3.5 parent: 1 - - uid: 141 + - uid: 181 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-3.5 + pos: 4.5,-3.5 parent: 1 - - uid: 142 + - uid: 182 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,2.5 + pos: 1.5,3.5 parent: 1 - - uid: 143 + - uid: 183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 + pos: 6.5,-0.5 parent: 1 - - uid: 144 + - uid: 184 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 1 - - uid: 145 + - uid: 185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,4.5 + pos: 0.5,-1.5 parent: 1 - - uid: 146 + - uid: 186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,3.5 + pos: 6.5,2.5 parent: 1 - - uid: 147 + - uid: 187 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,1.5 parent: 1 - - uid: 148 + - uid: 188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-2.5 + pos: 6.5,0.5 parent: 1 -- proto: WallSolidDiagonalNortheastCurved - entities: - - uid: 149 + - uid: 189 components: - type: Transform - pos: 0.5,2.5 + pos: 0.5,1.5 parent: 1 - - uid: 150 + - uid: 195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 + pos: 3.5,4.5 parent: 1 - - uid: 151 +- proto: WallPlastitaniumDiagonalCurved + entities: + - uid: 190 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-3.5 parent: 1 - - uid: 152 + - uid: 191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,2.5 + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 parent: 1 - - uid: 153 + - uid: 192 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 193 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,4.5 parent: 1 - - uid: 154 + - uid: 194 components: - type: Transform - pos: 1.5,4.5 + pos: 0.5,2.5 parent: 1 - proto: WarpPointShip entities: - - uid: 155 + - uid: 196 components: + - type: MetaData + name: Dsm Saintsfall - type: Transform pos: 3.5,0.5 parent: 1 - proto: WindoorSecure entities: - - uid: 156 + - uid: 197 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 1 - - uid: 157 + - uid: 198 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 - - uid: 158 + - uid: 199 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 159 + - uid: 200 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 1 - - uid: 160 + - uid: 201 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 161 + - uid: 202 components: - type: Transform pos: 4.5,1.5 parent: 1 - proto: WindowReinforcedDirectional entities: - - uid: 162 + - uid: 203 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,1.5 parent: 1 - - uid: 163 + - uid: 204 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-2.5 parent: 1 - - uid: 164 + - uid: 205 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,1.5 parent: 1 - - uid: 165 + - uid: 206 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 1 - - uid: 166 + - uid: 207 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 1 - - uid: 167 + - uid: 208 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-2.5 parent: 1 - - uid: 168 + - uid: 209 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 169 + - uid: 210 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-0.5 parent: 1 - - uid: 170 + - uid: 211 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 171 + - uid: 212 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 1 - - uid: 172 + - uid: 213 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-1.5 parent: 1 - - uid: 173 + - uid: 214 components: - type: Transform rot: 3.141592653589793 rad diff --git a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_gargut.yml b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_gargut.yml index 0d3e37c760c..7f5a99463c2 100644 --- a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_gargut.yml +++ b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_gargut.yml @@ -4,8 +4,8 @@ meta: engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 03/10/2026 14:24:44 - entityCount: 1440 + time: 03/10/2026 23:44:41 + entityCount: 1447 maps: [] grids: - 1 @@ -19,6 +19,7 @@ tilemap: 163: FloorReinforced 196: FloorTechMaint2 3: FloorTechMaintDirectional + 4: FloorWhite 237: Lattice 276: Plating 1: PlatingBurnt @@ -41,7 +42,7 @@ entities: version: 7 -1,0: ind: -1,0 - tiles: owAAAAAAABQBAAAAAAACAAAAAAAAFAEAAAAAAMQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAAAEAAAAAAAAUAQAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAFAEAAAAAAEQAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAABAAAAAAAAFAEAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAABQBAAAAAAAmAAAAAAAAJgAAAAAAAAEAAAAAAAAUAQAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAUAQAAAAAAAQAAAAAAABQBAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAFAEAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAFAEAAAAAAAEAAAAAAAAUAQAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAAwAAAAAAACYAAAAAAAABAAAAAAAAAQAAAAAAAMQAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAAMQAAAAAAAABAAAAAAAAowAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAJgAAAAAAAKMAAAAAAAAUAQAAAAAA7QAAAAAAAO0AAAAAAADtAAAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAAowAAAAAAAKMAAAAAAAAUAQAAAAAAJgAAAAAAAAEAAAAAAAABAAAAAAAAxAAAAAAAAAEAAAAAAACjAAAAAAAAFAEAAAAAAO0AAAAAAADtAAAAAAAA7QAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAmAAAAAAAAJgAAAAAAABQBAAAAAAABAAAAAAAAxAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAxAAAAAAAAMQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAxAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAAAUAQAAAAAAFAEAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAABQBAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAARAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BAAAAAAAABQBAAAAAAACAAAAAAAAFAEAAAAAAMQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAAAEAAAAAAAAUAQAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAFAEAAAAAAEQAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAABAAAAAAAAFAEAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAABQBAAAAAAAmAAAAAAAAJgAAAAAAAAEAAAAAAAAUAQAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAUAQAAAAAAAQAAAAAAABQBAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAFAEAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAFAEAAAAAAAEAAAAAAAAUAQAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAAwAAAAAAACYAAAAAAAABAAAAAAAAAQAAAAAAAMQAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAAMQAAAAAAAABAAAAAAAAowAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAJgAAAAAAAKMAAAAAAAAUAQAAAAAA7QAAAAAAAO0AAAAAAADtAAAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAAowAAAAAAAKMAAAAAAAAUAQAAAAAAJgAAAAAAAAEAAAAAAAABAAAAAAAAxAAAAAAAAAEAAAAAAACjAAAAAAAAFAEAAAAAAO0AAAAAAADtAAAAAAAA7QAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAmAAAAAAAAJgAAAAAAABQBAAAAAAABAAAAAAAAxAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAxAAAAAAAAMQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAxAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAAAUAQAAAAAAFAEAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAABQBAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAARAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 0,-1: ind: 0,-1 @@ -49,15 +50,15 @@ entities: version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAFAEAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAADtAAAAAAAA7QAAAAAAAO0AAAAAAABEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAA7QAAAAAAAO0AAAAAAADtAAAAAAAAFAEAAAAAABQBAAAAAAACAAAAAAAAxAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAAAgAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAAAMAAAAAAADEAAAAAAAAFAEAAAAAAAIAAAAAAAAUAQAAAAAAxAAAAAAAAKMAAAAAAACjAAAAAAAAowAAAAAAAKMAAAAAAAAUAQAAAAAAAQAAAAAAAMQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAowAAAAAAAMQAAAAAAAACAAAAAAAAFAEAAAAAAMQAAAAAAACjAAAAAAAAowAAAAAAAKMAAAAAAACjAAAAAAAAxAAAAAAAAAEAAAAAAAAUAQAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAFAEAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAFAEAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAABQBAAAAAADtAAAAAAAA7QAAAAAAAO0AAAAAAABEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAAMQAAAAAAAAUAQAAAAAA7QAAAAAAAO0AAAAAAADtAAAAAAAABAAAAAAAABQBAAAAAAACAAAAAAAAxAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAMQAAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAAAQAAAAAAAAUAQAAAAAAAgAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAADEAAAAAAAAFAEAAAAAAAMAAAAAAAAEAAAAAAAAFAEAAAAAAAIAAAAAAAAUAQAAAAAAxAAAAAAAAKMAAAAAAACjAAAAAAAAowAAAAAAAKMAAAAAAAAUAQAAAAAAAQAAAAAAAMQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAMQAAAAAAAACAAAAAAAAFAEAAAAAAMQAAAAAAACjAAAAAAAAowAAAAAAAKMAAAAAAACjAAAAAAAAxAAAAAAAAAEAAAAAAAAUAQAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAFAEAAAAAAA== version: 7 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAJgAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAJgAAAAAAACYAAAAAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAACjAAAAAAAAowAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAJgAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAJgAAAAAAACYAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAAAEAAAAAAAABAAAAAAAAA== version: 7 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAACjAAAAAAAAowAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAACYAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAmAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAJgAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO0AAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAADEAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAUAQAAAAAAxAAAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAFAEAAAAAAEQAAAAAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAABEAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAxAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAACYAAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAmAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAJgAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO0AAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAADEAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAUAQAAAAAAxAAAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAFAEAAAAAAEQAAAAAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAABEAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAxAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,1: ind: -1,1 @@ -100,7 +101,7 @@ entities: color: '#EFB34196' id: BotRightGreyscale decals: - 216: -12,-5 + 207: -12,-5 - node: color: '#EFB34196' id: BoxGreyscale @@ -110,1881 +111,2478 @@ entities: 2: -16,6 3: 11,9 4: 10,9 - 214: -11,-5 - 215: -10,-5 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerNe - decals: - 114: -16,0 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerNw - decals: - 113: -18,0 + 205: -11,-5 + 206: -10,-5 - node: color: '#EFB34196' id: BrickTileSteelCornerSe decals: - 111: -16,-1 - 127: -8,2 + 118: -8,2 - node: color: '#EFB34196' id: BrickTileSteelCornerSw decals: - 112: -18,-1 - 123: -12,2 + 114: -12,2 - node: color: '#EFB34196' id: BrickTileSteelInnerNe decals: - 131: -12,4 - 178: -6,-4 + 122: -12,4 + 169: -6,-4 - node: color: '#EFB34196' id: BrickTileSteelInnerNw decals: - 167: 7,-4 - 179: -6,-4 + 158: 7,-4 + 170: -6,-4 - node: color: '#EFB34196' id: BrickTileSteelInnerSe decals: - 129: -8,4 + 120: -8,4 - node: color: '#EFB34196' id: BrickTileSteelInnerSw decals: - 130: -12,4 - 170: 7,-4 + 121: -12,4 + 161: 7,-4 - node: color: '#EFB34196' id: BrickTileSteelLineE decals: - 128: -8,3 - 140: -6,5 - 174: 7,-5 - 175: 7,-4 + 119: -8,3 + 131: -6,5 + 165: 7,-5 + 166: 7,-4 - node: color: '#EFB34196' id: BrickTileSteelLineN decals: - 108: -16,-3 - 109: -17,0 - 132: -11,4 - 133: -10,4 - 134: -9,4 - 135: -8,4 - 168: 6,-4 + 123: -11,4 + 124: -10,4 + 125: -9,4 + 126: -8,4 + 159: 6,-4 - node: color: '#EFB34196' id: BrickTileSteelLineS decals: - 110: -17,-1 - 124: -11,2 - 125: -10,2 - 126: -9,2 - 169: 6,-4 - 176: -6,-4 + 115: -11,2 + 116: -10,2 + 117: -9,2 + 160: 6,-4 + 167: -6,-4 - node: color: '#EFB34196' id: BrickTileSteelLineW decals: - 122: -12,3 - 141: -6,5 - 173: 7,-5 + 113: -12,3 + 132: -6,5 + 164: 7,-5 - node: color: '#EFB34196' id: DeliveryGreyscale decals: - 212: -9,-5 - 213: -8,-5 + 203: -9,-5 + 204: -8,-5 - node: zIndex: 1 angle: -4.71238898038469 rad id: FloorTechMaintDirectionalCorner decals: - 736: 6,3 - 819: 6,3 - 1017: -3,1 - 1031: 2,1 - 1047: -1,3 - 1055: 1,3 - 1063: -1,-3 - 1071: 1,-3 - 1087: 1,3 - 1104: 2,1 - 1141: 6,3 - 1166: -3,1 - 1204: -1,3 - 1246: 1,-3 - 1354: -1,-3 - 1393: 1,3 - 1410: 2,1 - 1447: 6,3 - 1472: -3,1 - 1510: -1,3 - 1552: 1,-3 - 1660: -1,-3 - 1699: 1,3 - 1716: 2,1 - 1753: 6,3 - 1778: -3,1 - 1816: -1,3 - 1858: 1,-3 - 1966: -1,-3 + 727: 6,3 + 810: 6,3 + 1008: -3,1 + 1022: 2,1 + 1038: -1,3 + 1046: 1,3 + 1054: -1,-3 + 1062: 1,-3 + 1078: 1,3 + 1095: 2,1 + 1132: 6,3 + 1157: -3,1 + 1195: -1,3 + 1237: 1,-3 + 1345: -1,-3 + 1384: 1,3 + 1401: 2,1 + 1438: 6,3 + 1463: -3,1 + 1501: -1,3 + 1543: 1,-3 + 1651: -1,-3 + 1690: 1,3 + 1707: 2,1 + 1744: 6,3 + 1769: -3,1 + 1807: -1,3 + 1849: 1,-3 + 1957: -1,-3 + 1996: 1,3 + 2013: 2,1 + 2050: 6,3 + 2075: -3,1 + 2113: -1,3 + 2155: 1,-3 + 2263: -1,-3 + 2302: 1,3 + 2319: 2,1 + 2356: 6,3 + 2381: -3,1 + 2419: -1,3 + 2461: 1,-3 + 2569: -1,-3 - node: zIndex: 1 angle: -3.141592653589793 rad id: FloorTechMaintDirectionalCorner decals: - 743: 6,-1 - 933: 6,-1 - 1024: -3,-1 - 1038: 2,-1 - 1046: -1,3 - 1054: 1,3 - 1062: -1,-3 - 1070: 1,-3 - 1086: 1,3 - 1203: -1,3 - 1245: 1,-3 - 1262: 2,-1 - 1285: 6,-1 - 1317: -3,-1 - 1353: -1,-3 - 1392: 1,3 - 1509: -1,3 - 1551: 1,-3 - 1568: 2,-1 - 1591: 6,-1 - 1623: -3,-1 - 1659: -1,-3 - 1698: 1,3 - 1815: -1,3 - 1857: 1,-3 - 1874: 2,-1 - 1897: 6,-1 - 1929: -3,-1 - 1965: -1,-3 + 734: 6,-1 + 924: 6,-1 + 1015: -3,-1 + 1029: 2,-1 + 1037: -1,3 + 1045: 1,3 + 1053: -1,-3 + 1061: 1,-3 + 1077: 1,3 + 1194: -1,3 + 1236: 1,-3 + 1253: 2,-1 + 1276: 6,-1 + 1308: -3,-1 + 1344: -1,-3 + 1383: 1,3 + 1500: -1,3 + 1542: 1,-3 + 1559: 2,-1 + 1582: 6,-1 + 1614: -3,-1 + 1650: -1,-3 + 1689: 1,3 + 1806: -1,3 + 1848: 1,-3 + 1865: 2,-1 + 1888: 6,-1 + 1920: -3,-1 + 1956: -1,-3 + 1995: 1,3 + 2112: -1,3 + 2154: 1,-3 + 2171: 2,-1 + 2194: 6,-1 + 2226: -3,-1 + 2262: -1,-3 + 2301: 1,3 + 2418: -1,3 + 2460: 1,-3 + 2477: 2,-1 + 2500: 6,-1 + 2532: -3,-1 + 2568: -1,-3 - node: zIndex: 1 angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalCorner decals: - 749: 10,-1 - 939: 10,-1 - 1020: -2,-1 - 1034: 3,-1 - 1042: -1,3 - 1050: 1,3 - 1058: -1,-3 - 1066: 1,-3 - 1082: 1,3 - 1199: -1,3 - 1241: 1,-3 - 1278: 3,-1 - 1291: 10,-1 - 1333: -2,-1 - 1349: -1,-3 - 1388: 1,3 - 1505: -1,3 - 1547: 1,-3 - 1584: 3,-1 - 1597: 10,-1 - 1639: -2,-1 - 1655: -1,-3 - 1694: 1,3 - 1811: -1,3 - 1853: 1,-3 - 1890: 3,-1 - 1903: 10,-1 - 1945: -2,-1 - 1961: -1,-3 + 740: 10,-1 + 930: 10,-1 + 1011: -2,-1 + 1025: 3,-1 + 1033: -1,3 + 1041: 1,3 + 1049: -1,-3 + 1057: 1,-3 + 1073: 1,3 + 1190: -1,3 + 1232: 1,-3 + 1269: 3,-1 + 1282: 10,-1 + 1324: -2,-1 + 1340: -1,-3 + 1379: 1,3 + 1496: -1,3 + 1538: 1,-3 + 1575: 3,-1 + 1588: 10,-1 + 1630: -2,-1 + 1646: -1,-3 + 1685: 1,3 + 1802: -1,3 + 1844: 1,-3 + 1881: 3,-1 + 1894: 10,-1 + 1936: -2,-1 + 1952: -1,-3 + 1991: 1,3 + 2108: -1,3 + 2150: 1,-3 + 2187: 3,-1 + 2200: 10,-1 + 2242: -2,-1 + 2258: -1,-3 + 2297: 1,3 + 2414: -1,3 + 2456: 1,-3 + 2493: 3,-1 + 2506: 10,-1 + 2548: -2,-1 + 2564: -1,-3 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner decals: - 754: 10,3 - 828: 10,3 - 1014: -2,1 - 1028: 3,1 - 1044: -1,3 - 1052: 1,3 - 1060: -1,-3 - 1068: 1,-3 - 1084: 1,3 - 1121: 3,1 - 1150: 10,3 - 1183: -2,1 - 1201: -1,3 - 1243: 1,-3 - 1351: -1,-3 - 1390: 1,3 - 1427: 3,1 - 1456: 10,3 - 1489: -2,1 - 1507: -1,3 - 1549: 1,-3 - 1657: -1,-3 - 1696: 1,3 - 1733: 3,1 - 1762: 10,3 - 1795: -2,1 - 1813: -1,3 - 1855: 1,-3 - 1963: -1,-3 + 745: 10,3 + 819: 10,3 + 1005: -2,1 + 1019: 3,1 + 1035: -1,3 + 1043: 1,3 + 1051: -1,-3 + 1059: 1,-3 + 1075: 1,3 + 1112: 3,1 + 1141: 10,3 + 1174: -2,1 + 1192: -1,3 + 1234: 1,-3 + 1342: -1,-3 + 1381: 1,3 + 1418: 3,1 + 1447: 10,3 + 1480: -2,1 + 1498: -1,3 + 1540: 1,-3 + 1648: -1,-3 + 1687: 1,3 + 1724: 3,1 + 1753: 10,3 + 1786: -2,1 + 1804: -1,3 + 1846: 1,-3 + 1954: -1,-3 + 1993: 1,3 + 2030: 3,1 + 2059: 10,3 + 2092: -2,1 + 2110: -1,3 + 2152: 1,-3 + 2260: -1,-3 + 2299: 1,3 + 2336: 3,1 + 2365: 10,3 + 2398: -2,1 + 2416: -1,3 + 2458: 1,-3 + 2566: -1,-3 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge decals: - 732: 6,0 - 733: 6,1 - 735: 6,3 - 737: 6,2 - 742: 6,-1 - 814: 6,0 - 815: 6,1 - 816: 6,2 - 818: 6,3 - 932: 6,-1 - 1016: -3,1 - 1023: -3,-1 - 1025: -3,0 - 1030: 2,1 - 1037: 2,-1 - 1039: 2,0 - 1045: -1,3 - 1053: 1,3 - 1061: -1,-3 - 1069: 1,-3 - 1085: 1,3 - 1101: 2,0 - 1103: 2,1 - 1136: 6,0 - 1137: 6,1 - 1138: 6,2 - 1140: 6,3 - 1163: -3,0 - 1165: -3,1 - 1202: -1,3 - 1244: 1,-3 - 1261: 2,-1 - 1284: 6,-1 - 1316: -3,-1 - 1352: -1,-3 - 1391: 1,3 - 1407: 2,0 - 1409: 2,1 - 1442: 6,0 - 1443: 6,1 - 1444: 6,2 - 1446: 6,3 - 1469: -3,0 - 1471: -3,1 - 1508: -1,3 - 1550: 1,-3 - 1567: 2,-1 - 1590: 6,-1 - 1622: -3,-1 - 1658: -1,-3 - 1697: 1,3 - 1713: 2,0 - 1715: 2,1 - 1748: 6,0 - 1749: 6,1 - 1750: 6,2 - 1752: 6,3 - 1775: -3,0 - 1777: -3,1 - 1814: -1,3 - 1856: 1,-3 - 1873: 2,-1 - 1896: 6,-1 - 1928: -3,-1 - 1964: -1,-3 + 723: 6,0 + 724: 6,1 + 726: 6,3 + 728: 6,2 + 733: 6,-1 + 805: 6,0 + 806: 6,1 + 807: 6,2 + 809: 6,3 + 923: 6,-1 + 1007: -3,1 + 1014: -3,-1 + 1016: -3,0 + 1021: 2,1 + 1028: 2,-1 + 1030: 2,0 + 1036: -1,3 + 1044: 1,3 + 1052: -1,-3 + 1060: 1,-3 + 1076: 1,3 + 1092: 2,0 + 1094: 2,1 + 1127: 6,0 + 1128: 6,1 + 1129: 6,2 + 1131: 6,3 + 1154: -3,0 + 1156: -3,1 + 1193: -1,3 + 1235: 1,-3 + 1252: 2,-1 + 1275: 6,-1 + 1307: -3,-1 + 1343: -1,-3 + 1382: 1,3 + 1398: 2,0 + 1400: 2,1 + 1433: 6,0 + 1434: 6,1 + 1435: 6,2 + 1437: 6,3 + 1460: -3,0 + 1462: -3,1 + 1499: -1,3 + 1541: 1,-3 + 1558: 2,-1 + 1581: 6,-1 + 1613: -3,-1 + 1649: -1,-3 + 1688: 1,3 + 1704: 2,0 + 1706: 2,1 + 1739: 6,0 + 1740: 6,1 + 1741: 6,2 + 1743: 6,3 + 1766: -3,0 + 1768: -3,1 + 1805: -1,3 + 1847: 1,-3 + 1864: 2,-1 + 1887: 6,-1 + 1919: -3,-1 + 1955: -1,-3 + 1994: 1,3 + 2010: 2,0 + 2012: 2,1 + 2045: 6,0 + 2046: 6,1 + 2047: 6,2 + 2049: 6,3 + 2072: -3,0 + 2074: -3,1 + 2111: -1,3 + 2153: 1,-3 + 2170: 2,-1 + 2193: 6,-1 + 2225: -3,-1 + 2261: -1,-3 + 2300: 1,3 + 2316: 2,0 + 2318: 2,1 + 2351: 6,0 + 2352: 6,1 + 2353: 6,2 + 2355: 6,3 + 2378: -3,0 + 2380: -3,1 + 2417: -1,3 + 2459: 1,-3 + 2476: 2,-1 + 2499: 6,-1 + 2531: -3,-1 + 2567: -1,-3 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge decals: - 741: 6,-1 - 744: 7,-1 - 745: 8,-1 - 746: 9,-1 - 747: 10,-1 - 931: 6,-1 - 934: 7,-1 - 935: 8,-1 - 936: 9,-1 - 937: 10,-1 - 1018: -2,-1 - 1022: -3,-1 - 1032: 3,-1 - 1036: 2,-1 - 1040: -1,3 - 1048: 1,3 - 1056: -1,-3 - 1064: 1,-3 - 1080: 1,3 - 1197: -1,3 - 1239: 1,-3 - 1260: 2,-1 - 1276: 3,-1 - 1283: 6,-1 - 1286: 7,-1 - 1287: 8,-1 - 1288: 9,-1 - 1289: 10,-1 - 1315: -3,-1 - 1331: -2,-1 - 1347: -1,-3 - 1386: 1,3 - 1503: -1,3 - 1545: 1,-3 - 1566: 2,-1 - 1582: 3,-1 - 1589: 6,-1 - 1592: 7,-1 - 1593: 8,-1 - 1594: 9,-1 - 1595: 10,-1 - 1621: -3,-1 - 1637: -2,-1 - 1653: -1,-3 - 1692: 1,3 - 1809: -1,3 - 1851: 1,-3 - 1872: 2,-1 - 1888: 3,-1 - 1895: 6,-1 - 1898: 7,-1 - 1899: 8,-1 - 1900: 9,-1 - 1901: 10,-1 - 1927: -3,-1 - 1943: -2,-1 - 1959: -1,-3 + 732: 6,-1 + 735: 7,-1 + 736: 8,-1 + 737: 9,-1 + 738: 10,-1 + 922: 6,-1 + 925: 7,-1 + 926: 8,-1 + 927: 9,-1 + 928: 10,-1 + 1009: -2,-1 + 1013: -3,-1 + 1023: 3,-1 + 1027: 2,-1 + 1031: -1,3 + 1039: 1,3 + 1047: -1,-3 + 1055: 1,-3 + 1071: 1,3 + 1188: -1,3 + 1230: 1,-3 + 1251: 2,-1 + 1267: 3,-1 + 1274: 6,-1 + 1277: 7,-1 + 1278: 8,-1 + 1279: 9,-1 + 1280: 10,-1 + 1306: -3,-1 + 1322: -2,-1 + 1338: -1,-3 + 1377: 1,3 + 1494: -1,3 + 1536: 1,-3 + 1557: 2,-1 + 1573: 3,-1 + 1580: 6,-1 + 1583: 7,-1 + 1584: 8,-1 + 1585: 9,-1 + 1586: 10,-1 + 1612: -3,-1 + 1628: -2,-1 + 1644: -1,-3 + 1683: 1,3 + 1800: -1,3 + 1842: 1,-3 + 1863: 2,-1 + 1879: 3,-1 + 1886: 6,-1 + 1889: 7,-1 + 1890: 8,-1 + 1891: 9,-1 + 1892: 10,-1 + 1918: -3,-1 + 1934: -2,-1 + 1950: -1,-3 + 1989: 1,3 + 2106: -1,3 + 2148: 1,-3 + 2169: 2,-1 + 2185: 3,-1 + 2192: 6,-1 + 2195: 7,-1 + 2196: 8,-1 + 2197: 9,-1 + 2198: 10,-1 + 2224: -3,-1 + 2240: -2,-1 + 2256: -1,-3 + 2295: 1,3 + 2412: -1,3 + 2454: 1,-3 + 2475: 2,-1 + 2491: 3,-1 + 2498: 6,-1 + 2501: 7,-1 + 2502: 8,-1 + 2503: 9,-1 + 2504: 10,-1 + 2530: -3,-1 + 2546: -2,-1 + 2562: -1,-3 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge decals: - 748: 10,-1 - 750: 10,0 - 751: 10,1 - 752: 10,3 - 755: 10,2 - 823: 10,0 - 824: 10,1 - 825: 10,2 - 826: 10,3 - 938: 10,-1 - 1012: -2,1 - 1019: -2,-1 - 1021: -2,0 - 1026: 3,1 - 1033: 3,-1 - 1035: 3,0 - 1041: -1,3 - 1049: 1,3 - 1057: -1,-3 - 1065: 1,-3 - 1081: 1,3 - 1118: 3,0 - 1119: 3,1 - 1145: 10,0 - 1146: 10,1 - 1147: 10,2 - 1148: 10,3 - 1180: -2,0 - 1181: -2,1 - 1198: -1,3 - 1240: 1,-3 - 1277: 3,-1 - 1290: 10,-1 - 1332: -2,-1 - 1348: -1,-3 - 1387: 1,3 - 1424: 3,0 - 1425: 3,1 - 1451: 10,0 - 1452: 10,1 - 1453: 10,2 - 1454: 10,3 - 1486: -2,0 - 1487: -2,1 - 1504: -1,3 - 1546: 1,-3 - 1583: 3,-1 - 1596: 10,-1 - 1638: -2,-1 - 1654: -1,-3 - 1693: 1,3 - 1730: 3,0 - 1731: 3,1 - 1757: 10,0 - 1758: 10,1 - 1759: 10,2 - 1760: 10,3 - 1792: -2,0 - 1793: -2,1 - 1810: -1,3 - 1852: 1,-3 - 1889: 3,-1 - 1902: 10,-1 - 1944: -2,-1 - 1960: -1,-3 + 739: 10,-1 + 741: 10,0 + 742: 10,1 + 743: 10,3 + 746: 10,2 + 814: 10,0 + 815: 10,1 + 816: 10,2 + 817: 10,3 + 929: 10,-1 + 1003: -2,1 + 1010: -2,-1 + 1012: -2,0 + 1017: 3,1 + 1024: 3,-1 + 1026: 3,0 + 1032: -1,3 + 1040: 1,3 + 1048: -1,-3 + 1056: 1,-3 + 1072: 1,3 + 1109: 3,0 + 1110: 3,1 + 1136: 10,0 + 1137: 10,1 + 1138: 10,2 + 1139: 10,3 + 1171: -2,0 + 1172: -2,1 + 1189: -1,3 + 1231: 1,-3 + 1268: 3,-1 + 1281: 10,-1 + 1323: -2,-1 + 1339: -1,-3 + 1378: 1,3 + 1415: 3,0 + 1416: 3,1 + 1442: 10,0 + 1443: 10,1 + 1444: 10,2 + 1445: 10,3 + 1477: -2,0 + 1478: -2,1 + 1495: -1,3 + 1537: 1,-3 + 1574: 3,-1 + 1587: 10,-1 + 1629: -2,-1 + 1645: -1,-3 + 1684: 1,3 + 1721: 3,0 + 1722: 3,1 + 1748: 10,0 + 1749: 10,1 + 1750: 10,2 + 1751: 10,3 + 1783: -2,0 + 1784: -2,1 + 1801: -1,3 + 1843: 1,-3 + 1880: 3,-1 + 1893: 10,-1 + 1935: -2,-1 + 1951: -1,-3 + 1990: 1,3 + 2027: 3,0 + 2028: 3,1 + 2054: 10,0 + 2055: 10,1 + 2056: 10,2 + 2057: 10,3 + 2089: -2,0 + 2090: -2,1 + 2107: -1,3 + 2149: 1,-3 + 2186: 3,-1 + 2199: 10,-1 + 2241: -2,-1 + 2257: -1,-3 + 2296: 1,3 + 2333: 3,0 + 2334: 3,1 + 2360: 10,0 + 2361: 10,1 + 2362: 10,2 + 2363: 10,3 + 2395: -2,0 + 2396: -2,1 + 2413: -1,3 + 2455: 1,-3 + 2492: 3,-1 + 2505: 10,-1 + 2547: -2,-1 + 2563: -1,-3 - node: id: FloorTechMaintDirectionalEdge decals: - 734: 6,3 - 738: 8,3 - 739: 7,3 - 740: 9,3 - 753: 10,3 - 817: 6,3 - 820: 7,3 - 821: 8,3 - 822: 9,3 - 827: 10,3 - 1013: -2,1 - 1015: -3,1 - 1027: 3,1 - 1029: 2,1 - 1043: -1,3 - 1051: 1,3 - 1059: -1,-3 - 1067: 1,-3 - 1083: 1,3 - 1102: 2,1 - 1120: 3,1 - 1139: 6,3 - 1142: 7,3 - 1143: 8,3 - 1144: 9,3 - 1149: 10,3 - 1164: -3,1 - 1182: -2,1 - 1200: -1,3 - 1242: 1,-3 - 1350: -1,-3 - 1389: 1,3 - 1408: 2,1 - 1426: 3,1 - 1445: 6,3 - 1448: 7,3 - 1449: 8,3 - 1450: 9,3 - 1455: 10,3 - 1470: -3,1 - 1488: -2,1 - 1506: -1,3 - 1548: 1,-3 - 1656: -1,-3 - 1695: 1,3 - 1714: 2,1 - 1732: 3,1 - 1751: 6,3 - 1754: 7,3 - 1755: 8,3 - 1756: 9,3 - 1761: 10,3 - 1776: -3,1 - 1794: -2,1 - 1812: -1,3 - 1854: 1,-3 - 1962: -1,-3 + 725: 6,3 + 729: 8,3 + 730: 7,3 + 731: 9,3 + 744: 10,3 + 808: 6,3 + 811: 7,3 + 812: 8,3 + 813: 9,3 + 818: 10,3 + 1004: -2,1 + 1006: -3,1 + 1018: 3,1 + 1020: 2,1 + 1034: -1,3 + 1042: 1,3 + 1050: -1,-3 + 1058: 1,-3 + 1074: 1,3 + 1093: 2,1 + 1111: 3,1 + 1130: 6,3 + 1133: 7,3 + 1134: 8,3 + 1135: 9,3 + 1140: 10,3 + 1155: -3,1 + 1173: -2,1 + 1191: -1,3 + 1233: 1,-3 + 1341: -1,-3 + 1380: 1,3 + 1399: 2,1 + 1417: 3,1 + 1436: 6,3 + 1439: 7,3 + 1440: 8,3 + 1441: 9,3 + 1446: 10,3 + 1461: -3,1 + 1479: -2,1 + 1497: -1,3 + 1539: 1,-3 + 1647: -1,-3 + 1686: 1,3 + 1705: 2,1 + 1723: 3,1 + 1742: 6,3 + 1745: 7,3 + 1746: 8,3 + 1747: 9,3 + 1752: 10,3 + 1767: -3,1 + 1785: -2,1 + 1803: -1,3 + 1845: 1,-3 + 1953: -1,-3 + 1992: 1,3 + 2011: 2,1 + 2029: 3,1 + 2048: 6,3 + 2051: 7,3 + 2052: 8,3 + 2053: 9,3 + 2058: 10,3 + 2073: -3,1 + 2091: -2,1 + 2109: -1,3 + 2151: 1,-3 + 2259: -1,-3 + 2298: 1,3 + 2317: 2,1 + 2335: 3,1 + 2354: 6,3 + 2357: 7,3 + 2358: 8,3 + 2359: 9,3 + 2364: 10,3 + 2379: -3,1 + 2397: -2,1 + 2415: -1,3 + 2457: 1,-3 + 2565: -1,-3 - node: zIndex: 1 id: LatticeCornerNE decals: - 292: 0,5 - 300: 1,5 - 313: 2,5 - 326: 3,5 - 352: -3,5 - 365: -2,5 - 378: -1,5 - 391: 0,-5 - 397: 1,-6 - 404: 1,-5 - 410: 2,-6 - 417: 2,-5 - 423: 3,-6 - 430: 3,-5 - 443: -13,-7 - 446: -6,-9 - 450: -3,-6 - 457: -3,-5 - 463: -2,-6 - 470: -2,-5 - 476: -1,-6 - 483: -1,-5 - 489: -20,-2 - 492: -17,-4 - 495: -21,1 - 514: 0,5 - 522: 1,5 - 535: 2,5 - 548: 3,5 - 574: -3,5 - 587: -2,5 - 600: -1,5 - 613: 0,-5 - 619: 1,-6 - 626: 1,-5 - 632: 2,-6 - 639: 2,-5 - 645: 3,-6 - 652: 3,-5 - 665: -13,-7 - 668: -6,-9 - 672: -3,-6 - 679: -3,-5 - 685: -2,-6 - 692: -2,-5 - 698: -1,-6 - 705: -1,-5 - 711: -20,-2 - 714: -17,-4 - 717: -21,1 - 770: 0,5 - 778: 1,5 - 791: 2,5 - 804: 3,5 - 845: -3,5 - 858: -2,5 - 871: -1,5 - 884: 0,-5 - 890: 1,-6 - 897: 1,-5 - 903: 2,-6 - 910: 2,-5 - 916: 3,-6 - 923: 3,-5 - 945: -13,-7 - 948: -6,-9 - 952: -3,-6 - 959: -3,-5 - 965: -2,-6 - 972: -2,-5 - 978: -1,-6 - 985: -1,-5 - 991: -20,-2 - 994: -17,-4 - 997: -21,1 - 1076: 0,5 - 1092: 1,5 - 1109: 2,5 - 1126: 3,5 - 1171: -3,5 - 1188: -2,5 - 1209: -1,5 - 1222: 0,-5 - 1228: 1,-6 - 1235: 1,-5 - 1249: 2,-6 - 1256: 2,-5 - 1265: 3,-6 - 1272: 3,-5 - 1297: -13,-7 - 1300: -6,-9 - 1304: -3,-6 - 1311: -3,-5 - 1320: -2,-6 - 1327: -2,-5 - 1336: -1,-6 - 1343: -1,-5 - 1357: -20,-2 - 1360: -17,-4 - 1363: -21,1 - 1382: 0,5 - 1398: 1,5 - 1415: 2,5 - 1432: 3,5 - 1477: -3,5 - 1494: -2,5 - 1515: -1,5 - 1528: 0,-5 - 1534: 1,-6 - 1541: 1,-5 - 1555: 2,-6 - 1562: 2,-5 - 1571: 3,-6 - 1578: 3,-5 - 1603: -13,-7 - 1606: -6,-9 - 1610: -3,-6 - 1617: -3,-5 - 1626: -2,-6 - 1633: -2,-5 - 1642: -1,-6 - 1649: -1,-5 - 1663: -20,-2 - 1666: -17,-4 - 1669: -21,1 - 1688: 0,5 - 1704: 1,5 - 1721: 2,5 - 1738: 3,5 - 1783: -3,5 - 1800: -2,5 - 1821: -1,5 - 1834: 0,-5 - 1840: 1,-6 - 1847: 1,-5 - 1861: 2,-6 - 1868: 2,-5 - 1877: 3,-6 - 1884: 3,-5 - 1909: -13,-7 - 1912: -6,-9 - 1916: -3,-6 - 1923: -3,-5 - 1932: -2,-6 - 1939: -2,-5 - 1948: -1,-6 - 1955: -1,-5 - 1969: -20,-2 - 1972: -17,-4 - 1975: -21,1 + 283: 0,5 + 291: 1,5 + 304: 2,5 + 317: 3,5 + 343: -3,5 + 356: -2,5 + 369: -1,5 + 382: 0,-5 + 388: 1,-6 + 395: 1,-5 + 401: 2,-6 + 408: 2,-5 + 414: 3,-6 + 421: 3,-5 + 434: -13,-7 + 437: -6,-9 + 441: -3,-6 + 448: -3,-5 + 454: -2,-6 + 461: -2,-5 + 467: -1,-6 + 474: -1,-5 + 480: -20,-2 + 483: -17,-4 + 486: -21,1 + 505: 0,5 + 513: 1,5 + 526: 2,5 + 539: 3,5 + 565: -3,5 + 578: -2,5 + 591: -1,5 + 604: 0,-5 + 610: 1,-6 + 617: 1,-5 + 623: 2,-6 + 630: 2,-5 + 636: 3,-6 + 643: 3,-5 + 656: -13,-7 + 659: -6,-9 + 663: -3,-6 + 670: -3,-5 + 676: -2,-6 + 683: -2,-5 + 689: -1,-6 + 696: -1,-5 + 702: -20,-2 + 705: -17,-4 + 708: -21,1 + 761: 0,5 + 769: 1,5 + 782: 2,5 + 795: 3,5 + 836: -3,5 + 849: -2,5 + 862: -1,5 + 875: 0,-5 + 881: 1,-6 + 888: 1,-5 + 894: 2,-6 + 901: 2,-5 + 907: 3,-6 + 914: 3,-5 + 936: -13,-7 + 939: -6,-9 + 943: -3,-6 + 950: -3,-5 + 956: -2,-6 + 963: -2,-5 + 969: -1,-6 + 976: -1,-5 + 982: -20,-2 + 985: -17,-4 + 988: -21,1 + 1067: 0,5 + 1083: 1,5 + 1100: 2,5 + 1117: 3,5 + 1162: -3,5 + 1179: -2,5 + 1200: -1,5 + 1213: 0,-5 + 1219: 1,-6 + 1226: 1,-5 + 1240: 2,-6 + 1247: 2,-5 + 1256: 3,-6 + 1263: 3,-5 + 1288: -13,-7 + 1291: -6,-9 + 1295: -3,-6 + 1302: -3,-5 + 1311: -2,-6 + 1318: -2,-5 + 1327: -1,-6 + 1334: -1,-5 + 1348: -20,-2 + 1351: -17,-4 + 1354: -21,1 + 1373: 0,5 + 1389: 1,5 + 1406: 2,5 + 1423: 3,5 + 1468: -3,5 + 1485: -2,5 + 1506: -1,5 + 1519: 0,-5 + 1525: 1,-6 + 1532: 1,-5 + 1546: 2,-6 + 1553: 2,-5 + 1562: 3,-6 + 1569: 3,-5 + 1594: -13,-7 + 1597: -6,-9 + 1601: -3,-6 + 1608: -3,-5 + 1617: -2,-6 + 1624: -2,-5 + 1633: -1,-6 + 1640: -1,-5 + 1654: -20,-2 + 1657: -17,-4 + 1660: -21,1 + 1679: 0,5 + 1695: 1,5 + 1712: 2,5 + 1729: 3,5 + 1774: -3,5 + 1791: -2,5 + 1812: -1,5 + 1825: 0,-5 + 1831: 1,-6 + 1838: 1,-5 + 1852: 2,-6 + 1859: 2,-5 + 1868: 3,-6 + 1875: 3,-5 + 1900: -13,-7 + 1903: -6,-9 + 1907: -3,-6 + 1914: -3,-5 + 1923: -2,-6 + 1930: -2,-5 + 1939: -1,-6 + 1946: -1,-5 + 1960: -20,-2 + 1963: -17,-4 + 1966: -21,1 + 1985: 0,5 + 2001: 1,5 + 2018: 2,5 + 2035: 3,5 + 2080: -3,5 + 2097: -2,5 + 2118: -1,5 + 2131: 0,-5 + 2137: 1,-6 + 2144: 1,-5 + 2158: 2,-6 + 2165: 2,-5 + 2174: 3,-6 + 2181: 3,-5 + 2206: -13,-7 + 2209: -6,-9 + 2213: -3,-6 + 2220: -3,-5 + 2229: -2,-6 + 2236: -2,-5 + 2245: -1,-6 + 2252: -1,-5 + 2266: -20,-2 + 2269: -21,1 + 2286: -17,-4 + 2291: 0,5 + 2307: 1,5 + 2324: 2,5 + 2341: 3,5 + 2386: -3,5 + 2403: -2,5 + 2424: -1,5 + 2437: 0,-5 + 2443: 1,-6 + 2450: 1,-5 + 2464: 2,-6 + 2471: 2,-5 + 2480: 3,-6 + 2487: 3,-5 + 2512: -13,-7 + 2515: -6,-9 + 2519: -3,-6 + 2526: -3,-5 + 2535: -2,-6 + 2542: -2,-5 + 2551: -1,-6 + 2558: -1,-5 + 2572: -20,-2 + 2575: -17,-4 + 2578: -21,1 - node: zIndex: 1 id: LatticeCornerNW decals: - 295: 0,5 - 303: 1,5 - 316: 2,5 - 329: 3,5 - 355: -3,5 - 368: -2,5 - 381: -1,5 - 394: 0,-5 - 399: 1,-6 - 407: 1,-5 - 412: 2,-6 - 420: 2,-5 - 425: 3,-6 - 433: 3,-5 - 437: 6,-9 - 440: 14,-7 - 452: -3,-6 - 460: -3,-5 - 465: -2,-6 - 473: -2,-5 - 478: -1,-6 - 486: -1,-5 - 509: 16,-2 - 517: 0,5 - 525: 1,5 - 538: 2,5 - 551: 3,5 - 577: -3,5 - 590: -2,5 - 603: -1,5 - 616: 0,-5 - 621: 1,-6 - 629: 1,-5 - 634: 2,-6 - 642: 2,-5 - 647: 3,-6 - 655: 3,-5 - 659: 6,-9 - 662: 14,-7 - 674: -3,-6 - 682: -3,-5 - 687: -2,-6 - 695: -2,-5 - 700: -1,-6 - 708: -1,-5 - 731: 16,-2 - 773: 0,5 - 781: 1,5 - 794: 2,5 - 807: 3,5 - 848: -3,5 - 861: -2,5 - 874: -1,5 - 887: 0,-5 - 892: 1,-6 - 900: 1,-5 - 905: 2,-6 - 913: 2,-5 - 918: 3,-6 - 926: 3,-5 - 930: 6,-9 - 942: 14,-7 - 954: -3,-6 - 962: -3,-5 - 967: -2,-6 - 975: -2,-5 - 980: -1,-6 - 988: -1,-5 - 1011: 16,-2 - 1079: 0,5 - 1095: 1,5 - 1112: 2,5 - 1129: 3,5 - 1174: -3,5 - 1191: -2,5 - 1212: -1,5 - 1225: 0,-5 - 1230: 1,-6 - 1238: 1,-5 - 1251: 2,-6 - 1259: 2,-5 - 1267: 3,-6 - 1275: 3,-5 - 1282: 6,-9 - 1294: 14,-7 - 1306: -3,-6 - 1314: -3,-5 - 1322: -2,-6 - 1330: -2,-5 - 1338: -1,-6 - 1346: -1,-5 - 1377: 16,-2 - 1385: 0,5 - 1401: 1,5 - 1418: 2,5 - 1435: 3,5 - 1480: -3,5 - 1497: -2,5 - 1518: -1,5 - 1531: 0,-5 - 1536: 1,-6 - 1544: 1,-5 - 1557: 2,-6 - 1565: 2,-5 - 1573: 3,-6 - 1581: 3,-5 - 1588: 6,-9 - 1600: 14,-7 - 1612: -3,-6 - 1620: -3,-5 - 1628: -2,-6 - 1636: -2,-5 - 1644: -1,-6 - 1652: -1,-5 - 1683: 16,-2 - 1691: 0,5 - 1707: 1,5 - 1724: 2,5 - 1741: 3,5 - 1786: -3,5 - 1803: -2,5 - 1824: -1,5 - 1837: 0,-5 - 1842: 1,-6 - 1850: 1,-5 - 1863: 2,-6 - 1871: 2,-5 - 1879: 3,-6 - 1887: 3,-5 - 1894: 6,-9 - 1906: 14,-7 - 1918: -3,-6 - 1926: -3,-5 - 1934: -2,-6 - 1942: -2,-5 - 1950: -1,-6 - 1958: -1,-5 - 1989: 16,-2 + 286: 0,5 + 294: 1,5 + 307: 2,5 + 320: 3,5 + 346: -3,5 + 359: -2,5 + 372: -1,5 + 385: 0,-5 + 390: 1,-6 + 398: 1,-5 + 403: 2,-6 + 411: 2,-5 + 416: 3,-6 + 424: 3,-5 + 428: 6,-9 + 431: 14,-7 + 443: -3,-6 + 451: -3,-5 + 456: -2,-6 + 464: -2,-5 + 469: -1,-6 + 477: -1,-5 + 500: 16,-2 + 508: 0,5 + 516: 1,5 + 529: 2,5 + 542: 3,5 + 568: -3,5 + 581: -2,5 + 594: -1,5 + 607: 0,-5 + 612: 1,-6 + 620: 1,-5 + 625: 2,-6 + 633: 2,-5 + 638: 3,-6 + 646: 3,-5 + 650: 6,-9 + 653: 14,-7 + 665: -3,-6 + 673: -3,-5 + 678: -2,-6 + 686: -2,-5 + 691: -1,-6 + 699: -1,-5 + 722: 16,-2 + 764: 0,5 + 772: 1,5 + 785: 2,5 + 798: 3,5 + 839: -3,5 + 852: -2,5 + 865: -1,5 + 878: 0,-5 + 883: 1,-6 + 891: 1,-5 + 896: 2,-6 + 904: 2,-5 + 909: 3,-6 + 917: 3,-5 + 921: 6,-9 + 933: 14,-7 + 945: -3,-6 + 953: -3,-5 + 958: -2,-6 + 966: -2,-5 + 971: -1,-6 + 979: -1,-5 + 1002: 16,-2 + 1070: 0,5 + 1086: 1,5 + 1103: 2,5 + 1120: 3,5 + 1165: -3,5 + 1182: -2,5 + 1203: -1,5 + 1216: 0,-5 + 1221: 1,-6 + 1229: 1,-5 + 1242: 2,-6 + 1250: 2,-5 + 1258: 3,-6 + 1266: 3,-5 + 1273: 6,-9 + 1285: 14,-7 + 1297: -3,-6 + 1305: -3,-5 + 1313: -2,-6 + 1321: -2,-5 + 1329: -1,-6 + 1337: -1,-5 + 1368: 16,-2 + 1376: 0,5 + 1392: 1,5 + 1409: 2,5 + 1426: 3,5 + 1471: -3,5 + 1488: -2,5 + 1509: -1,5 + 1522: 0,-5 + 1527: 1,-6 + 1535: 1,-5 + 1548: 2,-6 + 1556: 2,-5 + 1564: 3,-6 + 1572: 3,-5 + 1579: 6,-9 + 1591: 14,-7 + 1603: -3,-6 + 1611: -3,-5 + 1619: -2,-6 + 1627: -2,-5 + 1635: -1,-6 + 1643: -1,-5 + 1674: 16,-2 + 1682: 0,5 + 1698: 1,5 + 1715: 2,5 + 1732: 3,5 + 1777: -3,5 + 1794: -2,5 + 1815: -1,5 + 1828: 0,-5 + 1833: 1,-6 + 1841: 1,-5 + 1854: 2,-6 + 1862: 2,-5 + 1870: 3,-6 + 1878: 3,-5 + 1885: 6,-9 + 1897: 14,-7 + 1909: -3,-6 + 1917: -3,-5 + 1925: -2,-6 + 1933: -2,-5 + 1941: -1,-6 + 1949: -1,-5 + 1980: 16,-2 + 1988: 0,5 + 2004: 1,5 + 2021: 2,5 + 2038: 3,5 + 2083: -3,5 + 2100: -2,5 + 2121: -1,5 + 2134: 0,-5 + 2139: 1,-6 + 2147: 1,-5 + 2160: 2,-6 + 2168: 2,-5 + 2176: 3,-6 + 2184: 3,-5 + 2191: 6,-9 + 2203: 14,-7 + 2215: -3,-6 + 2223: -3,-5 + 2231: -2,-6 + 2239: -2,-5 + 2247: -1,-6 + 2255: -1,-5 + 2283: 16,-2 + 2294: 0,5 + 2310: 1,5 + 2327: 2,5 + 2344: 3,5 + 2389: -3,5 + 2406: -2,5 + 2427: -1,5 + 2440: 0,-5 + 2445: 1,-6 + 2453: 1,-5 + 2466: 2,-6 + 2474: 2,-5 + 2482: 3,-6 + 2490: 3,-5 + 2497: 6,-9 + 2509: 14,-7 + 2521: -3,-6 + 2529: -3,-5 + 2537: -2,-6 + 2545: -2,-5 + 2553: -1,-6 + 2561: -1,-5 + 2592: 16,-2 - node: zIndex: 1 id: LatticeCornerSE decals: - 290: 0,5 - 298: 1,5 - 306: 1,6 - 311: 2,5 - 319: 2,6 - 324: 3,5 - 332: 3,6 - 347: -6,13 - 350: -3,5 - 358: -3,6 - 363: -2,5 - 371: -2,6 - 376: -1,5 - 384: -1,6 - 389: 0,-5 - 402: 1,-5 - 415: 2,-5 - 428: 3,-5 - 455: -3,-5 - 468: -2,-5 - 481: -1,-5 - 498: -21,5 - 501: -19,10 - 512: 0,5 - 520: 1,5 - 528: 1,6 - 533: 2,5 - 541: 2,6 - 546: 3,5 - 554: 3,6 - 569: -6,13 - 572: -3,5 - 580: -3,6 - 585: -2,5 - 593: -2,6 - 598: -1,5 - 606: -1,6 - 611: 0,-5 - 624: 1,-5 - 637: 2,-5 - 650: 3,-5 - 677: -3,-5 - 690: -2,-5 - 703: -1,-5 - 720: -21,5 - 723: -19,10 - 768: 0,5 - 776: 1,5 - 784: 1,6 - 789: 2,5 - 797: 2,6 - 802: 3,5 - 810: 3,6 - 840: -6,13 - 843: -3,5 - 851: -3,6 - 856: -2,5 - 864: -2,6 - 869: -1,5 - 877: -1,6 - 882: 0,-5 - 895: 1,-5 - 908: 2,-5 - 921: 3,-5 - 957: -3,-5 - 970: -2,-5 - 983: -1,-5 - 1000: -21,5 - 1003: -19,10 - 1074: 0,5 - 1090: 1,5 - 1098: 1,6 - 1107: 2,5 - 1115: 2,6 - 1124: 3,5 - 1132: 3,6 - 1162: -6,13 - 1169: -3,5 - 1177: -3,6 - 1186: -2,5 - 1194: -2,6 - 1207: -1,5 - 1215: -1,6 - 1220: 0,-5 - 1233: 1,-5 - 1254: 2,-5 - 1270: 3,-5 - 1309: -3,-5 - 1325: -2,-5 - 1341: -1,-5 - 1366: -21,5 - 1369: -19,10 - 1380: 0,5 - 1396: 1,5 - 1404: 1,6 - 1413: 2,5 - 1421: 2,6 - 1430: 3,5 - 1438: 3,6 - 1468: -6,13 - 1475: -3,5 - 1483: -3,6 - 1492: -2,5 - 1500: -2,6 - 1513: -1,5 - 1521: -1,6 - 1526: 0,-5 - 1539: 1,-5 - 1560: 2,-5 - 1576: 3,-5 - 1615: -3,-5 - 1631: -2,-5 - 1647: -1,-5 - 1672: -21,5 - 1675: -19,10 - 1686: 0,5 - 1702: 1,5 - 1710: 1,6 - 1719: 2,5 - 1727: 2,6 - 1736: 3,5 - 1744: 3,6 - 1774: -6,13 - 1781: -3,5 - 1789: -3,6 - 1798: -2,5 - 1806: -2,6 - 1819: -1,5 - 1827: -1,6 - 1832: 0,-5 - 1845: 1,-5 - 1866: 2,-5 - 1882: 3,-5 - 1921: -3,-5 - 1937: -2,-5 - 1953: -1,-5 - 1978: -21,5 - 1981: -19,10 + 281: 0,5 + 289: 1,5 + 297: 1,6 + 302: 2,5 + 310: 2,6 + 315: 3,5 + 323: 3,6 + 338: -6,13 + 341: -3,5 + 349: -3,6 + 354: -2,5 + 362: -2,6 + 367: -1,5 + 375: -1,6 + 380: 0,-5 + 393: 1,-5 + 406: 2,-5 + 419: 3,-5 + 446: -3,-5 + 459: -2,-5 + 472: -1,-5 + 489: -21,5 + 492: -19,10 + 503: 0,5 + 511: 1,5 + 519: 1,6 + 524: 2,5 + 532: 2,6 + 537: 3,5 + 545: 3,6 + 560: -6,13 + 563: -3,5 + 571: -3,6 + 576: -2,5 + 584: -2,6 + 589: -1,5 + 597: -1,6 + 602: 0,-5 + 615: 1,-5 + 628: 2,-5 + 641: 3,-5 + 668: -3,-5 + 681: -2,-5 + 694: -1,-5 + 711: -21,5 + 714: -19,10 + 759: 0,5 + 767: 1,5 + 775: 1,6 + 780: 2,5 + 788: 2,6 + 793: 3,5 + 801: 3,6 + 831: -6,13 + 834: -3,5 + 842: -3,6 + 847: -2,5 + 855: -2,6 + 860: -1,5 + 868: -1,6 + 873: 0,-5 + 886: 1,-5 + 899: 2,-5 + 912: 3,-5 + 948: -3,-5 + 961: -2,-5 + 974: -1,-5 + 991: -21,5 + 994: -19,10 + 1065: 0,5 + 1081: 1,5 + 1089: 1,6 + 1098: 2,5 + 1106: 2,6 + 1115: 3,5 + 1123: 3,6 + 1153: -6,13 + 1160: -3,5 + 1168: -3,6 + 1177: -2,5 + 1185: -2,6 + 1198: -1,5 + 1206: -1,6 + 1211: 0,-5 + 1224: 1,-5 + 1245: 2,-5 + 1261: 3,-5 + 1300: -3,-5 + 1316: -2,-5 + 1332: -1,-5 + 1357: -21,5 + 1360: -19,10 + 1371: 0,5 + 1387: 1,5 + 1395: 1,6 + 1404: 2,5 + 1412: 2,6 + 1421: 3,5 + 1429: 3,6 + 1459: -6,13 + 1466: -3,5 + 1474: -3,6 + 1483: -2,5 + 1491: -2,6 + 1504: -1,5 + 1512: -1,6 + 1517: 0,-5 + 1530: 1,-5 + 1551: 2,-5 + 1567: 3,-5 + 1606: -3,-5 + 1622: -2,-5 + 1638: -1,-5 + 1663: -21,5 + 1666: -19,10 + 1677: 0,5 + 1693: 1,5 + 1701: 1,6 + 1710: 2,5 + 1718: 2,6 + 1727: 3,5 + 1735: 3,6 + 1765: -6,13 + 1772: -3,5 + 1780: -3,6 + 1789: -2,5 + 1797: -2,6 + 1810: -1,5 + 1818: -1,6 + 1823: 0,-5 + 1836: 1,-5 + 1857: 2,-5 + 1873: 3,-5 + 1912: -3,-5 + 1928: -2,-5 + 1944: -1,-5 + 1969: -21,5 + 1972: -19,10 + 1983: 0,5 + 1999: 1,5 + 2007: 1,6 + 2016: 2,5 + 2024: 2,6 + 2033: 3,5 + 2041: 3,6 + 2071: -6,13 + 2078: -3,5 + 2086: -3,6 + 2095: -2,5 + 2103: -2,6 + 2116: -1,5 + 2124: -1,6 + 2129: 0,-5 + 2142: 1,-5 + 2163: 2,-5 + 2179: 3,-5 + 2218: -3,-5 + 2234: -2,-5 + 2250: -1,-5 + 2272: -21,5 + 2275: -19,10 + 2289: 0,5 + 2305: 1,5 + 2313: 1,6 + 2322: 2,5 + 2330: 2,6 + 2339: 3,5 + 2347: 3,6 + 2377: -6,13 + 2384: -3,5 + 2392: -3,6 + 2401: -2,5 + 2409: -2,6 + 2422: -1,5 + 2430: -1,6 + 2435: 0,-5 + 2448: 1,-5 + 2469: 2,-5 + 2485: 3,-5 + 2524: -3,-5 + 2540: -2,-5 + 2556: -1,-5 + 2581: -21,5 + 2584: -19,10 - node: zIndex: 1 id: LatticeCornerSW decals: - 294: 0,5 - 302: 1,5 - 308: 1,6 - 315: 2,5 - 321: 2,6 - 328: 3,5 - 334: 3,6 - 338: 10,15 - 341: 14,10 - 344: 15,9 - 354: -3,5 - 360: -3,6 - 367: -2,5 - 373: -2,6 - 380: -1,5 - 386: -1,6 - 393: 0,-5 - 406: 1,-5 - 419: 2,-5 - 432: 3,-5 - 459: -3,-5 - 472: -2,-5 - 485: -1,-5 - 506: 16,6 - 516: 0,5 - 524: 1,5 - 530: 1,6 - 537: 2,5 - 543: 2,6 - 550: 3,5 - 556: 3,6 - 560: 10,15 - 563: 14,10 - 566: 15,9 - 576: -3,5 - 582: -3,6 - 589: -2,5 - 595: -2,6 - 602: -1,5 - 608: -1,6 - 615: 0,-5 - 628: 1,-5 - 641: 2,-5 - 654: 3,-5 - 681: -3,-5 - 694: -2,-5 - 707: -1,-5 - 728: 16,6 - 772: 0,5 - 780: 1,5 - 786: 1,6 - 793: 2,5 - 799: 2,6 - 806: 3,5 - 812: 3,6 - 831: 10,15 - 834: 14,10 - 837: 15,9 - 847: -3,5 - 853: -3,6 - 860: -2,5 - 866: -2,6 - 873: -1,5 - 879: -1,6 - 886: 0,-5 - 899: 1,-5 - 912: 2,-5 - 925: 3,-5 - 961: -3,-5 - 974: -2,-5 - 987: -1,-5 - 1008: 16,6 - 1078: 0,5 - 1094: 1,5 - 1100: 1,6 - 1111: 2,5 - 1117: 2,6 - 1128: 3,5 - 1134: 3,6 - 1153: 10,15 - 1156: 14,10 - 1159: 15,9 - 1173: -3,5 - 1179: -3,6 - 1190: -2,5 - 1196: -2,6 - 1211: -1,5 - 1217: -1,6 - 1224: 0,-5 - 1237: 1,-5 - 1258: 2,-5 - 1274: 3,-5 - 1313: -3,-5 - 1329: -2,-5 - 1345: -1,-5 - 1374: 16,6 - 1384: 0,5 - 1400: 1,5 - 1406: 1,6 - 1417: 2,5 - 1423: 2,6 - 1434: 3,5 - 1440: 3,6 - 1459: 10,15 - 1462: 14,10 - 1465: 15,9 - 1479: -3,5 - 1485: -3,6 - 1496: -2,5 - 1502: -2,6 - 1517: -1,5 - 1523: -1,6 - 1530: 0,-5 - 1543: 1,-5 - 1564: 2,-5 - 1580: 3,-5 - 1619: -3,-5 - 1635: -2,-5 - 1651: -1,-5 - 1680: 16,6 - 1690: 0,5 - 1706: 1,5 - 1712: 1,6 - 1723: 2,5 - 1729: 2,6 - 1740: 3,5 - 1746: 3,6 - 1765: 10,15 - 1768: 14,10 - 1771: 15,9 - 1785: -3,5 - 1791: -3,6 - 1802: -2,5 - 1808: -2,6 - 1823: -1,5 - 1829: -1,6 - 1836: 0,-5 - 1849: 1,-5 - 1870: 2,-5 - 1886: 3,-5 - 1925: -3,-5 - 1941: -2,-5 - 1957: -1,-5 - 1986: 16,6 + 285: 0,5 + 293: 1,5 + 299: 1,6 + 306: 2,5 + 312: 2,6 + 319: 3,5 + 325: 3,6 + 329: 10,15 + 332: 14,10 + 335: 15,9 + 345: -3,5 + 351: -3,6 + 358: -2,5 + 364: -2,6 + 371: -1,5 + 377: -1,6 + 384: 0,-5 + 397: 1,-5 + 410: 2,-5 + 423: 3,-5 + 450: -3,-5 + 463: -2,-5 + 476: -1,-5 + 497: 16,6 + 507: 0,5 + 515: 1,5 + 521: 1,6 + 528: 2,5 + 534: 2,6 + 541: 3,5 + 547: 3,6 + 551: 10,15 + 554: 14,10 + 557: 15,9 + 567: -3,5 + 573: -3,6 + 580: -2,5 + 586: -2,6 + 593: -1,5 + 599: -1,6 + 606: 0,-5 + 619: 1,-5 + 632: 2,-5 + 645: 3,-5 + 672: -3,-5 + 685: -2,-5 + 698: -1,-5 + 719: 16,6 + 763: 0,5 + 771: 1,5 + 777: 1,6 + 784: 2,5 + 790: 2,6 + 797: 3,5 + 803: 3,6 + 822: 10,15 + 825: 14,10 + 828: 15,9 + 838: -3,5 + 844: -3,6 + 851: -2,5 + 857: -2,6 + 864: -1,5 + 870: -1,6 + 877: 0,-5 + 890: 1,-5 + 903: 2,-5 + 916: 3,-5 + 952: -3,-5 + 965: -2,-5 + 978: -1,-5 + 999: 16,6 + 1069: 0,5 + 1085: 1,5 + 1091: 1,6 + 1102: 2,5 + 1108: 2,6 + 1119: 3,5 + 1125: 3,6 + 1144: 10,15 + 1147: 14,10 + 1150: 15,9 + 1164: -3,5 + 1170: -3,6 + 1181: -2,5 + 1187: -2,6 + 1202: -1,5 + 1208: -1,6 + 1215: 0,-5 + 1228: 1,-5 + 1249: 2,-5 + 1265: 3,-5 + 1304: -3,-5 + 1320: -2,-5 + 1336: -1,-5 + 1365: 16,6 + 1375: 0,5 + 1391: 1,5 + 1397: 1,6 + 1408: 2,5 + 1414: 2,6 + 1425: 3,5 + 1431: 3,6 + 1450: 10,15 + 1453: 14,10 + 1456: 15,9 + 1470: -3,5 + 1476: -3,6 + 1487: -2,5 + 1493: -2,6 + 1508: -1,5 + 1514: -1,6 + 1521: 0,-5 + 1534: 1,-5 + 1555: 2,-5 + 1571: 3,-5 + 1610: -3,-5 + 1626: -2,-5 + 1642: -1,-5 + 1671: 16,6 + 1681: 0,5 + 1697: 1,5 + 1703: 1,6 + 1714: 2,5 + 1720: 2,6 + 1731: 3,5 + 1737: 3,6 + 1756: 10,15 + 1759: 14,10 + 1762: 15,9 + 1776: -3,5 + 1782: -3,6 + 1793: -2,5 + 1799: -2,6 + 1814: -1,5 + 1820: -1,6 + 1827: 0,-5 + 1840: 1,-5 + 1861: 2,-5 + 1877: 3,-5 + 1916: -3,-5 + 1932: -2,-5 + 1948: -1,-5 + 1977: 16,6 + 1987: 0,5 + 2003: 1,5 + 2009: 1,6 + 2020: 2,5 + 2026: 2,6 + 2037: 3,5 + 2043: 3,6 + 2062: 10,15 + 2065: 14,10 + 2068: 15,9 + 2082: -3,5 + 2088: -3,6 + 2099: -2,5 + 2105: -2,6 + 2120: -1,5 + 2126: -1,6 + 2133: 0,-5 + 2146: 1,-5 + 2167: 2,-5 + 2183: 3,-5 + 2222: -3,-5 + 2238: -2,-5 + 2254: -1,-5 + 2280: 16,6 + 2293: 0,5 + 2309: 1,5 + 2315: 1,6 + 2326: 2,5 + 2332: 2,6 + 2343: 3,5 + 2349: 3,6 + 2368: 10,15 + 2371: 14,10 + 2374: 15,9 + 2388: -3,5 + 2394: -3,6 + 2405: -2,5 + 2411: -2,6 + 2426: -1,5 + 2432: -1,6 + 2439: 0,-5 + 2452: 1,-5 + 2473: 2,-5 + 2489: 3,-5 + 2528: -3,-5 + 2544: -2,-5 + 2560: -1,-5 + 2589: 16,6 - node: id: LatticeEdgeE decals: - 289: 0,5 - 297: 1,5 - 305: 1,6 - 310: 2,5 - 318: 2,6 - 323: 3,5 - 331: 3,6 - 346: -6,13 - 349: -3,5 - 357: -3,6 - 362: -2,5 - 370: -2,6 - 375: -1,5 - 383: -1,6 - 388: 0,-5 - 395: 1,-6 - 401: 1,-5 - 408: 2,-6 - 414: 2,-5 - 421: 3,-6 - 427: 3,-5 - 441: -13,-7 - 444: -6,-9 - 448: -3,-6 - 454: -3,-5 - 461: -2,-6 - 467: -2,-5 - 474: -1,-6 - 480: -1,-5 - 487: -20,-2 - 490: -17,-4 - 493: -21,1 - 497: -21,5 - 500: -19,10 - 511: 0,5 - 519: 1,5 - 527: 1,6 - 532: 2,5 - 540: 2,6 - 545: 3,5 - 553: 3,6 - 568: -6,13 - 571: -3,5 - 579: -3,6 - 584: -2,5 - 592: -2,6 - 597: -1,5 - 605: -1,6 - 610: 0,-5 - 617: 1,-6 - 623: 1,-5 - 630: 2,-6 - 636: 2,-5 - 643: 3,-6 - 649: 3,-5 - 663: -13,-7 - 666: -6,-9 - 670: -3,-6 - 676: -3,-5 - 683: -2,-6 - 689: -2,-5 - 696: -1,-6 - 702: -1,-5 - 709: -20,-2 - 712: -17,-4 - 715: -21,1 - 719: -21,5 - 722: -19,10 - 767: 0,5 - 775: 1,5 - 783: 1,6 - 788: 2,5 - 796: 2,6 - 801: 3,5 - 809: 3,6 - 839: -6,13 - 842: -3,5 - 850: -3,6 - 855: -2,5 - 863: -2,6 - 868: -1,5 - 876: -1,6 - 881: 0,-5 - 888: 1,-6 - 894: 1,-5 - 901: 2,-6 - 907: 2,-5 - 914: 3,-6 - 920: 3,-5 - 943: -13,-7 - 946: -6,-9 - 950: -3,-6 - 956: -3,-5 - 963: -2,-6 - 969: -2,-5 - 976: -1,-6 - 982: -1,-5 - 989: -20,-2 - 992: -17,-4 - 995: -21,1 - 999: -21,5 - 1002: -19,10 - 1073: 0,5 - 1089: 1,5 - 1097: 1,6 - 1106: 2,5 - 1114: 2,6 - 1123: 3,5 - 1131: 3,6 - 1161: -6,13 - 1168: -3,5 - 1176: -3,6 - 1185: -2,5 - 1193: -2,6 - 1206: -1,5 - 1214: -1,6 - 1219: 0,-5 - 1226: 1,-6 - 1232: 1,-5 - 1247: 2,-6 - 1253: 2,-5 - 1263: 3,-6 - 1269: 3,-5 - 1295: -13,-7 - 1298: -6,-9 - 1302: -3,-6 - 1308: -3,-5 - 1318: -2,-6 - 1324: -2,-5 - 1334: -1,-6 - 1340: -1,-5 - 1355: -20,-2 - 1358: -17,-4 - 1361: -21,1 - 1365: -21,5 - 1368: -19,10 - 1379: 0,5 - 1395: 1,5 - 1403: 1,6 - 1412: 2,5 - 1420: 2,6 - 1429: 3,5 - 1437: 3,6 - 1467: -6,13 - 1474: -3,5 - 1482: -3,6 - 1491: -2,5 - 1499: -2,6 - 1512: -1,5 - 1520: -1,6 - 1525: 0,-5 - 1532: 1,-6 - 1538: 1,-5 - 1553: 2,-6 - 1559: 2,-5 - 1569: 3,-6 - 1575: 3,-5 - 1601: -13,-7 - 1604: -6,-9 - 1608: -3,-6 - 1614: -3,-5 - 1624: -2,-6 - 1630: -2,-5 - 1640: -1,-6 - 1646: -1,-5 - 1661: -20,-2 - 1664: -17,-4 - 1667: -21,1 - 1671: -21,5 - 1674: -19,10 - 1685: 0,5 - 1701: 1,5 - 1709: 1,6 - 1718: 2,5 - 1726: 2,6 - 1735: 3,5 - 1743: 3,6 - 1773: -6,13 - 1780: -3,5 - 1788: -3,6 - 1797: -2,5 - 1805: -2,6 - 1818: -1,5 - 1826: -1,6 - 1831: 0,-5 - 1838: 1,-6 - 1844: 1,-5 - 1859: 2,-6 - 1865: 2,-5 - 1875: 3,-6 - 1881: 3,-5 - 1907: -13,-7 - 1910: -6,-9 - 1914: -3,-6 - 1920: -3,-5 - 1930: -2,-6 - 1936: -2,-5 - 1946: -1,-6 - 1952: -1,-5 - 1967: -20,-2 - 1970: -17,-4 - 1973: -21,1 - 1977: -21,5 - 1980: -19,10 + 280: 0,5 + 288: 1,5 + 296: 1,6 + 301: 2,5 + 309: 2,6 + 314: 3,5 + 322: 3,6 + 337: -6,13 + 340: -3,5 + 348: -3,6 + 353: -2,5 + 361: -2,6 + 366: -1,5 + 374: -1,6 + 379: 0,-5 + 386: 1,-6 + 392: 1,-5 + 399: 2,-6 + 405: 2,-5 + 412: 3,-6 + 418: 3,-5 + 432: -13,-7 + 435: -6,-9 + 439: -3,-6 + 445: -3,-5 + 452: -2,-6 + 458: -2,-5 + 465: -1,-6 + 471: -1,-5 + 478: -20,-2 + 481: -17,-4 + 484: -21,1 + 488: -21,5 + 491: -19,10 + 502: 0,5 + 510: 1,5 + 518: 1,6 + 523: 2,5 + 531: 2,6 + 536: 3,5 + 544: 3,6 + 559: -6,13 + 562: -3,5 + 570: -3,6 + 575: -2,5 + 583: -2,6 + 588: -1,5 + 596: -1,6 + 601: 0,-5 + 608: 1,-6 + 614: 1,-5 + 621: 2,-6 + 627: 2,-5 + 634: 3,-6 + 640: 3,-5 + 654: -13,-7 + 657: -6,-9 + 661: -3,-6 + 667: -3,-5 + 674: -2,-6 + 680: -2,-5 + 687: -1,-6 + 693: -1,-5 + 700: -20,-2 + 703: -17,-4 + 706: -21,1 + 710: -21,5 + 713: -19,10 + 758: 0,5 + 766: 1,5 + 774: 1,6 + 779: 2,5 + 787: 2,6 + 792: 3,5 + 800: 3,6 + 830: -6,13 + 833: -3,5 + 841: -3,6 + 846: -2,5 + 854: -2,6 + 859: -1,5 + 867: -1,6 + 872: 0,-5 + 879: 1,-6 + 885: 1,-5 + 892: 2,-6 + 898: 2,-5 + 905: 3,-6 + 911: 3,-5 + 934: -13,-7 + 937: -6,-9 + 941: -3,-6 + 947: -3,-5 + 954: -2,-6 + 960: -2,-5 + 967: -1,-6 + 973: -1,-5 + 980: -20,-2 + 983: -17,-4 + 986: -21,1 + 990: -21,5 + 993: -19,10 + 1064: 0,5 + 1080: 1,5 + 1088: 1,6 + 1097: 2,5 + 1105: 2,6 + 1114: 3,5 + 1122: 3,6 + 1152: -6,13 + 1159: -3,5 + 1167: -3,6 + 1176: -2,5 + 1184: -2,6 + 1197: -1,5 + 1205: -1,6 + 1210: 0,-5 + 1217: 1,-6 + 1223: 1,-5 + 1238: 2,-6 + 1244: 2,-5 + 1254: 3,-6 + 1260: 3,-5 + 1286: -13,-7 + 1289: -6,-9 + 1293: -3,-6 + 1299: -3,-5 + 1309: -2,-6 + 1315: -2,-5 + 1325: -1,-6 + 1331: -1,-5 + 1346: -20,-2 + 1349: -17,-4 + 1352: -21,1 + 1356: -21,5 + 1359: -19,10 + 1370: 0,5 + 1386: 1,5 + 1394: 1,6 + 1403: 2,5 + 1411: 2,6 + 1420: 3,5 + 1428: 3,6 + 1458: -6,13 + 1465: -3,5 + 1473: -3,6 + 1482: -2,5 + 1490: -2,6 + 1503: -1,5 + 1511: -1,6 + 1516: 0,-5 + 1523: 1,-6 + 1529: 1,-5 + 1544: 2,-6 + 1550: 2,-5 + 1560: 3,-6 + 1566: 3,-5 + 1592: -13,-7 + 1595: -6,-9 + 1599: -3,-6 + 1605: -3,-5 + 1615: -2,-6 + 1621: -2,-5 + 1631: -1,-6 + 1637: -1,-5 + 1652: -20,-2 + 1655: -17,-4 + 1658: -21,1 + 1662: -21,5 + 1665: -19,10 + 1676: 0,5 + 1692: 1,5 + 1700: 1,6 + 1709: 2,5 + 1717: 2,6 + 1726: 3,5 + 1734: 3,6 + 1764: -6,13 + 1771: -3,5 + 1779: -3,6 + 1788: -2,5 + 1796: -2,6 + 1809: -1,5 + 1817: -1,6 + 1822: 0,-5 + 1829: 1,-6 + 1835: 1,-5 + 1850: 2,-6 + 1856: 2,-5 + 1866: 3,-6 + 1872: 3,-5 + 1898: -13,-7 + 1901: -6,-9 + 1905: -3,-6 + 1911: -3,-5 + 1921: -2,-6 + 1927: -2,-5 + 1937: -1,-6 + 1943: -1,-5 + 1958: -20,-2 + 1961: -17,-4 + 1964: -21,1 + 1968: -21,5 + 1971: -19,10 + 1982: 0,5 + 1998: 1,5 + 2006: 1,6 + 2015: 2,5 + 2023: 2,6 + 2032: 3,5 + 2040: 3,6 + 2070: -6,13 + 2077: -3,5 + 2085: -3,6 + 2094: -2,5 + 2102: -2,6 + 2115: -1,5 + 2123: -1,6 + 2128: 0,-5 + 2135: 1,-6 + 2141: 1,-5 + 2156: 2,-6 + 2162: 2,-5 + 2172: 3,-6 + 2178: 3,-5 + 2204: -13,-7 + 2207: -6,-9 + 2211: -3,-6 + 2217: -3,-5 + 2227: -2,-6 + 2233: -2,-5 + 2243: -1,-6 + 2249: -1,-5 + 2264: -20,-2 + 2267: -21,1 + 2271: -21,5 + 2274: -19,10 + 2284: -17,-4 + 2288: 0,5 + 2304: 1,5 + 2312: 1,6 + 2321: 2,5 + 2329: 2,6 + 2338: 3,5 + 2346: 3,6 + 2376: -6,13 + 2383: -3,5 + 2391: -3,6 + 2400: -2,5 + 2408: -2,6 + 2421: -1,5 + 2429: -1,6 + 2434: 0,-5 + 2441: 1,-6 + 2447: 1,-5 + 2462: 2,-6 + 2468: 2,-5 + 2478: 3,-6 + 2484: 3,-5 + 2510: -13,-7 + 2513: -6,-9 + 2517: -3,-6 + 2523: -3,-5 + 2533: -2,-6 + 2539: -2,-5 + 2549: -1,-6 + 2555: -1,-5 + 2570: -20,-2 + 2573: -17,-4 + 2576: -21,1 + 2580: -21,5 + 2583: -19,10 - node: id: LatticeEdgeN decals: - 291: 0,5 - 299: 1,5 - 312: 2,5 - 325: 3,5 - 351: -3,5 - 364: -2,5 - 377: -1,5 - 390: 0,-5 - 396: 1,-6 - 403: 1,-5 - 409: 2,-6 - 416: 2,-5 - 422: 3,-6 - 429: 3,-5 - 434: 4,-12 - 435: 6,-9 - 438: 14,-7 - 442: -13,-7 - 445: -6,-9 - 447: -4,-11 - 449: -3,-6 - 456: -3,-5 - 462: -2,-6 - 469: -2,-5 - 475: -1,-6 - 482: -1,-5 - 488: -20,-2 - 491: -17,-4 - 494: -21,1 - 507: 16,-2 - 513: 0,5 - 521: 1,5 - 534: 2,5 - 547: 3,5 - 573: -3,5 - 586: -2,5 - 599: -1,5 - 612: 0,-5 - 618: 1,-6 - 625: 1,-5 - 631: 2,-6 - 638: 2,-5 - 644: 3,-6 - 651: 3,-5 - 656: 4,-12 - 657: 6,-9 - 660: 14,-7 - 664: -13,-7 - 667: -6,-9 - 669: -4,-11 - 671: -3,-6 - 678: -3,-5 - 684: -2,-6 - 691: -2,-5 - 697: -1,-6 - 704: -1,-5 - 710: -20,-2 - 713: -17,-4 - 716: -21,1 - 729: 16,-2 - 769: 0,5 - 777: 1,5 - 790: 2,5 - 803: 3,5 - 844: -3,5 - 857: -2,5 - 870: -1,5 - 883: 0,-5 - 889: 1,-6 - 896: 1,-5 - 902: 2,-6 - 909: 2,-5 - 915: 3,-6 - 922: 3,-5 - 927: 4,-12 - 928: 6,-9 - 940: 14,-7 - 944: -13,-7 - 947: -6,-9 - 949: -4,-11 - 951: -3,-6 - 958: -3,-5 - 964: -2,-6 - 971: -2,-5 - 977: -1,-6 - 984: -1,-5 - 990: -20,-2 - 993: -17,-4 - 996: -21,1 - 1009: 16,-2 - 1075: 0,5 - 1091: 1,5 - 1108: 2,5 - 1125: 3,5 - 1170: -3,5 - 1187: -2,5 - 1208: -1,5 - 1221: 0,-5 - 1227: 1,-6 - 1234: 1,-5 - 1248: 2,-6 - 1255: 2,-5 - 1264: 3,-6 - 1271: 3,-5 - 1279: 4,-12 - 1280: 6,-9 - 1292: 14,-7 - 1296: -13,-7 - 1299: -6,-9 - 1301: -4,-11 - 1303: -3,-6 - 1310: -3,-5 - 1319: -2,-6 - 1326: -2,-5 - 1335: -1,-6 - 1342: -1,-5 - 1356: -20,-2 - 1359: -17,-4 - 1362: -21,1 - 1375: 16,-2 - 1381: 0,5 - 1397: 1,5 - 1414: 2,5 - 1431: 3,5 - 1476: -3,5 - 1493: -2,5 - 1514: -1,5 - 1527: 0,-5 - 1533: 1,-6 - 1540: 1,-5 - 1554: 2,-6 - 1561: 2,-5 - 1570: 3,-6 - 1577: 3,-5 - 1585: 4,-12 - 1586: 6,-9 - 1598: 14,-7 - 1602: -13,-7 - 1605: -6,-9 - 1607: -4,-11 - 1609: -3,-6 - 1616: -3,-5 - 1625: -2,-6 - 1632: -2,-5 - 1641: -1,-6 - 1648: -1,-5 - 1662: -20,-2 - 1665: -17,-4 - 1668: -21,1 - 1681: 16,-2 - 1687: 0,5 - 1703: 1,5 - 1720: 2,5 - 1737: 3,5 - 1782: -3,5 - 1799: -2,5 - 1820: -1,5 - 1833: 0,-5 - 1839: 1,-6 - 1846: 1,-5 - 1860: 2,-6 - 1867: 2,-5 - 1876: 3,-6 - 1883: 3,-5 - 1891: 4,-12 - 1892: 6,-9 - 1904: 14,-7 - 1908: -13,-7 - 1911: -6,-9 - 1913: -4,-11 - 1915: -3,-6 - 1922: -3,-5 - 1931: -2,-6 - 1938: -2,-5 - 1947: -1,-6 - 1954: -1,-5 - 1968: -20,-2 - 1971: -17,-4 - 1974: -21,1 - 1987: 16,-2 + 282: 0,5 + 290: 1,5 + 303: 2,5 + 316: 3,5 + 342: -3,5 + 355: -2,5 + 368: -1,5 + 381: 0,-5 + 387: 1,-6 + 394: 1,-5 + 400: 2,-6 + 407: 2,-5 + 413: 3,-6 + 420: 3,-5 + 425: 4,-12 + 426: 6,-9 + 429: 14,-7 + 433: -13,-7 + 436: -6,-9 + 438: -4,-11 + 440: -3,-6 + 447: -3,-5 + 453: -2,-6 + 460: -2,-5 + 466: -1,-6 + 473: -1,-5 + 479: -20,-2 + 482: -17,-4 + 485: -21,1 + 498: 16,-2 + 504: 0,5 + 512: 1,5 + 525: 2,5 + 538: 3,5 + 564: -3,5 + 577: -2,5 + 590: -1,5 + 603: 0,-5 + 609: 1,-6 + 616: 1,-5 + 622: 2,-6 + 629: 2,-5 + 635: 3,-6 + 642: 3,-5 + 647: 4,-12 + 648: 6,-9 + 651: 14,-7 + 655: -13,-7 + 658: -6,-9 + 660: -4,-11 + 662: -3,-6 + 669: -3,-5 + 675: -2,-6 + 682: -2,-5 + 688: -1,-6 + 695: -1,-5 + 701: -20,-2 + 704: -17,-4 + 707: -21,1 + 720: 16,-2 + 760: 0,5 + 768: 1,5 + 781: 2,5 + 794: 3,5 + 835: -3,5 + 848: -2,5 + 861: -1,5 + 874: 0,-5 + 880: 1,-6 + 887: 1,-5 + 893: 2,-6 + 900: 2,-5 + 906: 3,-6 + 913: 3,-5 + 918: 4,-12 + 919: 6,-9 + 931: 14,-7 + 935: -13,-7 + 938: -6,-9 + 940: -4,-11 + 942: -3,-6 + 949: -3,-5 + 955: -2,-6 + 962: -2,-5 + 968: -1,-6 + 975: -1,-5 + 981: -20,-2 + 984: -17,-4 + 987: -21,1 + 1000: 16,-2 + 1066: 0,5 + 1082: 1,5 + 1099: 2,5 + 1116: 3,5 + 1161: -3,5 + 1178: -2,5 + 1199: -1,5 + 1212: 0,-5 + 1218: 1,-6 + 1225: 1,-5 + 1239: 2,-6 + 1246: 2,-5 + 1255: 3,-6 + 1262: 3,-5 + 1270: 4,-12 + 1271: 6,-9 + 1283: 14,-7 + 1287: -13,-7 + 1290: -6,-9 + 1292: -4,-11 + 1294: -3,-6 + 1301: -3,-5 + 1310: -2,-6 + 1317: -2,-5 + 1326: -1,-6 + 1333: -1,-5 + 1347: -20,-2 + 1350: -17,-4 + 1353: -21,1 + 1366: 16,-2 + 1372: 0,5 + 1388: 1,5 + 1405: 2,5 + 1422: 3,5 + 1467: -3,5 + 1484: -2,5 + 1505: -1,5 + 1518: 0,-5 + 1524: 1,-6 + 1531: 1,-5 + 1545: 2,-6 + 1552: 2,-5 + 1561: 3,-6 + 1568: 3,-5 + 1576: 4,-12 + 1577: 6,-9 + 1589: 14,-7 + 1593: -13,-7 + 1596: -6,-9 + 1598: -4,-11 + 1600: -3,-6 + 1607: -3,-5 + 1616: -2,-6 + 1623: -2,-5 + 1632: -1,-6 + 1639: -1,-5 + 1653: -20,-2 + 1656: -17,-4 + 1659: -21,1 + 1672: 16,-2 + 1678: 0,5 + 1694: 1,5 + 1711: 2,5 + 1728: 3,5 + 1773: -3,5 + 1790: -2,5 + 1811: -1,5 + 1824: 0,-5 + 1830: 1,-6 + 1837: 1,-5 + 1851: 2,-6 + 1858: 2,-5 + 1867: 3,-6 + 1874: 3,-5 + 1882: 4,-12 + 1883: 6,-9 + 1895: 14,-7 + 1899: -13,-7 + 1902: -6,-9 + 1904: -4,-11 + 1906: -3,-6 + 1913: -3,-5 + 1922: -2,-6 + 1929: -2,-5 + 1938: -1,-6 + 1945: -1,-5 + 1959: -20,-2 + 1962: -17,-4 + 1965: -21,1 + 1978: 16,-2 + 1984: 0,5 + 2000: 1,5 + 2017: 2,5 + 2034: 3,5 + 2079: -3,5 + 2096: -2,5 + 2117: -1,5 + 2130: 0,-5 + 2136: 1,-6 + 2143: 1,-5 + 2157: 2,-6 + 2164: 2,-5 + 2173: 3,-6 + 2180: 3,-5 + 2188: 4,-12 + 2189: 6,-9 + 2201: 14,-7 + 2205: -13,-7 + 2208: -6,-9 + 2210: -4,-11 + 2212: -3,-6 + 2219: -3,-5 + 2228: -2,-6 + 2235: -2,-5 + 2244: -1,-6 + 2251: -1,-5 + 2265: -20,-2 + 2268: -21,1 + 2281: 16,-2 + 2285: -17,-4 + 2290: 0,5 + 2306: 1,5 + 2323: 2,5 + 2340: 3,5 + 2385: -3,5 + 2402: -2,5 + 2423: -1,5 + 2436: 0,-5 + 2442: 1,-6 + 2449: 1,-5 + 2463: 2,-6 + 2470: 2,-5 + 2479: 3,-6 + 2486: 3,-5 + 2494: 4,-12 + 2495: 6,-9 + 2507: 14,-7 + 2511: -13,-7 + 2514: -6,-9 + 2516: -4,-11 + 2518: -3,-6 + 2525: -3,-5 + 2534: -2,-6 + 2541: -2,-5 + 2550: -1,-6 + 2557: -1,-5 + 2571: -20,-2 + 2574: -17,-4 + 2577: -21,1 + 2590: 16,-2 - node: id: LatticeEdgeS decals: - 288: 0,5 - 296: 1,5 - 304: 1,6 - 309: 2,5 - 317: 2,6 - 322: 3,5 - 330: 3,6 - 335: 4,15 - 336: 10,15 - 339: 14,10 - 342: 15,9 - 345: -6,13 - 348: -3,5 - 356: -3,6 - 361: -2,5 - 369: -2,6 - 374: -1,5 - 382: -1,6 - 387: 0,-5 - 400: 1,-5 - 413: 2,-5 - 426: 3,-5 - 453: -3,-5 - 466: -2,-5 - 479: -1,-5 - 496: -21,5 - 499: -19,10 - 502: -4,16 - 503: 8,18 - 504: 16,6 - 510: 0,5 - 518: 1,5 - 526: 1,6 - 531: 2,5 - 539: 2,6 - 544: 3,5 - 552: 3,6 - 557: 4,15 - 558: 10,15 - 561: 14,10 - 564: 15,9 - 567: -6,13 - 570: -3,5 - 578: -3,6 - 583: -2,5 - 591: -2,6 - 596: -1,5 - 604: -1,6 - 609: 0,-5 - 622: 1,-5 - 635: 2,-5 - 648: 3,-5 - 675: -3,-5 - 688: -2,-5 - 701: -1,-5 - 718: -21,5 - 721: -19,10 - 724: -4,16 - 725: 8,18 - 726: 16,6 - 766: 0,5 - 774: 1,5 - 782: 1,6 - 787: 2,5 - 795: 2,6 - 800: 3,5 - 808: 3,6 - 813: 4,15 - 829: 10,15 - 832: 14,10 - 835: 15,9 - 838: -6,13 - 841: -3,5 - 849: -3,6 - 854: -2,5 - 862: -2,6 - 867: -1,5 - 875: -1,6 - 880: 0,-5 - 893: 1,-5 - 906: 2,-5 - 919: 3,-5 - 955: -3,-5 - 968: -2,-5 - 981: -1,-5 - 998: -21,5 - 1001: -19,10 - 1004: -4,16 - 1005: 8,18 - 1006: 16,6 - 1072: 0,5 - 1088: 1,5 - 1096: 1,6 - 1105: 2,5 - 1113: 2,6 - 1122: 3,5 - 1130: 3,6 - 1135: 4,15 - 1151: 10,15 - 1154: 14,10 - 1157: 15,9 - 1160: -6,13 - 1167: -3,5 - 1175: -3,6 - 1184: -2,5 - 1192: -2,6 - 1205: -1,5 - 1213: -1,6 - 1218: 0,-5 - 1231: 1,-5 - 1252: 2,-5 - 1268: 3,-5 - 1307: -3,-5 - 1323: -2,-5 - 1339: -1,-5 - 1364: -21,5 - 1367: -19,10 - 1370: -4,16 - 1371: 8,18 - 1372: 16,6 - 1378: 0,5 - 1394: 1,5 - 1402: 1,6 - 1411: 2,5 - 1419: 2,6 - 1428: 3,5 - 1436: 3,6 - 1441: 4,15 - 1457: 10,15 - 1460: 14,10 - 1463: 15,9 - 1466: -6,13 - 1473: -3,5 - 1481: -3,6 - 1490: -2,5 - 1498: -2,6 - 1511: -1,5 - 1519: -1,6 - 1524: 0,-5 - 1537: 1,-5 - 1558: 2,-5 - 1574: 3,-5 - 1613: -3,-5 - 1629: -2,-5 - 1645: -1,-5 - 1670: -21,5 - 1673: -19,10 - 1676: -4,16 - 1677: 8,18 - 1678: 16,6 - 1684: 0,5 - 1700: 1,5 - 1708: 1,6 - 1717: 2,5 - 1725: 2,6 - 1734: 3,5 - 1742: 3,6 - 1747: 4,15 - 1763: 10,15 - 1766: 14,10 - 1769: 15,9 - 1772: -6,13 - 1779: -3,5 - 1787: -3,6 - 1796: -2,5 - 1804: -2,6 - 1817: -1,5 - 1825: -1,6 - 1830: 0,-5 - 1843: 1,-5 - 1864: 2,-5 - 1880: 3,-5 - 1919: -3,-5 - 1935: -2,-5 - 1951: -1,-5 - 1976: -21,5 - 1979: -19,10 - 1982: -4,16 - 1983: 8,18 - 1984: 16,6 + 279: 0,5 + 287: 1,5 + 295: 1,6 + 300: 2,5 + 308: 2,6 + 313: 3,5 + 321: 3,6 + 326: 4,15 + 327: 10,15 + 330: 14,10 + 333: 15,9 + 336: -6,13 + 339: -3,5 + 347: -3,6 + 352: -2,5 + 360: -2,6 + 365: -1,5 + 373: -1,6 + 378: 0,-5 + 391: 1,-5 + 404: 2,-5 + 417: 3,-5 + 444: -3,-5 + 457: -2,-5 + 470: -1,-5 + 487: -21,5 + 490: -19,10 + 493: -4,16 + 494: 8,18 + 495: 16,6 + 501: 0,5 + 509: 1,5 + 517: 1,6 + 522: 2,5 + 530: 2,6 + 535: 3,5 + 543: 3,6 + 548: 4,15 + 549: 10,15 + 552: 14,10 + 555: 15,9 + 558: -6,13 + 561: -3,5 + 569: -3,6 + 574: -2,5 + 582: -2,6 + 587: -1,5 + 595: -1,6 + 600: 0,-5 + 613: 1,-5 + 626: 2,-5 + 639: 3,-5 + 666: -3,-5 + 679: -2,-5 + 692: -1,-5 + 709: -21,5 + 712: -19,10 + 715: -4,16 + 716: 8,18 + 717: 16,6 + 757: 0,5 + 765: 1,5 + 773: 1,6 + 778: 2,5 + 786: 2,6 + 791: 3,5 + 799: 3,6 + 804: 4,15 + 820: 10,15 + 823: 14,10 + 826: 15,9 + 829: -6,13 + 832: -3,5 + 840: -3,6 + 845: -2,5 + 853: -2,6 + 858: -1,5 + 866: -1,6 + 871: 0,-5 + 884: 1,-5 + 897: 2,-5 + 910: 3,-5 + 946: -3,-5 + 959: -2,-5 + 972: -1,-5 + 989: -21,5 + 992: -19,10 + 995: -4,16 + 996: 8,18 + 997: 16,6 + 1063: 0,5 + 1079: 1,5 + 1087: 1,6 + 1096: 2,5 + 1104: 2,6 + 1113: 3,5 + 1121: 3,6 + 1126: 4,15 + 1142: 10,15 + 1145: 14,10 + 1148: 15,9 + 1151: -6,13 + 1158: -3,5 + 1166: -3,6 + 1175: -2,5 + 1183: -2,6 + 1196: -1,5 + 1204: -1,6 + 1209: 0,-5 + 1222: 1,-5 + 1243: 2,-5 + 1259: 3,-5 + 1298: -3,-5 + 1314: -2,-5 + 1330: -1,-5 + 1355: -21,5 + 1358: -19,10 + 1361: -4,16 + 1362: 8,18 + 1363: 16,6 + 1369: 0,5 + 1385: 1,5 + 1393: 1,6 + 1402: 2,5 + 1410: 2,6 + 1419: 3,5 + 1427: 3,6 + 1432: 4,15 + 1448: 10,15 + 1451: 14,10 + 1454: 15,9 + 1457: -6,13 + 1464: -3,5 + 1472: -3,6 + 1481: -2,5 + 1489: -2,6 + 1502: -1,5 + 1510: -1,6 + 1515: 0,-5 + 1528: 1,-5 + 1549: 2,-5 + 1565: 3,-5 + 1604: -3,-5 + 1620: -2,-5 + 1636: -1,-5 + 1661: -21,5 + 1664: -19,10 + 1667: -4,16 + 1668: 8,18 + 1669: 16,6 + 1675: 0,5 + 1691: 1,5 + 1699: 1,6 + 1708: 2,5 + 1716: 2,6 + 1725: 3,5 + 1733: 3,6 + 1738: 4,15 + 1754: 10,15 + 1757: 14,10 + 1760: 15,9 + 1763: -6,13 + 1770: -3,5 + 1778: -3,6 + 1787: -2,5 + 1795: -2,6 + 1808: -1,5 + 1816: -1,6 + 1821: 0,-5 + 1834: 1,-5 + 1855: 2,-5 + 1871: 3,-5 + 1910: -3,-5 + 1926: -2,-5 + 1942: -1,-5 + 1967: -21,5 + 1970: -19,10 + 1973: -4,16 + 1974: 8,18 + 1975: 16,6 + 1981: 0,5 + 1997: 1,5 + 2005: 1,6 + 2014: 2,5 + 2022: 2,6 + 2031: 3,5 + 2039: 3,6 + 2044: 4,15 + 2060: 10,15 + 2063: 14,10 + 2066: 15,9 + 2069: -6,13 + 2076: -3,5 + 2084: -3,6 + 2093: -2,5 + 2101: -2,6 + 2114: -1,5 + 2122: -1,6 + 2127: 0,-5 + 2140: 1,-5 + 2161: 2,-5 + 2177: 3,-5 + 2216: -3,-5 + 2232: -2,-5 + 2248: -1,-5 + 2270: -21,5 + 2273: -19,10 + 2276: -4,16 + 2277: 8,18 + 2278: 16,6 + 2287: 0,5 + 2303: 1,5 + 2311: 1,6 + 2320: 2,5 + 2328: 2,6 + 2337: 3,5 + 2345: 3,6 + 2350: 4,15 + 2366: 10,15 + 2369: 14,10 + 2372: 15,9 + 2375: -6,13 + 2382: -3,5 + 2390: -3,6 + 2399: -2,5 + 2407: -2,6 + 2420: -1,5 + 2428: -1,6 + 2433: 0,-5 + 2446: 1,-5 + 2467: 2,-5 + 2483: 3,-5 + 2522: -3,-5 + 2538: -2,-5 + 2554: -1,-5 + 2579: -21,5 + 2582: -19,10 + 2585: -4,16 + 2586: 8,18 + 2587: 16,6 - node: id: LatticeEdgeW decals: - 293: 0,5 - 301: 1,5 - 307: 1,6 - 314: 2,5 - 320: 2,6 - 327: 3,5 - 333: 3,6 - 337: 10,15 - 340: 14,10 - 343: 15,9 - 353: -3,5 - 359: -3,6 - 366: -2,5 - 372: -2,6 - 379: -1,5 - 385: -1,6 - 392: 0,-5 - 398: 1,-6 - 405: 1,-5 - 411: 2,-6 - 418: 2,-5 - 424: 3,-6 - 431: 3,-5 - 436: 6,-9 - 439: 14,-7 - 451: -3,-6 - 458: -3,-5 - 464: -2,-6 - 471: -2,-5 - 477: -1,-6 - 484: -1,-5 - 505: 16,6 - 508: 16,-2 - 515: 0,5 - 523: 1,5 - 529: 1,6 - 536: 2,5 - 542: 2,6 - 549: 3,5 - 555: 3,6 - 559: 10,15 - 562: 14,10 - 565: 15,9 - 575: -3,5 - 581: -3,6 - 588: -2,5 - 594: -2,6 - 601: -1,5 - 607: -1,6 - 614: 0,-5 - 620: 1,-6 - 627: 1,-5 - 633: 2,-6 - 640: 2,-5 - 646: 3,-6 - 653: 3,-5 - 658: 6,-9 - 661: 14,-7 - 673: -3,-6 - 680: -3,-5 - 686: -2,-6 - 693: -2,-5 - 699: -1,-6 - 706: -1,-5 - 727: 16,6 - 730: 16,-2 - 771: 0,5 - 779: 1,5 - 785: 1,6 - 792: 2,5 - 798: 2,6 - 805: 3,5 - 811: 3,6 - 830: 10,15 - 833: 14,10 - 836: 15,9 - 846: -3,5 - 852: -3,6 - 859: -2,5 - 865: -2,6 - 872: -1,5 - 878: -1,6 - 885: 0,-5 - 891: 1,-6 - 898: 1,-5 - 904: 2,-6 - 911: 2,-5 - 917: 3,-6 - 924: 3,-5 - 929: 6,-9 - 941: 14,-7 - 953: -3,-6 - 960: -3,-5 - 966: -2,-6 - 973: -2,-5 - 979: -1,-6 - 986: -1,-5 - 1007: 16,6 - 1010: 16,-2 - 1077: 0,5 - 1093: 1,5 - 1099: 1,6 - 1110: 2,5 - 1116: 2,6 - 1127: 3,5 - 1133: 3,6 - 1152: 10,15 - 1155: 14,10 - 1158: 15,9 - 1172: -3,5 - 1178: -3,6 - 1189: -2,5 - 1195: -2,6 - 1210: -1,5 - 1216: -1,6 - 1223: 0,-5 - 1229: 1,-6 - 1236: 1,-5 - 1250: 2,-6 - 1257: 2,-5 - 1266: 3,-6 - 1273: 3,-5 - 1281: 6,-9 - 1293: 14,-7 - 1305: -3,-6 - 1312: -3,-5 - 1321: -2,-6 - 1328: -2,-5 - 1337: -1,-6 - 1344: -1,-5 - 1373: 16,6 - 1376: 16,-2 - 1383: 0,5 - 1399: 1,5 - 1405: 1,6 - 1416: 2,5 - 1422: 2,6 - 1433: 3,5 - 1439: 3,6 - 1458: 10,15 - 1461: 14,10 - 1464: 15,9 - 1478: -3,5 - 1484: -3,6 - 1495: -2,5 - 1501: -2,6 - 1516: -1,5 - 1522: -1,6 - 1529: 0,-5 - 1535: 1,-6 - 1542: 1,-5 - 1556: 2,-6 - 1563: 2,-5 - 1572: 3,-6 - 1579: 3,-5 - 1587: 6,-9 - 1599: 14,-7 - 1611: -3,-6 - 1618: -3,-5 - 1627: -2,-6 - 1634: -2,-5 - 1643: -1,-6 - 1650: -1,-5 - 1679: 16,6 - 1682: 16,-2 - 1689: 0,5 - 1705: 1,5 - 1711: 1,6 - 1722: 2,5 - 1728: 2,6 - 1739: 3,5 - 1745: 3,6 - 1764: 10,15 - 1767: 14,10 - 1770: 15,9 - 1784: -3,5 - 1790: -3,6 - 1801: -2,5 - 1807: -2,6 - 1822: -1,5 - 1828: -1,6 - 1835: 0,-5 - 1841: 1,-6 - 1848: 1,-5 - 1862: 2,-6 - 1869: 2,-5 - 1878: 3,-6 - 1885: 3,-5 - 1893: 6,-9 - 1905: 14,-7 - 1917: -3,-6 - 1924: -3,-5 - 1933: -2,-6 - 1940: -2,-5 - 1949: -1,-6 - 1956: -1,-5 - 1985: 16,6 - 1988: 16,-2 + 284: 0,5 + 292: 1,5 + 298: 1,6 + 305: 2,5 + 311: 2,6 + 318: 3,5 + 324: 3,6 + 328: 10,15 + 331: 14,10 + 334: 15,9 + 344: -3,5 + 350: -3,6 + 357: -2,5 + 363: -2,6 + 370: -1,5 + 376: -1,6 + 383: 0,-5 + 389: 1,-6 + 396: 1,-5 + 402: 2,-6 + 409: 2,-5 + 415: 3,-6 + 422: 3,-5 + 427: 6,-9 + 430: 14,-7 + 442: -3,-6 + 449: -3,-5 + 455: -2,-6 + 462: -2,-5 + 468: -1,-6 + 475: -1,-5 + 496: 16,6 + 499: 16,-2 + 506: 0,5 + 514: 1,5 + 520: 1,6 + 527: 2,5 + 533: 2,6 + 540: 3,5 + 546: 3,6 + 550: 10,15 + 553: 14,10 + 556: 15,9 + 566: -3,5 + 572: -3,6 + 579: -2,5 + 585: -2,6 + 592: -1,5 + 598: -1,6 + 605: 0,-5 + 611: 1,-6 + 618: 1,-5 + 624: 2,-6 + 631: 2,-5 + 637: 3,-6 + 644: 3,-5 + 649: 6,-9 + 652: 14,-7 + 664: -3,-6 + 671: -3,-5 + 677: -2,-6 + 684: -2,-5 + 690: -1,-6 + 697: -1,-5 + 718: 16,6 + 721: 16,-2 + 762: 0,5 + 770: 1,5 + 776: 1,6 + 783: 2,5 + 789: 2,6 + 796: 3,5 + 802: 3,6 + 821: 10,15 + 824: 14,10 + 827: 15,9 + 837: -3,5 + 843: -3,6 + 850: -2,5 + 856: -2,6 + 863: -1,5 + 869: -1,6 + 876: 0,-5 + 882: 1,-6 + 889: 1,-5 + 895: 2,-6 + 902: 2,-5 + 908: 3,-6 + 915: 3,-5 + 920: 6,-9 + 932: 14,-7 + 944: -3,-6 + 951: -3,-5 + 957: -2,-6 + 964: -2,-5 + 970: -1,-6 + 977: -1,-5 + 998: 16,6 + 1001: 16,-2 + 1068: 0,5 + 1084: 1,5 + 1090: 1,6 + 1101: 2,5 + 1107: 2,6 + 1118: 3,5 + 1124: 3,6 + 1143: 10,15 + 1146: 14,10 + 1149: 15,9 + 1163: -3,5 + 1169: -3,6 + 1180: -2,5 + 1186: -2,6 + 1201: -1,5 + 1207: -1,6 + 1214: 0,-5 + 1220: 1,-6 + 1227: 1,-5 + 1241: 2,-6 + 1248: 2,-5 + 1257: 3,-6 + 1264: 3,-5 + 1272: 6,-9 + 1284: 14,-7 + 1296: -3,-6 + 1303: -3,-5 + 1312: -2,-6 + 1319: -2,-5 + 1328: -1,-6 + 1335: -1,-5 + 1364: 16,6 + 1367: 16,-2 + 1374: 0,5 + 1390: 1,5 + 1396: 1,6 + 1407: 2,5 + 1413: 2,6 + 1424: 3,5 + 1430: 3,6 + 1449: 10,15 + 1452: 14,10 + 1455: 15,9 + 1469: -3,5 + 1475: -3,6 + 1486: -2,5 + 1492: -2,6 + 1507: -1,5 + 1513: -1,6 + 1520: 0,-5 + 1526: 1,-6 + 1533: 1,-5 + 1547: 2,-6 + 1554: 2,-5 + 1563: 3,-6 + 1570: 3,-5 + 1578: 6,-9 + 1590: 14,-7 + 1602: -3,-6 + 1609: -3,-5 + 1618: -2,-6 + 1625: -2,-5 + 1634: -1,-6 + 1641: -1,-5 + 1670: 16,6 + 1673: 16,-2 + 1680: 0,5 + 1696: 1,5 + 1702: 1,6 + 1713: 2,5 + 1719: 2,6 + 1730: 3,5 + 1736: 3,6 + 1755: 10,15 + 1758: 14,10 + 1761: 15,9 + 1775: -3,5 + 1781: -3,6 + 1792: -2,5 + 1798: -2,6 + 1813: -1,5 + 1819: -1,6 + 1826: 0,-5 + 1832: 1,-6 + 1839: 1,-5 + 1853: 2,-6 + 1860: 2,-5 + 1869: 3,-6 + 1876: 3,-5 + 1884: 6,-9 + 1896: 14,-7 + 1908: -3,-6 + 1915: -3,-5 + 1924: -2,-6 + 1931: -2,-5 + 1940: -1,-6 + 1947: -1,-5 + 1976: 16,6 + 1979: 16,-2 + 1986: 0,5 + 2002: 1,5 + 2008: 1,6 + 2019: 2,5 + 2025: 2,6 + 2036: 3,5 + 2042: 3,6 + 2061: 10,15 + 2064: 14,10 + 2067: 15,9 + 2081: -3,5 + 2087: -3,6 + 2098: -2,5 + 2104: -2,6 + 2119: -1,5 + 2125: -1,6 + 2132: 0,-5 + 2138: 1,-6 + 2145: 1,-5 + 2159: 2,-6 + 2166: 2,-5 + 2175: 3,-6 + 2182: 3,-5 + 2190: 6,-9 + 2202: 14,-7 + 2214: -3,-6 + 2221: -3,-5 + 2230: -2,-6 + 2237: -2,-5 + 2246: -1,-6 + 2253: -1,-5 + 2279: 16,6 + 2282: 16,-2 + 2292: 0,5 + 2308: 1,5 + 2314: 1,6 + 2325: 2,5 + 2331: 2,6 + 2342: 3,5 + 2348: 3,6 + 2367: 10,15 + 2370: 14,10 + 2373: 15,9 + 2387: -3,5 + 2393: -3,6 + 2404: -2,5 + 2410: -2,6 + 2425: -1,5 + 2431: -1,6 + 2438: 0,-5 + 2444: 1,-6 + 2451: 1,-5 + 2465: 2,-6 + 2472: 2,-5 + 2481: 3,-6 + 2488: 3,-5 + 2496: 6,-9 + 2508: 14,-7 + 2520: -3,-6 + 2527: -3,-5 + 2536: -2,-6 + 2543: -2,-5 + 2552: -1,-6 + 2559: -1,-5 + 2588: 16,6 + 2591: 16,-2 - node: color: '#FFFFFFFF' id: TechE decals: 104: 15,2 - 118: 5,-8 - 119: 5,-7 - 120: 5,-6 - 121: 5,-4 - 144: -10,6 - 166: 2,0 - 183: 14,-1 - 220: 5,4 - 221: 5,5 - 222: 5,6 - 223: 5,8 - 224: 5,9 - 225: 5,10 - 271: -14,11 - 272: 6,13 - 275: 6,14 - 278: -10,12 + 109: 5,-8 + 110: 5,-7 + 111: 5,-6 + 112: 5,-4 + 135: -10,6 + 157: 2,0 + 174: 14,-1 + 211: 5,4 + 212: 5,5 + 213: 5,6 + 214: 5,8 + 215: 5,9 + 216: 5,10 + 262: -14,11 + 263: 6,13 + 266: 6,14 + 269: -10,12 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechE decals: - 761: 13,-1 - 762: 13,0 - 763: 13,1 - 764: 13,2 - 765: 13,3 + 752: 13,-1 + 753: 13,0 + 754: 13,1 + 755: 13,2 + 756: 13,3 - node: color: '#FFFFFFFF' id: TechN @@ -1995,40 +2593,38 @@ entities: 98: 17,1 99: 16,1 100: 15,1 - 106: -17,-2 - 107: -16,-2 - 137: -5,6 - 147: -10,-1 - 149: -9,-1 - 186: 9,8 - 187: 10,8 - 188: 11,8 - 199: 13,7 - 206: -12,-5 - 207: -11,-5 - 208: -10,-5 - 209: -9,-5 - 210: -8,-5 - 211: -7,-5 - 264: -13,10 - 265: -12,10 - 266: -11,10 - 267: -9,11 - 268: -8,11 - 269: -7,11 + 128: -5,6 + 138: -10,-1 + 140: -9,-1 + 177: 9,8 + 178: 10,8 + 179: 11,8 + 190: 13,7 + 197: -12,-5 + 198: -11,-5 + 199: -10,-5 + 200: -9,-5 + 201: -8,-5 + 202: -7,-5 + 255: -13,10 + 256: -12,10 + 257: -11,10 + 258: -9,11 + 259: -8,11 + 260: -7,11 - node: color: '#FFFFFFFF' id: TechNE decals: - 151: -8,-1 - 163: 2,1 + 142: -8,-1 + 154: 2,1 - node: color: '#FFFFFFFF' id: TechNW decals: - 145: -11,-1 - 164: -2,1 - 189: 8,8 + 136: -11,-1 + 155: -2,1 + 180: 8,8 - node: color: '#FFFFFFFF' id: TechS @@ -2039,93 +2635,93 @@ entities: 101: 17,3 102: 16,3 103: 15,3 - 142: -9,7 - 143: -8,7 - 148: -10,-2 - 152: -9,-2 - 200: -18,7 - 201: -17,7 - 202: -16,7 + 133: -9,7 + 134: -8,7 + 139: -10,-2 + 143: -9,-2 + 191: -18,7 + 192: -17,7 + 193: -16,7 - node: color: '#FFFFFFFF' id: TechSE decals: - 150: -8,-2 - 162: 2,-1 + 141: -8,-2 + 153: 2,-1 - node: color: '#FFFFFFFF' id: TechSW decals: - 146: -11,-2 - 161: -2,-1 + 137: -11,-2 + 152: -2,-1 - node: color: '#FFFFFFFF' id: TechW decals: 85: -18,3 - 115: -5,-8 - 116: -5,-7 - 117: -5,-6 - 136: -5,5 - 138: -5,6 - 139: -5,7 - 165: -2,0 - 171: 8,-5 - 172: 8,-4 - 177: -5,-4 - 184: 12,-2 - 203: -15,6 - 204: -15,8 - 205: -15,7 - 217: -5,9 - 218: -5,10 - 219: -5,11 - 270: -14,11 - 273: 6,13 - 274: 6,14 - 279: -10,12 + 106: -5,-8 + 107: -5,-7 + 108: -5,-6 + 127: -5,5 + 129: -5,6 + 130: -5,7 + 156: -2,0 + 162: 8,-5 + 163: 8,-4 + 168: -5,-4 + 175: 12,-2 + 194: -15,6 + 195: -15,8 + 196: -15,7 + 208: -5,9 + 209: -5,10 + 210: -5,11 + 261: -14,11 + 264: 6,13 + 265: 6,14 + 270: -10,12 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechW decals: - 756: 12,-1 - 757: 12,0 - 758: 12,1 - 759: 12,2 - 760: 12,3 + 747: 12,-1 + 748: 12,0 + 749: 12,1 + 750: 12,2 + 751: 12,3 - node: color: '#EFB34196' id: WarnBox decals: - 287: -8,0 + 278: -8,0 - node: color: '#EFB34196' id: WarnCornerSmallNE decals: - 234: 7,4 - 243: 9,5 + 225: 7,4 + 234: 9,5 - node: color: '#EFB34196' id: WarnCornerSmallSE decals: - 192: 11,8 - 194: 8,8 - 233: 7,6 - 237: 9,5 + 183: 11,8 + 185: 8,8 + 224: 7,6 + 228: 9,5 - node: color: '#EFB34196' id: WarnCornerSmallSW decals: - 193: 10,8 + 184: 10,8 - node: color: '#EFB34196' id: WarnFull decals: 89: -20,3 97: 17,2 - 276: -12,9 - 277: -8,10 + 267: -12,9 + 268: -8,10 - node: color: '#EFB34196' id: WarnLineE @@ -2156,17 +2752,17 @@ entities: 95: 17,1 96: 17,3 105: 16,2 - 153: -16,8 - 154: -16,9 - 159: -18,8 - 160: -18,9 - 191: 11,7 - 197: 13,9 - 198: 13,8 - 232: 7,5 - 238: 9,4 - 242: 9,6 - 286: 14,5 + 144: -16,8 + 145: -16,9 + 150: -18,8 + 151: -18,9 + 182: 11,7 + 188: 13,9 + 189: 13,8 + 223: 7,5 + 229: 9,4 + 233: 9,6 + 277: 14,5 - node: color: '#EFB34196' id: WarnLineN @@ -2189,26 +2785,26 @@ entities: 59: 9,10 79: 11,4 81: 13,10 - 180: 11,-2 - 181: 12,-2 - 182: 13,-2 - 185: 10,-2 - 190: 9,8 - 235: 11,5 - 236: 10,5 - 247: 12,5 - 248: -7,-4 - 249: -8,-4 - 250: -9,-4 - 251: -10,-4 - 252: -11,-4 - 253: -12,-4 - 280: -13,10 - 281: -12,10 - 282: -11,10 - 283: -9,11 - 284: -8,11 - 285: -7,11 + 171: 11,-2 + 172: 12,-2 + 173: 13,-2 + 176: 10,-2 + 181: 9,8 + 226: 11,5 + 227: 10,5 + 238: 12,5 + 239: -7,-4 + 240: -8,-4 + 241: -9,-4 + 242: -10,-4 + 243: -11,-4 + 244: -12,-4 + 271: -13,10 + 272: -12,10 + 273: -11,10 + 274: -9,11 + 275: -8,11 + 276: -7,11 - node: color: '#EFB34196' id: WarnLineS @@ -2236,21 +2832,21 @@ entities: 90: -19,3 91: -20,2 92: -20,4 - 155: -16,8 - 156: -16,9 - 157: -18,8 - 158: -18,9 - 195: 13,8 - 196: 13,9 - 226: 7,4 - 227: 6,5 - 228: 7,5 - 229: 7,6 - 230: 6,4 - 231: 6,6 - 239: 9,4 - 240: 9,5 - 241: 9,6 + 146: -16,8 + 147: -16,9 + 148: -18,8 + 149: -18,9 + 186: 13,8 + 187: 13,9 + 217: 7,4 + 218: 6,5 + 219: 7,5 + 220: 7,6 + 221: 6,4 + 222: 6,6 + 230: 9,4 + 231: 9,5 + 232: 9,6 - node: color: '#EFB34196' id: WarnLineW @@ -2273,19 +2869,19 @@ entities: 64: 9,10 80: 11,4 82: 13,10 - 244: 10,5 - 245: 11,5 - 246: 12,5 - 254: -12,-4 - 255: -11,-4 - 256: -10,-4 - 257: -9,-4 - 258: -8,-4 - 259: -7,-4 - 260: 7,10 - 261: 5,12 - 262: 9,15 - 263: -5,13 + 235: 10,5 + 236: 11,5 + 237: 12,5 + 245: -12,-4 + 246: -11,-4 + 247: -10,-4 + 248: -9,-4 + 249: -8,-4 + 250: -7,-4 + 251: 7,10 + 252: 5,12 + 253: 9,15 + 254: -5,13 - type: RadiationGridResistance - type: GridAtmosphere version: 2 @@ -2469,7 +3065,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 724 + - 707 - type: Physics fixedRotation: False canCollide: False @@ -2481,7 +3077,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 724 + - 707 - type: Physics canCollide: False - uid: 4 @@ -2492,7 +3088,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 724 + - 707 - type: Physics fixedRotation: False canCollide: False @@ -2504,10 +3100,10 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 724 + - 707 - type: Physics canCollide: False - - uid: 7 + - uid: 6 components: - type: Transform rot: 3.141592653589793 rad @@ -2515,10 +3111,10 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 724 + - 707 - type: Physics canCollide: False - - uid: 1429 + - uid: 7 components: - type: Transform rot: 3.141592653589793 rad @@ -2526,16 +3122,16 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 724 + - 707 - type: Physics canCollide: False -- proto: AAAHardpointMediumBallistic +- proto: AAAHardpointSmallBallistic entities: - uid: 8 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,12.5 + pos: -13.5,11.5 parent: 1 - type: Physics canCollide: False @@ -2543,7 +3139,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,11.5 + pos: -9.5,12.5 parent: 1 - type: Physics canCollide: False @@ -2557,31 +3153,30 @@ entities: - uid: 11 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,13.5 + pos: -18.5,-2.5 parent: 1 - type: Physics canCollide: False - uid: 12 components: - type: Transform - pos: -15.5,-4.5 + pos: 5.5,-9.5 parent: 1 - type: Physics canCollide: False -- proto: AAAHardpointSmallBallistic - entities: - uid: 13 components: - type: Transform - pos: -18.5,-2.5 + rot: 3.141592653589793 rad + pos: 17.5,5.5 parent: 1 - type: Physics canCollide: False - uid: 14 components: - type: Transform - pos: 5.5,-9.5 + rot: 3.141592653589793 rad + pos: 6.5,15.5 parent: 1 - type: Physics canCollide: False @@ -2589,51 +3184,51 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,5.5 + pos: -19.5,9.5 parent: 1 - type: Physics canCollide: False - uid: 16 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,15.5 + pos: -6.5,-7.5 parent: 1 - type: Physics canCollide: False - uid: 17 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,9.5 + pos: 15.5,-5.5 parent: 1 - type: Physics canCollide: False - uid: 18 components: - type: Transform - pos: -6.5,-7.5 + pos: -4.5,-9.5 parent: 1 - type: Physics canCollide: False - uid: 19 components: - type: Transform - pos: 15.5,-5.5 + pos: 8.5,-7.5 parent: 1 - type: Physics canCollide: False - uid: 20 components: - type: Transform - pos: -4.5,-9.5 + rot: -1.5707963267948966 rad + pos: -15.5,-4.5 parent: 1 - type: Physics canCollide: False - uid: 21 components: - type: Transform - pos: 8.5,-7.5 + rot: 3.141592653589793 rad + pos: 11.5,13.5 parent: 1 - type: Physics canCollide: False @@ -2699,52 +3294,52 @@ entities: - uid: 30 components: - type: Transform - pos: -14.5,5.5 + pos: 9.5,10.5 parent: 1 - uid: 31 components: - type: Transform - pos: -13.5,1.5 + pos: -14.5,5.5 parent: 1 - uid: 32 components: - type: Transform - pos: -5.5,-2.5 + pos: -13.5,1.5 parent: 1 - uid: 33 components: - type: Transform - pos: -4.5,-4.5 + pos: -5.5,-2.5 parent: 1 - uid: 34 components: - type: Transform - pos: 11.5,4.5 + pos: -4.5,-4.5 parent: 1 - uid: 35 components: - type: Transform - pos: 7.5,-2.5 + pos: 11.5,4.5 parent: 1 - uid: 36 components: - type: Transform - pos: 9.5,4.5 + pos: 7.5,-2.5 parent: 1 - uid: 37 components: - type: Transform - pos: 9.5,7.5 + pos: 9.5,4.5 parent: 1 - uid: 38 components: - type: Transform - pos: -5.5,5.5 + pos: 9.5,7.5 parent: 1 - uid: 39 components: - type: Transform - pos: 9.5,10.5 + pos: -5.5,5.5 parent: 1 - proto: AirlockCommandLockedNCWLHorizontal entities: @@ -2977,359 +3572,178 @@ entities: - uid: 77 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,0.5 + pos: -20.5,2.5 parent: 1 - uid: 78 components: - type: Transform - pos: -20.5,2.5 + pos: -20.5,3.5 parent: 1 - uid: 79 components: - type: Transform - pos: -20.5,3.5 + pos: -20.5,4.5 parent: 1 - uid: 80 components: - type: Transform - pos: -20.5,4.5 + pos: -17.5,10.5 parent: 1 - uid: 81 components: - type: Transform - pos: -17.5,10.5 + pos: -15.5,10.5 parent: 1 - uid: 82 components: - type: Transform - pos: -15.5,10.5 + pos: -13.5,8.5 parent: 1 - uid: 83 components: - type: Transform - pos: -13.5,8.5 + pos: -0.5,-3.5 parent: 1 - uid: 84 components: - type: Transform - pos: -0.5,-3.5 + pos: 0.5,-3.5 parent: 1 - uid: 85 components: - type: Transform - pos: 0.5,-3.5 + pos: 1.5,-3.5 parent: 1 - uid: 86 components: - type: Transform - pos: 1.5,-3.5 + pos: 1.5,4.5 parent: 1 - uid: 87 components: - type: Transform - pos: 1.5,4.5 + pos: 0.5,4.5 parent: 1 - uid: 88 components: - type: Transform - pos: 0.5,4.5 + pos: -0.5,4.5 parent: 1 - uid: 89 components: - type: Transform - pos: -0.5,4.5 + pos: 18.5,1.5 parent: 1 - uid: 90 components: - type: Transform - pos: 18.5,1.5 + pos: 18.5,2.5 parent: 1 - uid: 91 components: - type: Transform - pos: 18.5,2.5 + pos: 18.5,3.5 parent: 1 - uid: 92 components: - type: Transform - pos: 18.5,3.5 + pos: 13.5,10.5 parent: 1 +- proto: BarricadeBlock + entities: - uid: 93 components: - type: Transform - pos: 13.5,10.5 + pos: 5.5,7.5 parent: 1 +- proto: BaseAPC + entities: - uid: 94 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-3.5 + pos: -9.5,-2.5 parent: 1 - uid: 95 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,13.5 + pos: -13.5,5.5 parent: 1 -- proto: BarricadeBlock +- proto: BlastDoor entities: - uid: 96 components: - type: Transform - pos: 5.5,7.5 + pos: -17.5,10.5 parent: 1 -- proto: BaseAPC - entities: + - type: DeviceLinkSink + links: + - 1070 - uid: 97 components: - type: Transform - pos: -9.5,-2.5 + pos: -15.5,10.5 parent: 1 + - type: DeviceLinkSink + links: + - 1070 - uid: 98 components: - type: Transform - pos: -13.5,5.5 + pos: 0.5,-3.5 parent: 1 -- proto: BaseWeaponTurretSlugspitter - entities: + - type: DeviceLinkSink + links: + - 1071 - uid: 99 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,12.5 + pos: -0.5,-3.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 5 - - type: Battery - startingCharge: 0 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: PointCannon - linkedConsoleIds: - - 727 - linkedConsoleId: 727 + - type: DeviceLinkSink + links: + - 1071 - uid: 100 components: - type: Transform - pos: 17.5,-0.5 + pos: 1.5,-3.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 5 - - type: Battery - startingCharge: 0 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: PointCannon - linkedConsoleIds: - - 727 - linkedConsoleId: 727 + - type: DeviceLinkSink + links: + - 1071 - uid: 101 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,13.5 + pos: 1.5,4.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 5 - - type: Battery - startingCharge: 0 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: PointCannon - linkedConsoleIds: - - 727 - linkedConsoleId: 727 + - type: DeviceLinkSink + links: + - 1072 - uid: 102 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,11.5 + pos: 0.5,4.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 5 - - type: Battery - startingCharge: 0 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: PointCannon - linkedConsoleIds: - - 727 - linkedConsoleId: 727 + - type: DeviceLinkSink + links: + - 1072 - uid: 103 components: - type: Transform - pos: -15.5,-4.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 5 - - type: Battery - startingCharge: 0 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: PointCannon - linkedConsoleIds: - - 727 - linkedConsoleId: 727 -- proto: BlastDoor - entities: - - uid: 104 - components: - - type: Transform - pos: -17.5,10.5 + rot: 3.141592653589793 rad + pos: -0.5,4.5 parent: 1 - type: DeviceLinkSink links: - - 1074 - - uid: 105 - components: - - type: Transform - pos: -15.5,10.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1074 - - uid: 106 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1075 - - uid: 107 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1075 - - uid: 108 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1075 - - uid: 109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,4.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1076 - - uid: 110 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1076 - - uid: 111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1076 - - uid: 112 + - 1072 + - uid: 104 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,2.5 parent: 1 - - type: DeviceLinkSink - links: - - 1077 - - uid: 113 + - uid: 105 components: - type: Transform rot: 1.5707963267948966 rad @@ -3337,68 +3751,41 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1078 - - uid: 114 + - 1073 + - uid: 106 components: - type: Transform pos: 7.5,11.5 parent: 1 - type: DeviceLinkSink links: - - 1073 - - uid: 115 + - 1069 + - uid: 107 components: - type: Transform pos: 13.5,10.5 parent: 1 - type: DeviceLinkSink links: - - 1137 - - 1079 - - uid: 116 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,0.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1072 - - uid: 117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-3.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1081 - - uid: 118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,13.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1080 + - 1136 + - 1074 - proto: Bookshelf entities: - - uid: 119 + - uid: 108 components: - type: Transform pos: -7.5,2.5 parent: 1 - proto: BoriaticFuelTankFull entities: - - uid: 120 + - uid: 109 components: - type: Transform pos: -11.5,-4.5 parent: 1 - proto: BoriaticGeneratorEinsteinShuttle entities: - - uid: 121 + - uid: 110 components: - type: Transform pos: -7.5,7.5 @@ -3409,88 +3796,65 @@ entities: bodyType: Static - proto: BoxBeaker entities: - - uid: 122 + - uid: 111 components: - type: Transform pos: -17.67577,-0.4951434 parent: 1 - proto: BoxFolderBlack entities: - - uid: 123 + - uid: 112 components: - type: Transform pos: -11.624044,-1.4801016 parent: 1 - proto: BoxFolderYellow entities: - - uid: 124 + - uid: 113 components: - type: Transform pos: -11.264669,-1.4957266 parent: 1 - proto: BoxPillCanister entities: - - uid: 125 + - uid: 114 components: - type: Transform pos: -17.26952,-0.5107684 parent: 1 - proto: ButtonFrameCaution entities: - - uid: 126 + - uid: 115 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,8.5 parent: 1 - - uid: 127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,0.5 - parent: 1 - - uid: 128 + - uid: 116 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 1 - - uid: 129 + - uid: 117 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 130 + - uid: 118 components: - type: Transform pos: -19.5,5.5 parent: 1 - - uid: 131 - components: - - type: Transform - pos: 17.5,4.5 - parent: 1 - - uid: 132 + - uid: 119 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,7.5 parent: 1 - - uid: 133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 1 - - uid: 134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,12.5 - parent: 1 - proto: ButtonFrameCautionSecurity entities: - - uid: 135 + - uid: 120 components: - type: Transform rot: -1.5707963267948966 rad @@ -3498,2268 +3862,2268 @@ entities: parent: 1 - proto: CableApcExtension entities: - - uid: 136 + - uid: 121 components: - type: Transform pos: 10.5,4.5 parent: 1 - - uid: 137 + - uid: 122 components: - type: Transform pos: 10.5,2.5 parent: 1 - - uid: 138 + - uid: 123 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 139 + - uid: 124 components: - type: Transform pos: 10.5,3.5 parent: 1 - - uid: 140 + - uid: 125 components: - type: Transform pos: 7.5,-4.5 parent: 1 - - uid: 141 + - uid: 126 components: - type: Transform pos: -7.5,10.5 parent: 1 - - uid: 142 + - uid: 127 components: - type: Transform pos: -11.5,9.5 parent: 1 - - uid: 143 + - uid: 128 components: - type: Transform pos: -12.5,-4.5 parent: 1 - - uid: 144 + - uid: 129 components: - type: Transform pos: -12.5,-5.5 parent: 1 - - uid: 145 + - uid: 130 components: - type: Transform pos: -14.5,-3.5 parent: 1 - - uid: 146 + - uid: 131 components: - type: Transform pos: 10.5,1.5 parent: 1 - - uid: 147 + - uid: 132 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 148 + - uid: 133 components: - type: Transform pos: -12.5,-3.5 parent: 1 - - uid: 149 + - uid: 134 components: - type: Transform pos: -12.5,-2.5 parent: 1 - - uid: 150 + - uid: 135 components: - type: Transform pos: -12.5,-1.5 parent: 1 - - uid: 151 + - uid: 136 components: - type: Transform pos: -12.5,-0.5 parent: 1 - - uid: 152 + - uid: 137 components: - type: Transform pos: -12.5,0.5 parent: 1 - - uid: 153 + - uid: 138 components: - type: Transform pos: -12.5,1.5 parent: 1 - - uid: 154 + - uid: 139 components: - type: Transform pos: -12.5,2.5 parent: 1 - - uid: 155 + - uid: 140 components: - type: Transform pos: -12.5,3.5 parent: 1 - - uid: 156 + - uid: 141 components: - type: Transform pos: -12.5,4.5 parent: 1 - - uid: 157 + - uid: 142 components: - type: Transform pos: -12.5,5.5 parent: 1 - - uid: 158 + - uid: 143 components: - type: Transform pos: -12.5,6.5 parent: 1 - - uid: 159 + - uid: 144 components: - type: Transform pos: -12.5,7.5 parent: 1 - - uid: 160 + - uid: 145 components: - type: Transform pos: -12.5,8.5 parent: 1 - - uid: 161 + - uid: 146 components: - type: Transform pos: -12.5,9.5 parent: 1 - - uid: 162 + - uid: 147 components: - type: Transform pos: -12.5,10.5 parent: 1 - - uid: 163 + - uid: 148 components: - type: Transform pos: -9.5,-6.5 parent: 1 - - uid: 164 + - uid: 149 components: - type: Transform pos: -9.5,-5.5 parent: 1 - - uid: 165 + - uid: 150 components: - type: Transform pos: -9.5,-4.5 parent: 1 - - uid: 166 + - uid: 151 components: - type: Transform pos: -9.5,-3.5 parent: 1 - - uid: 167 + - uid: 152 components: - type: Transform pos: -9.5,-2.5 parent: 1 - - uid: 168 + - uid: 153 components: - type: Transform pos: -9.5,-1.5 parent: 1 - - uid: 169 + - uid: 154 components: - type: Transform pos: -9.5,-0.5 parent: 1 - - uid: 170 + - uid: 155 components: - type: Transform pos: -9.5,0.5 parent: 1 - - uid: 171 + - uid: 156 components: - type: Transform pos: -9.5,1.5 parent: 1 - - uid: 172 + - uid: 157 components: - type: Transform pos: -9.5,2.5 parent: 1 - - uid: 173 + - uid: 158 components: - type: Transform pos: -9.5,3.5 parent: 1 - - uid: 174 + - uid: 159 components: - type: Transform pos: -9.5,4.5 parent: 1 - - uid: 175 + - uid: 160 components: - type: Transform pos: -9.5,5.5 parent: 1 - - uid: 176 + - uid: 161 components: - type: Transform pos: -9.5,6.5 parent: 1 - - uid: 177 + - uid: 162 components: - type: Transform pos: -9.5,7.5 parent: 1 - - uid: 178 + - uid: 163 components: - type: Transform pos: -9.5,8.5 parent: 1 - - uid: 179 + - uid: 164 components: - type: Transform pos: -9.5,9.5 parent: 1 - - uid: 180 + - uid: 165 components: - type: Transform pos: -9.5,10.5 parent: 1 - - uid: 181 + - uid: 166 components: - type: Transform pos: -9.5,11.5 parent: 1 - - uid: 182 + - uid: 167 components: - type: Transform pos: -6.5,-7.5 parent: 1 - - uid: 183 + - uid: 168 components: - type: Transform pos: -6.5,-6.5 parent: 1 - - uid: 184 + - uid: 169 components: - type: Transform pos: -6.5,-5.5 parent: 1 - - uid: 185 + - uid: 170 components: - type: Transform pos: -6.5,-4.5 parent: 1 - - uid: 186 + - uid: 171 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 187 + - uid: 172 components: - type: Transform pos: -6.5,-2.5 parent: 1 - - uid: 188 + - uid: 173 components: - type: Transform pos: -6.5,-1.5 parent: 1 - - uid: 189 + - uid: 174 components: - type: Transform pos: -6.5,-0.5 parent: 1 - - uid: 190 + - uid: 175 components: - type: Transform pos: -6.5,0.5 parent: 1 - - uid: 191 + - uid: 176 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 192 + - uid: 177 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 193 + - uid: 178 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 194 + - uid: 179 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 195 + - uid: 180 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 196 + - uid: 181 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 197 + - uid: 182 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 198 + - uid: 183 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 199 + - uid: 184 components: - type: Transform pos: -6.5,9.5 parent: 1 - - uid: 200 + - uid: 185 components: - type: Transform pos: -6.5,10.5 parent: 1 - - uid: 201 + - uid: 186 components: - type: Transform pos: -6.5,11.5 parent: 1 - - uid: 202 + - uid: 187 components: - type: Transform pos: -3.5,-9.5 parent: 1 - - uid: 203 + - uid: 188 components: - type: Transform pos: -3.5,-8.5 parent: 1 - - uid: 204 + - uid: 189 components: - type: Transform pos: -3.5,-7.5 parent: 1 - - uid: 205 + - uid: 190 components: - type: Transform pos: -3.5,-6.5 parent: 1 - - uid: 206 + - uid: 191 components: - type: Transform pos: -3.5,-5.5 parent: 1 - - uid: 207 + - uid: 192 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 208 + - uid: 193 components: - type: Transform pos: -3.5,-3.5 parent: 1 - - uid: 209 + - uid: 194 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 210 + - uid: 195 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 211 + - uid: 196 components: - type: Transform pos: -3.5,-0.5 parent: 1 - - uid: 212 + - uid: 197 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 213 + - uid: 198 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 214 + - uid: 199 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 215 + - uid: 200 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 216 + - uid: 201 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 217 + - uid: 202 components: - type: Transform pos: -3.5,5.5 parent: 1 - - uid: 218 + - uid: 203 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 219 + - uid: 204 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 220 + - uid: 205 components: - type: Transform pos: -3.5,8.5 parent: 1 - - uid: 221 + - uid: 206 components: - type: Transform pos: -3.5,9.5 parent: 1 - - uid: 222 + - uid: 207 components: - type: Transform pos: -3.5,10.5 parent: 1 - - uid: 223 + - uid: 208 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 224 + - uid: 209 components: - type: Transform pos: -3.5,12.5 parent: 1 - - uid: 225 + - uid: 210 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 226 + - uid: 211 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 227 + - uid: 212 components: - type: Transform pos: -3.5,15.5 parent: 1 - - uid: 228 + - uid: 213 components: - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 229 + - uid: 214 components: - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 230 + - uid: 215 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 231 + - uid: 216 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 232 + - uid: 217 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 233 + - uid: 218 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 234 + - uid: 219 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 235 + - uid: 220 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 236 + - uid: 221 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 237 + - uid: 222 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 238 + - uid: 223 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 239 + - uid: 224 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 240 + - uid: 225 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 241 + - uid: 226 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 242 + - uid: 227 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 243 + - uid: 228 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 244 + - uid: 229 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 245 + - uid: 230 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 246 + - uid: 231 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 247 + - uid: 232 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 248 + - uid: 233 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 249 + - uid: 234 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 250 + - uid: 235 components: - type: Transform pos: 5.5,-9.5 parent: 1 - - uid: 251 + - uid: 236 components: - type: Transform pos: 5.5,-8.5 parent: 1 - - uid: 252 + - uid: 237 components: - type: Transform pos: 5.5,-7.5 parent: 1 - - uid: 253 + - uid: 238 components: - type: Transform pos: 5.5,-6.5 parent: 1 - - uid: 254 + - uid: 239 components: - type: Transform pos: 5.5,-5.5 parent: 1 - - uid: 255 + - uid: 240 components: - type: Transform pos: 5.5,-4.5 parent: 1 - - uid: 256 + - uid: 241 components: - type: Transform pos: 5.5,-3.5 parent: 1 - - uid: 257 + - uid: 242 components: - type: Transform pos: 5.5,-2.5 parent: 1 - - uid: 258 + - uid: 243 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 259 + - uid: 244 components: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 260 + - uid: 245 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 261 + - uid: 246 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 262 + - uid: 247 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 263 + - uid: 248 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 264 + - uid: 249 components: - type: Transform pos: 5.5,4.5 parent: 1 - - uid: 265 + - uid: 250 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 266 + - uid: 251 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 267 + - uid: 252 components: - type: Transform pos: 5.5,7.5 parent: 1 - - uid: 268 + - uid: 253 components: - type: Transform pos: 5.5,8.5 parent: 1 - - uid: 269 + - uid: 254 components: - type: Transform pos: 5.5,9.5 parent: 1 - - uid: 270 + - uid: 255 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 271 + - uid: 256 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 272 + - uid: 257 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 273 + - uid: 258 components: - type: Transform pos: 8.5,-7.5 parent: 1 - - uid: 274 + - uid: 259 components: - type: Transform pos: 8.5,-6.5 parent: 1 - - uid: 275 + - uid: 260 components: - type: Transform pos: 8.5,-5.5 parent: 1 - - uid: 276 + - uid: 261 components: - type: Transform pos: 8.5,-4.5 parent: 1 - - uid: 277 + - uid: 262 components: - type: Transform pos: 8.5,-3.5 parent: 1 - - uid: 278 + - uid: 263 components: - type: Transform pos: 8.5,-2.5 parent: 1 - - uid: 279 + - uid: 264 components: - type: Transform pos: 8.5,-1.5 parent: 1 - - uid: 280 + - uid: 265 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 281 + - uid: 266 components: - type: Transform pos: 8.5,0.5 parent: 1 - - uid: 282 + - uid: 267 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 283 + - uid: 268 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 284 + - uid: 269 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 285 + - uid: 270 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 286 + - uid: 271 components: - type: Transform pos: 8.5,5.5 parent: 1 - - uid: 287 + - uid: 272 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 288 + - uid: 273 components: - type: Transform pos: 8.5,7.5 parent: 1 - - uid: 289 + - uid: 274 components: - type: Transform pos: 8.5,8.5 parent: 1 - - uid: 290 + - uid: 275 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 291 + - uid: 276 components: - type: Transform pos: 8.5,10.5 parent: 1 - - uid: 292 + - uid: 277 components: - type: Transform pos: 8.5,11.5 parent: 1 - - uid: 293 + - uid: 278 components: - type: Transform pos: 8.5,12.5 parent: 1 - - uid: 294 + - uid: 279 components: - type: Transform pos: 8.5,13.5 parent: 1 - - uid: 295 + - uid: 280 components: - type: Transform pos: 8.5,14.5 parent: 1 - - uid: 296 + - uid: 281 components: - type: Transform pos: 8.5,15.5 parent: 1 - - uid: 297 + - uid: 282 components: - type: Transform pos: 8.5,16.5 parent: 1 - - uid: 298 + - uid: 283 components: - type: Transform pos: 8.5,17.5 parent: 1 - - uid: 299 + - uid: 284 components: - type: Transform pos: -13.5,5.5 parent: 1 - - uid: 300 + - uid: 285 components: - type: Transform pos: 11.5,1.5 parent: 1 - - uid: 301 + - uid: 286 components: - type: Transform pos: 11.5,-6.5 parent: 1 - - uid: 302 + - uid: 287 components: - type: Transform pos: 11.5,-5.5 parent: 1 - - uid: 303 + - uid: 288 components: - type: Transform pos: 11.5,-4.5 parent: 1 - - uid: 304 + - uid: 289 components: - type: Transform pos: 11.5,-3.5 parent: 1 - - uid: 305 + - uid: 290 components: - type: Transform pos: 11.5,-2.5 parent: 1 - - uid: 306 + - uid: 291 components: - type: Transform pos: 11.5,-1.5 parent: 1 - - uid: 307 + - uid: 292 components: - type: Transform pos: 11.5,-0.5 parent: 1 - - uid: 308 + - uid: 293 components: - type: Transform pos: 11.5,0.5 parent: 1 - - uid: 309 + - uid: 294 components: - type: Transform pos: 11.5,2.5 parent: 1 - - uid: 310 + - uid: 295 components: - type: Transform pos: 11.5,3.5 parent: 1 - - uid: 311 + - uid: 296 components: - type: Transform pos: 11.5,4.5 parent: 1 - - uid: 312 + - uid: 297 components: - type: Transform pos: 11.5,5.5 parent: 1 - - uid: 313 + - uid: 298 components: - type: Transform pos: 11.5,6.5 parent: 1 - - uid: 314 + - uid: 299 components: - type: Transform pos: 11.5,7.5 parent: 1 - - uid: 315 + - uid: 300 components: - type: Transform pos: 11.5,8.5 parent: 1 - - uid: 316 + - uid: 301 components: - type: Transform pos: 11.5,9.5 parent: 1 - - uid: 317 + - uid: 302 components: - type: Transform pos: 11.5,10.5 parent: 1 - - uid: 318 + - uid: 303 components: - type: Transform pos: 11.5,11.5 parent: 1 - - uid: 319 + - uid: 304 components: - type: Transform pos: 11.5,12.5 parent: 1 - - uid: 320 + - uid: 305 components: - type: Transform pos: 11.5,13.5 parent: 1 - - uid: 321 + - uid: 306 components: - type: Transform pos: 14.5,9.5 parent: 1 - - uid: 322 + - uid: 307 components: - type: Transform pos: 14.5,8.5 parent: 1 - - uid: 323 + - uid: 308 components: - type: Transform pos: 14.5,7.5 parent: 1 - - uid: 324 + - uid: 309 components: - type: Transform pos: 14.5,6.5 parent: 1 - - uid: 325 + - uid: 310 components: - type: Transform pos: 14.5,5.5 parent: 1 - - uid: 326 + - uid: 311 components: - type: Transform pos: 14.5,4.5 parent: 1 - - uid: 327 + - uid: 312 components: - type: Transform pos: 14.5,3.5 parent: 1 - - uid: 328 + - uid: 313 components: - type: Transform pos: 14.5,2.5 parent: 1 - - uid: 329 + - uid: 314 components: - type: Transform pos: 14.5,1.5 parent: 1 - - uid: 330 + - uid: 315 components: - type: Transform pos: 14.5,0.5 parent: 1 - - uid: 331 + - uid: 316 components: - type: Transform pos: 14.5,-0.5 parent: 1 - - uid: 332 + - uid: 317 components: - type: Transform pos: 14.5,-1.5 parent: 1 - - uid: 333 + - uid: 318 components: - type: Transform pos: 14.5,-2.5 parent: 1 - - uid: 334 + - uid: 319 components: - type: Transform pos: 14.5,-3.5 parent: 1 - - uid: 335 + - uid: 320 components: - type: Transform pos: 14.5,-4.5 parent: 1 - - uid: 336 + - uid: 321 components: - type: Transform pos: 14.5,-5.5 parent: 1 - - uid: 337 + - uid: 322 components: - type: Transform pos: 17.5,-0.5 parent: 1 - - uid: 338 + - uid: 323 components: - type: Transform pos: 17.5,0.5 parent: 1 - - uid: 339 + - uid: 324 components: - type: Transform pos: 17.5,1.5 parent: 1 - - uid: 340 + - uid: 325 components: - type: Transform pos: 17.5,2.5 parent: 1 - - uid: 341 + - uid: 326 components: - type: Transform pos: 17.5,3.5 parent: 1 - - uid: 342 + - uid: 327 components: - type: Transform pos: 17.5,4.5 parent: 1 - - uid: 343 + - uid: 328 components: - type: Transform pos: 17.5,5.5 parent: 1 - - uid: 344 + - uid: 329 components: - type: Transform pos: -15.5,-4.5 parent: 1 - - uid: 345 + - uid: 330 components: - type: Transform pos: -15.5,-3.5 parent: 1 - - uid: 346 + - uid: 331 components: - type: Transform pos: -15.5,-2.5 parent: 1 - - uid: 347 + - uid: 332 components: - type: Transform pos: -15.5,-1.5 parent: 1 - - uid: 348 + - uid: 333 components: - type: Transform pos: -15.5,-0.5 parent: 1 - - uid: 349 + - uid: 334 components: - type: Transform pos: -15.5,0.5 parent: 1 - - uid: 350 + - uid: 335 components: - type: Transform pos: -15.5,1.5 parent: 1 - - uid: 351 + - uid: 336 components: - type: Transform pos: -15.5,2.5 parent: 1 - - uid: 352 + - uid: 337 components: - type: Transform pos: -15.5,3.5 parent: 1 - - uid: 353 + - uid: 338 components: - type: Transform pos: -15.5,4.5 parent: 1 - - uid: 354 + - uid: 339 components: - type: Transform pos: -15.5,5.5 parent: 1 - - uid: 355 + - uid: 340 components: - type: Transform pos: -15.5,6.5 parent: 1 - - uid: 356 + - uid: 341 components: - type: Transform pos: -15.5,7.5 parent: 1 - - uid: 357 + - uid: 342 components: - type: Transform pos: -15.5,8.5 parent: 1 - - uid: 358 + - uid: 343 components: - type: Transform pos: -15.5,9.5 parent: 1 - - uid: 359 + - uid: 344 components: - type: Transform pos: -15.5,10.5 parent: 1 - - uid: 360 + - uid: 345 components: - type: Transform pos: -18.5,-1.5 parent: 1 - - uid: 361 + - uid: 346 components: - type: Transform pos: -18.5,-0.5 parent: 1 - - uid: 362 + - uid: 347 components: - type: Transform pos: -18.5,0.5 parent: 1 - - uid: 363 + - uid: 348 components: - type: Transform pos: -18.5,1.5 parent: 1 - - uid: 364 + - uid: 349 components: - type: Transform pos: -18.5,2.5 parent: 1 - - uid: 365 + - uid: 350 components: - type: Transform pos: -18.5,3.5 parent: 1 - - uid: 366 + - uid: 351 components: - type: Transform pos: -18.5,4.5 parent: 1 - - uid: 367 + - uid: 352 components: - type: Transform pos: -18.5,5.5 parent: 1 - - uid: 368 + - uid: 353 components: - type: Transform pos: -18.5,6.5 parent: 1 - - uid: 369 + - uid: 354 components: - type: Transform pos: -18.5,7.5 parent: 1 - - uid: 370 + - uid: 355 components: - type: Transform pos: -18.5,8.5 parent: 1 - - uid: 371 + - uid: 356 components: - type: Transform pos: -18.5,9.5 parent: 1 - - uid: 372 + - uid: 357 components: - type: Transform pos: 13.5,-3.5 parent: 1 - - uid: 373 + - uid: 358 components: - type: Transform pos: 12.5,-3.5 parent: 1 - - uid: 374 + - uid: 359 components: - type: Transform pos: 10.5,-3.5 parent: 1 - - uid: 375 + - uid: 360 components: - type: Transform pos: 9.5,-3.5 parent: 1 - - uid: 376 + - uid: 361 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 377 + - uid: 362 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 378 + - uid: 363 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 379 + - uid: 364 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 380 + - uid: 365 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 381 + - uid: 366 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 382 + - uid: 367 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 383 + - uid: 368 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 384 + - uid: 369 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 385 + - uid: 370 components: - type: Transform pos: -4.5,-3.5 parent: 1 - - uid: 386 + - uid: 371 components: - type: Transform pos: -8.5,-3.5 parent: 1 - - uid: 387 + - uid: 372 components: - type: Transform pos: -7.5,-3.5 parent: 1 - - uid: 388 + - uid: 373 components: - type: Transform pos: -11.5,-3.5 parent: 1 - - uid: 389 + - uid: 374 components: - type: Transform pos: -10.5,-3.5 parent: 1 - - uid: 390 + - uid: 375 components: - type: Transform pos: -13.5,-3.5 parent: 1 - - uid: 391 + - uid: 376 components: - type: Transform pos: -19.5,-0.5 parent: 1 - - uid: 392 + - uid: 377 components: - type: Transform pos: -17.5,-0.5 parent: 1 - - uid: 393 + - uid: 378 components: - type: Transform pos: -16.5,-0.5 parent: 1 - - uid: 394 + - uid: 379 components: - type: Transform pos: -14.5,-0.5 parent: 1 - - uid: 395 + - uid: 380 components: - type: Transform pos: -13.5,-0.5 parent: 1 - - uid: 396 + - uid: 381 components: - type: Transform pos: -11.5,-0.5 parent: 1 - - uid: 397 + - uid: 382 components: - type: Transform pos: -10.5,-0.5 parent: 1 - - uid: 398 + - uid: 383 components: - type: Transform pos: -8.5,-0.5 parent: 1 - - uid: 399 + - uid: 384 components: - type: Transform pos: -7.5,-0.5 parent: 1 - - uid: 400 + - uid: 385 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 401 + - uid: 386 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 402 + - uid: 387 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 403 + - uid: 388 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 404 + - uid: 389 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 405 + - uid: 390 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 406 + - uid: 391 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 407 + - uid: 392 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 408 + - uid: 393 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 409 + - uid: 394 components: - type: Transform pos: 7.5,-0.5 parent: 1 - - uid: 410 + - uid: 395 components: - type: Transform pos: 9.5,-0.5 parent: 1 - - uid: 411 + - uid: 396 components: - type: Transform pos: 10.5,-0.5 parent: 1 - - uid: 412 + - uid: 397 components: - type: Transform pos: 12.5,-0.5 parent: 1 - - uid: 413 + - uid: 398 components: - type: Transform pos: 13.5,-0.5 parent: 1 - - uid: 414 + - uid: 399 components: - type: Transform pos: 16.5,2.5 parent: 1 - - uid: 415 + - uid: 400 components: - type: Transform pos: 15.5,2.5 parent: 1 - - uid: 416 + - uid: 401 components: - type: Transform pos: 13.5,2.5 parent: 1 - - uid: 417 + - uid: 402 components: - type: Transform pos: 12.5,2.5 parent: 1 - - uid: 418 + - uid: 403 components: - type: Transform pos: 9.5,2.5 parent: 1 - - uid: 419 + - uid: 404 components: - type: Transform pos: 10.5,2.5 parent: 1 - - uid: 420 + - uid: 405 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 421 + - uid: 406 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 422 + - uid: 407 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 423 + - uid: 408 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 424 + - uid: 409 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 425 + - uid: 410 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 426 + - uid: 411 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 427 + - uid: 412 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 428 + - uid: 413 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 429 + - uid: 414 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 430 + - uid: 415 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 431 + - uid: 416 components: - type: Transform pos: -8.5,2.5 parent: 1 - - uid: 432 + - uid: 417 components: - type: Transform pos: -10.5,2.5 parent: 1 - - uid: 433 + - uid: 418 components: - type: Transform pos: -11.5,2.5 parent: 1 - - uid: 434 + - uid: 419 components: - type: Transform pos: -13.5,2.5 parent: 1 - - uid: 435 + - uid: 420 components: - type: Transform pos: -14.5,2.5 parent: 1 - - uid: 436 + - uid: 421 components: - type: Transform pos: -16.5,2.5 parent: 1 - - uid: 437 + - uid: 422 components: - type: Transform pos: -17.5,2.5 parent: 1 - - uid: 438 + - uid: 423 components: - type: Transform pos: -20.5,2.5 parent: 1 - - uid: 439 + - uid: 424 components: - type: Transform pos: -19.5,2.5 parent: 1 - - uid: 440 + - uid: 425 components: - type: Transform pos: -19.5,5.5 parent: 1 - - uid: 441 + - uid: 426 components: - type: Transform pos: -17.5,5.5 parent: 1 - - uid: 442 + - uid: 427 components: - type: Transform pos: -16.5,5.5 parent: 1 - - uid: 443 + - uid: 428 components: - type: Transform pos: -14.5,5.5 parent: 1 - - uid: 444 + - uid: 429 components: - type: Transform pos: -11.5,5.5 parent: 1 - - uid: 445 + - uid: 430 components: - type: Transform pos: -10.5,5.5 parent: 1 - - uid: 446 + - uid: 431 components: - type: Transform pos: -8.5,5.5 parent: 1 - - uid: 447 + - uid: 432 components: - type: Transform pos: -7.5,5.5 parent: 1 - - uid: 448 + - uid: 433 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 449 + - uid: 434 components: - type: Transform pos: -4.5,5.5 parent: 1 - - uid: 450 + - uid: 435 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 451 + - uid: 436 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 452 + - uid: 437 components: - type: Transform pos: 7.5,5.5 parent: 1 - - uid: 453 + - uid: 438 components: - type: Transform pos: 9.5,5.5 parent: 1 - - uid: 454 + - uid: 439 components: - type: Transform pos: 10.5,5.5 parent: 1 - - uid: 455 + - uid: 440 components: - type: Transform pos: 12.5,5.5 parent: 1 - - uid: 456 + - uid: 441 components: - type: Transform pos: 13.5,5.5 parent: 1 - - uid: 457 + - uid: 442 components: - type: Transform pos: 15.5,5.5 parent: 1 - - uid: 458 + - uid: 443 components: - type: Transform pos: 16.5,5.5 parent: 1 - - uid: 459 + - uid: 444 components: - type: Transform pos: 15.5,8.5 parent: 1 - - uid: 460 + - uid: 445 components: - type: Transform pos: 13.5,8.5 parent: 1 - - uid: 461 + - uid: 446 components: - type: Transform pos: 12.5,8.5 parent: 1 - - uid: 462 + - uid: 447 components: - type: Transform pos: 10.5,8.5 parent: 1 - - uid: 463 + - uid: 448 components: - type: Transform pos: 9.5,8.5 parent: 1 - - uid: 464 + - uid: 449 components: - type: Transform pos: 7.5,8.5 parent: 1 - - uid: 465 + - uid: 450 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 466 + - uid: 451 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 467 + - uid: 452 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 468 + - uid: 453 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 469 + - uid: 454 components: - type: Transform pos: -7.5,8.5 parent: 1 - - uid: 470 + - uid: 455 components: - type: Transform pos: -8.5,8.5 parent: 1 - - uid: 471 + - uid: 456 components: - type: Transform pos: -10.5,8.5 parent: 1 - - uid: 472 + - uid: 457 components: - type: Transform pos: -11.5,8.5 parent: 1 - - uid: 473 + - uid: 458 components: - type: Transform pos: -13.5,8.5 parent: 1 - - uid: 474 + - uid: 459 components: - type: Transform pos: -14.5,8.5 parent: 1 - - uid: 475 + - uid: 460 components: - type: Transform pos: -17.5,8.5 parent: 1 - - uid: 476 + - uid: 461 components: - type: Transform pos: -16.5,8.5 parent: 1 - - uid: 477 + - uid: 462 components: - type: Transform pos: -19.5,8.5 parent: 1 - - uid: 478 + - uid: 463 components: - type: Transform pos: -18.5,10.5 parent: 1 - - uid: 479 + - uid: 464 components: - type: Transform pos: -17.5,10.5 parent: 1 - - uid: 480 + - uid: 465 components: - type: Transform pos: -16.5,10.5 parent: 1 - - uid: 481 + - uid: 466 components: - type: Transform pos: -14.5,10.5 parent: 1 - - uid: 482 + - uid: 467 components: - type: Transform pos: -13.5,10.5 parent: 1 - - uid: 483 + - uid: 468 components: - type: Transform pos: -11.5,10.5 parent: 1 - - uid: 484 + - uid: 469 components: - type: Transform pos: -10.5,10.5 parent: 1 - - uid: 485 + - uid: 470 components: - type: Transform pos: -8.5,11.5 parent: 1 - - uid: 486 + - uid: 471 components: - type: Transform pos: -7.5,11.5 parent: 1 - - uid: 487 + - uid: 472 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 488 + - uid: 473 components: - type: Transform pos: -5.5,12.5 parent: 1 - - uid: 489 + - uid: 474 components: - type: Transform pos: -4.5,12.5 parent: 1 - proto: CableHV entities: - - uid: 490 + - uid: 475 components: - type: Transform pos: 12.5,-1.5 parent: 1 - - uid: 491 + - uid: 476 components: - type: Transform pos: 12.5,-0.5 parent: 1 - - uid: 492 + - uid: 477 components: - type: Transform pos: 13.5,-0.5 parent: 1 - - uid: 493 + - uid: 478 components: - type: Transform pos: 14.5,-0.5 parent: 1 - - uid: 494 + - uid: 479 components: - type: Transform pos: 15.5,-0.5 parent: 1 - - uid: 495 + - uid: 480 components: - type: Transform pos: -9.5,6.5 parent: 1 - - uid: 496 + - uid: 481 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 497 + - uid: 482 components: - type: Transform pos: -8.5,7.5 parent: 1 - - uid: 498 + - uid: 483 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 499 + - uid: 484 components: - type: Transform pos: -7.5,6.5 parent: 1 - - uid: 500 + - uid: 485 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 501 + - uid: 486 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 502 + - uid: 487 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 503 + - uid: 488 components: - type: Transform pos: -5.5,4.5 parent: 1 - - uid: 504 + - uid: 489 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 505 + - uid: 490 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 506 + - uid: 491 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 507 + - uid: 492 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 508 + - uid: 493 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 509 + - uid: 494 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 510 + - uid: 495 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 511 + - uid: 496 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 512 + - uid: 497 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 513 + - uid: 498 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 514 + - uid: 499 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 515 + - uid: 500 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 516 + - uid: 501 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 517 + - uid: 502 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 518 + - uid: 503 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 519 + - uid: 504 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 520 + - uid: 505 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 521 + - uid: 506 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 522 + - uid: 507 components: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 523 + - uid: 508 components: - type: Transform pos: 7.5,-0.5 parent: 1 - - uid: 524 + - uid: 509 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 525 + - uid: 510 components: - type: Transform pos: 9.5,-0.5 parent: 1 - - uid: 526 + - uid: 511 components: - type: Transform pos: 10.5,-0.5 parent: 1 - - uid: 527 + - uid: 512 components: - type: Transform pos: 11.5,-0.5 parent: 1 - - uid: 528 + - uid: 513 components: - type: Transform pos: 15.5,0.5 parent: 1 - - uid: 529 + - uid: 514 components: - type: Transform pos: 15.5,1.5 parent: 1 - - uid: 530 + - uid: 515 components: - type: Transform pos: 15.5,2.5 parent: 1 - - uid: 531 + - uid: 516 components: - type: Transform pos: 15.5,3.5 parent: 1 - - uid: 532 + - uid: 517 components: - type: Transform pos: 15.5,5.5 parent: 1 - - uid: 533 + - uid: 518 components: - type: Transform pos: 14.5,0.5 parent: 1 - - uid: 534 + - uid: 519 components: - type: Transform pos: 13.5,-1.5 parent: 1 - proto: CableMV entities: - - uid: 535 + - uid: 520 components: - type: Transform pos: 15.5,5.5 parent: 1 - - uid: 536 + - uid: 521 components: - type: Transform pos: 14.5,5.5 parent: 1 - - uid: 537 + - uid: 522 components: - type: Transform pos: 13.5,5.5 parent: 1 - - uid: 538 + - uid: 523 components: - type: Transform pos: 12.5,5.5 parent: 1 - - uid: 539 + - uid: 524 components: - type: Transform pos: 11.5,5.5 parent: 1 - - uid: 540 + - uid: 525 components: - type: Transform pos: 10.5,5.5 parent: 1 - - uid: 541 + - uid: 526 components: - type: Transform pos: 10.5,4.5 parent: 1 - - uid: 542 + - uid: 527 components: - type: Transform pos: 10.5,3.5 parent: 1 - - uid: 543 + - uid: 528 components: - type: Transform pos: 10.5,2.5 parent: 1 - - uid: 544 + - uid: 529 components: - type: Transform pos: 10.5,1.5 parent: 1 - - uid: 545 + - uid: 530 components: - type: Transform pos: 10.5,6.5 parent: 1 - - uid: 546 + - uid: 531 components: - type: Transform pos: 10.5,7.5 parent: 1 - - uid: 547 + - uid: 532 components: - type: Transform pos: 10.5,8.5 parent: 1 - - uid: 548 + - uid: 533 components: - type: Transform pos: 9.5,8.5 parent: 1 - - uid: 549 + - uid: 534 components: - type: Transform pos: 8.5,8.5 parent: 1 - - uid: 550 + - uid: 535 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 551 + - uid: 536 components: - type: Transform pos: -12.5,5.5 parent: 1 - - uid: 552 + - uid: 537 components: - type: Transform pos: -11.5,5.5 parent: 1 - - uid: 553 + - uid: 538 components: - type: Transform pos: -10.5,5.5 parent: 1 - - uid: 554 + - uid: 539 components: - type: Transform pos: -9.5,5.5 parent: 1 - - uid: 555 + - uid: 540 components: - type: Transform pos: -9.5,6.5 parent: 1 - - uid: 556 + - uid: 541 components: - type: Transform pos: -9.5,4.5 parent: 1 - - uid: 557 + - uid: 542 components: - type: Transform pos: -9.5,3.5 parent: 1 - - uid: 558 + - uid: 543 components: - type: Transform pos: -9.5,2.5 parent: 1 - - uid: 559 + - uid: 544 components: - type: Transform pos: -9.5,1.5 parent: 1 - - uid: 560 + - uid: 545 components: - type: Transform pos: -9.5,0.5 parent: 1 - - uid: 561 + - uid: 546 components: - type: Transform pos: -9.5,-0.5 parent: 1 - - uid: 562 + - uid: 547 components: - type: Transform pos: -9.5,-1.5 parent: 1 - - uid: 563 + - uid: 548 components: - type: Transform pos: -9.5,-2.5 parent: 1 - - uid: 564 + - uid: 549 components: - type: Transform pos: -8.5,-1.5 parent: 1 - - uid: 565 + - uid: 550 components: - type: Transform pos: -7.5,-1.5 parent: 1 - - uid: 566 + - uid: 551 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 567 + - uid: 552 components: - type: Transform pos: -6.5,-1.5 parent: 1 - - uid: 568 + - uid: 553 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 569 + - uid: 554 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 570 + - uid: 555 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 571 + - uid: 556 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 572 + - uid: 557 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 573 + - uid: 558 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 574 + - uid: 559 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 575 + - uid: 560 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 576 + - uid: 561 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 577 + - uid: 562 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 578 + - uid: 563 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 579 + - uid: 564 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 580 + - uid: 565 components: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 581 + - uid: 566 components: - type: Transform pos: 7.5,-0.5 parent: 1 - - uid: 582 + - uid: 567 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 583 + - uid: 568 components: - type: Transform pos: 9.5,-0.5 parent: 1 - - uid: 584 + - uid: 569 components: - type: Transform pos: 10.5,-0.5 parent: 1 - - uid: 585 + - uid: 570 components: - type: Transform pos: 10.5,0.5 parent: 1 - - uid: 586 + - uid: 571 components: - type: Transform pos: -13.5,5.5 parent: 1 - proto: CableTerminal entities: - - uid: 587 + - uid: 572 components: - type: Transform rot: 1.5707963267948966 rad @@ -5767,614 +6131,614 @@ entities: parent: 1 - proto: CartridgeShellArmorPiercing entities: - - uid: 588 + - uid: 573 components: - type: Transform pos: 10.300504,9.287634 parent: 1 - - uid: 589 + - uid: 574 components: - type: Transform pos: 10.347379,9.381384 parent: 1 - - uid: 590 + - uid: 575 components: - type: Transform pos: 10.605191,9.592321 parent: 1 - - uid: 591 + - uid: 576 components: - type: Transform pos: 10.300504,9.264196 parent: 1 - - uid: 592 + - uid: 577 components: - type: Transform pos: 10.605191,9.756384 parent: 1 - - uid: 593 + - uid: 578 components: - type: Transform pos: 10.370816,9.475134 parent: 1 - - uid: 594 + - uid: 579 components: - type: Transform pos: 10.370816,9.615759 parent: 1 - - uid: 595 + - uid: 580 components: - type: Transform pos: 10.394254,9.756384 parent: 1 - - uid: 596 + - uid: 581 components: - type: Transform pos: 11.218553,9.919592 parent: 1 - - uid: 597 + - uid: 582 components: - type: Transform pos: 11.218553,9.778967 parent: 1 - - uid: 598 + - uid: 583 components: - type: Transform pos: 11.218553,9.708654 parent: 1 - - uid: 599 + - uid: 584 components: - type: Transform pos: 11.218553,9.591467 parent: 1 - - uid: 600 + - uid: 585 components: - type: Transform pos: 11.218553,9.544592 parent: 1 - - uid: 601 + - uid: 586 components: - type: Transform pos: 11.218553,9.427404 parent: 1 - - uid: 602 + - uid: 587 components: - type: Transform pos: 11.195115,9.310217 parent: 1 - - uid: 603 + - uid: 588 components: - type: Transform pos: 11.14824,9.216467 parent: 1 - - uid: 604 + - uid: 589 components: - type: Transform pos: 11.124803,9.146154 parent: 1 - - uid: 605 + - uid: 590 components: - type: Transform pos: 11.640428,9.778967 parent: 1 - - uid: 606 + - uid: 591 components: - type: Transform pos: 11.640428,9.685217 parent: 1 - proto: Catwalk entities: - - uid: 609 + - uid: 592 components: - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 610 + - uid: 593 components: - type: Transform pos: -2.5,-5.5 parent: 1 - - uid: 611 + - uid: 594 components: - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 612 + - uid: 595 components: - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 613 + - uid: 596 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 614 + - uid: 597 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 615 + - uid: 598 components: - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 616 + - uid: 599 components: - type: Transform pos: 3.5,-4.5 parent: 1 - - uid: 617 + - uid: 600 components: - type: Transform pos: 3.5,-5.5 parent: 1 - - uid: 618 + - uid: 601 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 619 + - uid: 602 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 620 + - uid: 603 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 621 + - uid: 604 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 622 + - uid: 605 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 623 + - uid: 606 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 624 + - uid: 607 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 625 + - uid: 608 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 626 + - uid: 609 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 627 + - uid: 610 components: - type: Transform pos: 11.5,-1.5 parent: 1 - - uid: 628 + - uid: 611 components: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 629 + - uid: 612 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 630 + - uid: 613 components: - type: Transform pos: 10.5,-1.5 parent: 1 - - uid: 631 + - uid: 614 components: - type: Transform pos: 11.5,-0.5 parent: 1 - - uid: 632 + - uid: 615 components: - type: Transform pos: 8.5,-1.5 parent: 1 - - uid: 633 + - uid: 616 components: - type: Transform pos: 9.5,11.5 parent: 1 - - uid: 634 + - uid: 617 components: - type: Transform pos: 11.5,2.5 parent: 1 - - uid: 635 + - uid: 618 components: - type: Transform pos: 11.5,3.5 parent: 1 - - uid: 636 + - uid: 619 components: - type: Transform pos: 11.5,1.5 parent: 1 - - uid: 637 + - uid: 620 components: - type: Transform pos: 9.5,-1.5 parent: 1 - - uid: 638 + - uid: 621 components: - type: Transform pos: 11.5,0.5 parent: 1 - - uid: 639 + - uid: 622 components: - type: Transform pos: -11.5,-3.5 parent: 1 - - uid: 640 + - uid: 623 components: - type: Transform pos: -10.5,-3.5 parent: 1 - - uid: 641 + - uid: 624 components: - type: Transform pos: -9.5,-3.5 parent: 1 - - uid: 642 + - uid: 625 components: - type: Transform pos: -8.5,-3.5 parent: 1 - - uid: 643 + - uid: 626 components: - type: Transform pos: -7.5,-3.5 parent: 1 - - uid: 644 + - uid: 627 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 645 + - uid: 628 components: - type: Transform pos: 9.5,4.5 parent: 1 - - uid: 646 + - uid: 629 components: - type: Transform pos: 9.5,5.5 parent: 1 - - uid: 647 + - uid: 630 components: - type: Transform pos: 9.5,6.5 parent: 1 - - uid: 648 + - uid: 631 components: - type: Transform pos: 10.5,5.5 parent: 1 - - uid: 649 + - uid: 632 components: - type: Transform pos: 11.5,5.5 parent: 1 - - uid: 650 + - uid: 633 components: - type: Transform pos: 12.5,5.5 parent: 1 - - uid: 651 + - uid: 634 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 652 + - uid: 635 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 653 + - uid: 636 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 654 + - uid: 637 components: - type: Transform pos: 9.5,9.5 parent: 1 - - uid: 655 + - uid: 638 components: - type: Transform pos: 9.5,13.5 parent: 1 - - uid: 656 + - uid: 639 components: - type: Transform pos: 9.5,12.5 parent: 1 - - uid: 657 + - uid: 640 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 658 + - uid: 641 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 659 + - uid: 642 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 660 + - uid: 643 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 661 + - uid: 644 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 662 + - uid: 645 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 663 + - uid: 646 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 664 + - uid: 647 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 665 + - uid: 648 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 666 + - uid: 649 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 667 + - uid: 650 components: - type: Transform pos: -3.5,-0.5 parent: 1 - - uid: 668 + - uid: 651 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 669 + - uid: 652 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 670 + - uid: 653 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 671 + - uid: 654 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 672 + - uid: 655 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 673 + - uid: 656 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 674 + - uid: 657 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 675 + - uid: 658 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 676 + - uid: 659 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 677 + - uid: 660 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 678 + - uid: 661 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 679 + - uid: 662 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 680 + - uid: 663 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 681 + - uid: 664 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 682 + - uid: 665 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 683 + - uid: 666 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 684 + - uid: 667 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 685 + - uid: 668 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 686 + - uid: 669 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 687 + - uid: 670 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 688 + - uid: 671 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 689 + - uid: 672 components: - type: Transform pos: -5.5,4.5 parent: 1 - - uid: 690 + - uid: 673 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 691 + - uid: 674 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 692 + - uid: 675 components: - type: Transform pos: -7.5,6.5 parent: 1 - - uid: 693 + - uid: 676 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 694 + - uid: 677 components: - type: Transform pos: -13.5,2.5 parent: 1 - - uid: 695 + - uid: 678 components: - type: Transform pos: -13.5,3.5 parent: 1 - - uid: 696 + - uid: 679 components: - type: Transform pos: -13.5,3.5 parent: 1 - - uid: 697 + - uid: 680 components: - type: Transform pos: -14.5,4.5 parent: 1 - - uid: 698 + - uid: 681 components: - type: Transform pos: -14.5,3.5 parent: 1 - - uid: 699 + - uid: 682 components: - type: Transform pos: -13.5,4.5 parent: 1 - - uid: 700 + - uid: 683 components: - type: Transform pos: -15.5,3.5 parent: 1 - - uid: 701 + - uid: 684 components: - type: Transform pos: -13.5,-2.5 parent: 1 - - uid: 702 + - uid: 685 components: - type: Transform pos: -13.5,-1.5 parent: 1 - - uid: 703 + - uid: 686 components: - type: Transform pos: -13.5,-0.5 parent: 1 - - uid: 704 + - uid: 687 components: - type: Transform pos: -13.5,0.5 parent: 1 - - uid: 705 + - uid: 688 components: - type: Transform pos: -13.5,-3.5 parent: 1 - - uid: 706 + - uid: 689 components: - type: Transform pos: -5.5,-3.5 parent: 1 - proto: ChairFolding entities: - - uid: 707 + - uid: 690 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.081799,4.6427064 parent: 1 - - uid: 708 + - uid: 691 components: - type: Transform rot: 3.141592653589793 rad pos: -10.034924,4.0177064 parent: 1 - - uid: 709 + - uid: 692 components: - type: Transform rot: 3.141592653589793 rad pos: -8.823165,4.0487595 parent: 1 - - uid: 710 + - uid: 693 components: - type: Transform rot: -1.5707963267948966 rad @@ -6382,13 +6746,13 @@ entities: parent: 1 - proto: ChairOfficeDark entities: - - uid: 711 + - uid: 694 components: - type: Transform rot: 3.141592653589793 rad pos: -10.139519,-0.22563303 parent: 1 - - uid: 712 + - uid: 695 components: - type: Transform rot: 3.141592653589793 rad @@ -6396,61 +6760,61 @@ entities: parent: 1 - proto: ChemMaster entities: - - uid: 713 + - uid: 696 components: - type: Transform pos: -16.5,0.5 parent: 1 - proto: ChessBoard entities: - - uid: 714 + - uid: 697 components: - type: Transform pos: -9.589531,4.6029716 parent: 1 - proto: Cigar entities: - - uid: 715 + - uid: 698 components: - type: Transform pos: -11.264669,-0.7018292 parent: 1 - - uid: 716 + - uid: 699 components: - type: Transform pos: -11.233419,-0.8268292 parent: 1 - proto: ClothingBeltUtilityAtmos entities: - - uid: 717 + - uid: 700 components: - type: Transform pos: 8.489134,-4.7251415 parent: 1 - proto: ClothingHeadHatWelding entities: - - uid: 718 + - uid: 701 components: - type: Transform pos: 8.348509,-4.2251415 parent: 1 - proto: Cobweb1 entities: - - uid: 719 + - uid: 702 components: - type: Transform pos: -11.5,0.5 parent: 1 - proto: ComputerAdvancedRadar entities: - - uid: 720 + - uid: 703 components: - type: Transform pos: -9.5,0.5 parent: 1 - proto: ComputerPowerMonitoring entities: - - uid: 721 + - uid: 704 components: - type: Transform rot: 3.141592653589793 rad @@ -6458,20 +6822,20 @@ entities: parent: 1 - proto: ComputerRadar entities: - - uid: 722 + - uid: 705 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 1 - - uid: 723 + - uid: 706 components: - type: Transform pos: -14.5,9.5 parent: 1 - proto: ComputerShuttle entities: - - uid: 724 + - uid: 707 components: - type: Transform pos: -10.5,0.5 @@ -6504,22 +6868,22 @@ entities: 5: - - Group2 - SpaceArtilleryFire - 1429: + 7: - - Group3 - Toggle - 7: + 6: - - Group3 - Toggle - type: NamedModules buttonNames: - - Fire left 120mm - - Fire right 120mm - - Module C + - Toggle Plasma Bolt Repeater + - Fire 120mm + - Toggle 90mm Heavy Mortar - Module D - Module E - proto: ComputerTabletopComms entities: - - uid: 725 + - uid: 708 components: - type: Transform rot: 3.141592653589793 rad @@ -6527,35 +6891,21 @@ entities: parent: 1 - proto: ComputerTabletopPowerMonitoring entities: - - uid: 726 + - uid: 709 components: - type: Transform pos: -8.5,7.5 parent: 1 - proto: ComputerTargeting entities: - - uid: 727 + - uid: 710 components: - type: Transform pos: -8.5,0.5 parent: 1 - - type: TargetingConsole - cannonGroups: - all: - - 99 - - 100 - - 101 - - 102 - - 103 - SHI 43mm "Hullpiercer" slugspitter: - - 99 - - 100 - - 101 - - 102 - - 103 - proto: ConveyorBelt entities: - - uid: 728 + - uid: 711 components: - type: Transform rot: 1.5707963267948966 rad @@ -6563,8 +6913,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1134 - - uid: 729 + - 1133 + - uid: 712 components: - type: Transform rot: -1.5707963267948966 rad @@ -6572,8 +6922,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1135 - - uid: 730 + - 1134 + - uid: 713 components: - type: Transform rot: 1.5707963267948966 rad @@ -6581,8 +6931,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1134 - - uid: 731 + - 1133 + - uid: 714 components: - type: Transform rot: -1.5707963267948966 rad @@ -6590,38 +6940,38 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1135 + - 1134 - proto: CrateEngineeringCableBulk entities: - - uid: 732 + - uid: 715 components: - type: Transform pos: -7.5,-4.5 parent: 1 - proto: CrateMaterialSteel entities: - - uid: 733 + - uid: 716 components: - type: Transform pos: -8.5,-4.5 parent: 1 - proto: d6Dice entities: - - uid: 734 + - uid: 717 components: - type: Transform pos: -10.495781,4.7904716 parent: 1 - proto: DefaultStationBeaconBridge entities: - - uid: 735 + - uid: 718 components: - type: Transform pos: -7.5,-0.5 parent: 1 - proto: DefibrillatorCabinet entities: - - uid: 736 + - uid: 719 components: - type: Transform rot: -1.5707963267948966 rad @@ -6629,48 +6979,48 @@ entities: parent: 1 - proto: DrinkMugMetal entities: - - uid: 737 + - uid: 720 components: - type: Transform pos: -4.822939,5.7628555 parent: 1 - - uid: 738 + - uid: 721 components: - type: Transform pos: -4.572939,5.8566055 parent: 1 - - uid: 739 + - uid: 722 components: - type: Transform pos: -4.729189,5.5128555 parent: 1 - - uid: 740 + - uid: 723 components: - type: Transform pos: -4.510439,5.6691055 parent: 1 - proto: DrinkVodkaBottleFull entities: - - uid: 741 + - uid: 724 components: - type: Transform pos: -4.166689,5.4816055 parent: 1 - - uid: 742 + - uid: 725 components: - type: Transform pos: -10.072244,4.6810966 parent: 1 - proto: FaxMachineShip entities: - - uid: 743 + - uid: 726 components: - type: Transform pos: -11.5,0.5 parent: 1 - proto: GasPassiveVent entities: - - uid: 744 + - uid: 727 components: - type: Transform pos: 6.5,13.5 @@ -6679,28 +7029,28 @@ entities: color: '#990000FF' - proto: GasPipeBend entities: - - uid: 745 + - uid: 728 components: - type: Transform pos: 6.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 746 + - uid: 729 components: - type: Transform pos: 16.5,5.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 747 + - uid: 730 components: - type: Transform pos: 10.5,6.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 748 + - uid: 731 components: - type: Transform rot: -1.5707963267948966 rad @@ -6708,7 +7058,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 749 + - uid: 732 components: - type: Transform rot: 1.5707963267948966 rad @@ -6716,14 +7066,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 750 + - uid: 733 components: - type: Transform pos: -8.5,4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 751 + - uid: 734 components: - type: Transform rot: 3.141592653589793 rad @@ -6731,7 +7081,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 752 + - uid: 735 components: - type: Transform rot: 3.141592653589793 rad @@ -6739,14 +7089,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 753 + - uid: 736 components: - type: Transform pos: -15.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 754 + - uid: 737 components: - type: Transform rot: 3.141592653589793 rad @@ -6754,7 +7104,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 755 + - uid: 738 components: - type: Transform rot: -1.5707963267948966 rad @@ -6762,7 +7112,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 756 + - uid: 739 components: - type: Transform rot: 1.5707963267948966 rad @@ -6770,7 +7120,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 757 + - uid: 740 components: - type: Transform rot: 1.5707963267948966 rad @@ -6778,7 +7128,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 758 + - uid: 741 components: - type: Transform rot: -1.5707963267948966 rad @@ -6786,7 +7136,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 759 + - uid: 742 components: - type: Transform pos: 9.5,4.5 @@ -6795,7 +7145,7 @@ entities: color: '#0055CCFF' - proto: GasPipeFourway entities: - - uid: 760 + - uid: 743 components: - type: Transform pos: 6.5,-1.5 @@ -6804,49 +7154,49 @@ entities: color: '#0055CCFF' - proto: GasPipeStraight entities: - - uid: 761 + - uid: 744 components: - type: Transform pos: 7.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 762 + - uid: 745 components: - type: Transform pos: 7.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 763 + - uid: 746 components: - type: Transform pos: 7.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 764 + - uid: 747 components: - type: Transform pos: 7.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 765 + - uid: 748 components: - type: Transform pos: 7.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 766 + - uid: 749 components: - type: Transform pos: 10.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 767 + - uid: 750 components: - type: Transform rot: -1.5707963267948966 rad @@ -6854,7 +7204,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 768 + - uid: 751 components: - type: Transform rot: -1.5707963267948966 rad @@ -6862,21 +7212,21 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 769 + - uid: 752 components: - type: Transform pos: 10.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 770 + - uid: 753 components: - type: Transform pos: 10.5,4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 771 + - uid: 754 components: - type: Transform rot: -1.5707963267948966 rad @@ -6884,7 +7234,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 772 + - uid: 755 components: - type: Transform rot: -1.5707963267948966 rad @@ -6892,7 +7242,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 773 + - uid: 756 components: - type: Transform rot: -1.5707963267948966 rad @@ -6900,7 +7250,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 774 + - uid: 757 components: - type: Transform rot: -1.5707963267948966 rad @@ -6908,7 +7258,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 775 + - uid: 758 components: - type: Transform rot: -1.5707963267948966 rad @@ -6916,7 +7266,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 776 + - uid: 759 components: - type: Transform rot: 3.141592653589793 rad @@ -6924,7 +7274,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 777 + - uid: 760 components: - type: Transform rot: -1.5707963267948966 rad @@ -6932,7 +7282,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 778 + - uid: 761 components: - type: Transform rot: -1.5707963267948966 rad @@ -6940,7 +7290,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 779 + - uid: 762 components: - type: Transform rot: -1.5707963267948966 rad @@ -6948,7 +7298,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 780 + - uid: 763 components: - type: Transform rot: 3.141592653589793 rad @@ -6956,7 +7306,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 781 + - uid: 764 components: - type: Transform rot: 3.141592653589793 rad @@ -6964,7 +7314,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 782 + - uid: 765 components: - type: Transform rot: 3.141592653589793 rad @@ -6972,7 +7322,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 783 + - uid: 766 components: - type: Transform rot: 3.141592653589793 rad @@ -6980,7 +7330,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 784 + - uid: 767 components: - type: Transform rot: 3.141592653589793 rad @@ -6988,7 +7338,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 785 + - uid: 768 components: - type: Transform rot: 3.141592653589793 rad @@ -6996,7 +7346,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 786 + - uid: 769 components: - type: Transform rot: -1.5707963267948966 rad @@ -7004,7 +7354,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 787 + - uid: 770 components: - type: Transform rot: -1.5707963267948966 rad @@ -7012,7 +7362,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 788 + - uid: 771 components: - type: Transform rot: -1.5707963267948966 rad @@ -7020,7 +7370,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 789 + - uid: 772 components: - type: Transform rot: -1.5707963267948966 rad @@ -7028,7 +7378,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 790 + - uid: 773 components: - type: Transform rot: -1.5707963267948966 rad @@ -7036,7 +7386,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 791 + - uid: 774 components: - type: Transform rot: -1.5707963267948966 rad @@ -7044,7 +7394,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 792 + - uid: 775 components: - type: Transform rot: -1.5707963267948966 rad @@ -7052,7 +7402,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 793 + - uid: 776 components: - type: Transform rot: -1.5707963267948966 rad @@ -7060,7 +7410,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 794 + - uid: 777 components: - type: Transform rot: -1.5707963267948966 rad @@ -7068,7 +7418,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 795 + - uid: 778 components: - type: Transform rot: -1.5707963267948966 rad @@ -7076,7 +7426,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 796 + - uid: 779 components: - type: Transform rot: -1.5707963267948966 rad @@ -7084,7 +7434,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 797 + - uid: 780 components: - type: Transform rot: 3.141592653589793 rad @@ -7092,7 +7442,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 798 + - uid: 781 components: - type: Transform rot: 3.141592653589793 rad @@ -7100,7 +7450,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 799 + - uid: 782 components: - type: Transform rot: 3.141592653589793 rad @@ -7108,7 +7458,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 800 + - uid: 783 components: - type: Transform rot: 1.5707963267948966 rad @@ -7116,7 +7466,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 801 + - uid: 784 components: - type: Transform rot: 1.5707963267948966 rad @@ -7124,7 +7474,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 802 + - uid: 785 components: - type: Transform rot: 1.5707963267948966 rad @@ -7132,7 +7482,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 803 + - uid: 786 components: - type: Transform rot: 1.5707963267948966 rad @@ -7140,7 +7490,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 804 + - uid: 787 components: - type: Transform rot: 1.5707963267948966 rad @@ -7148,28 +7498,28 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 805 + - uid: 788 components: - type: Transform pos: -8.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 806 + - uid: 789 components: - type: Transform pos: -8.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 807 + - uid: 790 components: - type: Transform pos: -8.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 808 + - uid: 791 components: - type: Transform rot: 1.5707963267948966 rad @@ -7177,7 +7527,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 809 + - uid: 792 components: - type: Transform rot: 1.5707963267948966 rad @@ -7185,7 +7535,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 810 + - uid: 793 components: - type: Transform rot: -1.5707963267948966 rad @@ -7193,7 +7543,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 811 + - uid: 794 components: - type: Transform rot: -1.5707963267948966 rad @@ -7201,7 +7551,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 812 + - uid: 795 components: - type: Transform rot: 3.141592653589793 rad @@ -7209,7 +7559,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 813 + - uid: 796 components: - type: Transform rot: 3.141592653589793 rad @@ -7217,7 +7567,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 814 + - uid: 797 components: - type: Transform rot: 3.141592653589793 rad @@ -7225,7 +7575,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 815 + - uid: 798 components: - type: Transform rot: 3.141592653589793 rad @@ -7233,7 +7583,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 816 + - uid: 799 components: - type: Transform rot: 3.141592653589793 rad @@ -7241,7 +7591,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 817 + - uid: 800 components: - type: Transform rot: 3.141592653589793 rad @@ -7249,7 +7599,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 818 + - uid: 801 components: - type: Transform rot: 3.141592653589793 rad @@ -7257,7 +7607,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 819 + - uid: 802 components: - type: Transform rot: 3.141592653589793 rad @@ -7265,7 +7615,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 820 + - uid: 803 components: - type: Transform rot: 3.141592653589793 rad @@ -7273,7 +7623,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 821 + - uid: 804 components: - type: Transform rot: 3.141592653589793 rad @@ -7281,7 +7631,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 822 + - uid: 805 components: - type: Transform rot: 3.141592653589793 rad @@ -7289,7 +7639,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 823 + - uid: 806 components: - type: Transform rot: 1.5707963267948966 rad @@ -7297,7 +7647,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 824 + - uid: 807 components: - type: Transform rot: 1.5707963267948966 rad @@ -7305,7 +7655,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 825 + - uid: 808 components: - type: Transform rot: 1.5707963267948966 rad @@ -7313,7 +7663,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 826 + - uid: 809 components: - type: Transform rot: 3.141592653589793 rad @@ -7321,7 +7671,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 827 + - uid: 810 components: - type: Transform rot: 3.141592653589793 rad @@ -7329,7 +7679,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 828 + - uid: 811 components: - type: Transform rot: 3.141592653589793 rad @@ -7337,7 +7687,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 829 + - uid: 812 components: - type: Transform rot: 3.141592653589793 rad @@ -7345,7 +7695,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 830 + - uid: 813 components: - type: Transform rot: 3.141592653589793 rad @@ -7353,7 +7703,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 831 + - uid: 814 components: - type: Transform rot: 3.141592653589793 rad @@ -7361,7 +7711,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 832 + - uid: 815 components: - type: Transform rot: 1.5707963267948966 rad @@ -7369,7 +7719,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 833 + - uid: 816 components: - type: Transform rot: 1.5707963267948966 rad @@ -7377,7 +7727,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 834 + - uid: 817 components: - type: Transform rot: 1.5707963267948966 rad @@ -7385,7 +7735,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 835 + - uid: 818 components: - type: Transform rot: 1.5707963267948966 rad @@ -7393,7 +7743,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 836 + - uid: 819 components: - type: Transform rot: 1.5707963267948966 rad @@ -7401,7 +7751,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 837 + - uid: 820 components: - type: Transform rot: 1.5707963267948966 rad @@ -7409,7 +7759,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 838 + - uid: 821 components: - type: Transform rot: 1.5707963267948966 rad @@ -7417,14 +7767,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 839 + - uid: 822 components: - type: Transform pos: -3.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 840 + - uid: 823 components: - type: Transform rot: -1.5707963267948966 rad @@ -7432,7 +7782,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 841 + - uid: 824 components: - type: Transform rot: -1.5707963267948966 rad @@ -7440,7 +7790,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 842 + - uid: 825 components: - type: Transform rot: -1.5707963267948966 rad @@ -7448,7 +7798,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 843 + - uid: 826 components: - type: Transform rot: -1.5707963267948966 rad @@ -7456,7 +7806,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 844 + - uid: 827 components: - type: Transform rot: -1.5707963267948966 rad @@ -7464,7 +7814,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 845 + - uid: 828 components: - type: Transform rot: -1.5707963267948966 rad @@ -7472,7 +7822,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 846 + - uid: 829 components: - type: Transform rot: -1.5707963267948966 rad @@ -7480,7 +7830,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 847 + - uid: 830 components: - type: Transform rot: 1.5707963267948966 rad @@ -7488,14 +7838,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 848 + - uid: 831 components: - type: Transform pos: 6.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 849 + - uid: 832 components: - type: Transform rot: -1.5707963267948966 rad @@ -7503,7 +7853,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 850 + - uid: 833 components: - type: Transform rot: -1.5707963267948966 rad @@ -7511,7 +7861,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 851 + - uid: 834 components: - type: Transform rot: 1.5707963267948966 rad @@ -7519,7 +7869,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 852 + - uid: 835 components: - type: Transform rot: 1.5707963267948966 rad @@ -7527,7 +7877,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 853 + - uid: 836 components: - type: Transform rot: 1.5707963267948966 rad @@ -7535,14 +7885,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 854 + - uid: 837 components: - type: Transform pos: 14.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 855 + - uid: 838 components: - type: Transform rot: -1.5707963267948966 rad @@ -7550,7 +7900,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 856 + - uid: 839 components: - type: Transform rot: 3.141592653589793 rad @@ -7558,7 +7908,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 857 + - uid: 840 components: - type: Transform rot: 3.141592653589793 rad @@ -7566,7 +7916,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 858 + - uid: 841 components: - type: Transform rot: 3.141592653589793 rad @@ -7574,7 +7924,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 859 + - uid: 842 components: - type: Transform rot: 3.141592653589793 rad @@ -7582,7 +7932,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 860 + - uid: 843 components: - type: Transform rot: 3.141592653589793 rad @@ -7590,7 +7940,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 861 + - uid: 844 components: - type: Transform rot: -1.5707963267948966 rad @@ -7598,7 +7948,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 862 + - uid: 845 components: - type: Transform rot: -1.5707963267948966 rad @@ -7608,7 +7958,7 @@ entities: color: '#0055CCFF' - proto: GasPipeTJunction entities: - - uid: 863 + - uid: 846 components: - type: Transform rot: 3.141592653589793 rad @@ -7616,7 +7966,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 864 + - uid: 847 components: - type: Transform rot: 3.141592653589793 rad @@ -7624,28 +7974,28 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 865 + - uid: 848 components: - type: Transform pos: -3.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 866 + - uid: 849 components: - type: Transform pos: 4.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 867 + - uid: 850 components: - type: Transform pos: 7.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 868 + - uid: 851 components: - type: Transform rot: -1.5707963267948966 rad @@ -7653,7 +8003,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 869 + - uid: 852 components: - type: Transform rot: 1.5707963267948966 rad @@ -7661,14 +8011,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 870 + - uid: 853 components: - type: Transform pos: -15.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 871 + - uid: 854 components: - type: Transform rot: 1.5707963267948966 rad @@ -7676,7 +8026,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 872 + - uid: 855 components: - type: Transform rot: 3.141592653589793 rad @@ -7684,7 +8034,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 873 + - uid: 856 components: - type: Transform rot: 3.141592653589793 rad @@ -7692,7 +8042,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 874 + - uid: 857 components: - type: Transform rot: 3.141592653589793 rad @@ -7700,7 +8050,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 875 + - uid: 858 components: - type: Transform rot: 1.5707963267948966 rad @@ -7708,7 +8058,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 876 + - uid: 859 components: - type: Transform rot: 3.141592653589793 rad @@ -7716,7 +8066,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 877 + - uid: 860 components: - type: Transform rot: 3.141592653589793 rad @@ -7724,7 +8074,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 878 + - uid: 861 components: - type: Transform rot: 3.141592653589793 rad @@ -7732,7 +8082,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 879 + - uid: 862 components: - type: Transform rot: 3.141592653589793 rad @@ -7742,7 +8092,7 @@ entities: color: '#0055CCFF' - proto: GasPort entities: - - uid: 880 + - uid: 863 components: - type: Transform rot: 1.5707963267948966 rad @@ -7750,7 +8100,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 881 + - uid: 864 components: - type: Transform rot: 1.5707963267948966 rad @@ -7760,49 +8110,49 @@ entities: color: '#990000FF' - proto: GasVentPump entities: - - uid: 882 + - uid: 865 components: - type: Transform pos: -3.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 883 + - uid: 866 components: - type: Transform pos: -13.5,3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 884 + - uid: 867 components: - type: Transform pos: -15.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 885 + - uid: 868 components: - type: Transform pos: -8.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 886 + - uid: 869 components: - type: Transform pos: -10.5,3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 887 + - uid: 870 components: - type: Transform pos: 4.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 888 + - uid: 871 components: - type: Transform rot: 3.141592653589793 rad @@ -7810,14 +8160,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 889 + - uid: 872 components: - type: Transform pos: 10.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 890 + - uid: 873 components: - type: Transform rot: -1.5707963267948966 rad @@ -7825,14 +8175,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 891 + - uid: 874 components: - type: Transform pos: 16.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 892 + - uid: 875 components: - type: Transform pos: -18.5,2.5 @@ -7841,7 +8191,7 @@ entities: color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 893 + - uid: 876 components: - type: Transform rot: 3.141592653589793 rad @@ -7849,7 +8199,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 894 + - uid: 877 components: - type: Transform rot: 3.141592653589793 rad @@ -7857,7 +8207,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 895 + - uid: 878 components: - type: Transform rot: 3.141592653589793 rad @@ -7865,7 +8215,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 896 + - uid: 879 components: - type: Transform rot: 3.141592653589793 rad @@ -7873,7 +8223,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 897 + - uid: 880 components: - type: Transform rot: 3.141592653589793 rad @@ -7881,7 +8231,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 898 + - uid: 881 components: - type: Transform rot: 3.141592653589793 rad @@ -7889,7 +8239,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 899 + - uid: 882 components: - type: Transform rot: 3.141592653589793 rad @@ -7897,7 +8247,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 900 + - uid: 883 components: - type: Transform rot: 3.141592653589793 rad @@ -7905,7 +8255,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 901 + - uid: 884 components: - type: Transform pos: -18.5,4.5 @@ -7914,97 +8264,97 @@ entities: color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 902 + - uid: 885 components: - type: Transform pos: 7.5,-5.5 parent: 1 - proto: Grille entities: - - uid: 903 + - uid: 886 components: - type: Transform pos: -4.5,-7.5 parent: 1 - - uid: 904 + - uid: 887 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 905 + - uid: 888 components: - type: Transform pos: 5.5,-7.5 parent: 1 - - uid: 906 + - uid: 889 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 907 + - uid: 890 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,8.5 parent: 1 - - uid: 908 + - uid: 891 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,9.5 parent: 1 - - uid: 909 + - uid: 892 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 910 + - uid: 893 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 911 + - uid: 894 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 912 + - uid: 895 components: - type: Transform pos: 3.5,-2.5 parent: 1 - proto: Gyroscope entities: - - uid: 913 + - uid: 896 components: - type: Transform pos: 5.5,9.5 parent: 1 - - uid: 914 + - uid: 897 components: - type: Transform pos: -4.5,-6.5 parent: 1 - - uid: 915 + - uid: 898 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 916 + - uid: 899 components: - type: Transform pos: 5.5,-6.5 parent: 1 - proto: HospitalCurtainsOpen entities: - - uid: 917 + - uid: 900 components: - type: Transform pos: -12.5,6.5 parent: 1 - proto: KitchenKnife entities: - - uid: 918 + - uid: 901 components: - type: Transform pos: -4.6396704,5.235371 @@ -8014,28 +8364,28 @@ entities: linearDamping: 0 - proto: KitchenMicrowave entities: - - uid: 919 + - uid: 902 components: - type: Transform pos: -4.5,4.5 parent: 1 - proto: KitchenReagentGrinder entities: - - uid: 920 + - uid: 903 components: - type: Transform pos: -17.5,0.5 parent: 1 - proto: Lighter entities: - - uid: 921 + - uid: 904 components: - type: Transform pos: -11.780294,-0.8424542 parent: 1 - proto: LightStripInner entities: - - uid: 922 + - uid: 905 components: - type: Transform rot: 1.5707963267948966 rad @@ -8044,7 +8394,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 923 + - uid: 906 components: - type: Transform rot: 3.141592653589793 rad @@ -8053,7 +8403,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 924 + - uid: 907 components: - type: Transform rot: -1.5707963267948966 rad @@ -8062,7 +8412,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 925 + - uid: 908 components: - type: Transform pos: 7.5,2.5 @@ -8070,7 +8420,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 926 + - uid: 909 components: - type: Transform rot: 1.5707963267948966 rad @@ -8081,7 +8431,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 927 + - uid: 910 components: - type: Transform pos: 8.5,0.5 @@ -8089,7 +8439,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 928 + - uid: 911 components: - type: Transform rot: -1.5707963267948966 rad @@ -8098,7 +8448,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 929 + - uid: 912 components: - type: Transform rot: 3.141592653589793 rad @@ -8107,7 +8457,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 930 + - uid: 913 components: - type: Transform rot: 1.5707963267948966 rad @@ -8118,14 +8468,14 @@ entities: - type: TurretIFF - proto: LockerSyndicate entities: - - uid: 931 + - uid: 914 components: - type: Transform pos: -7.5,0.5 parent: 1 - proto: MagazineLightRifleBoxSlug entities: - - uid: 932 + - uid: 915 components: - type: Transform pos: 2.8241913,1.2496314 @@ -8134,7 +8484,7 @@ entities: containers: ballistic-ammo: !type:Container ents: [] - - uid: 933 + - uid: 916 components: - type: Transform pos: 2.2619355,1.2222095 @@ -8143,7 +8493,7 @@ entities: containers: ballistic-ammo: !type:Container ents: [] - - uid: 934 + - uid: 917 components: - type: Transform pos: 2.4539254,1.2359204 @@ -8152,7 +8502,7 @@ entities: containers: ballistic-ammo: !type:Container ents: [] - - uid: 935 + - uid: 918 components: - type: Transform pos: 2.6322014,1.2496314 @@ -8161,7 +8511,7 @@ entities: containers: ballistic-ammo: !type:Container ents: [] - - uid: 936 + - uid: 919 components: - type: Transform pos: 2.220794,1.414165 @@ -8170,7 +8520,7 @@ entities: containers: ballistic-ammo: !type:Container ents: [] - - uid: 937 + - uid: 920 components: - type: Transform pos: 2.5499222,1.414165 @@ -8179,7 +8529,7 @@ entities: containers: ballistic-ammo: !type:Container ents: [] - - uid: 938 + - uid: 921 components: - type: Transform pos: 2.7144845,1.4415879 @@ -8188,7 +8538,7 @@ entities: containers: ballistic-ammo: !type:Container ents: [] - - uid: 939 + - uid: 922 components: - type: Transform pos: 2.9338982,1.4415879 @@ -8199,7 +8549,7 @@ entities: ents: [] - proto: MagazineLightRifleBoxSlugHE entities: - - uid: 940 + - uid: 923 components: - type: Transform pos: 2.4264977,1.8803449 @@ -8208,7 +8558,7 @@ entities: containers: ballistic-ammo: !type:Container ents: [] - - uid: 941 + - uid: 924 components: - type: Transform pos: 2.673343,1.852922 @@ -8219,7 +8569,7 @@ entities: ents: [] - proto: MagazineMortar entities: - - uid: 942 + - uid: 925 components: - type: Transform pos: -1.3213925,1.3181872 @@ -8228,7 +8578,7 @@ entities: containers: ballistic-ammo: !type:Container ents: [] - - uid: 943 + - uid: 926 components: - type: Transform pos: -1.8013654,1.3181872 @@ -8237,7 +8587,7 @@ entities: containers: ballistic-ammo: !type:Container ents: [] - - uid: 944 + - uid: 927 components: - type: Transform pos: -1.2665372,1.7295222 @@ -8246,7 +8596,7 @@ entities: containers: ballistic-ammo: !type:Container ents: [] - - uid: 945 + - uid: 928 components: - type: Transform pos: -1.7602239,1.7569442 @@ -8257,73 +8607,73 @@ entities: ents: [] - proto: MedkitAdvancedFilled entities: - - uid: 946 + - uid: 929 components: - type: Transform pos: -17.722645,0.34860665 parent: 1 - proto: MedkitBurnFilled entities: - - uid: 947 + - uid: 930 components: - type: Transform pos: -17.722645,0.004856646 parent: 1 - proto: MedkitFilled entities: - - uid: 948 + - uid: 931 components: - type: Transform pos: -17.285145,0.31735665 parent: 1 - proto: MedkitToxinFilled entities: - - uid: 949 + - uid: 932 components: - type: Transform pos: -17.20702,0.020481646 parent: 1 - proto: Multitool entities: - - uid: 950 + - uid: 933 components: - type: Transform pos: 8.692259,-4.3501415 parent: 1 - proto: N14Bed entities: - - uid: 951 + - uid: 934 components: - type: Transform pos: -11.5,2.5 parent: 1 - - uid: 952 + - uid: 935 components: - type: Transform pos: -9.5,2.5 parent: 1 - proto: N14BedWoodBunk entities: - - uid: 953 + - uid: 936 components: - type: Transform pos: -9.5,2.5 parent: 1 - - uid: 954 + - uid: 937 components: - type: Transform pos: -11.5,2.5 parent: 1 - proto: N14ClosetFridgeDirty entities: - - uid: 955 + - uid: 938 components: - type: Transform pos: -4.5,6.5 parent: 1 - proto: NCWLPoster2 entities: - - uid: 956 + - uid: 939 components: - type: Transform rot: 1.5707963267948966 rad @@ -8331,7 +8681,7 @@ entities: parent: 1 - proto: NCWLPoster3 entities: - - uid: 957 + - uid: 940 components: - type: Transform rot: 1.5707963267948966 rad @@ -8339,47 +8689,76 @@ entities: parent: 1 - proto: NFHolopadShip entities: - - uid: 958 + - uid: 941 components: - type: Transform pos: -9.5,-0.5 parent: 1 - proto: OxygenCanister entities: - - uid: 959 + - uid: 942 components: - type: Transform pos: -9.5,-4.5 parent: 1 - - uid: 960 + - uid: 943 components: - type: Transform pos: -10.5,-4.5 parent: 1 +- proto: Paper + entities: + - uid: 944 + components: + - type: Transform + pos: -9.493941,0.40271473 + parent: 1 + - type: Paper + content: >- + From: Battalion Engineering Section + + + Comrade Commander, + + + Since the loss of our station we have received no supplies, and we have been travelling for a considerable time. I understand that your expectation of me is to keep this vessel operational. However, without resupply for much longer, I fear the ship will eventually lose its ability to function if we do not reach our new home soon. + + + My intention is not to damage morale. The engineering team is already working tirelessly to keep the ship together, and I am doing my best to maintain their spirits. This information remains strictly between you and me. I have not informed them of the situation. To keep morale high, I continue to assure them that everything is under control. + + + Everything for the Cause. - proto: PaperBin20 entities: - - uid: 961 + - uid: 945 components: - type: Transform pos: -11.5,-0.5 parent: 1 - proto: PlasticFlapsAirtightClear entities: - - uid: 962 + - uid: 946 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,3.5 parent: 1 - - uid: 963 + - uid: 947 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,2.5 parent: 1 +- proto: PlushiePearCat + entities: + - uid: 948 + components: + - type: Transform + pos: 9.529344,13.346688 + parent: 1 - proto: PortableScrubber entities: - - uid: 964 + - uid: 949 components: - type: Transform anchored: True @@ -8391,91 +8770,91 @@ entities: bodyType: Static - proto: Poweredlight entities: - - uid: 965 + - uid: 950 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,2.5 parent: 1 - - uid: 966 + - uid: 951 components: - type: Transform pos: -16.5,0.5 parent: 1 - - uid: 967 + - uid: 952 components: - type: Transform pos: -10.5,0.5 parent: 1 - - uid: 968 + - uid: 953 components: - type: Transform pos: -8.5,0.5 parent: 1 - - uid: 969 + - uid: 954 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,6.5 parent: 1 - - uid: 970 + - uid: 955 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,8.5 parent: 1 - - uid: 971 + - uid: 956 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,6.5 parent: 1 - - uid: 972 + - uid: 957 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,9.5 parent: 1 - - uid: 973 + - uid: 958 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 1 - - uid: 974 + - uid: 959 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 parent: 1 - - uid: 975 + - uid: 960 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 976 + - uid: 961 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 1 - - uid: 977 + - uid: 962 components: - type: Transform pos: -18.5,4.5 parent: 1 - - uid: 978 + - uid: 963 components: - type: Transform pos: 16.5,3.5 parent: 1 - - uid: 979 + - uid: 964 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,1.5 parent: 1 - - uid: 980 + - uid: 965 components: - type: Transform rot: 3.141592653589793 rad @@ -8483,7 +8862,7 @@ entities: parent: 1 - proto: PoweredlightSodium entities: - - uid: 981 + - uid: 966 components: - type: Transform rot: 1.5707963267948966 rad @@ -8491,7 +8870,7 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 982 + - uid: 967 components: - type: Transform rot: -1.5707963267948966 rad @@ -8499,7 +8878,7 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 983 + - uid: 968 components: - type: Transform rot: -1.5707963267948966 rad @@ -8507,7 +8886,7 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 984 + - uid: 969 components: - type: Transform rot: 1.5707963267948966 rad @@ -8515,7 +8894,7 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 985 + - uid: 970 components: - type: Transform rot: 3.141592653589793 rad @@ -8523,35 +8902,35 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 986 + - uid: 971 components: - type: Transform pos: -8.5,-6.5 parent: 1 - type: PointLight energy: 1 - - uid: 987 + - uid: 972 components: - type: Transform pos: 9.5,-6.5 parent: 1 - type: PointLight energy: 1 - - uid: 988 + - uid: 973 components: - type: Transform pos: 13.5,-6.5 parent: 1 - type: PointLight energy: 1 - - uid: 989 + - uid: 974 components: - type: Transform pos: -11.5,-6.5 parent: 1 - type: PointLight energy: 1 - - uid: 990 + - uid: 975 components: - type: Transform rot: 3.141592653589793 rad @@ -8559,13 +8938,13 @@ entities: parent: 1 - type: PointLight energy: 1 - - uid: 991 + - uid: 976 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,1.5 parent: 1 - - uid: 992 + - uid: 977 components: - type: Transform rot: 3.141592653589793 rad @@ -8573,104 +8952,104 @@ entities: parent: 1 - proto: PoweredSmallLight entities: - - uid: 993 + - uid: 978 components: - type: Transform pos: 10.5,9.5 parent: 1 - - uid: 994 + - uid: 979 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,3.5 parent: 1 - - uid: 995 + - uid: 980 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-1.5 parent: 1 - - uid: 996 + - uid: 981 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-7.5 parent: 1 - - uid: 997 + - uid: 982 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-7.5 parent: 1 - - uid: 998 + - uid: 983 components: - type: Transform pos: -8.5,-3.5 parent: 1 - - uid: 999 + - uid: 984 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 1000 + - uid: 985 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,2.5 parent: 1 - - uid: 1001 + - uid: 986 components: - type: Transform pos: -12.5,6.5 parent: 1 - - uid: 1002 + - uid: 987 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,2.5 parent: 1 - - uid: 1003 + - uid: 988 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,6.5 parent: 1 - - uid: 1004 + - uid: 989 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,5.5 parent: 1 - - uid: 1005 + - uid: 990 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-0.5 parent: 1 - - uid: 1006 + - uid: 991 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-3.5 parent: 1 - - uid: 1007 + - uid: 992 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,5.5 parent: 1 - - uid: 1008 + - uid: 993 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,5.5 parent: 1 - - uid: 1009 + - uid: 994 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 1010 + - uid: 995 components: - type: Transform rot: -1.5707963267948966 rad @@ -8678,364 +9057,422 @@ entities: parent: 1 - proto: Rack entities: - - uid: 1011 + - uid: 996 components: - type: Transform pos: 10.5,9.5 parent: 1 - - uid: 1012 + - uid: 997 components: - type: Transform pos: -6.5,-4.5 parent: 1 - - uid: 1013 + - uid: 998 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-0.5 parent: 1 - - uid: 1014 + - uid: 999 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,1.5 parent: 1 - - uid: 1015 + - uid: 1000 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 parent: 1 - - uid: 1016 + - uid: 1001 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-0.5 parent: 1 - - uid: 1017 + - uid: 1002 components: - type: Transform pos: 11.5,9.5 parent: 1 - - uid: 1018 + - uid: 1003 components: - type: Transform pos: -16.5,6.5 parent: 1 - proto: Railing entities: - - uid: 1019 + - uid: 1004 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,1.5 parent: 1 - - uid: 1020 + - uid: 1005 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-5.5 parent: 1 - - uid: 1021 + - uid: 1006 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 1 - - uid: 1022 + - uid: 1007 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 1023 + - uid: 1008 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 1024 + - uid: 1009 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-0.5 parent: 1 - - uid: 1025 + - uid: 1010 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,5.5 parent: 1 - - uid: 1026 + - uid: 1011 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 1027 + - uid: 1012 components: - type: Transform pos: 7.5,-0.5 parent: 1 - - uid: 1028 + - uid: 1013 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,2.5 parent: 1 - - uid: 1029 + - uid: 1014 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-2.5 parent: 1 - - uid: 1030 + - uid: 1015 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-2.5 parent: 1 - - uid: 1031 + - uid: 1016 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 1032 + - uid: 1017 components: - type: Transform pos: 9.5,-0.5 parent: 1 - - uid: 1033 + - uid: 1018 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,10.5 parent: 1 - - uid: 1034 + - uid: 1019 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,10.5 parent: 1 - - uid: 1035 + - uid: 1020 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,10.5 parent: 1 - - uid: 1036 + - uid: 1021 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,11.5 parent: 1 - - uid: 1037 + - uid: 1022 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,11.5 parent: 1 - - uid: 1038 + - uid: 1023 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,11.5 parent: 1 - - uid: 1039 + - uid: 1024 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,9.5 parent: 1 - - uid: 1040 + - uid: 1025 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,8.5 parent: 1 - - uid: 1041 + - uid: 1026 components: - type: Transform pos: -4.5,-5.5 parent: 1 - - uid: 1042 + - uid: 1027 components: - type: Transform pos: 5.5,-5.5 parent: 1 - - uid: 1043 + - uid: 1028 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-1.5 parent: 1 - - uid: 1044 + - uid: 1029 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,0.5 parent: 1 - - uid: 1045 + - uid: 1030 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,3.5 parent: 1 - - uid: 1046 + - uid: 1031 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,2.5 parent: 1 - - uid: 1047 + - uid: 1032 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,2.5 parent: 1 - - uid: 1048 + - uid: 1033 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 1049 + - uid: 1034 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-2.5 parent: 1 - - uid: 1050 + - uid: 1035 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-2.5 parent: 1 - - uid: 1051 + - uid: 1036 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 1052 + - uid: 1037 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,14.5 parent: 1 - - uid: 1053 + - uid: 1038 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,13.5 parent: 1 - - uid: 1054 + - uid: 1039 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,14.5 parent: 1 - - uid: 1055 + - uid: 1040 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,13.5 parent: 1 - - uid: 1056 +- proto: RailingCorner + entities: + - uid: 1041 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,12.5 + pos: 11.5,13.5 parent: 1 - - uid: 1057 + - uid: 1042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,12.5 + pos: 8.5,-7.5 parent: 1 - - uid: 1058 + - uid: 1043 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - uid: 1044 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,11.5 + pos: -4.5,-9.5 parent: 1 - - uid: 1059 + - uid: 1045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,9.5 + parent: 1 + - uid: 1046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 1047 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,11.5 + pos: 2.5,-5.5 parent: 1 -- proto: RailingCorner - entities: - - uid: 1060 + - uid: 1048 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 1049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - uid: 1050 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - uid: 1051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 1 + - uid: 1052 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-5.5 + pos: 5.5,-9.5 parent: 1 - - uid: 1061 + - uid: 1053 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-5.5 + pos: 17.5,5.5 parent: 1 - - uid: 1062 + - uid: 1054 components: - type: Transform - pos: 2.5,6.5 + rot: -1.5707963267948966 rad + pos: -15.5,-4.5 parent: 1 - - uid: 1063 + - uid: 1055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,6.5 + pos: 15.5,-5.5 parent: 1 - - uid: 1064 + - uid: 1056 components: - type: Transform - pos: 10.5,-0.5 + rot: -1.5707963267948966 rad + pos: -18.5,-2.5 parent: 1 - proto: RailingCornerSmall entities: - - uid: 1065 + - uid: 1057 components: - type: Transform pos: 12.5,-2.5 parent: 1 +- proto: RailingRound + entities: + - uid: 1058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,12.5 + parent: 1 + - uid: 1059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,11.5 + parent: 1 + - uid: 1060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,15.5 + parent: 1 - proto: ReinforcedGirder entities: - - uid: 1066 + - uid: 1061 components: - type: Transform pos: -1.5,0.5 parent: 1 - - uid: 1067 + - uid: 1062 components: - type: Transform pos: 2.5,0.5 parent: 1 - proto: ShipVoucherUnionfallBroadsword entities: - - uid: 1068 + - uid: 1063 components: - type: Transform pos: 2.3486624,-0.72085404 parent: 1 - - uid: 1069 + - uid: 1064 components: - type: Transform pos: 2.7705374,-0.27554154 parent: 1 - proto: ShipVoucherUnionfallKhopesh entities: - - uid: 1070 + - uid: 1065 components: - type: Transform pos: -1.7230849,-0.64961827 parent: 1 - - uid: 1071 + - uid: 1066 components: - type: Transform pos: -1.2308975,-0.29805577 parent: 1 - proto: ShuttleGunPlasmaRepeater entities: - - uid: 607 + - uid: 1067 components: - type: Transform rot: -3.141592653589793 rad @@ -9044,12 +9481,12 @@ entities: - type: ApcPowerReceiver powerLoad: 1000 - type: Battery - startingCharge: 18293.36 + startingCharge: 15743.933 - type: ApcPowerReceiverBattery enabled: True - type: Physics fixedRotation: False - - uid: 608 + - uid: 1068 components: - type: Transform rot: -3.141592653589793 rad @@ -9058,25 +9495,14 @@ entities: - type: ApcPowerReceiver powerLoad: 1000 - type: Battery - startingCharge: 18296.846 + startingCharge: 15747.439 - type: ApcPowerReceiverBattery enabled: True - type: Physics fixedRotation: False - proto: SignalButton entities: - - uid: 1072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,0.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 116: - - - Pressed - - Toggle - - uid: 1073 + - uid: 1069 components: - type: Transform rot: 1.5707963267948966 rad @@ -9084,10 +9510,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 114: + 106: - - Pressed - Toggle - - uid: 1074 + - uid: 1070 components: - type: Transform rot: -1.5707963267948966 rad @@ -9095,13 +9521,13 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 105: + 97: - - Pressed - Toggle - 104: + 96: - - Pressed - Toggle - - uid: 1075 + - uid: 1071 components: - type: Transform rot: 3.141592653589793 rad @@ -9109,182 +9535,191 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 108: + 100: - - Pressed - Toggle - 106: + 98: - - Pressed - Toggle - 107: + 99: - - Pressed - Toggle - - uid: 1076 + - uid: 1072 components: - type: Transform pos: 2.5,3.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 109: + 101: - - Pressed - Toggle - 110: + 102: - - Pressed - Toggle - 111: + 103: - - Pressed - Toggle - - uid: 1077 + - uid: 1073 components: - type: Transform - pos: 17.5,4.5 + pos: -19.5,5.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 112: + 105: - - Pressed - Toggle - - uid: 1078 + - uid: 1074 components: - type: Transform - pos: -19.5,5.5 + rot: -1.5707963267948966 rad + pos: 14.5,7.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 113: + 107: - - Pressed - Toggle - - uid: 1079 +- proto: SignBridge + entities: + - uid: 1075 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 1076 + components: + - type: Transform + pos: -12.5,3.5 + parent: 1 +- proto: SignDirectionalMed + entities: + - uid: 1077 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 +- proto: SignEngineering + entities: + - uid: 1078 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,7.5 + pos: 12.5,4.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 115: - - - Pressed - - Toggle - - uid: 1080 + - uid: 1079 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,12.5 + pos: 5.5,-0.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 118: - - - Pressed - - Toggle - - uid: 1081 +- proto: SignSalvage + entities: + - uid: 1080 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-2.5 + pos: -4.5,-0.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 117: - - - Pressed - - Toggle - proto: Sink entities: - - uid: 1082 + - uid: 1081 components: - type: Transform pos: -11.5,6.5 parent: 1 - proto: SMESBasic entities: - - uid: 1083 + - uid: 1082 components: - type: Transform pos: 15.5,-0.5 parent: 1 - proto: SoapHomemade entities: - - uid: 1084 + - uid: 1083 components: - type: Transform pos: -11.754425,6.6113987 parent: 1 - proto: SpaceCash entities: - - uid: 1085 + - uid: 1084 components: - type: Transform pos: -8.714531,4.8373466 parent: 1 - - uid: 1086 + - uid: 1085 components: - type: Transform pos: -8.714531,4.6029716 parent: 1 - proto: SpawnPointLatejoin entities: - - uid: 1087 + - uid: 1086 components: - type: Transform pos: -9.5,2.5 parent: 1 - - uid: 1088 + - uid: 1087 components: - type: Transform pos: -11.5,2.5 parent: 1 - proto: StationMap entities: - - uid: 1089 + - uid: 1088 components: - type: Transform pos: -18.5,5.5 parent: 1 - - uid: 1090 + - uid: 1089 components: - type: Transform pos: -7.5,5.5 parent: 1 - - uid: 1091 + - uid: 1090 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 1092 + - uid: 1091 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-2.5 parent: 1 - - uid: 1093 + - uid: 1092 components: - type: Transform pos: 10.5,6.5 parent: 1 - - uid: 1094 + - uid: 1093 components: - type: Transform pos: 16.5,4.5 parent: 1 - proto: SubstationBasic entities: - - uid: 1095 + - uid: 1094 components: - type: Transform pos: 15.5,5.5 parent: 1 - - uid: 1096 + - uid: 1095 components: - type: Transform pos: -9.5,6.5 parent: 1 - proto: SuitStorageBase entities: - - uid: 1097 + - uid: 1096 components: - type: Transform pos: 15.5,1.5 parent: 1 - - uid: 1098 + - uid: 1097 components: - type: Transform pos: -17.5,2.5 @@ -9293,199 +9728,199 @@ entities: locked: False - proto: TableReinforced entities: - - uid: 1099 + - uid: 1098 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,0.5 parent: 1 - - uid: 1100 + - uid: 1099 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,1.5 parent: 1 - - uid: 1101 + - uid: 1100 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,7.5 parent: 1 - - uid: 1102 + - uid: 1101 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-0.5 parent: 1 - - uid: 1103 + - uid: 1102 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 1 - - uid: 1104 + - uid: 1103 components: - type: Transform pos: 8.5,-4.5 parent: 1 - - uid: 1105 + - uid: 1104 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,4.5 parent: 1 - - uid: 1106 + - uid: 1105 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-0.5 parent: 1 - - uid: 1107 + - uid: 1106 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,5.5 parent: 1 - - uid: 1108 + - uid: 1107 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,4.5 parent: 1 - - uid: 1109 + - uid: 1108 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,4.5 parent: 1 - - uid: 1110 + - uid: 1109 components: - type: Transform pos: -11.5,0.5 parent: 1 - - uid: 1111 + - uid: 1110 components: - type: Transform pos: -11.5,-0.5 parent: 1 - - uid: 1112 + - uid: 1111 components: - type: Transform pos: -11.5,-1.5 parent: 1 - - uid: 1113 + - uid: 1112 components: - type: Transform pos: -10.5,-1.5 parent: 1 - proto: ThrusterNCWLWarship entities: - - uid: 1114 + - uid: 1113 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-0.5 parent: 1 - - uid: 1115 + - uid: 1114 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-6.5 parent: 1 - - uid: 1116 + - uid: 1115 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,8.5 parent: 1 - - uid: 1117 + - uid: 1116 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,0.5 parent: 1 - - uid: 1118 + - uid: 1117 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-6.5 parent: 1 - - uid: 1119 + - uid: 1118 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-6.5 parent: 1 - - uid: 1120 + - uid: 1119 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,6.5 parent: 1 - - uid: 1121 + - uid: 1120 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,7.5 parent: 1 - - uid: 1122 + - uid: 1121 components: - type: Transform pos: -4.5,13.5 parent: 1 - - uid: 1123 + - uid: 1122 components: - type: Transform pos: 9.5,15.5 parent: 1 - - uid: 1124 + - uid: 1123 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 1125 + - uid: 1124 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,7.5 parent: 1 - - uid: 1126 + - uid: 1125 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-3.5 parent: 1 - - uid: 1127 + - uid: 1126 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-2.5 parent: 1 - - uid: 1128 + - uid: 1127 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-6.5 parent: 1 - - uid: 1129 + - uid: 1128 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-6.5 parent: 1 - - uid: 1130 + - uid: 1129 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-6.5 parent: 1 - - uid: 1131 + - uid: 1130 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-6.5 parent: 1 - - uid: 1132 + - uid: 1131 components: - type: Transform rot: 3.141592653589793 rad @@ -9493,7 +9928,7 @@ entities: parent: 1 - proto: ToiletEmpty entities: - - uid: 1133 + - uid: 1132 components: - type: Transform rot: 1.5707963267948966 rad @@ -9501,42 +9936,42 @@ entities: parent: 1 - proto: TwoWayLever entities: - - uid: 1134 + - uid: 1133 components: - type: Transform pos: -18.5,3.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 728: + 711: - - Left - Reverse - - Right - Forward - - Middle - Off - 730: + 713: - - Left - Reverse - - Right - Forward - - Middle - Off - - uid: 1135 + - uid: 1134 components: - type: Transform pos: 16.5,2.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 731: + 714: - - Left - Forward - - Right - Reverse - - Middle - Off - 729: + 712: - - Left - Forward - - Right @@ -9545,7 +9980,7 @@ entities: - Off - proto: Type99Artillery entities: - - uid: 1136 + - uid: 1135 components: - type: Transform rot: 3.141592653589793 rad @@ -9568,10 +10003,10 @@ entities: occludes: True ents: [] - type: Battery - startingCharge: 18048.818 + startingCharge: 15497.953 - type: ApcPowerReceiverBattery enabled: True - - uid: 1137 + - uid: 1136 components: - type: Transform rot: 3.141592653589793 rad @@ -9580,7 +10015,7 @@ entities: - type: ApcPowerReceiver powerLoad: 1000 - type: Battery - startingCharge: 18048.818 + startingCharge: 15497.953 - type: ApcPowerReceiverBattery enabled: True - type: ContainerContainer @@ -9599,64 +10034,64 @@ entities: ents: [] - type: DeviceLinkSource linkedPorts: - 115: + 107: - - SpaceArtilleryDetectedFiring - Open - proto: UnionfallClementineMothershipComputer entities: - - uid: 1138 + - uid: 1137 components: - type: Transform pos: 0.5,-0.5 parent: 1 - proto: UnionfallShipNodeNCWL entities: - - uid: 1139 + - uid: 1138 components: - type: Transform pos: 8.5,1.5 parent: 1 - proto: VendingMachineChemicals entities: - - uid: 1140 + - uid: 1139 components: - type: Transform pos: -16.5,-1.5 parent: 1 - proto: VendingMachineEngivend entities: - - uid: 1141 + - uid: 1140 components: - type: Transform pos: 13.5,3.5 parent: 1 - proto: VendingMachineSovietSoda entities: - - uid: 1142 + - uid: 1141 components: - type: Transform pos: -15.5,4.5 parent: 1 - proto: VendingMachineTankDispenserEVA entities: - - uid: 1143 + - uid: 1142 components: - type: Transform pos: 15.5,3.5 parent: 1 - - uid: 1144 + - uid: 1143 components: - type: Transform pos: -17.5,4.5 parent: 1 - - uid: 1145 + - uid: 1144 components: - type: Transform pos: 12.5,3.5 parent: 1 - proto: VendingMachineWallMedical entities: - - uid: 1146 + - uid: 1145 components: - type: Transform rot: -1.5707963267948966 rad @@ -9664,1516 +10099,1537 @@ entities: parent: 1 - proto: VendingMachineYouTool entities: - - uid: 1147 + - uid: 1146 components: - type: Transform pos: 8.5,-3.5 parent: 1 -- proto: WallPlastitaniumDiagonalNortheastCurved +- proto: WallPlastitanium entities: + - uid: 1147 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 - uid: 1148 components: - type: Transform - pos: -5.5,13.5 + rot: 3.141592653589793 rad + pos: 10.5,13.5 parent: 1 - uid: 1149 components: - type: Transform - pos: -20.5,5.5 + rot: -1.5707963267948966 rad + pos: -15.5,-3.5 parent: 1 +- proto: WallPlastitaniumDiagonalNortheastCurved + entities: - uid: 1150 components: - type: Transform - pos: -18.5,10.5 + pos: -5.5,13.5 parent: 1 - uid: 1151 + components: + - type: Transform + pos: -20.5,5.5 + parent: 1 + - uid: 1152 + components: + - type: Transform + pos: -18.5,10.5 + parent: 1 + - uid: 1153 components: - type: Transform pos: -3.5,16.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestCurved entities: - - uid: 1152 + - uid: 1154 components: - type: Transform pos: 15.5,9.5 parent: 1 - - uid: 1153 + - uid: 1155 components: - type: Transform pos: 8.5,18.5 parent: 1 - - uid: 1154 + - uid: 1156 components: - type: Transform pos: 10.5,15.5 parent: 1 - - uid: 1155 + - uid: 1157 components: - type: Transform pos: 14.5,10.5 parent: 1 - - uid: 1156 + - uid: 1158 components: - type: Transform pos: 16.5,6.5 parent: 1 - - uid: 1157 + - uid: 1159 components: - type: Transform pos: 4.5,15.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastCurved entities: - - uid: 1158 + - uid: 1160 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 1159 + - uid: 1161 components: - type: Transform pos: -3.5,-10.5 parent: 1 - - uid: 1160 + - uid: 1162 components: - type: Transform pos: -12.5,-6.5 parent: 1 - - uid: 1161 + - uid: 1163 components: - type: Transform pos: -16.5,-3.5 parent: 1 - - uid: 1162 + - uid: 1164 components: - type: Transform pos: -19.5,-1.5 parent: 1 - - uid: 1163 + - uid: 1165 components: - type: Transform pos: -20.5,1.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestCurved entities: - - uid: 1164 + - uid: 1166 components: - type: Transform pos: 4.5,-11.5 parent: 1 - - uid: 1165 + - uid: 1167 components: - type: Transform pos: 16.5,-1.5 parent: 1 - - uid: 1166 + - uid: 1168 components: - type: Transform pos: 14.5,-6.5 parent: 1 - - uid: 1167 + - uid: 1169 components: - type: Transform pos: 6.5,-8.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestHollow entities: - - uid: 1168 + - uid: 1170 components: - type: Transform pos: 7.5,-7.5 parent: 1 - proto: WallPlastitaniumNCWL entities: - - uid: 1169 + - uid: 1171 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 1170 + - uid: 1172 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 1171 + - uid: 1173 components: - type: Transform pos: -4.5,-2.5 parent: 1 - - uid: 1172 + - uid: 1174 components: - type: Transform pos: -1.5,4.5 parent: 1 - - uid: 1173 + - uid: 1175 components: - type: Transform pos: 15.5,4.5 parent: 1 - - uid: 1174 + - uid: 1176 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 1175 + - uid: 1177 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 1176 + - uid: 1178 components: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 1177 + - uid: 1179 components: - type: Transform pos: 5.5,-2.5 parent: 1 - - uid: 1178 + - uid: 1180 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 1179 + - uid: 1181 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 1180 + - uid: 1182 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 1181 + - uid: 1183 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 1182 + - uid: 1184 components: - type: Transform pos: 6.5,10.5 parent: 1 - - uid: 1183 + - uid: 1185 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 1184 + - uid: 1186 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 1185 + - uid: 1187 components: - type: Transform pos: -3.5,-3.5 parent: 1 - - uid: 1186 + - uid: 1188 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 1187 + - uid: 1189 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 1188 + - uid: 1190 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 1189 + - uid: 1191 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 1190 + - uid: 1192 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 1191 + - uid: 1193 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 1192 + - uid: 1194 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 1193 + - uid: 1195 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 1194 + - uid: 1196 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 1195 + - uid: 1197 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 1196 + - uid: 1198 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 1197 + - uid: 1199 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-4.5 parent: 1 - - uid: 1198 + - uid: 1200 components: - type: Transform pos: 14.5,0.5 parent: 1 - - uid: 1199 + - uid: 1201 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-6.5 parent: 1 - - uid: 1200 + - uid: 1202 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,1.5 parent: 1 - - uid: 1201 + - uid: 1203 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,5.5 parent: 1 - - uid: 1202 + - uid: 1204 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,8.5 parent: 1 - - uid: 1203 + - uid: 1205 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,8.5 parent: 1 - - uid: 1204 + - uid: 1206 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,9.5 parent: 1 - - uid: 1205 + - uid: 1207 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,9.5 parent: 1 - - uid: 1206 + - uid: 1208 components: - type: Transform pos: -5.5,10.5 parent: 1 - - uid: 1207 + - uid: 1209 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,8.5 parent: 1 - - uid: 1208 + - uid: 1210 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,10.5 parent: 1 - - uid: 1209 + - uid: 1211 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 1210 + - uid: 1212 components: - type: Transform pos: -8.5,8.5 parent: 1 - - uid: 1211 + - uid: 1213 components: - type: Transform pos: 4.5,-6.5 parent: 1 - - uid: 1212 + - uid: 1214 components: - type: Transform pos: 4.5,-4.5 parent: 1 - - uid: 1213 + - uid: 1215 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,5.5 parent: 1 - - uid: 1214 + - uid: 1216 components: - type: Transform pos: 14.5,4.5 parent: 1 - - uid: 1215 + - uid: 1217 components: - type: Transform pos: -5.5,12.5 parent: 1 - - uid: 1216 + - uid: 1218 components: - type: Transform pos: 6.5,-7.5 parent: 1 - - uid: 1217 + - uid: 1219 components: - type: Transform pos: 5.5,-8.5 parent: 1 - - uid: 1218 + - uid: 1220 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 1219 + - uid: 1221 components: - type: Transform pos: -6.5,-6.5 parent: 1 - - uid: 1220 + - uid: 1222 components: - type: Transform pos: 14.5,1.5 parent: 1 - - uid: 1221 + - uid: 1223 components: - type: Transform pos: 14.5,3.5 parent: 1 - - uid: 1222 + - uid: 1224 components: - type: Transform pos: 4.5,-10.5 parent: 1 - - uid: 1223 + - uid: 1225 components: - type: Transform pos: 17.5,4.5 parent: 1 - - uid: 1224 + - uid: 1226 components: - type: Transform pos: 18.5,4.5 parent: 1 - - uid: 1225 + - uid: 1227 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 1226 + - uid: 1228 components: - type: Transform pos: 4.5,-5.5 parent: 1 - - uid: 1227 + - uid: 1229 components: - type: Transform pos: -3.5,-9.5 parent: 1 - - uid: 1228 + - uid: 1230 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 1229 + - uid: 1231 components: - type: Transform pos: 6.5,-5.5 parent: 1 - - uid: 1230 + - uid: 1232 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-6.5 parent: 1 - - uid: 1231 + - uid: 1233 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 1232 + - uid: 1234 components: - type: Transform pos: -3.5,-8.5 parent: 1 - - uid: 1233 + - uid: 1235 components: - type: Transform pos: -3.5,-7.5 parent: 1 - - uid: 1234 + - uid: 1236 components: - type: Transform pos: 8.5,17.5 parent: 1 - - uid: 1235 + - uid: 1237 components: - type: Transform pos: 8.5,16.5 parent: 1 - - uid: 1236 + - uid: 1238 components: - type: Transform pos: 8.5,15.5 parent: 1 - - uid: 1237 + - uid: 1239 components: - type: Transform pos: 8.5,14.5 parent: 1 - - uid: 1238 + - uid: 1240 components: - type: Transform pos: 8.5,13.5 parent: 1 - - uid: 1239 + - uid: 1241 components: - type: Transform pos: 8.5,12.5 parent: 1 - - uid: 1240 + - uid: 1242 components: - type: Transform pos: 8.5,11.5 parent: 1 - - uid: 1241 + - uid: 1243 components: - type: Transform pos: 8.5,10.5 parent: 1 - - uid: 1242 + - uid: 1244 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 1243 + - uid: 1245 components: - type: Transform pos: -3.5,-5.5 parent: 1 - - uid: 1244 + - uid: 1246 components: - type: Transform pos: -3.5,-6.5 parent: 1 - - uid: 1245 + - uid: 1247 components: - type: Transform pos: 9.5,14.5 parent: 1 - - uid: 1246 + - uid: 1248 components: - type: Transform pos: 10.5,14.5 parent: 1 - - uid: 1247 + - uid: 1249 components: - type: Transform pos: 10.5,12.5 parent: 1 - - uid: 1248 + - uid: 1250 components: - type: Transform pos: 11.5,12.5 parent: 1 - - uid: 1249 + - uid: 1251 components: - type: Transform pos: 11.5,11.5 parent: 1 - - uid: 1250 + - uid: 1252 components: - type: Transform pos: 11.5,10.5 parent: 1 - - uid: 1251 + - uid: 1253 components: - type: Transform pos: 12.5,10.5 parent: 1 - - uid: 1252 + - uid: 1254 components: - type: Transform pos: 14.5,9.5 parent: 1 - - uid: 1253 + - uid: 1255 components: - type: Transform pos: 14.5,8.5 parent: 1 - - uid: 1254 + - uid: 1256 components: - type: Transform pos: 14.5,7.5 parent: 1 - - uid: 1255 + - uid: 1257 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,6.5 parent: 1 - - uid: 1256 + - uid: 1258 components: - type: Transform pos: 12.5,9.5 parent: 1 - - uid: 1257 + - uid: 1259 components: - type: Transform pos: 12.5,8.5 parent: 1 - - uid: 1258 + - uid: 1260 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,6.5 parent: 1 - - uid: 1259 + - uid: 1261 components: - type: Transform pos: 16.5,5.5 parent: 1 - - uid: 1260 + - uid: 1262 components: - type: Transform pos: 16.5,0.5 parent: 1 - - uid: 1261 + - uid: 1263 components: - type: Transform pos: 16.5,-0.5 parent: 1 - - uid: 1262 + - uid: 1264 components: - type: Transform pos: 15.5,-1.5 parent: 1 - - uid: 1263 + - uid: 1265 components: - type: Transform pos: 14.5,-1.5 parent: 1 - - uid: 1264 + - uid: 1266 components: - type: Transform pos: 14.5,-2.5 parent: 1 - - uid: 1265 + - uid: 1267 components: - type: Transform pos: 14.5,-3.5 parent: 1 - - uid: 1266 + - uid: 1268 components: - type: Transform pos: 14.5,-4.5 parent: 1 - - uid: 1267 + - uid: 1269 components: - type: Transform pos: 14.5,-5.5 parent: 1 - - uid: 1268 + - uid: 1270 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-5.5 parent: 1 - - uid: 1269 + - uid: 1271 components: - type: Transform pos: 15.5,-4.5 parent: 1 - - uid: 1270 + - uid: 1272 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 1271 + - uid: 1273 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-5.5 parent: 1 - - uid: 1272 + - uid: 1274 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-5.5 parent: 1 - - uid: 1273 + - uid: 1275 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-5.5 parent: 1 - - uid: 1274 + - uid: 1276 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-5.5 parent: 1 - - uid: 1275 + - uid: 1277 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-5.5 parent: 1 - - uid: 1276 + - uid: 1278 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-5.5 parent: 1 - - uid: 1277 + - uid: 1279 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 1 - - uid: 1278 + - uid: 1280 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-5.5 parent: 1 - - uid: 1279 + - uid: 1281 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 1280 + - uid: 1282 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 1281 + - uid: 1283 components: - type: Transform pos: -7.5,8.5 parent: 1 - - uid: 1282 + - uid: 1284 components: - type: Transform pos: 8.5,-6.5 parent: 1 - - uid: 1283 + - uid: 1285 components: - type: Transform pos: 6.5,9.5 parent: 1 - - uid: 1284 + - uid: 1286 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,7.5 parent: 1 - - uid: 1285 + - uid: 1287 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,6.5 parent: 1 - - uid: 1286 + - uid: 1288 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,5.5 parent: 1 - - uid: 1287 + - uid: 1289 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,7.5 parent: 1 - - uid: 1288 + - uid: 1290 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,7.5 parent: 1 - - uid: 1289 + - uid: 1291 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,7.5 parent: 1 - - uid: 1290 + - uid: 1292 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,7.5 parent: 1 - - uid: 1291 + - uid: 1293 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,7.5 parent: 1 - - uid: 1292 + - uid: 1294 components: - type: Transform pos: 4.5,-7.5 parent: 1 - - uid: 1293 + - uid: 1295 components: - type: Transform pos: 4.5,-8.5 parent: 1 - - uid: 1294 + - uid: 1296 components: - type: Transform pos: 4.5,-9.5 parent: 1 - - uid: 1295 + - uid: 1297 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,1.5 parent: 1 - - uid: 1296 + - uid: 1298 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,5.5 parent: 1 - - uid: 1297 + - uid: 1299 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,5.5 parent: 1 - - uid: 1298 + - uid: 1300 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,1.5 parent: 1 - - uid: 1299 + - uid: 1301 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,1.5 parent: 1 - - uid: 1300 + - uid: 1302 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,2.5 parent: 1 - - uid: 1301 + - uid: 1303 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-1.5 parent: 1 - - uid: 1302 + - uid: 1304 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-0.5 parent: 1 - - uid: 1303 + - uid: 1305 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,0.5 parent: 1 - - uid: 1304 + - uid: 1306 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-1.5 parent: 1 - - uid: 1305 + - uid: 1307 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-2.5 parent: 1 - - uid: 1306 + - uid: 1308 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-2.5 parent: 1 - - uid: 1307 + - uid: 1309 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-3.5 parent: 1 - - uid: 1308 + - uid: 1310 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-4.5 parent: 1 - - uid: 1309 + - uid: 1311 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-4.5 parent: 1 - - uid: 1310 + - uid: 1312 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-4.5 parent: 1 - - uid: 1311 + - uid: 1313 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-5.5 parent: 1 - - uid: 1312 + - uid: 1314 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-5.5 parent: 1 - - uid: 1313 + - uid: 1315 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-5.5 parent: 1 - - uid: 1314 + - uid: 1316 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-5.5 parent: 1 - - uid: 1315 + - uid: 1317 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-5.5 parent: 1 - - uid: 1316 + - uid: 1318 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 1317 + - uid: 1319 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-6.5 parent: 1 - - uid: 1318 + - uid: 1320 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-4.5 parent: 1 - - uid: 1319 + - uid: 1321 components: - type: Transform pos: -4.5,-8.5 parent: 1 - - uid: 1320 + - uid: 1322 components: - type: Transform pos: 16.5,4.5 parent: 1 - - uid: 1321 + - uid: 1323 components: - type: Transform pos: 18.5,0.5 parent: 1 - - uid: 1322 + - uid: 1324 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,6.5 parent: 1 - - uid: 1323 + - uid: 1325 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 1 - - uid: 1324 + - uid: 1326 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 1 - - uid: 1325 + - uid: 1327 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - - uid: 1326 + - uid: 1328 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 1 - - uid: 1327 + - uid: 1329 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,11.5 parent: 1 - - uid: 1328 + - uid: 1330 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,12.5 parent: 1 - - uid: 1329 + - uid: 1331 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,13.5 parent: 1 - - uid: 1330 + - uid: 1332 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,14.5 parent: 1 - - uid: 1331 + - uid: 1333 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,15.5 parent: 1 - - uid: 1332 + - uid: 1334 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 1 - - uid: 1333 + - uid: 1335 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,6.5 parent: 1 - - uid: 1334 + - uid: 1336 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,7.5 parent: 1 - - uid: 1335 + - uid: 1337 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 1 - - uid: 1336 + - uid: 1338 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - - uid: 1337 + - uid: 1339 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,10.5 parent: 1 - - uid: 1338 + - uid: 1340 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,11.5 parent: 1 - - uid: 1339 + - uid: 1341 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 1 - - uid: 1340 + - uid: 1342 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,13.5 parent: 1 - - uid: 1341 + - uid: 1343 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,14.5 parent: 1 - - uid: 1342 + - uid: 1344 components: - type: Transform pos: -4.5,12.5 parent: 1 - - uid: 1343 + - uid: 1345 components: - type: Transform pos: 15.5,0.5 parent: 1 - - uid: 1344 + - uid: 1346 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 1345 + - uid: 1347 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,7.5 parent: 1 - - uid: 1346 + - uid: 1348 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,6.5 parent: 1 - - uid: 1347 + - uid: 1349 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,5.5 parent: 1 - - uid: 1348 + - uid: 1350 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,1.5 parent: 1 - - uid: 1349 + - uid: 1351 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 1350 + - uid: 1352 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 1351 + - uid: 1353 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 1352 + - uid: 1354 components: - type: Transform pos: -12.5,1.5 parent: 1 - - uid: 1353 + - uid: 1355 components: - type: Transform pos: -13.5,10.5 parent: 1 - - uid: 1354 + - uid: 1356 components: - type: Transform pos: -16.5,10.5 parent: 1 - - uid: 1355 + - uid: 1357 components: - type: Transform pos: -12.5,3.5 parent: 1 - - uid: 1356 + - uid: 1358 components: - type: Transform pos: -12.5,5.5 parent: 1 - - uid: 1357 + - uid: 1359 components: - type: Transform pos: -10.5,5.5 parent: 1 - - uid: 1358 + - uid: 1360 components: - type: Transform pos: -10.5,6.5 parent: 1 - - uid: 1359 + - uid: 1361 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-3.5 parent: 1 - - uid: 1360 + - uid: 1362 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-2.5 parent: 1 - - uid: 1361 + - uid: 1363 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-4.5 parent: 1 - - uid: 1362 + - uid: 1364 components: - type: Transform pos: 5.5,4.5 parent: 1 - - uid: 1363 + - uid: 1365 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,4.5 parent: 1 - - uid: 1364 + - uid: 1366 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,2.5 parent: 1 - - uid: 1365 + - uid: 1367 components: - type: Transform pos: -14.5,10.5 parent: 1 - - uid: 1366 + - uid: 1368 components: - type: Transform pos: -7.5,5.5 parent: 1 - - uid: 1367 + - uid: 1369 components: - type: Transform pos: -9.5,1.5 parent: 1 - - uid: 1368 + - uid: 1370 components: - type: Transform pos: -8.5,5.5 parent: 1 - - uid: 1369 + - uid: 1371 components: - type: Transform pos: -9.5,5.5 parent: 1 - - uid: 1370 + - uid: 1372 components: - type: Transform pos: -10.5,1.5 parent: 1 - - uid: 1371 + - uid: 1373 components: - type: Transform pos: -8.5,1.5 parent: 1 - - uid: 1372 + - uid: 1374 components: - type: Transform pos: -11.5,1.5 parent: 1 - - uid: 1373 + - uid: 1375 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 1374 + - uid: 1376 components: - type: Transform pos: -7.5,1.5 parent: 1 - - uid: 1375 + - uid: 1377 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 1376 + - uid: 1378 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 1377 + - uid: 1379 components: - type: Transform pos: 10.5,10.5 parent: 1 - - uid: 1378 + - uid: 1380 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 1379 + - uid: 1381 components: - type: Transform pos: -8.5,-2.5 parent: 1 - - uid: 1380 + - uid: 1382 components: - type: Transform pos: -12.5,-0.5 parent: 1 - - uid: 1381 + - uid: 1383 components: - type: Transform pos: -9.5,-2.5 parent: 1 - - uid: 1382 + - uid: 1384 components: - type: Transform pos: -10.5,-2.5 parent: 1 - - uid: 1383 + - uid: 1385 components: - type: Transform pos: -12.5,-2.5 parent: 1 - - uid: 1384 + - uid: 1386 components: - type: Transform pos: -12.5,0.5 parent: 1 - - uid: 1385 + - uid: 1387 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 1386 + - uid: 1388 components: - type: Transform pos: -12.5,-1.5 parent: 1 - - uid: 1387 + - uid: 1389 components: - type: Transform pos: -11.5,-2.5 parent: 1 - - uid: 1388 + - uid: 1390 components: - type: Transform pos: -7.5,-2.5 parent: 1 - - uid: 1389 + - uid: 1391 components: - type: Transform pos: -6.5,-2.5 parent: 1 - - uid: 1390 + - uid: 1392 components: - type: Transform pos: -14.5,-1.5 parent: 1 - - uid: 1391 + - uid: 1393 components: - type: Transform pos: -14.5,0.5 parent: 1 - - uid: 1392 + - uid: 1394 components: - type: Transform pos: -14.5,-2.5 parent: 1 - - uid: 1393 + - uid: 1395 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-2.5 parent: 1 - - uid: 1394 + - uid: 1396 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - - uid: 1395 + - uid: 1397 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 1396 + - uid: 1398 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 1397 + - uid: 1399 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 1398 + - uid: 1400 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 1399 + - uid: 1401 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 1400 + - uid: 1402 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 1401 + - uid: 1403 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 1402 + - uid: 1404 components: - type: Transform pos: -15.5,5.5 parent: 1 - - uid: 1403 + - uid: 1405 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,11.5 parent: 1 - - uid: 1404 + - uid: 1406 components: - type: Transform pos: -6.5,-1.5 parent: 1 - - uid: 1405 + - uid: 1407 components: - type: Transform pos: -6.5,0.5 parent: 1 - - uid: 1406 + - uid: 1408 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 1407 + - uid: 1409 components: - type: Transform pos: 13.5,4.5 parent: 1 - - uid: 1408 + - uid: 1410 components: - type: Transform pos: 12.5,4.5 parent: 1 - - uid: 1409 + - uid: 1411 components: - type: Transform pos: 13.5,6.5 parent: 1 - - uid: 1410 + - uid: 1412 components: - type: Transform pos: 12.5,6.5 parent: 1 - - uid: 1411 + - uid: 1413 components: - type: Transform pos: 10.5,4.5 parent: 1 - - uid: 1412 + - uid: 1414 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 1413 + - uid: 1415 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 1414 + - uid: 1416 components: - type: Transform pos: 8.5,7.5 parent: 1 - - uid: 1415 + - uid: 1417 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 1416 + - uid: 1418 components: - type: Transform pos: 11.5,6.5 parent: 1 - - uid: 1417 + - uid: 1419 components: - type: Transform pos: 10.5,6.5 parent: 1 - - uid: 1418 + - uid: 1420 components: - type: Transform pos: 10.5,7.5 parent: 1 - - uid: 1419 + - uid: 1421 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 1420 + - uid: 1422 components: - type: Transform pos: -1.5,-2.5 parent: 1 - - uid: 1421 + - uid: 1423 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 1422 + - uid: 1424 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 1423 + - uid: 1425 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 1424 + - uid: 1426 components: - type: Transform pos: 10.5,11.5 parent: 1 - proto: WardrobeGrey entities: - - uid: 1425 + - uid: 1427 components: - type: Transform pos: -8.5,2.5 parent: 1 - - uid: 1426 + - uid: 1428 components: - type: Transform pos: -10.5,2.5 parent: 1 - proto: WarpPointShip entities: - - uid: 1427 + - uid: 1429 components: + - type: MetaData + name: NCWL Gargut - type: Transform pos: 0.5,0.5 parent: 1 - proto: WeaponTurretMortar entities: - - uid: 6 + - uid: 1430 components: - type: Transform rot: 3.141592653589793 rad @@ -11202,12 +11658,10 @@ entities: occludes: True ent: null - type: ApcPowerReceiver - powerLoad: 1000 + powerLoad: 5 - type: Battery - startingCharge: 668.9596 - - type: ApcPowerReceiverBattery - enabled: True - - uid: 1428 + startingCharge: 0 + - uid: 1431 components: - type: Transform rot: 3.141592653589793 rad @@ -11236,17 +11690,15 @@ entities: occludes: True ent: null - type: ApcPowerReceiver - powerLoad: 1000 + powerLoad: 5 - type: Battery - startingCharge: 672.9601 - - type: ApcPowerReceiverBattery - enabled: True + startingCharge: 0 - proto: WeaponTurretPDT entities: - - uid: 1430 + - uid: 1432 components: - type: Transform - pos: -4.5,-9.5 + pos: -6.5,-7.5 parent: 1 - type: ContainerContainer containers: @@ -11266,10 +11718,11 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 1431 + - uid: 1433 components: - type: Transform - pos: 5.5,-9.5 + rot: 3.141592653589793 rad + pos: -13.5,11.5 parent: 1 - type: ContainerContainer containers: @@ -11285,15 +11738,15 @@ entities: showEnts: False occludes: True ents: [] - - type: ApcPowerReceiver - powerLoad: 5 - type: Battery - startingCharge: 0 - - uid: 1432 + startingCharge: 523.10846 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 1434 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,9.5 + pos: -9.5,12.5 parent: 1 - type: ContainerContainer containers: @@ -11309,16 +11762,15 @@ entities: showEnts: False occludes: True ents: [] - - type: ApcPowerReceiver - powerLoad: 5 - type: Battery - startingCharge: 0 - - type: PointCannon - linkedConsoleId: 727 - - uid: 1433 + startingCharge: 518.10785 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 1435 components: - type: Transform - pos: 15.5,-5.5 + rot: 3.141592653589793 rad + pos: -19.5,9.5 parent: 1 - type: ContainerContainer containers: @@ -11334,14 +11786,38 @@ entities: showEnts: False occludes: True ents: [] + - type: Battery + startingCharge: 527.27563 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 1436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 1 - type: ApcPowerReceiver powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: Battery startingCharge: 0 - - uid: 1434 + - uid: 1437 components: - type: Transform - pos: 8.5,-7.5 + pos: -15.5,-4.5 parent: 1 - type: ContainerContainer containers: @@ -11361,7 +11837,7 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 1435 + - uid: 1438 components: - type: Transform rot: 3.141592653589793 rad @@ -11381,17 +11857,62 @@ entities: showEnts: False occludes: True ents: [] - - type: ApcPowerReceiver - powerLoad: 5 - type: Battery - startingCharge: 0 - - type: PointCannon - linkedConsoleId: 727 - - uid: 1436 + startingCharge: 507.6074 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 1439 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 54.286404 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 1440 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,5.5 + pos: 11.5,13.5 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 504.44092 + - type: ApcPowerReceiverBattery + enabled: True + - uid: 1441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-2.5 parent: 1 - type: ContainerContainer containers: @@ -11411,13 +11932,36 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - type: PointCannon - linkedConsoleId: 727 - - uid: 1437 + - uid: 1442 components: - type: Transform - pos: -6.5,-7.5 + pos: 15.5,-5.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 0 + - uid: 1443 + components: + - type: Transform + pos: 5.5,-9.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -11432,16 +11976,35 @@ entities: showEnts: False occludes: True ents: [] + - type: Battery + startingCharge: 0 + - uid: 1444 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 - type: ApcPowerReceiver powerLoad: 5 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: Battery startingCharge: 0 - - type: PointCannon - linkedConsoleId: 727 - - uid: 1438 + - uid: 1445 components: - type: Transform - pos: -18.5,-2.5 + pos: -4.5,-9.5 parent: 1 - type: ContainerContainer containers: @@ -11461,16 +12024,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - type: PointCannon - linkedConsoleId: 727 - proto: WindoorSecure entities: - - uid: 1439 + - uid: 1446 components: - type: Transform pos: -15.5,1.5 parent: 1 - - uid: 1440 + - uid: 1447 components: - type: Transform rot: 3.141592653589793 rad diff --git a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_sasha.yml b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_sasha.yml index 766298bafb9..6af90459dcb 100644 --- a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_sasha.yml +++ b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_sasha.yml @@ -4,8 +4,8 @@ meta: engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 03/10/2026 14:27:10 - entityCount: 1145 + time: 03/10/2026 23:44:05 + entityCount: 1163 maps: [] grids: - 1 @@ -47,11 +47,11 @@ entities: version: 7 0,-1: ind: 0,-1 - tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAAGAAAAAAAAAgAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAABgAAAAAAAAIAAAAAAACCAAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAIQAAAAAAAAQAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAEAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAIQAAAAAAAAQAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAEAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAAAMAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAACCAAAAAAAAIQAAAAAAAIIAAAAAAAAGAAAAAAAABQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAAAFAAAAAAAAggAAAAAAAD0AAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAAA9AAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAFAAAAAAAAggAAAAAAAAYAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAAGAAAAAAAAAgAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAABgAAAAAAAAIAAAAAAACCAAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAIQAAAAAAAAQAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAEAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAIQAAAAAAAAQAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAEAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAAAMAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAACCAAAAAAAAIQAAAAAAAIIAAAAAAAAGAAAAAAAABQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAAAFAAAAAAAAggAAAAAAAD0AAAAAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAAA9AAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAFAAAAAAAAggAAAAAAAAYAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAACAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAgAAAAAAAAYAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAggAAAAAAAAIAAAAAAAAGAAAAAAAABQAAAAAAAIIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAhAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAAIQAAAAAAAAYAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAAYAAAAAAACCAAAAAAAAIQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAGAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAAAAIIAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAPQAAAAAAAIIAAAAAAAAFAAAAAAAABgAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAD0AAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAAA9AAAAAAAAPQAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAFAAAAAAAABgAAAAAAAIIAAAAAAAAFAAAAAAAABwAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAACAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAgAAAAAAAAYAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAggAAAAAAAAIAAAAAAAAGAAAAAAAABQAAAAAAAIIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAhAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAAIQAAAAAAAAYAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAAYAAAAAAACCAAAAAAAAIQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAGAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAAAAIIAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAAAAAPQAAAAAAAIIAAAAAAAAFAAAAAAAABgAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAAD0AAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAAAAAA9AAAAAAAAPQAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAFAAAAAAAABgAAAAAAAIIAAAAAAAAFAAAAAAAABwAAAAAAAA== version: 7 -1,-2: ind: -1,-2 @@ -150,46 +150,67 @@ entities: 186: -7,0 191: -6,10 199: -5,12 - 219: -8,-11 - 225: -8,-7 - 228: -6,-17 - 231: -5,-19 - 237: -2,-20 - 319: -8,1 - 324: -7,0 - 332: -5,12 - 352: -8,-11 - 358: -8,-7 - 361: -5,-19 - 369: -6,10 - 420: -8,1 - 425: -7,0 - 430: -6,10 - 438: -5,12 - 458: -8,-11 - 464: -8,-7 - 467: -5,-19 - 504: -8,1 - 509: -7,0 - 514: -6,10 - 522: -5,12 - 542: -8,-11 - 548: -8,-7 - 551: -5,-19 - 588: -8,1 - 593: -7,0 - 598: -6,10 - 606: -5,12 - 626: -8,-11 - 632: -8,-7 - 635: -5,-19 - 672: -8,1 - 677: -7,0 - 682: -6,10 - 690: -5,12 - 710: -8,-11 - 716: -8,-7 - 719: -5,-19 + 216: -8,-11 + 219: -8,-7 + 222: -6,-17 + 225: -5,-19 + 231: -2,-20 + 313: -8,1 + 318: -7,0 + 326: -5,12 + 343: -8,-11 + 346: -8,-7 + 349: -5,-19 + 357: -6,10 + 408: -8,1 + 413: -7,0 + 418: -6,10 + 426: -5,12 + 443: -8,-11 + 446: -8,-7 + 449: -5,-19 + 486: -8,1 + 491: -7,0 + 496: -6,10 + 504: -5,12 + 521: -8,-11 + 524: -8,-7 + 527: -5,-19 + 564: -8,1 + 569: -7,0 + 574: -6,10 + 582: -5,12 + 599: -8,-11 + 602: -8,-7 + 605: -5,-19 + 642: -8,1 + 647: -7,0 + 652: -6,10 + 660: -5,12 + 677: -8,-11 + 680: -8,-7 + 683: -5,-19 + 720: -8,1 + 725: -7,0 + 730: -6,10 + 738: -5,12 + 755: -8,-11 + 758: -8,-7 + 761: -5,-19 + 798: -8,1 + 803: -7,0 + 808: -6,10 + 816: -5,12 + 833: -8,-11 + 836: -8,-7 + 839: -5,-19 + 876: -8,1 + 881: -7,0 + 886: -6,10 + 894: -5,12 + 911: -8,-11 + 914: -8,-7 + 917: -5,-19 - node: zIndex: 1 id: LatticeCornerNW @@ -199,45 +220,66 @@ entities: 175: 7,0 178: 8,1 210: 8,-11 - 216: 8,-7 - 243: 2,-20 - 246: 5,-19 - 249: 6,-17 - 302: 5,12 - 313: 7,0 - 316: 8,1 - 343: 8,-11 - 349: 8,-7 - 364: 5,-19 - 374: 6,10 - 398: 5,12 - 406: 6,10 - 414: 7,0 - 417: 8,1 - 449: 8,-11 - 455: 8,-7 - 470: 5,-19 - 482: 5,12 - 490: 6,10 - 498: 7,0 - 501: 8,1 - 533: 8,-11 - 539: 8,-7 - 554: 5,-19 - 566: 5,12 - 574: 6,10 - 582: 7,0 - 585: 8,1 - 617: 8,-11 - 623: 8,-7 - 638: 5,-19 - 650: 5,12 - 658: 6,10 - 666: 7,0 - 669: 8,1 - 701: 8,-11 - 707: 8,-7 - 722: 5,-19 + 213: 8,-7 + 237: 2,-20 + 240: 5,-19 + 243: 6,-17 + 296: 5,12 + 307: 7,0 + 310: 8,1 + 337: 8,-11 + 340: 8,-7 + 352: 5,-19 + 362: 6,10 + 386: 5,12 + 394: 6,10 + 402: 7,0 + 405: 8,1 + 437: 8,-11 + 440: 8,-7 + 452: 5,-19 + 464: 5,12 + 472: 6,10 + 480: 7,0 + 483: 8,1 + 515: 8,-11 + 518: 8,-7 + 530: 5,-19 + 542: 5,12 + 550: 6,10 + 558: 7,0 + 561: 8,1 + 593: 8,-11 + 596: 8,-7 + 608: 5,-19 + 620: 5,12 + 628: 6,10 + 636: 7,0 + 639: 8,1 + 671: 8,-11 + 674: 8,-7 + 686: 5,-19 + 698: 5,12 + 706: 6,10 + 714: 7,0 + 717: 8,1 + 749: 8,-11 + 752: 8,-7 + 764: 5,-19 + 776: 5,12 + 784: 6,10 + 792: 7,0 + 795: 8,1 + 827: 8,-11 + 830: 8,-7 + 842: 5,-19 + 854: 5,12 + 862: 6,10 + 870: 7,0 + 873: 8,1 + 905: 8,-11 + 908: 8,-7 + 920: 5,-19 - node: zIndex: 1 id: LatticeCornerSE @@ -248,43 +290,55 @@ entities: 197: -5,12 202: -5,13 205: -4,14 - 222: -8,-9 - 235: -2,-20 - 322: -7,0 - 327: -6,11 - 330: -5,12 - 335: -5,13 - 338: -4,14 - 355: -8,-9 - 367: -6,10 - 423: -7,0 - 428: -6,10 - 433: -6,11 - 436: -5,12 - 441: -5,13 - 444: -4,14 - 461: -8,-9 - 507: -7,0 - 512: -6,10 - 517: -6,11 - 520: -5,12 - 525: -5,13 - 528: -4,14 - 545: -8,-9 - 591: -7,0 - 596: -6,10 - 601: -6,11 - 604: -5,12 - 609: -5,13 - 612: -4,14 - 629: -8,-9 - 675: -7,0 - 680: -6,10 - 685: -6,11 - 688: -5,12 - 693: -5,13 - 696: -4,14 - 713: -8,-9 + 229: -2,-20 + 316: -7,0 + 321: -6,11 + 324: -5,12 + 329: -5,13 + 332: -4,14 + 355: -6,10 + 411: -7,0 + 416: -6,10 + 421: -6,11 + 424: -5,12 + 429: -5,13 + 432: -4,14 + 489: -7,0 + 494: -6,10 + 499: -6,11 + 502: -5,12 + 507: -5,13 + 510: -4,14 + 567: -7,0 + 572: -6,10 + 577: -6,11 + 580: -5,12 + 585: -5,13 + 588: -4,14 + 645: -7,0 + 650: -6,10 + 655: -6,11 + 658: -5,12 + 663: -5,13 + 666: -4,14 + 723: -7,0 + 728: -6,10 + 733: -6,11 + 736: -5,12 + 741: -5,13 + 744: -4,14 + 801: -7,0 + 806: -6,10 + 811: -6,11 + 814: -5,12 + 819: -5,13 + 822: -4,14 + 879: -7,0 + 884: -6,10 + 889: -6,11 + 892: -5,12 + 897: -5,13 + 900: -4,14 - node: zIndex: 1 id: LatticeCornerSW @@ -295,43 +349,55 @@ entities: 166: 6,10 170: 6,11 174: 7,0 - 213: 8,-9 - 242: 2,-20 - 297: 4,14 - 301: 5,12 - 305: 5,13 - 308: 6,11 - 312: 7,0 - 346: 8,-9 - 373: 6,10 - 393: 4,14 - 397: 5,12 - 401: 5,13 - 405: 6,10 - 409: 6,11 - 413: 7,0 - 452: 8,-9 - 477: 4,14 - 481: 5,12 - 485: 5,13 - 489: 6,10 - 493: 6,11 - 497: 7,0 - 536: 8,-9 - 561: 4,14 - 565: 5,12 - 569: 5,13 - 573: 6,10 - 577: 6,11 - 581: 7,0 - 620: 8,-9 - 645: 4,14 - 649: 5,12 - 653: 5,13 - 657: 6,10 - 661: 6,11 - 665: 7,0 - 704: 8,-9 + 236: 2,-20 + 291: 4,14 + 295: 5,12 + 299: 5,13 + 302: 6,11 + 306: 7,0 + 361: 6,10 + 381: 4,14 + 385: 5,12 + 389: 5,13 + 393: 6,10 + 397: 6,11 + 401: 7,0 + 459: 4,14 + 463: 5,12 + 467: 5,13 + 471: 6,10 + 475: 6,11 + 479: 7,0 + 537: 4,14 + 541: 5,12 + 545: 5,13 + 549: 6,10 + 553: 6,11 + 557: 7,0 + 615: 4,14 + 619: 5,12 + 623: 5,13 + 627: 6,10 + 631: 6,11 + 635: 7,0 + 693: 4,14 + 697: 5,12 + 701: 5,13 + 705: 6,10 + 709: 6,11 + 713: 7,0 + 771: 4,14 + 775: 5,12 + 779: 5,13 + 783: 6,10 + 787: 6,11 + 791: 7,0 + 849: 4,14 + 853: 5,12 + 857: 5,13 + 861: 6,10 + 865: 6,11 + 869: 7,0 - node: id: LatticeEdgeE decals: @@ -345,82 +411,115 @@ entities: 201: -5,13 204: -4,14 206: -1,12 - 217: -8,-11 - 221: -8,-9 - 223: -8,-7 - 226: -6,-17 - 229: -5,-19 - 234: -2,-20 - 291: 0,12 - 293: 1,12 - 317: -8,1 - 321: -7,0 - 326: -6,11 - 329: -5,12 - 334: -5,13 - 337: -4,14 - 339: -1,12 - 350: -8,-11 - 354: -8,-9 - 356: -8,-7 - 359: -5,-19 - 366: -6,10 - 387: 0,12 - 389: 1,12 - 418: -8,1 - 422: -7,0 - 427: -6,10 - 432: -6,11 - 435: -5,12 - 440: -5,13 - 443: -4,14 - 445: -1,12 - 456: -8,-11 - 460: -8,-9 - 462: -8,-7 - 465: -5,-19 - 471: 0,12 - 473: 1,12 - 502: -8,1 - 506: -7,0 - 511: -6,10 - 516: -6,11 - 519: -5,12 - 524: -5,13 - 527: -4,14 - 529: -1,12 - 540: -8,-11 - 544: -8,-9 - 546: -8,-7 - 549: -5,-19 - 555: 0,12 - 557: 1,12 - 586: -8,1 - 590: -7,0 - 595: -6,10 - 600: -6,11 - 603: -5,12 - 608: -5,13 - 611: -4,14 - 613: -1,12 - 624: -8,-11 - 628: -8,-9 - 630: -8,-7 - 633: -5,-19 - 639: 0,12 - 641: 1,12 - 670: -8,1 - 674: -7,0 - 679: -6,10 - 684: -6,11 - 687: -5,12 - 692: -5,13 - 695: -4,14 - 697: -1,12 - 708: -8,-11 - 712: -8,-9 - 714: -8,-7 - 717: -5,-19 + 214: -8,-11 + 217: -8,-7 + 220: -6,-17 + 223: -5,-19 + 228: -2,-20 + 285: 0,12 + 287: 1,12 + 311: -8,1 + 315: -7,0 + 320: -6,11 + 323: -5,12 + 328: -5,13 + 331: -4,14 + 333: -1,12 + 341: -8,-11 + 344: -8,-7 + 347: -5,-19 + 354: -6,10 + 375: 0,12 + 377: 1,12 + 406: -8,1 + 410: -7,0 + 415: -6,10 + 420: -6,11 + 423: -5,12 + 428: -5,13 + 431: -4,14 + 433: -1,12 + 441: -8,-11 + 444: -8,-7 + 447: -5,-19 + 453: 0,12 + 455: 1,12 + 484: -8,1 + 488: -7,0 + 493: -6,10 + 498: -6,11 + 501: -5,12 + 506: -5,13 + 509: -4,14 + 511: -1,12 + 519: -8,-11 + 522: -8,-7 + 525: -5,-19 + 531: 0,12 + 533: 1,12 + 562: -8,1 + 566: -7,0 + 571: -6,10 + 576: -6,11 + 579: -5,12 + 584: -5,13 + 587: -4,14 + 589: -1,12 + 597: -8,-11 + 600: -8,-7 + 603: -5,-19 + 609: 0,12 + 611: 1,12 + 640: -8,1 + 644: -7,0 + 649: -6,10 + 654: -6,11 + 657: -5,12 + 662: -5,13 + 665: -4,14 + 667: -1,12 + 675: -8,-11 + 678: -8,-7 + 681: -5,-19 + 687: 0,12 + 689: 1,12 + 718: -8,1 + 722: -7,0 + 727: -6,10 + 732: -6,11 + 735: -5,12 + 740: -5,13 + 743: -4,14 + 745: -1,12 + 753: -8,-11 + 756: -8,-7 + 759: -5,-19 + 765: 0,12 + 767: 1,12 + 796: -8,1 + 800: -7,0 + 805: -6,10 + 810: -6,11 + 813: -5,12 + 818: -5,13 + 821: -4,14 + 823: -1,12 + 831: -8,-11 + 834: -8,-7 + 837: -5,-19 + 843: 0,12 + 845: 1,12 + 874: -8,1 + 878: -7,0 + 883: -6,10 + 888: -6,11 + 891: -5,12 + 896: -5,13 + 899: -4,14 + 901: -1,12 + 909: -8,-11 + 912: -8,-7 + 915: -5,-19 - node: id: LatticeEdgeN decals: @@ -433,87 +532,129 @@ entities: 190: -6,10 198: -5,12 208: 8,-11 - 214: 8,-7 - 218: -8,-11 - 224: -8,-7 - 227: -6,-17 - 230: -5,-19 - 232: -2,-21 - 236: -2,-20 - 238: 2,-21 - 240: 2,-20 - 244: 5,-19 - 247: 6,-17 - 299: 5,12 - 310: 7,0 - 314: 8,1 - 318: -8,1 - 323: -7,0 - 331: -5,12 - 341: 8,-11 - 347: 8,-7 - 351: -8,-11 - 357: -8,-7 - 360: -5,-19 - 362: 5,-19 - 368: -6,10 - 371: 6,10 - 395: 5,12 - 403: 6,10 - 411: 7,0 - 415: 8,1 - 419: -8,1 - 424: -7,0 - 429: -6,10 - 437: -5,12 - 447: 8,-11 - 453: 8,-7 - 457: -8,-11 - 463: -8,-7 - 466: -5,-19 - 468: 5,-19 - 479: 5,12 - 487: 6,10 - 495: 7,0 - 499: 8,1 - 503: -8,1 - 508: -7,0 - 513: -6,10 - 521: -5,12 - 531: 8,-11 - 537: 8,-7 - 541: -8,-11 - 547: -8,-7 - 550: -5,-19 - 552: 5,-19 - 563: 5,12 - 571: 6,10 - 579: 7,0 - 583: 8,1 - 587: -8,1 - 592: -7,0 - 597: -6,10 - 605: -5,12 - 615: 8,-11 - 621: 8,-7 - 625: -8,-11 - 631: -8,-7 - 634: -5,-19 - 636: 5,-19 - 647: 5,12 - 655: 6,10 - 663: 7,0 - 667: 8,1 - 671: -8,1 - 676: -7,0 - 681: -6,10 - 689: -5,12 - 699: 8,-11 - 705: 8,-7 - 709: -8,-11 - 715: -8,-7 - 718: -5,-19 - 720: 5,-19 + 211: 8,-7 + 215: -8,-11 + 218: -8,-7 + 221: -6,-17 + 224: -5,-19 + 226: -2,-21 + 230: -2,-20 + 232: 2,-21 + 234: 2,-20 + 238: 5,-19 + 241: 6,-17 + 293: 5,12 + 304: 7,0 + 308: 8,1 + 312: -8,1 + 317: -7,0 + 325: -5,12 + 335: 8,-11 + 338: 8,-7 + 342: -8,-11 + 345: -8,-7 + 348: -5,-19 + 350: 5,-19 + 356: -6,10 + 359: 6,10 + 383: 5,12 + 391: 6,10 + 399: 7,0 + 403: 8,1 + 407: -8,1 + 412: -7,0 + 417: -6,10 + 425: -5,12 + 435: 8,-11 + 438: 8,-7 + 442: -8,-11 + 445: -8,-7 + 448: -5,-19 + 450: 5,-19 + 461: 5,12 + 469: 6,10 + 477: 7,0 + 481: 8,1 + 485: -8,1 + 490: -7,0 + 495: -6,10 + 503: -5,12 + 513: 8,-11 + 516: 8,-7 + 520: -8,-11 + 523: -8,-7 + 526: -5,-19 + 528: 5,-19 + 539: 5,12 + 547: 6,10 + 555: 7,0 + 559: 8,1 + 563: -8,1 + 568: -7,0 + 573: -6,10 + 581: -5,12 + 591: 8,-11 + 594: 8,-7 + 598: -8,-11 + 601: -8,-7 + 604: -5,-19 + 606: 5,-19 + 617: 5,12 + 625: 6,10 + 633: 7,0 + 637: 8,1 + 641: -8,1 + 646: -7,0 + 651: -6,10 + 659: -5,12 + 669: 8,-11 + 672: 8,-7 + 676: -8,-11 + 679: -8,-7 + 682: -5,-19 + 684: 5,-19 + 695: 5,12 + 703: 6,10 + 711: 7,0 + 715: 8,1 + 719: -8,1 + 724: -7,0 + 729: -6,10 + 737: -5,12 + 747: 8,-11 + 750: 8,-7 + 754: -8,-11 + 757: -8,-7 + 760: -5,-19 + 762: 5,-19 + 773: 5,12 + 781: 6,10 + 789: 7,0 + 793: 8,1 + 797: -8,1 + 802: -7,0 + 807: -6,10 + 815: -5,12 + 825: 8,-11 + 828: 8,-7 + 832: -8,-11 + 835: -8,-7 + 838: -5,-19 + 840: 5,-19 + 851: 5,12 + 859: 6,10 + 867: 7,0 + 871: 8,1 + 875: -8,1 + 880: -7,0 + 885: -6,10 + 893: -5,12 + 903: 8,-11 + 906: 8,-7 + 910: -8,-11 + 913: -8,-7 + 916: -5,-19 + 918: 5,-19 - node: id: LatticeEdgeS decals: @@ -529,80 +670,104 @@ entities: 195: -5,12 200: -5,13 203: -4,14 - 211: 8,-9 - 220: -8,-9 - 233: -2,-20 - 239: 2,-20 - 295: 4,14 - 298: 5,12 - 303: 5,13 - 306: 6,11 - 309: 7,0 - 320: -7,0 - 325: -6,11 - 328: -5,12 - 333: -5,13 - 336: -4,14 - 344: 8,-9 - 353: -8,-9 - 365: -6,10 - 370: 6,10 - 391: 4,14 - 394: 5,12 - 399: 5,13 - 402: 6,10 - 407: 6,11 - 410: 7,0 - 421: -7,0 - 426: -6,10 - 431: -6,11 - 434: -5,12 - 439: -5,13 - 442: -4,14 - 450: 8,-9 - 459: -8,-9 - 475: 4,14 - 478: 5,12 - 483: 5,13 - 486: 6,10 - 491: 6,11 - 494: 7,0 - 505: -7,0 - 510: -6,10 - 515: -6,11 - 518: -5,12 - 523: -5,13 - 526: -4,14 - 534: 8,-9 - 543: -8,-9 - 559: 4,14 - 562: 5,12 - 567: 5,13 - 570: 6,10 - 575: 6,11 - 578: 7,0 - 589: -7,0 - 594: -6,10 - 599: -6,11 - 602: -5,12 - 607: -5,13 - 610: -4,14 - 618: 8,-9 - 627: -8,-9 - 643: 4,14 - 646: 5,12 - 651: 5,13 - 654: 6,10 - 659: 6,11 - 662: 7,0 - 673: -7,0 - 678: -6,10 - 683: -6,11 - 686: -5,12 - 691: -5,13 - 694: -4,14 - 702: 8,-9 - 711: -8,-9 + 227: -2,-20 + 233: 2,-20 + 289: 4,14 + 292: 5,12 + 297: 5,13 + 300: 6,11 + 303: 7,0 + 314: -7,0 + 319: -6,11 + 322: -5,12 + 327: -5,13 + 330: -4,14 + 353: -6,10 + 358: 6,10 + 379: 4,14 + 382: 5,12 + 387: 5,13 + 390: 6,10 + 395: 6,11 + 398: 7,0 + 409: -7,0 + 414: -6,10 + 419: -6,11 + 422: -5,12 + 427: -5,13 + 430: -4,14 + 457: 4,14 + 460: 5,12 + 465: 5,13 + 468: 6,10 + 473: 6,11 + 476: 7,0 + 487: -7,0 + 492: -6,10 + 497: -6,11 + 500: -5,12 + 505: -5,13 + 508: -4,14 + 535: 4,14 + 538: 5,12 + 543: 5,13 + 546: 6,10 + 551: 6,11 + 554: 7,0 + 565: -7,0 + 570: -6,10 + 575: -6,11 + 578: -5,12 + 583: -5,13 + 586: -4,14 + 613: 4,14 + 616: 5,12 + 621: 5,13 + 624: 6,10 + 629: 6,11 + 632: 7,0 + 643: -7,0 + 648: -6,10 + 653: -6,11 + 656: -5,12 + 661: -5,13 + 664: -4,14 + 691: 4,14 + 694: 5,12 + 699: 5,13 + 702: 6,10 + 707: 6,11 + 710: 7,0 + 721: -7,0 + 726: -6,10 + 731: -6,11 + 734: -5,12 + 739: -5,13 + 742: -4,14 + 769: 4,14 + 772: 5,12 + 777: 5,13 + 780: 6,10 + 785: 6,11 + 788: 7,0 + 799: -7,0 + 804: -6,10 + 809: -6,11 + 812: -5,12 + 817: -5,13 + 820: -4,14 + 847: 4,14 + 850: 5,12 + 855: 5,13 + 858: 6,10 + 863: 6,11 + 866: 7,0 + 877: -7,0 + 882: -6,10 + 887: -6,11 + 890: -5,12 + 895: -5,13 + 898: -4,14 - node: id: LatticeEdgeW decals: @@ -617,81 +782,114 @@ entities: 177: 8,1 207: -1,12 209: 8,-11 - 212: 8,-9 - 215: 8,-7 - 241: 2,-20 - 245: 5,-19 - 248: 6,-17 - 292: 0,12 - 294: 1,12 - 296: 4,14 - 300: 5,12 - 304: 5,13 - 307: 6,11 - 311: 7,0 - 315: 8,1 - 340: -1,12 - 342: 8,-11 - 345: 8,-9 - 348: 8,-7 - 363: 5,-19 - 372: 6,10 - 388: 0,12 - 390: 1,12 - 392: 4,14 - 396: 5,12 - 400: 5,13 - 404: 6,10 - 408: 6,11 - 412: 7,0 - 416: 8,1 - 446: -1,12 - 448: 8,-11 - 451: 8,-9 - 454: 8,-7 - 469: 5,-19 - 472: 0,12 - 474: 1,12 - 476: 4,14 - 480: 5,12 - 484: 5,13 - 488: 6,10 - 492: 6,11 - 496: 7,0 - 500: 8,1 - 530: -1,12 - 532: 8,-11 - 535: 8,-9 - 538: 8,-7 - 553: 5,-19 - 556: 0,12 - 558: 1,12 - 560: 4,14 - 564: 5,12 - 568: 5,13 - 572: 6,10 - 576: 6,11 - 580: 7,0 - 584: 8,1 - 614: -1,12 - 616: 8,-11 - 619: 8,-9 - 622: 8,-7 - 637: 5,-19 - 640: 0,12 - 642: 1,12 - 644: 4,14 - 648: 5,12 - 652: 5,13 - 656: 6,10 - 660: 6,11 - 664: 7,0 - 668: 8,1 - 698: -1,12 - 700: 8,-11 - 703: 8,-9 - 706: 8,-7 - 721: 5,-19 + 212: 8,-7 + 235: 2,-20 + 239: 5,-19 + 242: 6,-17 + 286: 0,12 + 288: 1,12 + 290: 4,14 + 294: 5,12 + 298: 5,13 + 301: 6,11 + 305: 7,0 + 309: 8,1 + 334: -1,12 + 336: 8,-11 + 339: 8,-7 + 351: 5,-19 + 360: 6,10 + 376: 0,12 + 378: 1,12 + 380: 4,14 + 384: 5,12 + 388: 5,13 + 392: 6,10 + 396: 6,11 + 400: 7,0 + 404: 8,1 + 434: -1,12 + 436: 8,-11 + 439: 8,-7 + 451: 5,-19 + 454: 0,12 + 456: 1,12 + 458: 4,14 + 462: 5,12 + 466: 5,13 + 470: 6,10 + 474: 6,11 + 478: 7,0 + 482: 8,1 + 512: -1,12 + 514: 8,-11 + 517: 8,-7 + 529: 5,-19 + 532: 0,12 + 534: 1,12 + 536: 4,14 + 540: 5,12 + 544: 5,13 + 548: 6,10 + 552: 6,11 + 556: 7,0 + 560: 8,1 + 590: -1,12 + 592: 8,-11 + 595: 8,-7 + 607: 5,-19 + 610: 0,12 + 612: 1,12 + 614: 4,14 + 618: 5,12 + 622: 5,13 + 626: 6,10 + 630: 6,11 + 634: 7,0 + 638: 8,1 + 668: -1,12 + 670: 8,-11 + 673: 8,-7 + 685: 5,-19 + 688: 0,12 + 690: 1,12 + 692: 4,14 + 696: 5,12 + 700: 5,13 + 704: 6,10 + 708: 6,11 + 712: 7,0 + 716: 8,1 + 746: -1,12 + 748: 8,-11 + 751: 8,-7 + 763: 5,-19 + 766: 0,12 + 768: 1,12 + 770: 4,14 + 774: 5,12 + 778: 5,13 + 782: 6,10 + 786: 6,11 + 790: 7,0 + 794: 8,1 + 824: -1,12 + 826: 8,-11 + 829: 8,-7 + 841: 5,-19 + 844: 0,12 + 846: 1,12 + 848: 4,14 + 852: 5,12 + 856: 5,13 + 860: 6,10 + 864: 6,11 + 868: 7,0 + 872: 8,1 + 902: -1,12 + 904: 8,-11 + 907: 8,-7 + 919: 5,-19 - node: angle: -1.5707963267948966 rad color: '#EFB34196' @@ -714,97 +912,97 @@ entities: color: '#FFFFFFFF' id: TechE decals: - 382: -5,7 - 383: -5,8 - 384: -5,9 + 370: -5,7 + 371: -5,8 + 372: -5,9 - node: color: '#FFFFFFFF' id: TechN decals: - 271: -2,3 - 272: -1,3 - 273: 0,3 - 274: 1,3 - 275: 2,3 - 276: 6,2 - 277: -6,2 + 265: -2,3 + 266: -1,3 + 267: 0,3 + 268: 1,3 + 269: 2,3 + 270: 6,2 + 271: -6,2 - node: color: '#FFFFFFFF' id: TechNE decals: - 263: -5,2 - 270: 3,3 - 284: 3,2 - 375: 3,8 + 257: -5,2 + 264: 3,3 + 278: 3,2 + 363: 3,8 - node: color: '#FFFFFFFF' id: TechNW decals: - 262: 5,2 - 269: -3,3 - 283: -3,2 - 376: -3,8 + 256: 5,2 + 263: -3,3 + 277: -3,2 + 364: -3,8 - node: color: '#FFFFFFFF' id: TechS decals: - 278: -6,5 - 279: -2,5 - 280: -1,5 - 281: 2,5 - 282: 6,5 - 289: 2,-4 - 290: -2,-4 + 272: -6,5 + 273: -2,5 + 274: -1,5 + 275: 2,5 + 276: 6,5 + 283: 2,-4 + 284: -2,-4 - node: color: '#FFFFFFFF' id: TechSE decals: - 267: -5,5 - 268: 3,5 - 286: 3,-4 - 287: -1,-4 - 378: 3,7 + 261: -5,5 + 262: 3,5 + 280: 3,-4 + 281: -1,-4 + 366: 3,7 - node: color: '#FFFFFFFF' id: TechSW decals: - 264: 5,5 - 265: 1,5 - 266: -3,5 - 285: -3,-4 - 288: 1,-4 - 377: -3,7 + 258: 5,5 + 259: 1,5 + 260: -3,5 + 279: -3,-4 + 282: 1,-4 + 365: -3,7 - node: color: '#FFFFFFFF' id: TechW decals: - 250: 5,-6 - 251: 5,-5 - 252: 5,-4 - 253: 5,-3 - 254: 5,-2 - 379: 5,7 - 380: 5,8 - 381: 5,9 + 244: 5,-6 + 245: 5,-5 + 246: 5,-4 + 247: 5,-3 + 248: 5,-2 + 367: 5,7 + 368: 5,8 + 369: 5,9 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: TechW decals: - 255: -5,-6 - 256: -5,-5 - 257: -5,-4 - 258: -5,-3 - 259: -5,-2 - 260: -5,0 - 385: -5,-1 + 249: -5,-6 + 250: -5,-5 + 251: -5,-4 + 252: -5,-3 + 253: -5,-2 + 254: -5,0 + 373: -5,-1 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechW decals: - 261: 5,0 - 386: 5,-1 + 255: 5,0 + 374: 5,-1 - node: color: '#EFB34196' id: WarnCornerSE @@ -1134,7 +1332,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 618 + - 629 - type: Physics canCollide: False - uid: 3 @@ -1145,7 +1343,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 618 + - 629 - type: Physics canCollide: False - proto: AAAHardpointLargeBallistic @@ -1363,33 +1561,38 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-16.5 parent: 1 + - uid: 35 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 - proto: AirlockCommandLockedNCWLHorizontal entities: - - uid: 35 + - uid: 36 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-5.5 parent: 1 - - uid: 36 + - uid: 37 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-7.5 parent: 1 - - uid: 37 + - uid: 38 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-5.5 parent: 1 - - uid: 38 + - uid: 39 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-14.5 parent: 1 - - uid: 39 + - uid: 40 components: - type: Transform rot: 3.141592653589793 rad @@ -1397,20 +1600,20 @@ entities: parent: 1 - proto: AirlockMaint entities: - - uid: 40 + - uid: 41 components: - type: Transform pos: 4.5,-15.5 parent: 1 - proto: AirlockShuttle entities: - - uid: 41 + - uid: 42 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-5.5 parent: 1 - - uid: 42 + - uid: 43 components: - type: Transform rot: 1.5707963267948966 rad @@ -1418,23 +1621,23 @@ entities: parent: 1 - proto: AirTankFilled entities: - - uid: 44 + - uid: 45 components: - type: Transform - parent: 43 + parent: 44 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 51 + - uid: 52 components: - type: Transform - parent: 50 + parent: 51 - type: Physics canCollide: False - type: InsideEntityStorage - proto: AmeController entities: - - uid: 57 + - uid: 58 components: - type: Transform pos: -0.5,-10.5 @@ -1446,18 +1649,18 @@ entities: fuelSlot: !type:ContainerSlot showEnts: False occludes: True - ent: 58 + ent: 59 - proto: AmeJar entities: - - uid: 58 + - uid: 59 components: - type: Transform - parent: 57 + parent: 58 - type: Physics canCollide: False - proto: AmeShielding entities: - - uid: 59 + - uid: 60 components: - type: Transform pos: 0.5,-11.5 @@ -1465,12 +1668,12 @@ entities: - type: PointLight radius: 1 enabled: True - - uid: 60 + - uid: 61 components: - type: Transform pos: 2.5,-11.5 parent: 1 - - uid: 61 + - uid: 62 components: - type: Transform pos: 1.5,-11.5 @@ -1478,7 +1681,7 @@ entities: - type: PointLight radius: 1 enabled: True - - uid: 62 + - uid: 63 components: - type: Transform pos: 1.5,-12.5 @@ -1486,32 +1689,32 @@ entities: - type: PointLight radius: 1 enabled: True - - uid: 63 + - uid: 64 components: - type: Transform pos: -0.5,-11.5 parent: 1 - - uid: 64 + - uid: 65 components: - type: Transform pos: -0.5,-12.5 parent: 1 - - uid: 65 + - uid: 66 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 66 + - uid: 67 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 67 + - uid: 68 components: - type: Transform pos: 2.5,-10.5 parent: 1 - - uid: 68 + - uid: 69 components: - type: Transform pos: 0.5,-12.5 @@ -1519,78 +1722,78 @@ entities: - type: PointLight radius: 1 enabled: True - - uid: 69 + - uid: 70 components: - type: Transform pos: -0.5,-10.5 parent: 1 - - uid: 70 + - uid: 71 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 71 + - uid: 72 components: - type: Transform pos: 2.5,-12.5 parent: 1 - - uid: 72 + - uid: 73 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 73 + - uid: 74 components: - type: Transform pos: 1.5,-10.5 parent: 1 - - uid: 74 + - uid: 75 components: - type: Transform pos: -0.5,-13.5 parent: 1 - proto: APCBasic entities: - - uid: 75 + - uid: 76 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,0.5 parent: 1 - - uid: 76 + - uid: 77 components: - type: Transform pos: -3.5,10.5 parent: 1 - - uid: 77 + - uid: 78 components: - type: Transform pos: 4.5,10.5 parent: 1 - - uid: 78 + - uid: 79 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,5.5 parent: 1 - - uid: 79 + - uid: 80 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 80 + - uid: 81 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-8.5 parent: 1 - - uid: 81 + - uid: 82 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-9.5 parent: 1 - - uid: 82 + - uid: 83 components: - type: Transform rot: 1.5707963267948966 rad @@ -1598,94 +1801,94 @@ entities: parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 83 + - uid: 84 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 84 + - uid: 85 components: - type: Transform pos: 6.5,-2.5 parent: 1 - - uid: 85 + - uid: 86 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 1 - - uid: 86 + - uid: 87 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-1.5 parent: 1 - - uid: 87 + - uid: 88 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 88 + - uid: 89 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 89 + - uid: 90 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,14.5 parent: 1 - - uid: 90 + - uid: 91 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-5.5 parent: 1 - - uid: 91 + - uid: 92 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-5.5 parent: 1 - - uid: 92 + - uid: 93 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,14.5 parent: 1 - - uid: 93 + - uid: 94 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,4.5 parent: 1 - - uid: 94 + - uid: 95 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,3.5 parent: 1 - - uid: 95 + - uid: 96 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,4.5 parent: 1 - - uid: 96 + - uid: 97 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,3.5 parent: 1 - - uid: 97 + - uid: 98 components: - type: Transform pos: 0.5,8.5 parent: 1 - proto: BaseWeaponTurretBattlemortar entities: - - uid: 98 + - uid: 99 components: - type: Transform rot: 1.5707963267948966 rad @@ -1706,16 +1909,14 @@ entities: occludes: True ents: [] - type: ApcPowerReceiver - powerLoad: 1000 + powerLoad: 5 - type: Battery - startingCharge: 617.4533 - - type: ApcPowerReceiverBattery - enabled: True + startingCharge: 0 - type: PointCannon linkedConsoleIds: - - 619 - linkedConsoleId: 619 - - uid: 99 + - 630 + linkedConsoleId: 630 + - uid: 100 components: - type: Transform rot: 3.141592653589793 rad @@ -1736,16 +1937,14 @@ entities: occludes: True ents: [] - type: ApcPowerReceiver - powerLoad: 1000 + powerLoad: 5 - type: Battery - startingCharge: 617.4533 - - type: ApcPowerReceiverBattery - enabled: True + startingCharge: 0 - type: PointCannon linkedConsoleIds: - - 619 - linkedConsoleId: 619 - - uid: 100 + - 630 + linkedConsoleId: 630 + - uid: 101 components: - type: Transform rot: -1.5707963267948966 rad @@ -1766,24 +1965,22 @@ entities: occludes: True ents: [] - type: ApcPowerReceiver - powerLoad: 1000 + powerLoad: 5 - type: Battery - startingCharge: 617.4533 - - type: ApcPowerReceiverBattery - enabled: True + startingCharge: 0 - type: PointCannon linkedConsoleIds: - - 619 - linkedConsoleId: 619 + - 630 + linkedConsoleId: 630 - proto: BedsheetMedical entities: - - uid: 101 + - uid: 102 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-11.5 parent: 1 - - uid: 102 + - uid: 103 components: - type: Transform rot: 1.5707963267948966 rad @@ -1791,21 +1988,21 @@ entities: parent: 1 - proto: BenchSteelLeft entities: - - uid: 103 + - uid: 104 components: - type: Transform pos: -1.5,-3.5 parent: 1 - proto: BenchSteelRight entities: - - uid: 104 + - uid: 105 components: - type: Transform pos: -0.5,-3.5 parent: 1 - proto: BlastDoor entities: - - uid: 105 + - uid: 106 components: - type: Transform rot: -1.5707963267948966 rad @@ -1813,8 +2010,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 862 - - uid: 106 + - 898 + - uid: 107 components: - type: Transform rot: 1.5707963267948966 rad @@ -1822,16 +2019,16 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 863 - - uid: 107 + - 899 + - uid: 108 components: - type: Transform pos: 0.5,8.5 parent: 1 - type: DeviceLinkSink links: - - 867 - - uid: 108 + - 903 + - uid: 109 components: - type: Transform rot: 1.5707963267948966 rad @@ -1839,8 +2036,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 863 - - uid: 109 + - 899 + - uid: 110 components: - type: Transform rot: 1.5707963267948966 rad @@ -1848,8 +2045,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 863 - - uid: 110 + - 899 + - uid: 111 components: - type: Transform rot: -1.5707963267948966 rad @@ -1857,8 +2054,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 862 - - uid: 111 + - 898 + - uid: 112 components: - type: Transform rot: -1.5707963267948966 rad @@ -1866,81 +2063,81 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 862 - - uid: 112 + - 898 + - uid: 113 components: - type: Transform pos: -2.5,14.5 parent: 1 - type: DeviceLinkSink links: - - 860 - - uid: 113 + - 896 + - uid: 114 components: - type: Transform pos: 3.5,14.5 parent: 1 - type: DeviceLinkSink links: - - 861 + - 897 - proto: BoxT3SuperCapacitor entities: - - uid: 115 + - uid: 116 components: - type: Transform - parent: 114 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 116 + - uid: 117 components: - type: Transform - parent: 114 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ButtonFrameCaution entities: - - uid: 128 + - uid: 129 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 129 + - uid: 130 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-4.5 parent: 1 - - uid: 130 + - uid: 131 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-4.5 parent: 1 - - uid: 131 + - uid: 132 components: - type: Transform pos: 4.5,12.5 parent: 1 - - uid: 132 + - uid: 133 components: - type: Transform pos: -3.5,12.5 parent: 1 - - uid: 133 + - uid: 134 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 parent: 1 - - uid: 134 + - uid: 135 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,2.5 parent: 1 - - uid: 135 + - uid: 136 components: - type: Transform rot: -1.5707963267948966 rad @@ -1948,1090 +2145,1085 @@ entities: parent: 1 - proto: CableApcExtension entities: - - uid: 136 + - uid: 137 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 137 + - uid: 138 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 138 + - uid: 139 components: - type: Transform pos: -4.5,12.5 parent: 1 - - uid: 139 + - uid: 140 components: - type: Transform pos: 2.5,-20.5 parent: 1 - - uid: 140 + - uid: 141 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 141 + - uid: 142 components: - type: Transform pos: 7.5,5.5 parent: 1 - - uid: 142 + - uid: 143 components: - type: Transform pos: -1.5,-20.5 parent: 1 - - uid: 143 + - uid: 144 components: - type: Transform pos: -7.5,6.5 parent: 1 - - uid: 144 + - uid: 145 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 145 + - uid: 146 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 146 + - uid: 147 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 147 + - uid: 148 components: - type: Transform pos: -1.5,-19.5 parent: 1 - - uid: 148 + - uid: 149 components: - type: Transform pos: 2.5,-19.5 parent: 1 - - uid: 149 + - uid: 150 components: - type: Transform pos: -1.5,1.5 parent: 1 - - uid: 150 + - uid: 151 components: - type: Transform pos: 0.5,-9.5 parent: 1 - - uid: 151 + - uid: 152 components: - type: Transform pos: 0.5,-12.5 parent: 1 - - uid: 152 + - uid: 153 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 153 + - uid: 154 components: - type: Transform pos: 0.5,-8.5 parent: 1 - - uid: 154 + - uid: 155 components: - type: Transform pos: 1.5,-8.5 parent: 1 - - uid: 155 + - uid: 156 components: - type: Transform pos: -4.5,13.5 parent: 1 - - uid: 156 + - uid: 157 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 157 + - uid: 158 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 158 + - uid: 159 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 159 + - uid: 160 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 160 + - uid: 161 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 161 + - uid: 162 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 162 + - uid: 163 components: - type: Transform pos: 5.5,-7.5 parent: 1 - - uid: 163 + - uid: 164 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 164 + - uid: 165 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 165 + - uid: 166 components: - type: Transform pos: 6.5,-2.5 parent: 1 - - uid: 166 + - uid: 167 components: - type: Transform pos: 7.5,-2.5 parent: 1 - - uid: 167 + - uid: 168 components: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 168 + - uid: 169 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 169 + - uid: 170 components: - type: Transform pos: -6.5,-2.5 parent: 1 - - uid: 170 + - uid: 171 components: - type: Transform pos: 3.5,-8.5 parent: 1 - - uid: 171 + - uid: 172 components: - type: Transform pos: 2.5,-8.5 parent: 1 - - uid: 172 + - uid: 173 components: - type: Transform pos: -6.5,-1.5 parent: 1 - - uid: 173 + - uid: 174 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 174 + - uid: 175 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 175 + - uid: 176 components: - type: Transform pos: 0.5,-7.5 parent: 1 - - uid: 176 + - uid: 177 components: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 177 + - uid: 178 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 178 + - uid: 179 components: - type: Transform pos: -7.5,-2.5 parent: 1 - - uid: 179 + - uid: 180 components: - type: Transform pos: 8.5,-2.5 parent: 1 - - uid: 180 - components: - - type: Transform - pos: 0.5,8.5 - parent: 1 - uid: 181 components: - type: Transform - pos: 0.5,9.5 + pos: 0.5,8.5 parent: 1 - uid: 182 components: - type: Transform - pos: -0.5,-6.5 + pos: 0.5,9.5 parent: 1 - uid: 183 components: - type: Transform - pos: -1.5,-6.5 + pos: -0.5,-6.5 parent: 1 - uid: 184 components: - type: Transform - pos: 1.5,-6.5 + pos: -1.5,-6.5 parent: 1 - uid: 185 components: - type: Transform - pos: 2.5,-6.5 + pos: 1.5,-6.5 parent: 1 - uid: 186 components: - type: Transform - pos: 0.5,10.5 + pos: 2.5,-6.5 parent: 1 - uid: 187 components: - type: Transform - pos: -0.5,10.5 + pos: 0.5,10.5 parent: 1 - uid: 188 components: - type: Transform - pos: -4.5,-8.5 + pos: -0.5,10.5 parent: 1 - uid: 189 components: - type: Transform - pos: -3.5,-8.5 + pos: -4.5,-8.5 parent: 1 - uid: 190 components: - type: Transform - pos: -5.5,-8.5 + pos: -3.5,-8.5 parent: 1 - uid: 191 components: - type: Transform - pos: -5.5,-7.5 + pos: -5.5,-8.5 parent: 1 - uid: 192 components: - type: Transform - pos: -3.5,-9.5 + pos: -5.5,-7.5 parent: 1 - uid: 193 components: - type: Transform - pos: -3.5,-10.5 + pos: -3.5,-9.5 parent: 1 - uid: 194 components: - type: Transform - pos: -3.5,-11.5 + pos: -3.5,-10.5 parent: 1 - uid: 195 components: - type: Transform - pos: -4.5,-11.5 + pos: -3.5,-11.5 parent: 1 - uid: 196 components: - type: Transform - pos: -3.5,-7.5 + pos: -4.5,-11.5 parent: 1 - uid: 197 components: - type: Transform - pos: 7.5,-9.5 + pos: -3.5,-7.5 parent: 1 - uid: 198 components: - type: Transform - pos: 6.5,-9.5 + pos: 7.5,-9.5 parent: 1 - uid: 199 components: - type: Transform - pos: 5.5,-9.5 + pos: 6.5,-9.5 parent: 1 - uid: 200 components: - type: Transform - pos: 4.5,-9.5 + pos: 5.5,-9.5 parent: 1 - uid: 201 components: - type: Transform - pos: 5.5,-8.5 + pos: 4.5,-9.5 parent: 1 - uid: 202 components: - type: Transform - pos: 4.5,-7.5 + pos: 5.5,-8.5 parent: 1 - uid: 203 components: - type: Transform - pos: 5.5,-10.5 + pos: 4.5,-7.5 parent: 1 - uid: 204 components: - type: Transform - pos: 5.5,-11.5 + pos: 5.5,-10.5 parent: 1 - uid: 205 components: - type: Transform - pos: 6.5,-11.5 + pos: 5.5,-11.5 parent: 1 - uid: 206 components: - type: Transform - pos: 0.5,-13.5 + pos: 6.5,-11.5 parent: 1 - uid: 207 components: - type: Transform - pos: 0.5,-14.5 + pos: 0.5,-13.5 parent: 1 - uid: 208 components: - type: Transform - pos: 0.5,-15.5 + pos: 0.5,-14.5 parent: 1 - uid: 209 components: - type: Transform - pos: 0.5,-16.5 + pos: 0.5,-15.5 parent: 1 - uid: 210 components: - type: Transform - pos: 0.5,-17.5 + pos: 0.5,-16.5 parent: 1 - uid: 211 components: - type: Transform - pos: 1.5,-16.5 + pos: 0.5,-17.5 parent: 1 - uid: 212 components: - type: Transform - pos: 2.5,-16.5 + pos: 1.5,-16.5 parent: 1 - uid: 213 components: - type: Transform - pos: 3.5,-16.5 + pos: 2.5,-16.5 parent: 1 - uid: 214 components: - type: Transform - pos: 4.5,-16.5 + pos: 3.5,-16.5 parent: 1 - uid: 215 components: - type: Transform - pos: -0.5,-16.5 + pos: 4.5,-16.5 parent: 1 - uid: 216 components: - type: Transform - pos: -1.5,-16.5 + pos: -0.5,-16.5 parent: 1 - uid: 217 components: - type: Transform - pos: -2.5,-16.5 + pos: -1.5,-16.5 parent: 1 - uid: 218 components: - type: Transform - pos: -3.5,-16.5 + pos: -2.5,-16.5 parent: 1 - uid: 219 components: - type: Transform - pos: 0.5,-18.5 + pos: -3.5,-16.5 parent: 1 - uid: 220 components: - type: Transform - pos: 0.5,-19.5 + pos: 0.5,-18.5 parent: 1 - uid: 221 components: - type: Transform - pos: 1.5,-19.5 + pos: 0.5,-19.5 parent: 1 - uid: 222 components: - type: Transform - pos: -0.5,-19.5 + pos: 1.5,-19.5 parent: 1 - uid: 223 components: - type: Transform - pos: -0.5,-18.5 + pos: -0.5,-19.5 parent: 1 - uid: 224 components: - type: Transform - pos: -1.5,-18.5 + pos: -0.5,-18.5 parent: 1 - uid: 225 components: - type: Transform - pos: -2.5,-18.5 + pos: -1.5,-18.5 parent: 1 - uid: 226 components: - type: Transform - pos: -3.5,-18.5 + pos: -2.5,-18.5 parent: 1 - uid: 227 components: - type: Transform - pos: 1.5,-18.5 + pos: -3.5,-18.5 parent: 1 - uid: 228 components: - type: Transform - pos: 2.5,-18.5 + pos: 1.5,-18.5 parent: 1 - uid: 229 components: - type: Transform - pos: 3.5,-18.5 + pos: 2.5,-18.5 parent: 1 - uid: 230 components: - type: Transform - pos: 4.5,-18.5 + pos: 3.5,-18.5 parent: 1 - uid: 231 components: - type: Transform - pos: 1.5,-14.5 + pos: 4.5,-18.5 parent: 1 - uid: 232 components: - type: Transform - pos: 2.5,-14.5 + pos: 1.5,-14.5 parent: 1 - uid: 233 components: - type: Transform - pos: 3.5,-14.5 + pos: 2.5,-14.5 parent: 1 - uid: 234 components: - type: Transform - pos: 4.5,-14.5 + pos: 3.5,-14.5 parent: 1 - uid: 235 components: - type: Transform - pos: 5.5,-14.5 + pos: 4.5,-14.5 parent: 1 - uid: 236 components: - type: Transform - pos: 5.5,-13.5 + pos: 5.5,-14.5 parent: 1 - uid: 237 components: - type: Transform - pos: -0.5,-14.5 + pos: 5.5,-13.5 parent: 1 - uid: 238 components: - type: Transform - pos: -1.5,-14.5 + pos: -0.5,-14.5 parent: 1 - uid: 239 components: - type: Transform - pos: -2.5,-14.5 + pos: -1.5,-14.5 parent: 1 - uid: 240 components: - type: Transform - pos: -3.5,-14.5 + pos: -2.5,-14.5 parent: 1 - uid: 241 components: - type: Transform - pos: -4.5,-14.5 + pos: -3.5,-14.5 parent: 1 - uid: 242 components: - type: Transform - pos: -4.5,-13.5 + pos: -4.5,-14.5 parent: 1 - uid: 243 components: - type: Transform - pos: 8.5,-9.5 + pos: -4.5,-13.5 parent: 1 - uid: 244 components: - type: Transform - pos: 8.5,-8.5 + pos: 8.5,-9.5 parent: 1 - uid: 245 components: - type: Transform - pos: -6.5,-8.5 + pos: -7.5,-10.5 parent: 1 - uid: 246 components: - type: Transform - pos: -7.5,-8.5 + pos: -6.5,-8.5 parent: 1 - uid: 247 components: - type: Transform - pos: -7.5,-9.5 + pos: -6.5,-9.5 parent: 1 - uid: 248 components: - type: Transform - pos: -5.5,-8.5 + pos: -7.5,-9.5 parent: 1 - uid: 249 components: - type: Transform - pos: -2.5,-2.5 + pos: -5.5,-8.5 parent: 1 - uid: 250 components: - type: Transform - pos: -2.5,-3.5 + pos: -2.5,-2.5 parent: 1 - uid: 251 components: - type: Transform - pos: -2.5,-4.5 + pos: -2.5,-3.5 parent: 1 - uid: 252 components: - type: Transform - pos: -3.5,-4.5 + pos: -2.5,-4.5 parent: 1 - uid: 253 components: - type: Transform - pos: -4.5,-4.5 + pos: -3.5,-4.5 parent: 1 - uid: 254 components: - type: Transform - pos: -4.5,-5.5 + pos: -4.5,-4.5 parent: 1 - uid: 255 components: - type: Transform - pos: -5.5,-5.5 + pos: -4.5,-5.5 parent: 1 - uid: 256 components: - type: Transform - pos: -6.5,-5.5 + pos: -5.5,-5.5 parent: 1 - uid: 257 components: - type: Transform - pos: -7.5,-5.5 + pos: -6.5,-5.5 parent: 1 - uid: 258 components: - type: Transform - pos: -4.5,-3.5 + pos: -7.5,-5.5 parent: 1 - uid: 259 components: - type: Transform - pos: -5.5,-3.5 + pos: -4.5,-3.5 parent: 1 - uid: 260 components: - type: Transform - pos: -6.5,-3.5 + pos: -5.5,-3.5 parent: 1 - uid: 261 components: - type: Transform - pos: -1.5,-4.5 + pos: -6.5,-3.5 parent: 1 - uid: 262 components: - type: Transform - pos: -0.5,-4.5 + pos: -1.5,-4.5 parent: 1 - uid: 263 components: - type: Transform - pos: 0.5,-4.5 + pos: -0.5,-4.5 parent: 1 - uid: 264 components: - type: Transform - pos: 1.5,-4.5 + pos: 0.5,-4.5 parent: 1 - uid: 265 components: - type: Transform - pos: 2.5,-4.5 + pos: 1.5,-4.5 parent: 1 - uid: 266 components: - type: Transform - pos: 3.5,-4.5 + pos: 2.5,-4.5 parent: 1 - uid: 267 components: - type: Transform - pos: 4.5,-4.5 + pos: 3.5,-4.5 parent: 1 - uid: 268 components: - type: Transform - pos: 5.5,-4.5 + pos: 4.5,-4.5 parent: 1 - uid: 269 components: - type: Transform - pos: 5.5,-5.5 + pos: 5.5,-4.5 parent: 1 - uid: 270 components: - type: Transform - pos: 6.5,-5.5 + pos: 5.5,-5.5 parent: 1 - uid: 271 components: - type: Transform - pos: 7.5,-5.5 + pos: 6.5,-5.5 parent: 1 - uid: 272 components: - type: Transform - pos: 8.5,-5.5 + pos: 7.5,-5.5 parent: 1 - uid: 273 components: - type: Transform - pos: 5.5,-3.5 + pos: 8.5,-5.5 parent: 1 - uid: 274 components: - type: Transform - pos: 6.5,-3.5 + pos: 5.5,-3.5 parent: 1 - uid: 275 components: - type: Transform - pos: 7.5,-3.5 + pos: 6.5,-3.5 parent: 1 - uid: 276 components: - type: Transform - pos: 5.5,-2.5 + pos: 7.5,-3.5 parent: 1 - uid: 277 components: - type: Transform - pos: 5.5,-1.5 + pos: 5.5,-2.5 parent: 1 - uid: 278 components: - type: Transform - pos: 5.5,-0.5 + pos: 5.5,-1.5 parent: 1 - uid: 279 components: - type: Transform - pos: 6.5,-0.5 + pos: 5.5,-0.5 parent: 1 - uid: 280 components: - type: Transform - pos: 7.5,-0.5 + pos: 6.5,-0.5 parent: 1 - uid: 281 components: - type: Transform - pos: 7.5,0.5 + pos: 7.5,-0.5 parent: 1 - uid: 282 components: - type: Transform - pos: -4.5,-2.5 + pos: 7.5,0.5 parent: 1 - uid: 283 components: - type: Transform - pos: -4.5,-1.5 + pos: -4.5,-2.5 parent: 1 - uid: 284 components: - type: Transform - pos: -4.5,-0.5 + pos: -4.5,-1.5 parent: 1 - uid: 285 components: - type: Transform - pos: -5.5,-0.5 + pos: -4.5,-0.5 parent: 1 - uid: 286 components: - type: Transform - pos: -6.5,-0.5 + pos: -5.5,-0.5 parent: 1 - uid: 287 components: - type: Transform - pos: -6.5,0.5 + pos: -6.5,-0.5 parent: 1 - uid: 288 components: - type: Transform - pos: 2.5,1.5 + pos: -6.5,0.5 parent: 1 - uid: 289 components: - type: Transform - pos: 2.5,0.5 + pos: 2.5,1.5 parent: 1 - uid: 290 components: - type: Transform - pos: 2.5,-0.5 + pos: 2.5,0.5 parent: 1 - uid: 291 components: - type: Transform - pos: 2.5,-1.5 + pos: 2.5,-0.5 parent: 1 - uid: 292 components: - type: Transform - pos: 1.5,-1.5 + pos: 2.5,-1.5 parent: 1 - uid: 293 components: - type: Transform - pos: 0.5,-1.5 + pos: 1.5,-1.5 parent: 1 - uid: 294 components: - type: Transform - pos: -0.5,-1.5 + pos: 0.5,-1.5 parent: 1 - uid: 295 components: - type: Transform - pos: -1.5,-1.5 + pos: -0.5,-1.5 parent: 1 - uid: 296 components: - type: Transform - pos: 0.5,-0.5 + pos: -1.5,-1.5 parent: 1 - uid: 297 components: - type: Transform - pos: 0.5,0.5 + pos: 0.5,-0.5 parent: 1 - uid: 298 components: - type: Transform - pos: 0.5,1.5 + pos: 0.5,0.5 parent: 1 - uid: 299 components: - type: Transform - pos: -0.5,1.5 + pos: 0.5,1.5 parent: 1 - uid: 300 components: - type: Transform - pos: 1.5,1.5 + pos: -0.5,1.5 parent: 1 - uid: 301 components: - type: Transform - pos: -1.5,0.5 + pos: 1.5,1.5 parent: 1 - uid: 302 components: - type: Transform - pos: -1.5,-0.5 + pos: -1.5,0.5 parent: 1 - uid: 303 components: - type: Transform - pos: -1.5,10.5 + pos: -1.5,-0.5 parent: 1 - uid: 304 components: - type: Transform - pos: 5.5,0.5 + pos: -1.5,10.5 parent: 1 - uid: 305 components: - type: Transform - pos: -4.5,0.5 + pos: 5.5,0.5 parent: 1 - uid: 306 components: - type: Transform - pos: -3.5,10.5 + pos: -4.5,0.5 parent: 1 - uid: 307 components: - type: Transform - pos: -3.5,9.5 + pos: -3.5,10.5 parent: 1 - uid: 308 components: - type: Transform - pos: -3.5,8.5 + pos: -3.5,9.5 parent: 1 - uid: 309 components: - type: Transform - pos: -3.5,7.5 + pos: -3.5,8.5 parent: 1 - uid: 310 components: - type: Transform - pos: -4.5,8.5 + pos: -3.5,7.5 parent: 1 - uid: 311 components: - type: Transform - pos: -2.5,8.5 + pos: -4.5,8.5 parent: 1 - uid: 312 components: - type: Transform - pos: -2.5,10.5 + pos: -2.5,8.5 parent: 1 - uid: 313 components: - type: Transform - pos: -2.5,11.5 + pos: -2.5,10.5 parent: 1 - uid: 314 components: - type: Transform - pos: -2.5,12.5 + pos: -2.5,11.5 parent: 1 - uid: 315 components: - type: Transform - pos: -2.5,13.5 + pos: -2.5,12.5 parent: 1 - uid: 316 components: - type: Transform - pos: -4.5,7.5 + pos: -2.5,13.5 parent: 1 - uid: 317 components: - type: Transform - pos: -5.5,7.5 + pos: -4.5,7.5 parent: 1 - uid: 318 components: - type: Transform - pos: -6.5,7.5 + pos: -5.5,7.5 parent: 1 - uid: 319 components: - type: Transform - pos: 4.5,10.5 + pos: -6.5,7.5 parent: 1 - uid: 320 components: - type: Transform - pos: 4.5,9.5 + pos: 4.5,10.5 parent: 1 - uid: 321 components: - type: Transform - pos: 4.5,8.5 + pos: 4.5,9.5 parent: 1 - uid: 322 components: - type: Transform - pos: 4.5,7.5 + pos: 4.5,8.5 parent: 1 - uid: 323 components: - type: Transform - pos: 3.5,7.5 + pos: 4.5,7.5 parent: 1 - uid: 324 components: - type: Transform - pos: 5.5,8.5 + pos: 3.5,7.5 parent: 1 - uid: 325 components: - type: Transform - pos: 6.5,8.5 + pos: 5.5,8.5 parent: 1 - uid: 326 components: - type: Transform - pos: 6.5,7.5 + pos: 6.5,8.5 parent: 1 - uid: 327 components: - type: Transform - pos: 7.5,7.5 + pos: 6.5,7.5 parent: 1 - uid: 328 components: - type: Transform - pos: 3.5,11.5 + pos: 7.5,7.5 parent: 1 - uid: 329 components: - type: Transform - pos: 3.5,12.5 + pos: 3.5,11.5 parent: 1 - uid: 330 components: - type: Transform - pos: 3.5,13.5 + pos: 3.5,12.5 parent: 1 - uid: 331 components: - type: Transform - pos: 4.5,11.5 + pos: 3.5,13.5 parent: 1 - uid: 332 components: - type: Transform - pos: -3.5,11.5 + pos: 4.5,11.5 parent: 1 - uid: 333 components: - type: Transform - pos: -6.5,5.5 + pos: -3.5,11.5 parent: 1 - uid: 334 components: - type: Transform - pos: -5.5,5.5 + pos: -6.5,5.5 parent: 1 - uid: 335 components: - type: Transform - pos: -4.5,5.5 + pos: -5.5,5.5 parent: 1 - uid: 336 components: - type: Transform - pos: -3.5,5.5 + pos: -4.5,5.5 parent: 1 - uid: 337 components: - type: Transform - pos: -2.5,5.5 + pos: -3.5,5.5 parent: 1 - uid: 338 components: - type: Transform - pos: -1.5,5.5 + pos: -2.5,5.5 parent: 1 - uid: 339 components: - type: Transform - pos: -0.5,5.5 + pos: -1.5,5.5 parent: 1 - uid: 340 components: - type: Transform - pos: 0.5,5.5 + pos: -0.5,5.5 parent: 1 - uid: 341 components: - type: Transform - pos: 1.5,5.5 + pos: 0.5,5.5 parent: 1 - uid: 342 components: - type: Transform - pos: 2.5,5.5 + pos: 1.5,5.5 parent: 1 - uid: 343 components: - type: Transform - pos: 3.5,5.5 + pos: 2.5,5.5 parent: 1 - uid: 344 components: - type: Transform - pos: 4.5,5.5 + pos: 3.5,5.5 parent: 1 - uid: 345 components: - type: Transform - pos: 5.5,5.5 + pos: 4.5,5.5 parent: 1 - uid: 346 components: - type: Transform - pos: 6.5,5.5 + pos: 5.5,5.5 parent: 1 - uid: 347 components: - type: Transform - pos: 6.5,4.5 + pos: 6.5,5.5 parent: 1 - uid: 348 components: - type: Transform - pos: 6.5,3.5 + pos: 6.5,4.5 parent: 1 - uid: 349 components: - type: Transform - pos: 6.5,2.5 + pos: 6.5,3.5 parent: 1 - uid: 350 components: - type: Transform - pos: 5.5,4.5 + pos: 6.5,2.5 parent: 1 - uid: 351 components: - type: Transform - pos: 5.5,3.5 + pos: 5.5,4.5 parent: 1 - uid: 352 components: - type: Transform - pos: 5.5,2.5 + pos: 5.5,3.5 parent: 1 - uid: 353 components: @@ -3041,735 +3233,790 @@ entities: - uid: 354 components: - type: Transform - pos: 4.5,2.5 + pos: 5.5,2.5 parent: 1 - uid: 355 components: - type: Transform - pos: 3.5,2.5 + pos: 4.5,2.5 parent: 1 - uid: 356 components: - type: Transform - pos: 3.5,3.5 + pos: 3.5,2.5 parent: 1 - uid: 357 components: - type: Transform - pos: 2.5,3.5 + pos: 3.5,3.5 parent: 1 - uid: 358 components: - type: Transform - pos: 1.5,3.5 + pos: 2.5,3.5 parent: 1 - uid: 359 components: - type: Transform - pos: 0.5,3.5 + pos: 1.5,3.5 parent: 1 - uid: 360 components: - type: Transform - pos: -0.5,3.5 + pos: 0.5,3.5 parent: 1 - uid: 361 components: - type: Transform - pos: -1.5,3.5 + pos: -0.5,3.5 parent: 1 - uid: 362 components: - type: Transform - pos: -2.5,3.5 + pos: -1.5,3.5 parent: 1 - uid: 363 components: - type: Transform - pos: -3.5,3.5 + pos: -2.5,3.5 parent: 1 - uid: 364 components: - type: Transform - pos: -4.5,3.5 + pos: -3.5,3.5 parent: 1 - uid: 365 components: - type: Transform - pos: -5.5,3.5 + pos: -4.5,3.5 parent: 1 - uid: 366 components: - type: Transform - pos: -5.5,2.5 + pos: -5.5,3.5 parent: 1 - uid: 367 components: - type: Transform - pos: -5.5,4.5 + pos: -5.5,2.5 parent: 1 - uid: 368 components: - type: Transform - pos: 0.5,4.5 + pos: -5.5,4.5 parent: 1 - uid: 369 components: - type: Transform - pos: 0.5,6.5 + pos: 0.5,4.5 parent: 1 - uid: 370 components: - type: Transform - pos: 0.5,7.5 + pos: 0.5,6.5 parent: 1 - uid: 371 components: - type: Transform - pos: 0.5,8.5 + pos: 0.5,7.5 parent: 1 - uid: 372 components: - type: Transform - pos: 1.5,8.5 + pos: 0.5,8.5 parent: 1 - uid: 373 components: - type: Transform - pos: -0.5,8.5 + pos: 1.5,8.5 parent: 1 - uid: 374 components: - type: Transform - pos: 1.5,10.5 + pos: -0.5,8.5 parent: 1 - uid: 375 components: - type: Transform - pos: 2.5,10.5 + pos: 1.5,10.5 parent: 1 - uid: 376 components: - type: Transform - pos: 2.5,11.5 + pos: 2.5,10.5 parent: 1 - uid: 377 components: - type: Transform - pos: -1.5,11.5 + pos: 2.5,11.5 parent: 1 - uid: 378 components: - type: Transform - pos: -5.5,-13.5 + pos: -1.5,11.5 parent: 1 - uid: 379 components: - type: Transform - pos: -6.5,-13.5 + pos: -5.5,-13.5 parent: 1 - uid: 380 components: - type: Transform - pos: 6.5,-13.5 + pos: -6.5,-13.5 parent: 1 - uid: 381 components: - type: Transform - pos: 7.5,-13.5 + pos: 6.5,-13.5 parent: 1 - uid: 382 components: - type: Transform - pos: 6.5,9.5 + pos: 7.5,-13.5 parent: 1 - uid: 383 components: - type: Transform - pos: 6.5,10.5 + pos: 6.5,9.5 parent: 1 - uid: 384 components: - type: Transform - pos: -5.5,8.5 + pos: 6.5,10.5 parent: 1 - uid: 385 components: - type: Transform - pos: -5.5,9.5 + pos: -5.5,8.5 parent: 1 - uid: 386 components: - type: Transform - pos: -5.5,10.5 + pos: -5.5,9.5 parent: 1 -- proto: CableHV - entities: - uid: 387 components: - type: Transform - pos: -1.5,-11.5 + pos: -5.5,10.5 parent: 1 - uid: 388 components: - type: Transform - pos: -1.5,-10.5 + pos: -6.5,-10.5 parent: 1 - uid: 389 components: - type: Transform - pos: -1.5,-12.5 + pos: -5.5,-9.5 parent: 1 - uid: 390 components: - type: Transform - pos: -1.5,-14.5 + pos: -4.5,-9.5 parent: 1 - uid: 391 components: - type: Transform - pos: -0.5,-14.5 + pos: -3.5,-9.5 parent: 1 - uid: 392 components: - type: Transform - pos: -1.5,-13.5 + pos: -2.5,-9.5 parent: 1 - uid: 393 components: - type: Transform - pos: 0.5,-14.5 + pos: 7.5,-9.5 parent: 1 - uid: 394 components: - type: Transform - pos: 0.5,-15.5 + pos: 7.5,-10.5 parent: 1 - uid: 395 components: - type: Transform - pos: -0.5,-10.5 + pos: 8.5,-10.5 parent: 1 - uid: 396 components: - type: Transform - pos: 0.5,-16.5 + pos: 6.5,-9.5 parent: 1 - uid: 397 components: - type: Transform - pos: 1.5,-16.5 + pos: 5.5,-9.5 parent: 1 +- proto: CableHV + entities: - uid: 398 components: - type: Transform - pos: 2.5,-16.5 + pos: -1.5,-11.5 parent: 1 - uid: 399 components: - type: Transform - pos: 3.5,-16.5 + pos: -1.5,-10.5 parent: 1 - uid: 400 components: - type: Transform - pos: 4.5,-16.5 + pos: -1.5,-12.5 parent: 1 - uid: 401 components: - type: Transform - pos: -0.5,-16.5 + pos: -1.5,-14.5 parent: 1 - uid: 402 components: - type: Transform - pos: -1.5,-16.5 + pos: -0.5,-14.5 parent: 1 - uid: 403 components: - type: Transform - pos: -2.5,-16.5 + pos: -1.5,-13.5 parent: 1 - uid: 404 components: - type: Transform - pos: -3.5,-16.5 + pos: 0.5,-14.5 parent: 1 -- proto: CableMV - entities: - uid: 405 components: - type: Transform - pos: -3.5,-15.5 + pos: 0.5,-15.5 parent: 1 - uid: 406 components: - type: Transform - pos: 0.5,-14.5 + pos: -0.5,-10.5 parent: 1 - uid: 407 components: - type: Transform - pos: -0.5,-15.5 + pos: 0.5,-16.5 parent: 1 - uid: 408 components: - type: Transform - pos: 3.5,0.5 + pos: 1.5,-16.5 parent: 1 - uid: 409 components: - type: Transform - pos: -1.5,-15.5 + pos: 2.5,-16.5 parent: 1 - uid: 410 components: - type: Transform - pos: 0.5,-13.5 + pos: 3.5,-16.5 parent: 1 - uid: 411 components: - type: Transform - pos: 1.5,-14.5 + pos: 4.5,-16.5 parent: 1 - uid: 412 components: - type: Transform - pos: 2.5,-14.5 + pos: -0.5,-16.5 parent: 1 - uid: 413 components: - type: Transform - pos: 3.5,-14.5 + pos: -1.5,-16.5 parent: 1 - uid: 414 components: - type: Transform - pos: 4.5,-14.5 + pos: -2.5,-16.5 parent: 1 - uid: 415 components: - type: Transform - pos: 4.5,-13.5 + pos: -3.5,-16.5 parent: 1 +- proto: CableMV + entities: - uid: 416 components: - type: Transform - pos: 4.5,-12.5 + pos: -3.5,-15.5 parent: 1 - uid: 417 components: - type: Transform - pos: 4.5,-11.5 + pos: 0.5,-14.5 parent: 1 - uid: 418 components: - type: Transform - pos: 4.5,-10.5 + pos: -0.5,-15.5 parent: 1 - uid: 419 components: - type: Transform - pos: 4.5,-9.5 + pos: 3.5,0.5 parent: 1 - uid: 420 components: - type: Transform - pos: 5.5,-9.5 + pos: -1.5,-15.5 parent: 1 - uid: 421 components: - type: Transform - pos: 6.5,-9.5 + pos: 0.5,-13.5 parent: 1 - uid: 422 components: - type: Transform - pos: 7.5,-9.5 + pos: 1.5,-14.5 parent: 1 - uid: 423 components: - type: Transform - pos: 4.5,-8.5 + pos: 2.5,-14.5 parent: 1 - uid: 424 components: - type: Transform - pos: 4.5,-7.5 + pos: 3.5,-14.5 parent: 1 - uid: 425 components: - type: Transform - pos: 4.5,-6.5 + pos: 4.5,-14.5 parent: 1 - uid: 426 components: - type: Transform - pos: 4.5,-5.5 + pos: 4.5,-13.5 parent: 1 - uid: 427 components: - type: Transform - pos: 4.5,-4.5 + pos: 4.5,-12.5 parent: 1 - uid: 428 components: - type: Transform - pos: 3.5,-4.5 + pos: 4.5,-11.5 parent: 1 - uid: 429 components: - type: Transform - pos: 2.5,-4.5 + pos: 4.5,-10.5 parent: 1 - uid: 430 components: - type: Transform - pos: 1.5,-4.5 + pos: 4.5,-9.5 parent: 1 - uid: 431 components: - type: Transform - pos: 0.5,-4.5 + pos: 5.5,-9.5 parent: 1 - uid: 432 components: - type: Transform - pos: -0.5,-4.5 + pos: 6.5,-9.5 parent: 1 - uid: 433 components: - type: Transform - pos: -1.5,-4.5 + pos: 7.5,-9.5 parent: 1 - uid: 434 components: - type: Transform - pos: -2.5,-4.5 + pos: 4.5,-8.5 parent: 1 - uid: 435 components: - type: Transform - pos: -3.5,-4.5 + pos: 4.5,-7.5 parent: 1 - uid: 436 components: - type: Transform - pos: -3.5,-5.5 + pos: 4.5,-6.5 parent: 1 - uid: 437 components: - type: Transform - pos: -3.5,-6.5 + pos: 4.5,-5.5 parent: 1 - uid: 438 components: - type: Transform - pos: -3.5,-7.5 + pos: 4.5,-4.5 parent: 1 - uid: 439 components: - type: Transform - pos: -3.5,-8.5 + pos: 3.5,-4.5 parent: 1 - uid: 440 components: - type: Transform - pos: -3.5,-9.5 + pos: 2.5,-4.5 parent: 1 - uid: 441 components: - type: Transform - pos: -3.5,-10.5 + pos: 1.5,-4.5 parent: 1 - uid: 442 components: - type: Transform - pos: -3.5,-11.5 + pos: 0.5,-4.5 parent: 1 - uid: 443 components: - type: Transform - pos: -3.5,-12.5 + pos: -0.5,-4.5 parent: 1 - uid: 444 components: - type: Transform - pos: -3.5,-13.5 + pos: -1.5,-4.5 parent: 1 - uid: 445 components: - type: Transform - pos: -3.5,-14.5 + pos: -2.5,-4.5 parent: 1 - uid: 446 components: - type: Transform - pos: -2.5,-14.5 + pos: -3.5,-4.5 parent: 1 - uid: 447 components: - type: Transform - pos: -1.5,-14.5 + pos: -3.5,-5.5 parent: 1 - uid: 448 components: - type: Transform - pos: -0.5,-14.5 + pos: -3.5,-6.5 parent: 1 - uid: 449 components: - type: Transform - pos: -4.5,-8.5 + pos: -3.5,-7.5 parent: 1 - uid: 450 components: - type: Transform - pos: -2.5,-3.5 + pos: -3.5,-8.5 parent: 1 - uid: 451 components: - type: Transform - pos: -2.5,-2.5 + pos: -3.5,-9.5 parent: 1 - uid: 452 components: - type: Transform - pos: 2.5,-3.5 + pos: -3.5,-10.5 parent: 1 - uid: 453 components: - type: Transform - pos: 2.5,-2.5 + pos: -3.5,-11.5 parent: 1 - uid: 454 components: - type: Transform - pos: 2.5,-1.5 + pos: -3.5,-12.5 parent: 1 - uid: 455 components: - type: Transform - pos: 2.5,-0.5 + pos: -3.5,-13.5 parent: 1 - uid: 456 components: - type: Transform - pos: 2.5,0.5 + pos: -3.5,-14.5 parent: 1 - uid: 457 components: - type: Transform - pos: 5.5,-4.5 + pos: -2.5,-14.5 parent: 1 - uid: 458 components: - type: Transform - pos: 5.5,-3.5 + pos: -1.5,-14.5 parent: 1 - uid: 459 components: - type: Transform - pos: 5.5,-2.5 + pos: -0.5,-14.5 parent: 1 - uid: 460 components: - type: Transform - pos: 5.5,-1.5 + pos: -4.5,-8.5 parent: 1 - uid: 461 components: - type: Transform - pos: 5.5,-0.5 + pos: -2.5,-3.5 parent: 1 - uid: 462 components: - type: Transform - pos: 5.5,0.5 + pos: -2.5,-2.5 parent: 1 - uid: 463 components: - type: Transform - pos: 5.5,1.5 + pos: 2.5,-3.5 parent: 1 - uid: 464 components: - type: Transform - pos: 5.5,2.5 + pos: 2.5,-2.5 parent: 1 - uid: 465 components: - type: Transform - pos: 5.5,3.5 + pos: 2.5,-1.5 parent: 1 - uid: 466 components: - type: Transform - pos: 5.5,4.5 + pos: 2.5,-0.5 parent: 1 - uid: 467 components: - type: Transform - pos: 5.5,5.5 + pos: 2.5,0.5 parent: 1 - uid: 468 components: - type: Transform - pos: 5.5,6.5 + pos: 5.5,-4.5 parent: 1 - uid: 469 components: - type: Transform - pos: 5.5,7.5 + pos: 5.5,-3.5 parent: 1 - uid: 470 components: - type: Transform - pos: 5.5,8.5 + pos: 5.5,-2.5 parent: 1 - uid: 471 components: - type: Transform - pos: 4.5,8.5 + pos: 5.5,-1.5 parent: 1 - uid: 472 components: - type: Transform - pos: 4.5,9.5 + pos: 5.5,-0.5 parent: 1 - uid: 473 components: - type: Transform - pos: 4.5,10.5 + pos: 5.5,0.5 parent: 1 - uid: 474 components: - type: Transform - pos: -4.5,-2.5 + pos: 5.5,1.5 parent: 1 - uid: 475 components: - type: Transform - pos: -4.5,-3.5 + pos: 5.5,2.5 parent: 1 - uid: 476 components: - type: Transform - pos: -4.5,-4.5 + pos: 5.5,3.5 parent: 1 - uid: 477 components: - type: Transform - pos: -4.5,-1.5 + pos: 5.5,4.5 parent: 1 - uid: 478 components: - type: Transform - pos: -4.5,-0.5 + pos: 5.5,5.5 parent: 1 - uid: 479 components: - type: Transform - pos: -4.5,0.5 + pos: 5.5,6.5 parent: 1 - uid: 480 components: - type: Transform - pos: -4.5,1.5 + pos: 5.5,7.5 parent: 1 - uid: 481 components: - type: Transform - pos: -4.5,2.5 + pos: 5.5,8.5 parent: 1 - uid: 482 components: - type: Transform - pos: -4.5,3.5 + pos: 4.5,8.5 parent: 1 - uid: 483 components: - type: Transform - pos: -4.5,4.5 + pos: 4.5,9.5 parent: 1 - uid: 484 components: - type: Transform - pos: -4.5,5.5 + pos: 4.5,10.5 parent: 1 - uid: 485 components: - type: Transform - pos: -5.5,5.5 + pos: -4.5,-2.5 parent: 1 - uid: 486 components: - type: Transform - pos: -6.5,5.5 + pos: -4.5,-3.5 parent: 1 - uid: 487 components: - type: Transform - pos: -3.5,5.5 + pos: -4.5,-4.5 parent: 1 - uid: 488 components: - type: Transform - pos: -3.5,6.5 + pos: -4.5,-1.5 parent: 1 - uid: 489 components: - type: Transform - pos: -3.5,7.5 + pos: -4.5,-0.5 parent: 1 - uid: 490 components: - type: Transform - pos: -3.5,8.5 + pos: -4.5,0.5 parent: 1 - uid: 491 components: - type: Transform - pos: -3.5,9.5 + pos: -4.5,1.5 parent: 1 - uid: 492 components: - type: Transform - pos: -3.5,10.5 + pos: -4.5,2.5 parent: 1 - uid: 493 components: - type: Transform - pos: 2.5,-5.5 + pos: -4.5,3.5 parent: 1 - uid: 494 components: - type: Transform - pos: 2.5,-6.5 + pos: -4.5,4.5 parent: 1 - uid: 495 components: - type: Transform - pos: 2.5,-7.5 + pos: -4.5,5.5 parent: 1 - uid: 496 components: - type: Transform - pos: 2.5,-8.5 + pos: -5.5,5.5 parent: 1 - uid: 497 components: - type: Transform - pos: 3.5,-8.5 + pos: -6.5,5.5 parent: 1 - uid: 498 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 509 components: - type: Transform pos: -3.5,-16.5 parent: 1 - proto: CableTerminal entities: - - uid: 499 + - uid: 510 components: - type: Transform rot: 1.5707963267948966 rad @@ -3777,648 +4024,648 @@ entities: parent: 1 - proto: Catwalk entities: - - uid: 500 + - uid: 511 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-5.5 parent: 1 - - uid: 501 + - uid: 512 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 parent: 1 - - uid: 502 + - uid: 513 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 503 + - uid: 514 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,3.5 parent: 1 - - uid: 504 + - uid: 515 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,4.5 parent: 1 - - uid: 505 + - uid: 516 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-3.5 parent: 1 - - uid: 506 + - uid: 517 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-1.5 parent: 1 - - uid: 507 + - uid: 518 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,4.5 parent: 1 - - uid: 508 + - uid: 519 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,3.5 parent: 1 - - uid: 509 + - uid: 520 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,4.5 parent: 1 - - uid: 510 + - uid: 521 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,11.5 parent: 1 - - uid: 511 + - uid: 522 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 1 - - uid: 512 + - uid: 523 components: - type: Transform pos: -6.5,0.5 parent: 1 - - uid: 513 + - uid: 524 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-4.5 parent: 1 - - uid: 514 + - uid: 525 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-4.5 parent: 1 - - uid: 515 + - uid: 526 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,11.5 parent: 1 - - uid: 516 + - uid: 527 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 1 - - uid: 517 + - uid: 528 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-4.5 parent: 1 - - uid: 518 + - uid: 529 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-14.5 parent: 1 - - uid: 519 + - uid: 530 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,9.5 parent: 1 - - uid: 520 + - uid: 531 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-4.5 parent: 1 - - uid: 521 + - uid: 532 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 parent: 1 - - uid: 522 + - uid: 533 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-9.5 parent: 1 - - uid: 523 + - uid: 534 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-10.5 parent: 1 - - uid: 524 + - uid: 535 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-12.5 parent: 1 - - uid: 525 + - uid: 536 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-11.5 parent: 1 - - uid: 526 + - uid: 537 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 1 - - uid: 527 + - uid: 538 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-3.5 parent: 1 - - uid: 528 + - uid: 539 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-13.5 parent: 1 - - uid: 529 + - uid: 540 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,0.5 parent: 1 - - uid: 530 + - uid: 541 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - - uid: 531 + - uid: 542 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 1 - - uid: 532 + - uid: 543 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-1.5 parent: 1 - - uid: 533 + - uid: 544 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-0.5 parent: 1 - - uid: 534 + - uid: 545 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-0.5 parent: 1 - - uid: 535 + - uid: 546 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 1 - - uid: 536 + - uid: 547 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-15.5 parent: 1 - - uid: 537 + - uid: 548 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-15.5 parent: 1 - - uid: 538 + - uid: 549 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-15.5 parent: 1 - - uid: 539 + - uid: 550 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-16.5 parent: 1 - - uid: 540 + - uid: 551 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-15.5 parent: 1 - - uid: 541 + - uid: 552 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-15.5 parent: 1 - - uid: 542 + - uid: 553 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-14.5 parent: 1 - - uid: 543 + - uid: 554 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-17.5 parent: 1 - - uid: 544 + - uid: 555 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-17.5 parent: 1 - - uid: 545 + - uid: 556 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-17.5 parent: 1 - - uid: 546 + - uid: 557 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-4.5 parent: 1 - - uid: 547 + - uid: 558 components: - type: Transform pos: 4.5,-7.5 parent: 1 - - uid: 548 + - uid: 559 components: - type: Transform pos: 4.5,-8.5 parent: 1 - - uid: 549 + - uid: 560 components: - type: Transform pos: 4.5,-9.5 parent: 1 - - uid: 550 + - uid: 561 components: - type: Transform pos: 4.5,-10.5 parent: 1 - - uid: 551 + - uid: 562 components: - type: Transform pos: 4.5,-11.5 parent: 1 - - uid: 552 + - uid: 563 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,10.5 parent: 1 - - uid: 553 + - uid: 564 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-4.5 parent: 1 - - uid: 554 + - uid: 565 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-4.5 parent: 1 - - uid: 555 + - uid: 566 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 1 - - uid: 556 + - uid: 567 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-4.5 parent: 1 - - uid: 557 + - uid: 568 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-5.5 parent: 1 - - uid: 558 + - uid: 569 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-2.5 parent: 1 - - uid: 559 + - uid: 570 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-1.5 parent: 1 - - uid: 560 + - uid: 571 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,4.5 parent: 1 - - uid: 561 + - uid: 572 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,4.5 parent: 1 - - uid: 562 + - uid: 573 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,4.5 parent: 1 - - uid: 563 + - uid: 574 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,4.5 parent: 1 - - uid: 564 + - uid: 575 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,2.5 parent: 1 - - uid: 565 + - uid: 576 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,2.5 parent: 1 - - uid: 566 + - uid: 577 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,3.5 parent: 1 - - uid: 567 + - uid: 578 components: - type: Transform pos: -7.5,1.5 parent: 1 - - uid: 568 + - uid: 579 components: - type: Transform pos: -4.5,12.5 parent: 1 - - uid: 569 + - uid: 580 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 570 + - uid: 581 components: - type: Transform pos: 7.5,0.5 parent: 1 - - uid: 571 + - uid: 582 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 572 + - uid: 583 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 573 + - uid: 584 components: - type: Transform pos: -4.5,13.5 parent: 1 - - uid: 574 + - uid: 585 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,4.5 parent: 1 - - uid: 575 + - uid: 586 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 576 + - uid: 587 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-20.5 parent: 1 - - uid: 577 + - uid: 588 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-19.5 parent: 1 - - uid: 578 + - uid: 589 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-20.5 parent: 1 - - uid: 579 + - uid: 590 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-19.5 parent: 1 - - uid: 580 + - uid: 591 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,5.5 parent: 1 - - uid: 581 + - uid: 592 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,3.5 parent: 1 - - uid: 582 + - uid: 593 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,4.5 parent: 1 - - uid: 583 + - uid: 594 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,3.5 parent: 1 - - uid: 584 + - uid: 595 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,4.5 parent: 1 - - uid: 585 + - uid: 596 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,4.5 parent: 1 - - uid: 586 + - uid: 597 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,4.5 parent: 1 - - uid: 587 + - uid: 598 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,4.5 parent: 1 - - uid: 588 + - uid: 599 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,5.5 parent: 1 - - uid: 589 + - uid: 600 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 1 - - uid: 590 + - uid: 601 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,0.5 parent: 1 - - uid: 591 + - uid: 602 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,7.5 parent: 1 - - uid: 592 + - uid: 603 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 1 - - uid: 593 + - uid: 604 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - - uid: 594 + - uid: 605 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,9.5 parent: 1 - - uid: 595 + - uid: 606 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-0.5 parent: 1 - - uid: 596 + - uid: 607 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 - - uid: 597 + - uid: 608 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-0.5 parent: 1 - - uid: 598 + - uid: 609 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 1 - - uid: 599 + - uid: 610 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-10.5 parent: 1 - - uid: 600 + - uid: 611 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-11.5 parent: 1 - - uid: 601 + - uid: 612 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-11.5 parent: 1 - - uid: 602 + - uid: 613 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-10.5 parent: 1 - - uid: 603 + - uid: 614 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-8.5 parent: 1 - - uid: 604 + - uid: 615 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-7.5 parent: 1 - - uid: 605 + - uid: 616 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-13.5 parent: 1 - - uid: 606 + - uid: 617 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-14.5 parent: 1 - - uid: 607 + - uid: 618 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-15.5 parent: 1 - - uid: 608 + - uid: 619 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-14.5 parent: 1 - - uid: 609 + - uid: 620 components: - type: Transform rot: -1.5707963267948966 rad @@ -4426,13 +4673,13 @@ entities: parent: 1 - proto: ChairPilotSeat entities: - - uid: 610 + - uid: 621 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 parent: 1 - - uid: 611 + - uid: 622 components: - type: Transform rot: 3.141592653589793 rad @@ -4440,106 +4687,106 @@ entities: parent: 1 - proto: ClosetEmergencyFilledRandom entities: - - uid: 612 + - uid: 623 components: - type: Transform pos: 1.5,-3.5 parent: 1 - proto: ClosetFireFilled entities: - - uid: 613 + - uid: 624 components: - type: Transform pos: 3.5,-3.5 parent: 1 - proto: ClothingHeadHelmetNCWLEVA entities: - - uid: 45 + - uid: 46 components: - type: Transform - parent: 43 + parent: 44 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 52 + - uid: 53 components: - type: Transform - parent: 50 + parent: 51 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskBreath entities: - - uid: 46 + - uid: 47 components: - type: Transform - parent: 43 + parent: 44 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 53 + - uid: 54 components: - type: Transform - parent: 50 + parent: 51 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterNCWLEVA entities: - - uid: 47 + - uid: 48 components: - type: Transform - parent: 43 + parent: 44 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 54 + - uid: 55 components: - type: Transform - parent: 50 + parent: 51 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesBootsMag entities: - - uid: 48 + - uid: 49 components: - type: Transform - parent: 43 + parent: 44 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 55 + - uid: 56 components: - type: Transform - parent: 50 + parent: 51 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ComputerTabletopAdvancedRadar entities: - - uid: 614 + - uid: 625 components: - type: Transform pos: 0.5,0.5 parent: 1 - proto: ComputerTabletopAlert entities: - - uid: 615 + - uid: 626 components: - type: Transform pos: 2.5,1.5 parent: 1 - proto: ComputerTabletopComms entities: - - uid: 616 + - uid: 627 components: - type: Transform pos: -1.5,1.5 parent: 1 - proto: ComputerTabletopPowerMonitoring entities: - - uid: 617 + - uid: 628 components: - type: Transform rot: 1.5707963267948966 rad @@ -4547,7 +4794,7 @@ entities: parent: 1 - proto: ComputerTabletopShuttle entities: - - uid: 618 + - uid: 629 components: - type: Transform pos: -0.5,1.5 @@ -4583,7 +4830,7 @@ entities: - Module E - proto: ComputerTabletopTargeting entities: - - uid: 619 + - uid: 630 components: - type: Transform pos: 1.5,1.5 @@ -4591,40 +4838,40 @@ entities: - type: TargetingConsole cannonGroups: all: - - 98 - 99 - 100 + - 101 230mm 'Hephaeustus' assault artillery platform: - - 98 - 99 - 100 + - 101 - proto: ComputerTelevision entities: - - uid: 620 + - uid: 631 components: - type: Transform pos: 0.5,1.5 parent: 1 - proto: CrateAssaultMortarAmmo entities: - - uid: 621 + - uid: 632 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 622 + - uid: 633 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 623 + - uid: 634 components: - type: Transform pos: 2.5,5.5 parent: 1 - proto: CrateMaterials entities: - - uid: 114 + - uid: 115 components: - type: Transform pos: -2.5,7.5 @@ -4653,66 +4900,66 @@ entities: showEnts: False occludes: True ents: - - 118 - - 117 - 119 + - 118 - 120 - 121 - 122 - 123 - 124 - - 116 - 125 - - 115 + - 117 - 126 + - 116 - 127 + - 128 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateSlugthrowerAmmo entities: - - uid: 624 + - uid: 635 components: - type: Transform pos: 2.5,3.5 parent: 1 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 625 + - uid: 636 components: - type: Transform pos: 6.5,-7.5 parent: 1 - - uid: 626 + - uid: 637 components: - type: Transform pos: 6.5,-11.5 parent: 1 - proto: DefaultStationBeaconBridge entities: - - uid: 627 + - uid: 638 components: - type: Transform pos: 0.5,-0.5 parent: 1 - proto: DefibrillatorCabinetFilled entities: - - uid: 628 + - uid: 639 components: - type: Transform pos: -4.5,-9.5 parent: 1 - proto: FaxMachineShip entities: - - uid: 629 + - uid: 640 components: - type: Transform pos: -0.5,-1.5 parent: 1 - proto: FireAxeCabinetFilled entities: - - uid: 630 + - uid: 641 components: - type: Transform rot: -1.5707963267948966 rad @@ -4720,54 +4967,54 @@ entities: parent: 1 - proto: Firelock entities: - - uid: 631 + - uid: 642 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 632 + - uid: 643 components: - type: Transform pos: 4.5,-6.5 parent: 1 - - uid: 633 + - uid: 644 components: - type: Transform pos: -3.5,-6.5 parent: 1 - - uid: 634 + - uid: 645 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 635 + - uid: 646 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 636 + - uid: 647 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 637 + - uid: 648 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 638 + - uid: 649 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 639 + - uid: 650 components: - type: Transform pos: 4.5,1.5 parent: 1 - proto: GasMixer entities: - - uid: 640 + - uid: 651 components: - type: Transform rot: -1.5707963267948966 rad @@ -4775,7 +5022,7 @@ entities: parent: 1 - proto: GasPassiveVent entities: - - uid: 641 + - uid: 652 components: - type: Transform rot: -1.5707963267948966 rad @@ -4783,101 +5030,101 @@ entities: parent: 1 - proto: GasPipeBend entities: - - uid: 642 + - uid: 653 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-13.5 parent: 1 - - uid: 643 + - uid: 654 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-14.5 parent: 1 - - uid: 644 + - uid: 655 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-11.5 parent: 1 - - uid: 645 + - uid: 656 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-11.5 parent: 1 - - uid: 646 + - uid: 657 components: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 647 + - uid: 658 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 1 - - uid: 648 + - uid: 659 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-6.5 parent: 1 - - uid: 649 + - uid: 660 components: - type: Transform pos: -0.5,-5.5 parent: 1 - - uid: 650 + - uid: 661 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-4.5 parent: 1 - - uid: 651 + - uid: 662 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,5.5 parent: 1 - - uid: 652 + - uid: 663 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,3.5 parent: 1 - - uid: 653 + - uid: 664 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,8.5 parent: 1 - - uid: 654 + - uid: 665 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,8.5 parent: 1 - - uid: 655 + - uid: 666 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,9.5 parent: 1 - - uid: 656 + - uid: 667 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,7.5 parent: 1 - - uid: 657 + - uid: 668 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,7.5 parent: 1 - - uid: 658 + - uid: 669 components: - type: Transform rot: 1.5707963267948966 rad @@ -4885,380 +5132,380 @@ entities: parent: 1 - proto: GasPipeStraight entities: - - uid: 659 + - uid: 670 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 parent: 1 - - uid: 660 + - uid: 671 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-0.5 parent: 1 - - uid: 661 + - uid: 672 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,7.5 parent: 1 - - uid: 662 + - uid: 673 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-13.5 parent: 1 - - uid: 663 + - uid: 674 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-12.5 parent: 1 - - uid: 664 + - uid: 675 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-11.5 parent: 1 - - uid: 665 + - uid: 676 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-11.5 parent: 1 - - uid: 666 + - uid: 677 components: - type: Transform pos: 4.5,-10.5 parent: 1 - - uid: 667 + - uid: 678 components: - type: Transform pos: 4.5,-9.5 parent: 1 - - uid: 668 + - uid: 679 components: - type: Transform pos: 4.5,-7.5 parent: 1 - - uid: 669 + - uid: 680 components: - type: Transform pos: 4.5,-6.5 parent: 1 - - uid: 670 + - uid: 681 components: - type: Transform pos: 4.5,-5.5 parent: 1 - - uid: 671 + - uid: 682 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-4.5 parent: 1 - - uid: 672 + - uid: 683 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-4.5 parent: 1 - - uid: 673 + - uid: 684 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 674 + - uid: 685 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 675 + - uid: 686 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 676 + - uid: 687 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-0.5 parent: 1 - - uid: 677 + - uid: 688 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 678 + - uid: 689 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 679 + - uid: 690 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 680 + - uid: 691 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,3.5 parent: 1 - - uid: 681 + - uid: 692 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,3.5 parent: 1 - - uid: 682 + - uid: 693 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,4.5 parent: 1 - - uid: 683 + - uid: 694 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,6.5 parent: 1 - - uid: 684 + - uid: 695 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-4.5 parent: 1 - - uid: 685 + - uid: 696 components: - type: Transform pos: -3.5,-3.5 parent: 1 - - uid: 686 + - uid: 697 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 687 + - uid: 698 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 688 + - uid: 699 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 689 + - uid: 700 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 690 + - uid: 701 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 691 + - uid: 702 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,5.5 parent: 1 - - uid: 692 + - uid: 703 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,5.5 parent: 1 - - uid: 693 + - uid: 704 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,5.5 parent: 1 - - uid: 694 + - uid: 705 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,5.5 parent: 1 - - uid: 695 + - uid: 706 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,5.5 parent: 1 - - uid: 696 + - uid: 707 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,5.5 parent: 1 - - uid: 697 + - uid: 708 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,5.5 parent: 1 - - uid: 698 + - uid: 709 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 699 + - uid: 710 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,3.5 parent: 1 - - uid: 700 + - uid: 711 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,3.5 parent: 1 - - uid: 701 + - uid: 712 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 1 - - uid: 702 + - uid: 713 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,5.5 parent: 1 - - uid: 703 + - uid: 714 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,6.5 parent: 1 - - uid: 704 + - uid: 715 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,7.5 parent: 1 - - uid: 705 + - uid: 716 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 1 - - uid: 706 + - uid: 717 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,8.5 parent: 1 - - uid: 707 + - uid: 718 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,7.5 parent: 1 - - uid: 708 + - uid: 719 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,7.5 parent: 1 - - uid: 709 + - uid: 720 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,7.5 parent: 1 - - uid: 710 + - uid: 721 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,12.5 parent: 1 - - uid: 711 + - uid: 722 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 712 + - uid: 723 components: - type: Transform pos: -1.5,8.5 parent: 1 - - uid: 713 + - uid: 724 components: - type: Transform pos: -1.5,9.5 parent: 1 - - uid: 714 + - uid: 725 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-0.5 parent: 1 - - uid: 715 + - uid: 726 components: - type: Transform pos: 4.5,-8.5 parent: 1 - proto: GasPipeTJunction entities: - - uid: 716 + - uid: 727 components: - type: Transform pos: 3.5,-11.5 parent: 1 - - uid: 717 + - uid: 728 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-4.5 parent: 1 - - uid: 718 + - uid: 729 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-0.5 parent: 1 - - uid: 719 + - uid: 730 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,3.5 parent: 1 - - uid: 720 + - uid: 731 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 1 - - uid: 721 + - uid: 732 components: - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 722 + - uid: 733 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-0.5 parent: 1 - - uid: 723 + - uid: 734 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 724 + - uid: 735 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,9.5 parent: 1 - - uid: 725 + - uid: 736 components: - type: Transform rot: 1.5707963267948966 rad @@ -5266,13 +5513,13 @@ entities: parent: 1 - proto: GasPort entities: - - uid: 726 + - uid: 737 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-13.5 parent: 1 - - uid: 727 + - uid: 738 components: - type: Transform rot: -1.5707963267948966 rad @@ -5280,72 +5527,72 @@ entities: parent: 1 - proto: GasVentPump entities: - - uid: 728 + - uid: 739 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 729 + - uid: 740 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-4.5 parent: 1 - - uid: 730 + - uid: 741 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,3.5 parent: 1 - - uid: 731 + - uid: 742 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-0.5 parent: 1 - - uid: 732 + - uid: 743 components: - type: Transform pos: 4.5,7.5 parent: 1 - - uid: 733 + - uid: 744 components: - type: Transform pos: -3.5,7.5 parent: 1 - proto: GasVentScrubber entities: - - uid: 734 + - uid: 745 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-4.5 parent: 1 - - uid: 735 + - uid: 746 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 1 - - uid: 736 + - uid: 747 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-0.5 parent: 1 - - uid: 737 + - uid: 748 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,3.5 parent: 1 - - uid: 738 + - uid: 749 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - - uid: 739 + - uid: 750 components: - type: Transform rot: -1.5707963267948966 rad @@ -5353,71 +5600,71 @@ entities: parent: 1 - proto: GravityGeneratorMini entities: - - uid: 740 + - uid: 751 components: - type: Transform pos: 0.5,-14.5 parent: 1 - proto: Grille entities: - - uid: 741 + - uid: 752 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 742 + - uid: 753 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 743 + - uid: 754 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 744 + - uid: 755 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-5.5 parent: 1 - - uid: 745 + - uid: 756 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-5.5 parent: 1 - - uid: 746 + - uid: 757 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-7.5 parent: 1 - - uid: 747 + - uid: 758 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-7.5 parent: 1 - - uid: 748 + - uid: 759 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-5.5 parent: 1 - - uid: 749 + - uid: 760 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-9.5 parent: 1 - - uid: 750 + - uid: 761 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-11.5 parent: 1 - - uid: 751 + - uid: 762 components: - type: Transform rot: -1.5707963267948966 rad @@ -5425,19 +5672,19 @@ entities: parent: 1 - proto: GyroscopeNfsd entities: - - uid: 752 + - uid: 763 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-16.5 parent: 1 - - uid: 753 + - uid: 764 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,7.5 parent: 1 - - uid: 754 + - uid: 765 components: - type: Transform rot: -1.5707963267948966 rad @@ -5445,36 +5692,36 @@ entities: parent: 1 - proto: HandheldGPSBasic entities: - - uid: 49 + - uid: 50 components: - type: Transform - parent: 43 + parent: 44 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 56 + - uid: 57 components: - type: Transform - parent: 50 + parent: 51 - type: Physics canCollide: False - type: InsideEntityStorage - proto: HandHeldMassScannerEE entities: - - uid: 755 + - uid: 766 components: - type: Transform pos: 6.5530076,-8.431362 parent: 1 - proto: HospitalCurtainsOpen entities: - - uid: 756 + - uid: 767 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-10.5 parent: 1 - - uid: 757 + - uid: 768 components: - type: Transform rot: 1.5707963267948966 rad @@ -5482,86 +5729,86 @@ entities: parent: 1 - proto: JugBoriaticFuel entities: - - uid: 117 - components: - - type: Transform - parent: 114 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 118 components: - type: Transform - parent: 114 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 119 components: - type: Transform - parent: 114 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 120 components: - type: Transform - parent: 114 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 121 components: - type: Transform - parent: 114 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 122 components: - type: Transform - parent: 114 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 123 components: - type: Transform - parent: 114 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 124 components: - type: Transform - parent: 114 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 125 components: - type: Transform - parent: 114 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 126 components: - type: Transform - parent: 114 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 127 components: - type: Transform - parent: 114 + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 128 + components: + - type: Transform + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - proto: LightStripCorner entities: - - uid: 758 + - uid: 769 components: - type: Transform rot: 3.141592653589793 rad @@ -5570,7 +5817,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 759 + - uid: 770 components: - type: Transform rot: 1.5707963267948966 rad @@ -5579,7 +5826,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 760 + - uid: 771 components: - type: Transform pos: -0.5,-6.5 @@ -5587,7 +5834,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 761 + - uid: 772 components: - type: Transform rot: -1.5707963267948966 rad @@ -5598,7 +5845,7 @@ entities: - type: TurretIFF - proto: LightStripInner entities: - - uid: 762 + - uid: 773 components: - type: Transform rot: 1.5707963267948966 rad @@ -5609,7 +5856,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 763 + - uid: 774 components: - type: Transform rot: 3.141592653589793 rad @@ -5618,7 +5865,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 764 + - uid: 775 components: - type: Transform rot: 1.5707963267948966 rad @@ -5627,7 +5874,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 765 + - uid: 776 components: - type: Transform pos: 0.5,-6.5 @@ -5635,7 +5882,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 766 + - uid: 777 components: - type: Transform rot: -1.5707963267948966 rad @@ -5644,138 +5891,21 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF -- proto: MagazineLightRifleBoxSlug +- proto: MagazineLightRifleBoxSlugHE entities: - - uid: 1131 + - uid: 778 components: - type: Transform - pos: -3.716594,11.621812 + pos: -3.5658886,11.69824 parent: 1 - type: ContainerContainer containers: ballistic-ammo: !type:Container ents: [] - - uid: 1132 + - uid: 779 components: - type: Transform - pos: -3.4887292,11.621812 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1133 - components: - - type: Transform - pos: -3.3910728,11.638087 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1134 - components: - - type: Transform - pos: -3.2608643,11.638087 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1135 - components: - - type: Transform - pos: -3.846802,11.29629 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1136 - components: - - type: Transform - pos: -3.781698,11.29629 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1137 - components: - - type: Transform - pos: -3.6352136,11.328843 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1138 - components: - - type: Transform - pos: -3.423625,11.377671 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1139 - components: - - type: Transform - pos: -3.3910728,11.377671 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1140 - components: - - type: Transform - pos: 4.25532,11.7357435 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1141 - components: - - type: Transform - pos: 4.4831843,11.719468 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1142 - components: - - type: Transform - pos: 4.759877,11.654364 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1143 - components: - - type: Transform - pos: 4.662221,11.393947 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1144 - components: - - type: Transform - pos: 4.385528,11.377671 - parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1145 - components: - - type: Transform - pos: 4.3367,11.377671 + pos: 4.5558558,11.681964 parent: 1 - type: ContainerContainer containers: @@ -5783,91 +5913,91 @@ entities: ents: [] - proto: MedicalBed entities: - - uid: 767 + - uid: 780 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 768 + - uid: 781 components: - type: Transform pos: -5.5,-11.5 parent: 1 - proto: MedkitAdvancedFilled entities: - - uid: 769 + - uid: 782 components: - type: Transform pos: -5.201176,-8.571467 parent: 1 - proto: MedkitBruteFilled entities: - - uid: 770 + - uid: 783 components: - type: Transform pos: -5.2309003,-8.17008 parent: 1 - proto: MedkitBurnFilled entities: - - uid: 771 + - uid: 784 components: - type: Transform pos: -5.201176,-8.333609 parent: 1 - proto: MedkitOxygenFilled entities: - - uid: 772 + - uid: 785 components: - type: Transform pos: -5.736208,-8.184947 parent: 1 - proto: MedkitRadiationFilled entities: - - uid: 773 + - uid: 786 components: - type: Transform pos: -5.736208,-8.333609 parent: 1 - proto: MedkitToxinFilled entities: - - uid: 774 + - uid: 787 components: - type: Transform pos: -5.736208,-8.556602 parent: 1 - proto: N14TableMetalGrate entities: - - uid: 775 + - uid: 788 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,0.5 parent: 1 - - uid: 776 + - uid: 789 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,1.5 parent: 1 - - uid: 777 + - uid: 790 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,1.5 parent: 1 - - uid: 778 + - uid: 791 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 1 - - uid: 779 + - uid: 792 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,1.5 parent: 1 - - uid: 780 + - uid: 793 components: - type: Transform rot: 3.141592653589793 rad @@ -5875,7 +6005,7 @@ entities: parent: 1 - proto: NitrogenCanister entities: - - uid: 781 + - uid: 794 components: - type: Transform anchored: True @@ -5885,7 +6015,7 @@ entities: bodyType: Static - proto: OxygenCanister entities: - - uid: 782 + - uid: 795 components: - type: Transform anchored: True @@ -5895,76 +6025,76 @@ entities: bodyType: Static - proto: PlastitaniumWindow entities: - - uid: 783 + - uid: 796 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 784 + - uid: 797 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 785 + - uid: 798 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 786 + - uid: 799 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 787 + - uid: 800 components: - type: Transform pos: -2.5,-7.5 parent: 1 - - uid: 788 + - uid: 801 components: - type: Transform pos: 3.5,-7.5 parent: 1 - - uid: 789 + - uid: 802 components: - type: Transform pos: 3.5,-11.5 parent: 1 - - uid: 790 + - uid: 803 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 791 + - uid: 804 components: - type: Transform pos: -0.5,-5.5 parent: 1 - - uid: 792 + - uid: 805 components: - type: Transform pos: -2.5,-11.5 parent: 1 - - uid: 793 + - uid: 806 components: - type: Transform pos: -5.5,-9.5 parent: 1 - proto: PottedPlantRandom entities: - - uid: 794 + - uid: 807 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 795 + - uid: 808 components: - type: Transform pos: -2.5,-3.5 parent: 1 - proto: Poweredlight entities: - - uid: 796 + - uid: 809 components: - type: Transform rot: -1.5707963267948966 rad @@ -5972,202 +6102,202 @@ entities: parent: 1 - proto: PoweredlightLED entities: - - uid: 797 + - uid: 810 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,11.5 parent: 1 - - uid: 798 + - uid: 811 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,8.5 parent: 1 - - uid: 799 + - uid: 812 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,11.5 parent: 1 - - uid: 800 + - uid: 813 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,13.5 parent: 1 - - uid: 801 + - uid: 814 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,13.5 parent: 1 - - uid: 802 + - uid: 815 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,8.5 parent: 1 - - uid: 803 + - uid: 816 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,8.5 parent: 1 - - uid: 804 + - uid: 817 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,8.5 parent: 1 - - uid: 805 + - uid: 818 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,5.5 parent: 1 - - uid: 806 + - uid: 819 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,2.5 parent: 1 - - uid: 807 + - uid: 820 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,2.5 parent: 1 - - uid: 808 + - uid: 821 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,5.5 parent: 1 - - uid: 809 + - uid: 822 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 810 + - uid: 823 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 811 + - uid: 824 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-0.5 parent: 1 - - uid: 812 + - uid: 825 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-0.5 parent: 1 - - uid: 813 + - uid: 826 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-5.5 parent: 1 - - uid: 814 + - uid: 827 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-5.5 parent: 1 - - uid: 815 + - uid: 828 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-2.5 parent: 1 - - uid: 816 + - uid: 829 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-5.5 parent: 1 - - uid: 817 + - uid: 830 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-5.5 parent: 1 - - uid: 818 + - uid: 831 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-2.5 parent: 1 - - uid: 819 + - uid: 832 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 1 - - uid: 820 + - uid: 833 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 1 - - uid: 821 + - uid: 834 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-9.5 parent: 1 - - uid: 822 + - uid: 835 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-9.5 parent: 1 - - uid: 823 + - uid: 836 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-9.5 parent: 1 - - uid: 824 + - uid: 837 components: - type: Transform pos: -0.5,-6.5 parent: 1 - - uid: 825 + - uid: 838 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-10.5 parent: 1 - - uid: 826 + - uid: 839 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-7.5 parent: 1 - - uid: 827 + - uid: 840 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-8.5 parent: 1 - - uid: 828 + - uid: 841 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-13.5 parent: 1 - - uid: 829 + - uid: 842 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-13.5 parent: 1 - - uid: 830 + - uid: 843 components: - type: Transform rot: 1.5707963267948966 rad @@ -6175,25 +6305,25 @@ entities: parent: 1 - proto: PoweredlightRed entities: - - uid: 831 + - uid: 844 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,12.5 parent: 1 - - uid: 832 + - uid: 845 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,12.5 parent: 1 - - uid: 833 + - uid: 846 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,3.5 parent: 1 - - uid: 834 + - uid: 847 components: - type: Transform rot: 3.141592653589793 rad @@ -6201,19 +6331,19 @@ entities: parent: 1 - proto: Rack entities: - - uid: 835 + - uid: 848 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-8.5 parent: 1 - - uid: 1129 + - uid: 849 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,11.5 parent: 1 - - uid: 1130 + - uid: 850 components: - type: Transform rot: 3.141592653589793 rad @@ -6221,97 +6351,221 @@ entities: parent: 1 - proto: RadioHandheld entities: - - uid: 836 + - uid: 851 components: - type: Transform pos: 6.389526,-10.380689 parent: 1 - - uid: 837 + - uid: 852 components: - type: Transform pos: 6.64218,-10.380689 parent: 1 - - uid: 838 + - uid: 853 components: - type: Transform pos: 6.5084214,-10.276625 parent: 1 - proto: Railing entities: - - uid: 839 + - uid: 854 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-8.5 parent: 1 - - uid: 840 + - uid: 855 components: - type: Transform pos: 0.5,-9.5 parent: 1 - - uid: 841 + - uid: 856 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 842 + - uid: 857 components: - type: Transform pos: 2.5,-9.5 parent: 1 - - uid: 843 + - uid: 858 components: - type: Transform pos: 6.5,-9.5 parent: 1 - - uid: 844 + - uid: 859 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-9.5 parent: 1 - - uid: 845 + - uid: 860 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-1.5 parent: 1 + - uid: 861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 1 + - uid: 862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + - uid: 863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + - uid: 864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1 + - uid: 866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + - uid: 867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 1 + - uid: 869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 - proto: RailingCorner entities: - - uid: 846 + - uid: 870 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-9.5 parent: 1 - - uid: 847 + - uid: 871 components: - type: Transform pos: 5.5,-10.5 parent: 1 - - uid: 848 + - uid: 872 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-8.5 parent: 1 + - uid: 873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,6.5 + parent: 1 + - uid: 874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 1 + - uid: 875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,13.5 + parent: 1 + - uid: 876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1 + - uid: 877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 1 + - uid: 878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + - uid: 879 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 1 + - uid: 880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-17.5 + parent: 1 + - uid: 881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 1 + - uid: 882 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 1 - proto: RailingCornerSmall entities: - - uid: 849 + - uid: 883 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-9.5 parent: 1 - - uid: 850 + - uid: 884 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-9.5 parent: 1 +- proto: RailingRound + entities: + - uid: 885 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 1 + - uid: 886 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 1 - proto: RCD entities: - - uid: 851 + - uid: 887 components: - type: Transform pos: -4.4877124,-14.409616 @@ -6320,14 +6574,14 @@ entities: constructionDirection: West - proto: RCDAmmo entities: - - uid: 852 + - uid: 888 components: - type: Transform pos: -4.333141,-14.535783 parent: 1 - proto: ShuttersNormal entities: - - uid: 853 + - uid: 889 components: - type: Transform rot: -1.5707963267948966 rad @@ -6335,8 +6589,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 865 - - uid: 854 + - 901 + - uid: 890 components: - type: Transform rot: -1.5707963267948966 rad @@ -6344,8 +6598,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 865 - - uid: 855 + - 901 + - uid: 891 components: - type: Transform rot: 1.5707963267948966 rad @@ -6353,8 +6607,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 866 - - uid: 856 + - 902 + - uid: 892 components: - type: Transform rot: 1.5707963267948966 rad @@ -6362,56 +6616,56 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 866 + - 902 - proto: ShuttersNormalOpen entities: - - uid: 857 + - uid: 893 components: - type: Transform pos: -0.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 864 - - uid: 858 + - 900 + - uid: 894 components: - type: Transform pos: 0.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 864 - - uid: 859 + - 900 + - uid: 895 components: - type: Transform pos: 1.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 864 + - 900 - proto: SignalButton entities: - - uid: 860 + - uid: 896 components: - type: Transform pos: -3.5,12.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 112: + 113: - - Pressed - Toggle - - uid: 861 + - uid: 897 components: - type: Transform pos: 4.5,12.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 113: + 114: - - Pressed - Toggle - - uid: 862 + - uid: 898 components: - type: Transform rot: 1.5707963267948966 rad @@ -6419,16 +6673,16 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 111: + 112: - - Pressed - Toggle - 110: + 111: - - Pressed - Toggle - 105: + 106: - - Pressed - Toggle - - uid: 863 + - uid: 899 components: - type: Transform rot: -1.5707963267948966 rad @@ -6436,16 +6690,16 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 109: + 110: - - Pressed - Toggle - 108: + 109: - - Pressed - Toggle - 106: + 107: - - Pressed - Toggle - - uid: 864 + - uid: 900 components: - type: Transform rot: 1.5707963267948966 rad @@ -6453,16 +6707,16 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 857: + 893: - - Pressed - Toggle - 858: + 894: - - Pressed - Toggle - 859: + 895: - - Pressed - Toggle - - uid: 865 + - uid: 901 components: - type: Transform rot: -1.5707963267948966 rad @@ -6470,13 +6724,13 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 854: + 890: - - Pressed - Toggle - 853: + 889: - - Pressed - Toggle - - uid: 866 + - uid: 902 components: - type: Transform rot: 1.5707963267948966 rad @@ -6484,25 +6738,25 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 856: + 892: - - Pressed - Toggle - 855: + 891: - - Pressed - Toggle - - uid: 867 + - uid: 903 components: - type: Transform pos: 1.5,6.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 107: + 108: - - Pressed - Toggle - proto: SlugthrowerCannon entities: - - uid: 868 + - uid: 904 components: - type: Transform rot: 3.141592653589793 rad @@ -6511,7 +6765,7 @@ entities: - type: ApcPowerReceiver powerLoad: 1000 - type: Battery - startingCharge: 19619.16 + startingCharge: 17509.434 - type: ApcPowerReceiverBattery enabled: True - type: ContainerContainer @@ -6538,7 +6792,7 @@ entities: ents: [] - type: ChamberMagazineAmmoProvider boltClosed: True - - uid: 869 + - uid: 905 components: - type: Transform rot: 3.141592653589793 rad @@ -6547,7 +6801,7 @@ entities: - type: ApcPowerReceiver powerLoad: 1000 - type: Battery - startingCharge: 19619.16 + startingCharge: 17509.434 - type: ApcPowerReceiverBattery enabled: True - type: ContainerContainer @@ -6576,44 +6830,44 @@ entities: boltClosed: True - proto: SMESBasic entities: - - uid: 870 + - uid: 906 components: - type: Transform pos: -0.5,-14.5 parent: 1 - proto: SpawnPointLatejoin entities: - - uid: 871 + - uid: 907 components: - type: Transform pos: 6.5,-9.5 parent: 1 - proto: StairDark entities: - - uid: 872 + - uid: 908 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,3.5 parent: 1 - - uid: 873 + - uid: 909 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,4.5 parent: 1 - - uid: 874 + - uid: 910 components: - type: Transform pos: -1.5,-8.5 parent: 1 - - uid: 875 + - uid: 911 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,3.5 parent: 1 - - uid: 876 + - uid: 912 components: - type: Transform rot: 1.5707963267948966 rad @@ -6621,13 +6875,13 @@ entities: parent: 1 - proto: StairStageDark entities: - - uid: 877 + - uid: 913 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-7.5 parent: 1 - - uid: 878 + - uid: 914 components: - type: Transform rot: -1.5707963267948966 rad @@ -6635,58 +6889,58 @@ entities: parent: 1 - proto: StationMap entities: - - uid: 879 + - uid: 915 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 880 + - uid: 916 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-13.5 parent: 1 - - uid: 881 + - uid: 917 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-16.5 parent: 1 - - uid: 882 + - uid: 918 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-10.5 parent: 1 - - uid: 883 + - uid: 919 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-6.5 parent: 1 - - uid: 884 + - uid: 920 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-6.5 parent: 1 - - uid: 885 + - uid: 921 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 886 + - uid: 922 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 887 + - uid: 923 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,9.5 parent: 1 - - uid: 888 + - uid: 924 components: - type: Transform rot: 1.5707963267948966 rad @@ -6694,14 +6948,14 @@ entities: parent: 1 - proto: SubstationBasic entities: - - uid: 889 + - uid: 925 components: - type: Transform pos: -3.5,-16.5 parent: 1 - proto: SuitStorageWallmount entities: - - uid: 43 + - uid: 44 components: - type: Transform rot: 1.5707963267948966 rad @@ -6731,15 +6985,15 @@ entities: showEnts: False occludes: True ents: - - 44 - - 47 - 45 - 48 - 46 - 49 + - 47 + - 50 - type: Physics canCollide: False - - uid: 50 + - uid: 51 components: - type: Transform rot: -1.5707963267948966 rad @@ -6769,26 +7023,26 @@ entities: showEnts: False occludes: True ents: + - 55 + - 52 - 54 - - 51 - 53 - - 52 + - 57 - 56 - - 55 - type: Lock locked: False - type: Physics canCollide: False - proto: SuitStorageWallmountEVAEmergency entities: - - uid: 890 + - uid: 926 components: - type: Transform pos: 7.5,-4.5 parent: 1 - type: Physics canCollide: False - - uid: 891 + - uid: 927 components: - type: Transform pos: -6.5,-4.5 @@ -6797,81 +7051,81 @@ entities: canCollide: False - proto: SurveillanceCameraGeneral entities: - - uid: 892 + - uid: 928 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,5.5 parent: 1 - - uid: 893 + - uid: 929 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 parent: 1 - - uid: 894 + - uid: 930 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 1 - - uid: 895 + - uid: 931 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 896 + - uid: 932 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,9.5 parent: 1 - - uid: 897 + - uid: 933 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,11.5 parent: 1 - - uid: 898 + - uid: 934 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,9.5 parent: 1 - - uid: 899 + - uid: 935 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,11.5 parent: 1 - - uid: 900 + - uid: 936 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,12.5 parent: 1 - - uid: 901 + - uid: 937 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-14.5 parent: 1 - - uid: 902 + - uid: 938 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 903 + - uid: 939 components: - type: Transform pos: -7.5,3.5 parent: 1 - - uid: 904 + - uid: 940 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 905 + - uid: 941 components: - type: Transform rot: 1.5707963267948966 rad @@ -6879,44 +7133,44 @@ entities: parent: 1 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 906 + - uid: 942 components: - type: Transform pos: -2.5,8.5 parent: 1 - proto: TableReinforced entities: - - uid: 907 + - uid: 943 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-14.5 parent: 1 - - uid: 908 + - uid: 944 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-13.5 parent: 1 - - uid: 909 + - uid: 945 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-8.5 parent: 1 - - uid: 910 + - uid: 946 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-10.5 parent: 1 - - uid: 911 + - uid: 947 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-1.5 parent: 1 - - uid: 912 + - uid: 948 components: - type: Transform rot: 3.141592653589793 rad @@ -6924,89 +7178,89 @@ entities: parent: 1 - proto: ThrusterNCWLWarship entities: - - uid: 913 + - uid: 949 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 1 - - uid: 914 + - uid: 950 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,0.5 parent: 1 - - uid: 915 + - uid: 951 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-18.5 parent: 1 - - uid: 916 + - uid: 952 components: - type: Transform pos: -7.5,-9.5 parent: 1 - - uid: 917 + - uid: 953 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 parent: 1 - - uid: 918 + - uid: 954 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-18.5 parent: 1 - - uid: 919 + - uid: 955 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 920 + - uid: 956 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 921 + - uid: 957 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-18.5 parent: 1 - - uid: 922 + - uid: 958 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-19.5 parent: 1 - - uid: 923 + - uid: 959 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-19.5 parent: 1 - - uid: 924 + - uid: 960 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-18.5 parent: 1 - - uid: 925 + - uid: 961 components: - type: Transform pos: 8.5,-9.5 parent: 1 - type: Thruster enabled: False - - uid: 926 + - uid: 962 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,1.5 parent: 1 - - uid: 927 + - uid: 963 components: - type: Transform rot: -1.5707963267948966 rad @@ -7014,926 +7268,920 @@ entities: parent: 1 - proto: UnionfallShipNodeNCWL entities: - - uid: 928 + - uid: 964 components: - type: Transform pos: 0.5,-7.5 parent: 1 - proto: VendingMachineCoffee entities: - - uid: 929 + - uid: 965 components: - type: Transform pos: 2.5,-3.5 parent: 1 - proto: VendingMachineSovietSoda entities: - - uid: 930 + - uid: 966 components: - type: Transform pos: 1.5,-17.5 parent: 1 - proto: VendingMachineYouTool entities: - - uid: 931 + - uid: 967 components: - type: Transform pos: 1.5,-14.5 parent: 1 - proto: WallPlastitanium entities: - - uid: 932 + - uid: 968 components: - type: Transform pos: 2.5,-5.5 parent: 1 - - uid: 933 + - uid: 969 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-0.5 parent: 1 - - uid: 934 + - uid: 970 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-0.5 parent: 1 - - uid: 935 + - uid: 971 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 - - uid: 936 + - uid: 972 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-2.5 parent: 1 - - uid: 937 + - uid: 973 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-2.5 parent: 1 - - uid: 938 + - uid: 974 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-2.5 parent: 1 - - uid: 939 + - uid: 975 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-2.5 parent: 1 - - uid: 940 + - uid: 976 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 1 - - uid: 941 + - uid: 977 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-1.5 parent: 1 - - uid: 942 + - uid: 978 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,0.5 parent: 1 - - uid: 943 + - uid: 979 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,1.5 parent: 1 - - uid: 944 + - uid: 980 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 1 - - uid: 945 + - uid: 981 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,6.5 parent: 1 - - uid: 946 + - uid: 982 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,6.5 parent: 1 - - uid: 947 + - uid: 983 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,2.5 parent: 1 - - uid: 948 + - uid: 984 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 1 - - uid: 949 + - uid: 985 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-0.5 parent: 1 - - uid: 950 + - uid: 986 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,0.5 parent: 1 - - uid: 951 + - uid: 987 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,1.5 parent: 1 - - uid: 952 + - uid: 988 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,1.5 parent: 1 - - uid: 953 + - uid: 989 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-0.5 parent: 1 - - uid: 954 + - uid: 990 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-0.5 parent: 1 - - uid: 955 + - uid: 991 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,0.5 parent: 1 - - uid: 956 + - uid: 992 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,1.5 parent: 1 - - uid: 957 + - uid: 993 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,1.5 parent: 1 - - uid: 958 + - uid: 994 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,2.5 parent: 1 - - uid: 959 + - uid: 995 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,11.5 parent: 1 - - uid: 960 + - uid: 996 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,10.5 parent: 1 - - uid: 961 + - uid: 997 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,9.5 parent: 1 - - uid: 962 + - uid: 998 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,8.5 parent: 1 - - uid: 963 + - uid: 999 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,7.5 parent: 1 - - uid: 964 + - uid: 1000 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,6.5 parent: 1 - - uid: 965 + - uid: 1001 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,5.5 parent: 1 - - uid: 966 + - uid: 1002 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,12.5 parent: 1 - - uid: 967 + - uid: 1003 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,14.5 parent: 1 - - uid: 968 + - uid: 1004 components: - type: Transform pos: -1.5,9.5 parent: 1 - - uid: 969 + - uid: 1005 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,8.5 parent: 1 - - uid: 970 + - uid: 1006 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - - uid: 971 + - uid: 1007 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,6.5 parent: 1 - - uid: 972 + - uid: 1008 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,6.5 parent: 1 - - uid: 973 + - uid: 1009 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,6.5 parent: 1 - - uid: 974 + - uid: 1010 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,7.5 parent: 1 - - uid: 975 + - uid: 1011 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,8.5 parent: 1 - - uid: 976 + - uid: 1012 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,9.5 parent: 1 - - uid: 977 + - uid: 1013 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,14.5 parent: 1 - - uid: 978 + - uid: 1014 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,6.5 parent: 1 - - uid: 979 + - uid: 1015 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,13.5 parent: 1 - - uid: 980 + - uid: 1016 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 1 - - uid: 981 + - uid: 1017 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,11.5 parent: 1 - - uid: 982 + - uid: 1018 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,10.5 parent: 1 - - uid: 983 + - uid: 1019 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,9.5 parent: 1 - - uid: 984 + - uid: 1020 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,8.5 parent: 1 - - uid: 985 + - uid: 1021 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,7.5 parent: 1 - - uid: 986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 1 - - uid: 987 + - uid: 1022 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-5.5 parent: 1 - - uid: 988 + - uid: 1023 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-4.5 parent: 1 - - uid: 989 + - uid: 1024 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-4.5 parent: 1 - - uid: 990 + - uid: 1025 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-18.5 parent: 1 - - uid: 991 + - uid: 1026 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 - - uid: 992 + - uid: 1027 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-12.5 parent: 1 - - uid: 993 + - uid: 1028 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-13.5 parent: 1 - - uid: 994 + - uid: 1029 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-18.5 parent: 1 - - uid: 995 + - uid: 1030 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-17.5 parent: 1 - - uid: 996 + - uid: 1031 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-18.5 parent: 1 - - uid: 997 + - uid: 1032 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-17.5 parent: 1 - - uid: 998 + - uid: 1033 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-6.5 parent: 1 - - uid: 999 + - uid: 1034 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-6.5 parent: 1 - - uid: 1000 + - uid: 1035 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-6.5 parent: 1 - - uid: 1001 + - uid: 1036 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-4.5 parent: 1 - - uid: 1002 + - uid: 1037 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,6.5 parent: 1 - - uid: 1003 + - uid: 1038 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,6.5 parent: 1 - - uid: 1004 + - uid: 1039 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,2.5 parent: 1 - - uid: 1005 + - uid: 1040 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-6.5 parent: 1 - - uid: 1006 + - uid: 1041 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-4.5 parent: 1 - - uid: 1007 + - uid: 1042 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-4.5 parent: 1 - - uid: 1008 + - uid: 1043 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-4.5 parent: 1 - - uid: 1009 + - uid: 1044 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-12.5 parent: 1 - - uid: 1010 + - uid: 1045 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-12.5 parent: 1 - - uid: 1011 + - uid: 1046 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-12.5 parent: 1 - - uid: 1012 + - uid: 1047 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-12.5 parent: 1 - - uid: 1013 + - uid: 1048 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-11.5 parent: 1 - - uid: 1014 + - uid: 1049 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-10.5 parent: 1 - - uid: 1015 + - uid: 1050 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-9.5 parent: 1 - - uid: 1016 + - uid: 1051 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-11.5 parent: 1 - - uid: 1017 + - uid: 1052 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-10.5 parent: 1 - - uid: 1018 + - uid: 1053 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-9.5 parent: 1 - - uid: 1019 + - uid: 1054 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-8.5 parent: 1 - - uid: 1020 + - uid: 1055 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-13.5 parent: 1 - - uid: 1021 + - uid: 1056 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-15.5 parent: 1 - - uid: 1022 + - uid: 1057 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-17.5 parent: 1 - - uid: 1023 + - uid: 1058 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-17.5 parent: 1 - - uid: 1024 + - uid: 1059 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-15.5 parent: 1 - - uid: 1025 + - uid: 1060 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-15.5 parent: 1 - - uid: 1026 + - uid: 1061 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-14.5 parent: 1 - - uid: 1027 + - uid: 1062 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-13.5 parent: 1 - - uid: 1028 + - uid: 1063 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-13.5 parent: 1 - - uid: 1029 + - uid: 1064 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-16.5 parent: 1 - - uid: 1030 + - uid: 1065 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-17.5 parent: 1 - - uid: 1031 + - uid: 1066 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-17.5 parent: 1 - - uid: 1032 + - uid: 1067 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-18.5 parent: 1 - - uid: 1033 + - uid: 1068 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-8.5 parent: 1 - - uid: 1034 + - uid: 1069 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-10.5 parent: 1 - - uid: 1035 + - uid: 1070 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-9.5 parent: 1 - - uid: 1036 + - uid: 1071 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-17.5 parent: 1 - - uid: 1037 + - uid: 1072 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-18.5 parent: 1 - - uid: 1038 + - uid: 1073 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,6.5 parent: 1 - - uid: 1039 + - uid: 1074 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,6.5 parent: 1 - - uid: 1040 + - uid: 1075 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,8.5 parent: 1 - - uid: 1041 + - uid: 1076 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,8.5 parent: 1 - - uid: 1042 + - uid: 1077 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 1 - - uid: 1043 + - uid: 1078 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,10.5 parent: 1 - - uid: 1044 + - uid: 1079 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-9.5 parent: 1 - - uid: 1045 + - uid: 1080 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-8.5 parent: 1 - - uid: 1046 + - uid: 1081 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-16.5 parent: 1 - - uid: 1047 + - uid: 1082 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-16.5 parent: 1 - - uid: 1048 + - uid: 1083 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-6.5 parent: 1 - - uid: 1049 + - uid: 1084 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-0.5 parent: 1 - - uid: 1050 + - uid: 1085 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,0.5 parent: 1 - - uid: 1051 + - uid: 1086 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-7.5 parent: 1 - - uid: 1052 + - uid: 1087 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-1.5 parent: 1 - - uid: 1053 + - uid: 1088 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-9.5 parent: 1 - - uid: 1054 + - uid: 1089 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-15.5 parent: 1 - - uid: 1055 + - uid: 1090 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-10.5 parent: 1 - - uid: 1056 + - uid: 1091 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-8.5 parent: 1 - - uid: 1057 + - uid: 1092 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,5.5 parent: 1 - - uid: 1058 + - uid: 1093 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,5.5 parent: 1 - - uid: 1059 + - uid: 1094 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,5.5 parent: 1 - - uid: 1060 + - uid: 1095 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,6.5 parent: 1 - - uid: 1061 + - uid: 1096 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,2.5 parent: 1 - - uid: 1062 + - uid: 1097 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 1 - - uid: 1063 + - uid: 1098 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,10.5 parent: 1 - - uid: 1064 + - uid: 1099 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-8.5 parent: 1 - - uid: 1065 + - uid: 1100 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,2.5 parent: 1 - - uid: 1066 + - uid: 1101 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-7.5 parent: 1 - - uid: 1067 + - uid: 1102 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-14.5 parent: 1 - - uid: 1068 + - uid: 1103 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,12.5 parent: 1 - - uid: 1069 + - uid: 1104 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,13.5 parent: 1 - - uid: 1070 + - uid: 1105 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,11.5 parent: 1 - - uid: 1071 + - uid: 1106 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-16.5 parent: 1 - - uid: 1072 + - uid: 1107 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,12.5 parent: 1 - - uid: 1073 + - uid: 1108 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,13.5 parent: 1 - - uid: 1074 + - uid: 1109 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-16.5 parent: 1 - - uid: 1075 + - uid: 1110 components: - type: Transform pos: -1.5,10.5 parent: 1 - - uid: 1076 + - uid: 1111 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,11.5 parent: 1 - - uid: 1077 + - uid: 1112 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-6.5 parent: 1 - - uid: 1078 + - uid: 1113 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-5.5 parent: 1 - - uid: 1079 + - uid: 1114 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 1 - - uid: 1080 + - uid: 1115 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,13.5 parent: 1 - - uid: 1081 + - uid: 1116 components: - type: Transform rot: -1.5707963267948966 rad @@ -7941,129 +8189,129 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 1082 + - uid: 1117 components: - type: Transform pos: -4.5,12.5 parent: 1 - - uid: 1083 + - uid: 1118 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 1084 + - uid: 1119 components: - type: Transform pos: -5.5,10.5 parent: 1 - proto: WallPlastitaniumDiagonalNortheastHollow entities: - - uid: 1085 + - uid: 1120 components: - type: Transform pos: 1.5,9.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestCurved entities: - - uid: 1086 + - uid: 1121 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 1087 + - uid: 1122 components: - type: Transform pos: 4.5,14.5 parent: 1 - - uid: 1088 + - uid: 1123 components: - type: Transform pos: 6.5,10.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestHollow entities: - - uid: 1089 + - uid: 1124 components: - type: Transform pos: -0.5,9.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastCurved entities: - - uid: 1090 + - uid: 1125 components: - type: Transform pos: -7.5,-6.5 parent: 1 - - uid: 1091 + - uid: 1126 components: - type: Transform pos: -1.5,-19.5 parent: 1 - - uid: 1092 + - uid: 1127 components: - type: Transform pos: -6.5,-12.5 parent: 1 - - uid: 1093 + - uid: 1128 components: - type: Transform pos: -7.5,-10.5 parent: 1 - - uid: 1094 + - uid: 1129 components: - type: Transform pos: -4.5,-18.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastHollow entities: - - uid: 1095 + - uid: 1130 components: - type: Transform pos: -5.5,-16.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestCurved entities: - - uid: 1096 + - uid: 1131 components: - type: Transform pos: 8.5,-6.5 parent: 1 - - uid: 1097 + - uid: 1132 components: - type: Transform pos: 5.5,-18.5 parent: 1 - - uid: 1098 + - uid: 1133 components: - type: Transform pos: 2.5,-19.5 parent: 1 - - uid: 1099 + - uid: 1134 components: - type: Transform pos: 8.5,-10.5 parent: 1 - - uid: 1100 + - uid: 1135 components: - type: Transform pos: 7.5,-12.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestHollow entities: - - uid: 1101 + - uid: 1136 components: - type: Transform pos: 6.5,-16.5 parent: 1 - proto: WallPlastitaniumNCWL entities: - - uid: 1102 + - uid: 1137 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-16.5 parent: 1 - - uid: 1103 + - uid: 1138 components: - type: Transform rot: 1.5707963267948966 rad @@ -8071,41 +8319,41 @@ entities: parent: 1 - proto: WallReinforced entities: - - uid: 1104 + - uid: 1139 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 1 - - uid: 1105 + - uid: 1140 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-12.5 parent: 1 - - uid: 1106 + - uid: 1141 components: - type: Transform pos: 5.5,-15.5 parent: 1 - - uid: 1107 + - uid: 1142 components: - type: Transform pos: 5.5,-16.5 parent: 1 - - uid: 1108 + - uid: 1143 components: - type: Transform pos: 5.5,-17.5 parent: 1 - proto: WallSolidDiagonalCurved entities: - - uid: 1109 + - uid: 1144 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 1110 + - uid: 1145 components: - type: Transform rot: -1.5707963267948966 rad @@ -8113,33 +8361,37 @@ entities: parent: 1 - proto: WarpPointShip entities: - - uid: 1111 + - uid: 1146 components: + - type: MetaData + name: NCWL Sasha - type: Transform pos: 0.5,-0.5 parent: 1 - proto: WeaponCapacitorRecharger entities: - - uid: 1112 + - uid: 1147 components: - type: Transform pos: -1.5,-1.5 parent: 1 - proto: WeaponMakeshiftLaser entities: - - uid: 1113 + - uid: 1148 components: - type: Transform pos: -1.4766476,-1.3366694 parent: 1 - proto: WeaponTurretPDT entities: - - uid: 1114 + - uid: 1149 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,6.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -8155,16 +8407,16 @@ entities: occludes: True ents: [] - type: Battery - startingCharge: 617.4533 - - type: ApcPowerReceiverBattery - enabled: True + startingCharge: 0 - type: PointCannon - linkedConsoleId: 619 - - uid: 1115 + linkedConsoleId: 630 + - uid: 1150 components: - type: Transform pos: -1.5,-20.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -8180,16 +8432,16 @@ entities: occludes: True ents: [] - type: Battery - startingCharge: 617.4533 - - type: ApcPowerReceiverBattery - enabled: True + startingCharge: 0 - type: PointCannon - linkedConsoleId: 619 - - uid: 1116 + linkedConsoleId: 630 + - uid: 1151 components: - type: Transform pos: 2.5,-20.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -8205,17 +8457,17 @@ entities: occludes: True ents: [] - type: Battery - startingCharge: 617.4533 - - type: ApcPowerReceiverBattery - enabled: True + startingCharge: 0 - type: PointCannon - linkedConsoleId: 619 - - uid: 1117 + linkedConsoleId: 630 + - uid: 1152 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,11.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -8231,17 +8483,17 @@ entities: occludes: True ents: [] - type: Battery - startingCharge: 617.4533 - - type: ApcPowerReceiverBattery - enabled: True + startingCharge: 0 - type: PointCannon - linkedConsoleId: 619 - - uid: 1118 + linkedConsoleId: 630 + - uid: 1153 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,13.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -8257,17 +8509,17 @@ entities: occludes: True ents: [] - type: Battery - startingCharge: 617.4533 - - type: ApcPowerReceiverBattery - enabled: True + startingCharge: 0 - type: PointCannon - linkedConsoleId: 619 - - uid: 1119 + linkedConsoleId: 630 + - uid: 1154 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,13.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -8283,17 +8535,17 @@ entities: occludes: True ents: [] - type: Battery - startingCharge: 617.4533 - - type: ApcPowerReceiverBattery - enabled: True + startingCharge: 0 - type: PointCannon - linkedConsoleId: 619 - - uid: 1120 + linkedConsoleId: 630 + - uid: 1155 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,11.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -8309,17 +8561,17 @@ entities: occludes: True ents: [] - type: Battery - startingCharge: 617.4533 - - type: ApcPowerReceiverBattery - enabled: True + startingCharge: 0 - type: PointCannon - linkedConsoleId: 619 - - uid: 1121 + linkedConsoleId: 630 + - uid: 1156 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,6.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -8335,17 +8587,17 @@ entities: occludes: True ents: [] - type: Battery - startingCharge: 617.4533 - - type: ApcPowerReceiverBattery - enabled: True + startingCharge: 0 - type: PointCannon - linkedConsoleId: 619 - - uid: 1122 + linkedConsoleId: 630 + - uid: 1157 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-13.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -8361,17 +8613,17 @@ entities: occludes: True ents: [] - type: Battery - startingCharge: 617.4533 - - type: ApcPowerReceiverBattery - enabled: True + startingCharge: 0 - type: PointCannon - linkedConsoleId: 619 - - uid: 1123 + linkedConsoleId: 630 + - uid: 1158 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-13.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -8387,16 +8639,16 @@ entities: occludes: True ents: [] - type: Battery - startingCharge: 617.4533 - - type: ApcPowerReceiverBattery - enabled: True + startingCharge: 0 - type: PointCannon - linkedConsoleId: 619 - - uid: 1124 + linkedConsoleId: 630 + - uid: 1159 components: - type: Transform pos: -5.5,-17.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -8412,16 +8664,16 @@ entities: occludes: True ents: [] - type: Battery - startingCharge: 617.4533 - - type: ApcPowerReceiverBattery - enabled: True + startingCharge: 0 - type: PointCannon - linkedConsoleId: 619 - - uid: 1125 + linkedConsoleId: 630 + - uid: 1160 components: - type: Transform pos: 6.5,-17.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 5 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -8437,26 +8689,24 @@ entities: occludes: True ents: [] - type: Battery - startingCharge: 617.4533 - - type: ApcPowerReceiverBattery - enabled: True + startingCharge: 0 - type: PointCannon - linkedConsoleId: 619 + linkedConsoleId: 630 - proto: WindoorSecure entities: - - uid: 1126 + - uid: 1161 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1127 + - uid: 1162 components: - type: Transform pos: -2.5,12.5 parent: 1 - proto: Wrench entities: - - uid: 1128 + - uid: 1163 components: - type: Transform pos: -4.599214,-14.035264 diff --git a/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml b/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml index bb58758b45c..dd66acdc110 100644 --- a/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml +++ b/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml @@ -4,8 +4,8 @@ meta: engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 03/10/2026 14:40:30 - entityCount: 2113 + time: 03/11/2026 00:02:36 + entityCount: 2178 maps: [] grids: - 1 @@ -17,6 +17,7 @@ tilemap: 4: FloorBlueCircuit 23: FloorBrokenWood 33: FloorDark + 14: FloorDarkDiagonal 2: FloorHullReinforced 5: FloorMiningDark 6: FloorMiningLight @@ -48,11 +49,11 @@ entities: chunks: 0,0: ind: 0,0 - tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAIQAAAAAAAAUAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAUAAAAAAAAhAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAIAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACAAAAAAAAIIAAAAAAAALAAAAAAAABQAAAAAAAAsAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAgAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAIAAAAAAAAAQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAACAAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAgAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAIAAAAAAAAggAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABAAAAAAAAAsAAAAAAAAFAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAIQAAAAAAAAUAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAUAAAAAAAAhAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAIAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACAAAAAAAAIIAAAAAAAALAAAAAAAABQAAAAAAAAsAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAgAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAIAAAAAAAAAQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAACAAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAgAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAIAAAAAAAAggAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABAAAAAAAAAsAAAAAAAAFAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAALAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAABQAAAAAAACEAAAAAAACCAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAIIAAAAAAAAhAAAAAAAAggAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAABQAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAABAAAAAAAAAQAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAIAAAAAAAACwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAACAAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAQAAAAAAAAgAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAAIAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAsAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACCAAAAAAAACAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAggAAAAAAAAgAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAIIAAAAAAAAIAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACCAAAAAAAACAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAUAAAAAAAALAAAAAAAABAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAUAAAAAAACCAAAAAAAACwAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAABQAAAAAAACEAAAAAAACCAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAIIAAAAAAAAhAAAAAAAAggAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAABQAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAABAAAAAAAAAQAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAIAAAAAAAACwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAACAAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAQAAAAAAAAgAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAAIAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAsAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACCAAAAAAAACAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAggAAAAAAAAgAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAIIAAAAAAAAIAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACCAAAAAAAACAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAUAAAAAAAALAAAAAAAABAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAUAAAAAAACCAAAAAAAACwAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAA== version: 7 -1,-1: ind: -1,-1 @@ -72,11 +73,11 @@ entities: version: 7 0,1: ind: 0,1 - tiles: ggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAgQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIEAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACBAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAIAAAAAAAAggAAAAAAAIEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAACEAAAAAAAABAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAAhAAAAAAAAAQAAAAAAACEAAAAAAACCAAAAAAAACAAAAAAAAAUAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAEAAAAAAAAhAAAAAAAAggAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAAIAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAAhAAAAAAAAAQAAAAAAACEAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAAIQAAAAAAAAEAAAAAAAAhAAAAAAAACwAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAACEAAAAAAAABAAAAAAAAIQAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAABAAAAAAAAggAAAAAAACEAAAAAAAAFAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAQAAAAAAAIIAAAAAAAAhAAAAAAAABQAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAgQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIEAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACBAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAIAAAAAAAAggAAAAAAAIEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAOAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAADgAAAAAAACEAAAAAAACCAAAAAAAACAAAAAAAAAUAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAA4AAAAAAAAhAAAAAAAAggAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAAIAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAADgAAAAAAACEAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAA4AAAAAAAAhAAAAAAAACwAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAOAAAAAAAAIQAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAABAAAAAAAAggAAAAAAACEAAAAAAAAFAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAQAAAAAAAIIAAAAAAAAhAAAAAAAABQAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAoAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAACgAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAoAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAKAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAAAQAAAAAAACEAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAABQAAAAAAAAgAAAAAAACCAAAAAAAAIQAAAAAAAAEAAAAAAAAIAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAIAAAAAAAAggAAAAAAACEAAAAAAAABAAAAAAAAIQAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAAIAAAAAAAABwAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAIQAAAAAAAAEAAAAAAAAhAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAACwAAAAAAACEAAAAAAAABAAAAAAAAIQAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAIAAAAAAAAAQAAAAAAACEAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAACAAAAAAAAAgAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAAIQAAAAAAAAEAAAAAAAALAAAAAAAACwAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAoAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAACgAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAoAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAKAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAADgAAAAAAACEAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAABQAAAAAAAAgAAAAAAACCAAAAAAAAIQAAAAAAAA4AAAAAAAAhAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAIAAAAAAAAggAAAAAAACEAAAAAAAAOAAAAAAAAIQAAAAAAACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAAIAAAAAAAABwAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAIQAAAAAAAA4AAAAAAAAhAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAACwAAAAAAACEAAAAAAAAOAAAAAAAAIQAAAAAAACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAhAAAAAAAADgAAAAAAACEAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAACAAAAAAAAAgAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAAIQAAAAAAAAEAAAAAAAALAAAAAAAACwAAAAAAAA== version: 7 0,2: ind: 0,2 @@ -111,132 +112,137 @@ entities: color: '#FFFFFF6D' id: Arrows decals: - 978: 2,26 + 935: 2,26 - node: angle: 4.71238898038469 rad color: '#FFFFFF6D' id: Arrows decals: - 979: -2,26 + 936: -2,26 - node: color: '#EFB34196' id: BotLeftGreyscale decals: 63: 3,26 + - node: + color: '#EFB34196' + id: BoxGreyscale + decals: + 5467: 0,26 - node: color: '#EFB34196' id: BrickTileSteelCornerNe decals: 229: -5,7 - 373: 4,28 - 502: -5,-2 - 531: 7,-6 - 534: -5,-6 - 574: -2,-13 - 575: -3,-12 - 582: -2,-16 + 353: 4,28 + 482: -5,-2 + 511: 7,-6 + 514: -5,-6 + 554: -2,-13 + 555: -3,-12 + 562: -2,-16 - node: color: '#EFB34196' id: BrickTileSteelCornerNw decals: 230: -8,7 - 374: -4,28 - 501: 5,-2 - 533: -7,-6 - 535: 5,-6 - 581: -6,-16 + 354: -4,28 + 481: 5,-2 + 513: -7,-6 + 515: 5,-6 + 561: -6,-16 - node: color: '#EFB34196' id: BrickTileSteelCornerSe decals: 228: -5,5 237: 1,5 - 526: -5,2 - 537: -5,-7 - 538: 7,-7 - 573: -2,-14 - 583: -2,-17 - 584: -5,-17 + 506: -5,2 + 517: -5,-7 + 518: 7,-7 + 553: -2,-14 + 563: -2,-17 + 564: -5,-17 - node: color: '#EFB34196' id: BrickTileSteelCornerSw decals: 234: -8,5 236: -1,5 - 375: -4,20 - 525: 5,2 - 532: -7,-7 - 536: 5,-7 - 571: -6,-14 - 585: -3,-17 - 586: -6,-17 + 355: -4,20 + 505: 5,2 + 512: -7,-7 + 516: 5,-7 + 551: -6,-14 + 565: -3,-17 + 566: -6,-17 - node: color: '#EFB34196' id: BrickTileSteelEndN decals: - 568: -6,-9 + 548: -6,-9 - node: color: '#EFB34196' id: BrickTileSteelInnerNe decals: - 488: -1,-7 - 520: -6,-2 - 579: -6,-12 - 580: -3,-13 + 468: -1,-7 + 500: -6,-2 + 559: -6,-12 + 560: -3,-13 - node: color: '#EFB34196' id: BrickTileSteelInnerNw decals: - 487: 1,-7 - 521: 6,-2 + 467: 1,-7 + 501: 6,-2 - node: color: '#EFB34196' id: BrickTileSteelInnerSe decals: - 486: -1,-4 - 527: -6,2 + 466: -1,-4 + 507: -6,2 - node: color: '#EFB34196' id: BrickTileSteelInnerSw decals: - 485: 1,-4 - 528: 6,2 + 465: 1,-4 + 508: 6,2 - node: color: '#EFB34196' id: BrickTileSteelLineE decals: 233: -5,6 240: 1,6 - 369: 4,21 - 370: 4,22 - 371: 4,23 - 372: 4,24 - 478: -1,-6 - 479: -1,-5 - 484: -2,-4 - 499: -5,-3 - 503: -6,-1 - 504: -6,0 - 505: -6,1 - 569: -6,-10 - 578: -6,-11 + 349: 4,21 + 350: 4,22 + 351: 4,23 + 352: 4,24 + 458: -1,-6 + 459: -1,-5 + 464: -2,-4 + 479: -5,-3 + 483: -6,-1 + 484: -6,0 + 485: -6,1 + 549: -6,-10 + 558: -6,-11 - node: color: '#EFB34196' id: BrickTileSteelLineN decals: 226: -7,7 227: -6,7 - 381: 3,28 - 382: 2,28 - 383: 1,28 - 384: -3,28 - 385: -2,28 - 386: -1,28 - 477: 0,-7 - 540: 6,-6 - 542: -6,-6 - 576: -4,-12 - 577: -5,-12 + 361: 3,28 + 362: 2,28 + 363: 1,28 + 364: -3,28 + 365: -2,28 + 366: -1,28 + 457: 0,-7 + 520: 6,-6 + 522: -6,-6 + 556: -4,-12 + 557: -5,-12 - node: color: '#EFB34196' id: BrickTileSteelLineS @@ -244,4229 +250,4951 @@ entities: 231: -6,5 235: -7,5 239: 0,5 - 358: -3,20 - 359: -2,20 - 360: -1,20 - 361: 1,20 - 362: 2,20 - 363: 3,20 - 480: 0,-4 - 539: 6,-7 - 541: -6,-7 - 572: -4,-14 + 338: -3,20 + 339: -2,20 + 340: -1,20 + 341: 1,20 + 342: 2,20 + 343: 3,20 + 460: 0,-4 + 519: 6,-7 + 521: -6,-7 + 552: -4,-14 - node: color: '#EFB34196' id: BrickTileSteelLineW decals: 232: -8,6 238: -1,6 - 365: -4,21 - 366: -4,22 - 367: -4,23 - 368: -4,24 - 481: 1,-6 - 482: 1,-5 - 483: 2,-4 - 500: 5,-3 - 522: 6,-1 - 523: 6,0 - 524: 6,1 - 570: -6,-10 + 345: -4,21 + 346: -4,22 + 347: -4,23 + 348: -4,24 + 461: 1,-6 + 462: 1,-5 + 463: 2,-4 + 480: 5,-3 + 502: 6,-1 + 503: 6,0 + 504: 6,1 + 550: -6,-10 - node: color: '#FFFFFFFF' id: Damaged decals: - 882: -6,10 + 844: -6,10 + - node: + color: '#EFB34196' + id: DeliveryGreyscale + decals: + 5447: 1,23 + 5450: 0,23 + 5465: -1,23 - node: color: '#FFFFFFFF' id: Dirt decals: - 880: 0,6 - 881: 0,9 + 842: 0,6 + 843: 0,9 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 593: -8,25 - 594: -7,27 - 595: -6,27 - 596: -7,26 - 597: -7,26 - 598: -5,26 - 599: -2,27 - 600: -3,28 - 601: -4,26 - 602: -5,25 - 603: 0,26 - 604: 1,27 - 605: -2,25 - 606: -3,23 - 607: -4,22 - 608: -2,24 - 609: 2,26 - 610: 4,27 - 611: 1,26 - 612: -1,25 - 613: -2,24 - 614: -3,22 - 615: -4,20 - 616: -3,21 - 617: 0,24 - 618: 4,27 - 619: -1,23 - 620: -2,22 - 621: -4,20 - 622: -4,20 - 623: -3,21 - 624: -1,22 - 625: 1,24 - 626: 3,26 - 627: 4,26 - 628: 3,24 - 629: 1,23 - 630: 0,22 - 631: -1,21 - 632: -1,20 - 633: 0,21 - 634: 3,24 - 635: 4,25 - 636: 5,26 - 637: 5,25 - 638: 4,23 - 639: 2,21 - 640: 0,20 - 641: 0,20 - 642: 2,20 - 643: 2,21 - 644: 4,21 - 645: 4,22 - 646: 2,21 - 647: 1,20 - 648: 0,21 - 649: 0,24 - 650: 1,29 - 651: 2,30 - 652: 0,31 - 653: -1,31 - 654: -2,31 - 655: 0,31 - 656: 2,32 - 657: 2,32 - 658: 0,30 - 659: 0,30 - 660: -5,30 - 661: -5,30 - 662: -4,31 - 663: -4,32 - 664: -4,34 - 665: -5,34 - 666: -5,32 - 667: -6,31 - 668: -6,30 - 669: -4,30 - 670: -5,32 - 671: -5,34 - 672: -6,33 - 673: -7,32 - 674: -5,34 - 675: -4,37 - 676: -4,36 - 677: -4,36 - 678: 5,33 - 679: 5,33 - 680: 5,34 - 681: 4,31 - 682: 6,31 - 683: 5,31 - 684: 6,30 - 685: 5,32 - 686: 3,31 - 687: 3,31 - 688: 0,32 - 689: 0,33 - 690: 7,26 - 691: 7,27 - 692: 5,27 - 693: 7,26 - 694: 6,27 - 695: 7,25 - 696: 8,25 - 697: 6,25 - 698: 6,26 - 699: 6,25 - 700: 7,24 - 701: 6,26 - 702: 2,25 - 703: 3,21 - 704: 1,20 - 705: -1,21 - 706: -1,19 - 707: -3,17 - 708: -2,18 - 709: -3,16 - 710: -3,18 - 711: -2,14 - 712: -3,15 - 713: -3,17 - 714: -2,17 - 715: -1,15 - 716: 3,18 - 717: 1,17 - 718: 3,18 - 719: 1,17 - 720: 3,15 - 721: 3,17 - 722: 2,16 - 723: 3,16 - 724: 2,16 - 725: -5,16 - 726: -7,20 - 727: -6,14 - 728: -6,12 - 729: -6,14 - 730: -6,13 - 731: -4,12 - 732: -4,9 - 733: -6,10 - 734: -8,11 - 735: -8,8 - 736: -7,6 - 737: -7,5 - 738: -8,6 - 739: -7,7 - 740: -7,5 - 741: -5,5 - 742: -4,6 - 743: -6,6 - 744: -1,6 - 745: -2,6 - 746: -1,6 - 747: 2,6 - 748: 6,7 - 749: 7,8 - 750: 5,5 - 751: 5,5 - 752: 6,5 - 753: 5,6 - 754: 5,8 - 755: 7,6 - 756: 7,4 - 757: 7,8 - 758: 6,9 - 759: 6,10 - 760: 8,10 - 761: 3,9 - 762: -2,12 - 763: 1,12 - 764: -2,13 - 765: 1,12 - 766: 0,15 - 767: 0,16 - 768: 3,18 - 769: 3,16 - 770: 3,14 - 771: 3,9 - 772: 3,6 - 773: 3,5 - 774: -5,2 - 775: -6,1 - 776: -6,0 - 777: -5,-4 - 778: -5,-4 - 779: -6,-2 - 780: -6,-1 - 781: -6,-4 - 782: -6,-4 - 783: -5,-4 - 784: -6,-2 - 785: -6,0 - 786: -6,2 - 787: -5,3 - 788: -6,3 - 789: -6,-4 - 790: -5,-6 - 791: -6,-7 - 792: -6,-7 - 793: -7,-7 - 794: -6,-6 - 795: -7,-7 - 796: -1,-5 - 797: -1,-4 - 798: -1,-3 - 799: 1,-4 - 800: 4,-3 - 801: 2,-6 - 802: -4,-7 - 803: -3,-5 - 804: -3,-4 - 805: -3,-8 - 806: -1,-7 - 807: 2,-7 - 808: 5,-7 - 809: -1,-7 - 810: -3,-7 - 811: -3,-6 - 812: -2,-4 - 813: -1,-3 - 814: 2,-3 - 815: 1,-6 - 816: 2,-6 - 817: 2,-5 - 818: 3,-5 - 819: 2,-7 - 820: -1,-5 - 821: -1,-2 - 822: -2,-4 - 823: 0,-10 - 824: -1,-10 - 825: 0,-9 - 826: -1,-11 - 827: 0,-11 - 828: -1,-10 - 829: -1,-9 - 830: 6,-7 - 831: 7,-7 - 832: 5,-6 - 833: 7,-6 - 834: 5,-6 - 835: 5,-4 - 836: 5,-3 - 837: 6,-2 - 838: 5,-4 - 839: 6,-4 - 840: 6,-1 - 841: 6,1 - 842: 4,3 - 843: 5,3 - 844: 5,2 - 845: 5,2 - 846: 7,-9 - 847: 7,-10 - 848: 4,-13 - 849: 2,-13 - 850: 5,-13 - 851: 5,-13 - 852: 6,-13 - 853: 1,-14 - 854: -2,-14 - 855: -2,-14 - 856: -2,-13 - 857: -3,-13 - 858: -4,-14 - 859: -3,-13 - 860: -4,-13 - 861: -6,-14 - 862: -4,-13 - 863: -3,-12 - 864: -6,-14 - 865: -6,-14 - 866: -6,-11 - 867: -6,-10 - 868: -6,-9 - 869: -6,-11 - 870: -6,-13 - 871: -7,-13 - 872: -8,-12 - 873: -8,-11 - 874: -9,-13 - 875: -8,-14 - 876: -10,-13 - 877: -10,-11 - 878: -9,-11 - 879: -8,-14 - 897: -3,25 - 898: -4,25 - 899: -4,25 - 900: -3,24 - 901: -3,24 - 902: -1,22 - 903: -1,20 - 904: 0,20 - 905: 0,20 - 906: 1,20 - 907: 1,20 - 908: -2,20 - 909: -3,20 - 910: 1,24 - 911: 1,26 - 912: 0,26 - 913: 0,26 - 914: 0,26 - 915: -1,26 - 916: -1,27 - 917: 2,28 - 918: 2,28 - 919: 2,26 - 920: 2,26 - 921: 0,30 - 922: -1,30 - 923: -2,30 - 924: -1,31 - 925: 0,30 - 926: -4,30 - 927: -5,30 - 928: -5,30 - 929: -4,32 - 930: -4,32 - 931: -5,33 - 932: -5,34 - 933: -5,32 - 934: -2,17 - 935: -3,17 - 936: -3,17 - 937: -3,16 - 938: -2,15 - 939: -2,15 - 940: 5,15 - 941: 3,16 - 942: 2,15 - 943: 3,15 - 944: 2,16 - 945: 2,17 - 946: 3,18 - 947: 3,18 - 948: 3,18 - 949: 0,12 - 950: -2,12 - 951: 6,7 - 952: 5,8 - 953: 5,8 - 954: 6,8 - 955: 6,10 - 956: 6,10 - 957: -1,-6 - 958: -1,-5 - 959: -1,-5 - 960: -3,-4 - 961: -3,-4 - 962: -3,-6 - 963: -2,-6 - 964: -1,-6 - 965: -1,-7 - 966: -1,-7 - 967: 1,-7 - 968: 2,-6 - 969: 2,-6 - 970: 1,-6 - 971: 1,-4 - 972: -5,-4 - 973: -5,-3 - 974: -5,-3 - 975: -5,-2 - 976: -6,-2 - 977: -6,0 + 573: -8,25 + 574: -7,27 + 575: -6,27 + 576: -7,26 + 577: -7,26 + 578: -5,26 + 579: -2,27 + 580: -3,28 + 581: -4,26 + 582: -5,25 + 584: -2,25 + 585: -3,23 + 586: -4,22 + 588: 2,26 + 589: 4,27 + 591: -3,22 + 592: -4,20 + 593: -3,21 + 594: 4,27 + 595: -4,20 + 596: -4,20 + 597: -3,21 + 598: 3,26 + 599: 4,26 + 600: 3,24 + 601: -1,20 + 602: 3,24 + 603: 4,25 + 604: 5,26 + 605: 5,25 + 606: 4,23 + 607: 0,20 + 608: 0,20 + 609: 2,20 + 610: 4,21 + 611: 4,22 + 612: 1,20 + 613: 1,29 + 614: 2,30 + 615: 0,31 + 616: -1,31 + 617: -2,31 + 618: 0,31 + 619: 2,32 + 620: 2,32 + 621: 0,30 + 622: 0,30 + 623: -5,30 + 624: -5,30 + 625: -4,31 + 626: -4,32 + 627: -4,34 + 628: -5,34 + 629: -5,32 + 630: -6,31 + 631: -6,30 + 632: -4,30 + 633: -5,32 + 634: -5,34 + 635: -6,33 + 636: -7,32 + 637: -5,34 + 638: -4,37 + 639: -4,36 + 640: -4,36 + 641: 5,33 + 642: 5,33 + 643: 5,34 + 644: 4,31 + 645: 6,31 + 646: 5,31 + 647: 6,30 + 648: 5,32 + 649: 3,31 + 650: 3,31 + 651: 0,32 + 652: 0,33 + 653: 7,26 + 654: 7,27 + 655: 5,27 + 656: 7,26 + 657: 6,27 + 658: 7,25 + 659: 8,25 + 660: 6,25 + 661: 6,26 + 662: 6,25 + 663: 7,24 + 664: 6,26 + 665: 2,25 + 666: 3,21 + 667: 1,20 + 668: -1,19 + 669: -3,17 + 670: -2,18 + 671: -3,16 + 672: -3,18 + 673: -2,14 + 674: -3,15 + 675: -3,17 + 676: -2,17 + 677: -1,15 + 678: 3,18 + 679: 1,17 + 680: 3,18 + 681: 1,17 + 682: 3,15 + 683: 3,17 + 684: 2,16 + 685: 3,16 + 686: 2,16 + 687: -5,16 + 688: -7,20 + 689: -6,14 + 690: -6,12 + 691: -6,14 + 692: -6,13 + 693: -4,12 + 694: -4,9 + 695: -6,10 + 696: -8,11 + 697: -8,8 + 698: -7,6 + 699: -7,5 + 700: -8,6 + 701: -7,7 + 702: -7,5 + 703: -5,5 + 704: -4,6 + 705: -6,6 + 706: -1,6 + 707: -2,6 + 708: -1,6 + 709: 2,6 + 710: 6,7 + 711: 7,8 + 712: 5,5 + 713: 5,5 + 714: 6,5 + 715: 5,6 + 716: 5,8 + 717: 7,6 + 718: 7,4 + 719: 7,8 + 720: 6,9 + 721: 6,10 + 722: 8,10 + 723: 3,9 + 724: -2,12 + 725: 1,12 + 726: -2,13 + 727: 1,12 + 728: 0,15 + 729: 0,16 + 730: 3,18 + 731: 3,16 + 732: 3,14 + 733: 3,9 + 734: 3,6 + 735: 3,5 + 736: -5,2 + 737: -6,1 + 738: -6,0 + 739: -5,-4 + 740: -5,-4 + 741: -6,-2 + 742: -6,-1 + 743: -6,-4 + 744: -6,-4 + 745: -5,-4 + 746: -6,-2 + 747: -6,0 + 748: -6,2 + 749: -5,3 + 750: -6,3 + 751: -6,-4 + 752: -5,-6 + 753: -6,-7 + 754: -6,-7 + 755: -7,-7 + 756: -6,-6 + 757: -7,-7 + 758: -1,-5 + 759: -1,-4 + 760: -1,-3 + 761: 1,-4 + 762: 4,-3 + 763: 2,-6 + 764: -4,-7 + 765: -3,-5 + 766: -3,-4 + 767: -3,-8 + 768: -1,-7 + 769: 2,-7 + 770: 5,-7 + 771: -1,-7 + 772: -3,-7 + 773: -3,-6 + 774: -2,-4 + 775: -1,-3 + 776: 2,-3 + 777: 1,-6 + 778: 2,-6 + 779: 2,-5 + 780: 3,-5 + 781: 2,-7 + 782: -1,-5 + 783: -1,-2 + 784: -2,-4 + 785: 0,-10 + 786: -1,-10 + 787: 0,-9 + 788: -1,-11 + 789: 0,-11 + 790: -1,-10 + 791: -1,-9 + 792: 6,-7 + 793: 7,-7 + 794: 5,-6 + 795: 7,-6 + 796: 5,-6 + 797: 5,-4 + 798: 5,-3 + 799: 6,-2 + 800: 5,-4 + 801: 6,-4 + 802: 6,-1 + 803: 6,1 + 804: 4,3 + 805: 5,3 + 806: 5,2 + 807: 5,2 + 808: 7,-9 + 809: 7,-10 + 810: 4,-13 + 811: 2,-13 + 812: 5,-13 + 813: 5,-13 + 814: 6,-13 + 815: 1,-14 + 816: -2,-14 + 817: -2,-14 + 818: -2,-13 + 819: -3,-13 + 820: -4,-14 + 821: -3,-13 + 822: -4,-13 + 823: -6,-14 + 824: -4,-13 + 825: -3,-12 + 826: -6,-14 + 827: -6,-14 + 828: -6,-11 + 829: -6,-10 + 830: -6,-9 + 831: -6,-11 + 832: -6,-13 + 833: -7,-13 + 834: -8,-12 + 835: -8,-11 + 836: -9,-13 + 837: -8,-14 + 838: -10,-13 + 839: -10,-11 + 840: -9,-11 + 841: -8,-14 + 859: -3,25 + 860: -4,25 + 861: -4,25 + 862: -3,24 + 863: -3,24 + 864: -1,20 + 865: 0,20 + 866: 0,20 + 867: 1,20 + 868: 1,20 + 869: -2,20 + 870: -3,20 + 874: 2,28 + 875: 2,28 + 876: 2,26 + 877: 2,26 + 878: 0,30 + 879: -1,30 + 880: -2,30 + 881: -1,31 + 882: 0,30 + 883: -4,30 + 884: -5,30 + 885: -5,30 + 886: -4,32 + 887: -4,32 + 888: -5,33 + 889: -5,34 + 890: -5,32 + 891: -2,17 + 892: -3,17 + 893: -3,17 + 894: -3,16 + 895: -2,15 + 896: -2,15 + 897: 5,15 + 898: 3,16 + 899: 2,15 + 900: 3,15 + 901: 2,16 + 902: 2,17 + 903: 3,18 + 904: 3,18 + 905: 3,18 + 906: 0,12 + 907: -2,12 + 908: 6,7 + 909: 5,8 + 910: 5,8 + 911: 6,8 + 912: 6,10 + 913: 6,10 + 914: -1,-6 + 915: -1,-5 + 916: -1,-5 + 917: -3,-4 + 918: -3,-4 + 919: -3,-6 + 920: -2,-6 + 921: -1,-6 + 922: -1,-7 + 923: -1,-7 + 924: 1,-7 + 925: 2,-6 + 926: 2,-6 + 927: 1,-6 + 928: 1,-4 + 929: -5,-4 + 930: -5,-3 + 931: -5,-3 + 932: -5,-2 + 933: -6,-2 + 934: -6,0 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 883: -7,8 - 884: -7,8 - 885: -7,9 - 886: -6,8 - 887: -5,8 - 888: -5,10 - 889: -5,10 - 890: -6,10 - 891: -7,10 - 892: -8,9 - 893: -7,11 + 845: -7,8 + 846: -7,8 + 847: -7,9 + 848: -6,8 + 849: -5,8 + 850: -5,10 + 851: -5,10 + 852: -6,10 + 853: -7,10 + 854: -8,9 + 855: -7,11 - node: zIndex: 1 angle: -4.71238898038469 rad id: FloorTechMaintDirectionalCorner decals: - 3446: -2,11 - 3605: -2,11 - 3861: -2,11 - 4109: -2,11 - 4357: -2,11 - 4605: -2,11 + 3403: -2,11 + 3562: -2,11 + 3818: -2,11 + 4066: -2,11 + 4314: -2,11 + 4562: -2,11 + 4810: -2,11 + 5085: -2,11 + 5333: -2,11 - node: zIndex: 1 angle: -3.141592653589793 rad id: FloorTechMaintDirectionalCorner decals: - 3451: -2,7 - 3709: -2,7 - 3855: -2,7 - 4103: -2,7 - 4351: -2,7 - 4599: -2,7 + 3408: -2,7 + 3666: -2,7 + 3812: -2,7 + 4060: -2,7 + 4308: -2,7 + 4556: -2,7 + 4804: -2,7 + 5079: -2,7 + 5327: -2,7 - node: zIndex: 1 angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalCorner decals: - 3465: 2,7 - 3714: 2,7 - 3746: 2,7 - 3994: 2,7 - 4242: 2,7 - 4490: 2,7 + 3422: 2,7 + 3671: 2,7 + 3703: 2,7 + 3951: 2,7 + 4199: 2,7 + 4447: 2,7 + 4695: 2,7 + 4970: 2,7 + 5218: 2,7 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner decals: - 3459: 2,11 - 3499: 2,11 - 3752: 2,11 - 4000: 2,11 - 4248: 2,11 - 4496: 2,11 + 3416: 2,11 + 3456: 2,11 + 3709: 2,11 + 3957: 2,11 + 4205: 2,11 + 4453: 2,11 + 4701: 2,11 + 4976: 2,11 + 5224: 2,11 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge decals: - 3445: -2,11 - 3447: -2,10 - 3448: -2,9 - 3450: -2,7 - 3452: -2,8 - 3600: -2,8 - 3601: -2,9 - 3602: -2,10 - 3604: -2,11 - 3708: -2,7 - 3854: -2,7 - 3856: -2,8 - 3857: -2,9 - 3858: -2,10 - 3860: -2,11 - 4102: -2,7 - 4104: -2,8 - 4105: -2,9 - 4106: -2,10 - 4108: -2,11 - 4350: -2,7 - 4352: -2,8 - 4353: -2,9 - 4354: -2,10 - 4356: -2,11 - 4598: -2,7 - 4600: -2,8 - 4601: -2,9 - 4602: -2,10 - 4604: -2,11 + 3402: -2,11 + 3404: -2,10 + 3405: -2,9 + 3407: -2,7 + 3409: -2,8 + 3557: -2,8 + 3558: -2,9 + 3559: -2,10 + 3561: -2,11 + 3665: -2,7 + 3811: -2,7 + 3813: -2,8 + 3814: -2,9 + 3815: -2,10 + 3817: -2,11 + 4059: -2,7 + 4061: -2,8 + 4062: -2,9 + 4063: -2,10 + 4065: -2,11 + 4307: -2,7 + 4309: -2,8 + 4310: -2,9 + 4311: -2,10 + 4313: -2,11 + 4555: -2,7 + 4557: -2,8 + 4558: -2,9 + 4559: -2,10 + 4561: -2,11 + 4803: -2,7 + 4805: -2,8 + 4806: -2,9 + 4807: -2,10 + 4809: -2,11 + 5078: -2,7 + 5080: -2,8 + 5081: -2,9 + 5082: -2,10 + 5084: -2,11 + 5326: -2,7 + 5328: -2,8 + 5329: -2,9 + 5330: -2,10 + 5332: -2,11 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge decals: - 3449: -2,7 - 3454: -1,7 - 3456: 0,7 - 3463: 2,7 - 3467: 1,7 - 3707: -2,7 - 3710: -1,7 - 3711: 0,7 - 3712: 2,7 - 3715: 1,7 - 3724: 0,7 - 3734: 1,7 - 3744: 2,7 - 3853: -2,7 - 3870: -1,7 - 3972: 0,7 - 3982: 1,7 - 3992: 2,7 - 4101: -2,7 - 4118: -1,7 - 4220: 0,7 - 4230: 1,7 - 4240: 2,7 - 4349: -2,7 - 4366: -1,7 - 4468: 0,7 - 4478: 1,7 - 4488: 2,7 - 4597: -2,7 - 4614: -1,7 + 3406: -2,7 + 3411: -1,7 + 3413: 0,7 + 3420: 2,7 + 3424: 1,7 + 3664: -2,7 + 3667: -1,7 + 3668: 0,7 + 3669: 2,7 + 3672: 1,7 + 3681: 0,7 + 3691: 1,7 + 3701: 2,7 + 3810: -2,7 + 3827: -1,7 + 3929: 0,7 + 3939: 1,7 + 3949: 2,7 + 4058: -2,7 + 4075: -1,7 + 4177: 0,7 + 4187: 1,7 + 4197: 2,7 + 4306: -2,7 + 4323: -1,7 + 4425: 0,7 + 4435: 1,7 + 4445: 2,7 + 4554: -2,7 + 4571: -1,7 + 4673: 0,7 + 4683: 1,7 + 4693: 2,7 + 4802: -2,7 + 4819: -1,7 + 4948: 0,7 + 4958: 1,7 + 4968: 2,7 + 5077: -2,7 + 5094: -1,7 + 5196: 0,7 + 5206: 1,7 + 5216: 2,7 + 5325: -2,7 + 5342: -1,7 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge decals: - 3457: 2,11 - 3461: 2,10 - 3462: 2,9 - 3464: 2,7 - 3466: 2,8 - 3494: 2,8 - 3495: 2,9 - 3496: 2,10 - 3497: 2,11 - 3713: 2,7 - 3745: 2,7 - 3747: 2,8 - 3748: 2,9 - 3749: 2,10 - 3750: 2,11 - 3993: 2,7 - 3995: 2,8 - 3996: 2,9 - 3997: 2,10 - 3998: 2,11 - 4241: 2,7 - 4243: 2,8 - 4244: 2,9 - 4245: 2,10 - 4246: 2,11 - 4489: 2,7 - 4491: 2,8 - 4492: 2,9 - 4493: 2,10 - 4494: 2,11 + 3414: 2,11 + 3418: 2,10 + 3419: 2,9 + 3421: 2,7 + 3423: 2,8 + 3451: 2,8 + 3452: 2,9 + 3453: 2,10 + 3454: 2,11 + 3670: 2,7 + 3702: 2,7 + 3704: 2,8 + 3705: 2,9 + 3706: 2,10 + 3707: 2,11 + 3950: 2,7 + 3952: 2,8 + 3953: 2,9 + 3954: 2,10 + 3955: 2,11 + 4198: 2,7 + 4200: 2,8 + 4201: 2,9 + 4202: 2,10 + 4203: 2,11 + 4446: 2,7 + 4448: 2,8 + 4449: 2,9 + 4450: 2,10 + 4451: 2,11 + 4694: 2,7 + 4696: 2,8 + 4697: 2,9 + 4698: 2,10 + 4699: 2,11 + 4969: 2,7 + 4971: 2,8 + 4972: 2,9 + 4973: 2,10 + 4974: 2,11 + 5217: 2,7 + 5219: 2,8 + 5220: 2,9 + 5221: 2,10 + 5222: 2,11 - node: id: FloorTechMaintDirectionalEdge decals: - 3444: -2,11 - 3453: -1,11 - 3455: 0,11 - 3458: 2,11 - 3460: 1,11 - 3476: 0,11 - 3485: 1,11 - 3498: 2,11 - 3603: -2,11 - 3614: -1,11 - 3725: 0,11 - 3735: 1,11 - 3751: 2,11 - 3859: -2,11 - 3871: -1,11 - 3973: 0,11 - 3983: 1,11 - 3999: 2,11 - 4107: -2,11 - 4119: -1,11 - 4221: 0,11 - 4231: 1,11 - 4247: 2,11 - 4355: -2,11 - 4367: -1,11 - 4469: 0,11 - 4479: 1,11 - 4495: 2,11 - 4603: -2,11 - 4615: -1,11 + 3401: -2,11 + 3410: -1,11 + 3412: 0,11 + 3415: 2,11 + 3417: 1,11 + 3433: 0,11 + 3442: 1,11 + 3455: 2,11 + 3560: -2,11 + 3571: -1,11 + 3682: 0,11 + 3692: 1,11 + 3708: 2,11 + 3816: -2,11 + 3828: -1,11 + 3930: 0,11 + 3940: 1,11 + 3956: 2,11 + 4064: -2,11 + 4076: -1,11 + 4178: 0,11 + 4188: 1,11 + 4204: 2,11 + 4312: -2,11 + 4324: -1,11 + 4426: 0,11 + 4436: 1,11 + 4452: 2,11 + 4560: -2,11 + 4572: -1,11 + 4674: 0,11 + 4684: 1,11 + 4700: 2,11 + 4808: -2,11 + 4820: -1,11 + 4949: 0,11 + 4959: 1,11 + 4975: 2,11 + 5083: -2,11 + 5095: -1,11 + 5197: 0,11 + 5207: 1,11 + 5223: 2,11 + 5331: -2,11 + 5343: -1,11 - node: zIndex: 1 id: LatticeCornerNE decals: - 984: 0,1 - 992: 1,1 - 1000: 2,1 - 1008: 3,0 - 1016: 3,1 - 1024: 4,0 - 1032: 4,1 - 1040: 8,12 - 1052: -9,3 - 1060: -8,12 - 1068: -4,0 - 1076: -4,1 - 1084: -3,0 - 1092: -3,1 - 1100: -2,1 - 1108: -1,1 - 1117: -10,-16 - 1122: -4,-1 - 1130: 4,-1 - 1148: -9,-17 - 1151: -3,-20 - 1156: 6,16 - 1164: 6,17 - 1172: 6,18 - 1180: 6,19 - 1188: 6,20 - 1200: -9,24 - 1208: 0,1 - 1216: 1,1 - 1224: 2,1 - 1232: 3,0 - 1240: 3,1 - 1248: 4,0 - 1256: 4,1 - 1264: 8,12 - 1276: -9,3 - 1284: -8,12 - 1292: -4,0 - 1300: -4,1 - 1308: -3,0 - 1316: -3,1 - 1324: -2,1 - 1332: -1,1 - 1341: -10,-16 - 1346: -4,-1 - 1354: 4,-1 - 1372: -9,-17 - 1375: -3,-20 - 1380: 6,16 - 1388: 6,17 - 1396: 6,18 - 1404: 6,19 - 1412: 6,20 - 1424: -9,24 - 1432: 0,1 - 1440: 1,1 - 1448: 2,1 - 1456: 3,0 - 1464: 3,1 - 1472: 4,0 - 1480: 4,1 - 1488: 8,12 - 1500: -9,3 - 1508: -8,12 - 1516: -4,0 - 1524: -4,1 - 1532: -3,0 - 1540: -3,1 - 1548: -2,1 - 1556: -1,1 - 1565: -10,-16 - 1570: -4,-1 - 1578: 4,-1 - 1596: -9,-17 - 1599: -3,-20 - 1604: 6,16 - 1612: 6,17 - 1620: 6,18 - 1628: 6,19 - 1636: 6,20 - 1648: -9,24 - 1656: 0,1 - 1664: 1,1 - 1672: 2,1 - 1680: 3,0 - 1688: 3,1 - 1696: 4,0 - 1704: 4,1 - 1712: 8,12 - 1724: -9,3 - 1732: -8,12 - 1740: -4,0 - 1748: -4,1 - 1756: -3,0 - 1764: -3,1 - 1772: -2,1 - 1780: -1,1 - 1789: -10,-16 - 1794: -4,-1 - 1802: 4,-1 - 1820: -9,-17 - 1823: -3,-20 - 1828: 6,16 - 1836: 6,17 - 1844: 6,18 - 1852: 6,19 - 1860: 6,20 - 1872: -9,24 - 1880: 0,1 - 1888: 1,1 - 1896: 2,1 - 1904: 3,0 - 1912: 3,1 - 1920: 4,0 - 1928: 4,1 - 1936: 8,12 - 1948: -9,3 - 1953: -4,0 - 1961: -4,1 - 1969: -3,0 - 1977: -3,1 - 1985: -2,1 - 1993: -1,1 - 2002: -10,-16 - 2007: -4,-1 - 2015: 4,-1 - 2033: -9,-17 - 2036: -3,-20 - 2041: 6,16 - 2049: 6,17 - 2057: 6,18 - 2065: 6,19 - 2073: 6,20 - 2085: -9,24 - 2093: -8,12 - 2104: 0,1 - 2112: 1,1 - 2120: 2,1 - 2128: 3,0 - 2136: 3,1 - 2144: 4,0 - 2152: 4,1 - 2160: 8,12 - 2172: -9,3 - 2180: -8,12 - 2188: -4,0 - 2196: -4,1 - 2204: -3,0 - 2212: -3,1 - 2220: -2,1 - 2228: -1,1 - 2237: -10,-16 - 2242: -4,-1 - 2250: 4,-1 - 2268: -9,-17 - 2271: -3,-20 - 2276: 6,16 - 2284: 6,17 - 2292: 6,18 - 2300: 6,19 - 2308: 6,20 - 2320: -9,24 - 2328: 0,1 - 2336: 1,1 - 2344: 2,1 - 2352: 3,0 - 2360: 3,1 - 2368: 4,0 - 2376: 4,1 - 2384: 8,12 - 2396: -9,3 - 2404: -8,12 - 2412: -4,0 - 2420: -4,1 - 2428: -3,0 - 2436: -3,1 - 2444: -2,1 - 2452: -1,1 - 2461: -10,-16 - 2466: -4,-1 - 2474: 4,-1 - 2492: -9,-17 - 2495: -3,-20 - 2500: 6,16 - 2508: 6,17 - 2516: 6,18 - 2524: 6,19 - 2532: 6,20 - 2544: -9,24 - 2552: 0,1 - 2560: 1,1 - 2568: 2,1 - 2576: 3,0 - 2584: 3,1 - 2592: 4,0 - 2600: 4,1 - 2608: 8,12 - 2620: -9,3 - 2628: -8,12 - 2636: -4,0 - 2644: -4,1 - 2652: -3,0 - 2660: -3,1 - 2668: -2,1 - 2676: -1,1 - 2685: -10,-16 - 2690: -4,-1 - 2698: 4,-1 - 2716: -9,-17 - 2719: -3,-20 - 2724: 6,16 - 2732: 6,17 - 2740: 6,18 - 2748: 6,19 - 2756: 6,20 - 2768: -9,24 - 2776: 0,1 - 2784: 1,1 - 2792: 2,1 - 2800: 3,0 - 2808: 3,1 - 2816: 4,0 - 2824: 4,1 - 2832: 8,12 - 2844: -9,3 - 2852: -8,12 - 2860: -4,0 - 2868: -4,1 - 2876: -3,0 - 2884: -3,1 - 2892: -2,1 - 2900: -1,1 - 2909: -10,-16 - 2914: -4,-1 - 2922: 4,-1 - 2940: -9,-17 - 2943: -3,-20 - 2948: 6,16 - 2956: 6,17 - 2964: 6,18 - 2972: 6,19 - 2980: 6,20 - 2992: -9,24 - 3000: 0,1 - 3008: 1,1 - 3016: 2,1 - 3024: 3,0 - 3032: 3,1 - 3040: 4,0 - 3048: 4,1 - 3056: 8,12 - 3068: -9,3 - 3076: -8,12 - 3084: -4,0 - 3092: -4,1 - 3100: -3,0 - 3108: -3,1 - 3116: -2,1 - 3124: -1,1 - 3133: -10,-16 - 3138: -4,-1 - 3146: 4,-1 - 3164: -9,-17 - 3167: -3,-20 - 3172: 6,16 - 3180: 6,17 - 3188: 6,18 - 3196: 6,19 - 3204: 6,20 - 3216: -9,24 - 3224: 0,1 - 3232: 1,1 - 3240: 2,1 - 3248: 3,0 - 3256: 3,1 - 3264: 4,0 - 3272: 4,1 - 3280: 8,12 - 3292: -9,3 - 3300: -8,12 - 3308: -4,0 - 3316: -4,1 - 3324: -3,0 - 3332: -3,1 - 3340: -2,1 - 3348: -1,1 - 3357: -10,-16 - 3362: -4,-1 - 3370: 4,-1 - 3388: -9,-17 - 3391: -3,-20 - 3396: 6,16 - 3404: 6,17 - 3412: 6,18 - 3420: 6,19 - 3428: 6,20 - 3440: -9,24 - 3472: 0,1 - 3481: 1,1 - 3490: 2,1 - 3504: 3,0 - 3512: 3,1 - 3520: 4,0 - 3528: 4,1 - 3536: 8,12 - 3548: -9,3 - 3556: -8,12 - 3564: -4,0 - 3572: -4,1 - 3580: -3,0 - 3588: -3,1 - 3596: -2,1 - 3610: -1,1 - 3620: -10,-16 - 3625: -4,-1 - 3633: 4,-1 - 3651: -9,-17 - 3654: -3,-20 - 3659: 6,16 - 3667: 6,17 - 3675: 6,18 - 3683: 6,19 - 3691: 6,20 - 3703: -9,24 - 3720: 0,1 - 3730: 1,1 - 3740: 2,1 - 3757: 3,0 - 3765: 3,1 - 3773: 4,0 - 3781: 4,1 - 3789: 8,12 - 3801: -9,3 - 3809: -8,12 - 3817: -4,0 - 3825: -4,1 - 3833: -3,0 - 3841: -3,1 - 3849: -2,1 - 3866: -1,1 - 3877: -10,-16 - 3882: -4,-1 - 3890: 4,-1 - 3908: -9,-17 - 3911: -3,-20 - 3916: 6,16 - 3924: 6,17 - 3932: 6,18 - 3940: 6,19 - 3948: 6,20 - 3960: -9,24 - 3968: 0,1 - 3978: 1,1 - 3988: 2,1 - 4005: 3,0 - 4013: 3,1 - 4021: 4,0 - 4029: 4,1 - 4037: 8,12 - 4049: -9,3 - 4057: -8,12 - 4065: -4,0 - 4073: -4,1 - 4081: -3,0 - 4089: -3,1 - 4097: -2,1 - 4114: -1,1 - 4122: -10,-16 - 4127: -4,-1 - 4135: 4,-1 - 4150: -9,-17 - 4153: -3,-20 - 4158: 6,16 - 4166: 6,17 - 4174: 6,18 - 4182: 6,19 - 4190: 6,20 - 4202: -9,24 - 4216: 0,1 - 4226: 1,1 - 4236: 2,1 - 4253: 3,0 - 4261: 3,1 - 4269: 4,0 - 4277: 4,1 - 4285: 8,12 - 4297: -9,3 - 4305: -8,12 - 4313: -4,0 - 4321: -4,1 - 4329: -3,0 - 4337: -3,1 - 4345: -2,1 - 4362: -1,1 - 4373: -10,-16 - 4378: -4,-1 - 4386: 4,-1 - 4404: -9,-17 - 4407: -3,-20 - 4412: 6,16 - 4420: 6,17 - 4428: 6,18 - 4436: 6,19 - 4444: 6,20 - 4456: -9,24 - 4464: 0,1 - 4474: 1,1 - 4484: 2,1 - 4501: 3,0 - 4509: 3,1 - 4517: 4,0 - 4525: 4,1 - 4533: 8,12 - 4545: -9,3 - 4553: -8,12 - 4561: -4,0 - 4569: -4,1 - 4577: -3,0 - 4585: -3,1 - 4593: -2,1 - 4610: -1,1 - 4621: -10,-16 - 4626: -4,-1 - 4634: 4,-1 - 4652: -9,-17 - 4655: -3,-20 - 4660: 6,16 - 4668: 6,17 - 4676: 6,18 - 4684: 6,19 - 4692: 6,20 - 4704: -9,24 + 941: 0,1 + 949: 1,1 + 957: 2,1 + 965: 3,0 + 973: 3,1 + 981: 4,0 + 989: 4,1 + 997: 8,12 + 1009: -9,3 + 1017: -8,12 + 1025: -4,0 + 1033: -4,1 + 1041: -3,0 + 1049: -3,1 + 1057: -2,1 + 1065: -1,1 + 1074: -10,-16 + 1079: -4,-1 + 1087: 4,-1 + 1105: -9,-17 + 1108: -3,-20 + 1113: 6,16 + 1121: 6,17 + 1129: 6,18 + 1137: 6,19 + 1145: 6,20 + 1157: -9,24 + 1165: 0,1 + 1173: 1,1 + 1181: 2,1 + 1189: 3,0 + 1197: 3,1 + 1205: 4,0 + 1213: 4,1 + 1221: 8,12 + 1233: -9,3 + 1241: -8,12 + 1249: -4,0 + 1257: -4,1 + 1265: -3,0 + 1273: -3,1 + 1281: -2,1 + 1289: -1,1 + 1298: -10,-16 + 1303: -4,-1 + 1311: 4,-1 + 1329: -9,-17 + 1332: -3,-20 + 1337: 6,16 + 1345: 6,17 + 1353: 6,18 + 1361: 6,19 + 1369: 6,20 + 1381: -9,24 + 1389: 0,1 + 1397: 1,1 + 1405: 2,1 + 1413: 3,0 + 1421: 3,1 + 1429: 4,0 + 1437: 4,1 + 1445: 8,12 + 1457: -9,3 + 1465: -8,12 + 1473: -4,0 + 1481: -4,1 + 1489: -3,0 + 1497: -3,1 + 1505: -2,1 + 1513: -1,1 + 1522: -10,-16 + 1527: -4,-1 + 1535: 4,-1 + 1553: -9,-17 + 1556: -3,-20 + 1561: 6,16 + 1569: 6,17 + 1577: 6,18 + 1585: 6,19 + 1593: 6,20 + 1605: -9,24 + 1613: 0,1 + 1621: 1,1 + 1629: 2,1 + 1637: 3,0 + 1645: 3,1 + 1653: 4,0 + 1661: 4,1 + 1669: 8,12 + 1681: -9,3 + 1689: -8,12 + 1697: -4,0 + 1705: -4,1 + 1713: -3,0 + 1721: -3,1 + 1729: -2,1 + 1737: -1,1 + 1746: -10,-16 + 1751: -4,-1 + 1759: 4,-1 + 1777: -9,-17 + 1780: -3,-20 + 1785: 6,16 + 1793: 6,17 + 1801: 6,18 + 1809: 6,19 + 1817: 6,20 + 1829: -9,24 + 1837: 0,1 + 1845: 1,1 + 1853: 2,1 + 1861: 3,0 + 1869: 3,1 + 1877: 4,0 + 1885: 4,1 + 1893: 8,12 + 1905: -9,3 + 1910: -4,0 + 1918: -4,1 + 1926: -3,0 + 1934: -3,1 + 1942: -2,1 + 1950: -1,1 + 1959: -10,-16 + 1964: -4,-1 + 1972: 4,-1 + 1990: -9,-17 + 1993: -3,-20 + 1998: 6,16 + 2006: 6,17 + 2014: 6,18 + 2022: 6,19 + 2030: 6,20 + 2042: -9,24 + 2050: -8,12 + 2061: 0,1 + 2069: 1,1 + 2077: 2,1 + 2085: 3,0 + 2093: 3,1 + 2101: 4,0 + 2109: 4,1 + 2117: 8,12 + 2129: -9,3 + 2137: -8,12 + 2145: -4,0 + 2153: -4,1 + 2161: -3,0 + 2169: -3,1 + 2177: -2,1 + 2185: -1,1 + 2194: -10,-16 + 2199: -4,-1 + 2207: 4,-1 + 2225: -9,-17 + 2228: -3,-20 + 2233: 6,16 + 2241: 6,17 + 2249: 6,18 + 2257: 6,19 + 2265: 6,20 + 2277: -9,24 + 2285: 0,1 + 2293: 1,1 + 2301: 2,1 + 2309: 3,0 + 2317: 3,1 + 2325: 4,0 + 2333: 4,1 + 2341: 8,12 + 2353: -9,3 + 2361: -8,12 + 2369: -4,0 + 2377: -4,1 + 2385: -3,0 + 2393: -3,1 + 2401: -2,1 + 2409: -1,1 + 2418: -10,-16 + 2423: -4,-1 + 2431: 4,-1 + 2449: -9,-17 + 2452: -3,-20 + 2457: 6,16 + 2465: 6,17 + 2473: 6,18 + 2481: 6,19 + 2489: 6,20 + 2501: -9,24 + 2509: 0,1 + 2517: 1,1 + 2525: 2,1 + 2533: 3,0 + 2541: 3,1 + 2549: 4,0 + 2557: 4,1 + 2565: 8,12 + 2577: -9,3 + 2585: -8,12 + 2593: -4,0 + 2601: -4,1 + 2609: -3,0 + 2617: -3,1 + 2625: -2,1 + 2633: -1,1 + 2642: -10,-16 + 2647: -4,-1 + 2655: 4,-1 + 2673: -9,-17 + 2676: -3,-20 + 2681: 6,16 + 2689: 6,17 + 2697: 6,18 + 2705: 6,19 + 2713: 6,20 + 2725: -9,24 + 2733: 0,1 + 2741: 1,1 + 2749: 2,1 + 2757: 3,0 + 2765: 3,1 + 2773: 4,0 + 2781: 4,1 + 2789: 8,12 + 2801: -9,3 + 2809: -8,12 + 2817: -4,0 + 2825: -4,1 + 2833: -3,0 + 2841: -3,1 + 2849: -2,1 + 2857: -1,1 + 2866: -10,-16 + 2871: -4,-1 + 2879: 4,-1 + 2897: -9,-17 + 2900: -3,-20 + 2905: 6,16 + 2913: 6,17 + 2921: 6,18 + 2929: 6,19 + 2937: 6,20 + 2949: -9,24 + 2957: 0,1 + 2965: 1,1 + 2973: 2,1 + 2981: 3,0 + 2989: 3,1 + 2997: 4,0 + 3005: 4,1 + 3013: 8,12 + 3025: -9,3 + 3033: -8,12 + 3041: -4,0 + 3049: -4,1 + 3057: -3,0 + 3065: -3,1 + 3073: -2,1 + 3081: -1,1 + 3090: -10,-16 + 3095: -4,-1 + 3103: 4,-1 + 3121: -9,-17 + 3124: -3,-20 + 3129: 6,16 + 3137: 6,17 + 3145: 6,18 + 3153: 6,19 + 3161: 6,20 + 3173: -9,24 + 3181: 0,1 + 3189: 1,1 + 3197: 2,1 + 3205: 3,0 + 3213: 3,1 + 3221: 4,0 + 3229: 4,1 + 3237: 8,12 + 3249: -9,3 + 3257: -8,12 + 3265: -4,0 + 3273: -4,1 + 3281: -3,0 + 3289: -3,1 + 3297: -2,1 + 3305: -1,1 + 3314: -10,-16 + 3319: -4,-1 + 3327: 4,-1 + 3345: -9,-17 + 3348: -3,-20 + 3353: 6,16 + 3361: 6,17 + 3369: 6,18 + 3377: 6,19 + 3385: 6,20 + 3397: -9,24 + 3429: 0,1 + 3438: 1,1 + 3447: 2,1 + 3461: 3,0 + 3469: 3,1 + 3477: 4,0 + 3485: 4,1 + 3493: 8,12 + 3505: -9,3 + 3513: -8,12 + 3521: -4,0 + 3529: -4,1 + 3537: -3,0 + 3545: -3,1 + 3553: -2,1 + 3567: -1,1 + 3577: -10,-16 + 3582: -4,-1 + 3590: 4,-1 + 3608: -9,-17 + 3611: -3,-20 + 3616: 6,16 + 3624: 6,17 + 3632: 6,18 + 3640: 6,19 + 3648: 6,20 + 3660: -9,24 + 3677: 0,1 + 3687: 1,1 + 3697: 2,1 + 3714: 3,0 + 3722: 3,1 + 3730: 4,0 + 3738: 4,1 + 3746: 8,12 + 3758: -9,3 + 3766: -8,12 + 3774: -4,0 + 3782: -4,1 + 3790: -3,0 + 3798: -3,1 + 3806: -2,1 + 3823: -1,1 + 3834: -10,-16 + 3839: -4,-1 + 3847: 4,-1 + 3865: -9,-17 + 3868: -3,-20 + 3873: 6,16 + 3881: 6,17 + 3889: 6,18 + 3897: 6,19 + 3905: 6,20 + 3917: -9,24 + 3925: 0,1 + 3935: 1,1 + 3945: 2,1 + 3962: 3,0 + 3970: 3,1 + 3978: 4,0 + 3986: 4,1 + 3994: 8,12 + 4006: -9,3 + 4014: -8,12 + 4022: -4,0 + 4030: -4,1 + 4038: -3,0 + 4046: -3,1 + 4054: -2,1 + 4071: -1,1 + 4079: -10,-16 + 4084: -4,-1 + 4092: 4,-1 + 4107: -9,-17 + 4110: -3,-20 + 4115: 6,16 + 4123: 6,17 + 4131: 6,18 + 4139: 6,19 + 4147: 6,20 + 4159: -9,24 + 4173: 0,1 + 4183: 1,1 + 4193: 2,1 + 4210: 3,0 + 4218: 3,1 + 4226: 4,0 + 4234: 4,1 + 4242: 8,12 + 4254: -9,3 + 4262: -8,12 + 4270: -4,0 + 4278: -4,1 + 4286: -3,0 + 4294: -3,1 + 4302: -2,1 + 4319: -1,1 + 4330: -10,-16 + 4335: -4,-1 + 4343: 4,-1 + 4361: -9,-17 + 4364: -3,-20 + 4369: 6,16 + 4377: 6,17 + 4385: 6,18 + 4393: 6,19 + 4401: 6,20 + 4413: -9,24 + 4421: 0,1 + 4431: 1,1 + 4441: 2,1 + 4458: 3,0 + 4466: 3,1 + 4474: 4,0 + 4482: 4,1 + 4490: 8,12 + 4502: -9,3 + 4510: -8,12 + 4518: -4,0 + 4526: -4,1 + 4534: -3,0 + 4542: -3,1 + 4550: -2,1 + 4567: -1,1 + 4578: -10,-16 + 4583: -4,-1 + 4591: 4,-1 + 4609: -9,-17 + 4612: -3,-20 + 4617: 6,16 + 4625: 6,17 + 4633: 6,18 + 4641: 6,19 + 4649: 6,20 + 4661: -9,24 + 4669: 0,1 + 4679: 1,1 + 4689: 2,1 + 4706: 3,0 + 4714: 3,1 + 4722: 4,0 + 4730: 4,1 + 4738: 8,12 + 4750: -9,3 + 4758: -8,12 + 4766: -4,0 + 4774: -4,1 + 4782: -3,0 + 4790: -3,1 + 4798: -2,1 + 4815: -1,1 + 4826: -10,-16 + 4831: -4,-1 + 4839: 4,-1 + 4857: -9,-17 + 4860: -3,-20 + 4865: 6,16 + 4873: 6,17 + 4881: 6,18 + 4889: 6,19 + 4897: 6,20 + 4909: -9,24 + 4944: 0,1 + 4954: 1,1 + 4964: 2,1 + 4981: 3,0 + 4989: 3,1 + 4997: 4,0 + 5005: 4,1 + 5013: 8,12 + 5025: -9,3 + 5033: -8,12 + 5041: -4,0 + 5049: -4,1 + 5057: -3,0 + 5065: -3,1 + 5073: -2,1 + 5090: -1,1 + 5101: -10,-16 + 5106: -4,-1 + 5114: 4,-1 + 5132: -9,-17 + 5135: -3,-20 + 5140: 6,16 + 5148: 6,17 + 5156: 6,18 + 5164: 6,19 + 5172: 6,20 + 5184: -9,24 + 5192: 0,1 + 5202: 1,1 + 5212: 2,1 + 5229: 3,0 + 5237: 3,1 + 5245: 4,0 + 5253: 4,1 + 5261: 8,12 + 5273: -9,3 + 5281: -8,12 + 5289: -4,0 + 5297: -4,1 + 5305: -3,0 + 5313: -3,1 + 5321: -2,1 + 5338: -1,1 + 5349: -10,-16 + 5354: -4,-1 + 5362: 4,-1 + 5380: -9,-17 + 5383: -3,-20 + 5388: 6,16 + 5396: 6,17 + 5404: 6,18 + 5412: 6,19 + 5420: 6,20 + 5432: -9,24 - node: zIndex: 1 id: LatticeCornerNW decals: - 987: 0,1 - 995: 1,1 - 1003: 2,1 - 1011: 3,0 - 1019: 3,1 - 1027: 4,0 - 1035: 4,1 - 1043: 8,12 - 1046: 9,4 - 1063: -8,12 - 1071: -4,0 - 1079: -4,1 - 1087: -3,0 - 1095: -3,1 - 1103: -2,1 - 1111: -1,1 - 1125: -4,-1 - 1133: 4,-1 - 1136: 10,-16 - 1142: 3,-20 - 1145: 9,-17 - 1159: 6,16 - 1167: 6,17 - 1175: 6,18 - 1183: 6,19 - 1191: 6,20 - 1194: 9,24 - 1211: 0,1 - 1219: 1,1 - 1227: 2,1 - 1235: 3,0 - 1243: 3,1 - 1251: 4,0 - 1259: 4,1 - 1267: 8,12 - 1270: 9,4 - 1287: -8,12 - 1295: -4,0 - 1303: -4,1 - 1311: -3,0 - 1319: -3,1 - 1327: -2,1 - 1335: -1,1 - 1349: -4,-1 - 1357: 4,-1 - 1360: 10,-16 - 1366: 3,-20 - 1369: 9,-17 - 1383: 6,16 - 1391: 6,17 - 1399: 6,18 - 1407: 6,19 - 1415: 6,20 - 1418: 9,24 - 1435: 0,1 - 1443: 1,1 - 1451: 2,1 - 1459: 3,0 - 1467: 3,1 - 1475: 4,0 - 1483: 4,1 - 1491: 8,12 - 1494: 9,4 - 1511: -8,12 - 1519: -4,0 - 1527: -4,1 - 1535: -3,0 - 1543: -3,1 - 1551: -2,1 - 1559: -1,1 - 1573: -4,-1 - 1581: 4,-1 - 1584: 10,-16 - 1590: 3,-20 - 1593: 9,-17 - 1607: 6,16 - 1615: 6,17 - 1623: 6,18 - 1631: 6,19 - 1639: 6,20 - 1642: 9,24 - 1659: 0,1 - 1667: 1,1 - 1675: 2,1 - 1683: 3,0 - 1691: 3,1 - 1699: 4,0 - 1707: 4,1 - 1715: 8,12 - 1718: 9,4 - 1735: -8,12 - 1743: -4,0 - 1751: -4,1 - 1759: -3,0 - 1767: -3,1 - 1775: -2,1 - 1783: -1,1 - 1797: -4,-1 - 1805: 4,-1 - 1808: 10,-16 - 1814: 3,-20 - 1817: 9,-17 - 1831: 6,16 - 1839: 6,17 - 1847: 6,18 - 1855: 6,19 - 1863: 6,20 - 1866: 9,24 - 1883: 0,1 - 1891: 1,1 - 1899: 2,1 - 1907: 3,0 - 1915: 3,1 - 1923: 4,0 - 1931: 4,1 - 1939: 8,12 - 1942: 9,4 - 1956: -4,0 - 1964: -4,1 - 1972: -3,0 - 1980: -3,1 - 1988: -2,1 - 1996: -1,1 - 2010: -4,-1 - 2018: 4,-1 - 2021: 10,-16 - 2027: 3,-20 - 2030: 9,-17 - 2044: 6,16 - 2052: 6,17 - 2060: 6,18 - 2068: 6,19 - 2076: 6,20 - 2079: 9,24 - 2096: -8,12 - 2107: 0,1 - 2115: 1,1 - 2123: 2,1 - 2131: 3,0 - 2139: 3,1 - 2147: 4,0 - 2155: 4,1 - 2163: 8,12 - 2166: 9,4 - 2183: -8,12 - 2191: -4,0 - 2199: -4,1 - 2207: -3,0 - 2215: -3,1 - 2223: -2,1 - 2231: -1,1 - 2245: -4,-1 - 2253: 4,-1 - 2256: 10,-16 - 2262: 3,-20 - 2265: 9,-17 - 2279: 6,16 - 2287: 6,17 - 2295: 6,18 - 2303: 6,19 - 2311: 6,20 - 2314: 9,24 - 2331: 0,1 - 2339: 1,1 - 2347: 2,1 - 2355: 3,0 - 2363: 3,1 - 2371: 4,0 - 2379: 4,1 - 2387: 8,12 - 2390: 9,4 - 2407: -8,12 - 2415: -4,0 - 2423: -4,1 - 2431: -3,0 - 2439: -3,1 - 2447: -2,1 - 2455: -1,1 - 2469: -4,-1 - 2477: 4,-1 - 2480: 10,-16 - 2486: 3,-20 - 2489: 9,-17 - 2503: 6,16 - 2511: 6,17 - 2519: 6,18 - 2527: 6,19 - 2535: 6,20 - 2538: 9,24 - 2555: 0,1 - 2563: 1,1 - 2571: 2,1 - 2579: 3,0 - 2587: 3,1 - 2595: 4,0 - 2603: 4,1 - 2611: 8,12 - 2614: 9,4 - 2631: -8,12 - 2639: -4,0 - 2647: -4,1 - 2655: -3,0 - 2663: -3,1 - 2671: -2,1 - 2679: -1,1 - 2693: -4,-1 - 2701: 4,-1 - 2704: 10,-16 - 2710: 3,-20 - 2713: 9,-17 - 2727: 6,16 - 2735: 6,17 - 2743: 6,18 - 2751: 6,19 - 2759: 6,20 - 2762: 9,24 - 2779: 0,1 - 2787: 1,1 - 2795: 2,1 - 2803: 3,0 - 2811: 3,1 - 2819: 4,0 - 2827: 4,1 - 2835: 8,12 - 2838: 9,4 - 2855: -8,12 - 2863: -4,0 - 2871: -4,1 - 2879: -3,0 - 2887: -3,1 - 2895: -2,1 - 2903: -1,1 - 2917: -4,-1 - 2925: 4,-1 - 2928: 10,-16 - 2934: 3,-20 - 2937: 9,-17 - 2951: 6,16 - 2959: 6,17 - 2967: 6,18 - 2975: 6,19 - 2983: 6,20 - 2986: 9,24 - 3003: 0,1 - 3011: 1,1 - 3019: 2,1 - 3027: 3,0 - 3035: 3,1 - 3043: 4,0 - 3051: 4,1 - 3059: 8,12 - 3062: 9,4 - 3079: -8,12 - 3087: -4,0 - 3095: -4,1 - 3103: -3,0 - 3111: -3,1 - 3119: -2,1 - 3127: -1,1 - 3141: -4,-1 - 3149: 4,-1 - 3152: 10,-16 - 3158: 3,-20 - 3161: 9,-17 - 3175: 6,16 - 3183: 6,17 - 3191: 6,18 - 3199: 6,19 - 3207: 6,20 - 3210: 9,24 - 3227: 0,1 - 3235: 1,1 - 3243: 2,1 - 3251: 3,0 - 3259: 3,1 - 3267: 4,0 - 3275: 4,1 - 3283: 8,12 - 3286: 9,4 - 3303: -8,12 - 3311: -4,0 - 3319: -4,1 - 3327: -3,0 - 3335: -3,1 - 3343: -2,1 - 3351: -1,1 - 3365: -4,-1 - 3373: 4,-1 - 3376: 10,-16 - 3382: 3,-20 - 3385: 9,-17 - 3399: 6,16 - 3407: 6,17 - 3415: 6,18 - 3423: 6,19 - 3431: 6,20 - 3434: 9,24 - 3475: 0,1 - 3484: 1,1 - 3493: 2,1 - 3507: 3,0 - 3515: 3,1 - 3523: 4,0 - 3531: 4,1 - 3539: 8,12 - 3542: 9,4 - 3559: -8,12 - 3567: -4,0 - 3575: -4,1 - 3583: -3,0 - 3591: -3,1 - 3599: -2,1 - 3613: -1,1 - 3628: -4,-1 - 3636: 4,-1 - 3639: 10,-16 - 3645: 3,-20 - 3648: 9,-17 - 3662: 6,16 - 3670: 6,17 - 3678: 6,18 - 3686: 6,19 - 3694: 6,20 - 3697: 9,24 - 3723: 0,1 - 3733: 1,1 - 3743: 2,1 - 3760: 3,0 - 3768: 3,1 - 3776: 4,0 - 3784: 4,1 - 3792: 8,12 - 3795: 9,4 - 3812: -8,12 - 3820: -4,0 - 3828: -4,1 - 3836: -3,0 - 3844: -3,1 - 3852: -2,1 - 3869: -1,1 - 3885: -4,-1 - 3893: 4,-1 - 3896: 10,-16 - 3902: 3,-20 - 3905: 9,-17 - 3919: 6,16 - 3927: 6,17 - 3935: 6,18 - 3943: 6,19 - 3951: 6,20 - 3954: 9,24 - 3971: 0,1 - 3981: 1,1 - 3991: 2,1 - 4008: 3,0 - 4016: 3,1 - 4024: 4,0 - 4032: 4,1 - 4040: 8,12 - 4043: 9,4 - 4060: -8,12 - 4068: -4,0 - 4076: -4,1 - 4084: -3,0 - 4092: -3,1 - 4100: -2,1 - 4117: -1,1 - 4130: -4,-1 - 4138: 4,-1 - 4141: 10,-16 - 4144: 3,-20 - 4147: 9,-17 - 4161: 6,16 - 4169: 6,17 - 4177: 6,18 - 4185: 6,19 - 4193: 6,20 - 4196: 9,24 - 4219: 0,1 - 4229: 1,1 - 4239: 2,1 - 4256: 3,0 - 4264: 3,1 - 4272: 4,0 - 4280: 4,1 - 4288: 8,12 - 4291: 9,4 - 4308: -8,12 - 4316: -4,0 - 4324: -4,1 - 4332: -3,0 - 4340: -3,1 - 4348: -2,1 - 4365: -1,1 - 4381: -4,-1 - 4389: 4,-1 - 4392: 10,-16 - 4398: 3,-20 - 4401: 9,-17 - 4415: 6,16 - 4423: 6,17 - 4431: 6,18 - 4439: 6,19 - 4447: 6,20 - 4450: 9,24 - 4467: 0,1 - 4477: 1,1 - 4487: 2,1 - 4504: 3,0 - 4512: 3,1 - 4520: 4,0 - 4528: 4,1 - 4536: 8,12 - 4539: 9,4 - 4556: -8,12 - 4564: -4,0 - 4572: -4,1 - 4580: -3,0 - 4588: -3,1 - 4596: -2,1 - 4613: -1,1 - 4629: -4,-1 - 4637: 4,-1 - 4640: 10,-16 - 4646: 3,-20 - 4649: 9,-17 - 4663: 6,16 - 4671: 6,17 - 4679: 6,18 - 4687: 6,19 - 4695: 6,20 - 4698: 9,24 + 944: 0,1 + 952: 1,1 + 960: 2,1 + 968: 3,0 + 976: 3,1 + 984: 4,0 + 992: 4,1 + 1000: 8,12 + 1003: 9,4 + 1020: -8,12 + 1028: -4,0 + 1036: -4,1 + 1044: -3,0 + 1052: -3,1 + 1060: -2,1 + 1068: -1,1 + 1082: -4,-1 + 1090: 4,-1 + 1093: 10,-16 + 1099: 3,-20 + 1102: 9,-17 + 1116: 6,16 + 1124: 6,17 + 1132: 6,18 + 1140: 6,19 + 1148: 6,20 + 1151: 9,24 + 1168: 0,1 + 1176: 1,1 + 1184: 2,1 + 1192: 3,0 + 1200: 3,1 + 1208: 4,0 + 1216: 4,1 + 1224: 8,12 + 1227: 9,4 + 1244: -8,12 + 1252: -4,0 + 1260: -4,1 + 1268: -3,0 + 1276: -3,1 + 1284: -2,1 + 1292: -1,1 + 1306: -4,-1 + 1314: 4,-1 + 1317: 10,-16 + 1323: 3,-20 + 1326: 9,-17 + 1340: 6,16 + 1348: 6,17 + 1356: 6,18 + 1364: 6,19 + 1372: 6,20 + 1375: 9,24 + 1392: 0,1 + 1400: 1,1 + 1408: 2,1 + 1416: 3,0 + 1424: 3,1 + 1432: 4,0 + 1440: 4,1 + 1448: 8,12 + 1451: 9,4 + 1468: -8,12 + 1476: -4,0 + 1484: -4,1 + 1492: -3,0 + 1500: -3,1 + 1508: -2,1 + 1516: -1,1 + 1530: -4,-1 + 1538: 4,-1 + 1541: 10,-16 + 1547: 3,-20 + 1550: 9,-17 + 1564: 6,16 + 1572: 6,17 + 1580: 6,18 + 1588: 6,19 + 1596: 6,20 + 1599: 9,24 + 1616: 0,1 + 1624: 1,1 + 1632: 2,1 + 1640: 3,0 + 1648: 3,1 + 1656: 4,0 + 1664: 4,1 + 1672: 8,12 + 1675: 9,4 + 1692: -8,12 + 1700: -4,0 + 1708: -4,1 + 1716: -3,0 + 1724: -3,1 + 1732: -2,1 + 1740: -1,1 + 1754: -4,-1 + 1762: 4,-1 + 1765: 10,-16 + 1771: 3,-20 + 1774: 9,-17 + 1788: 6,16 + 1796: 6,17 + 1804: 6,18 + 1812: 6,19 + 1820: 6,20 + 1823: 9,24 + 1840: 0,1 + 1848: 1,1 + 1856: 2,1 + 1864: 3,0 + 1872: 3,1 + 1880: 4,0 + 1888: 4,1 + 1896: 8,12 + 1899: 9,4 + 1913: -4,0 + 1921: -4,1 + 1929: -3,0 + 1937: -3,1 + 1945: -2,1 + 1953: -1,1 + 1967: -4,-1 + 1975: 4,-1 + 1978: 10,-16 + 1984: 3,-20 + 1987: 9,-17 + 2001: 6,16 + 2009: 6,17 + 2017: 6,18 + 2025: 6,19 + 2033: 6,20 + 2036: 9,24 + 2053: -8,12 + 2064: 0,1 + 2072: 1,1 + 2080: 2,1 + 2088: 3,0 + 2096: 3,1 + 2104: 4,0 + 2112: 4,1 + 2120: 8,12 + 2123: 9,4 + 2140: -8,12 + 2148: -4,0 + 2156: -4,1 + 2164: -3,0 + 2172: -3,1 + 2180: -2,1 + 2188: -1,1 + 2202: -4,-1 + 2210: 4,-1 + 2213: 10,-16 + 2219: 3,-20 + 2222: 9,-17 + 2236: 6,16 + 2244: 6,17 + 2252: 6,18 + 2260: 6,19 + 2268: 6,20 + 2271: 9,24 + 2288: 0,1 + 2296: 1,1 + 2304: 2,1 + 2312: 3,0 + 2320: 3,1 + 2328: 4,0 + 2336: 4,1 + 2344: 8,12 + 2347: 9,4 + 2364: -8,12 + 2372: -4,0 + 2380: -4,1 + 2388: -3,0 + 2396: -3,1 + 2404: -2,1 + 2412: -1,1 + 2426: -4,-1 + 2434: 4,-1 + 2437: 10,-16 + 2443: 3,-20 + 2446: 9,-17 + 2460: 6,16 + 2468: 6,17 + 2476: 6,18 + 2484: 6,19 + 2492: 6,20 + 2495: 9,24 + 2512: 0,1 + 2520: 1,1 + 2528: 2,1 + 2536: 3,0 + 2544: 3,1 + 2552: 4,0 + 2560: 4,1 + 2568: 8,12 + 2571: 9,4 + 2588: -8,12 + 2596: -4,0 + 2604: -4,1 + 2612: -3,0 + 2620: -3,1 + 2628: -2,1 + 2636: -1,1 + 2650: -4,-1 + 2658: 4,-1 + 2661: 10,-16 + 2667: 3,-20 + 2670: 9,-17 + 2684: 6,16 + 2692: 6,17 + 2700: 6,18 + 2708: 6,19 + 2716: 6,20 + 2719: 9,24 + 2736: 0,1 + 2744: 1,1 + 2752: 2,1 + 2760: 3,0 + 2768: 3,1 + 2776: 4,0 + 2784: 4,1 + 2792: 8,12 + 2795: 9,4 + 2812: -8,12 + 2820: -4,0 + 2828: -4,1 + 2836: -3,0 + 2844: -3,1 + 2852: -2,1 + 2860: -1,1 + 2874: -4,-1 + 2882: 4,-1 + 2885: 10,-16 + 2891: 3,-20 + 2894: 9,-17 + 2908: 6,16 + 2916: 6,17 + 2924: 6,18 + 2932: 6,19 + 2940: 6,20 + 2943: 9,24 + 2960: 0,1 + 2968: 1,1 + 2976: 2,1 + 2984: 3,0 + 2992: 3,1 + 3000: 4,0 + 3008: 4,1 + 3016: 8,12 + 3019: 9,4 + 3036: -8,12 + 3044: -4,0 + 3052: -4,1 + 3060: -3,0 + 3068: -3,1 + 3076: -2,1 + 3084: -1,1 + 3098: -4,-1 + 3106: 4,-1 + 3109: 10,-16 + 3115: 3,-20 + 3118: 9,-17 + 3132: 6,16 + 3140: 6,17 + 3148: 6,18 + 3156: 6,19 + 3164: 6,20 + 3167: 9,24 + 3184: 0,1 + 3192: 1,1 + 3200: 2,1 + 3208: 3,0 + 3216: 3,1 + 3224: 4,0 + 3232: 4,1 + 3240: 8,12 + 3243: 9,4 + 3260: -8,12 + 3268: -4,0 + 3276: -4,1 + 3284: -3,0 + 3292: -3,1 + 3300: -2,1 + 3308: -1,1 + 3322: -4,-1 + 3330: 4,-1 + 3333: 10,-16 + 3339: 3,-20 + 3342: 9,-17 + 3356: 6,16 + 3364: 6,17 + 3372: 6,18 + 3380: 6,19 + 3388: 6,20 + 3391: 9,24 + 3432: 0,1 + 3441: 1,1 + 3450: 2,1 + 3464: 3,0 + 3472: 3,1 + 3480: 4,0 + 3488: 4,1 + 3496: 8,12 + 3499: 9,4 + 3516: -8,12 + 3524: -4,0 + 3532: -4,1 + 3540: -3,0 + 3548: -3,1 + 3556: -2,1 + 3570: -1,1 + 3585: -4,-1 + 3593: 4,-1 + 3596: 10,-16 + 3602: 3,-20 + 3605: 9,-17 + 3619: 6,16 + 3627: 6,17 + 3635: 6,18 + 3643: 6,19 + 3651: 6,20 + 3654: 9,24 + 3680: 0,1 + 3690: 1,1 + 3700: 2,1 + 3717: 3,0 + 3725: 3,1 + 3733: 4,0 + 3741: 4,1 + 3749: 8,12 + 3752: 9,4 + 3769: -8,12 + 3777: -4,0 + 3785: -4,1 + 3793: -3,0 + 3801: -3,1 + 3809: -2,1 + 3826: -1,1 + 3842: -4,-1 + 3850: 4,-1 + 3853: 10,-16 + 3859: 3,-20 + 3862: 9,-17 + 3876: 6,16 + 3884: 6,17 + 3892: 6,18 + 3900: 6,19 + 3908: 6,20 + 3911: 9,24 + 3928: 0,1 + 3938: 1,1 + 3948: 2,1 + 3965: 3,0 + 3973: 3,1 + 3981: 4,0 + 3989: 4,1 + 3997: 8,12 + 4000: 9,4 + 4017: -8,12 + 4025: -4,0 + 4033: -4,1 + 4041: -3,0 + 4049: -3,1 + 4057: -2,1 + 4074: -1,1 + 4087: -4,-1 + 4095: 4,-1 + 4098: 10,-16 + 4101: 3,-20 + 4104: 9,-17 + 4118: 6,16 + 4126: 6,17 + 4134: 6,18 + 4142: 6,19 + 4150: 6,20 + 4153: 9,24 + 4176: 0,1 + 4186: 1,1 + 4196: 2,1 + 4213: 3,0 + 4221: 3,1 + 4229: 4,0 + 4237: 4,1 + 4245: 8,12 + 4248: 9,4 + 4265: -8,12 + 4273: -4,0 + 4281: -4,1 + 4289: -3,0 + 4297: -3,1 + 4305: -2,1 + 4322: -1,1 + 4338: -4,-1 + 4346: 4,-1 + 4349: 10,-16 + 4355: 3,-20 + 4358: 9,-17 + 4372: 6,16 + 4380: 6,17 + 4388: 6,18 + 4396: 6,19 + 4404: 6,20 + 4407: 9,24 + 4424: 0,1 + 4434: 1,1 + 4444: 2,1 + 4461: 3,0 + 4469: 3,1 + 4477: 4,0 + 4485: 4,1 + 4493: 8,12 + 4496: 9,4 + 4513: -8,12 + 4521: -4,0 + 4529: -4,1 + 4537: -3,0 + 4545: -3,1 + 4553: -2,1 + 4570: -1,1 + 4586: -4,-1 + 4594: 4,-1 + 4597: 10,-16 + 4603: 3,-20 + 4606: 9,-17 + 4620: 6,16 + 4628: 6,17 + 4636: 6,18 + 4644: 6,19 + 4652: 6,20 + 4655: 9,24 + 4672: 0,1 + 4682: 1,1 + 4692: 2,1 + 4709: 3,0 + 4717: 3,1 + 4725: 4,0 + 4733: 4,1 + 4741: 8,12 + 4744: 9,4 + 4761: -8,12 + 4769: -4,0 + 4777: -4,1 + 4785: -3,0 + 4793: -3,1 + 4801: -2,1 + 4818: -1,1 + 4834: -4,-1 + 4842: 4,-1 + 4845: 10,-16 + 4851: 3,-20 + 4854: 9,-17 + 4868: 6,16 + 4876: 6,17 + 4884: 6,18 + 4892: 6,19 + 4900: 6,20 + 4903: 9,24 + 4947: 0,1 + 4957: 1,1 + 4967: 2,1 + 4984: 3,0 + 4992: 3,1 + 5000: 4,0 + 5008: 4,1 + 5016: 8,12 + 5019: 9,4 + 5036: -8,12 + 5044: -4,0 + 5052: -4,1 + 5060: -3,0 + 5068: -3,1 + 5076: -2,1 + 5093: -1,1 + 5109: -4,-1 + 5117: 4,-1 + 5120: 10,-16 + 5126: 3,-20 + 5129: 9,-17 + 5143: 6,16 + 5151: 6,17 + 5159: 6,18 + 5167: 6,19 + 5175: 6,20 + 5178: 9,24 + 5195: 0,1 + 5205: 1,1 + 5215: 2,1 + 5232: 3,0 + 5240: 3,1 + 5248: 4,0 + 5256: 4,1 + 5264: 8,12 + 5267: 9,4 + 5284: -8,12 + 5292: -4,0 + 5300: -4,1 + 5308: -3,0 + 5316: -3,1 + 5324: -2,1 + 5341: -1,1 + 5357: -4,-1 + 5365: 4,-1 + 5368: 10,-16 + 5374: 3,-20 + 5377: 9,-17 + 5391: 6,16 + 5399: 6,17 + 5407: 6,18 + 5415: 6,19 + 5423: 6,20 + 5426: 9,24 - node: zIndex: 1 id: LatticeCornerSE decals: - 982: 0,1 - 990: 1,1 - 998: 2,1 - 1006: 3,0 - 1014: 3,1 - 1022: 4,0 - 1030: 4,1 - 1038: 8,12 - 1055: -9,12 - 1058: -8,12 - 1066: -4,0 - 1074: -4,1 - 1082: -3,0 - 1090: -3,1 - 1098: -2,1 - 1106: -1,1 - 1114: -12,-10 - 1120: -4,-1 - 1128: 4,-1 - 1154: 6,16 - 1162: 6,17 - 1170: 6,18 - 1178: 6,19 - 1186: 6,20 - 1203: -9,28 - 1206: 0,1 - 1214: 1,1 - 1222: 2,1 - 1230: 3,0 - 1238: 3,1 - 1246: 4,0 - 1254: 4,1 - 1262: 8,12 - 1279: -9,12 - 1282: -8,12 - 1290: -4,0 - 1298: -4,1 - 1306: -3,0 - 1314: -3,1 - 1322: -2,1 - 1330: -1,1 - 1338: -12,-10 - 1344: -4,-1 - 1352: 4,-1 - 1378: 6,16 - 1386: 6,17 - 1394: 6,18 - 1402: 6,19 - 1410: 6,20 - 1427: -9,28 - 1430: 0,1 - 1438: 1,1 - 1446: 2,1 - 1454: 3,0 - 1462: 3,1 - 1470: 4,0 - 1478: 4,1 - 1486: 8,12 - 1503: -9,12 - 1506: -8,12 - 1514: -4,0 - 1522: -4,1 - 1530: -3,0 - 1538: -3,1 - 1546: -2,1 - 1554: -1,1 - 1562: -12,-10 - 1568: -4,-1 - 1576: 4,-1 - 1602: 6,16 - 1610: 6,17 - 1618: 6,18 - 1626: 6,19 - 1634: 6,20 - 1651: -9,28 - 1654: 0,1 - 1662: 1,1 - 1670: 2,1 - 1678: 3,0 - 1686: 3,1 - 1694: 4,0 - 1702: 4,1 - 1710: 8,12 - 1727: -9,12 - 1730: -8,12 - 1738: -4,0 - 1746: -4,1 - 1754: -3,0 - 1762: -3,1 - 1770: -2,1 - 1778: -1,1 - 1786: -12,-10 - 1792: -4,-1 - 1800: 4,-1 - 1826: 6,16 - 1834: 6,17 - 1842: 6,18 - 1850: 6,19 - 1858: 6,20 - 1875: -9,28 - 1878: 0,1 - 1886: 1,1 - 1894: 2,1 - 1902: 3,0 - 1910: 3,1 - 1918: 4,0 - 1926: 4,1 - 1934: 8,12 - 1951: -4,0 - 1959: -4,1 - 1967: -3,0 - 1975: -3,1 - 1983: -2,1 - 1991: -1,1 - 1999: -12,-10 - 2005: -4,-1 - 2013: 4,-1 - 2039: 6,16 - 2047: 6,17 - 2055: 6,18 - 2063: 6,19 - 2071: 6,20 - 2088: -9,28 - 2091: -8,12 - 2099: -9,12 - 2102: 0,1 - 2110: 1,1 - 2118: 2,1 - 2126: 3,0 - 2134: 3,1 - 2142: 4,0 - 2150: 4,1 - 2158: 8,12 - 2175: -9,12 - 2178: -8,12 - 2186: -4,0 - 2194: -4,1 - 2202: -3,0 - 2210: -3,1 - 2218: -2,1 - 2226: -1,1 - 2234: -12,-10 - 2240: -4,-1 - 2248: 4,-1 - 2274: 6,16 - 2282: 6,17 - 2290: 6,18 - 2298: 6,19 - 2306: 6,20 - 2323: -9,28 - 2326: 0,1 - 2334: 1,1 - 2342: 2,1 - 2350: 3,0 - 2358: 3,1 - 2366: 4,0 - 2374: 4,1 - 2382: 8,12 - 2399: -9,12 - 2402: -8,12 - 2410: -4,0 - 2418: -4,1 - 2426: -3,0 - 2434: -3,1 - 2442: -2,1 - 2450: -1,1 - 2458: -12,-10 - 2464: -4,-1 - 2472: 4,-1 - 2498: 6,16 - 2506: 6,17 - 2514: 6,18 - 2522: 6,19 - 2530: 6,20 - 2547: -9,28 - 2550: 0,1 - 2558: 1,1 - 2566: 2,1 - 2574: 3,0 - 2582: 3,1 - 2590: 4,0 - 2598: 4,1 - 2606: 8,12 - 2623: -9,12 - 2626: -8,12 - 2634: -4,0 - 2642: -4,1 - 2650: -3,0 - 2658: -3,1 - 2666: -2,1 - 2674: -1,1 - 2682: -12,-10 - 2688: -4,-1 - 2696: 4,-1 - 2722: 6,16 - 2730: 6,17 - 2738: 6,18 - 2746: 6,19 - 2754: 6,20 - 2771: -9,28 - 2774: 0,1 - 2782: 1,1 - 2790: 2,1 - 2798: 3,0 - 2806: 3,1 - 2814: 4,0 - 2822: 4,1 - 2830: 8,12 - 2847: -9,12 - 2850: -8,12 - 2858: -4,0 - 2866: -4,1 - 2874: -3,0 - 2882: -3,1 - 2890: -2,1 - 2898: -1,1 - 2906: -12,-10 - 2912: -4,-1 - 2920: 4,-1 - 2946: 6,16 - 2954: 6,17 - 2962: 6,18 - 2970: 6,19 - 2978: 6,20 - 2995: -9,28 - 2998: 0,1 - 3006: 1,1 - 3014: 2,1 - 3022: 3,0 - 3030: 3,1 - 3038: 4,0 - 3046: 4,1 - 3054: 8,12 - 3071: -9,12 - 3074: -8,12 - 3082: -4,0 - 3090: -4,1 - 3098: -3,0 - 3106: -3,1 - 3114: -2,1 - 3122: -1,1 - 3130: -12,-10 - 3136: -4,-1 - 3144: 4,-1 - 3170: 6,16 - 3178: 6,17 - 3186: 6,18 - 3194: 6,19 - 3202: 6,20 - 3219: -9,28 - 3222: 0,1 - 3230: 1,1 - 3238: 2,1 - 3246: 3,0 - 3254: 3,1 - 3262: 4,0 - 3270: 4,1 - 3278: 8,12 - 3295: -9,12 - 3298: -8,12 - 3306: -4,0 - 3314: -4,1 - 3322: -3,0 - 3330: -3,1 - 3338: -2,1 - 3346: -1,1 - 3354: -12,-10 - 3360: -4,-1 - 3368: 4,-1 - 3394: 6,16 - 3402: 6,17 - 3410: 6,18 - 3418: 6,19 - 3426: 6,20 - 3443: -9,28 - 3470: 0,1 - 3479: 1,1 - 3488: 2,1 - 3502: 3,0 - 3510: 3,1 - 3518: 4,0 - 3526: 4,1 - 3534: 8,12 - 3551: -9,12 - 3554: -8,12 - 3562: -4,0 - 3570: -4,1 - 3578: -3,0 - 3586: -3,1 - 3594: -2,1 - 3608: -1,1 - 3617: -12,-10 - 3623: -4,-1 - 3631: 4,-1 - 3657: 6,16 - 3665: 6,17 - 3673: 6,18 - 3681: 6,19 - 3689: 6,20 - 3706: -9,28 - 3718: 0,1 - 3728: 1,1 - 3738: 2,1 - 3755: 3,0 - 3763: 3,1 - 3771: 4,0 - 3779: 4,1 - 3787: 8,12 - 3804: -9,12 - 3807: -8,12 - 3815: -4,0 - 3823: -4,1 - 3831: -3,0 - 3839: -3,1 - 3847: -2,1 - 3864: -1,1 - 3874: -12,-10 - 3880: -4,-1 - 3888: 4,-1 - 3914: 6,16 - 3922: 6,17 - 3930: 6,18 - 3938: 6,19 - 3946: 6,20 - 3963: -9,28 - 3966: 0,1 - 3976: 1,1 - 3986: 2,1 - 4003: 3,0 - 4011: 3,1 - 4019: 4,0 - 4027: 4,1 - 4035: 8,12 - 4052: -9,12 - 4055: -8,12 - 4063: -4,0 - 4071: -4,1 - 4079: -3,0 - 4087: -3,1 - 4095: -2,1 - 4112: -1,1 - 4125: -4,-1 - 4133: 4,-1 - 4156: 6,16 - 4164: 6,17 - 4172: 6,18 - 4180: 6,19 - 4188: 6,20 - 4205: -9,28 - 4208: -12,-10 - 4214: 0,1 - 4224: 1,1 - 4234: 2,1 - 4251: 3,0 - 4259: 3,1 - 4267: 4,0 - 4275: 4,1 - 4283: 8,12 - 4300: -9,12 - 4303: -8,12 - 4311: -4,0 - 4319: -4,1 - 4327: -3,0 - 4335: -3,1 - 4343: -2,1 - 4360: -1,1 - 4370: -12,-10 - 4376: -4,-1 - 4384: 4,-1 - 4410: 6,16 - 4418: 6,17 - 4426: 6,18 - 4434: 6,19 - 4442: 6,20 - 4459: -9,28 - 4462: 0,1 - 4472: 1,1 - 4482: 2,1 - 4499: 3,0 - 4507: 3,1 - 4515: 4,0 - 4523: 4,1 - 4531: 8,12 - 4548: -9,12 - 4551: -8,12 - 4559: -4,0 - 4567: -4,1 - 4575: -3,0 - 4583: -3,1 - 4591: -2,1 - 4608: -1,1 - 4618: -12,-10 - 4624: -4,-1 - 4632: 4,-1 - 4658: 6,16 - 4666: 6,17 - 4674: 6,18 - 4682: 6,19 - 4690: 6,20 - 4707: -9,28 + 939: 0,1 + 947: 1,1 + 955: 2,1 + 963: 3,0 + 971: 3,1 + 979: 4,0 + 987: 4,1 + 995: 8,12 + 1012: -9,12 + 1015: -8,12 + 1023: -4,0 + 1031: -4,1 + 1039: -3,0 + 1047: -3,1 + 1055: -2,1 + 1063: -1,1 + 1071: -12,-10 + 1077: -4,-1 + 1085: 4,-1 + 1111: 6,16 + 1119: 6,17 + 1127: 6,18 + 1135: 6,19 + 1143: 6,20 + 1160: -9,28 + 1163: 0,1 + 1171: 1,1 + 1179: 2,1 + 1187: 3,0 + 1195: 3,1 + 1203: 4,0 + 1211: 4,1 + 1219: 8,12 + 1236: -9,12 + 1239: -8,12 + 1247: -4,0 + 1255: -4,1 + 1263: -3,0 + 1271: -3,1 + 1279: -2,1 + 1287: -1,1 + 1295: -12,-10 + 1301: -4,-1 + 1309: 4,-1 + 1335: 6,16 + 1343: 6,17 + 1351: 6,18 + 1359: 6,19 + 1367: 6,20 + 1384: -9,28 + 1387: 0,1 + 1395: 1,1 + 1403: 2,1 + 1411: 3,0 + 1419: 3,1 + 1427: 4,0 + 1435: 4,1 + 1443: 8,12 + 1460: -9,12 + 1463: -8,12 + 1471: -4,0 + 1479: -4,1 + 1487: -3,0 + 1495: -3,1 + 1503: -2,1 + 1511: -1,1 + 1519: -12,-10 + 1525: -4,-1 + 1533: 4,-1 + 1559: 6,16 + 1567: 6,17 + 1575: 6,18 + 1583: 6,19 + 1591: 6,20 + 1608: -9,28 + 1611: 0,1 + 1619: 1,1 + 1627: 2,1 + 1635: 3,0 + 1643: 3,1 + 1651: 4,0 + 1659: 4,1 + 1667: 8,12 + 1684: -9,12 + 1687: -8,12 + 1695: -4,0 + 1703: -4,1 + 1711: -3,0 + 1719: -3,1 + 1727: -2,1 + 1735: -1,1 + 1743: -12,-10 + 1749: -4,-1 + 1757: 4,-1 + 1783: 6,16 + 1791: 6,17 + 1799: 6,18 + 1807: 6,19 + 1815: 6,20 + 1832: -9,28 + 1835: 0,1 + 1843: 1,1 + 1851: 2,1 + 1859: 3,0 + 1867: 3,1 + 1875: 4,0 + 1883: 4,1 + 1891: 8,12 + 1908: -4,0 + 1916: -4,1 + 1924: -3,0 + 1932: -3,1 + 1940: -2,1 + 1948: -1,1 + 1956: -12,-10 + 1962: -4,-1 + 1970: 4,-1 + 1996: 6,16 + 2004: 6,17 + 2012: 6,18 + 2020: 6,19 + 2028: 6,20 + 2045: -9,28 + 2048: -8,12 + 2056: -9,12 + 2059: 0,1 + 2067: 1,1 + 2075: 2,1 + 2083: 3,0 + 2091: 3,1 + 2099: 4,0 + 2107: 4,1 + 2115: 8,12 + 2132: -9,12 + 2135: -8,12 + 2143: -4,0 + 2151: -4,1 + 2159: -3,0 + 2167: -3,1 + 2175: -2,1 + 2183: -1,1 + 2191: -12,-10 + 2197: -4,-1 + 2205: 4,-1 + 2231: 6,16 + 2239: 6,17 + 2247: 6,18 + 2255: 6,19 + 2263: 6,20 + 2280: -9,28 + 2283: 0,1 + 2291: 1,1 + 2299: 2,1 + 2307: 3,0 + 2315: 3,1 + 2323: 4,0 + 2331: 4,1 + 2339: 8,12 + 2356: -9,12 + 2359: -8,12 + 2367: -4,0 + 2375: -4,1 + 2383: -3,0 + 2391: -3,1 + 2399: -2,1 + 2407: -1,1 + 2415: -12,-10 + 2421: -4,-1 + 2429: 4,-1 + 2455: 6,16 + 2463: 6,17 + 2471: 6,18 + 2479: 6,19 + 2487: 6,20 + 2504: -9,28 + 2507: 0,1 + 2515: 1,1 + 2523: 2,1 + 2531: 3,0 + 2539: 3,1 + 2547: 4,0 + 2555: 4,1 + 2563: 8,12 + 2580: -9,12 + 2583: -8,12 + 2591: -4,0 + 2599: -4,1 + 2607: -3,0 + 2615: -3,1 + 2623: -2,1 + 2631: -1,1 + 2639: -12,-10 + 2645: -4,-1 + 2653: 4,-1 + 2679: 6,16 + 2687: 6,17 + 2695: 6,18 + 2703: 6,19 + 2711: 6,20 + 2728: -9,28 + 2731: 0,1 + 2739: 1,1 + 2747: 2,1 + 2755: 3,0 + 2763: 3,1 + 2771: 4,0 + 2779: 4,1 + 2787: 8,12 + 2804: -9,12 + 2807: -8,12 + 2815: -4,0 + 2823: -4,1 + 2831: -3,0 + 2839: -3,1 + 2847: -2,1 + 2855: -1,1 + 2863: -12,-10 + 2869: -4,-1 + 2877: 4,-1 + 2903: 6,16 + 2911: 6,17 + 2919: 6,18 + 2927: 6,19 + 2935: 6,20 + 2952: -9,28 + 2955: 0,1 + 2963: 1,1 + 2971: 2,1 + 2979: 3,0 + 2987: 3,1 + 2995: 4,0 + 3003: 4,1 + 3011: 8,12 + 3028: -9,12 + 3031: -8,12 + 3039: -4,0 + 3047: -4,1 + 3055: -3,0 + 3063: -3,1 + 3071: -2,1 + 3079: -1,1 + 3087: -12,-10 + 3093: -4,-1 + 3101: 4,-1 + 3127: 6,16 + 3135: 6,17 + 3143: 6,18 + 3151: 6,19 + 3159: 6,20 + 3176: -9,28 + 3179: 0,1 + 3187: 1,1 + 3195: 2,1 + 3203: 3,0 + 3211: 3,1 + 3219: 4,0 + 3227: 4,1 + 3235: 8,12 + 3252: -9,12 + 3255: -8,12 + 3263: -4,0 + 3271: -4,1 + 3279: -3,0 + 3287: -3,1 + 3295: -2,1 + 3303: -1,1 + 3311: -12,-10 + 3317: -4,-1 + 3325: 4,-1 + 3351: 6,16 + 3359: 6,17 + 3367: 6,18 + 3375: 6,19 + 3383: 6,20 + 3400: -9,28 + 3427: 0,1 + 3436: 1,1 + 3445: 2,1 + 3459: 3,0 + 3467: 3,1 + 3475: 4,0 + 3483: 4,1 + 3491: 8,12 + 3508: -9,12 + 3511: -8,12 + 3519: -4,0 + 3527: -4,1 + 3535: -3,0 + 3543: -3,1 + 3551: -2,1 + 3565: -1,1 + 3574: -12,-10 + 3580: -4,-1 + 3588: 4,-1 + 3614: 6,16 + 3622: 6,17 + 3630: 6,18 + 3638: 6,19 + 3646: 6,20 + 3663: -9,28 + 3675: 0,1 + 3685: 1,1 + 3695: 2,1 + 3712: 3,0 + 3720: 3,1 + 3728: 4,0 + 3736: 4,1 + 3744: 8,12 + 3761: -9,12 + 3764: -8,12 + 3772: -4,0 + 3780: -4,1 + 3788: -3,0 + 3796: -3,1 + 3804: -2,1 + 3821: -1,1 + 3831: -12,-10 + 3837: -4,-1 + 3845: 4,-1 + 3871: 6,16 + 3879: 6,17 + 3887: 6,18 + 3895: 6,19 + 3903: 6,20 + 3920: -9,28 + 3923: 0,1 + 3933: 1,1 + 3943: 2,1 + 3960: 3,0 + 3968: 3,1 + 3976: 4,0 + 3984: 4,1 + 3992: 8,12 + 4009: -9,12 + 4012: -8,12 + 4020: -4,0 + 4028: -4,1 + 4036: -3,0 + 4044: -3,1 + 4052: -2,1 + 4069: -1,1 + 4082: -4,-1 + 4090: 4,-1 + 4113: 6,16 + 4121: 6,17 + 4129: 6,18 + 4137: 6,19 + 4145: 6,20 + 4162: -9,28 + 4165: -12,-10 + 4171: 0,1 + 4181: 1,1 + 4191: 2,1 + 4208: 3,0 + 4216: 3,1 + 4224: 4,0 + 4232: 4,1 + 4240: 8,12 + 4257: -9,12 + 4260: -8,12 + 4268: -4,0 + 4276: -4,1 + 4284: -3,0 + 4292: -3,1 + 4300: -2,1 + 4317: -1,1 + 4327: -12,-10 + 4333: -4,-1 + 4341: 4,-1 + 4367: 6,16 + 4375: 6,17 + 4383: 6,18 + 4391: 6,19 + 4399: 6,20 + 4416: -9,28 + 4419: 0,1 + 4429: 1,1 + 4439: 2,1 + 4456: 3,0 + 4464: 3,1 + 4472: 4,0 + 4480: 4,1 + 4488: 8,12 + 4505: -9,12 + 4508: -8,12 + 4516: -4,0 + 4524: -4,1 + 4532: -3,0 + 4540: -3,1 + 4548: -2,1 + 4565: -1,1 + 4575: -12,-10 + 4581: -4,-1 + 4589: 4,-1 + 4615: 6,16 + 4623: 6,17 + 4631: 6,18 + 4639: 6,19 + 4647: 6,20 + 4664: -9,28 + 4667: 0,1 + 4677: 1,1 + 4687: 2,1 + 4704: 3,0 + 4712: 3,1 + 4720: 4,0 + 4728: 4,1 + 4736: 8,12 + 4753: -9,12 + 4756: -8,12 + 4764: -4,0 + 4772: -4,1 + 4780: -3,0 + 4788: -3,1 + 4796: -2,1 + 4813: -1,1 + 4823: -12,-10 + 4829: -4,-1 + 4837: 4,-1 + 4863: 6,16 + 4871: 6,17 + 4879: 6,18 + 4887: 6,19 + 4895: 6,20 + 4912: -9,28 + 4942: 0,1 + 4952: 1,1 + 4962: 2,1 + 4979: 3,0 + 4987: 3,1 + 4995: 4,0 + 5003: 4,1 + 5011: 8,12 + 5028: -9,12 + 5031: -8,12 + 5039: -4,0 + 5047: -4,1 + 5055: -3,0 + 5063: -3,1 + 5071: -2,1 + 5088: -1,1 + 5098: -12,-10 + 5104: -4,-1 + 5112: 4,-1 + 5138: 6,16 + 5146: 6,17 + 5154: 6,18 + 5162: 6,19 + 5170: 6,20 + 5187: -9,28 + 5190: 0,1 + 5200: 1,1 + 5210: 2,1 + 5227: 3,0 + 5235: 3,1 + 5243: 4,0 + 5251: 4,1 + 5259: 8,12 + 5276: -9,12 + 5279: -8,12 + 5287: -4,0 + 5295: -4,1 + 5303: -3,0 + 5311: -3,1 + 5319: -2,1 + 5336: -1,1 + 5346: -12,-10 + 5352: -4,-1 + 5360: 4,-1 + 5386: 6,16 + 5394: 6,17 + 5402: 6,18 + 5410: 6,19 + 5418: 6,20 + 5435: -9,28 - node: zIndex: 1 id: LatticeCornerSW decals: - 986: 0,1 - 994: 1,1 - 1002: 2,1 - 1010: 3,0 - 1018: 3,1 - 1026: 4,0 - 1034: 4,1 - 1042: 8,12 - 1049: 9,12 - 1062: -8,12 - 1070: -4,0 - 1078: -4,1 - 1086: -3,0 - 1094: -3,1 - 1102: -2,1 - 1110: -1,1 - 1124: -4,-1 - 1132: 4,-1 - 1139: 12,-10 - 1158: 6,16 - 1166: 6,17 - 1174: 6,18 - 1182: 6,19 - 1190: 6,20 - 1197: 9,28 - 1210: 0,1 - 1218: 1,1 - 1226: 2,1 - 1234: 3,0 - 1242: 3,1 - 1250: 4,0 - 1258: 4,1 - 1266: 8,12 - 1273: 9,12 - 1286: -8,12 - 1294: -4,0 - 1302: -4,1 - 1310: -3,0 - 1318: -3,1 - 1326: -2,1 - 1334: -1,1 - 1348: -4,-1 - 1356: 4,-1 - 1363: 12,-10 - 1382: 6,16 - 1390: 6,17 - 1398: 6,18 - 1406: 6,19 - 1414: 6,20 - 1421: 9,28 - 1434: 0,1 - 1442: 1,1 - 1450: 2,1 - 1458: 3,0 - 1466: 3,1 - 1474: 4,0 - 1482: 4,1 - 1490: 8,12 - 1497: 9,12 - 1510: -8,12 - 1518: -4,0 - 1526: -4,1 - 1534: -3,0 - 1542: -3,1 - 1550: -2,1 - 1558: -1,1 - 1572: -4,-1 - 1580: 4,-1 - 1587: 12,-10 - 1606: 6,16 - 1614: 6,17 - 1622: 6,18 - 1630: 6,19 - 1638: 6,20 - 1645: 9,28 - 1658: 0,1 - 1666: 1,1 - 1674: 2,1 - 1682: 3,0 - 1690: 3,1 - 1698: 4,0 - 1706: 4,1 - 1714: 8,12 - 1721: 9,12 - 1734: -8,12 - 1742: -4,0 - 1750: -4,1 - 1758: -3,0 - 1766: -3,1 - 1774: -2,1 - 1782: -1,1 - 1796: -4,-1 - 1804: 4,-1 - 1811: 12,-10 - 1830: 6,16 - 1838: 6,17 - 1846: 6,18 - 1854: 6,19 - 1862: 6,20 - 1869: 9,28 - 1882: 0,1 - 1890: 1,1 - 1898: 2,1 - 1906: 3,0 - 1914: 3,1 - 1922: 4,0 - 1930: 4,1 - 1938: 8,12 - 1945: 9,12 - 1955: -4,0 - 1963: -4,1 - 1971: -3,0 - 1979: -3,1 - 1987: -2,1 - 1995: -1,1 - 2009: -4,-1 - 2017: 4,-1 - 2024: 12,-10 - 2043: 6,16 - 2051: 6,17 - 2059: 6,18 - 2067: 6,19 - 2075: 6,20 - 2082: 9,28 - 2095: -8,12 - 2106: 0,1 - 2114: 1,1 - 2122: 2,1 - 2130: 3,0 - 2138: 3,1 - 2146: 4,0 - 2154: 4,1 - 2162: 8,12 - 2169: 9,12 - 2182: -8,12 - 2190: -4,0 - 2198: -4,1 - 2206: -3,0 - 2214: -3,1 - 2222: -2,1 - 2230: -1,1 - 2244: -4,-1 - 2252: 4,-1 - 2259: 12,-10 - 2278: 6,16 - 2286: 6,17 - 2294: 6,18 - 2302: 6,19 - 2310: 6,20 - 2317: 9,28 - 2330: 0,1 - 2338: 1,1 - 2346: 2,1 - 2354: 3,0 - 2362: 3,1 - 2370: 4,0 - 2378: 4,1 - 2386: 8,12 - 2393: 9,12 - 2406: -8,12 - 2414: -4,0 - 2422: -4,1 - 2430: -3,0 - 2438: -3,1 - 2446: -2,1 - 2454: -1,1 - 2468: -4,-1 - 2476: 4,-1 - 2483: 12,-10 - 2502: 6,16 - 2510: 6,17 - 2518: 6,18 - 2526: 6,19 - 2534: 6,20 - 2541: 9,28 - 2554: 0,1 - 2562: 1,1 - 2570: 2,1 - 2578: 3,0 - 2586: 3,1 - 2594: 4,0 - 2602: 4,1 - 2610: 8,12 - 2617: 9,12 - 2630: -8,12 - 2638: -4,0 - 2646: -4,1 - 2654: -3,0 - 2662: -3,1 - 2670: -2,1 - 2678: -1,1 - 2692: -4,-1 - 2700: 4,-1 - 2707: 12,-10 - 2726: 6,16 - 2734: 6,17 - 2742: 6,18 - 2750: 6,19 - 2758: 6,20 - 2765: 9,28 - 2778: 0,1 - 2786: 1,1 - 2794: 2,1 - 2802: 3,0 - 2810: 3,1 - 2818: 4,0 - 2826: 4,1 - 2834: 8,12 - 2841: 9,12 - 2854: -8,12 - 2862: -4,0 - 2870: -4,1 - 2878: -3,0 - 2886: -3,1 - 2894: -2,1 - 2902: -1,1 - 2916: -4,-1 - 2924: 4,-1 - 2931: 12,-10 - 2950: 6,16 - 2958: 6,17 - 2966: 6,18 - 2974: 6,19 - 2982: 6,20 - 2989: 9,28 - 3002: 0,1 - 3010: 1,1 - 3018: 2,1 - 3026: 3,0 - 3034: 3,1 - 3042: 4,0 - 3050: 4,1 - 3058: 8,12 - 3065: 9,12 - 3078: -8,12 - 3086: -4,0 - 3094: -4,1 - 3102: -3,0 - 3110: -3,1 - 3118: -2,1 - 3126: -1,1 - 3140: -4,-1 - 3148: 4,-1 - 3155: 12,-10 - 3174: 6,16 - 3182: 6,17 - 3190: 6,18 - 3198: 6,19 - 3206: 6,20 - 3213: 9,28 - 3226: 0,1 - 3234: 1,1 - 3242: 2,1 - 3250: 3,0 - 3258: 3,1 - 3266: 4,0 - 3274: 4,1 - 3282: 8,12 - 3289: 9,12 - 3302: -8,12 - 3310: -4,0 - 3318: -4,1 - 3326: -3,0 - 3334: -3,1 - 3342: -2,1 - 3350: -1,1 - 3364: -4,-1 - 3372: 4,-1 - 3379: 12,-10 - 3398: 6,16 - 3406: 6,17 - 3414: 6,18 - 3422: 6,19 - 3430: 6,20 - 3437: 9,28 - 3474: 0,1 - 3483: 1,1 - 3492: 2,1 - 3506: 3,0 - 3514: 3,1 - 3522: 4,0 - 3530: 4,1 - 3538: 8,12 - 3545: 9,12 - 3558: -8,12 - 3566: -4,0 - 3574: -4,1 - 3582: -3,0 - 3590: -3,1 - 3598: -2,1 - 3612: -1,1 - 3627: -4,-1 - 3635: 4,-1 - 3642: 12,-10 - 3661: 6,16 - 3669: 6,17 - 3677: 6,18 - 3685: 6,19 - 3693: 6,20 - 3700: 9,28 - 3722: 0,1 - 3732: 1,1 - 3742: 2,1 - 3759: 3,0 - 3767: 3,1 - 3775: 4,0 - 3783: 4,1 - 3791: 8,12 - 3798: 9,12 - 3811: -8,12 - 3819: -4,0 - 3827: -4,1 - 3835: -3,0 - 3843: -3,1 - 3851: -2,1 - 3868: -1,1 - 3884: -4,-1 - 3892: 4,-1 - 3899: 12,-10 - 3918: 6,16 - 3926: 6,17 - 3934: 6,18 - 3942: 6,19 - 3950: 6,20 - 3957: 9,28 - 3970: 0,1 - 3980: 1,1 - 3990: 2,1 - 4007: 3,0 - 4015: 3,1 - 4023: 4,0 - 4031: 4,1 - 4039: 8,12 - 4046: 9,12 - 4059: -8,12 - 4067: -4,0 - 4075: -4,1 - 4083: -3,0 - 4091: -3,1 - 4099: -2,1 - 4116: -1,1 - 4129: -4,-1 - 4137: 4,-1 - 4160: 6,16 - 4168: 6,17 - 4176: 6,18 - 4184: 6,19 - 4192: 6,20 - 4199: 9,28 - 4211: 12,-10 - 4218: 0,1 - 4228: 1,1 - 4238: 2,1 - 4255: 3,0 - 4263: 3,1 - 4271: 4,0 - 4279: 4,1 - 4287: 8,12 - 4294: 9,12 - 4307: -8,12 - 4315: -4,0 - 4323: -4,1 - 4331: -3,0 - 4339: -3,1 - 4347: -2,1 - 4364: -1,1 - 4380: -4,-1 - 4388: 4,-1 - 4395: 12,-10 - 4414: 6,16 - 4422: 6,17 - 4430: 6,18 - 4438: 6,19 - 4446: 6,20 - 4453: 9,28 - 4466: 0,1 - 4476: 1,1 - 4486: 2,1 - 4503: 3,0 - 4511: 3,1 - 4519: 4,0 - 4527: 4,1 - 4535: 8,12 - 4542: 9,12 - 4555: -8,12 - 4563: -4,0 - 4571: -4,1 - 4579: -3,0 - 4587: -3,1 - 4595: -2,1 - 4612: -1,1 - 4628: -4,-1 - 4636: 4,-1 - 4643: 12,-10 - 4662: 6,16 - 4670: 6,17 - 4678: 6,18 - 4686: 6,19 - 4694: 6,20 - 4701: 9,28 + 943: 0,1 + 951: 1,1 + 959: 2,1 + 967: 3,0 + 975: 3,1 + 983: 4,0 + 991: 4,1 + 999: 8,12 + 1006: 9,12 + 1019: -8,12 + 1027: -4,0 + 1035: -4,1 + 1043: -3,0 + 1051: -3,1 + 1059: -2,1 + 1067: -1,1 + 1081: -4,-1 + 1089: 4,-1 + 1096: 12,-10 + 1115: 6,16 + 1123: 6,17 + 1131: 6,18 + 1139: 6,19 + 1147: 6,20 + 1154: 9,28 + 1167: 0,1 + 1175: 1,1 + 1183: 2,1 + 1191: 3,0 + 1199: 3,1 + 1207: 4,0 + 1215: 4,1 + 1223: 8,12 + 1230: 9,12 + 1243: -8,12 + 1251: -4,0 + 1259: -4,1 + 1267: -3,0 + 1275: -3,1 + 1283: -2,1 + 1291: -1,1 + 1305: -4,-1 + 1313: 4,-1 + 1320: 12,-10 + 1339: 6,16 + 1347: 6,17 + 1355: 6,18 + 1363: 6,19 + 1371: 6,20 + 1378: 9,28 + 1391: 0,1 + 1399: 1,1 + 1407: 2,1 + 1415: 3,0 + 1423: 3,1 + 1431: 4,0 + 1439: 4,1 + 1447: 8,12 + 1454: 9,12 + 1467: -8,12 + 1475: -4,0 + 1483: -4,1 + 1491: -3,0 + 1499: -3,1 + 1507: -2,1 + 1515: -1,1 + 1529: -4,-1 + 1537: 4,-1 + 1544: 12,-10 + 1563: 6,16 + 1571: 6,17 + 1579: 6,18 + 1587: 6,19 + 1595: 6,20 + 1602: 9,28 + 1615: 0,1 + 1623: 1,1 + 1631: 2,1 + 1639: 3,0 + 1647: 3,1 + 1655: 4,0 + 1663: 4,1 + 1671: 8,12 + 1678: 9,12 + 1691: -8,12 + 1699: -4,0 + 1707: -4,1 + 1715: -3,0 + 1723: -3,1 + 1731: -2,1 + 1739: -1,1 + 1753: -4,-1 + 1761: 4,-1 + 1768: 12,-10 + 1787: 6,16 + 1795: 6,17 + 1803: 6,18 + 1811: 6,19 + 1819: 6,20 + 1826: 9,28 + 1839: 0,1 + 1847: 1,1 + 1855: 2,1 + 1863: 3,0 + 1871: 3,1 + 1879: 4,0 + 1887: 4,1 + 1895: 8,12 + 1902: 9,12 + 1912: -4,0 + 1920: -4,1 + 1928: -3,0 + 1936: -3,1 + 1944: -2,1 + 1952: -1,1 + 1966: -4,-1 + 1974: 4,-1 + 1981: 12,-10 + 2000: 6,16 + 2008: 6,17 + 2016: 6,18 + 2024: 6,19 + 2032: 6,20 + 2039: 9,28 + 2052: -8,12 + 2063: 0,1 + 2071: 1,1 + 2079: 2,1 + 2087: 3,0 + 2095: 3,1 + 2103: 4,0 + 2111: 4,1 + 2119: 8,12 + 2126: 9,12 + 2139: -8,12 + 2147: -4,0 + 2155: -4,1 + 2163: -3,0 + 2171: -3,1 + 2179: -2,1 + 2187: -1,1 + 2201: -4,-1 + 2209: 4,-1 + 2216: 12,-10 + 2235: 6,16 + 2243: 6,17 + 2251: 6,18 + 2259: 6,19 + 2267: 6,20 + 2274: 9,28 + 2287: 0,1 + 2295: 1,1 + 2303: 2,1 + 2311: 3,0 + 2319: 3,1 + 2327: 4,0 + 2335: 4,1 + 2343: 8,12 + 2350: 9,12 + 2363: -8,12 + 2371: -4,0 + 2379: -4,1 + 2387: -3,0 + 2395: -3,1 + 2403: -2,1 + 2411: -1,1 + 2425: -4,-1 + 2433: 4,-1 + 2440: 12,-10 + 2459: 6,16 + 2467: 6,17 + 2475: 6,18 + 2483: 6,19 + 2491: 6,20 + 2498: 9,28 + 2511: 0,1 + 2519: 1,1 + 2527: 2,1 + 2535: 3,0 + 2543: 3,1 + 2551: 4,0 + 2559: 4,1 + 2567: 8,12 + 2574: 9,12 + 2587: -8,12 + 2595: -4,0 + 2603: -4,1 + 2611: -3,0 + 2619: -3,1 + 2627: -2,1 + 2635: -1,1 + 2649: -4,-1 + 2657: 4,-1 + 2664: 12,-10 + 2683: 6,16 + 2691: 6,17 + 2699: 6,18 + 2707: 6,19 + 2715: 6,20 + 2722: 9,28 + 2735: 0,1 + 2743: 1,1 + 2751: 2,1 + 2759: 3,0 + 2767: 3,1 + 2775: 4,0 + 2783: 4,1 + 2791: 8,12 + 2798: 9,12 + 2811: -8,12 + 2819: -4,0 + 2827: -4,1 + 2835: -3,0 + 2843: -3,1 + 2851: -2,1 + 2859: -1,1 + 2873: -4,-1 + 2881: 4,-1 + 2888: 12,-10 + 2907: 6,16 + 2915: 6,17 + 2923: 6,18 + 2931: 6,19 + 2939: 6,20 + 2946: 9,28 + 2959: 0,1 + 2967: 1,1 + 2975: 2,1 + 2983: 3,0 + 2991: 3,1 + 2999: 4,0 + 3007: 4,1 + 3015: 8,12 + 3022: 9,12 + 3035: -8,12 + 3043: -4,0 + 3051: -4,1 + 3059: -3,0 + 3067: -3,1 + 3075: -2,1 + 3083: -1,1 + 3097: -4,-1 + 3105: 4,-1 + 3112: 12,-10 + 3131: 6,16 + 3139: 6,17 + 3147: 6,18 + 3155: 6,19 + 3163: 6,20 + 3170: 9,28 + 3183: 0,1 + 3191: 1,1 + 3199: 2,1 + 3207: 3,0 + 3215: 3,1 + 3223: 4,0 + 3231: 4,1 + 3239: 8,12 + 3246: 9,12 + 3259: -8,12 + 3267: -4,0 + 3275: -4,1 + 3283: -3,0 + 3291: -3,1 + 3299: -2,1 + 3307: -1,1 + 3321: -4,-1 + 3329: 4,-1 + 3336: 12,-10 + 3355: 6,16 + 3363: 6,17 + 3371: 6,18 + 3379: 6,19 + 3387: 6,20 + 3394: 9,28 + 3431: 0,1 + 3440: 1,1 + 3449: 2,1 + 3463: 3,0 + 3471: 3,1 + 3479: 4,0 + 3487: 4,1 + 3495: 8,12 + 3502: 9,12 + 3515: -8,12 + 3523: -4,0 + 3531: -4,1 + 3539: -3,0 + 3547: -3,1 + 3555: -2,1 + 3569: -1,1 + 3584: -4,-1 + 3592: 4,-1 + 3599: 12,-10 + 3618: 6,16 + 3626: 6,17 + 3634: 6,18 + 3642: 6,19 + 3650: 6,20 + 3657: 9,28 + 3679: 0,1 + 3689: 1,1 + 3699: 2,1 + 3716: 3,0 + 3724: 3,1 + 3732: 4,0 + 3740: 4,1 + 3748: 8,12 + 3755: 9,12 + 3768: -8,12 + 3776: -4,0 + 3784: -4,1 + 3792: -3,0 + 3800: -3,1 + 3808: -2,1 + 3825: -1,1 + 3841: -4,-1 + 3849: 4,-1 + 3856: 12,-10 + 3875: 6,16 + 3883: 6,17 + 3891: 6,18 + 3899: 6,19 + 3907: 6,20 + 3914: 9,28 + 3927: 0,1 + 3937: 1,1 + 3947: 2,1 + 3964: 3,0 + 3972: 3,1 + 3980: 4,0 + 3988: 4,1 + 3996: 8,12 + 4003: 9,12 + 4016: -8,12 + 4024: -4,0 + 4032: -4,1 + 4040: -3,0 + 4048: -3,1 + 4056: -2,1 + 4073: -1,1 + 4086: -4,-1 + 4094: 4,-1 + 4117: 6,16 + 4125: 6,17 + 4133: 6,18 + 4141: 6,19 + 4149: 6,20 + 4156: 9,28 + 4168: 12,-10 + 4175: 0,1 + 4185: 1,1 + 4195: 2,1 + 4212: 3,0 + 4220: 3,1 + 4228: 4,0 + 4236: 4,1 + 4244: 8,12 + 4251: 9,12 + 4264: -8,12 + 4272: -4,0 + 4280: -4,1 + 4288: -3,0 + 4296: -3,1 + 4304: -2,1 + 4321: -1,1 + 4337: -4,-1 + 4345: 4,-1 + 4352: 12,-10 + 4371: 6,16 + 4379: 6,17 + 4387: 6,18 + 4395: 6,19 + 4403: 6,20 + 4410: 9,28 + 4423: 0,1 + 4433: 1,1 + 4443: 2,1 + 4460: 3,0 + 4468: 3,1 + 4476: 4,0 + 4484: 4,1 + 4492: 8,12 + 4499: 9,12 + 4512: -8,12 + 4520: -4,0 + 4528: -4,1 + 4536: -3,0 + 4544: -3,1 + 4552: -2,1 + 4569: -1,1 + 4585: -4,-1 + 4593: 4,-1 + 4600: 12,-10 + 4619: 6,16 + 4627: 6,17 + 4635: 6,18 + 4643: 6,19 + 4651: 6,20 + 4658: 9,28 + 4671: 0,1 + 4681: 1,1 + 4691: 2,1 + 4708: 3,0 + 4716: 3,1 + 4724: 4,0 + 4732: 4,1 + 4740: 8,12 + 4747: 9,12 + 4760: -8,12 + 4768: -4,0 + 4776: -4,1 + 4784: -3,0 + 4792: -3,1 + 4800: -2,1 + 4817: -1,1 + 4833: -4,-1 + 4841: 4,-1 + 4848: 12,-10 + 4867: 6,16 + 4875: 6,17 + 4883: 6,18 + 4891: 6,19 + 4899: 6,20 + 4906: 9,28 + 4946: 0,1 + 4956: 1,1 + 4966: 2,1 + 4983: 3,0 + 4991: 3,1 + 4999: 4,0 + 5007: 4,1 + 5015: 8,12 + 5022: 9,12 + 5035: -8,12 + 5043: -4,0 + 5051: -4,1 + 5059: -3,0 + 5067: -3,1 + 5075: -2,1 + 5092: -1,1 + 5108: -4,-1 + 5116: 4,-1 + 5123: 12,-10 + 5142: 6,16 + 5150: 6,17 + 5158: 6,18 + 5166: 6,19 + 5174: 6,20 + 5181: 9,28 + 5194: 0,1 + 5204: 1,1 + 5214: 2,1 + 5231: 3,0 + 5239: 3,1 + 5247: 4,0 + 5255: 4,1 + 5263: 8,12 + 5270: 9,12 + 5283: -8,12 + 5291: -4,0 + 5299: -4,1 + 5307: -3,0 + 5315: -3,1 + 5323: -2,1 + 5340: -1,1 + 5356: -4,-1 + 5364: 4,-1 + 5371: 12,-10 + 5390: 6,16 + 5398: 6,17 + 5406: 6,18 + 5414: 6,19 + 5422: 6,20 + 5429: 9,28 - node: id: LatticeEdgeE decals: - 981: 0,1 - 989: 1,1 - 997: 2,1 - 1005: 3,0 - 1013: 3,1 - 1021: 4,0 - 1029: 4,1 - 1037: 8,12 - 1050: -9,3 - 1054: -9,12 - 1057: -8,12 - 1065: -4,0 - 1073: -4,1 - 1081: -3,0 - 1089: -3,1 - 1097: -2,1 - 1105: -1,1 - 1113: -12,-10 - 1115: -10,-16 - 1119: -4,-1 - 1127: 4,-1 - 1146: -9,-17 - 1149: -3,-20 - 1153: 6,16 - 1161: 6,17 - 1169: 6,18 - 1177: 6,19 - 1185: 6,20 - 1198: -9,24 - 1202: -9,28 - 1205: 0,1 - 1213: 1,1 - 1221: 2,1 - 1229: 3,0 - 1237: 3,1 - 1245: 4,0 - 1253: 4,1 - 1261: 8,12 - 1274: -9,3 - 1278: -9,12 - 1281: -8,12 - 1289: -4,0 - 1297: -4,1 - 1305: -3,0 - 1313: -3,1 - 1321: -2,1 - 1329: -1,1 - 1337: -12,-10 - 1339: -10,-16 - 1343: -4,-1 - 1351: 4,-1 - 1370: -9,-17 - 1373: -3,-20 - 1377: 6,16 - 1385: 6,17 - 1393: 6,18 - 1401: 6,19 - 1409: 6,20 - 1422: -9,24 - 1426: -9,28 - 1429: 0,1 - 1437: 1,1 - 1445: 2,1 - 1453: 3,0 - 1461: 3,1 - 1469: 4,0 - 1477: 4,1 - 1485: 8,12 - 1498: -9,3 - 1502: -9,12 - 1505: -8,12 - 1513: -4,0 - 1521: -4,1 - 1529: -3,0 - 1537: -3,1 - 1545: -2,1 - 1553: -1,1 - 1561: -12,-10 - 1563: -10,-16 - 1567: -4,-1 - 1575: 4,-1 - 1594: -9,-17 - 1597: -3,-20 - 1601: 6,16 - 1609: 6,17 - 1617: 6,18 - 1625: 6,19 - 1633: 6,20 - 1646: -9,24 - 1650: -9,28 - 1653: 0,1 - 1661: 1,1 - 1669: 2,1 - 1677: 3,0 - 1685: 3,1 - 1693: 4,0 - 1701: 4,1 - 1709: 8,12 - 1722: -9,3 - 1726: -9,12 - 1729: -8,12 - 1737: -4,0 - 1745: -4,1 - 1753: -3,0 - 1761: -3,1 - 1769: -2,1 - 1777: -1,1 - 1785: -12,-10 - 1787: -10,-16 - 1791: -4,-1 - 1799: 4,-1 - 1818: -9,-17 - 1821: -3,-20 - 1825: 6,16 - 1833: 6,17 - 1841: 6,18 - 1849: 6,19 - 1857: 6,20 - 1870: -9,24 - 1874: -9,28 - 1877: 0,1 - 1885: 1,1 - 1893: 2,1 - 1901: 3,0 - 1909: 3,1 - 1917: 4,0 - 1925: 4,1 - 1933: 8,12 - 1946: -9,3 - 1950: -4,0 - 1958: -4,1 - 1966: -3,0 - 1974: -3,1 - 1982: -2,1 - 1990: -1,1 - 1998: -12,-10 - 2000: -10,-16 - 2004: -4,-1 - 2012: 4,-1 - 2031: -9,-17 - 2034: -3,-20 - 2038: 6,16 - 2046: 6,17 - 2054: 6,18 - 2062: 6,19 - 2070: 6,20 - 2083: -9,24 - 2087: -9,28 - 2090: -8,12 - 2098: -9,12 - 2101: 0,1 - 2109: 1,1 - 2117: 2,1 - 2125: 3,0 - 2133: 3,1 - 2141: 4,0 - 2149: 4,1 - 2157: 8,12 - 2170: -9,3 - 2174: -9,12 - 2177: -8,12 - 2185: -4,0 - 2193: -4,1 - 2201: -3,0 - 2209: -3,1 - 2217: -2,1 - 2225: -1,1 - 2233: -12,-10 - 2235: -10,-16 - 2239: -4,-1 - 2247: 4,-1 - 2266: -9,-17 - 2269: -3,-20 - 2273: 6,16 - 2281: 6,17 - 2289: 6,18 - 2297: 6,19 - 2305: 6,20 - 2318: -9,24 - 2322: -9,28 - 2325: 0,1 - 2333: 1,1 - 2341: 2,1 - 2349: 3,0 - 2357: 3,1 - 2365: 4,0 - 2373: 4,1 - 2381: 8,12 - 2394: -9,3 - 2398: -9,12 - 2401: -8,12 - 2409: -4,0 - 2417: -4,1 - 2425: -3,0 - 2433: -3,1 - 2441: -2,1 - 2449: -1,1 - 2457: -12,-10 - 2459: -10,-16 - 2463: -4,-1 - 2471: 4,-1 - 2490: -9,-17 - 2493: -3,-20 - 2497: 6,16 - 2505: 6,17 - 2513: 6,18 - 2521: 6,19 - 2529: 6,20 - 2542: -9,24 - 2546: -9,28 - 2549: 0,1 - 2557: 1,1 - 2565: 2,1 - 2573: 3,0 - 2581: 3,1 - 2589: 4,0 - 2597: 4,1 - 2605: 8,12 - 2618: -9,3 - 2622: -9,12 - 2625: -8,12 - 2633: -4,0 - 2641: -4,1 - 2649: -3,0 - 2657: -3,1 - 2665: -2,1 - 2673: -1,1 - 2681: -12,-10 - 2683: -10,-16 - 2687: -4,-1 - 2695: 4,-1 - 2714: -9,-17 - 2717: -3,-20 - 2721: 6,16 - 2729: 6,17 - 2737: 6,18 - 2745: 6,19 - 2753: 6,20 - 2766: -9,24 - 2770: -9,28 - 2773: 0,1 - 2781: 1,1 - 2789: 2,1 - 2797: 3,0 - 2805: 3,1 - 2813: 4,0 - 2821: 4,1 - 2829: 8,12 - 2842: -9,3 - 2846: -9,12 - 2849: -8,12 - 2857: -4,0 - 2865: -4,1 - 2873: -3,0 - 2881: -3,1 - 2889: -2,1 - 2897: -1,1 - 2905: -12,-10 - 2907: -10,-16 - 2911: -4,-1 - 2919: 4,-1 - 2938: -9,-17 - 2941: -3,-20 - 2945: 6,16 - 2953: 6,17 - 2961: 6,18 - 2969: 6,19 - 2977: 6,20 - 2990: -9,24 - 2994: -9,28 - 2997: 0,1 - 3005: 1,1 - 3013: 2,1 - 3021: 3,0 - 3029: 3,1 - 3037: 4,0 - 3045: 4,1 - 3053: 8,12 - 3066: -9,3 - 3070: -9,12 - 3073: -8,12 - 3081: -4,0 - 3089: -4,1 - 3097: -3,0 - 3105: -3,1 - 3113: -2,1 - 3121: -1,1 - 3129: -12,-10 - 3131: -10,-16 - 3135: -4,-1 - 3143: 4,-1 - 3162: -9,-17 - 3165: -3,-20 - 3169: 6,16 - 3177: 6,17 - 3185: 6,18 - 3193: 6,19 - 3201: 6,20 - 3214: -9,24 - 3218: -9,28 - 3221: 0,1 - 3229: 1,1 - 3237: 2,1 - 3245: 3,0 - 3253: 3,1 - 3261: 4,0 - 3269: 4,1 - 3277: 8,12 - 3290: -9,3 - 3294: -9,12 - 3297: -8,12 - 3305: -4,0 - 3313: -4,1 - 3321: -3,0 - 3329: -3,1 - 3337: -2,1 - 3345: -1,1 - 3353: -12,-10 - 3355: -10,-16 - 3359: -4,-1 - 3367: 4,-1 - 3386: -9,-17 - 3389: -3,-20 - 3393: 6,16 - 3401: 6,17 - 3409: 6,18 - 3417: 6,19 - 3425: 6,20 - 3438: -9,24 - 3442: -9,28 - 3469: 0,1 - 3478: 1,1 - 3487: 2,1 - 3501: 3,0 - 3509: 3,1 - 3517: 4,0 - 3525: 4,1 - 3533: 8,12 - 3546: -9,3 - 3550: -9,12 - 3553: -8,12 - 3561: -4,0 - 3569: -4,1 - 3577: -3,0 - 3585: -3,1 - 3593: -2,1 - 3607: -1,1 - 3616: -12,-10 - 3618: -10,-16 - 3622: -4,-1 - 3630: 4,-1 - 3649: -9,-17 - 3652: -3,-20 - 3656: 6,16 - 3664: 6,17 - 3672: 6,18 - 3680: 6,19 - 3688: 6,20 - 3701: -9,24 - 3705: -9,28 - 3717: 0,1 - 3727: 1,1 - 3737: 2,1 - 3754: 3,0 - 3762: 3,1 - 3770: 4,0 - 3778: 4,1 - 3786: 8,12 - 3799: -9,3 - 3803: -9,12 - 3806: -8,12 - 3814: -4,0 - 3822: -4,1 - 3830: -3,0 - 3838: -3,1 - 3846: -2,1 - 3863: -1,1 - 3873: -12,-10 - 3875: -10,-16 - 3879: -4,-1 - 3887: 4,-1 - 3906: -9,-17 - 3909: -3,-20 - 3913: 6,16 - 3921: 6,17 - 3929: 6,18 - 3937: 6,19 - 3945: 6,20 - 3958: -9,24 - 3962: -9,28 - 3965: 0,1 - 3975: 1,1 - 3985: 2,1 - 4002: 3,0 - 4010: 3,1 - 4018: 4,0 - 4026: 4,1 - 4034: 8,12 - 4047: -9,3 - 4051: -9,12 - 4054: -8,12 - 4062: -4,0 - 4070: -4,1 - 4078: -3,0 - 4086: -3,1 - 4094: -2,1 - 4111: -1,1 - 4120: -10,-16 - 4124: -4,-1 - 4132: 4,-1 - 4148: -9,-17 - 4151: -3,-20 - 4155: 6,16 - 4163: 6,17 - 4171: 6,18 - 4179: 6,19 - 4187: 6,20 - 4200: -9,24 - 4204: -9,28 - 4207: -12,-10 - 4213: 0,1 - 4223: 1,1 - 4233: 2,1 - 4250: 3,0 - 4258: 3,1 - 4266: 4,0 - 4274: 4,1 - 4282: 8,12 - 4295: -9,3 - 4299: -9,12 - 4302: -8,12 - 4310: -4,0 - 4318: -4,1 - 4326: -3,0 - 4334: -3,1 - 4342: -2,1 - 4359: -1,1 - 4369: -12,-10 - 4371: -10,-16 - 4375: -4,-1 - 4383: 4,-1 - 4402: -9,-17 - 4405: -3,-20 - 4409: 6,16 - 4417: 6,17 - 4425: 6,18 - 4433: 6,19 - 4441: 6,20 - 4454: -9,24 - 4458: -9,28 - 4461: 0,1 - 4471: 1,1 - 4481: 2,1 - 4498: 3,0 - 4506: 3,1 - 4514: 4,0 - 4522: 4,1 - 4530: 8,12 - 4543: -9,3 - 4547: -9,12 - 4550: -8,12 - 4558: -4,0 - 4566: -4,1 - 4574: -3,0 - 4582: -3,1 - 4590: -2,1 - 4607: -1,1 - 4617: -12,-10 - 4619: -10,-16 - 4623: -4,-1 - 4631: 4,-1 - 4650: -9,-17 - 4653: -3,-20 - 4657: 6,16 - 4665: 6,17 - 4673: 6,18 - 4681: 6,19 - 4689: 6,20 - 4702: -9,24 - 4706: -9,28 + 938: 0,1 + 946: 1,1 + 954: 2,1 + 962: 3,0 + 970: 3,1 + 978: 4,0 + 986: 4,1 + 994: 8,12 + 1007: -9,3 + 1011: -9,12 + 1014: -8,12 + 1022: -4,0 + 1030: -4,1 + 1038: -3,0 + 1046: -3,1 + 1054: -2,1 + 1062: -1,1 + 1070: -12,-10 + 1072: -10,-16 + 1076: -4,-1 + 1084: 4,-1 + 1103: -9,-17 + 1106: -3,-20 + 1110: 6,16 + 1118: 6,17 + 1126: 6,18 + 1134: 6,19 + 1142: 6,20 + 1155: -9,24 + 1159: -9,28 + 1162: 0,1 + 1170: 1,1 + 1178: 2,1 + 1186: 3,0 + 1194: 3,1 + 1202: 4,0 + 1210: 4,1 + 1218: 8,12 + 1231: -9,3 + 1235: -9,12 + 1238: -8,12 + 1246: -4,0 + 1254: -4,1 + 1262: -3,0 + 1270: -3,1 + 1278: -2,1 + 1286: -1,1 + 1294: -12,-10 + 1296: -10,-16 + 1300: -4,-1 + 1308: 4,-1 + 1327: -9,-17 + 1330: -3,-20 + 1334: 6,16 + 1342: 6,17 + 1350: 6,18 + 1358: 6,19 + 1366: 6,20 + 1379: -9,24 + 1383: -9,28 + 1386: 0,1 + 1394: 1,1 + 1402: 2,1 + 1410: 3,0 + 1418: 3,1 + 1426: 4,0 + 1434: 4,1 + 1442: 8,12 + 1455: -9,3 + 1459: -9,12 + 1462: -8,12 + 1470: -4,0 + 1478: -4,1 + 1486: -3,0 + 1494: -3,1 + 1502: -2,1 + 1510: -1,1 + 1518: -12,-10 + 1520: -10,-16 + 1524: -4,-1 + 1532: 4,-1 + 1551: -9,-17 + 1554: -3,-20 + 1558: 6,16 + 1566: 6,17 + 1574: 6,18 + 1582: 6,19 + 1590: 6,20 + 1603: -9,24 + 1607: -9,28 + 1610: 0,1 + 1618: 1,1 + 1626: 2,1 + 1634: 3,0 + 1642: 3,1 + 1650: 4,0 + 1658: 4,1 + 1666: 8,12 + 1679: -9,3 + 1683: -9,12 + 1686: -8,12 + 1694: -4,0 + 1702: -4,1 + 1710: -3,0 + 1718: -3,1 + 1726: -2,1 + 1734: -1,1 + 1742: -12,-10 + 1744: -10,-16 + 1748: -4,-1 + 1756: 4,-1 + 1775: -9,-17 + 1778: -3,-20 + 1782: 6,16 + 1790: 6,17 + 1798: 6,18 + 1806: 6,19 + 1814: 6,20 + 1827: -9,24 + 1831: -9,28 + 1834: 0,1 + 1842: 1,1 + 1850: 2,1 + 1858: 3,0 + 1866: 3,1 + 1874: 4,0 + 1882: 4,1 + 1890: 8,12 + 1903: -9,3 + 1907: -4,0 + 1915: -4,1 + 1923: -3,0 + 1931: -3,1 + 1939: -2,1 + 1947: -1,1 + 1955: -12,-10 + 1957: -10,-16 + 1961: -4,-1 + 1969: 4,-1 + 1988: -9,-17 + 1991: -3,-20 + 1995: 6,16 + 2003: 6,17 + 2011: 6,18 + 2019: 6,19 + 2027: 6,20 + 2040: -9,24 + 2044: -9,28 + 2047: -8,12 + 2055: -9,12 + 2058: 0,1 + 2066: 1,1 + 2074: 2,1 + 2082: 3,0 + 2090: 3,1 + 2098: 4,0 + 2106: 4,1 + 2114: 8,12 + 2127: -9,3 + 2131: -9,12 + 2134: -8,12 + 2142: -4,0 + 2150: -4,1 + 2158: -3,0 + 2166: -3,1 + 2174: -2,1 + 2182: -1,1 + 2190: -12,-10 + 2192: -10,-16 + 2196: -4,-1 + 2204: 4,-1 + 2223: -9,-17 + 2226: -3,-20 + 2230: 6,16 + 2238: 6,17 + 2246: 6,18 + 2254: 6,19 + 2262: 6,20 + 2275: -9,24 + 2279: -9,28 + 2282: 0,1 + 2290: 1,1 + 2298: 2,1 + 2306: 3,0 + 2314: 3,1 + 2322: 4,0 + 2330: 4,1 + 2338: 8,12 + 2351: -9,3 + 2355: -9,12 + 2358: -8,12 + 2366: -4,0 + 2374: -4,1 + 2382: -3,0 + 2390: -3,1 + 2398: -2,1 + 2406: -1,1 + 2414: -12,-10 + 2416: -10,-16 + 2420: -4,-1 + 2428: 4,-1 + 2447: -9,-17 + 2450: -3,-20 + 2454: 6,16 + 2462: 6,17 + 2470: 6,18 + 2478: 6,19 + 2486: 6,20 + 2499: -9,24 + 2503: -9,28 + 2506: 0,1 + 2514: 1,1 + 2522: 2,1 + 2530: 3,0 + 2538: 3,1 + 2546: 4,0 + 2554: 4,1 + 2562: 8,12 + 2575: -9,3 + 2579: -9,12 + 2582: -8,12 + 2590: -4,0 + 2598: -4,1 + 2606: -3,0 + 2614: -3,1 + 2622: -2,1 + 2630: -1,1 + 2638: -12,-10 + 2640: -10,-16 + 2644: -4,-1 + 2652: 4,-1 + 2671: -9,-17 + 2674: -3,-20 + 2678: 6,16 + 2686: 6,17 + 2694: 6,18 + 2702: 6,19 + 2710: 6,20 + 2723: -9,24 + 2727: -9,28 + 2730: 0,1 + 2738: 1,1 + 2746: 2,1 + 2754: 3,0 + 2762: 3,1 + 2770: 4,0 + 2778: 4,1 + 2786: 8,12 + 2799: -9,3 + 2803: -9,12 + 2806: -8,12 + 2814: -4,0 + 2822: -4,1 + 2830: -3,0 + 2838: -3,1 + 2846: -2,1 + 2854: -1,1 + 2862: -12,-10 + 2864: -10,-16 + 2868: -4,-1 + 2876: 4,-1 + 2895: -9,-17 + 2898: -3,-20 + 2902: 6,16 + 2910: 6,17 + 2918: 6,18 + 2926: 6,19 + 2934: 6,20 + 2947: -9,24 + 2951: -9,28 + 2954: 0,1 + 2962: 1,1 + 2970: 2,1 + 2978: 3,0 + 2986: 3,1 + 2994: 4,0 + 3002: 4,1 + 3010: 8,12 + 3023: -9,3 + 3027: -9,12 + 3030: -8,12 + 3038: -4,0 + 3046: -4,1 + 3054: -3,0 + 3062: -3,1 + 3070: -2,1 + 3078: -1,1 + 3086: -12,-10 + 3088: -10,-16 + 3092: -4,-1 + 3100: 4,-1 + 3119: -9,-17 + 3122: -3,-20 + 3126: 6,16 + 3134: 6,17 + 3142: 6,18 + 3150: 6,19 + 3158: 6,20 + 3171: -9,24 + 3175: -9,28 + 3178: 0,1 + 3186: 1,1 + 3194: 2,1 + 3202: 3,0 + 3210: 3,1 + 3218: 4,0 + 3226: 4,1 + 3234: 8,12 + 3247: -9,3 + 3251: -9,12 + 3254: -8,12 + 3262: -4,0 + 3270: -4,1 + 3278: -3,0 + 3286: -3,1 + 3294: -2,1 + 3302: -1,1 + 3310: -12,-10 + 3312: -10,-16 + 3316: -4,-1 + 3324: 4,-1 + 3343: -9,-17 + 3346: -3,-20 + 3350: 6,16 + 3358: 6,17 + 3366: 6,18 + 3374: 6,19 + 3382: 6,20 + 3395: -9,24 + 3399: -9,28 + 3426: 0,1 + 3435: 1,1 + 3444: 2,1 + 3458: 3,0 + 3466: 3,1 + 3474: 4,0 + 3482: 4,1 + 3490: 8,12 + 3503: -9,3 + 3507: -9,12 + 3510: -8,12 + 3518: -4,0 + 3526: -4,1 + 3534: -3,0 + 3542: -3,1 + 3550: -2,1 + 3564: -1,1 + 3573: -12,-10 + 3575: -10,-16 + 3579: -4,-1 + 3587: 4,-1 + 3606: -9,-17 + 3609: -3,-20 + 3613: 6,16 + 3621: 6,17 + 3629: 6,18 + 3637: 6,19 + 3645: 6,20 + 3658: -9,24 + 3662: -9,28 + 3674: 0,1 + 3684: 1,1 + 3694: 2,1 + 3711: 3,0 + 3719: 3,1 + 3727: 4,0 + 3735: 4,1 + 3743: 8,12 + 3756: -9,3 + 3760: -9,12 + 3763: -8,12 + 3771: -4,0 + 3779: -4,1 + 3787: -3,0 + 3795: -3,1 + 3803: -2,1 + 3820: -1,1 + 3830: -12,-10 + 3832: -10,-16 + 3836: -4,-1 + 3844: 4,-1 + 3863: -9,-17 + 3866: -3,-20 + 3870: 6,16 + 3878: 6,17 + 3886: 6,18 + 3894: 6,19 + 3902: 6,20 + 3915: -9,24 + 3919: -9,28 + 3922: 0,1 + 3932: 1,1 + 3942: 2,1 + 3959: 3,0 + 3967: 3,1 + 3975: 4,0 + 3983: 4,1 + 3991: 8,12 + 4004: -9,3 + 4008: -9,12 + 4011: -8,12 + 4019: -4,0 + 4027: -4,1 + 4035: -3,0 + 4043: -3,1 + 4051: -2,1 + 4068: -1,1 + 4077: -10,-16 + 4081: -4,-1 + 4089: 4,-1 + 4105: -9,-17 + 4108: -3,-20 + 4112: 6,16 + 4120: 6,17 + 4128: 6,18 + 4136: 6,19 + 4144: 6,20 + 4157: -9,24 + 4161: -9,28 + 4164: -12,-10 + 4170: 0,1 + 4180: 1,1 + 4190: 2,1 + 4207: 3,0 + 4215: 3,1 + 4223: 4,0 + 4231: 4,1 + 4239: 8,12 + 4252: -9,3 + 4256: -9,12 + 4259: -8,12 + 4267: -4,0 + 4275: -4,1 + 4283: -3,0 + 4291: -3,1 + 4299: -2,1 + 4316: -1,1 + 4326: -12,-10 + 4328: -10,-16 + 4332: -4,-1 + 4340: 4,-1 + 4359: -9,-17 + 4362: -3,-20 + 4366: 6,16 + 4374: 6,17 + 4382: 6,18 + 4390: 6,19 + 4398: 6,20 + 4411: -9,24 + 4415: -9,28 + 4418: 0,1 + 4428: 1,1 + 4438: 2,1 + 4455: 3,0 + 4463: 3,1 + 4471: 4,0 + 4479: 4,1 + 4487: 8,12 + 4500: -9,3 + 4504: -9,12 + 4507: -8,12 + 4515: -4,0 + 4523: -4,1 + 4531: -3,0 + 4539: -3,1 + 4547: -2,1 + 4564: -1,1 + 4574: -12,-10 + 4576: -10,-16 + 4580: -4,-1 + 4588: 4,-1 + 4607: -9,-17 + 4610: -3,-20 + 4614: 6,16 + 4622: 6,17 + 4630: 6,18 + 4638: 6,19 + 4646: 6,20 + 4659: -9,24 + 4663: -9,28 + 4666: 0,1 + 4676: 1,1 + 4686: 2,1 + 4703: 3,0 + 4711: 3,1 + 4719: 4,0 + 4727: 4,1 + 4735: 8,12 + 4748: -9,3 + 4752: -9,12 + 4755: -8,12 + 4763: -4,0 + 4771: -4,1 + 4779: -3,0 + 4787: -3,1 + 4795: -2,1 + 4812: -1,1 + 4822: -12,-10 + 4824: -10,-16 + 4828: -4,-1 + 4836: 4,-1 + 4855: -9,-17 + 4858: -3,-20 + 4862: 6,16 + 4870: 6,17 + 4878: 6,18 + 4886: 6,19 + 4894: 6,20 + 4907: -9,24 + 4911: -9,28 + 4941: 0,1 + 4951: 1,1 + 4961: 2,1 + 4978: 3,0 + 4986: 3,1 + 4994: 4,0 + 5002: 4,1 + 5010: 8,12 + 5023: -9,3 + 5027: -9,12 + 5030: -8,12 + 5038: -4,0 + 5046: -4,1 + 5054: -3,0 + 5062: -3,1 + 5070: -2,1 + 5087: -1,1 + 5097: -12,-10 + 5099: -10,-16 + 5103: -4,-1 + 5111: 4,-1 + 5130: -9,-17 + 5133: -3,-20 + 5137: 6,16 + 5145: 6,17 + 5153: 6,18 + 5161: 6,19 + 5169: 6,20 + 5182: -9,24 + 5186: -9,28 + 5189: 0,1 + 5199: 1,1 + 5209: 2,1 + 5226: 3,0 + 5234: 3,1 + 5242: 4,0 + 5250: 4,1 + 5258: 8,12 + 5271: -9,3 + 5275: -9,12 + 5278: -8,12 + 5286: -4,0 + 5294: -4,1 + 5302: -3,0 + 5310: -3,1 + 5318: -2,1 + 5335: -1,1 + 5345: -12,-10 + 5347: -10,-16 + 5351: -4,-1 + 5359: 4,-1 + 5378: -9,-17 + 5381: -3,-20 + 5385: 6,16 + 5393: 6,17 + 5401: 6,18 + 5409: 6,19 + 5417: 6,20 + 5430: -9,24 + 5434: -9,28 - node: id: LatticeEdgeN decals: - 983: 0,1 - 991: 1,1 - 999: 2,1 - 1007: 3,0 - 1015: 3,1 - 1023: 4,0 - 1031: 4,1 - 1039: 8,12 - 1044: 9,4 - 1051: -9,3 - 1059: -8,12 - 1067: -4,0 - 1075: -4,1 - 1083: -3,0 - 1091: -3,1 - 1099: -2,1 - 1107: -1,1 - 1116: -10,-16 - 1121: -4,-1 - 1129: 4,-1 - 1134: 10,-16 - 1140: 3,-20 - 1143: 9,-17 - 1147: -9,-17 - 1150: -3,-20 - 1155: 6,16 - 1163: 6,17 - 1171: 6,18 - 1179: 6,19 - 1187: 6,20 - 1192: 9,24 - 1199: -9,24 - 1207: 0,1 - 1215: 1,1 - 1223: 2,1 - 1231: 3,0 - 1239: 3,1 - 1247: 4,0 - 1255: 4,1 - 1263: 8,12 - 1268: 9,4 - 1275: -9,3 - 1283: -8,12 - 1291: -4,0 - 1299: -4,1 - 1307: -3,0 - 1315: -3,1 - 1323: -2,1 - 1331: -1,1 - 1340: -10,-16 - 1345: -4,-1 - 1353: 4,-1 - 1358: 10,-16 - 1364: 3,-20 - 1367: 9,-17 - 1371: -9,-17 - 1374: -3,-20 - 1379: 6,16 - 1387: 6,17 - 1395: 6,18 - 1403: 6,19 - 1411: 6,20 - 1416: 9,24 - 1423: -9,24 - 1431: 0,1 - 1439: 1,1 - 1447: 2,1 - 1455: 3,0 - 1463: 3,1 - 1471: 4,0 - 1479: 4,1 - 1487: 8,12 - 1492: 9,4 - 1499: -9,3 - 1507: -8,12 - 1515: -4,0 - 1523: -4,1 - 1531: -3,0 - 1539: -3,1 - 1547: -2,1 - 1555: -1,1 - 1564: -10,-16 - 1569: -4,-1 - 1577: 4,-1 - 1582: 10,-16 - 1588: 3,-20 - 1591: 9,-17 - 1595: -9,-17 - 1598: -3,-20 - 1603: 6,16 - 1611: 6,17 - 1619: 6,18 - 1627: 6,19 - 1635: 6,20 - 1640: 9,24 - 1647: -9,24 - 1655: 0,1 - 1663: 1,1 - 1671: 2,1 - 1679: 3,0 - 1687: 3,1 - 1695: 4,0 - 1703: 4,1 - 1711: 8,12 - 1716: 9,4 - 1723: -9,3 - 1731: -8,12 - 1739: -4,0 - 1747: -4,1 - 1755: -3,0 - 1763: -3,1 - 1771: -2,1 - 1779: -1,1 - 1788: -10,-16 - 1793: -4,-1 - 1801: 4,-1 - 1806: 10,-16 - 1812: 3,-20 - 1815: 9,-17 - 1819: -9,-17 - 1822: -3,-20 - 1827: 6,16 - 1835: 6,17 - 1843: 6,18 - 1851: 6,19 - 1859: 6,20 - 1864: 9,24 - 1871: -9,24 - 1879: 0,1 - 1887: 1,1 - 1895: 2,1 - 1903: 3,0 - 1911: 3,1 - 1919: 4,0 - 1927: 4,1 - 1935: 8,12 - 1940: 9,4 - 1947: -9,3 - 1952: -4,0 - 1960: -4,1 - 1968: -3,0 - 1976: -3,1 - 1984: -2,1 - 1992: -1,1 - 2001: -10,-16 - 2006: -4,-1 - 2014: 4,-1 - 2019: 10,-16 - 2025: 3,-20 - 2028: 9,-17 - 2032: -9,-17 - 2035: -3,-20 - 2040: 6,16 - 2048: 6,17 - 2056: 6,18 - 2064: 6,19 - 2072: 6,20 - 2077: 9,24 - 2084: -9,24 - 2092: -8,12 - 2103: 0,1 - 2111: 1,1 - 2119: 2,1 - 2127: 3,0 - 2135: 3,1 - 2143: 4,0 - 2151: 4,1 - 2159: 8,12 - 2164: 9,4 - 2171: -9,3 - 2179: -8,12 - 2187: -4,0 - 2195: -4,1 - 2203: -3,0 - 2211: -3,1 - 2219: -2,1 - 2227: -1,1 - 2236: -10,-16 - 2241: -4,-1 - 2249: 4,-1 - 2254: 10,-16 - 2260: 3,-20 - 2263: 9,-17 - 2267: -9,-17 - 2270: -3,-20 - 2275: 6,16 - 2283: 6,17 - 2291: 6,18 - 2299: 6,19 - 2307: 6,20 - 2312: 9,24 - 2319: -9,24 - 2327: 0,1 - 2335: 1,1 - 2343: 2,1 - 2351: 3,0 - 2359: 3,1 - 2367: 4,0 - 2375: 4,1 - 2383: 8,12 - 2388: 9,4 - 2395: -9,3 - 2403: -8,12 - 2411: -4,0 - 2419: -4,1 - 2427: -3,0 - 2435: -3,1 - 2443: -2,1 - 2451: -1,1 - 2460: -10,-16 - 2465: -4,-1 - 2473: 4,-1 - 2478: 10,-16 - 2484: 3,-20 - 2487: 9,-17 - 2491: -9,-17 - 2494: -3,-20 - 2499: 6,16 - 2507: 6,17 - 2515: 6,18 - 2523: 6,19 - 2531: 6,20 - 2536: 9,24 - 2543: -9,24 - 2551: 0,1 - 2559: 1,1 - 2567: 2,1 - 2575: 3,0 - 2583: 3,1 - 2591: 4,0 - 2599: 4,1 - 2607: 8,12 - 2612: 9,4 - 2619: -9,3 - 2627: -8,12 - 2635: -4,0 - 2643: -4,1 - 2651: -3,0 - 2659: -3,1 - 2667: -2,1 - 2675: -1,1 - 2684: -10,-16 - 2689: -4,-1 - 2697: 4,-1 - 2702: 10,-16 - 2708: 3,-20 - 2711: 9,-17 - 2715: -9,-17 - 2718: -3,-20 - 2723: 6,16 - 2731: 6,17 - 2739: 6,18 - 2747: 6,19 - 2755: 6,20 - 2760: 9,24 - 2767: -9,24 - 2775: 0,1 - 2783: 1,1 - 2791: 2,1 - 2799: 3,0 - 2807: 3,1 - 2815: 4,0 - 2823: 4,1 - 2831: 8,12 - 2836: 9,4 - 2843: -9,3 - 2851: -8,12 - 2859: -4,0 - 2867: -4,1 - 2875: -3,0 - 2883: -3,1 - 2891: -2,1 - 2899: -1,1 - 2908: -10,-16 - 2913: -4,-1 - 2921: 4,-1 - 2926: 10,-16 - 2932: 3,-20 - 2935: 9,-17 - 2939: -9,-17 - 2942: -3,-20 - 2947: 6,16 - 2955: 6,17 - 2963: 6,18 - 2971: 6,19 - 2979: 6,20 - 2984: 9,24 - 2991: -9,24 - 2999: 0,1 - 3007: 1,1 - 3015: 2,1 - 3023: 3,0 - 3031: 3,1 - 3039: 4,0 - 3047: 4,1 - 3055: 8,12 - 3060: 9,4 - 3067: -9,3 - 3075: -8,12 - 3083: -4,0 - 3091: -4,1 - 3099: -3,0 - 3107: -3,1 - 3115: -2,1 - 3123: -1,1 - 3132: -10,-16 - 3137: -4,-1 - 3145: 4,-1 - 3150: 10,-16 - 3156: 3,-20 - 3159: 9,-17 - 3163: -9,-17 - 3166: -3,-20 - 3171: 6,16 - 3179: 6,17 - 3187: 6,18 - 3195: 6,19 - 3203: 6,20 - 3208: 9,24 - 3215: -9,24 - 3223: 0,1 - 3231: 1,1 - 3239: 2,1 - 3247: 3,0 - 3255: 3,1 - 3263: 4,0 - 3271: 4,1 - 3279: 8,12 - 3284: 9,4 - 3291: -9,3 - 3299: -8,12 - 3307: -4,0 - 3315: -4,1 - 3323: -3,0 - 3331: -3,1 - 3339: -2,1 - 3347: -1,1 - 3356: -10,-16 - 3361: -4,-1 - 3369: 4,-1 - 3374: 10,-16 - 3380: 3,-20 - 3383: 9,-17 - 3387: -9,-17 - 3390: -3,-20 - 3395: 6,16 - 3403: 6,17 - 3411: 6,18 - 3419: 6,19 - 3427: 6,20 - 3432: 9,24 - 3439: -9,24 - 3471: 0,1 - 3480: 1,1 - 3489: 2,1 - 3503: 3,0 - 3511: 3,1 - 3519: 4,0 - 3527: 4,1 - 3535: 8,12 - 3540: 9,4 - 3547: -9,3 - 3555: -8,12 - 3563: -4,0 - 3571: -4,1 - 3579: -3,0 - 3587: -3,1 - 3595: -2,1 - 3609: -1,1 - 3619: -10,-16 - 3624: -4,-1 - 3632: 4,-1 - 3637: 10,-16 - 3643: 3,-20 - 3646: 9,-17 - 3650: -9,-17 - 3653: -3,-20 - 3658: 6,16 - 3666: 6,17 - 3674: 6,18 - 3682: 6,19 - 3690: 6,20 - 3695: 9,24 - 3702: -9,24 - 3719: 0,1 - 3729: 1,1 - 3739: 2,1 - 3756: 3,0 - 3764: 3,1 - 3772: 4,0 - 3780: 4,1 - 3788: 8,12 - 3793: 9,4 - 3800: -9,3 - 3808: -8,12 - 3816: -4,0 - 3824: -4,1 - 3832: -3,0 - 3840: -3,1 - 3848: -2,1 - 3865: -1,1 - 3876: -10,-16 - 3881: -4,-1 - 3889: 4,-1 - 3894: 10,-16 - 3900: 3,-20 - 3903: 9,-17 - 3907: -9,-17 - 3910: -3,-20 - 3915: 6,16 - 3923: 6,17 - 3931: 6,18 - 3939: 6,19 - 3947: 6,20 - 3952: 9,24 - 3959: -9,24 - 3967: 0,1 - 3977: 1,1 - 3987: 2,1 - 4004: 3,0 - 4012: 3,1 - 4020: 4,0 - 4028: 4,1 - 4036: 8,12 - 4041: 9,4 - 4048: -9,3 - 4056: -8,12 - 4064: -4,0 - 4072: -4,1 - 4080: -3,0 - 4088: -3,1 - 4096: -2,1 - 4113: -1,1 - 4121: -10,-16 - 4126: -4,-1 - 4134: 4,-1 - 4139: 10,-16 - 4142: 3,-20 - 4145: 9,-17 - 4149: -9,-17 - 4152: -3,-20 - 4157: 6,16 - 4165: 6,17 - 4173: 6,18 - 4181: 6,19 - 4189: 6,20 - 4194: 9,24 - 4201: -9,24 - 4215: 0,1 - 4225: 1,1 - 4235: 2,1 - 4252: 3,0 - 4260: 3,1 - 4268: 4,0 - 4276: 4,1 - 4284: 8,12 - 4289: 9,4 - 4296: -9,3 - 4304: -8,12 - 4312: -4,0 - 4320: -4,1 - 4328: -3,0 - 4336: -3,1 - 4344: -2,1 - 4361: -1,1 - 4372: -10,-16 - 4377: -4,-1 - 4385: 4,-1 - 4390: 10,-16 - 4396: 3,-20 - 4399: 9,-17 - 4403: -9,-17 - 4406: -3,-20 - 4411: 6,16 - 4419: 6,17 - 4427: 6,18 - 4435: 6,19 - 4443: 6,20 - 4448: 9,24 - 4455: -9,24 - 4463: 0,1 - 4473: 1,1 - 4483: 2,1 - 4500: 3,0 - 4508: 3,1 - 4516: 4,0 - 4524: 4,1 - 4532: 8,12 - 4537: 9,4 - 4544: -9,3 - 4552: -8,12 - 4560: -4,0 - 4568: -4,1 - 4576: -3,0 - 4584: -3,1 - 4592: -2,1 - 4609: -1,1 - 4620: -10,-16 - 4625: -4,-1 - 4633: 4,-1 - 4638: 10,-16 - 4644: 3,-20 - 4647: 9,-17 - 4651: -9,-17 - 4654: -3,-20 - 4659: 6,16 - 4667: 6,17 - 4675: 6,18 - 4683: 6,19 - 4691: 6,20 - 4696: 9,24 - 4703: -9,24 + 940: 0,1 + 948: 1,1 + 956: 2,1 + 964: 3,0 + 972: 3,1 + 980: 4,0 + 988: 4,1 + 996: 8,12 + 1001: 9,4 + 1008: -9,3 + 1016: -8,12 + 1024: -4,0 + 1032: -4,1 + 1040: -3,0 + 1048: -3,1 + 1056: -2,1 + 1064: -1,1 + 1073: -10,-16 + 1078: -4,-1 + 1086: 4,-1 + 1091: 10,-16 + 1097: 3,-20 + 1100: 9,-17 + 1104: -9,-17 + 1107: -3,-20 + 1112: 6,16 + 1120: 6,17 + 1128: 6,18 + 1136: 6,19 + 1144: 6,20 + 1149: 9,24 + 1156: -9,24 + 1164: 0,1 + 1172: 1,1 + 1180: 2,1 + 1188: 3,0 + 1196: 3,1 + 1204: 4,0 + 1212: 4,1 + 1220: 8,12 + 1225: 9,4 + 1232: -9,3 + 1240: -8,12 + 1248: -4,0 + 1256: -4,1 + 1264: -3,0 + 1272: -3,1 + 1280: -2,1 + 1288: -1,1 + 1297: -10,-16 + 1302: -4,-1 + 1310: 4,-1 + 1315: 10,-16 + 1321: 3,-20 + 1324: 9,-17 + 1328: -9,-17 + 1331: -3,-20 + 1336: 6,16 + 1344: 6,17 + 1352: 6,18 + 1360: 6,19 + 1368: 6,20 + 1373: 9,24 + 1380: -9,24 + 1388: 0,1 + 1396: 1,1 + 1404: 2,1 + 1412: 3,0 + 1420: 3,1 + 1428: 4,0 + 1436: 4,1 + 1444: 8,12 + 1449: 9,4 + 1456: -9,3 + 1464: -8,12 + 1472: -4,0 + 1480: -4,1 + 1488: -3,0 + 1496: -3,1 + 1504: -2,1 + 1512: -1,1 + 1521: -10,-16 + 1526: -4,-1 + 1534: 4,-1 + 1539: 10,-16 + 1545: 3,-20 + 1548: 9,-17 + 1552: -9,-17 + 1555: -3,-20 + 1560: 6,16 + 1568: 6,17 + 1576: 6,18 + 1584: 6,19 + 1592: 6,20 + 1597: 9,24 + 1604: -9,24 + 1612: 0,1 + 1620: 1,1 + 1628: 2,1 + 1636: 3,0 + 1644: 3,1 + 1652: 4,0 + 1660: 4,1 + 1668: 8,12 + 1673: 9,4 + 1680: -9,3 + 1688: -8,12 + 1696: -4,0 + 1704: -4,1 + 1712: -3,0 + 1720: -3,1 + 1728: -2,1 + 1736: -1,1 + 1745: -10,-16 + 1750: -4,-1 + 1758: 4,-1 + 1763: 10,-16 + 1769: 3,-20 + 1772: 9,-17 + 1776: -9,-17 + 1779: -3,-20 + 1784: 6,16 + 1792: 6,17 + 1800: 6,18 + 1808: 6,19 + 1816: 6,20 + 1821: 9,24 + 1828: -9,24 + 1836: 0,1 + 1844: 1,1 + 1852: 2,1 + 1860: 3,0 + 1868: 3,1 + 1876: 4,0 + 1884: 4,1 + 1892: 8,12 + 1897: 9,4 + 1904: -9,3 + 1909: -4,0 + 1917: -4,1 + 1925: -3,0 + 1933: -3,1 + 1941: -2,1 + 1949: -1,1 + 1958: -10,-16 + 1963: -4,-1 + 1971: 4,-1 + 1976: 10,-16 + 1982: 3,-20 + 1985: 9,-17 + 1989: -9,-17 + 1992: -3,-20 + 1997: 6,16 + 2005: 6,17 + 2013: 6,18 + 2021: 6,19 + 2029: 6,20 + 2034: 9,24 + 2041: -9,24 + 2049: -8,12 + 2060: 0,1 + 2068: 1,1 + 2076: 2,1 + 2084: 3,0 + 2092: 3,1 + 2100: 4,0 + 2108: 4,1 + 2116: 8,12 + 2121: 9,4 + 2128: -9,3 + 2136: -8,12 + 2144: -4,0 + 2152: -4,1 + 2160: -3,0 + 2168: -3,1 + 2176: -2,1 + 2184: -1,1 + 2193: -10,-16 + 2198: -4,-1 + 2206: 4,-1 + 2211: 10,-16 + 2217: 3,-20 + 2220: 9,-17 + 2224: -9,-17 + 2227: -3,-20 + 2232: 6,16 + 2240: 6,17 + 2248: 6,18 + 2256: 6,19 + 2264: 6,20 + 2269: 9,24 + 2276: -9,24 + 2284: 0,1 + 2292: 1,1 + 2300: 2,1 + 2308: 3,0 + 2316: 3,1 + 2324: 4,0 + 2332: 4,1 + 2340: 8,12 + 2345: 9,4 + 2352: -9,3 + 2360: -8,12 + 2368: -4,0 + 2376: -4,1 + 2384: -3,0 + 2392: -3,1 + 2400: -2,1 + 2408: -1,1 + 2417: -10,-16 + 2422: -4,-1 + 2430: 4,-1 + 2435: 10,-16 + 2441: 3,-20 + 2444: 9,-17 + 2448: -9,-17 + 2451: -3,-20 + 2456: 6,16 + 2464: 6,17 + 2472: 6,18 + 2480: 6,19 + 2488: 6,20 + 2493: 9,24 + 2500: -9,24 + 2508: 0,1 + 2516: 1,1 + 2524: 2,1 + 2532: 3,0 + 2540: 3,1 + 2548: 4,0 + 2556: 4,1 + 2564: 8,12 + 2569: 9,4 + 2576: -9,3 + 2584: -8,12 + 2592: -4,0 + 2600: -4,1 + 2608: -3,0 + 2616: -3,1 + 2624: -2,1 + 2632: -1,1 + 2641: -10,-16 + 2646: -4,-1 + 2654: 4,-1 + 2659: 10,-16 + 2665: 3,-20 + 2668: 9,-17 + 2672: -9,-17 + 2675: -3,-20 + 2680: 6,16 + 2688: 6,17 + 2696: 6,18 + 2704: 6,19 + 2712: 6,20 + 2717: 9,24 + 2724: -9,24 + 2732: 0,1 + 2740: 1,1 + 2748: 2,1 + 2756: 3,0 + 2764: 3,1 + 2772: 4,0 + 2780: 4,1 + 2788: 8,12 + 2793: 9,4 + 2800: -9,3 + 2808: -8,12 + 2816: -4,0 + 2824: -4,1 + 2832: -3,0 + 2840: -3,1 + 2848: -2,1 + 2856: -1,1 + 2865: -10,-16 + 2870: -4,-1 + 2878: 4,-1 + 2883: 10,-16 + 2889: 3,-20 + 2892: 9,-17 + 2896: -9,-17 + 2899: -3,-20 + 2904: 6,16 + 2912: 6,17 + 2920: 6,18 + 2928: 6,19 + 2936: 6,20 + 2941: 9,24 + 2948: -9,24 + 2956: 0,1 + 2964: 1,1 + 2972: 2,1 + 2980: 3,0 + 2988: 3,1 + 2996: 4,0 + 3004: 4,1 + 3012: 8,12 + 3017: 9,4 + 3024: -9,3 + 3032: -8,12 + 3040: -4,0 + 3048: -4,1 + 3056: -3,0 + 3064: -3,1 + 3072: -2,1 + 3080: -1,1 + 3089: -10,-16 + 3094: -4,-1 + 3102: 4,-1 + 3107: 10,-16 + 3113: 3,-20 + 3116: 9,-17 + 3120: -9,-17 + 3123: -3,-20 + 3128: 6,16 + 3136: 6,17 + 3144: 6,18 + 3152: 6,19 + 3160: 6,20 + 3165: 9,24 + 3172: -9,24 + 3180: 0,1 + 3188: 1,1 + 3196: 2,1 + 3204: 3,0 + 3212: 3,1 + 3220: 4,0 + 3228: 4,1 + 3236: 8,12 + 3241: 9,4 + 3248: -9,3 + 3256: -8,12 + 3264: -4,0 + 3272: -4,1 + 3280: -3,0 + 3288: -3,1 + 3296: -2,1 + 3304: -1,1 + 3313: -10,-16 + 3318: -4,-1 + 3326: 4,-1 + 3331: 10,-16 + 3337: 3,-20 + 3340: 9,-17 + 3344: -9,-17 + 3347: -3,-20 + 3352: 6,16 + 3360: 6,17 + 3368: 6,18 + 3376: 6,19 + 3384: 6,20 + 3389: 9,24 + 3396: -9,24 + 3428: 0,1 + 3437: 1,1 + 3446: 2,1 + 3460: 3,0 + 3468: 3,1 + 3476: 4,0 + 3484: 4,1 + 3492: 8,12 + 3497: 9,4 + 3504: -9,3 + 3512: -8,12 + 3520: -4,0 + 3528: -4,1 + 3536: -3,0 + 3544: -3,1 + 3552: -2,1 + 3566: -1,1 + 3576: -10,-16 + 3581: -4,-1 + 3589: 4,-1 + 3594: 10,-16 + 3600: 3,-20 + 3603: 9,-17 + 3607: -9,-17 + 3610: -3,-20 + 3615: 6,16 + 3623: 6,17 + 3631: 6,18 + 3639: 6,19 + 3647: 6,20 + 3652: 9,24 + 3659: -9,24 + 3676: 0,1 + 3686: 1,1 + 3696: 2,1 + 3713: 3,0 + 3721: 3,1 + 3729: 4,0 + 3737: 4,1 + 3745: 8,12 + 3750: 9,4 + 3757: -9,3 + 3765: -8,12 + 3773: -4,0 + 3781: -4,1 + 3789: -3,0 + 3797: -3,1 + 3805: -2,1 + 3822: -1,1 + 3833: -10,-16 + 3838: -4,-1 + 3846: 4,-1 + 3851: 10,-16 + 3857: 3,-20 + 3860: 9,-17 + 3864: -9,-17 + 3867: -3,-20 + 3872: 6,16 + 3880: 6,17 + 3888: 6,18 + 3896: 6,19 + 3904: 6,20 + 3909: 9,24 + 3916: -9,24 + 3924: 0,1 + 3934: 1,1 + 3944: 2,1 + 3961: 3,0 + 3969: 3,1 + 3977: 4,0 + 3985: 4,1 + 3993: 8,12 + 3998: 9,4 + 4005: -9,3 + 4013: -8,12 + 4021: -4,0 + 4029: -4,1 + 4037: -3,0 + 4045: -3,1 + 4053: -2,1 + 4070: -1,1 + 4078: -10,-16 + 4083: -4,-1 + 4091: 4,-1 + 4096: 10,-16 + 4099: 3,-20 + 4102: 9,-17 + 4106: -9,-17 + 4109: -3,-20 + 4114: 6,16 + 4122: 6,17 + 4130: 6,18 + 4138: 6,19 + 4146: 6,20 + 4151: 9,24 + 4158: -9,24 + 4172: 0,1 + 4182: 1,1 + 4192: 2,1 + 4209: 3,0 + 4217: 3,1 + 4225: 4,0 + 4233: 4,1 + 4241: 8,12 + 4246: 9,4 + 4253: -9,3 + 4261: -8,12 + 4269: -4,0 + 4277: -4,1 + 4285: -3,0 + 4293: -3,1 + 4301: -2,1 + 4318: -1,1 + 4329: -10,-16 + 4334: -4,-1 + 4342: 4,-1 + 4347: 10,-16 + 4353: 3,-20 + 4356: 9,-17 + 4360: -9,-17 + 4363: -3,-20 + 4368: 6,16 + 4376: 6,17 + 4384: 6,18 + 4392: 6,19 + 4400: 6,20 + 4405: 9,24 + 4412: -9,24 + 4420: 0,1 + 4430: 1,1 + 4440: 2,1 + 4457: 3,0 + 4465: 3,1 + 4473: 4,0 + 4481: 4,1 + 4489: 8,12 + 4494: 9,4 + 4501: -9,3 + 4509: -8,12 + 4517: -4,0 + 4525: -4,1 + 4533: -3,0 + 4541: -3,1 + 4549: -2,1 + 4566: -1,1 + 4577: -10,-16 + 4582: -4,-1 + 4590: 4,-1 + 4595: 10,-16 + 4601: 3,-20 + 4604: 9,-17 + 4608: -9,-17 + 4611: -3,-20 + 4616: 6,16 + 4624: 6,17 + 4632: 6,18 + 4640: 6,19 + 4648: 6,20 + 4653: 9,24 + 4660: -9,24 + 4668: 0,1 + 4678: 1,1 + 4688: 2,1 + 4705: 3,0 + 4713: 3,1 + 4721: 4,0 + 4729: 4,1 + 4737: 8,12 + 4742: 9,4 + 4749: -9,3 + 4757: -8,12 + 4765: -4,0 + 4773: -4,1 + 4781: -3,0 + 4789: -3,1 + 4797: -2,1 + 4814: -1,1 + 4825: -10,-16 + 4830: -4,-1 + 4838: 4,-1 + 4843: 10,-16 + 4849: 3,-20 + 4852: 9,-17 + 4856: -9,-17 + 4859: -3,-20 + 4864: 6,16 + 4872: 6,17 + 4880: 6,18 + 4888: 6,19 + 4896: 6,20 + 4901: 9,24 + 4908: -9,24 + 4943: 0,1 + 4953: 1,1 + 4963: 2,1 + 4980: 3,0 + 4988: 3,1 + 4996: 4,0 + 5004: 4,1 + 5012: 8,12 + 5017: 9,4 + 5024: -9,3 + 5032: -8,12 + 5040: -4,0 + 5048: -4,1 + 5056: -3,0 + 5064: -3,1 + 5072: -2,1 + 5089: -1,1 + 5100: -10,-16 + 5105: -4,-1 + 5113: 4,-1 + 5118: 10,-16 + 5124: 3,-20 + 5127: 9,-17 + 5131: -9,-17 + 5134: -3,-20 + 5139: 6,16 + 5147: 6,17 + 5155: 6,18 + 5163: 6,19 + 5171: 6,20 + 5176: 9,24 + 5183: -9,24 + 5191: 0,1 + 5201: 1,1 + 5211: 2,1 + 5228: 3,0 + 5236: 3,1 + 5244: 4,0 + 5252: 4,1 + 5260: 8,12 + 5265: 9,4 + 5272: -9,3 + 5280: -8,12 + 5288: -4,0 + 5296: -4,1 + 5304: -3,0 + 5312: -3,1 + 5320: -2,1 + 5337: -1,1 + 5348: -10,-16 + 5353: -4,-1 + 5361: 4,-1 + 5366: 10,-16 + 5372: 3,-20 + 5375: 9,-17 + 5379: -9,-17 + 5382: -3,-20 + 5387: 6,16 + 5395: 6,17 + 5403: 6,18 + 5411: 6,19 + 5419: 6,20 + 5424: 9,24 + 5431: -9,24 - node: id: LatticeEdgeS decals: - 980: 0,1 - 988: 1,1 - 996: 2,1 - 1004: 3,0 - 1012: 3,1 - 1020: 4,0 - 1028: 4,1 - 1036: 8,12 - 1047: 9,12 - 1053: -9,12 - 1056: -8,12 - 1064: -4,0 - 1072: -4,1 - 1080: -3,0 - 1088: -3,1 - 1096: -2,1 - 1104: -1,1 - 1112: -12,-10 - 1118: -4,-1 - 1126: 4,-1 - 1137: 12,-10 - 1152: 6,16 - 1160: 6,17 - 1168: 6,18 - 1176: 6,19 - 1184: 6,20 - 1195: 9,28 - 1201: -9,28 - 1204: 0,1 - 1212: 1,1 - 1220: 2,1 - 1228: 3,0 - 1236: 3,1 - 1244: 4,0 - 1252: 4,1 - 1260: 8,12 - 1271: 9,12 - 1277: -9,12 - 1280: -8,12 - 1288: -4,0 - 1296: -4,1 - 1304: -3,0 - 1312: -3,1 - 1320: -2,1 - 1328: -1,1 - 1336: -12,-10 - 1342: -4,-1 - 1350: 4,-1 - 1361: 12,-10 - 1376: 6,16 - 1384: 6,17 - 1392: 6,18 - 1400: 6,19 - 1408: 6,20 - 1419: 9,28 - 1425: -9,28 - 1428: 0,1 - 1436: 1,1 - 1444: 2,1 - 1452: 3,0 - 1460: 3,1 - 1468: 4,0 - 1476: 4,1 - 1484: 8,12 - 1495: 9,12 - 1501: -9,12 - 1504: -8,12 - 1512: -4,0 - 1520: -4,1 - 1528: -3,0 - 1536: -3,1 - 1544: -2,1 - 1552: -1,1 - 1560: -12,-10 - 1566: -4,-1 - 1574: 4,-1 - 1585: 12,-10 - 1600: 6,16 - 1608: 6,17 - 1616: 6,18 - 1624: 6,19 - 1632: 6,20 - 1643: 9,28 - 1649: -9,28 - 1652: 0,1 - 1660: 1,1 - 1668: 2,1 - 1676: 3,0 - 1684: 3,1 - 1692: 4,0 - 1700: 4,1 - 1708: 8,12 - 1719: 9,12 - 1725: -9,12 - 1728: -8,12 - 1736: -4,0 - 1744: -4,1 - 1752: -3,0 - 1760: -3,1 - 1768: -2,1 - 1776: -1,1 - 1784: -12,-10 - 1790: -4,-1 - 1798: 4,-1 - 1809: 12,-10 - 1824: 6,16 - 1832: 6,17 - 1840: 6,18 - 1848: 6,19 - 1856: 6,20 - 1867: 9,28 - 1873: -9,28 - 1876: 0,1 - 1884: 1,1 - 1892: 2,1 - 1900: 3,0 - 1908: 3,1 - 1916: 4,0 - 1924: 4,1 - 1932: 8,12 - 1943: 9,12 - 1949: -4,0 - 1957: -4,1 - 1965: -3,0 - 1973: -3,1 - 1981: -2,1 - 1989: -1,1 - 1997: -12,-10 - 2003: -4,-1 - 2011: 4,-1 - 2022: 12,-10 - 2037: 6,16 - 2045: 6,17 - 2053: 6,18 - 2061: 6,19 - 2069: 6,20 - 2080: 9,28 - 2086: -9,28 - 2089: -8,12 - 2097: -9,12 - 2100: 0,1 - 2108: 1,1 - 2116: 2,1 - 2124: 3,0 - 2132: 3,1 - 2140: 4,0 - 2148: 4,1 - 2156: 8,12 - 2167: 9,12 - 2173: -9,12 - 2176: -8,12 - 2184: -4,0 - 2192: -4,1 - 2200: -3,0 - 2208: -3,1 - 2216: -2,1 - 2224: -1,1 - 2232: -12,-10 - 2238: -4,-1 - 2246: 4,-1 - 2257: 12,-10 - 2272: 6,16 - 2280: 6,17 - 2288: 6,18 - 2296: 6,19 - 2304: 6,20 - 2315: 9,28 - 2321: -9,28 - 2324: 0,1 - 2332: 1,1 - 2340: 2,1 - 2348: 3,0 - 2356: 3,1 - 2364: 4,0 - 2372: 4,1 - 2380: 8,12 - 2391: 9,12 - 2397: -9,12 - 2400: -8,12 - 2408: -4,0 - 2416: -4,1 - 2424: -3,0 - 2432: -3,1 - 2440: -2,1 - 2448: -1,1 - 2456: -12,-10 - 2462: -4,-1 - 2470: 4,-1 - 2481: 12,-10 - 2496: 6,16 - 2504: 6,17 - 2512: 6,18 - 2520: 6,19 - 2528: 6,20 - 2539: 9,28 - 2545: -9,28 - 2548: 0,1 - 2556: 1,1 - 2564: 2,1 - 2572: 3,0 - 2580: 3,1 - 2588: 4,0 - 2596: 4,1 - 2604: 8,12 - 2615: 9,12 - 2621: -9,12 - 2624: -8,12 - 2632: -4,0 - 2640: -4,1 - 2648: -3,0 - 2656: -3,1 - 2664: -2,1 - 2672: -1,1 - 2680: -12,-10 - 2686: -4,-1 - 2694: 4,-1 - 2705: 12,-10 - 2720: 6,16 - 2728: 6,17 - 2736: 6,18 - 2744: 6,19 - 2752: 6,20 - 2763: 9,28 - 2769: -9,28 - 2772: 0,1 - 2780: 1,1 - 2788: 2,1 - 2796: 3,0 - 2804: 3,1 - 2812: 4,0 - 2820: 4,1 - 2828: 8,12 - 2839: 9,12 - 2845: -9,12 - 2848: -8,12 - 2856: -4,0 - 2864: -4,1 - 2872: -3,0 - 2880: -3,1 - 2888: -2,1 - 2896: -1,1 - 2904: -12,-10 - 2910: -4,-1 - 2918: 4,-1 - 2929: 12,-10 - 2944: 6,16 - 2952: 6,17 - 2960: 6,18 - 2968: 6,19 - 2976: 6,20 - 2987: 9,28 - 2993: -9,28 - 2996: 0,1 - 3004: 1,1 - 3012: 2,1 - 3020: 3,0 - 3028: 3,1 - 3036: 4,0 - 3044: 4,1 - 3052: 8,12 - 3063: 9,12 - 3069: -9,12 - 3072: -8,12 - 3080: -4,0 - 3088: -4,1 - 3096: -3,0 - 3104: -3,1 - 3112: -2,1 - 3120: -1,1 - 3128: -12,-10 - 3134: -4,-1 - 3142: 4,-1 - 3153: 12,-10 - 3168: 6,16 - 3176: 6,17 - 3184: 6,18 - 3192: 6,19 - 3200: 6,20 - 3211: 9,28 - 3217: -9,28 - 3220: 0,1 - 3228: 1,1 - 3236: 2,1 - 3244: 3,0 - 3252: 3,1 - 3260: 4,0 - 3268: 4,1 - 3276: 8,12 - 3287: 9,12 - 3293: -9,12 - 3296: -8,12 - 3304: -4,0 - 3312: -4,1 - 3320: -3,0 - 3328: -3,1 - 3336: -2,1 - 3344: -1,1 - 3352: -12,-10 - 3358: -4,-1 - 3366: 4,-1 - 3377: 12,-10 - 3392: 6,16 - 3400: 6,17 - 3408: 6,18 - 3416: 6,19 - 3424: 6,20 - 3435: 9,28 - 3441: -9,28 - 3468: 0,1 - 3477: 1,1 - 3486: 2,1 - 3500: 3,0 - 3508: 3,1 - 3516: 4,0 - 3524: 4,1 - 3532: 8,12 - 3543: 9,12 - 3549: -9,12 - 3552: -8,12 - 3560: -4,0 - 3568: -4,1 - 3576: -3,0 - 3584: -3,1 - 3592: -2,1 - 3606: -1,1 - 3615: -12,-10 - 3621: -4,-1 - 3629: 4,-1 - 3640: 12,-10 - 3655: 6,16 - 3663: 6,17 - 3671: 6,18 - 3679: 6,19 - 3687: 6,20 - 3698: 9,28 - 3704: -9,28 - 3716: 0,1 - 3726: 1,1 - 3736: 2,1 - 3753: 3,0 - 3761: 3,1 - 3769: 4,0 - 3777: 4,1 - 3785: 8,12 - 3796: 9,12 - 3802: -9,12 - 3805: -8,12 - 3813: -4,0 - 3821: -4,1 - 3829: -3,0 - 3837: -3,1 - 3845: -2,1 - 3862: -1,1 - 3872: -12,-10 - 3878: -4,-1 - 3886: 4,-1 - 3897: 12,-10 - 3912: 6,16 - 3920: 6,17 - 3928: 6,18 - 3936: 6,19 - 3944: 6,20 - 3955: 9,28 - 3961: -9,28 - 3964: 0,1 - 3974: 1,1 - 3984: 2,1 - 4001: 3,0 - 4009: 3,1 - 4017: 4,0 - 4025: 4,1 - 4033: 8,12 - 4044: 9,12 - 4050: -9,12 - 4053: -8,12 - 4061: -4,0 - 4069: -4,1 - 4077: -3,0 - 4085: -3,1 - 4093: -2,1 - 4110: -1,1 - 4123: -4,-1 - 4131: 4,-1 - 4154: 6,16 - 4162: 6,17 - 4170: 6,18 - 4178: 6,19 - 4186: 6,20 - 4197: 9,28 - 4203: -9,28 - 4206: -12,-10 - 4209: 12,-10 - 4212: 0,1 - 4222: 1,1 - 4232: 2,1 - 4249: 3,0 - 4257: 3,1 - 4265: 4,0 - 4273: 4,1 - 4281: 8,12 - 4292: 9,12 - 4298: -9,12 - 4301: -8,12 - 4309: -4,0 - 4317: -4,1 - 4325: -3,0 - 4333: -3,1 - 4341: -2,1 - 4358: -1,1 - 4368: -12,-10 - 4374: -4,-1 - 4382: 4,-1 - 4393: 12,-10 - 4408: 6,16 - 4416: 6,17 - 4424: 6,18 - 4432: 6,19 - 4440: 6,20 - 4451: 9,28 - 4457: -9,28 - 4460: 0,1 - 4470: 1,1 - 4480: 2,1 - 4497: 3,0 - 4505: 3,1 - 4513: 4,0 - 4521: 4,1 - 4529: 8,12 - 4540: 9,12 - 4546: -9,12 - 4549: -8,12 - 4557: -4,0 - 4565: -4,1 - 4573: -3,0 - 4581: -3,1 - 4589: -2,1 - 4606: -1,1 - 4616: -12,-10 - 4622: -4,-1 - 4630: 4,-1 - 4641: 12,-10 - 4656: 6,16 - 4664: 6,17 - 4672: 6,18 - 4680: 6,19 - 4688: 6,20 - 4699: 9,28 - 4705: -9,28 + 937: 0,1 + 945: 1,1 + 953: 2,1 + 961: 3,0 + 969: 3,1 + 977: 4,0 + 985: 4,1 + 993: 8,12 + 1004: 9,12 + 1010: -9,12 + 1013: -8,12 + 1021: -4,0 + 1029: -4,1 + 1037: -3,0 + 1045: -3,1 + 1053: -2,1 + 1061: -1,1 + 1069: -12,-10 + 1075: -4,-1 + 1083: 4,-1 + 1094: 12,-10 + 1109: 6,16 + 1117: 6,17 + 1125: 6,18 + 1133: 6,19 + 1141: 6,20 + 1152: 9,28 + 1158: -9,28 + 1161: 0,1 + 1169: 1,1 + 1177: 2,1 + 1185: 3,0 + 1193: 3,1 + 1201: 4,0 + 1209: 4,1 + 1217: 8,12 + 1228: 9,12 + 1234: -9,12 + 1237: -8,12 + 1245: -4,0 + 1253: -4,1 + 1261: -3,0 + 1269: -3,1 + 1277: -2,1 + 1285: -1,1 + 1293: -12,-10 + 1299: -4,-1 + 1307: 4,-1 + 1318: 12,-10 + 1333: 6,16 + 1341: 6,17 + 1349: 6,18 + 1357: 6,19 + 1365: 6,20 + 1376: 9,28 + 1382: -9,28 + 1385: 0,1 + 1393: 1,1 + 1401: 2,1 + 1409: 3,0 + 1417: 3,1 + 1425: 4,0 + 1433: 4,1 + 1441: 8,12 + 1452: 9,12 + 1458: -9,12 + 1461: -8,12 + 1469: -4,0 + 1477: -4,1 + 1485: -3,0 + 1493: -3,1 + 1501: -2,1 + 1509: -1,1 + 1517: -12,-10 + 1523: -4,-1 + 1531: 4,-1 + 1542: 12,-10 + 1557: 6,16 + 1565: 6,17 + 1573: 6,18 + 1581: 6,19 + 1589: 6,20 + 1600: 9,28 + 1606: -9,28 + 1609: 0,1 + 1617: 1,1 + 1625: 2,1 + 1633: 3,0 + 1641: 3,1 + 1649: 4,0 + 1657: 4,1 + 1665: 8,12 + 1676: 9,12 + 1682: -9,12 + 1685: -8,12 + 1693: -4,0 + 1701: -4,1 + 1709: -3,0 + 1717: -3,1 + 1725: -2,1 + 1733: -1,1 + 1741: -12,-10 + 1747: -4,-1 + 1755: 4,-1 + 1766: 12,-10 + 1781: 6,16 + 1789: 6,17 + 1797: 6,18 + 1805: 6,19 + 1813: 6,20 + 1824: 9,28 + 1830: -9,28 + 1833: 0,1 + 1841: 1,1 + 1849: 2,1 + 1857: 3,0 + 1865: 3,1 + 1873: 4,0 + 1881: 4,1 + 1889: 8,12 + 1900: 9,12 + 1906: -4,0 + 1914: -4,1 + 1922: -3,0 + 1930: -3,1 + 1938: -2,1 + 1946: -1,1 + 1954: -12,-10 + 1960: -4,-1 + 1968: 4,-1 + 1979: 12,-10 + 1994: 6,16 + 2002: 6,17 + 2010: 6,18 + 2018: 6,19 + 2026: 6,20 + 2037: 9,28 + 2043: -9,28 + 2046: -8,12 + 2054: -9,12 + 2057: 0,1 + 2065: 1,1 + 2073: 2,1 + 2081: 3,0 + 2089: 3,1 + 2097: 4,0 + 2105: 4,1 + 2113: 8,12 + 2124: 9,12 + 2130: -9,12 + 2133: -8,12 + 2141: -4,0 + 2149: -4,1 + 2157: -3,0 + 2165: -3,1 + 2173: -2,1 + 2181: -1,1 + 2189: -12,-10 + 2195: -4,-1 + 2203: 4,-1 + 2214: 12,-10 + 2229: 6,16 + 2237: 6,17 + 2245: 6,18 + 2253: 6,19 + 2261: 6,20 + 2272: 9,28 + 2278: -9,28 + 2281: 0,1 + 2289: 1,1 + 2297: 2,1 + 2305: 3,0 + 2313: 3,1 + 2321: 4,0 + 2329: 4,1 + 2337: 8,12 + 2348: 9,12 + 2354: -9,12 + 2357: -8,12 + 2365: -4,0 + 2373: -4,1 + 2381: -3,0 + 2389: -3,1 + 2397: -2,1 + 2405: -1,1 + 2413: -12,-10 + 2419: -4,-1 + 2427: 4,-1 + 2438: 12,-10 + 2453: 6,16 + 2461: 6,17 + 2469: 6,18 + 2477: 6,19 + 2485: 6,20 + 2496: 9,28 + 2502: -9,28 + 2505: 0,1 + 2513: 1,1 + 2521: 2,1 + 2529: 3,0 + 2537: 3,1 + 2545: 4,0 + 2553: 4,1 + 2561: 8,12 + 2572: 9,12 + 2578: -9,12 + 2581: -8,12 + 2589: -4,0 + 2597: -4,1 + 2605: -3,0 + 2613: -3,1 + 2621: -2,1 + 2629: -1,1 + 2637: -12,-10 + 2643: -4,-1 + 2651: 4,-1 + 2662: 12,-10 + 2677: 6,16 + 2685: 6,17 + 2693: 6,18 + 2701: 6,19 + 2709: 6,20 + 2720: 9,28 + 2726: -9,28 + 2729: 0,1 + 2737: 1,1 + 2745: 2,1 + 2753: 3,0 + 2761: 3,1 + 2769: 4,0 + 2777: 4,1 + 2785: 8,12 + 2796: 9,12 + 2802: -9,12 + 2805: -8,12 + 2813: -4,0 + 2821: -4,1 + 2829: -3,0 + 2837: -3,1 + 2845: -2,1 + 2853: -1,1 + 2861: -12,-10 + 2867: -4,-1 + 2875: 4,-1 + 2886: 12,-10 + 2901: 6,16 + 2909: 6,17 + 2917: 6,18 + 2925: 6,19 + 2933: 6,20 + 2944: 9,28 + 2950: -9,28 + 2953: 0,1 + 2961: 1,1 + 2969: 2,1 + 2977: 3,0 + 2985: 3,1 + 2993: 4,0 + 3001: 4,1 + 3009: 8,12 + 3020: 9,12 + 3026: -9,12 + 3029: -8,12 + 3037: -4,0 + 3045: -4,1 + 3053: -3,0 + 3061: -3,1 + 3069: -2,1 + 3077: -1,1 + 3085: -12,-10 + 3091: -4,-1 + 3099: 4,-1 + 3110: 12,-10 + 3125: 6,16 + 3133: 6,17 + 3141: 6,18 + 3149: 6,19 + 3157: 6,20 + 3168: 9,28 + 3174: -9,28 + 3177: 0,1 + 3185: 1,1 + 3193: 2,1 + 3201: 3,0 + 3209: 3,1 + 3217: 4,0 + 3225: 4,1 + 3233: 8,12 + 3244: 9,12 + 3250: -9,12 + 3253: -8,12 + 3261: -4,0 + 3269: -4,1 + 3277: -3,0 + 3285: -3,1 + 3293: -2,1 + 3301: -1,1 + 3309: -12,-10 + 3315: -4,-1 + 3323: 4,-1 + 3334: 12,-10 + 3349: 6,16 + 3357: 6,17 + 3365: 6,18 + 3373: 6,19 + 3381: 6,20 + 3392: 9,28 + 3398: -9,28 + 3425: 0,1 + 3434: 1,1 + 3443: 2,1 + 3457: 3,0 + 3465: 3,1 + 3473: 4,0 + 3481: 4,1 + 3489: 8,12 + 3500: 9,12 + 3506: -9,12 + 3509: -8,12 + 3517: -4,0 + 3525: -4,1 + 3533: -3,0 + 3541: -3,1 + 3549: -2,1 + 3563: -1,1 + 3572: -12,-10 + 3578: -4,-1 + 3586: 4,-1 + 3597: 12,-10 + 3612: 6,16 + 3620: 6,17 + 3628: 6,18 + 3636: 6,19 + 3644: 6,20 + 3655: 9,28 + 3661: -9,28 + 3673: 0,1 + 3683: 1,1 + 3693: 2,1 + 3710: 3,0 + 3718: 3,1 + 3726: 4,0 + 3734: 4,1 + 3742: 8,12 + 3753: 9,12 + 3759: -9,12 + 3762: -8,12 + 3770: -4,0 + 3778: -4,1 + 3786: -3,0 + 3794: -3,1 + 3802: -2,1 + 3819: -1,1 + 3829: -12,-10 + 3835: -4,-1 + 3843: 4,-1 + 3854: 12,-10 + 3869: 6,16 + 3877: 6,17 + 3885: 6,18 + 3893: 6,19 + 3901: 6,20 + 3912: 9,28 + 3918: -9,28 + 3921: 0,1 + 3931: 1,1 + 3941: 2,1 + 3958: 3,0 + 3966: 3,1 + 3974: 4,0 + 3982: 4,1 + 3990: 8,12 + 4001: 9,12 + 4007: -9,12 + 4010: -8,12 + 4018: -4,0 + 4026: -4,1 + 4034: -3,0 + 4042: -3,1 + 4050: -2,1 + 4067: -1,1 + 4080: -4,-1 + 4088: 4,-1 + 4111: 6,16 + 4119: 6,17 + 4127: 6,18 + 4135: 6,19 + 4143: 6,20 + 4154: 9,28 + 4160: -9,28 + 4163: -12,-10 + 4166: 12,-10 + 4169: 0,1 + 4179: 1,1 + 4189: 2,1 + 4206: 3,0 + 4214: 3,1 + 4222: 4,0 + 4230: 4,1 + 4238: 8,12 + 4249: 9,12 + 4255: -9,12 + 4258: -8,12 + 4266: -4,0 + 4274: -4,1 + 4282: -3,0 + 4290: -3,1 + 4298: -2,1 + 4315: -1,1 + 4325: -12,-10 + 4331: -4,-1 + 4339: 4,-1 + 4350: 12,-10 + 4365: 6,16 + 4373: 6,17 + 4381: 6,18 + 4389: 6,19 + 4397: 6,20 + 4408: 9,28 + 4414: -9,28 + 4417: 0,1 + 4427: 1,1 + 4437: 2,1 + 4454: 3,0 + 4462: 3,1 + 4470: 4,0 + 4478: 4,1 + 4486: 8,12 + 4497: 9,12 + 4503: -9,12 + 4506: -8,12 + 4514: -4,0 + 4522: -4,1 + 4530: -3,0 + 4538: -3,1 + 4546: -2,1 + 4563: -1,1 + 4573: -12,-10 + 4579: -4,-1 + 4587: 4,-1 + 4598: 12,-10 + 4613: 6,16 + 4621: 6,17 + 4629: 6,18 + 4637: 6,19 + 4645: 6,20 + 4656: 9,28 + 4662: -9,28 + 4665: 0,1 + 4675: 1,1 + 4685: 2,1 + 4702: 3,0 + 4710: 3,1 + 4718: 4,0 + 4726: 4,1 + 4734: 8,12 + 4745: 9,12 + 4751: -9,12 + 4754: -8,12 + 4762: -4,0 + 4770: -4,1 + 4778: -3,0 + 4786: -3,1 + 4794: -2,1 + 4811: -1,1 + 4821: -12,-10 + 4827: -4,-1 + 4835: 4,-1 + 4846: 12,-10 + 4861: 6,16 + 4869: 6,17 + 4877: 6,18 + 4885: 6,19 + 4893: 6,20 + 4904: 9,28 + 4910: -9,28 + 4940: 0,1 + 4950: 1,1 + 4960: 2,1 + 4977: 3,0 + 4985: 3,1 + 4993: 4,0 + 5001: 4,1 + 5009: 8,12 + 5020: 9,12 + 5026: -9,12 + 5029: -8,12 + 5037: -4,0 + 5045: -4,1 + 5053: -3,0 + 5061: -3,1 + 5069: -2,1 + 5086: -1,1 + 5096: -12,-10 + 5102: -4,-1 + 5110: 4,-1 + 5121: 12,-10 + 5136: 6,16 + 5144: 6,17 + 5152: 6,18 + 5160: 6,19 + 5168: 6,20 + 5179: 9,28 + 5185: -9,28 + 5188: 0,1 + 5198: 1,1 + 5208: 2,1 + 5225: 3,0 + 5233: 3,1 + 5241: 4,0 + 5249: 4,1 + 5257: 8,12 + 5268: 9,12 + 5274: -9,12 + 5277: -8,12 + 5285: -4,0 + 5293: -4,1 + 5301: -3,0 + 5309: -3,1 + 5317: -2,1 + 5334: -1,1 + 5344: -12,-10 + 5350: -4,-1 + 5358: 4,-1 + 5369: 12,-10 + 5384: 6,16 + 5392: 6,17 + 5400: 6,18 + 5408: 6,19 + 5416: 6,20 + 5427: 9,28 + 5433: -9,28 - node: id: LatticeEdgeW decals: - 985: 0,1 - 993: 1,1 - 1001: 2,1 - 1009: 3,0 - 1017: 3,1 - 1025: 4,0 - 1033: 4,1 - 1041: 8,12 - 1045: 9,4 - 1048: 9,12 - 1061: -8,12 - 1069: -4,0 - 1077: -4,1 - 1085: -3,0 - 1093: -3,1 - 1101: -2,1 - 1109: -1,1 - 1123: -4,-1 - 1131: 4,-1 - 1135: 10,-16 - 1138: 12,-10 - 1141: 3,-20 - 1144: 9,-17 - 1157: 6,16 - 1165: 6,17 - 1173: 6,18 - 1181: 6,19 - 1189: 6,20 - 1193: 9,24 - 1196: 9,28 - 1209: 0,1 - 1217: 1,1 - 1225: 2,1 - 1233: 3,0 - 1241: 3,1 - 1249: 4,0 - 1257: 4,1 - 1265: 8,12 - 1269: 9,4 - 1272: 9,12 - 1285: -8,12 - 1293: -4,0 - 1301: -4,1 - 1309: -3,0 - 1317: -3,1 - 1325: -2,1 - 1333: -1,1 - 1347: -4,-1 - 1355: 4,-1 - 1359: 10,-16 - 1362: 12,-10 - 1365: 3,-20 - 1368: 9,-17 - 1381: 6,16 - 1389: 6,17 - 1397: 6,18 - 1405: 6,19 - 1413: 6,20 - 1417: 9,24 - 1420: 9,28 - 1433: 0,1 - 1441: 1,1 - 1449: 2,1 - 1457: 3,0 - 1465: 3,1 - 1473: 4,0 - 1481: 4,1 - 1489: 8,12 - 1493: 9,4 - 1496: 9,12 - 1509: -8,12 - 1517: -4,0 - 1525: -4,1 - 1533: -3,0 - 1541: -3,1 - 1549: -2,1 - 1557: -1,1 - 1571: -4,-1 - 1579: 4,-1 - 1583: 10,-16 - 1586: 12,-10 - 1589: 3,-20 - 1592: 9,-17 - 1605: 6,16 - 1613: 6,17 - 1621: 6,18 - 1629: 6,19 - 1637: 6,20 - 1641: 9,24 - 1644: 9,28 - 1657: 0,1 - 1665: 1,1 - 1673: 2,1 - 1681: 3,0 - 1689: 3,1 - 1697: 4,0 - 1705: 4,1 - 1713: 8,12 - 1717: 9,4 - 1720: 9,12 - 1733: -8,12 - 1741: -4,0 - 1749: -4,1 - 1757: -3,0 - 1765: -3,1 - 1773: -2,1 - 1781: -1,1 - 1795: -4,-1 - 1803: 4,-1 - 1807: 10,-16 - 1810: 12,-10 - 1813: 3,-20 - 1816: 9,-17 - 1829: 6,16 - 1837: 6,17 - 1845: 6,18 - 1853: 6,19 - 1861: 6,20 - 1865: 9,24 - 1868: 9,28 - 1881: 0,1 - 1889: 1,1 - 1897: 2,1 - 1905: 3,0 - 1913: 3,1 - 1921: 4,0 - 1929: 4,1 - 1937: 8,12 - 1941: 9,4 - 1944: 9,12 - 1954: -4,0 - 1962: -4,1 - 1970: -3,0 - 1978: -3,1 - 1986: -2,1 - 1994: -1,1 - 2008: -4,-1 - 2016: 4,-1 - 2020: 10,-16 - 2023: 12,-10 - 2026: 3,-20 - 2029: 9,-17 - 2042: 6,16 - 2050: 6,17 - 2058: 6,18 - 2066: 6,19 - 2074: 6,20 - 2078: 9,24 - 2081: 9,28 - 2094: -8,12 - 2105: 0,1 - 2113: 1,1 - 2121: 2,1 - 2129: 3,0 - 2137: 3,1 - 2145: 4,0 - 2153: 4,1 - 2161: 8,12 - 2165: 9,4 - 2168: 9,12 - 2181: -8,12 - 2189: -4,0 - 2197: -4,1 - 2205: -3,0 - 2213: -3,1 - 2221: -2,1 - 2229: -1,1 - 2243: -4,-1 - 2251: 4,-1 - 2255: 10,-16 - 2258: 12,-10 - 2261: 3,-20 - 2264: 9,-17 - 2277: 6,16 - 2285: 6,17 - 2293: 6,18 - 2301: 6,19 - 2309: 6,20 - 2313: 9,24 - 2316: 9,28 - 2329: 0,1 - 2337: 1,1 - 2345: 2,1 - 2353: 3,0 - 2361: 3,1 - 2369: 4,0 - 2377: 4,1 - 2385: 8,12 - 2389: 9,4 - 2392: 9,12 - 2405: -8,12 - 2413: -4,0 - 2421: -4,1 - 2429: -3,0 - 2437: -3,1 - 2445: -2,1 - 2453: -1,1 - 2467: -4,-1 - 2475: 4,-1 - 2479: 10,-16 - 2482: 12,-10 - 2485: 3,-20 - 2488: 9,-17 - 2501: 6,16 - 2509: 6,17 - 2517: 6,18 - 2525: 6,19 - 2533: 6,20 - 2537: 9,24 - 2540: 9,28 - 2553: 0,1 - 2561: 1,1 - 2569: 2,1 - 2577: 3,0 - 2585: 3,1 - 2593: 4,0 - 2601: 4,1 - 2609: 8,12 - 2613: 9,4 - 2616: 9,12 - 2629: -8,12 - 2637: -4,0 - 2645: -4,1 - 2653: -3,0 - 2661: -3,1 - 2669: -2,1 - 2677: -1,1 - 2691: -4,-1 - 2699: 4,-1 - 2703: 10,-16 - 2706: 12,-10 - 2709: 3,-20 - 2712: 9,-17 - 2725: 6,16 - 2733: 6,17 - 2741: 6,18 - 2749: 6,19 - 2757: 6,20 - 2761: 9,24 - 2764: 9,28 - 2777: 0,1 - 2785: 1,1 - 2793: 2,1 - 2801: 3,0 - 2809: 3,1 - 2817: 4,0 - 2825: 4,1 - 2833: 8,12 - 2837: 9,4 - 2840: 9,12 - 2853: -8,12 - 2861: -4,0 - 2869: -4,1 - 2877: -3,0 - 2885: -3,1 - 2893: -2,1 - 2901: -1,1 - 2915: -4,-1 - 2923: 4,-1 - 2927: 10,-16 - 2930: 12,-10 - 2933: 3,-20 - 2936: 9,-17 - 2949: 6,16 - 2957: 6,17 - 2965: 6,18 - 2973: 6,19 - 2981: 6,20 - 2985: 9,24 - 2988: 9,28 - 3001: 0,1 - 3009: 1,1 - 3017: 2,1 - 3025: 3,0 - 3033: 3,1 - 3041: 4,0 - 3049: 4,1 - 3057: 8,12 - 3061: 9,4 - 3064: 9,12 - 3077: -8,12 - 3085: -4,0 - 3093: -4,1 - 3101: -3,0 - 3109: -3,1 - 3117: -2,1 - 3125: -1,1 - 3139: -4,-1 - 3147: 4,-1 - 3151: 10,-16 - 3154: 12,-10 - 3157: 3,-20 - 3160: 9,-17 - 3173: 6,16 - 3181: 6,17 - 3189: 6,18 - 3197: 6,19 - 3205: 6,20 - 3209: 9,24 - 3212: 9,28 - 3225: 0,1 - 3233: 1,1 - 3241: 2,1 - 3249: 3,0 - 3257: 3,1 - 3265: 4,0 - 3273: 4,1 - 3281: 8,12 - 3285: 9,4 - 3288: 9,12 - 3301: -8,12 - 3309: -4,0 - 3317: -4,1 - 3325: -3,0 - 3333: -3,1 - 3341: -2,1 - 3349: -1,1 - 3363: -4,-1 - 3371: 4,-1 - 3375: 10,-16 - 3378: 12,-10 - 3381: 3,-20 - 3384: 9,-17 - 3397: 6,16 - 3405: 6,17 - 3413: 6,18 - 3421: 6,19 - 3429: 6,20 - 3433: 9,24 - 3436: 9,28 - 3473: 0,1 - 3482: 1,1 - 3491: 2,1 - 3505: 3,0 - 3513: 3,1 - 3521: 4,0 - 3529: 4,1 - 3537: 8,12 - 3541: 9,4 - 3544: 9,12 - 3557: -8,12 - 3565: -4,0 - 3573: -4,1 - 3581: -3,0 - 3589: -3,1 - 3597: -2,1 - 3611: -1,1 - 3626: -4,-1 - 3634: 4,-1 - 3638: 10,-16 - 3641: 12,-10 - 3644: 3,-20 - 3647: 9,-17 - 3660: 6,16 - 3668: 6,17 - 3676: 6,18 - 3684: 6,19 - 3692: 6,20 - 3696: 9,24 - 3699: 9,28 - 3721: 0,1 - 3731: 1,1 - 3741: 2,1 - 3758: 3,0 - 3766: 3,1 - 3774: 4,0 - 3782: 4,1 - 3790: 8,12 - 3794: 9,4 - 3797: 9,12 - 3810: -8,12 - 3818: -4,0 - 3826: -4,1 - 3834: -3,0 - 3842: -3,1 - 3850: -2,1 - 3867: -1,1 - 3883: -4,-1 - 3891: 4,-1 - 3895: 10,-16 - 3898: 12,-10 - 3901: 3,-20 - 3904: 9,-17 - 3917: 6,16 - 3925: 6,17 - 3933: 6,18 - 3941: 6,19 - 3949: 6,20 - 3953: 9,24 - 3956: 9,28 - 3969: 0,1 - 3979: 1,1 - 3989: 2,1 - 4006: 3,0 - 4014: 3,1 - 4022: 4,0 - 4030: 4,1 - 4038: 8,12 - 4042: 9,4 - 4045: 9,12 - 4058: -8,12 - 4066: -4,0 - 4074: -4,1 - 4082: -3,0 - 4090: -3,1 - 4098: -2,1 - 4115: -1,1 - 4128: -4,-1 - 4136: 4,-1 - 4140: 10,-16 - 4143: 3,-20 - 4146: 9,-17 - 4159: 6,16 - 4167: 6,17 - 4175: 6,18 - 4183: 6,19 - 4191: 6,20 - 4195: 9,24 - 4198: 9,28 - 4210: 12,-10 - 4217: 0,1 - 4227: 1,1 - 4237: 2,1 - 4254: 3,0 - 4262: 3,1 - 4270: 4,0 - 4278: 4,1 - 4286: 8,12 - 4290: 9,4 - 4293: 9,12 - 4306: -8,12 - 4314: -4,0 - 4322: -4,1 - 4330: -3,0 - 4338: -3,1 - 4346: -2,1 - 4363: -1,1 - 4379: -4,-1 - 4387: 4,-1 - 4391: 10,-16 - 4394: 12,-10 - 4397: 3,-20 - 4400: 9,-17 - 4413: 6,16 - 4421: 6,17 - 4429: 6,18 - 4437: 6,19 - 4445: 6,20 - 4449: 9,24 - 4452: 9,28 - 4465: 0,1 - 4475: 1,1 - 4485: 2,1 - 4502: 3,0 - 4510: 3,1 - 4518: 4,0 - 4526: 4,1 - 4534: 8,12 - 4538: 9,4 - 4541: 9,12 - 4554: -8,12 - 4562: -4,0 - 4570: -4,1 - 4578: -3,0 - 4586: -3,1 - 4594: -2,1 - 4611: -1,1 - 4627: -4,-1 - 4635: 4,-1 - 4639: 10,-16 - 4642: 12,-10 - 4645: 3,-20 - 4648: 9,-17 - 4661: 6,16 - 4669: 6,17 - 4677: 6,18 - 4685: 6,19 - 4693: 6,20 - 4697: 9,24 - 4700: 9,28 + 942: 0,1 + 950: 1,1 + 958: 2,1 + 966: 3,0 + 974: 3,1 + 982: 4,0 + 990: 4,1 + 998: 8,12 + 1002: 9,4 + 1005: 9,12 + 1018: -8,12 + 1026: -4,0 + 1034: -4,1 + 1042: -3,0 + 1050: -3,1 + 1058: -2,1 + 1066: -1,1 + 1080: -4,-1 + 1088: 4,-1 + 1092: 10,-16 + 1095: 12,-10 + 1098: 3,-20 + 1101: 9,-17 + 1114: 6,16 + 1122: 6,17 + 1130: 6,18 + 1138: 6,19 + 1146: 6,20 + 1150: 9,24 + 1153: 9,28 + 1166: 0,1 + 1174: 1,1 + 1182: 2,1 + 1190: 3,0 + 1198: 3,1 + 1206: 4,0 + 1214: 4,1 + 1222: 8,12 + 1226: 9,4 + 1229: 9,12 + 1242: -8,12 + 1250: -4,0 + 1258: -4,1 + 1266: -3,0 + 1274: -3,1 + 1282: -2,1 + 1290: -1,1 + 1304: -4,-1 + 1312: 4,-1 + 1316: 10,-16 + 1319: 12,-10 + 1322: 3,-20 + 1325: 9,-17 + 1338: 6,16 + 1346: 6,17 + 1354: 6,18 + 1362: 6,19 + 1370: 6,20 + 1374: 9,24 + 1377: 9,28 + 1390: 0,1 + 1398: 1,1 + 1406: 2,1 + 1414: 3,0 + 1422: 3,1 + 1430: 4,0 + 1438: 4,1 + 1446: 8,12 + 1450: 9,4 + 1453: 9,12 + 1466: -8,12 + 1474: -4,0 + 1482: -4,1 + 1490: -3,0 + 1498: -3,1 + 1506: -2,1 + 1514: -1,1 + 1528: -4,-1 + 1536: 4,-1 + 1540: 10,-16 + 1543: 12,-10 + 1546: 3,-20 + 1549: 9,-17 + 1562: 6,16 + 1570: 6,17 + 1578: 6,18 + 1586: 6,19 + 1594: 6,20 + 1598: 9,24 + 1601: 9,28 + 1614: 0,1 + 1622: 1,1 + 1630: 2,1 + 1638: 3,0 + 1646: 3,1 + 1654: 4,0 + 1662: 4,1 + 1670: 8,12 + 1674: 9,4 + 1677: 9,12 + 1690: -8,12 + 1698: -4,0 + 1706: -4,1 + 1714: -3,0 + 1722: -3,1 + 1730: -2,1 + 1738: -1,1 + 1752: -4,-1 + 1760: 4,-1 + 1764: 10,-16 + 1767: 12,-10 + 1770: 3,-20 + 1773: 9,-17 + 1786: 6,16 + 1794: 6,17 + 1802: 6,18 + 1810: 6,19 + 1818: 6,20 + 1822: 9,24 + 1825: 9,28 + 1838: 0,1 + 1846: 1,1 + 1854: 2,1 + 1862: 3,0 + 1870: 3,1 + 1878: 4,0 + 1886: 4,1 + 1894: 8,12 + 1898: 9,4 + 1901: 9,12 + 1911: -4,0 + 1919: -4,1 + 1927: -3,0 + 1935: -3,1 + 1943: -2,1 + 1951: -1,1 + 1965: -4,-1 + 1973: 4,-1 + 1977: 10,-16 + 1980: 12,-10 + 1983: 3,-20 + 1986: 9,-17 + 1999: 6,16 + 2007: 6,17 + 2015: 6,18 + 2023: 6,19 + 2031: 6,20 + 2035: 9,24 + 2038: 9,28 + 2051: -8,12 + 2062: 0,1 + 2070: 1,1 + 2078: 2,1 + 2086: 3,0 + 2094: 3,1 + 2102: 4,0 + 2110: 4,1 + 2118: 8,12 + 2122: 9,4 + 2125: 9,12 + 2138: -8,12 + 2146: -4,0 + 2154: -4,1 + 2162: -3,0 + 2170: -3,1 + 2178: -2,1 + 2186: -1,1 + 2200: -4,-1 + 2208: 4,-1 + 2212: 10,-16 + 2215: 12,-10 + 2218: 3,-20 + 2221: 9,-17 + 2234: 6,16 + 2242: 6,17 + 2250: 6,18 + 2258: 6,19 + 2266: 6,20 + 2270: 9,24 + 2273: 9,28 + 2286: 0,1 + 2294: 1,1 + 2302: 2,1 + 2310: 3,0 + 2318: 3,1 + 2326: 4,0 + 2334: 4,1 + 2342: 8,12 + 2346: 9,4 + 2349: 9,12 + 2362: -8,12 + 2370: -4,0 + 2378: -4,1 + 2386: -3,0 + 2394: -3,1 + 2402: -2,1 + 2410: -1,1 + 2424: -4,-1 + 2432: 4,-1 + 2436: 10,-16 + 2439: 12,-10 + 2442: 3,-20 + 2445: 9,-17 + 2458: 6,16 + 2466: 6,17 + 2474: 6,18 + 2482: 6,19 + 2490: 6,20 + 2494: 9,24 + 2497: 9,28 + 2510: 0,1 + 2518: 1,1 + 2526: 2,1 + 2534: 3,0 + 2542: 3,1 + 2550: 4,0 + 2558: 4,1 + 2566: 8,12 + 2570: 9,4 + 2573: 9,12 + 2586: -8,12 + 2594: -4,0 + 2602: -4,1 + 2610: -3,0 + 2618: -3,1 + 2626: -2,1 + 2634: -1,1 + 2648: -4,-1 + 2656: 4,-1 + 2660: 10,-16 + 2663: 12,-10 + 2666: 3,-20 + 2669: 9,-17 + 2682: 6,16 + 2690: 6,17 + 2698: 6,18 + 2706: 6,19 + 2714: 6,20 + 2718: 9,24 + 2721: 9,28 + 2734: 0,1 + 2742: 1,1 + 2750: 2,1 + 2758: 3,0 + 2766: 3,1 + 2774: 4,0 + 2782: 4,1 + 2790: 8,12 + 2794: 9,4 + 2797: 9,12 + 2810: -8,12 + 2818: -4,0 + 2826: -4,1 + 2834: -3,0 + 2842: -3,1 + 2850: -2,1 + 2858: -1,1 + 2872: -4,-1 + 2880: 4,-1 + 2884: 10,-16 + 2887: 12,-10 + 2890: 3,-20 + 2893: 9,-17 + 2906: 6,16 + 2914: 6,17 + 2922: 6,18 + 2930: 6,19 + 2938: 6,20 + 2942: 9,24 + 2945: 9,28 + 2958: 0,1 + 2966: 1,1 + 2974: 2,1 + 2982: 3,0 + 2990: 3,1 + 2998: 4,0 + 3006: 4,1 + 3014: 8,12 + 3018: 9,4 + 3021: 9,12 + 3034: -8,12 + 3042: -4,0 + 3050: -4,1 + 3058: -3,0 + 3066: -3,1 + 3074: -2,1 + 3082: -1,1 + 3096: -4,-1 + 3104: 4,-1 + 3108: 10,-16 + 3111: 12,-10 + 3114: 3,-20 + 3117: 9,-17 + 3130: 6,16 + 3138: 6,17 + 3146: 6,18 + 3154: 6,19 + 3162: 6,20 + 3166: 9,24 + 3169: 9,28 + 3182: 0,1 + 3190: 1,1 + 3198: 2,1 + 3206: 3,0 + 3214: 3,1 + 3222: 4,0 + 3230: 4,1 + 3238: 8,12 + 3242: 9,4 + 3245: 9,12 + 3258: -8,12 + 3266: -4,0 + 3274: -4,1 + 3282: -3,0 + 3290: -3,1 + 3298: -2,1 + 3306: -1,1 + 3320: -4,-1 + 3328: 4,-1 + 3332: 10,-16 + 3335: 12,-10 + 3338: 3,-20 + 3341: 9,-17 + 3354: 6,16 + 3362: 6,17 + 3370: 6,18 + 3378: 6,19 + 3386: 6,20 + 3390: 9,24 + 3393: 9,28 + 3430: 0,1 + 3439: 1,1 + 3448: 2,1 + 3462: 3,0 + 3470: 3,1 + 3478: 4,0 + 3486: 4,1 + 3494: 8,12 + 3498: 9,4 + 3501: 9,12 + 3514: -8,12 + 3522: -4,0 + 3530: -4,1 + 3538: -3,0 + 3546: -3,1 + 3554: -2,1 + 3568: -1,1 + 3583: -4,-1 + 3591: 4,-1 + 3595: 10,-16 + 3598: 12,-10 + 3601: 3,-20 + 3604: 9,-17 + 3617: 6,16 + 3625: 6,17 + 3633: 6,18 + 3641: 6,19 + 3649: 6,20 + 3653: 9,24 + 3656: 9,28 + 3678: 0,1 + 3688: 1,1 + 3698: 2,1 + 3715: 3,0 + 3723: 3,1 + 3731: 4,0 + 3739: 4,1 + 3747: 8,12 + 3751: 9,4 + 3754: 9,12 + 3767: -8,12 + 3775: -4,0 + 3783: -4,1 + 3791: -3,0 + 3799: -3,1 + 3807: -2,1 + 3824: -1,1 + 3840: -4,-1 + 3848: 4,-1 + 3852: 10,-16 + 3855: 12,-10 + 3858: 3,-20 + 3861: 9,-17 + 3874: 6,16 + 3882: 6,17 + 3890: 6,18 + 3898: 6,19 + 3906: 6,20 + 3910: 9,24 + 3913: 9,28 + 3926: 0,1 + 3936: 1,1 + 3946: 2,1 + 3963: 3,0 + 3971: 3,1 + 3979: 4,0 + 3987: 4,1 + 3995: 8,12 + 3999: 9,4 + 4002: 9,12 + 4015: -8,12 + 4023: -4,0 + 4031: -4,1 + 4039: -3,0 + 4047: -3,1 + 4055: -2,1 + 4072: -1,1 + 4085: -4,-1 + 4093: 4,-1 + 4097: 10,-16 + 4100: 3,-20 + 4103: 9,-17 + 4116: 6,16 + 4124: 6,17 + 4132: 6,18 + 4140: 6,19 + 4148: 6,20 + 4152: 9,24 + 4155: 9,28 + 4167: 12,-10 + 4174: 0,1 + 4184: 1,1 + 4194: 2,1 + 4211: 3,0 + 4219: 3,1 + 4227: 4,0 + 4235: 4,1 + 4243: 8,12 + 4247: 9,4 + 4250: 9,12 + 4263: -8,12 + 4271: -4,0 + 4279: -4,1 + 4287: -3,0 + 4295: -3,1 + 4303: -2,1 + 4320: -1,1 + 4336: -4,-1 + 4344: 4,-1 + 4348: 10,-16 + 4351: 12,-10 + 4354: 3,-20 + 4357: 9,-17 + 4370: 6,16 + 4378: 6,17 + 4386: 6,18 + 4394: 6,19 + 4402: 6,20 + 4406: 9,24 + 4409: 9,28 + 4422: 0,1 + 4432: 1,1 + 4442: 2,1 + 4459: 3,0 + 4467: 3,1 + 4475: 4,0 + 4483: 4,1 + 4491: 8,12 + 4495: 9,4 + 4498: 9,12 + 4511: -8,12 + 4519: -4,0 + 4527: -4,1 + 4535: -3,0 + 4543: -3,1 + 4551: -2,1 + 4568: -1,1 + 4584: -4,-1 + 4592: 4,-1 + 4596: 10,-16 + 4599: 12,-10 + 4602: 3,-20 + 4605: 9,-17 + 4618: 6,16 + 4626: 6,17 + 4634: 6,18 + 4642: 6,19 + 4650: 6,20 + 4654: 9,24 + 4657: 9,28 + 4670: 0,1 + 4680: 1,1 + 4690: 2,1 + 4707: 3,0 + 4715: 3,1 + 4723: 4,0 + 4731: 4,1 + 4739: 8,12 + 4743: 9,4 + 4746: 9,12 + 4759: -8,12 + 4767: -4,0 + 4775: -4,1 + 4783: -3,0 + 4791: -3,1 + 4799: -2,1 + 4816: -1,1 + 4832: -4,-1 + 4840: 4,-1 + 4844: 10,-16 + 4847: 12,-10 + 4850: 3,-20 + 4853: 9,-17 + 4866: 6,16 + 4874: 6,17 + 4882: 6,18 + 4890: 6,19 + 4898: 6,20 + 4902: 9,24 + 4905: 9,28 + 4945: 0,1 + 4955: 1,1 + 4965: 2,1 + 4982: 3,0 + 4990: 3,1 + 4998: 4,0 + 5006: 4,1 + 5014: 8,12 + 5018: 9,4 + 5021: 9,12 + 5034: -8,12 + 5042: -4,0 + 5050: -4,1 + 5058: -3,0 + 5066: -3,1 + 5074: -2,1 + 5091: -1,1 + 5107: -4,-1 + 5115: 4,-1 + 5119: 10,-16 + 5122: 12,-10 + 5125: 3,-20 + 5128: 9,-17 + 5141: 6,16 + 5149: 6,17 + 5157: 6,18 + 5165: 6,19 + 5173: 6,20 + 5177: 9,24 + 5180: 9,28 + 5193: 0,1 + 5203: 1,1 + 5213: 2,1 + 5230: 3,0 + 5238: 3,1 + 5246: 4,0 + 5254: 4,1 + 5262: 8,12 + 5266: 9,4 + 5269: 9,12 + 5282: -8,12 + 5290: -4,0 + 5298: -4,1 + 5306: -3,0 + 5314: -3,1 + 5322: -2,1 + 5339: -1,1 + 5355: -4,-1 + 5363: 4,-1 + 5367: 10,-16 + 5370: 12,-10 + 5373: 3,-20 + 5376: 9,-17 + 5389: 6,16 + 5397: 6,17 + 5405: 6,18 + 5413: 6,19 + 5421: 6,20 + 5425: 9,24 + 5428: 9,28 - node: color: '#FFFFFFFF' id: Rust decals: - 894: -6,11 - 895: -1,11 - 896: -8,34 + 856: -6,11 + 857: -1,11 + 858: -8,34 - node: color: '#FFFFFFFF' id: TechCornerN @@ -4481,25 +5209,20 @@ entities: 285: -2,31 295: -4,36 296: -4,37 - 309: 1,22 - 310: 1,23 - 311: 1,24 - 312: 1,25 - 313: 1,26 - 406: 5,25 - 407: 5,26 - 408: 5,27 - 462: -2,-7 - 463: -2,-6 - 506: 6,-4 - 507: 6,-3 - 508: 6,-2 - 509: 6,-1 - 510: 6,0 - 511: 6,1 - 512: 6,2 - 591: -10,-13 - 592: -10,-11 + 386: 5,25 + 387: 5,26 + 388: 5,27 + 442: -2,-7 + 443: -2,-6 + 486: 6,-4 + 487: 6,-3 + 488: 6,-2 + 489: 6,-1 + 490: 6,0 + 491: 6,1 + 492: 6,2 + 571: -10,-13 + 572: -10,-11 - node: color: '#FFFFFFFF' id: TechN @@ -4507,44 +5230,41 @@ entities: 242: 6,10 252: 6,7 291: -6,31 - 303: 0,27 - 388: -8,25 - 389: -7,25 - 395: -6,25 - 400: 6,25 - 401: 7,25 - 402: 8,25 - 438: 2,15 - 439: 3,15 - 440: -2,15 - 441: -3,15 - 442: 4,15 - 443: -4,15 - 466: 3,-5 - 467: -3,-5 - 472: -1,-4 - 473: 0,-4 - 474: 1,-4 - 555: 9,-13 - 556: 10,-13 - 589: -9,-14 - 590: -8,-14 + 368: -8,25 + 369: -7,25 + 375: -6,25 + 380: 6,25 + 381: 7,25 + 382: 8,25 + 418: 2,15 + 419: 3,15 + 420: -2,15 + 421: -3,15 + 422: 4,15 + 423: -4,15 + 446: 3,-5 + 447: -3,-5 + 452: -1,-4 + 453: 0,-4 + 454: 1,-4 + 535: 9,-13 + 536: 10,-13 + 569: -9,-14 + 570: -8,-14 - node: color: '#FFFFFFFF' id: TechNE decals: 245: 7,10 248: 7,7 - 300: 1,27 - 464: -2,-5 + 444: -2,-5 - node: color: '#FFFFFFFF' id: TechNW decals: 246: 5,10 250: 5,7 - 301: -1,27 - 465: 2,-5 + 445: 2,-5 - node: color: '#FFFFFFFF' id: TechS @@ -4554,45 +5274,42 @@ entities: 271: -1,32 272: 0,32 273: 1,32 - 314: 0,21 - 390: -8,27 - 391: -7,27 - 396: -6,27 - 403: 6,27 - 404: 8,27 - 405: 7,27 - 424: 7,28 - 425: 6,28 - 426: -7,28 - 427: -6,28 - 470: 3,-3 - 471: -3,-3 - 543: -1,-7 - 544: 0,-7 - 545: 1,-7 - 546: -1,-3 - 547: 1,-3 - 548: 0,-3 - 553: 9,-11 - 554: 10,-11 - 587: -9,-10 - 588: -8,-10 + 370: -8,27 + 371: -7,27 + 376: -6,27 + 383: 6,27 + 384: 8,27 + 385: 7,27 + 404: 7,28 + 405: 6,28 + 406: -7,28 + 407: -6,28 + 450: 3,-3 + 451: -3,-3 + 523: -1,-7 + 524: 0,-7 + 525: 1,-7 + 526: -1,-3 + 527: 1,-3 + 528: 0,-3 + 533: 9,-11 + 534: 10,-11 + 567: -9,-10 + 568: -8,-10 - node: color: '#FFFFFFFF' id: TechSE decals: 247: 7,9 251: 7,5 - 302: 1,21 - 469: -2,-3 + 449: -2,-3 - node: color: '#FFFFFFFF' id: TechSW decals: 244: 5,9 249: 5,5 - 299: -1,21 - 468: 2,-3 + 448: 2,-3 - node: color: '#FFFFFFFF' id: TechW @@ -4605,24 +5322,79 @@ entities: 290: -5,34 297: 4,36 298: 4,37 - 304: -1,22 - 305: -1,23 - 306: -1,24 - 307: -1,25 - 308: -1,26 - 397: -5,25 - 398: -5,26 - 399: -5,27 - 460: 2,-7 - 461: 2,-6 - 513: -6,-4 - 514: -6,-3 - 515: -6,-2 - 516: -6,-1 - 517: -6,0 - 518: -6,1 - 519: -6,2 - 557: 10,-12 + 377: -5,25 + 378: -5,26 + 379: -5,27 + 440: 2,-7 + 441: 2,-6 + 493: -6,-4 + 494: -6,-3 + 495: -6,-2 + 496: -6,-1 + 497: -6,0 + 498: -6,1 + 499: -6,2 + 537: 10,-12 + - node: + color: '#EFB34196' + id: TrimWarnNorth + decals: + 4921: 0,22 + 5444: 0,25 + - node: + color: '#EFB34196' + id: TrimWarnNorthEast + decals: + 4915: 1,22 + 5443: 1,25 + - node: + color: '#EFB34196' + id: TrimWarnNorthWest + decals: + 4916: -1,22 + 5442: -1,25 + - node: + color: '#EFB34196' + id: TrimWarnSouth + decals: + 4922: 0,21 + 5445: 0,24 + - node: + color: '#EFB34196' + id: TrimWarnSouthEast + decals: + 4913: 1,21 + 5440: 1,24 + - node: + color: '#EFB34196' + id: TrimWarnSouthWest + decals: + 4914: -1,21 + 5441: -1,24 + - node: + color: '#EFB34196' + id: TrimlineEast + decals: + 5453: -2,23 + 5457: 2,23 + - node: + color: '#EFB34196' + id: TrimlineNorthEnd + decals: + 5455: -2,24 + 5458: 2,24 + - node: + color: '#EFB34196' + id: TrimlineSouthEnd + decals: + 4925: 2,22 + 4927: -2,22 + - node: + color: '#EFB34196' + id: TrimlineWest + decals: + 5452: -2,23 + 5456: 2,23 - node: color: '#EFB34196' id: WarnBoxGreyscale @@ -4661,36 +5433,50 @@ entities: 262: 5,5 277: 2,30 294: -5,34 - 356: -4,20 - 357: 2,20 + 336: -4,20 + 337: 2,20 + 5462: 2,24 + - node: + angle: 6.283185307179586 rad + color: '#EFB34196' + id: WarnCornerSmallNE + decals: + 4935: -4,24 - node: color: '#EFB34196' id: WarnCornerSmallNW decals: 260: 7,5 275: -2,30 - 354: 4,20 - 355: -2,20 + 334: 4,20 + 335: -2,20 + 5461: -2,24 + - node: + angle: 6.283185307179586 rad + color: '#EFB34196' + id: WarnCornerSmallNW + decals: + 4938: 4,24 - node: color: '#EFB34196' id: WarnCornerSmallSE decals: 263: 5,7 282: -1,30 - 346: 2,24 - 347: -4,24 - 348: -4,28 - 349: 2,28 + 327: -4,24 + 328: -4,28 + 329: 2,28 + 5464: 2,24 - node: color: '#EFB34196' id: WarnCornerSmallSW decals: 261: 7,7 283: 1,30 - 350: 4,28 - 351: -2,28 - 352: -2,24 - 353: 4,24 + 330: 4,28 + 331: -2,28 + 333: 4,24 + 5460: -2,24 - node: color: '#EFB34196' id: WarnEndE @@ -4711,14 +5497,14 @@ entities: color: '#EFB34196' id: WarnFull decals: - 392: -8,26 - 393: -7,26 - 409: 7,26 - 410: 8,26 - 428: -4,16 - 429: -4,17 - 430: -4,18 - 431: -2,18 + 372: -8,26 + 373: -7,26 + 389: 7,26 + 390: 8,26 + 408: -4,16 + 409: -4,17 + 410: -4,18 + 411: -2,18 - node: color: '#EFB34196' id: WarnFullGreyscale @@ -4819,37 +5605,50 @@ entities: 266: 3,37 270: -5,36 276: 2,31 - 315: 2,25 - 316: 2,26 - 317: 2,27 - 318: -4,25 - 319: -4,26 - 320: -4,21 - 321: -4,22 - 322: -4,23 - 323: 2,21 - 324: 2,22 - 325: 2,23 - 378: 4,25 - 379: 4,26 - 380: 4,27 - 411: 6,26 - 412: 9,25 - 413: 9,26 - 414: 9,27 - 415: -9,25 - 416: -9,26 - 417: -9,27 - 444: 4,3 - 445: -4,3 - 448: -6,13 - 449: -6,14 - 476: 3,-4 - 490: -5,-4 - 530: -5,3 - 558: -8,-13 - 559: -8,-12 - 560: -8,-11 + 299: 2,25 + 300: 2,26 + 301: 2,27 + 302: -4,25 + 303: -4,26 + 304: -4,21 + 305: -4,22 + 306: -4,23 + 358: 4,25 + 359: 4,26 + 360: 4,27 + 391: 6,26 + 392: 9,25 + 393: 9,26 + 394: 9,27 + 395: -9,25 + 396: -9,26 + 397: -9,27 + 424: 4,3 + 425: -4,3 + 428: -6,13 + 429: -6,14 + 456: 3,-4 + 470: -5,-4 + 510: -5,3 + 538: -8,-13 + 539: -8,-12 + 540: -8,-11 + 5463: 2,23 + - node: + angle: 3.141592653589793 rad + color: '#EFB34196' + id: WarnLineE + decals: + 4931: -2,22 + 4932: -2,21 + - node: + angle: 6.283185307179586 rad + color: '#EFB34196' + id: WarnLineE + decals: + 4929: 2,22 + 4930: 2,21 + 4933: -4,27 - node: color: '#EFB34196' id: WarnLineGreyscaleE @@ -4890,20 +5689,20 @@ entities: 241: -8,9 257: 6,7 281: 0,30 - 338: 3,28 - 339: -3,28 - 340: -3,24 - 341: 3,24 - 364: 0,20 - 432: -3,19 - 434: 2,19 - 435: 3,19 - 495: -6,-5 - 496: -5,-5 - 497: 5,-5 - 498: 6,-5 - 564: -5,-14 - 565: -3,-14 + 318: 3,28 + 319: -3,28 + 320: -3,24 + 321: 3,24 + 344: 0,20 + 412: -3,19 + 414: 2,19 + 415: 3,19 + 475: -6,-5 + 476: -5,-5 + 477: 5,-5 + 478: 6,-5 + 544: -5,-14 + 545: -3,-14 - node: color: '#EFB34196' id: WarnLineS @@ -4962,37 +5761,35 @@ entities: 268: -3,37 269: 5,36 274: -2,31 - 326: 4,21 - 327: 4,22 - 328: 4,23 - 329: 4,25 - 330: 4,26 - 331: 4,27 - 332: -2,21 - 333: -2,22 - 334: -2,23 - 335: -2,25 - 336: -2,26 - 337: -2,27 - 376: -4,25 - 377: -4,26 - 394: -6,26 - 418: -9,25 - 419: -9,26 - 420: -9,27 - 421: 9,25 - 422: 9,26 - 423: 9,27 - 446: 4,3 - 447: -4,3 - 450: 6,13 - 451: 6,14 - 475: -3,-4 - 489: 5,-4 - 529: 5,3 - 561: -6,-13 - 562: -6,-12 - 563: -6,-11 + 308: 4,21 + 309: 4,22 + 310: 4,23 + 311: 4,25 + 312: 4,26 + 313: 4,27 + 315: -2,25 + 316: -2,26 + 317: -2,27 + 356: -4,25 + 357: -4,26 + 374: -6,26 + 398: -9,25 + 399: -9,26 + 400: -9,27 + 401: 9,25 + 402: 9,26 + 403: 9,27 + 426: 4,3 + 427: -4,3 + 430: 6,13 + 431: 6,14 + 455: -3,-4 + 469: 5,-4 + 509: 5,3 + 541: -6,-13 + 542: -6,-12 + 543: -6,-11 + 5459: -2,23 - node: color: '#EFB34196' id: WarnLineW @@ -5028,64 +5825,64 @@ entities: 279: 0,31 280: 1,31 293: -4,34 - 342: 3,20 - 343: -3,20 - 344: -3,24 - 345: 3,24 - 387: 0,28 - 433: -3,19 - 436: 2,19 - 437: 3,19 - 491: 5,-5 - 492: 6,-5 - 493: -5,-5 - 494: -6,-5 - 549: 3,-13 - 550: 4,-13 - 551: 5,-13 - 552: 6,-13 - 566: -3,-16 - 567: -5,-16 + 322: 3,20 + 323: -3,20 + 324: -3,24 + 325: 3,24 + 367: 0,28 + 413: -3,19 + 416: 2,19 + 417: 3,19 + 471: 5,-5 + 472: 6,-5 + 473: -5,-5 + 474: -6,-5 + 529: 3,-13 + 530: 4,-13 + 531: 5,-13 + 532: 6,-13 + 546: -3,-16 + 547: -5,-16 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 459: 1,-9 + 439: 1,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 458: -1,-9 + 438: -1,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 457: 1,-11 + 437: 1,-11 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 452: -1,-11 + 432: -1,-11 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 453: 1,-10 + 433: 1,-10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 454: 0,-9 + 434: 0,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 455: 0,-11 + 435: 0,-11 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 456: -1,-10 + 436: -1,-10 - type: RadiationGridResistance - type: GridAtmosphere version: 2 @@ -5330,7 +6127,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1089 + - 1120 - type: Physics canCollide: False - proto: AAAHardpointMediumBallistic @@ -5544,7 +6341,7 @@ entities: - type: ApcPowerReceiver powerLoad: 25000 - type: Battery - startingCharge: 93184.19 + startingCharge: 83273.01 - type: ApcPowerReceiverBattery enabled: True - type: BallisticAmmoProvider @@ -5590,12 +6387,12 @@ entities: parent: 1 - type: DeviceList devices: - - 1336 - - 1339 - - 1337 - - 1340 - - 1341 - - 1338 + - 1369 + - 1372 + - 1370 + - 1373 + - 1374 + - 1371 - uid: 35 components: - type: Transform @@ -5604,14 +6401,14 @@ entities: parent: 1 - type: DeviceList configurators: - - 1403 + - 1437 devices: - - 1336 - - 1339 - - 1337 - - 1340 - - 1341 - - 1338 + - 1369 + - 1372 + - 1370 + - 1373 + - 1374 + - 1371 - proto: AirCanister entities: - uid: 36 @@ -5671,12 +6468,9 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,19.5 parent: 1 -- proto: AirlockCommandLockedNCWLAdministrator - entities: - uid: 45 components: - type: Transform - rot: 3.141592653589793 rad pos: -0.5,-7.5 parent: 1 - proto: AirlockCommandLockedNCWLCommandHorizontal @@ -5794,37 +6588,34 @@ entities: - uid: 63 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,21.5 + pos: 4.5,35.5 parent: 1 +- proto: AirlockExternalLocked + entities: - uid: 64 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,21.5 + pos: 6.5,21.5 parent: 1 - uid: 65 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,15.5 parent: 1 - uid: 66 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,15.5 + pos: -5.5,21.5 parent: 1 - uid: 67 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,35.5 + pos: 6.5,15.5 parent: 1 - uid: 68 components: - type: Transform - pos: 4.5,35.5 + pos: -3.5,35.5 parent: 1 - proto: AirlockMaint entities: @@ -5863,39 +6654,45 @@ entities: - type: Transform pos: 8.5,-11.5 parent: 1 + - uid: 75 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 1 - proto: AirlockShuttle entities: - - uid: 75 + - uid: 76 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,25.5 parent: 1 - - uid: 76 + - uid: 77 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,27.5 parent: 1 - - uid: 77 + - uid: 78 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,38.5 parent: 1 - - uid: 78 + - uid: 79 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,38.5 parent: 1 - - uid: 79 + - uid: 80 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,25.5 parent: 1 - - uid: 80 + - uid: 81 components: - type: Transform rot: 1.5707963267948966 rad @@ -5903,69 +6700,69 @@ entities: parent: 1 - proto: AirTankFilled entities: - - uid: 82 + - uid: 83 components: - type: Transform - parent: 81 + parent: 82 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 88 + - uid: 89 components: - type: Transform - parent: 87 + parent: 88 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 94 + - uid: 95 components: - type: Transform - parent: 93 + parent: 94 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 100 + - uid: 101 components: - type: Transform - parent: 99 + parent: 100 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 106 + - uid: 107 components: - type: Transform - parent: 105 + parent: 106 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 112 + - uid: 113 components: - type: Transform - parent: 111 + parent: 112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 118 + - uid: 119 components: - type: Transform - parent: 117 + parent: 118 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 124 + - uid: 125 components: - type: Transform - parent: 123 + parent: 124 - type: Physics canCollide: False - type: InsideEntityStorage - proto: AmeController entities: - - uid: 129 + - uid: 130 components: - type: Transform pos: 3.5,-12.5 @@ -5978,33 +6775,33 @@ entities: fuelSlot: !type:ContainerSlot showEnts: False occludes: True - ent: 130 + ent: 131 - proto: AmeJar entities: - - uid: 130 + - uid: 131 components: - type: Transform - parent: 129 + parent: 130 - type: Physics canCollide: False - - uid: 131 + - uid: 132 components: - type: Transform pos: 2.1912324,-12.405361 parent: 1 - - uid: 132 + - uid: 133 components: - type: Transform pos: 2.3398516,-12.405361 parent: 1 - - uid: 133 + - uid: 134 components: - type: Transform pos: 2.5033343,-12.405361 parent: 1 - proto: AmeShielding entities: - - uid: 134 + - uid: 135 components: - type: Transform pos: 5.5,-9.5 @@ -6012,12 +6809,12 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 135 + - uid: 136 components: - type: Transform pos: 5.5,-8.5 parent: 1 - - uid: 136 + - uid: 137 components: - type: Transform pos: 5.5,-10.5 @@ -6025,17 +6822,17 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 137 + - uid: 138 components: - type: Transform pos: 5.5,-11.5 parent: 1 - - uid: 138 + - uid: 139 components: - type: Transform pos: 4.5,-8.5 parent: 1 - - uid: 139 + - uid: 140 components: - type: Transform pos: 4.5,-9.5 @@ -6043,7 +6840,7 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 140 + - uid: 141 components: - type: Transform pos: 4.5,-10.5 @@ -6051,66 +6848,60 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 141 + - uid: 142 components: - type: Transform pos: 4.5,-11.5 parent: 1 - - uid: 142 + - uid: 143 components: - type: Transform pos: 3.5,-8.5 parent: 1 - - uid: 143 + - uid: 144 components: - type: Transform pos: 3.5,-9.5 parent: 1 - - uid: 144 + - uid: 145 components: - type: Transform pos: 3.5,-10.5 parent: 1 - - uid: 145 + - uid: 146 components: - type: Transform pos: 3.5,-11.5 parent: 1 - - uid: 146 + - uid: 147 components: - type: Transform pos: 6.5,-8.5 parent: 1 - - uid: 147 + - uid: 148 components: - type: Transform pos: 6.5,-10.5 parent: 1 - - uid: 148 + - uid: 149 components: - type: Transform pos: 6.5,-11.5 parent: 1 - - uid: 149 + - uid: 150 components: - type: Transform pos: 6.5,-9.5 parent: 1 - proto: AmmoTechFab entities: - - uid: 150 + - uid: 151 components: - type: Transform pos: -2.5,14.5 parent: 1 - proto: APCBasic entities: - - uid: 151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-13.5 - parent: 1 - uid: 152 components: - type: Transform @@ -6152,189 +6943,217 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 1 + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 159 + - uid: 160 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,27.5 parent: 1 - - uid: 160 + - uid: 161 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,15.5 parent: 1 - - uid: 161 + - uid: 162 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,15.5 parent: 1 - - uid: 162 + - uid: 163 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,21.5 parent: 1 - - uid: 163 + - uid: 164 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,21.5 parent: 1 - - uid: 164 + - uid: 165 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,27.5 parent: 1 - - uid: 165 + - uid: 166 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,25.5 parent: 1 - - uid: 166 + - uid: 167 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,25.5 parent: 1 - - uid: 167 + - uid: 168 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 1 - - uid: 168 + - uid: 169 components: - type: Transform pos: -3.5,38.5 parent: 1 - - uid: 169 + - uid: 170 components: - type: Transform pos: 4.5,38.5 parent: 1 - - uid: 170 + - uid: 171 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-1.5 parent: 1 - - uid: 171 + - uid: 172 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,22.5 parent: 1 - - uid: 172 + - uid: 173 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,13.5 parent: 1 - - uid: 173 + - uid: 174 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,22.5 parent: 1 - - uid: 174 + - uid: 175 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,13.5 parent: 1 - - uid: 175 + - uid: 176 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-1.5 parent: 1 - - uid: 176 + - uid: 177 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 1 - - uid: 177 + - uid: 178 components: - type: Transform pos: -0.5,37.5 parent: 1 - - uid: 178 + - uid: 179 components: - type: Transform pos: 1.5,37.5 parent: 1 - - uid: 179 + - uid: 180 components: - type: Transform pos: 0.5,37.5 parent: 1 + - uid: 181 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 1 - proto: Autolathe entities: - - uid: 180 + - uid: 184 components: - type: Transform pos: 4.5,17.5 parent: 1 - proto: Bed entities: - - uid: 181 + - uid: 185 components: - type: Transform pos: -4.5,-16.5 parent: 1 - - uid: 182 + - uid: 186 components: - type: Transform pos: -1.5,-16.5 parent: 1 - proto: BedsheetOrange entities: - - uid: 183 + - uid: 187 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-16.5 parent: 1 - - uid: 184 + - uid: 188 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-16.5 parent: 1 +- proto: BiomassReclaimer + entities: + - uid: 189 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 - proto: BlastDoor entities: - - uid: 185 + - uid: 190 components: - type: Transform pos: 1.5,37.5 parent: 1 - type: DeviceLinkSink links: - - 1567 - - uid: 186 + - 1635 + - uid: 191 components: - type: Transform pos: 0.5,37.5 parent: 1 - type: DeviceLinkSink links: - - 1567 - - uid: 187 + - 1635 + - uid: 192 components: - type: Transform pos: -0.5,37.5 parent: 1 - type: DeviceLinkSink links: - - 1567 - - uid: 188 + - 1635 + - uid: 193 components: - type: Transform rot: 1.5707963267948966 rad @@ -6342,8 +7161,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1572 - - uid: 189 + - 1640 + - uid: 194 components: - type: Transform rot: 1.5707963267948966 rad @@ -6351,8 +7170,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1571 - - uid: 190 + - 1639 + - uid: 195 components: - type: Transform rot: -1.5707963267948966 rad @@ -6360,8 +7179,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1570 - - uid: 191 + - 1638 + - uid: 196 components: - type: Transform rot: -1.5707963267948966 rad @@ -6369,8 +7188,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1569 - - uid: 192 + - 1637 + - uid: 197 components: - type: Transform rot: 1.5707963267948966 rad @@ -6378,8 +7197,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1568 - - uid: 193 + - 1636 + - uid: 198 components: - type: Transform rot: -1.5707963267948966 rad @@ -6387,90 +7206,90 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1566 + - 1634 - proto: BlastDoorOpen entities: - - uid: 194 + - uid: 199 components: - type: Transform pos: 1.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 1563 - - uid: 195 + - 1631 + - uid: 200 components: - type: Transform pos: 2.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 1563 - - uid: 196 + - 1631 + - uid: 201 components: - type: Transform pos: 0.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 1563 - - uid: 197 + - 1631 + - uid: 202 components: - type: Transform pos: -0.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 1563 - - uid: 198 + - 1631 + - uid: 203 components: - type: Transform pos: -1.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 1563 - - uid: 199 + - 1631 + - uid: 204 components: - type: Transform pos: -1.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 1563 - - uid: 200 + - 1631 + - uid: 205 components: - type: Transform pos: -0.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 1563 - - uid: 201 + - 1631 + - uid: 206 components: - type: Transform pos: 0.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 1563 - - uid: 202 + - 1631 + - uid: 207 components: - type: Transform pos: 1.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 1563 - - uid: 203 + - 1631 + - uid: 208 components: - type: Transform pos: 2.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 1563 - - uid: 204 + - 1631 + - uid: 209 components: - type: Transform rot: -1.5707963267948966 rad @@ -6478,8 +7297,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1563 - - uid: 205 + - 1631 + - uid: 210 components: - type: Transform rot: -1.5707963267948966 rad @@ -6487,8 +7306,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1563 - - uid: 206 + - 1631 + - uid: 211 components: - type: Transform rot: 1.5707963267948966 rad @@ -6496,8 +7315,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1563 - - uid: 207 + - 1631 + - uid: 212 components: - type: Transform rot: 1.5707963267948966 rad @@ -6505,22 +7324,22 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1563 + - 1631 - proto: BoriaticGeneratorHerculesShuttle entities: - - uid: 208 + - uid: 213 components: - type: Transform - pos: -5.5,7.5 + pos: 5.5,-16.5 parent: 1 - type: FuelGenerator on: False - type: Physics bodyType: Static - - uid: 209 + - uid: 214 components: - type: Transform - pos: 5.5,-16.5 + pos: -5.5,5.5 parent: 1 - type: FuelGenerator on: False @@ -6528,78 +7347,87 @@ entities: bodyType: Static - proto: BoxBeaker entities: - - uid: 210 + - uid: 215 components: - type: Transform pos: -4.677565,11.774466 parent: 1 +- proto: BoxFolderBlack + entities: + - uid: 2175 + components: + - type: MetaData + name: Volgin Files + - type: Transform + pos: -0.6409803,-9.360698 + parent: 1 - proto: BoxSyringe entities: - - uid: 211 + - uid: 216 components: - type: Transform - pos: -5.2123933,11.760755 + pos: -4.7007365,11.41998 parent: 1 - type: Physics angularDamping: 0 linearDamping: 0 - proto: ButtonFrameCaution entities: - - uid: 212 + - uid: 217 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-8.5 parent: 1 - - uid: 213 + - uid: 218 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 1 - - uid: 214 + - uid: 219 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-8.5 parent: 1 - - uid: 215 + - uid: 220 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,19.5 parent: 1 - - uid: 216 + - uid: 221 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,24.5 parent: 1 - - uid: 217 + - uid: 222 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,24.5 parent: 1 - - uid: 218 + - uid: 223 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,22.5 parent: 1 - - uid: 219 + - uid: 224 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,14.5 parent: 1 - - uid: 220 + - uid: 225 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,22.5 parent: 1 - - uid: 221 + - uid: 226 components: - type: Transform rot: 1.5707963267948966 rad @@ -6607,2192 +7435,2167 @@ entities: parent: 1 - proto: ButtonFrameCautionSecurity entities: - - uid: 222 + - uid: 227 components: - type: Transform pos: 2.5,35.5 parent: 1 - proto: CableApcExtension entities: - - uid: 223 + - uid: 228 components: - type: Transform pos: 8.5,-17.5 parent: 1 - - uid: 224 + - uid: 229 components: - type: Transform pos: 8.5,-16.5 parent: 1 - - uid: 225 + - uid: 230 components: - type: Transform pos: 7.5,-16.5 parent: 1 - - uid: 226 + - uid: 231 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 227 + - uid: 232 components: - type: Transform pos: 6.5,-15.5 parent: 1 - - uid: 228 + - uid: 233 components: - type: Transform pos: 5.5,-15.5 parent: 1 - - uid: 229 + - uid: 234 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 230 + - uid: 235 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 231 + - uid: 236 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 232 + - uid: 237 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 233 + - uid: 238 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 234 + - uid: 239 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 235 + - uid: 240 components: - type: Transform pos: -7.5,11.5 parent: 1 - - uid: 236 + - uid: 241 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 237 + - uid: 242 components: - type: Transform pos: -6.5,11.5 parent: 1 - - uid: 238 + - uid: 243 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 239 + - uid: 244 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 240 + - uid: 245 components: - type: Transform pos: -9.5,-8.5 parent: 1 - - uid: 241 + - uid: 246 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 242 + - uid: 247 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 243 + - uid: 248 components: - type: Transform pos: 3.5,32.5 parent: 1 - - uid: 244 + - uid: 249 components: - type: Transform pos: 3.5,31.5 parent: 1 - - uid: 245 + - uid: 250 components: - type: Transform pos: 2.5,31.5 parent: 1 - - uid: 246 + - uid: 251 components: - type: Transform pos: 1.5,31.5 parent: 1 - - uid: 247 + - uid: 252 components: - type: Transform pos: 0.5,31.5 parent: 1 - - uid: 248 + - uid: 253 components: - type: Transform pos: -0.5,31.5 parent: 1 - - uid: 249 + - uid: 254 components: - type: Transform pos: -1.5,31.5 parent: 1 - - uid: 250 + - uid: 255 components: - type: Transform pos: -2.5,31.5 parent: 1 - - uid: 251 + - uid: 256 components: - type: Transform pos: -3.5,31.5 parent: 1 - - uid: 252 + - uid: 257 components: - type: Transform pos: -4.5,31.5 parent: 1 - - uid: 253 + - uid: 258 components: - type: Transform pos: -4.5,32.5 parent: 1 - - uid: 254 + - uid: 259 components: - type: Transform pos: -4.5,33.5 parent: 1 - - uid: 255 + - uid: 260 components: - type: Transform pos: -4.5,34.5 parent: 1 - - uid: 256 + - uid: 261 components: - type: Transform pos: -4.5,35.5 parent: 1 - - uid: 257 + - uid: 262 components: - type: Transform pos: -4.5,36.5 parent: 1 - - uid: 258 + - uid: 263 components: - type: Transform pos: -3.5,36.5 parent: 1 - - uid: 259 + - uid: 264 components: - type: Transform pos: -3.5,37.5 parent: 1 - - uid: 260 + - uid: 265 components: - type: Transform pos: -3.5,38.5 parent: 1 - - uid: 261 + - uid: 266 components: - type: Transform pos: 4.5,31.5 parent: 1 - - uid: 262 + - uid: 267 components: - type: Transform pos: 5.5,31.5 parent: 1 - - uid: 263 + - uid: 268 components: - type: Transform pos: 5.5,31.5 parent: 1 - - uid: 264 + - uid: 269 components: - type: Transform pos: 5.5,32.5 parent: 1 - - uid: 265 + - uid: 270 components: - type: Transform pos: 5.5,33.5 parent: 1 - - uid: 266 + - uid: 271 components: - type: Transform pos: 5.5,34.5 parent: 1 - - uid: 267 + - uid: 272 components: - type: Transform pos: 4.5,34.5 parent: 1 - - uid: 268 + - uid: 273 components: - type: Transform pos: 4.5,35.5 parent: 1 - - uid: 269 + - uid: 274 components: - type: Transform pos: 4.5,36.5 parent: 1 - - uid: 270 + - uid: 275 components: - type: Transform pos: 4.5,37.5 parent: 1 - - uid: 271 + - uid: 276 components: - type: Transform pos: 4.5,38.5 parent: 1 - - uid: 272 + - uid: 277 components: - type: Transform pos: 5.5,38.5 parent: 1 - - uid: 273 + - uid: 278 components: - type: Transform pos: 5.5,36.5 parent: 1 - - uid: 274 + - uid: 279 components: - type: Transform pos: 6.5,36.5 parent: 1 - - uid: 275 + - uid: 280 components: - type: Transform pos: 7.5,36.5 parent: 1 - - uid: 276 + - uid: 281 components: - type: Transform pos: 6.5,34.5 parent: 1 - - uid: 277 + - uid: 282 components: - type: Transform pos: 7.5,34.5 parent: 1 - - uid: 278 + - uid: 283 components: - type: Transform pos: 8.5,34.5 parent: 1 - - uid: 279 + - uid: 284 components: - type: Transform pos: -5.5,34.5 parent: 1 - - uid: 280 + - uid: 285 components: - type: Transform pos: -6.5,34.5 parent: 1 - - uid: 281 + - uid: 286 components: - type: Transform pos: -7.5,34.5 parent: 1 - - uid: 282 + - uid: 287 components: - type: Transform pos: -4.5,36.5 parent: 1 - - uid: 283 + - uid: 288 components: - type: Transform pos: -5.5,36.5 parent: 1 - - uid: 284 + - uid: 289 components: - type: Transform pos: -6.5,36.5 parent: 1 - - uid: 285 + - uid: 290 components: - type: Transform pos: -4.5,38.5 parent: 1 - - uid: 286 + - uid: 291 components: - type: Transform pos: 8.5,33.5 parent: 1 - - uid: 287 + - uid: 292 components: - type: Transform pos: 8.5,32.5 parent: 1 - - uid: 288 + - uid: 293 components: - type: Transform pos: 8.5,31.5 parent: 1 - - uid: 289 + - uid: 294 components: - type: Transform pos: 8.5,30.5 parent: 1 - - uid: 290 + - uid: 295 components: - type: Transform pos: -7.5,33.5 parent: 1 - - uid: 291 + - uid: 296 components: - type: Transform pos: -7.5,32.5 parent: 1 - - uid: 292 + - uid: 297 components: - type: Transform pos: -7.5,31.5 parent: 1 - - uid: 293 + - uid: 298 components: - type: Transform pos: -7.5,30.5 parent: 1 - - uid: 294 + - uid: 299 components: - type: Transform pos: -0.5,19.5 parent: 1 - - uid: 295 + - uid: 300 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 296 + - uid: 301 components: - type: Transform pos: -0.5,21.5 parent: 1 - - uid: 297 + - uid: 302 components: - type: Transform pos: -0.5,22.5 parent: 1 - - uid: 298 + - uid: 303 components: - type: Transform pos: -0.5,23.5 parent: 1 - - uid: 299 + - uid: 304 components: - type: Transform pos: -0.5,24.5 parent: 1 - - uid: 300 + - uid: 305 components: - type: Transform pos: -0.5,25.5 parent: 1 - - uid: 301 + - uid: 306 components: - type: Transform pos: -0.5,26.5 parent: 1 - - uid: 302 + - uid: 307 components: - type: Transform pos: -0.5,27.5 parent: 1 - - uid: 303 + - uid: 308 components: - type: Transform pos: -0.5,28.5 parent: 1 - - uid: 304 + - uid: 309 components: - type: Transform pos: -1.5,28.5 parent: 1 - - uid: 305 + - uid: 310 components: - type: Transform pos: -2.5,28.5 parent: 1 - - uid: 306 + - uid: 311 components: - type: Transform pos: -3.5,28.5 parent: 1 - - uid: 307 + - uid: 312 components: - type: Transform pos: -3.5,27.5 parent: 1 - - uid: 308 + - uid: 313 components: - type: Transform pos: -3.5,26.5 parent: 1 - - uid: 309 + - uid: 314 components: - type: Transform pos: -3.5,25.5 parent: 1 - - uid: 310 + - uid: 315 components: - type: Transform pos: -3.5,24.5 parent: 1 - - uid: 311 + - uid: 316 components: - type: Transform pos: -3.5,23.5 parent: 1 - - uid: 312 + - uid: 317 components: - type: Transform pos: -3.5,22.5 parent: 1 - - uid: 313 + - uid: 318 components: - type: Transform pos: -3.5,21.5 parent: 1 - - uid: 314 + - uid: 319 components: - type: Transform pos: -3.5,20.5 parent: 1 - - uid: 315 + - uid: 320 components: - type: Transform pos: -2.5,20.5 parent: 1 - - uid: 316 + - uid: 321 components: - type: Transform pos: -1.5,20.5 parent: 1 - - uid: 317 + - uid: 322 components: - type: Transform pos: -2.5,19.5 parent: 1 - - uid: 318 + - uid: 323 components: - type: Transform pos: -2.5,18.5 parent: 1 - - uid: 319 + - uid: 324 components: - type: Transform pos: -2.5,17.5 parent: 1 - - uid: 320 + - uid: 325 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 321 + - uid: 326 components: - type: Transform pos: -2.5,15.5 parent: 1 - - uid: 322 + - uid: 327 components: - type: Transform pos: -2.5,14.5 parent: 1 - - uid: 323 + - uid: 328 components: - type: Transform pos: -1.5,14.5 parent: 1 - - uid: 324 + - uid: 329 components: - type: Transform pos: -3.5,16.5 parent: 1 - - uid: 325 + - uid: 330 components: - type: Transform pos: -1.5,16.5 parent: 1 - - uid: 326 + - uid: 331 components: - type: Transform pos: -0.5,16.5 parent: 1 - - uid: 327 + - uid: 332 components: - type: Transform pos: 0.5,16.5 parent: 1 - - uid: 328 + - uid: 333 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 329 + - uid: 334 components: - type: Transform pos: 2.5,16.5 parent: 1 - - uid: 330 + - uid: 335 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 331 + - uid: 336 components: - type: Transform pos: 4.5,16.5 parent: 1 - - uid: 332 + - uid: 337 components: - type: Transform pos: 4.5,17.5 parent: 1 - - uid: 333 + - uid: 338 components: - type: Transform pos: 4.5,18.5 parent: 1 - - uid: 334 + - uid: 339 components: - type: Transform pos: 3.5,18.5 parent: 1 - - uid: 335 + - uid: 340 components: - type: Transform pos: 2.5,18.5 parent: 1 - - uid: 336 + - uid: 341 components: - type: Transform pos: 2.5,17.5 parent: 1 - - uid: 337 + - uid: 342 components: - type: Transform pos: 2.5,15.5 parent: 1 - - uid: 338 + - uid: 343 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 339 + - uid: 344 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 340 + - uid: 345 components: - type: Transform pos: 4.5,14.5 parent: 1 - - uid: 341 + - uid: 346 components: - type: Transform pos: 4.5,15.5 parent: 1 - - uid: 342 + - uid: 347 components: - type: Transform pos: 0.5,20.5 parent: 1 - - uid: 343 + - uid: 348 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 344 + - uid: 349 components: - type: Transform pos: 2.5,20.5 parent: 1 - - uid: 345 + - uid: 350 components: - type: Transform pos: 3.5,20.5 parent: 1 - - uid: 346 + - uid: 351 components: - type: Transform pos: 3.5,19.5 parent: 1 - - uid: 347 + - uid: 352 components: - type: Transform pos: 4.5,20.5 parent: 1 - - uid: 348 + - uid: 353 components: - type: Transform pos: 4.5,21.5 parent: 1 - - uid: 349 + - uid: 354 components: - type: Transform pos: 4.5,22.5 parent: 1 - - uid: 350 + - uid: 355 components: - type: Transform pos: 4.5,23.5 parent: 1 - - uid: 351 + - uid: 356 components: - type: Transform pos: 4.5,24.5 parent: 1 - - uid: 352 + - uid: 357 components: - type: Transform pos: 4.5,25.5 parent: 1 - - uid: 353 + - uid: 358 components: - type: Transform pos: 4.5,26.5 parent: 1 - - uid: 354 + - uid: 359 components: - type: Transform pos: 4.5,27.5 parent: 1 - - uid: 355 + - uid: 360 components: - type: Transform pos: 4.5,28.5 parent: 1 - - uid: 356 + - uid: 361 components: - type: Transform pos: 3.5,28.5 parent: 1 - - uid: 357 + - uid: 362 components: - type: Transform pos: 2.5,28.5 parent: 1 - - uid: 358 + - uid: 363 components: - type: Transform pos: 1.5,28.5 parent: 1 - - uid: 359 + - uid: 364 components: - type: Transform pos: 0.5,28.5 parent: 1 - - uid: 360 + - uid: 365 components: - type: Transform pos: 5.5,26.5 parent: 1 - - uid: 361 + - uid: 366 components: - type: Transform pos: 6.5,26.5 parent: 1 - - uid: 362 + - uid: 367 components: - type: Transform pos: 7.5,26.5 parent: 1 - - uid: 363 + - uid: 368 components: - type: Transform pos: 6.5,27.5 parent: 1 - - uid: 364 + - uid: 369 components: - type: Transform pos: 6.5,28.5 parent: 1 - - uid: 365 + - uid: 370 components: - type: Transform pos: 6.5,25.5 parent: 1 - - uid: 366 + - uid: 371 components: - type: Transform pos: 6.5,24.5 parent: 1 - - uid: 367 + - uid: 372 components: - type: Transform pos: 6.5,23.5 parent: 1 - - uid: 368 + - uid: 373 components: - type: Transform pos: 6.5,22.5 parent: 1 - - uid: 369 + - uid: 374 components: - type: Transform pos: 6.5,21.5 parent: 1 - - uid: 370 + - uid: 375 components: - type: Transform pos: 6.5,20.5 parent: 1 - - uid: 371 + - uid: 376 components: - type: Transform pos: 6.5,19.5 parent: 1 - - uid: 372 + - uid: 377 components: - type: Transform pos: 6.5,18.5 parent: 1 - - uid: 373 + - uid: 378 components: - type: Transform pos: 6.5,17.5 parent: 1 - - uid: 374 + - uid: 379 components: - type: Transform pos: 6.5,16.5 parent: 1 - - uid: 375 + - uid: 380 components: - type: Transform pos: 6.5,15.5 parent: 1 - - uid: 376 + - uid: 381 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 377 + - uid: 382 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 378 + - uid: 383 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 379 + - uid: 384 components: - type: Transform pos: 7.5,16.5 parent: 1 - - uid: 380 + - uid: 385 components: - type: Transform pos: 7.5,18.5 parent: 1 - - uid: 381 + - uid: 386 components: - type: Transform pos: 7.5,20.5 parent: 1 - - uid: 382 + - uid: 387 components: - type: Transform pos: 7.5,22.5 parent: 1 - - uid: 383 + - uid: 388 components: - type: Transform pos: 8.5,22.5 parent: 1 - - uid: 384 + - uid: 389 components: - type: Transform pos: 7.5,13.5 parent: 1 - - uid: 385 + - uid: 390 components: - type: Transform pos: 8.5,13.5 parent: 1 - - uid: 386 + - uid: 391 components: - type: Transform pos: -4.5,13.5 parent: 1 - - uid: 387 + - uid: 392 components: - type: Transform pos: -4.5,14.5 parent: 1 - - uid: 388 + - uid: 393 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 389 + - uid: 394 components: - type: Transform pos: -5.5,14.5 parent: 1 - - uid: 390 + - uid: 395 components: - type: Transform pos: -5.5,15.5 parent: 1 - - uid: 391 + - uid: 396 components: - type: Transform pos: -5.5,16.5 parent: 1 - - uid: 392 + - uid: 397 components: - type: Transform pos: -5.5,17.5 parent: 1 - - uid: 393 + - uid: 398 components: - type: Transform pos: -5.5,18.5 parent: 1 - - uid: 394 + - uid: 399 components: - type: Transform pos: -5.5,19.5 parent: 1 - - uid: 395 + - uid: 400 components: - type: Transform pos: -5.5,20.5 parent: 1 - - uid: 396 + - uid: 401 components: - type: Transform pos: -5.5,21.5 parent: 1 - - uid: 397 + - uid: 402 components: - type: Transform pos: -4.5,21.5 parent: 1 - - uid: 398 + - uid: 403 components: - type: Transform pos: -6.5,20.5 parent: 1 - - uid: 399 + - uid: 404 components: - type: Transform pos: -6.5,18.5 parent: 1 - - uid: 400 + - uid: 405 components: - type: Transform pos: -6.5,16.5 parent: 1 - - uid: 401 + - uid: 406 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 402 + - uid: 407 components: - type: Transform pos: -6.5,13.5 parent: 1 - - uid: 403 + - uid: 408 components: - type: Transform pos: -7.5,13.5 parent: 1 - - uid: 404 + - uid: 409 components: - type: Transform pos: -5.5,22.5 parent: 1 - - uid: 405 + - uid: 410 components: - type: Transform pos: -6.5,22.5 parent: 1 - - uid: 406 + - uid: 411 components: - type: Transform pos: -7.5,22.5 parent: 1 - - uid: 407 + - uid: 412 components: - type: Transform pos: -5.5,23.5 parent: 1 - - uid: 408 + - uid: 413 components: - type: Transform pos: -5.5,24.5 parent: 1 - - uid: 409 + - uid: 414 components: - type: Transform pos: -5.5,25.5 parent: 1 - - uid: 410 + - uid: 415 components: - type: Transform pos: -5.5,26.5 parent: 1 - - uid: 411 + - uid: 416 components: - type: Transform pos: -5.5,27.5 parent: 1 - - uid: 412 + - uid: 417 components: - type: Transform pos: -5.5,28.5 parent: 1 - - uid: 413 + - uid: 418 components: - type: Transform pos: -6.5,28.5 parent: 1 - - uid: 414 + - uid: 419 components: - type: Transform pos: -7.5,28.5 parent: 1 - - uid: 415 + - uid: 420 components: - type: Transform pos: -7.5,27.5 parent: 1 - - uid: 416 + - uid: 421 components: - type: Transform pos: -7.5,26.5 parent: 1 - - uid: 417 + - uid: 422 components: - type: Transform pos: -7.5,25.5 parent: 1 - - uid: 418 + - uid: 423 components: - type: Transform pos: -7.5,24.5 parent: 1 - - uid: 419 + - uid: 424 components: - type: Transform pos: -7.5,23.5 parent: 1 - - uid: 420 + - uid: 425 components: - type: Transform pos: -4.5,26.5 parent: 1 - - uid: 421 + - uid: 426 components: - type: Transform pos: -3.5,26.5 parent: 1 - - uid: 422 + - uid: 427 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 423 + - uid: 428 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 424 + - uid: 429 components: - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 425 + - uid: 430 components: - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 426 + - uid: 431 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 427 + - uid: 432 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 428 + - uid: 433 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 429 + - uid: 434 components: - type: Transform pos: -0.5,8.5 parent: 1 - - uid: 430 + - uid: 435 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 431 + - uid: 436 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 432 + - uid: 437 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 433 + - uid: 438 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 434 + - uid: 439 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 435 + - uid: 440 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 436 + - uid: 441 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 437 + - uid: 442 components: - type: Transform pos: 6.5,7.5 parent: 1 - - uid: 438 + - uid: 443 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 439 + - uid: 444 components: - type: Transform pos: 6.5,9.5 parent: 1 - - uid: 440 + - uid: 445 components: - type: Transform pos: 6.5,10.5 parent: 1 - - uid: 441 + - uid: 446 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 442 + - uid: 447 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 443 + - uid: 448 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 444 + - uid: 449 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 445 + - uid: 450 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 446 + - uid: 451 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 447 + - uid: 452 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 448 + - uid: 453 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 449 + - uid: 454 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 450 + - uid: 455 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 451 + - uid: 456 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 452 + - uid: 457 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 453 + - uid: 458 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 454 + - uid: 459 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 455 + - uid: 460 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 456 + - uid: 461 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 457 + - uid: 462 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 458 + - uid: 463 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 459 + - uid: 464 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 460 + - uid: 465 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 461 + - uid: 466 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 462 + - uid: 467 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 463 + - uid: 468 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 464 + - uid: 469 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 465 + - uid: 470 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 466 + - uid: 471 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 467 + - uid: 472 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 468 + - uid: 473 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 469 + - uid: 474 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 470 + - uid: 475 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 471 + - uid: 476 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 472 + - uid: 477 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 473 + - uid: 478 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 474 + - uid: 479 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 475 + - uid: 480 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 476 + - uid: 481 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 477 + - uid: 482 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 478 + - uid: 483 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 479 + - uid: 484 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 480 + - uid: 485 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 481 + - uid: 486 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 482 + - uid: 487 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 483 + - uid: 488 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 484 + - uid: 489 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 485 + - uid: 490 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 486 + - uid: 491 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 487 + - uid: 492 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 488 + - uid: 493 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 489 + - uid: 494 components: - type: Transform pos: 6.5,-5.5 parent: 1 - - uid: 490 + - uid: 495 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 491 + - uid: 496 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 492 + - uid: 497 components: - type: Transform pos: 6.5,-2.5 parent: 1 - - uid: 493 + - uid: 498 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 494 + - uid: 499 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 495 + - uid: 500 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 496 + - uid: 501 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 497 + - uid: 502 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 498 + - uid: 503 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 499 + - uid: 504 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 500 + - uid: 505 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 501 + - uid: 506 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 502 + - uid: 507 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 503 + - uid: 508 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 504 + - uid: 509 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 505 + - uid: 510 components: - type: Transform pos: -3.5,-14.5 parent: 1 - - uid: 506 + - uid: 511 components: - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 507 + - uid: 512 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 508 + - uid: 513 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 509 + - uid: 514 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 510 + - uid: 515 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 511 + - uid: 516 components: - type: Transform pos: -6.5,-11.5 parent: 1 - - uid: 512 + - uid: 517 components: - type: Transform pos: -7.5,-11.5 parent: 1 - - uid: 513 + - uid: 518 components: - type: Transform pos: -8.5,-11.5 parent: 1 - - uid: 514 + - uid: 519 components: - type: Transform pos: -9.5,-11.5 parent: 1 - - uid: 515 + - uid: 520 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 516 + - uid: 521 components: - type: Transform pos: -8.5,-9.5 parent: 1 - - uid: 517 + - uid: 522 components: - type: Transform pos: -8.5,-13.5 parent: 1 - - uid: 518 + - uid: 523 components: - type: Transform pos: -9.5,-13.5 parent: 1 - - uid: 519 + - uid: 524 components: - type: Transform pos: -10.5,-13.5 parent: 1 - - uid: 520 + - uid: 525 components: - type: Transform pos: -10.5,-14.5 parent: 1 - - uid: 521 + - uid: 526 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 522 + - uid: 527 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 523 + - uid: 528 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 524 + - uid: 529 components: - type: Transform pos: -9.5,-8.5 parent: 1 - - uid: 525 + - uid: 530 components: - type: Transform pos: -9.5,-7.5 parent: 1 - - uid: 526 + - uid: 531 components: - type: Transform pos: -8.5,-7.5 parent: 1 - - uid: 527 + - uid: 532 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 528 + - uid: 533 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 529 + - uid: 534 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 530 + - uid: 535 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 531 + - uid: 536 components: - type: Transform pos: -1.5,-13.5 parent: 1 - - uid: 532 + - uid: 537 components: - type: Transform pos: -2.5,-12.5 parent: 1 - - uid: 533 + - uid: 538 components: - type: Transform pos: -2.5,-11.5 parent: 1 - - uid: 534 + - uid: 539 components: - type: Transform pos: -2.5,-10.5 parent: 1 - - uid: 535 + - uid: 540 components: - type: Transform pos: -2.5,-9.5 parent: 1 - - uid: 536 + - uid: 541 components: - type: Transform pos: -2.5,-8.5 parent: 1 - - uid: 537 + - uid: 542 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 538 + - uid: 543 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 539 + - uid: 544 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 540 + - uid: 545 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 541 + - uid: 546 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 542 + - uid: 547 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 543 + - uid: 548 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 544 + - uid: 549 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 545 + - uid: 550 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 546 + - uid: 551 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 547 + - uid: 552 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 548 + - uid: 553 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 549 + - uid: 554 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 550 + - uid: 555 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 551 + - uid: 556 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 552 + - uid: 557 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 553 + - uid: 558 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 554 + - uid: 559 components: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 555 + - uid: 560 components: - type: Transform pos: 0.5,-7.5 parent: 1 - - uid: 556 + - uid: 561 components: - type: Transform pos: 0.5,-8.5 parent: 1 - - uid: 557 + - uid: 562 components: - type: Transform pos: 0.5,-9.5 parent: 1 - - uid: 558 + - uid: 563 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 559 + - uid: 564 components: - type: Transform pos: -0.5,-9.5 parent: 1 - - uid: 560 + - uid: 565 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 561 + - uid: 566 components: - type: Transform pos: 1.5,-6.5 parent: 1 - - uid: 562 + - uid: 567 components: - type: Transform pos: 2.5,-6.5 parent: 1 - - uid: 563 + - uid: 568 components: - type: Transform pos: 3.5,-6.5 parent: 1 - - uid: 564 + - uid: 569 components: - type: Transform pos: -0.5,-6.5 parent: 1 - - uid: 565 + - uid: 570 components: - type: Transform pos: -1.5,-6.5 parent: 1 - - uid: 566 + - uid: 571 components: - type: Transform pos: -2.5,-6.5 parent: 1 - - uid: 567 + - uid: 572 components: - type: Transform pos: -1.5,-5.5 parent: 1 - - uid: 568 + - uid: 573 components: - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 569 + - uid: 574 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 570 + - uid: 575 components: - type: Transform pos: -1.5,-2.5 parent: 1 - - uid: 571 + - uid: 576 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 572 + - uid: 577 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 573 + - uid: 578 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 574 + - uid: 579 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 575 + - uid: 580 components: - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 576 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 1 - - uid: 577 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 1 - - uid: 578 - components: - - type: Transform - pos: -2.5,-3.5 - parent: 1 - - uid: 579 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 1 - - uid: 580 - components: - - type: Transform - pos: 2.5,-13.5 - parent: 1 - uid: 581 components: - type: Transform - pos: 3.5,-13.5 + pos: 2.5,-5.5 parent: 1 - uid: 582 components: - type: Transform - pos: 4.5,-13.5 + pos: 3.5,-3.5 parent: 1 - uid: 583 components: - type: Transform - pos: 5.5,-13.5 + pos: -2.5,-3.5 parent: 1 - uid: 584 components: - type: Transform - pos: 6.5,-13.5 + pos: 1.5,-13.5 parent: 1 - uid: 585 components: - type: Transform - pos: 7.5,-13.5 + pos: 2.5,-13.5 parent: 1 - uid: 586 components: - type: Transform - pos: 7.5,-12.5 + pos: 3.5,-13.5 parent: 1 - uid: 587 components: - type: Transform - pos: 7.5,-11.5 + pos: 4.5,-13.5 parent: 1 - uid: 588 components: - type: Transform - pos: 7.5,-10.5 + pos: 5.5,-13.5 parent: 1 - uid: 589 components: - type: Transform - pos: 7.5,-9.5 + pos: 6.5,-13.5 parent: 1 - uid: 590 components: - type: Transform - pos: 7.5,-8.5 + pos: 7.5,-13.5 parent: 1 - uid: 591 components: - type: Transform - pos: 5.5,-12.5 + pos: 7.5,-12.5 parent: 1 - uid: 592 components: - type: Transform - pos: 5.5,-11.5 + pos: 7.5,-11.5 parent: 1 - uid: 593 components: - type: Transform - pos: 5.5,-10.5 + pos: 7.5,-10.5 parent: 1 - uid: 594 components: - type: Transform - pos: 5.5,-9.5 + pos: 7.5,-9.5 parent: 1 - uid: 595 components: - type: Transform - pos: 5.5,-8.5 + pos: 7.5,-8.5 parent: 1 - uid: 596 components: - type: Transform - pos: -11.5,-9.5 + pos: 5.5,-12.5 parent: 1 - uid: 597 components: - type: Transform - pos: -11.5,-10.5 + pos: 5.5,-11.5 parent: 1 - uid: 598 components: - type: Transform - pos: -11.5,-11.5 + pos: 5.5,-10.5 parent: 1 - uid: 599 components: - type: Transform - pos: -11.5,-12.5 + pos: 5.5,-9.5 parent: 1 - uid: 600 components: - type: Transform - pos: -11.5,-13.5 + pos: 5.5,-8.5 parent: 1 - uid: 601 components: - type: Transform - pos: -11.5,-14.5 + pos: -11.5,-9.5 parent: 1 - uid: 602 components: - type: Transform - pos: -4.5,-14.5 + pos: -11.5,-10.5 parent: 1 - uid: 603 components: - type: Transform - pos: -4.5,-15.5 + pos: -11.5,-11.5 parent: 1 - uid: 604 components: - type: Transform - pos: -4.5,-16.5 + pos: -11.5,-12.5 parent: 1 - uid: 605 components: - type: Transform - pos: -5.5,-15.5 + pos: -11.5,-13.5 parent: 1 - uid: 606 components: - type: Transform - pos: -3.5,-15.5 + pos: -11.5,-14.5 parent: 1 - uid: 607 components: - type: Transform - pos: -2.5,-15.5 + pos: -4.5,-14.5 parent: 1 - uid: 608 components: - type: Transform - pos: -1.5,-15.5 + pos: -4.5,-15.5 parent: 1 - uid: 609 components: - type: Transform - pos: -1.5,-16.5 + pos: -4.5,-16.5 parent: 1 - uid: 610 components: - type: Transform - pos: -4.5,-17.5 + pos: -5.5,-15.5 parent: 1 - uid: 611 components: - type: Transform - pos: -4.5,-18.5 + pos: -3.5,-15.5 parent: 1 - uid: 612 components: - type: Transform - pos: -5.5,-18.5 + pos: -2.5,-15.5 parent: 1 - uid: 613 components: - type: Transform - pos: -6.5,-18.5 + pos: -1.5,-15.5 parent: 1 - uid: 614 components: - type: Transform - pos: -3.5,-18.5 + pos: -1.5,-16.5 parent: 1 - uid: 615 components: - type: Transform - pos: -7.5,-18.5 + pos: -4.5,-17.5 parent: 1 - uid: 616 components: - type: Transform - pos: -7.5,-19.5 + pos: -4.5,-18.5 parent: 1 - uid: 617 components: - type: Transform - pos: 0.5,-13.5 + pos: -5.5,-18.5 parent: 1 - uid: 618 components: - type: Transform - pos: 1.5,-13.5 + pos: -6.5,-18.5 parent: 1 - uid: 619 components: - type: Transform - pos: 2.5,-13.5 + pos: -3.5,-18.5 parent: 1 - uid: 620 components: - type: Transform - pos: 3.5,-13.5 + pos: -7.5,-18.5 parent: 1 - uid: 621 components: - type: Transform - pos: 0.5,-14.5 + pos: -7.5,-19.5 parent: 1 - uid: 622 components: - type: Transform - pos: 0.5,-15.5 + pos: 0.5,-13.5 parent: 1 - uid: 623 components: - type: Transform - pos: 0.5,-16.5 + pos: 1.5,-13.5 parent: 1 - uid: 624 components: - type: Transform - pos: 0.5,-17.5 + pos: 2.5,-13.5 parent: 1 - uid: 625 components: - type: Transform - pos: 0.5,-18.5 + pos: 3.5,-13.5 parent: 1 - uid: 626 components: - type: Transform - pos: 0.5,-19.5 + pos: 0.5,-14.5 parent: 1 - uid: 627 components: - type: Transform - pos: 0.5,-20.5 + pos: 0.5,-15.5 parent: 1 - uid: 628 components: - type: Transform - pos: -0.5,-19.5 + pos: 0.5,-16.5 parent: 1 - uid: 629 components: - type: Transform - pos: -1.5,-19.5 + pos: 0.5,-17.5 parent: 1 - uid: 630 components: - type: Transform - pos: 1.5,-19.5 + pos: 0.5,-18.5 parent: 1 - uid: 631 components: - type: Transform - pos: 2.5,-19.5 + pos: 0.5,-19.5 parent: 1 - uid: 632 components: - type: Transform - pos: 3.5,-19.5 + pos: 0.5,-20.5 parent: 1 - uid: 633 components: - type: Transform - pos: 3.5,-18.5 + pos: -0.5,-19.5 parent: 1 - uid: 634 components: - type: Transform - pos: 4.5,-18.5 + pos: -1.5,-19.5 parent: 1 - uid: 635 components: - type: Transform - pos: 5.5,-18.5 + pos: 1.5,-19.5 parent: 1 - uid: 636 components: - type: Transform - pos: 6.5,-18.5 + pos: 2.5,-19.5 parent: 1 - uid: 637 components: - type: Transform - pos: 7.5,-18.5 + pos: 3.5,-19.5 parent: 1 - uid: 638 components: - type: Transform - pos: 8.5,-18.5 + pos: 3.5,-18.5 parent: 1 - uid: 639 components: - type: Transform - pos: 8.5,-19.5 + pos: 4.5,-18.5 parent: 1 - uid: 640 components: - type: Transform - pos: 8.5,-11.5 + pos: 5.5,-18.5 parent: 1 - uid: 641 components: - type: Transform - pos: 9.5,-11.5 + pos: 6.5,-18.5 parent: 1 - uid: 642 components: - type: Transform - pos: 10.5,-11.5 + pos: 7.5,-18.5 parent: 1 - uid: 643 components: - type: Transform - pos: 9.5,-10.5 + pos: 8.5,-18.5 parent: 1 - uid: 644 components: - type: Transform - pos: 9.5,-9.5 + pos: 8.5,-19.5 parent: 1 - uid: 645 components: - type: Transform - pos: 9.5,-13.5 + pos: 8.5,-11.5 parent: 1 - uid: 646 components: - type: Transform - pos: 9.5,-8.5 + pos: 9.5,-11.5 parent: 1 - uid: 647 components: - type: Transform - pos: 10.5,-8.5 + pos: 10.5,-11.5 parent: 1 - uid: 648 components: - type: Transform - pos: 10.5,-7.5 + pos: 9.5,-10.5 parent: 1 - uid: 649 components: - type: Transform - pos: 9.5,-7.5 + pos: 9.5,-9.5 parent: 1 - uid: 650 components: - type: Transform - pos: 9.5,-12.5 + pos: 9.5,-13.5 parent: 1 - uid: 651 components: - type: Transform - pos: 9.5,-13.5 + pos: 9.5,-8.5 parent: 1 - uid: 652 components: - type: Transform - pos: 10.5,-13.5 + pos: 10.5,-8.5 parent: 1 - uid: 653 components: - type: Transform - pos: 11.5,-13.5 + pos: 10.5,-7.5 parent: 1 - uid: 654 components: - type: Transform - pos: 12.5,-13.5 + pos: 9.5,-7.5 parent: 1 - uid: 655 components: - type: Transform - pos: 12.5,-12.5 + pos: 9.5,-12.5 parent: 1 - uid: 656 components: - type: Transform - pos: 12.5,-11.5 + pos: 9.5,-13.5 parent: 1 - uid: 657 components: - type: Transform - pos: 12.5,-10.5 + pos: 10.5,-13.5 parent: 1 - uid: 658 components: - type: Transform - pos: 12.5,-14.5 + pos: 11.5,-13.5 parent: 1 - uid: 659 components: @@ -8802,1413 +9605,1503 @@ entities: - uid: 660 components: - type: Transform - pos: 11.5,-14.5 + pos: 12.5,-12.5 parent: 1 - uid: 661 components: - type: Transform - pos: -3.5,7.5 + pos: 12.5,-11.5 parent: 1 - uid: 662 components: - type: Transform - pos: -5.5,7.5 + pos: 12.5,-10.5 parent: 1 - uid: 663 components: - type: Transform - pos: -6.5,7.5 + pos: 12.5,-14.5 parent: 1 - uid: 664 components: - type: Transform - pos: -7.5,7.5 + pos: 12.5,-13.5 parent: 1 - uid: 665 components: - type: Transform - pos: -4.5,7.5 + pos: 11.5,-14.5 parent: 1 - uid: 666 components: - type: Transform - pos: -5.5,8.5 + pos: -3.5,7.5 parent: 1 - uid: 667 components: - type: Transform - pos: -5.5,9.5 + pos: -5.5,7.5 parent: 1 - uid: 668 components: - type: Transform - pos: -5.5,6.5 + pos: -6.5,7.5 parent: 1 - uid: 669 components: - type: Transform - pos: -5.5,5.5 + pos: -7.5,7.5 parent: 1 - uid: 670 components: - type: Transform - pos: -6.5,5.5 + pos: -4.5,7.5 parent: 1 - uid: 671 components: - type: Transform - pos: -6.5,4.5 + pos: -5.5,8.5 parent: 1 - uid: 672 components: - type: Transform - pos: -7.5,4.5 + pos: -5.5,9.5 parent: 1 -- proto: CableHV - entities: - uid: 673 components: - type: Transform - pos: -2.5,3.5 + pos: -5.5,6.5 parent: 1 - uid: 674 components: - type: Transform - pos: -5.5,2.5 + pos: -5.5,5.5 parent: 1 - uid: 675 components: - type: Transform - pos: -4.5,3.5 + pos: -6.5,5.5 parent: 1 - uid: 676 components: - type: Transform - pos: -6.5,5.5 + pos: -6.5,4.5 parent: 1 - uid: 677 components: - type: Transform - pos: -6.5,6.5 + pos: -7.5,4.5 parent: 1 - uid: 678 components: - type: Transform - pos: -6.5,7.5 + pos: 3.5,-14.5 parent: 1 - uid: 679 components: - type: Transform - pos: -7.5,4.5 + pos: 3.5,-13.5 parent: 1 - uid: 680 components: - type: Transform - pos: -4.5,6.5 + pos: 3.5,-14.5 parent: 1 - uid: 681 components: - type: Transform - pos: -5.5,-5.5 + pos: 4.5,-13.5 parent: 1 - uid: 682 components: - type: Transform - pos: -5.5,-0.5 + pos: 2.5,-13.5 parent: 1 - uid: 683 components: - type: Transform - pos: -5.5,-3.5 + pos: 2.5,-13.5 parent: 1 - uid: 684 components: - type: Transform - pos: -5.5,-1.5 + pos: 1.5,-13.5 parent: 1 - uid: 685 components: - type: Transform - pos: -6.5,4.5 + pos: 3.5,-14.5 parent: 1 - uid: 686 components: - type: Transform - pos: -2.5,6.5 + pos: 2.5,-14.5 parent: 1 - uid: 687 components: - type: Transform - pos: -3.5,6.5 + pos: 4.5,-14.5 parent: 1 +- proto: CableHV + entities: - uid: 688 components: - type: Transform - pos: -2.5,5.5 + pos: -2.5,3.5 parent: 1 - uid: 689 components: - type: Transform - pos: -4.5,7.5 + pos: -5.5,2.5 parent: 1 - uid: 690 components: - type: Transform - pos: -5.5,7.5 + pos: -4.5,3.5 parent: 1 - uid: 691 components: - type: Transform - pos: -2.5,4.5 + pos: -6.5,5.5 parent: 1 - uid: 692 components: - type: Transform - pos: 3.5,-12.5 + pos: -6.5,6.5 parent: 1 - uid: 693 components: - type: Transform - pos: 5.5,-12.5 + pos: -6.5,7.5 parent: 1 - uid: 694 components: - type: Transform - pos: 5.5,-13.5 + pos: -7.5,4.5 parent: 1 - uid: 695 components: - type: Transform - pos: 4.5,-12.5 + pos: -4.5,6.5 parent: 1 - uid: 696 components: - type: Transform - pos: 5.5,-14.5 + pos: -5.5,-5.5 parent: 1 - uid: 697 components: - type: Transform - pos: 5.5,-15.5 + pos: -5.5,-0.5 parent: 1 - uid: 698 components: - type: Transform - pos: 4.5,-15.5 + pos: -5.5,-3.5 parent: 1 - uid: 699 components: - type: Transform - pos: 5.5,-16.5 + pos: -5.5,-1.5 parent: 1 - uid: 700 components: - type: Transform - pos: 3.5,-15.5 + pos: -6.5,4.5 parent: 1 - uid: 701 components: - type: Transform - pos: 2.5,-15.5 + pos: -2.5,6.5 parent: 1 - uid: 702 components: - type: Transform - pos: 1.5,-15.5 + pos: -3.5,6.5 parent: 1 - uid: 703 components: - type: Transform - pos: 0.5,-15.5 + pos: -2.5,5.5 parent: 1 - uid: 704 components: - type: Transform - pos: 0.5,-16.5 + pos: -4.5,7.5 parent: 1 - uid: 705 components: - type: Transform - pos: 6.5,-15.5 + pos: -5.5,7.5 parent: 1 - uid: 706 components: - type: Transform - pos: 7.5,-15.5 + pos: -2.5,4.5 parent: 1 - uid: 707 components: - type: Transform - pos: 7.5,-16.5 + pos: 3.5,-12.5 parent: 1 - uid: 708 components: - type: Transform - pos: 6.5,-13.5 + pos: 5.5,-12.5 parent: 1 - uid: 709 components: - type: Transform - pos: 7.5,-13.5 + pos: 5.5,-13.5 parent: 1 - uid: 710 components: - type: Transform - pos: 7.5,-12.5 + pos: 4.5,-12.5 parent: 1 - uid: 711 components: - type: Transform - pos: 7.5,-11.5 + pos: 5.5,-14.5 parent: 1 - uid: 712 components: - type: Transform - pos: 8.5,-11.5 + pos: 5.5,-15.5 parent: 1 - uid: 713 components: - type: Transform - pos: 9.5,-11.5 + pos: 4.5,-15.5 parent: 1 - uid: 714 components: - type: Transform - pos: 10.5,-11.5 + pos: 5.5,-16.5 parent: 1 - uid: 715 components: - type: Transform - pos: 10.5,-10.5 + pos: 3.5,-15.5 parent: 1 - uid: 716 components: - type: Transform - pos: 10.5,-12.5 + pos: 2.5,-15.5 parent: 1 - uid: 717 components: - type: Transform - pos: 9.5,-10.5 + pos: 1.5,-15.5 parent: 1 - uid: 718 components: - type: Transform - pos: 9.5,-12.5 + pos: 0.5,-15.5 parent: 1 - uid: 719 components: - type: Transform - pos: -3.5,3.5 + pos: 0.5,-16.5 parent: 1 - uid: 720 components: - type: Transform - pos: -5.5,1.5 + pos: 6.5,-15.5 parent: 1 - uid: 721 components: - type: Transform - pos: -4.5,2.5 + pos: 7.5,-15.5 parent: 1 - uid: 722 components: - type: Transform - pos: -4.5,2.5 + pos: 7.5,-16.5 parent: 1 - uid: 723 components: - type: Transform - pos: -5.5,0.5 + pos: 6.5,-13.5 parent: 1 - uid: 724 components: - type: Transform - pos: -5.5,-2.5 + pos: 7.5,-13.5 parent: 1 - uid: 725 components: - type: Transform - pos: -5.5,-4.5 + pos: 7.5,-12.5 parent: 1 - uid: 726 components: - type: Transform - pos: -5.5,-6.5 + pos: 7.5,-11.5 parent: 1 - uid: 727 components: - type: Transform - pos: -5.5,-7.5 + pos: 8.5,-11.5 parent: 1 - uid: 728 components: - type: Transform - pos: -5.5,-8.5 + pos: 9.5,-11.5 parent: 1 - uid: 729 components: - type: Transform - pos: -5.5,-9.5 + pos: 10.5,-11.5 parent: 1 - uid: 730 components: - type: Transform - pos: -5.5,-10.5 + pos: 10.5,-10.5 parent: 1 - uid: 731 components: - type: Transform - pos: -5.5,-11.5 + pos: 10.5,-12.5 parent: 1 - uid: 732 components: - type: Transform - pos: -5.5,-12.5 + pos: 9.5,-10.5 parent: 1 - uid: 733 components: - type: Transform - pos: -5.5,-13.5 + pos: 9.5,-12.5 parent: 1 - uid: 734 components: - type: Transform - pos: -4.5,-13.5 + pos: -3.5,3.5 parent: 1 - uid: 735 components: - type: Transform - pos: -2.5,-13.5 + pos: -5.5,1.5 parent: 1 - uid: 736 components: - type: Transform - pos: -1.5,-13.5 + pos: -4.5,2.5 parent: 1 - uid: 737 components: - type: Transform - pos: -0.5,-13.5 + pos: -4.5,2.5 parent: 1 - uid: 738 components: - type: Transform - pos: 0.5,-13.5 + pos: -5.5,0.5 parent: 1 - uid: 739 components: - type: Transform - pos: 1.5,-13.5 + pos: -5.5,-2.5 parent: 1 - uid: 740 components: - type: Transform - pos: 2.5,-13.5 + pos: -5.5,-4.5 parent: 1 - uid: 741 components: - type: Transform - pos: 3.5,-13.5 + pos: -5.5,-6.5 parent: 1 - uid: 742 components: - type: Transform - pos: 4.5,-13.5 + pos: -5.5,-7.5 parent: 1 - uid: 743 components: - type: Transform - pos: -3.5,-13.5 + pos: -5.5,-8.5 parent: 1 - uid: 744 components: - type: Transform - pos: 7.5,-10.5 + pos: -5.5,-9.5 parent: 1 - uid: 745 components: - type: Transform - pos: 7.5,-9.5 + pos: -5.5,-10.5 parent: 1 - uid: 746 components: - type: Transform - pos: 7.5,-8.5 + pos: -5.5,-11.5 parent: 1 - uid: 747 components: - type: Transform - pos: 7.5,-7.5 + pos: -5.5,-12.5 parent: 1 - uid: 748 components: - type: Transform - pos: 7.5,-6.5 + pos: -5.5,-13.5 parent: 1 - uid: 749 components: - type: Transform - pos: 7.5,-5.5 + pos: -4.5,-13.5 parent: 1 - uid: 750 components: - type: Transform - pos: 6.5,-5.5 + pos: -2.5,-13.5 parent: 1 - uid: 751 components: - type: Transform - pos: 6.5,-4.5 + pos: -1.5,-13.5 parent: 1 - uid: 752 components: - type: Transform - pos: 6.5,-3.5 + pos: -0.5,-13.5 parent: 1 - uid: 753 components: - type: Transform - pos: 6.5,-2.5 + pos: 0.5,-13.5 parent: 1 - uid: 754 components: - type: Transform - pos: 6.5,-1.5 + pos: 1.5,-13.5 parent: 1 - uid: 755 components: - type: Transform - pos: 6.5,-0.5 + pos: 2.5,-13.5 parent: 1 - uid: 756 components: - type: Transform - pos: 6.5,0.5 + pos: 3.5,-13.5 parent: 1 - uid: 757 components: - type: Transform - pos: 6.5,1.5 + pos: 4.5,-13.5 parent: 1 - uid: 758 components: - type: Transform - pos: 6.5,2.5 + pos: -3.5,-13.5 parent: 1 - uid: 759 components: - type: Transform - pos: 5.5,2.5 + pos: 7.5,-10.5 parent: 1 - uid: 760 components: - type: Transform - pos: 5.5,3.5 + pos: 7.5,-9.5 parent: 1 - uid: 761 components: - type: Transform - pos: 4.5,3.5 + pos: 7.5,-8.5 parent: 1 - uid: 762 components: - type: Transform - pos: 3.5,3.5 + pos: 7.5,-7.5 parent: 1 - uid: 763 components: - type: Transform - pos: 2.5,3.5 + pos: 7.5,-6.5 parent: 1 - uid: 764 components: - type: Transform - pos: 1.5,3.5 + pos: 7.5,-5.5 parent: 1 - uid: 765 components: - type: Transform - pos: 0.5,3.5 + pos: 6.5,-5.5 parent: 1 - uid: 766 components: - type: Transform - pos: -0.5,3.5 + pos: 6.5,-4.5 parent: 1 - uid: 767 components: - type: Transform - pos: -1.5,3.5 + pos: 6.5,-3.5 parent: 1 - uid: 768 components: - type: Transform - pos: 3.5,4.5 + pos: 6.5,-2.5 parent: 1 - uid: 769 components: - type: Transform - pos: 3.5,5.5 + pos: 6.5,-1.5 parent: 1 - uid: 770 components: - type: Transform - pos: 3.5,6.5 + pos: 6.5,-0.5 parent: 1 - uid: 771 components: - type: Transform - pos: 3.5,7.5 + pos: 6.5,0.5 parent: 1 - uid: 772 components: - type: Transform - pos: 3.5,8.5 + pos: 6.5,1.5 parent: 1 - uid: 773 components: - type: Transform - pos: 3.5,9.5 + pos: 6.5,2.5 parent: 1 - uid: 774 components: - type: Transform - pos: 3.5,10.5 + pos: 5.5,2.5 parent: 1 - uid: 775 components: - type: Transform - pos: 3.5,11.5 + pos: 5.5,3.5 parent: 1 - uid: 776 components: - type: Transform - pos: 3.5,12.5 + pos: 4.5,3.5 parent: 1 - uid: 777 components: - type: Transform - pos: 2.5,12.5 + pos: 3.5,3.5 parent: 1 - uid: 778 components: - type: Transform - pos: 1.5,12.5 + pos: 2.5,3.5 parent: 1 - uid: 779 components: - type: Transform - pos: 0.5,12.5 + pos: 1.5,3.5 parent: 1 - uid: 780 components: - type: Transform - pos: -0.5,12.5 + pos: 0.5,3.5 parent: 1 - uid: 781 components: - type: Transform - pos: -1.5,12.5 + pos: -0.5,3.5 parent: 1 - uid: 782 components: - type: Transform - pos: -2.5,12.5 + pos: -1.5,3.5 parent: 1 - uid: 783 components: - type: Transform - pos: -2.5,11.5 + pos: 3.5,4.5 parent: 1 - uid: 784 components: - type: Transform - pos: -2.5,10.5 + pos: 3.5,5.5 parent: 1 - uid: 785 components: - type: Transform - pos: -2.5,9.5 + pos: 3.5,6.5 parent: 1 - uid: 786 components: - type: Transform - pos: -2.5,8.5 + pos: 3.5,7.5 parent: 1 - uid: 787 components: - type: Transform - pos: -2.5,7.5 + pos: 3.5,8.5 parent: 1 -- proto: CableMV - entities: - uid: 788 components: - type: Transform - pos: 0.5,-16.5 + pos: 3.5,9.5 parent: 1 - uid: 789 components: - type: Transform - pos: 0.5,-15.5 + pos: 3.5,10.5 parent: 1 - uid: 790 components: - type: Transform - pos: 1.5,-15.5 + pos: 3.5,11.5 parent: 1 - uid: 791 components: - type: Transform - pos: 2.5,-15.5 + pos: 3.5,12.5 parent: 1 - uid: 792 components: - type: Transform - pos: 3.5,-15.5 + pos: 2.5,12.5 parent: 1 - uid: 793 components: - type: Transform - pos: 4.5,-15.5 + pos: 1.5,12.5 parent: 1 - uid: 794 components: - type: Transform - pos: 5.5,-15.5 + pos: 0.5,12.5 parent: 1 - uid: 795 components: - type: Transform - pos: 5.5,-14.5 + pos: -0.5,12.5 parent: 1 - uid: 796 components: - type: Transform - pos: 5.5,-13.5 + pos: -1.5,12.5 parent: 1 - uid: 797 components: - type: Transform - pos: 4.5,-13.5 + pos: -2.5,12.5 parent: 1 - uid: 798 components: - type: Transform - pos: 3.5,-13.5 + pos: -2.5,11.5 parent: 1 - uid: 799 components: - type: Transform - pos: 1.5,-13.5 + pos: -2.5,10.5 parent: 1 - uid: 800 components: - type: Transform - pos: 2.5,-13.5 + pos: -2.5,9.5 parent: 1 - uid: 801 components: - type: Transform - pos: 0.5,-14.5 + pos: -2.5,8.5 parent: 1 - uid: 802 components: - type: Transform - pos: 0.5,-13.5 + pos: -2.5,7.5 parent: 1 - uid: 803 components: - type: Transform - pos: -0.5,-13.5 + pos: -5.5,5.5 parent: 1 - uid: 804 components: - type: Transform - pos: -1.5,-13.5 + pos: -4.5,5.5 parent: 1 +- proto: CableMV + entities: - uid: 805 components: - type: Transform - pos: -2.5,-13.5 + pos: 0.5,-16.5 parent: 1 - uid: 806 components: - type: Transform - pos: -3.5,-13.5 + pos: 0.5,-15.5 parent: 1 - uid: 807 components: - type: Transform - pos: -3.5,-14.5 + pos: 1.5,-15.5 parent: 1 - uid: 808 components: - type: Transform - pos: -4.5,-13.5 + pos: 2.5,-15.5 parent: 1 - uid: 809 components: - type: Transform - pos: -5.5,-13.5 + pos: 3.5,-15.5 parent: 1 - uid: 810 components: - type: Transform - pos: -5.5,-12.5 + pos: 4.5,-15.5 parent: 1 - uid: 811 components: - type: Transform - pos: -5.5,-11.5 + pos: 5.5,-15.5 parent: 1 - uid: 812 components: - type: Transform - pos: -5.5,-10.5 + pos: 5.5,-14.5 parent: 1 - uid: 813 components: - type: Transform - pos: -5.5,-9.5 + pos: 5.5,-13.5 parent: 1 - uid: 814 components: - type: Transform - pos: -5.5,-8.5 + pos: 4.5,-13.5 parent: 1 - uid: 815 components: - type: Transform - pos: -5.5,-7.5 + pos: 3.5,-13.5 parent: 1 - uid: 816 components: - type: Transform - pos: -5.5,-6.5 + pos: 1.5,-13.5 parent: 1 - uid: 817 components: - type: Transform - pos: -5.5,-5.5 + pos: 2.5,-13.5 parent: 1 - uid: 818 components: - type: Transform - pos: -5.5,-4.5 + pos: 0.5,-14.5 parent: 1 - uid: 819 components: - type: Transform - pos: -5.5,-3.5 + pos: 0.5,-13.5 parent: 1 - uid: 820 components: - type: Transform - pos: -5.5,-2.5 + pos: -0.5,-13.5 parent: 1 - uid: 821 components: - type: Transform - pos: -5.5,-1.5 + pos: -1.5,-13.5 parent: 1 - uid: 822 components: - type: Transform - pos: -5.5,-0.5 + pos: -2.5,-13.5 parent: 1 - uid: 823 components: - type: Transform - pos: -5.5,0.5 + pos: -3.5,-13.5 parent: 1 - uid: 824 components: - type: Transform - pos: -5.5,1.5 + pos: -3.5,-14.5 parent: 1 - uid: 825 components: - type: Transform - pos: -5.5,2.5 + pos: -4.5,-13.5 parent: 1 - uid: 826 components: - type: Transform - pos: -4.5,2.5 + pos: -5.5,-13.5 parent: 1 - uid: 827 components: - type: Transform - pos: -4.5,3.5 + pos: -5.5,-12.5 parent: 1 - uid: 828 components: - type: Transform - pos: -3.5,3.5 + pos: -5.5,-11.5 parent: 1 - uid: 829 components: - type: Transform - pos: -2.5,3.5 + pos: -5.5,-10.5 parent: 1 - uid: 830 components: - type: Transform - pos: -1.5,3.5 + pos: -5.5,-9.5 parent: 1 - uid: 831 components: - type: Transform - pos: -0.5,3.5 + pos: -5.5,-8.5 parent: 1 - uid: 832 components: - type: Transform - pos: 0.5,3.5 + pos: -5.5,-7.5 parent: 1 - uid: 833 components: - type: Transform - pos: 1.5,3.5 + pos: -5.5,-6.5 parent: 1 - uid: 834 components: - type: Transform - pos: 2.5,3.5 + pos: -5.5,-5.5 parent: 1 - uid: 835 components: - type: Transform - pos: 3.5,3.5 + pos: -5.5,-4.5 parent: 1 - uid: 836 components: - type: Transform - pos: 4.5,3.5 + pos: -5.5,-3.5 parent: 1 - uid: 837 components: - type: Transform - pos: 5.5,3.5 + pos: -5.5,-2.5 parent: 1 - uid: 838 components: - type: Transform - pos: 5.5,2.5 + pos: -5.5,-1.5 parent: 1 - uid: 839 components: - type: Transform - pos: 6.5,2.5 + pos: -5.5,-0.5 parent: 1 - uid: 840 components: - type: Transform - pos: 6.5,1.5 + pos: -5.5,0.5 parent: 1 - uid: 841 components: - type: Transform - pos: 6.5,0.5 + pos: -5.5,1.5 parent: 1 - uid: 842 components: - type: Transform - pos: 6.5,-0.5 + pos: -5.5,2.5 parent: 1 - uid: 843 components: - type: Transform - pos: 6.5,-1.5 + pos: -4.5,2.5 parent: 1 - uid: 844 components: - type: Transform - pos: 6.5,-2.5 + pos: -4.5,3.5 parent: 1 - uid: 845 components: - type: Transform - pos: 6.5,-3.5 + pos: -3.5,3.5 parent: 1 - uid: 846 components: - type: Transform - pos: 6.5,-4.5 + pos: -2.5,3.5 parent: 1 - uid: 847 components: - type: Transform - pos: 6.5,-5.5 + pos: -1.5,3.5 parent: 1 - uid: 848 components: - type: Transform - pos: 6.5,-6.5 + pos: -0.5,3.5 parent: 1 - uid: 849 components: - type: Transform - pos: 7.5,-6.5 + pos: 0.5,3.5 parent: 1 - uid: 850 components: - type: Transform - pos: 7.5,-7.5 + pos: 1.5,3.5 parent: 1 - uid: 851 components: - type: Transform - pos: 7.5,-8.5 + pos: 2.5,3.5 parent: 1 - uid: 852 components: - type: Transform - pos: 7.5,-9.5 + pos: 3.5,3.5 parent: 1 - uid: 853 components: - type: Transform - pos: 7.5,-10.5 + pos: 4.5,3.5 parent: 1 - uid: 854 components: - type: Transform - pos: 7.5,-11.5 + pos: 5.5,3.5 parent: 1 - uid: 855 components: - type: Transform - pos: 7.5,-12.5 + pos: 5.5,2.5 parent: 1 - uid: 856 components: - type: Transform - pos: 7.5,-13.5 + pos: 6.5,2.5 parent: 1 - uid: 857 components: - type: Transform - pos: 6.5,-13.5 + pos: 6.5,1.5 parent: 1 - uid: 858 components: - type: Transform - pos: -4.5,-3.5 + pos: 6.5,0.5 parent: 1 - uid: 859 components: - type: Transform - pos: -3.5,-3.5 + pos: 6.5,-0.5 parent: 1 - uid: 860 components: - type: Transform - pos: -2.5,-3.5 + pos: 6.5,-1.5 parent: 1 - uid: 861 components: - type: Transform - pos: -1.5,-3.5 + pos: 6.5,-2.5 parent: 1 - uid: 862 components: - type: Transform - pos: -0.5,-3.5 + pos: 6.5,-3.5 parent: 1 - uid: 863 components: - type: Transform - pos: 0.5,-3.5 + pos: 6.5,-4.5 parent: 1 - uid: 864 components: - type: Transform - pos: 1.5,-3.5 + pos: 6.5,-5.5 parent: 1 - uid: 865 components: - type: Transform - pos: 2.5,-3.5 + pos: 6.5,-6.5 parent: 1 - uid: 866 components: - type: Transform - pos: 3.5,-3.5 + pos: 7.5,-6.5 parent: 1 - uid: 867 components: - type: Transform - pos: 4.5,-3.5 + pos: 7.5,-7.5 parent: 1 - uid: 868 components: - type: Transform - pos: 5.5,-3.5 + pos: 7.5,-8.5 parent: 1 - uid: 869 components: - type: Transform - pos: 0.5,-2.5 + pos: 7.5,-9.5 parent: 1 - uid: 870 components: - type: Transform - pos: 0.5,-1.5 + pos: 7.5,-10.5 parent: 1 - uid: 871 components: - type: Transform - pos: 0.5,-0.5 + pos: 7.5,-11.5 parent: 1 - uid: 872 components: - type: Transform - pos: -0.5,-0.5 + pos: 7.5,-12.5 parent: 1 - uid: 873 components: - type: Transform - pos: -1.5,-0.5 + pos: 7.5,-13.5 parent: 1 - uid: 874 components: - type: Transform - pos: -2.5,-0.5 + pos: 6.5,-13.5 parent: 1 - uid: 875 components: - type: Transform - pos: 0.5,4.5 + pos: -4.5,-3.5 parent: 1 - uid: 876 components: - type: Transform - pos: -2.5,4.5 + pos: -3.5,-3.5 parent: 1 - uid: 877 components: - type: Transform - pos: -2.5,5.5 + pos: -2.5,-3.5 parent: 1 - uid: 878 components: - type: Transform - pos: -2.5,6.5 + pos: -1.5,-3.5 parent: 1 - uid: 879 components: - type: Transform - pos: -3.5,6.5 + pos: -0.5,-3.5 parent: 1 - uid: 880 components: - type: Transform - pos: -4.5,6.5 + pos: 0.5,-3.5 parent: 1 - uid: 881 components: - type: Transform - pos: -2.5,7.5 + pos: 1.5,-3.5 parent: 1 - uid: 882 components: - type: Transform - pos: -2.5,8.5 + pos: 2.5,-3.5 parent: 1 - uid: 883 components: - type: Transform - pos: -2.5,9.5 + pos: 3.5,-3.5 parent: 1 - uid: 884 components: - type: Transform - pos: -2.5,10.5 + pos: 4.5,-3.5 parent: 1 - uid: 885 components: - type: Transform - pos: -2.5,11.5 + pos: 5.5,-3.5 parent: 1 - uid: 886 components: - type: Transform - pos: -2.5,12.5 + pos: 0.5,-2.5 parent: 1 - uid: 887 components: - type: Transform - pos: -1.5,12.5 + pos: 0.5,-1.5 parent: 1 - uid: 888 components: - type: Transform - pos: -0.5,12.5 + pos: 0.5,-0.5 parent: 1 - uid: 889 components: - type: Transform - pos: 0.5,12.5 + pos: -0.5,-0.5 parent: 1 - uid: 890 components: - type: Transform - pos: 1.5,12.5 + pos: -1.5,-0.5 parent: 1 - uid: 891 components: - type: Transform - pos: 2.5,12.5 + pos: -2.5,-0.5 parent: 1 - uid: 892 components: - type: Transform - pos: 3.5,12.5 + pos: 0.5,4.5 parent: 1 - uid: 893 components: - type: Transform - pos: 3.5,11.5 + pos: -2.5,4.5 parent: 1 - uid: 894 components: - type: Transform - pos: 3.5,10.5 + pos: -2.5,5.5 parent: 1 - uid: 895 components: - type: Transform - pos: 3.5,9.5 + pos: -2.5,6.5 parent: 1 - uid: 896 components: - type: Transform - pos: 3.5,8.5 + pos: -3.5,6.5 parent: 1 - uid: 897 components: - type: Transform - pos: 3.5,7.5 + pos: -4.5,6.5 parent: 1 - uid: 898 components: - type: Transform - pos: 3.5,6.5 + pos: -2.5,7.5 parent: 1 - uid: 899 components: - type: Transform - pos: 3.5,5.5 + pos: -2.5,8.5 parent: 1 - uid: 900 components: - type: Transform - pos: 3.5,4.5 + pos: -2.5,9.5 parent: 1 - uid: 901 components: - type: Transform - pos: 5.5,6.5 + pos: -2.5,10.5 parent: 1 - uid: 902 components: - type: Transform - pos: 6.5,6.5 + pos: -2.5,11.5 parent: 1 - uid: 903 components: - type: Transform - pos: 7.5,6.5 + pos: -2.5,12.5 parent: 1 - uid: 904 components: - type: Transform - pos: 8.5,6.5 + pos: -1.5,12.5 parent: 1 - uid: 905 components: - type: Transform - pos: 4.5,6.5 + pos: -0.5,12.5 parent: 1 - uid: 906 components: - type: Transform - pos: 0.5,13.5 + pos: 0.5,12.5 parent: 1 - uid: 907 components: - type: Transform - pos: 0.5,14.5 + pos: 1.5,12.5 parent: 1 - uid: 908 components: - type: Transform - pos: 0.5,15.5 + pos: 2.5,12.5 parent: 1 - uid: 909 components: - type: Transform - pos: 0.5,16.5 + pos: 3.5,12.5 parent: 1 - uid: 910 components: - type: Transform - pos: 0.5,17.5 + pos: 3.5,11.5 parent: 1 - uid: 911 components: - type: Transform - pos: 0.5,18.5 + pos: 3.5,10.5 parent: 1 - uid: 912 components: - type: Transform - pos: 0.5,19.5 + pos: 3.5,9.5 parent: 1 - uid: 913 components: - type: Transform - pos: 0.5,20.5 + pos: 3.5,8.5 parent: 1 - uid: 914 components: - type: Transform - pos: -0.5,19.5 + pos: 3.5,7.5 parent: 1 - uid: 915 components: - type: Transform - pos: 1.5,20.5 + pos: 3.5,6.5 parent: 1 - uid: 916 components: - type: Transform - pos: 2.5,20.5 + pos: 3.5,5.5 parent: 1 - uid: 917 components: - type: Transform - pos: 1.5,21.5 + pos: 3.5,4.5 parent: 1 - uid: 918 components: - type: Transform - pos: 1.5,22.5 + pos: 5.5,6.5 parent: 1 - uid: 919 components: - type: Transform - pos: 1.5,23.5 + pos: 6.5,6.5 parent: 1 - uid: 920 components: - type: Transform - pos: 1.5,24.5 + pos: 7.5,6.5 parent: 1 - uid: 921 components: - type: Transform - pos: 1.5,25.5 + pos: 8.5,6.5 parent: 1 - uid: 922 components: - type: Transform - pos: 1.5,26.5 + pos: 4.5,6.5 parent: 1 - uid: 923 components: - type: Transform - pos: 1.5,27.5 + pos: 0.5,13.5 parent: 1 - uid: 924 components: - type: Transform - pos: 1.5,28.5 + pos: 0.5,14.5 parent: 1 - uid: 925 components: - type: Transform - pos: 1.5,29.5 + pos: 0.5,15.5 parent: 1 - uid: 926 components: - type: Transform - pos: 1.5,30.5 + pos: 0.5,16.5 parent: 1 - uid: 927 components: - type: Transform - pos: 1.5,31.5 + pos: 0.5,17.5 parent: 1 - uid: 928 components: - type: Transform - pos: 1.5,32.5 + pos: 0.5,18.5 parent: 1 - uid: 929 components: - type: Transform - pos: 2.5,32.5 + pos: 0.5,19.5 parent: 1 - uid: 930 components: - type: Transform - pos: 3.5,32.5 + pos: 0.5,20.5 parent: 1 - uid: 931 components: - type: Transform - pos: 3.5,33.5 + pos: -0.5,19.5 parent: 1 - uid: 932 components: - type: Transform - pos: 0.5,0.5 + pos: 1.5,20.5 parent: 1 - uid: 933 components: - type: Transform - pos: 0.5,1.5 + pos: 2.5,20.5 parent: 1 - uid: 934 components: - type: Transform - pos: 0.5,2.5 + pos: 1.5,21.5 parent: 1 - uid: 935 components: - type: Transform - pos: -3.5,7.5 + pos: 1.5,22.5 parent: 1 -- proto: CartridgeRailHighExplosive - entities: - - uid: 29 + - uid: 936 components: - type: Transform - parent: 28 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - uid: 30 + pos: 1.5,23.5 + parent: 1 + - uid: 937 components: - type: Transform - parent: 28 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - uid: 31 + pos: 1.5,24.5 + parent: 1 + - uid: 938 components: - type: Transform - parent: 28 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False + pos: 1.5,25.5 + parent: 1 + - uid: 939 + components: + - type: Transform + pos: 1.5,26.5 + parent: 1 + - uid: 940 + components: + - type: Transform + pos: 1.5,27.5 + parent: 1 + - uid: 941 + components: + - type: Transform + pos: 1.5,28.5 + parent: 1 + - uid: 942 + components: + - type: Transform + pos: 1.5,29.5 + parent: 1 + - uid: 943 + components: + - type: Transform + pos: 1.5,30.5 + parent: 1 + - uid: 944 + components: + - type: Transform + pos: 1.5,31.5 + parent: 1 + - uid: 945 + components: + - type: Transform + pos: 1.5,32.5 + parent: 1 + - uid: 946 + components: + - type: Transform + pos: 2.5,32.5 + parent: 1 + - uid: 947 + components: + - type: Transform + pos: 3.5,32.5 + parent: 1 + - uid: 948 + components: + - type: Transform + pos: 3.5,33.5 + parent: 1 + - uid: 949 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 950 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 951 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 952 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 953 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 +- proto: CartridgeRailHighExplosive + entities: + - uid: 29 + components: + - type: Transform + parent: 28 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - uid: 30 + components: + - type: Transform + parent: 28 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - uid: 31 + components: + - type: Transform + parent: 28 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False - uid: 32 components: - type: Transform @@ -10225,585 +11118,657 @@ entities: angularDamping: 0 linearDamping: 0 canCollide: False - - uid: 936 + - uid: 954 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.9289885,30.44183 parent: 1 - - uid: 937 + - uid: 955 components: - type: Transform pos: 2.1747465,30.236162 parent: 1 - - uid: 938 + - uid: 956 components: - type: Transform pos: 2.2158842,30.428118 parent: 1 - - uid: 939 + - uid: 957 components: - type: Transform pos: 2.1747465,30.866877 parent: 1 - - uid: 940 + - uid: 958 components: - type: Transform pos: 2.2021704,30.688631 parent: 1 - proto: Catwalk entities: - - uid: 941 + - uid: 959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,22.5 + parent: 1 + - uid: 960 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 942 + - uid: 961 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 943 + - uid: 962 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-2.5 parent: 1 - - uid: 944 + - uid: 963 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-1.5 parent: 1 - - uid: 945 + - uid: 964 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 946 + - uid: 965 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 1 - - uid: 947 + - uid: 966 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 1 - - uid: 948 + - uid: 967 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 1 - - uid: 949 + - uid: 968 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-1.5 parent: 1 - - uid: 950 + - uid: 969 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 951 + - uid: 970 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-2.5 parent: 1 - - uid: 952 + - uid: 971 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,0.5 parent: 1 - - uid: 953 + - uid: 972 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-1.5 parent: 1 - - uid: 954 + - uid: 973 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,17.5 parent: 1 - - uid: 955 + - uid: 974 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,19.5 parent: 1 - - uid: 956 + - uid: 975 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,17.5 parent: 1 - - uid: 957 + - uid: 976 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,19.5 parent: 1 - - uid: 958 + - uid: 977 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,1.5 parent: 1 - - uid: 959 + - uid: 978 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 1 - - uid: 960 + - uid: 979 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 1 - - uid: 961 + - uid: 980 components: - type: Transform pos: -0.5,34.5 parent: 1 - - uid: 962 + - uid: 981 components: - type: Transform pos: -5.5,20.5 parent: 1 - - uid: 963 + - uid: 982 components: - type: Transform pos: -5.5,19.5 parent: 1 - - uid: 964 + - uid: 983 components: - type: Transform pos: -5.5,18.5 parent: 1 - - uid: 965 + - uid: 984 components: - type: Transform pos: -5.5,17.5 parent: 1 - - uid: 966 + - uid: 985 components: - type: Transform pos: -5.5,16.5 parent: 1 - - uid: 967 + - uid: 986 components: - type: Transform pos: 6.5,16.5 parent: 1 - - uid: 968 + - uid: 987 components: - type: Transform pos: 6.5,17.5 parent: 1 - - uid: 969 + - uid: 988 components: - type: Transform pos: 6.5,18.5 parent: 1 - - uid: 970 + - uid: 989 components: - type: Transform pos: 6.5,19.5 parent: 1 - - uid: 971 + - uid: 990 components: - type: Transform pos: 6.5,20.5 parent: 1 - - uid: 972 + - uid: 991 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 1 - - uid: 973 + - uid: 992 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - - uid: 974 + - uid: 993 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,16.5 parent: 1 - - uid: 975 + - uid: 994 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,14.5 parent: 1 - - uid: 976 + - uid: 995 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,15.5 parent: 1 - - uid: 977 + - uid: 996 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,18.5 parent: 1 - - uid: 978 + - uid: 997 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,17.5 parent: 1 - - uid: 979 + - uid: 998 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,12.5 parent: 1 - - uid: 980 + - uid: 999 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 - - uid: 981 + - uid: 1000 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,12.5 parent: 1 - - uid: 982 + - uid: 1001 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,12.5 parent: 1 - - uid: 983 + - uid: 1002 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,11.5 parent: 1 - - uid: 984 + - uid: 1003 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,10.5 parent: 1 - - uid: 985 + - uid: 1004 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,9.5 parent: 1 - - uid: 986 + - uid: 1005 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,8.5 parent: 1 - - uid: 987 + - uid: 1006 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,7.5 parent: 1 - - uid: 988 + - uid: 1007 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,6.5 parent: 1 - - uid: 989 + - uid: 1008 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 1 - - uid: 990 + - uid: 1009 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 1 - - uid: 991 + - uid: 1010 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 1 - - uid: 992 + - uid: 1011 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,3.5 parent: 1 - - uid: 993 + - uid: 1012 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 1 - - uid: 994 + - uid: 1013 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,3.5 parent: 1 - - uid: 995 + - uid: 1014 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,3.5 parent: 1 - - uid: 996 + - uid: 1015 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,3.5 parent: 1 - - uid: 997 + - uid: 1016 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 1 - - uid: 998 + - uid: 1017 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 - - uid: 999 + - uid: 1018 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 1 - - uid: 1000 + - uid: 1019 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 1001 + - uid: 1020 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,7.5 parent: 1 - - uid: 1002 + - uid: 1021 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,8.5 parent: 1 - - uid: 1003 + - uid: 1022 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,9.5 parent: 1 - - uid: 1004 + - uid: 1023 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 1 - - uid: 1005 + - uid: 1024 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 1 - - uid: 1006 + - uid: 1025 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,12.5 parent: 1 - - uid: 1007 + - uid: 1026 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,12.5 parent: 1 - - uid: 1008 + - uid: 1027 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 1 - - uid: 1009 + - uid: 1028 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-16.5 parent: 1 - - uid: 1010 + - uid: 1029 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-15.5 parent: 1 - - uid: 1011 + - uid: 1030 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-13.5 parent: 1 - - uid: 1012 + - uid: 1031 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-13.5 parent: 1 - - uid: 1013 + - uid: 1032 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-13.5 parent: 1 - - uid: 1014 + - uid: 1033 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-13.5 parent: 1 - - uid: 1015 + - uid: 1034 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-13.5 parent: 1 - - uid: 1016 + - uid: 1035 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-13.5 parent: 1 - - uid: 1017 + - uid: 1036 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-12.5 parent: 1 - - uid: 1018 + - uid: 1037 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-11.5 parent: 1 - - uid: 1019 + - uid: 1038 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-10.5 parent: 1 - - uid: 1020 + - uid: 1039 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-9.5 parent: 1 - - uid: 1021 + - uid: 1040 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-8.5 parent: 1 - - uid: 1022 + - uid: 1041 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,34.5 parent: 1 - - uid: 1023 + - uid: 1042 components: - type: Transform pos: 1.5,34.5 parent: 1 - - uid: 1024 + - uid: 1043 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,33.5 parent: 1 - - uid: 1025 + - uid: 1044 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,34.5 parent: 1 - - uid: 1026 + - uid: 1045 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,33.5 parent: 1 - - uid: 1027 + - uid: 1046 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,32.5 parent: 1 - - uid: 1028 + - uid: 1047 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,31.5 parent: 1 - - uid: 1029 + - uid: 1048 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,30.5 parent: 1 - - uid: 1030 + - uid: 1049 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,33.5 parent: 1 - - uid: 1031 + - uid: 1050 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,33.5 parent: 1 - - uid: 1032 + - uid: 1051 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,34.5 parent: 1 - - uid: 1033 + - uid: 1052 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,33.5 parent: 1 + - uid: 1053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,23.5 + parent: 1 + - uid: 1054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,23.5 + parent: 1 + - uid: 1055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 1 + - uid: 1056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,21.5 + parent: 1 + - uid: 1057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,22.5 + parent: 1 + - uid: 1058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,27.5 + parent: 1 + - uid: 1059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,26.5 + parent: 1 + - uid: 1060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,25.5 + parent: 1 + - uid: 1061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,27.5 + parent: 1 + - uid: 1062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,25.5 + parent: 1 + - uid: 1063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,26.5 + parent: 1 - proto: ChairFolding entities: - - uid: 1034 + - uid: 1064 components: - type: Transform rot: 3.141592653589793 rad pos: 5.6385274,33.79165 parent: 1 - - uid: 1035 + - uid: 1065 components: - type: Transform rot: 3.141592653589793 rad @@ -10811,65 +11776,60 @@ entities: parent: 1 - proto: ChairOfficeDark entities: - - uid: 1036 + - uid: 1066 components: - type: Transform rot: 3.141592653589793 rad pos: 3.0168126,-2.2222314 parent: 1 - - uid: 1037 + - uid: 1067 components: - type: Transform rot: 3.141592653589793 rad pos: -2.008704,-2.1479003 parent: 1 - - uid: 1038 + - uid: 1068 components: - type: Transform rot: 3.141592653589793 rad pos: -2.011708,-5.226958 parent: 1 - - uid: 1039 + - uid: 1069 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5255032,-8.341822 parent: 1 - - uid: 1040 + - uid: 1070 components: - type: Transform rot: 3.141592653589793 rad pos: 3.0077765,-5.271557 parent: 1 - - uid: 1041 + - uid: 1071 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.4135564,-9.459794 parent: 1 - - uid: 1042 + - uid: 1072 components: - type: Transform rot: 3.141592653589793 rad pos: -4.0172853,-12.316838 parent: 1 - - uid: 1043 - components: - - type: Transform - pos: -5.0352683,6.5428276 - parent: 1 - - uid: 1044 + - uid: 1073 components: - type: Transform pos: 2.9927013,-15.537149 parent: 1 - - uid: 1045 + - uid: 1074 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.6448607,-8.383146 parent: 1 - - uid: 1046 + - uid: 1075 components: - type: Transform rot: 1.5707963267948966 rad @@ -10877,7 +11837,7 @@ entities: parent: 1 - proto: ChairPilotSeat entities: - - uid: 1047 + - uid: 1076 components: - type: Transform rot: 3.141592653589793 rad @@ -10885,42 +11845,52 @@ entities: parent: 1 - proto: ChemDispenser entities: - - uid: 1048 + - uid: 1077 components: - type: Transform pos: -7.5,11.5 parent: 1 - proto: ChemistryHotplate entities: - - uid: 1049 + - uid: 1078 components: - type: Transform pos: -4.5,10.5 parent: 1 - proto: ChemMaster entities: - - uid: 1050 + - uid: 1079 components: - type: Transform pos: -6.5,11.5 parent: 1 +- proto: CloningPod + entities: + - uid: 1080 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1117 - proto: ClosetEmergencyFilledRandom entities: - - uid: 1051 + - uid: 1081 components: - type: Transform pos: -6.5,-6.5 parent: 1 - proto: ClosetFireFilled entities: - - uid: 1052 + - uid: 1082 components: - type: Transform pos: -6.5,-5.5 parent: 1 - proto: ClosetWallOrange entities: - - uid: 1053 + - uid: 1083 components: - type: Transform rot: -1.5707963267948966 rad @@ -10932,14 +11902,14 @@ entities: showEnts: False occludes: True ents: - - 1057 - - 1054 - - 1055 - - 1058 - - 1056 - - 1060 - - 1059 - - uid: 1061 + - 1087 + - 1084 + - 1085 + - 1088 + - 1086 + - 1090 + - 1089 + - uid: 1091 components: - type: Transform rot: 1.5707963267948966 rad @@ -10951,79 +11921,79 @@ entities: showEnts: False occludes: True ents: - - 1066 - - 1064 - - 1063 - - 1065 - - 1067 - - 1062 + - 1096 + - 1094 + - 1093 + - 1095 + - 1097 + - 1092 - proto: ClothingBackpackDuffelSurgeryAdvancedFilled entities: - - uid: 1068 + - uid: 1098 components: - type: Transform pos: -4.911055,11.182386 parent: 1 - - uid: 1069 + - uid: 1099 components: - type: Transform pos: -4.73918,11.088572 parent: 1 - - uid: 1070 + - uid: 1100 components: - type: Transform pos: -4.411055,10.963485 parent: 1 - proto: ClothingBeltHolsterFilled entities: - - uid: 1074 + - uid: 1102 components: - type: Transform - parent: 1071 + parent: 1101 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHandsGlovesColorYellow entities: - - uid: 1079 + - uid: 1109 components: - type: Transform pos: -3.4274457,17.92572 parent: 1 - - uid: 1080 + - uid: 1110 components: - type: Transform pos: -3.5072637,18.067436 parent: 1 - proto: ClothingHandsGlovesCombat entities: - - uid: 1075 + - uid: 1103 components: - type: Transform - parent: 1071 + parent: 1101 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatNCWLBeretAdmiral entities: - - uid: 1078 + - uid: 1104 components: - type: Transform - parent: 1071 + parent: 1101 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatNCWLKommissarHat entities: - - uid: 1082 + - uid: 1112 components: - type: Transform - parent: 1081 + parent: 1111 - type: Physics canCollide: False - proto: ClothingHeadHatWelding entities: - - uid: 1083 + - uid: 1113 components: - type: Transform rot: 1.5707963267948966 rad @@ -11031,347 +12001,347 @@ entities: parent: 1 - proto: ClothingHeadHelmetNCWLEVA entities: - - uid: 83 + - uid: 84 components: - type: Transform - parent: 81 + parent: 82 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 89 + - uid: 90 components: - type: Transform - parent: 87 + parent: 88 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 95 + - uid: 96 components: - type: Transform - parent: 93 + parent: 94 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 101 + - uid: 102 components: - type: Transform - parent: 99 + parent: 100 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 107 + - uid: 108 components: - type: Transform - parent: 105 + parent: 106 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 113 + - uid: 114 components: - type: Transform - parent: 111 + parent: 112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 119 + - uid: 120 components: - type: Transform - parent: 117 + parent: 118 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 125 + - uid: 126 components: - type: Transform - parent: 123 + parent: 124 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskBreath entities: - - uid: 84 + - uid: 85 components: - type: Transform - parent: 81 + parent: 82 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 90 + - uid: 91 components: - type: Transform - parent: 87 + parent: 88 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 96 + - uid: 97 components: - type: Transform - parent: 93 + parent: 94 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 102 + - uid: 103 components: - type: Transform - parent: 99 + parent: 100 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 108 + - uid: 109 components: - type: Transform - parent: 105 + parent: 106 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 114 + - uid: 115 components: - type: Transform - parent: 111 + parent: 112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 120 + - uid: 121 components: - type: Transform - parent: 117 + parent: 118 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 126 + - uid: 127 components: - type: Transform - parent: 123 + parent: 124 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckAdminCapelet entities: - - uid: 1072 + - uid: 1105 components: - type: Transform - parent: 1071 + parent: 1101 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterNCWLEVA entities: - - uid: 85 + - uid: 86 components: - type: Transform - parent: 81 + parent: 82 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 91 + - uid: 92 components: - type: Transform - parent: 87 + parent: 88 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 97 + - uid: 98 components: - type: Transform - parent: 93 + parent: 94 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 103 + - uid: 104 components: - type: Transform - parent: 99 + parent: 100 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 109 + - uid: 110 components: - type: Transform - parent: 105 + parent: 106 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 115 + - uid: 116 components: - type: Transform - parent: 111 + parent: 112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 121 + - uid: 122 components: - type: Transform - parent: 117 + parent: 118 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 127 + - uid: 128 components: - type: Transform - parent: 123 + parent: 124 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesBootsCowboyBlack entities: - - uid: 1073 + - uid: 1106 components: - type: MetaData desc: Made from real Imperial leather. name: polished officer's longboots - type: Transform - parent: 1071 + parent: 1101 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesBootsMag entities: - - uid: 86 + - uid: 87 components: - type: Transform - parent: 81 + parent: 82 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 92 + - uid: 93 components: - type: Transform - parent: 87 + parent: 88 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 98 + - uid: 99 components: - type: Transform - parent: 93 + parent: 94 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 104 + - uid: 105 components: - type: Transform - parent: 99 + parent: 100 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 110 + - uid: 111 components: - type: Transform - parent: 105 + parent: 106 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 116 + - uid: 117 components: - type: Transform - parent: 111 + parent: 112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 122 + - uid: 123 components: - type: Transform - parent: 117 + parent: 118 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 128 + - uid: 129 components: - type: Transform - parent: 123 + parent: 124 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesColorOrange entities: - - uid: 1054 + - uid: 1084 components: - type: Transform - parent: 1053 + parent: 1083 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1062 + - uid: 1092 components: - type: Transform - parent: 1061 + parent: 1091 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtPrisoner entities: - - uid: 1055 + - uid: 1085 components: - type: Transform - parent: 1053 + parent: 1083 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1063 + - uid: 1093 components: - type: Transform - parent: 1061 + parent: 1091 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitNCWLCommunications entities: - - uid: 1077 + - uid: 1107 components: - type: Transform - parent: 1071 + parent: 1101 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPrisoner entities: - - uid: 1056 + - uid: 1086 components: - type: Transform - parent: 1053 + parent: 1083 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1064 + - uid: 1094 components: - type: Transform - parent: 1061 + parent: 1091 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Cobweb1 entities: - - uid: 1084 + - uid: 1114 components: - type: Transform pos: 0.5,-12.5 parent: 1 - proto: Cobweb2 entities: - - uid: 1085 + - uid: 1115 components: - type: Transform pos: 7.5,-15.5 parent: 1 - proto: ComputerBankATM entities: - - uid: 1086 + - uid: 1116 components: - type: Transform rot: -1.5707963267948966 rad @@ -11387,21 +12357,40 @@ entities: showEnts: False occludes: True ents: [] +- proto: ComputerCloningConsole + entities: + - uid: 1117 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1422: + - - CloningPodSender + - MedicalScannerReceiver + - - MedicalScannerSender + - MedicalScannerReceiver + 1080: + - - CloningPodSender + - CloningPodReceiver + - - MedicalScannerSender + - CloningPodReceiver - proto: ComputerRadar entities: - - uid: 1087 + - uid: 1118 components: - type: Transform pos: 2.5,28.5 parent: 1 - - uid: 1088 + - uid: 1119 components: - type: Transform pos: -1.5,18.5 parent: 1 - proto: ComputerShuttle entities: - - uid: 1089 + - uid: 1120 components: - type: Transform pos: 0.5,-0.5 @@ -11435,98 +12424,58 @@ entities: - Module E - proto: ComputerTabletopAdvancedRadar entities: - - uid: 1090 + - uid: 1121 components: - type: Transform pos: 3.5,-4.5 parent: 1 - proto: ComputerTabletopPowerMonitoring entities: - - uid: 1091 + - uid: 1122 components: - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 1092 + - uid: 1123 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-16.5 parent: 1 - - uid: 1093 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,5.5 - parent: 1 - proto: ComputerTabletopStationRecords entities: - - uid: 1094 + - uid: 1124 components: - type: Transform pos: -2.5,-1.5 parent: 1 - proto: ComputerTabletopSurveillanceCameraMonitor entities: - - uid: 1095 + - uid: 1125 components: - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 1096 + - uid: 1126 components: - type: Transform pos: -4.5,-11.5 parent: 1 - proto: ComputerTabletopTargeting entities: - - uid: 1097 + - uid: 1127 components: - type: Transform - pos: 2.5,-1.5 + pos: -1.5,-1.5 + parent: 1 + - uid: 1128 + components: + - type: Transform + pos: 2.5,-4.5 parent: 1 - - type: TargetingConsole - cannonGroups: - all: - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - artillery: - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - machinegun: - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid - proto: ComputerWallmountBankATM entities: - - uid: 1098 + - uid: 1129 components: - type: Transform rot: -1.5707963267948966 rad @@ -11544,7 +12493,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 1099 + - uid: 1130 components: - type: Transform rot: -1.5707963267948966 rad @@ -11562,7 +12511,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 1100 + - uid: 1131 components: - type: Transform rot: -1.5707963267948966 rad @@ -11580,7 +12529,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 1101 + - uid: 1132 components: - type: Transform rot: 1.5707963267948966 rad @@ -11598,9 +12547,26 @@ entities: ents: [] - type: Physics canCollide: False + - uid: 1133 + components: + - type: Transform + pos: 3.5,29.5 + parent: 1 + - type: ContainerContainer + containers: + bank-ATM-cashSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Physics + canCollide: False - proto: ConveyorBelt entities: - - uid: 1102 + - uid: 1134 components: - type: Transform rot: 1.5707963267948966 rad @@ -11608,8 +12574,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1696 - - uid: 1103 + - 1765 + - uid: 1135 components: - type: Transform rot: 1.5707963267948966 rad @@ -11617,8 +12583,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1696 - - uid: 1104 + - 1765 + - uid: 1136 components: - type: Transform rot: 1.5707963267948966 rad @@ -11626,8 +12592,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1696 - - uid: 1105 + - 1765 + - uid: 1137 components: - type: Transform rot: -1.5707963267948966 rad @@ -11635,8 +12601,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1697 - - uid: 1106 + - 1766 + - uid: 1138 components: - type: Transform rot: -1.5707963267948966 rad @@ -11644,8 +12610,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1697 - - uid: 1107 + - 1766 + - uid: 1139 components: - type: Transform rot: -1.5707963267948966 rad @@ -11653,29 +12619,29 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1697 + - 1766 - proto: CrateArtifactContainer entities: - - uid: 1108 + - uid: 1140 components: - type: Transform pos: 3.5,14.5 parent: 1 - proto: CrateArtilleryAmmo entities: - - uid: 2110 + - uid: 1141 components: - type: Transform pos: -2.5,26.5 parent: 1 - - uid: 2112 + - uid: 1142 components: - type: Transform pos: 3.5,26.5 parent: 1 - proto: CrateCoolant entities: - - uid: 1109 + - uid: 1143 components: - type: Transform pos: -1.5,30.5 @@ -11690,7 +12656,7 @@ entities: volume: -5 path: /Audio/Machines/door_lock_off.ogg locked: False - - uid: 1110 + - uid: 1144 components: - type: Transform pos: -5.5,34.5 @@ -11723,72 +12689,60 @@ entities: - 0 - 0 - 0 -- proto: CrateEngineeringMetalFoamFast - entities: - - uid: 1111 - components: - - type: Transform - pos: 3.5,28.5 - parent: 1 - - uid: 1112 - components: - - type: Transform - pos: 4.5,28.5 - parent: 1 - proto: CrateMortarAmmo entities: - - uid: 1113 + - uid: 1145 components: - type: Transform pos: 3.5,27.5 parent: 1 - - uid: 1114 + - uid: 1146 components: - type: Transform pos: -2.5,27.5 parent: 1 - - uid: 1115 + - uid: 1147 components: - type: Transform pos: 3.5,21.5 parent: 1 - - uid: 1116 + - uid: 1148 components: - type: Transform pos: -2.5,21.5 parent: 1 - proto: CrateVulcanAmmo entities: - - uid: 2111 + - uid: 1149 components: - type: Transform pos: -2.5,25.5 parent: 1 - - uid: 2113 + - uid: 1150 components: - type: Transform pos: 3.5,25.5 parent: 1 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 1117 + - uid: 1151 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 1118 + - uid: 1152 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 1119 + - uid: 1153 components: - type: Transform pos: 5.5,11.5 parent: 1 - proto: DefaultStationBeaconBridge entities: - - uid: 1120 + - uid: 1154 components: - type: Transform rot: 1.5707963267948966 rad @@ -11796,33 +12750,33 @@ entities: parent: 1 - proto: DiceBag entities: - - uid: 1065 + - uid: 1095 components: - type: Transform - parent: 1061 + parent: 1091 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DisposalBend entities: - - uid: 1121 + - uid: 1155 components: - type: Transform pos: 1.5,31.5 parent: 1 - - uid: 1122 + - uid: 1156 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-10.5 parent: 1 - - uid: 1123 + - uid: 1157 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-10.5 parent: 1 - - uid: 1124 + - uid: 1158 components: - type: Transform rot: -1.5707963267948966 rad @@ -11830,334 +12784,334 @@ entities: parent: 1 - proto: DisposalJunction entities: - - uid: 1125 + - uid: 1159 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 1126 + - uid: 1160 components: - type: Transform pos: 1.5,-6.5 parent: 1 - proto: DisposalPipe entities: - - uid: 1127 + - uid: 1161 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,31.5 parent: 1 - - uid: 1128 + - uid: 1162 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,31.5 parent: 1 - - uid: 1129 + - uid: 1163 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,31.5 parent: 1 - - uid: 1130 + - uid: 1164 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,31.5 parent: 1 - - uid: 1131 + - uid: 1165 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,31.5 parent: 1 - - uid: 1132 + - uid: 1166 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,31.5 parent: 1 - - uid: 1133 + - uid: 1167 components: - type: Transform pos: 1.5,30.5 parent: 1 - - uid: 1134 + - uid: 1168 components: - type: Transform pos: 1.5,29.5 parent: 1 - - uid: 1135 + - uid: 1169 components: - type: Transform pos: 1.5,28.5 parent: 1 - - uid: 1136 + - uid: 1170 components: - type: Transform pos: 1.5,27.5 parent: 1 - - uid: 1137 + - uid: 1171 components: - type: Transform pos: 1.5,26.5 parent: 1 - - uid: 1138 + - uid: 1172 components: - type: Transform pos: 1.5,25.5 parent: 1 - - uid: 1139 + - uid: 1173 components: - type: Transform pos: 1.5,24.5 parent: 1 - - uid: 1140 + - uid: 1174 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 1141 + - uid: 1175 components: - type: Transform pos: 1.5,22.5 parent: 1 - - uid: 1142 + - uid: 1176 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 1143 + - uid: 1177 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 1144 + - uid: 1178 components: - type: Transform pos: 1.5,19.5 parent: 1 - - uid: 1145 + - uid: 1179 components: - type: Transform pos: 1.5,18.5 parent: 1 - - uid: 1146 + - uid: 1180 components: - type: Transform pos: 1.5,17.5 parent: 1 - - uid: 1147 + - uid: 1181 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 1148 + - uid: 1182 components: - type: Transform pos: 1.5,15.5 parent: 1 - - uid: 1149 + - uid: 1183 components: - type: Transform pos: 1.5,14.5 parent: 1 - - uid: 1150 + - uid: 1184 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 1151 + - uid: 1185 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 1152 + - uid: 1186 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 1153 + - uid: 1187 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 1154 + - uid: 1188 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 1155 + - uid: 1189 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 1156 + - uid: 1190 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 1157 + - uid: 1191 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 1158 + - uid: 1192 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 1159 + - uid: 1193 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 1160 + - uid: 1194 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1161 + - uid: 1195 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 1162 + - uid: 1196 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 1163 + - uid: 1197 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 1164 + - uid: 1198 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 1165 + - uid: 1199 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 1166 + - uid: 1200 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 1167 + - uid: 1201 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 1168 + - uid: 1202 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 1169 + - uid: 1203 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 1 - - uid: 1170 + - uid: 1204 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-6.5 parent: 1 - - uid: 1171 + - uid: 1205 components: - type: Transform pos: 1.5,-7.5 parent: 1 - - uid: 1172 + - uid: 1206 components: - type: Transform pos: 1.5,-8.5 parent: 1 - - uid: 1173 + - uid: 1207 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 1174 + - uid: 1208 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-15.5 parent: 1 - - uid: 1175 + - uid: 1209 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-14.5 parent: 1 - - uid: 1176 + - uid: 1210 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-13.5 parent: 1 - - uid: 1177 + - uid: 1211 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-12.5 parent: 1 - - uid: 1178 + - uid: 1212 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-11.5 parent: 1 - - uid: 1179 + - uid: 1213 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-16.5 parent: 1 - - uid: 1180 + - uid: 1214 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 1 - - uid: 1181 + - uid: 1215 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-16.5 parent: 1 - - uid: 1182 + - uid: 1216 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-16.5 parent: 1 - - uid: 1183 + - uid: 1217 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-16.5 parent: 1 - - uid: 1184 + - uid: 1218 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-16.5 parent: 1 - - uid: 1185 + - uid: 1219 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-16.5 parent: 1 - - uid: 1186 + - uid: 1220 components: - type: Transform rot: 1.5707963267948966 rad @@ -12165,25 +13119,25 @@ entities: parent: 1 - proto: DisposalTrunk entities: - - uid: 1187 + - uid: 1221 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-16.5 parent: 1 - - uid: 1188 + - uid: 1222 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-6.5 parent: 1 - - uid: 1189 + - uid: 1223 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,5.5 parent: 1 - - uid: 1190 + - uid: 1224 components: - type: Transform rot: 1.5707963267948966 rad @@ -12191,26 +13145,26 @@ entities: parent: 1 - proto: DisposalUnit entities: - - uid: 1191 + - uid: 1225 components: - type: Transform pos: -1.5,-6.5 parent: 1 - - uid: 1192 + - uid: 1226 components: - type: Transform pos: -5.5,31.5 parent: 1 - proto: Dresser entities: - - uid: 1081 + - uid: 1111 components: - type: Transform pos: -3.5,-9.5 parent: 1 - type: Storage storedItems: - 1082: + 1112: position: 0,0 _rotation: East - type: ContainerContainer @@ -12219,63 +13173,63 @@ entities: showEnts: False occludes: True ents: - - 1082 + - 1112 - proto: DrinkFlaskOld entities: - - uid: 1076 + - uid: 1108 components: - type: Transform - parent: 1071 + parent: 1101 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DrinkMREFlask entities: - - uid: 1057 + - uid: 1087 components: - type: Transform - parent: 1053 + parent: 1083 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1066 + - uid: 1096 components: - type: Transform - parent: 1061 + parent: 1091 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DrinkVodkaBottleFull entities: - - uid: 1193 + - uid: 1227 components: - type: Transform pos: -0.59381837,-9.968295 parent: 1 - proto: DrinkVodkaGlass entities: - - uid: 1194 + - uid: 1228 components: - type: Transform pos: -0.3151583,-9.854951 parent: 1 - proto: EncryptionKeyNCWL entities: - - uid: 1196 + - uid: 1230 components: - type: Transform - parent: 1195 + parent: 1229 - type: Physics canCollide: False - proto: ExplosivesSignMed entities: - - uid: 1197 + - uid: 1231 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,32.5 parent: 1 - - uid: 1198 + - uid: 1232 components: - type: Transform rot: -1.5707963267948966 rad @@ -12283,28 +13237,28 @@ entities: parent: 1 - proto: FaxMachineShip entities: - - uid: 1199 + - uid: 1618 components: - type: Transform pos: 3.5,-1.5 parent: 1 - proto: filingCabinetDrawerRandom entities: - - uid: 1200 + - uid: 1233 components: - type: Transform pos: 3.5,-6.5 parent: 1 - proto: filingCabinetTallRandom entities: - - uid: 1201 + - uid: 1234 components: - type: Transform pos: -2.5,-6.5 parent: 1 - proto: FireAxeCabinetFilled entities: - - uid: 1202 + - uid: 1235 components: - type: Transform rot: 1.5707963267948966 rad @@ -12312,126 +13266,126 @@ entities: parent: 1 - proto: Firelock entities: - - uid: 1203 + - uid: 1236 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 1204 + - uid: 1237 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,3.5 parent: 1 - - uid: 1205 + - uid: 1238 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,3.5 parent: 1 - - uid: 1206 + - uid: 1239 components: - type: Transform pos: 0.5,13.5 parent: 1 - - uid: 1207 + - uid: 1240 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,27.5 parent: 1 - - uid: 1208 + - uid: 1241 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,26.5 parent: 1 - - uid: 1209 + - uid: 1242 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,25.5 parent: 1 - - uid: 1210 + - uid: 1243 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,27.5 parent: 1 - - uid: 1211 + - uid: 1244 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,25.5 parent: 1 - - uid: 1212 + - uid: 1245 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,26.5 parent: 1 - - uid: 1213 + - uid: 1246 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,19.5 parent: 1 - - uid: 1214 + - uid: 1247 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-7.5 parent: 1 - - uid: 1215 + - uid: 1248 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-7.5 parent: 1 - - uid: 1216 + - uid: 1249 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-4.5 parent: 1 - - uid: 1217 + - uid: 1250 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-4.5 parent: 1 - - uid: 1218 + - uid: 1251 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-4.5 parent: 1 - - uid: 1219 + - uid: 1252 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-4.5 parent: 1 - - uid: 1220 + - uid: 1253 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,31.5 parent: 1 - - uid: 1221 + - uid: 1254 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,31.5 parent: 1 - - uid: 1222 + - uid: 1255 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,19.5 parent: 1 - - uid: 1223 + - uid: 1256 components: - type: Transform rot: 1.5707963267948966 rad @@ -12439,7 +13393,7 @@ entities: parent: 1 - proto: FloorDrain entities: - - uid: 1224 + - uid: 1257 components: - type: Transform pos: 0.5,6.5 @@ -12448,23 +13402,23 @@ entities: fixtures: {} - proto: FoodSnackMREBrownie entities: - - uid: 1058 + - uid: 1088 components: - type: Transform - parent: 1053 + parent: 1083 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1067 + - uid: 1097 components: - type: Transform - parent: 1061 + parent: 1091 - type: Physics canCollide: False - type: InsideEntityStorage - proto: GasPassiveVent entities: - - uid: 1225 + - uid: 1258 components: - type: Transform rot: -1.5707963267948966 rad @@ -12472,580 +13426,580 @@ entities: parent: 1 - proto: GasPipeBend entities: - - uid: 1226 + - uid: 1259 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 1 - - uid: 1227 + - uid: 1260 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 1 - - uid: 1228 + - uid: 1261 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 1 - - uid: 1229 + - uid: 1262 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1230 + - uid: 1263 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-11.5 parent: 1 - - uid: 1231 + - uid: 1264 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 1232 + - uid: 1265 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-5.5 parent: 1 - - uid: 1233 + - uid: 1266 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 1 - - uid: 1234 + - uid: 1267 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-4.5 parent: 1 - - uid: 1235 + - uid: 1268 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-3.5 parent: 1 - - uid: 1236 + - uid: 1269 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 1237 + - uid: 1270 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,2.5 parent: 1 - - uid: 1238 + - uid: 1271 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 1239 + - uid: 1272 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 1 - - uid: 1240 + - uid: 1273 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,20.5 parent: 1 - - uid: 1241 + - uid: 1274 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 1242 + - uid: 1275 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,12.5 parent: 1 - - uid: 1243 + - uid: 1276 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 1244 + - uid: 1277 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-5.5 parent: 1 - - uid: 1245 + - uid: 1278 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-11.5 parent: 1 - - uid: 1246 + - uid: 1279 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-16.5 parent: 1 - - uid: 1247 + - uid: 1280 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 1248 + - uid: 1281 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-15.5 parent: 1 - - uid: 1249 + - uid: 1282 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 1250 + - uid: 1283 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 1 - - uid: 1251 + - uid: 1284 components: - type: Transform pos: 1.5,-11.5 parent: 1 - proto: GasPipeStraight entities: - - uid: 1252 + - uid: 1285 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-13.5 parent: 1 - - uid: 1253 + - uid: 1286 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-12.5 parent: 1 - - uid: 1254 + - uid: 1287 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-11.5 parent: 1 - - uid: 1255 + - uid: 1288 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 - - uid: 1256 + - uid: 1289 components: - type: Transform pos: 2.5,23.5 parent: 1 - - uid: 1257 + - uid: 1290 components: - type: Transform pos: 2.5,22.5 parent: 1 - - uid: 1258 + - uid: 1291 components: - type: Transform pos: 2.5,21.5 parent: 1 - - uid: 1259 + - uid: 1292 components: - type: Transform pos: 1.5,19.5 parent: 1 - - uid: 1260 + - uid: 1293 components: - type: Transform pos: 1.5,18.5 parent: 1 - - uid: 1261 + - uid: 1294 components: - type: Transform pos: 1.5,17.5 parent: 1 - - uid: 1262 + - uid: 1295 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 1263 + - uid: 1296 components: - type: Transform pos: 1.5,15.5 parent: 1 - - uid: 1264 + - uid: 1297 components: - type: Transform pos: 1.5,14.5 parent: 1 - - uid: 1265 + - uid: 1298 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 1266 + - uid: 1299 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,12.5 parent: 1 - - uid: 1267 + - uid: 1300 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 1 - - uid: 1268 + - uid: 1301 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 1 - - uid: 1269 + - uid: 1302 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,9.5 parent: 1 - - uid: 1270 + - uid: 1303 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,8.5 parent: 1 - - uid: 1271 + - uid: 1304 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 1272 + - uid: 1305 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 1 - - uid: 1273 + - uid: 1306 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,7.5 parent: 1 - - uid: 1274 + - uid: 1307 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-11.5 parent: 1 - - uid: 1275 + - uid: 1308 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 1276 + - uid: 1309 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 1277 + - uid: 1310 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 1278 + - uid: 1311 components: - type: Transform pos: 7.5,-7.5 parent: 1 - - uid: 1279 + - uid: 1312 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 1280 + - uid: 1313 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-3.5 parent: 1 - - uid: 1281 + - uid: 1314 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 1282 + - uid: 1315 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-3.5 parent: 1 - - uid: 1283 + - uid: 1316 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-4.5 parent: 1 - - uid: 1284 + - uid: 1317 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 1 - - uid: 1285 + - uid: 1318 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 1 - - uid: 1286 + - uid: 1319 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-0.5 parent: 1 - - uid: 1287 + - uid: 1320 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,0.5 parent: 1 - - uid: 1288 + - uid: 1321 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 1 - - uid: 1289 + - uid: 1322 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,3.5 parent: 1 - - uid: 1290 + - uid: 1323 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - - uid: 1291 + - uid: 1324 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,23.5 parent: 1 - - uid: 1292 + - uid: 1325 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,22.5 parent: 1 - - uid: 1293 + - uid: 1326 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,21.5 parent: 1 - - uid: 1294 + - uid: 1327 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,12.5 parent: 1 - - uid: 1295 + - uid: 1328 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 1296 + - uid: 1329 components: - type: Transform pos: -0.5,14.5 parent: 1 - - uid: 1297 + - uid: 1330 components: - type: Transform pos: -0.5,15.5 parent: 1 - - uid: 1298 + - uid: 1331 components: - type: Transform pos: -0.5,16.5 parent: 1 - - uid: 1299 + - uid: 1332 components: - type: Transform pos: -0.5,17.5 parent: 1 - - uid: 1300 + - uid: 1333 components: - type: Transform pos: -0.5,18.5 parent: 1 - - uid: 1301 + - uid: 1334 components: - type: Transform pos: -0.5,19.5 parent: 1 - - uid: 1302 + - uid: 1335 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 1303 + - uid: 1336 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 1304 + - uid: 1337 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 1305 + - uid: 1338 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 1306 + - uid: 1339 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 1307 + - uid: 1340 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 1308 + - uid: 1341 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 1309 + - uid: 1342 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 1310 + - uid: 1343 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 1311 + - uid: 1344 components: - type: Transform pos: -2.5,1.5 parent: 1 - - uid: 1312 + - uid: 1345 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 1313 + - uid: 1346 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 1314 + - uid: 1347 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 1315 + - uid: 1348 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 1316 + - uid: 1349 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 1317 + - uid: 1350 components: - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 1318 + - uid: 1351 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 1 - - uid: 1319 + - uid: 1352 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-5.5 parent: 1 - - uid: 1320 + - uid: 1353 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-6.5 parent: 1 - - uid: 1321 + - uid: 1354 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-7.5 parent: 1 - - uid: 1322 + - uid: 1355 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-8.5 parent: 1 - - uid: 1323 + - uid: 1356 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-9.5 parent: 1 - - uid: 1324 + - uid: 1357 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 1 - - uid: 1325 + - uid: 1358 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-13.5 parent: 1 - - uid: 1326 + - uid: 1359 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-13.5 parent: 1 - - uid: 1327 + - uid: 1360 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 1328 + - uid: 1361 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-15.5 parent: 1 - - uid: 1329 + - uid: 1362 components: - type: Transform rot: -1.5707963267948966 rad @@ -13053,25 +14007,25 @@ entities: parent: 1 - proto: GasPipeTJunction entities: - - uid: 1330 + - uid: 1363 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,7.5 parent: 1 - - uid: 1331 + - uid: 1364 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-3.5 parent: 1 - - uid: 1332 + - uid: 1365 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,7.5 parent: 1 - - uid: 1333 + - uid: 1366 components: - type: Transform rot: -1.5707963267948966 rad @@ -13079,7 +14033,7 @@ entities: parent: 1 - proto: GasPort entities: - - uid: 1334 + - uid: 1367 components: - type: Transform rot: -1.5707963267948966 rad @@ -13087,7 +14041,7 @@ entities: parent: 1 - proto: GasPressurePump entities: - - uid: 1335 + - uid: 1368 components: - type: Transform rot: -1.5707963267948966 rad @@ -13097,18 +14051,18 @@ entities: targetPressure: 90.325 - proto: GasVentPump entities: - - uid: 1336 + - uid: 1369 components: - type: Transform pos: 1.5,-3.5 parent: 1 - type: DeviceNetwork configurators: - - 1403 + - 1437 deviceLists: - 35 - 34 - - uid: 1337 + - uid: 1370 components: - type: Transform rot: 1.5707963267948966 rad @@ -13116,35 +14070,35 @@ entities: parent: 1 - type: DeviceNetwork configurators: - - 1403 + - 1437 deviceLists: - 35 - 34 - - uid: 1338 + - uid: 1371 components: - type: Transform pos: 2.5,24.5 parent: 1 - type: DeviceNetwork configurators: - - 1403 + - 1437 deviceLists: - 35 - 34 - proto: GasVentScrubber entities: - - uid: 1339 + - uid: 1372 components: - type: Transform pos: -0.5,-3.5 parent: 1 - type: DeviceNetwork configurators: - - 1403 + - 1437 deviceLists: - 35 - 34 - - uid: 1340 + - uid: 1373 components: - type: Transform rot: -1.5707963267948966 rad @@ -13152,143 +14106,143 @@ entities: parent: 1 - type: DeviceNetwork configurators: - - 1403 + - 1437 deviceLists: - 35 - 34 - - uid: 1341 + - uid: 1374 components: - type: Transform pos: -1.5,24.5 parent: 1 - type: DeviceNetwork configurators: - - 1403 + - 1437 deviceLists: - 35 - 34 - proto: GravityGeneratorMini entities: - - uid: 1342 + - uid: 1375 components: - type: Transform pos: 0.5,-12.5 parent: 1 - proto: Grille entities: - - uid: 1343 + - uid: 1376 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 1 - - uid: 1344 + - uid: 1377 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 - - uid: 1345 + - uid: 1378 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 1346 + - uid: 1379 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 1347 + - uid: 1380 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 1348 + - uid: 1381 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 1 - - uid: 1349 + - uid: 1382 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 1350 + - uid: 1383 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 1351 + - uid: 1384 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 1352 + - uid: 1385 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 1353 + - uid: 1386 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1354 + - uid: 1387 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 1 - - uid: 1355 + - uid: 1388 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 1 - - uid: 1356 + - uid: 1389 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 1 - - uid: 1357 + - uid: 1390 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 1 - - uid: 1358 + - uid: 1391 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-2.5 parent: 1 - - uid: 1359 + - uid: 1392 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 1 - - uid: 1360 + - uid: 1393 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - - uid: 1361 + - uid: 1394 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,11.5 parent: 1 - - uid: 1362 + - uid: 1395 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 1 - - uid: 1363 + - uid: 1396 components: - type: Transform rot: -1.5707963267948966 rad @@ -13296,46 +14250,46 @@ entities: parent: 1 - proto: GyroscopeNfsd entities: - - uid: 1364 + - uid: 1397 components: - type: Transform pos: 9.5,-13.5 parent: 1 - - uid: 1365 + - uid: 1398 components: - type: Transform pos: 9.5,-9.5 parent: 1 - - uid: 1366 + - uid: 1399 components: - type: Transform pos: 7.5,-16.5 parent: 1 - - uid: 1367 + - uid: 1400 components: - type: Transform pos: 5.5,36.5 parent: 1 - - uid: 1368 + - uid: 1401 components: - type: Transform pos: -4.5,36.5 parent: 1 - proto: HandHeldMassScannerEE entities: - - uid: 1369 + - uid: 1402 components: - type: Transform pos: 6.6539893,34.626114 parent: 1 - proto: JugBoriaticFuel entities: - - uid: 1370 + - uid: 1403 components: - type: Transform pos: 2.77085,-12.420227 parent: 1 - - uid: 1371 + - uid: 1404 components: - type: Transform rot: -1.5707963267948966 rad @@ -13343,14 +14297,14 @@ entities: parent: 1 - proto: KitchenReagentGrinder entities: - - uid: 1372 + - uid: 1405 components: - type: Transform pos: -4.5,9.5 parent: 1 - proto: LampGold entities: - - uid: 1373 + - uid: 1406 components: - type: Transform rot: 1.5707963267948966 rad @@ -13358,20 +14312,20 @@ entities: parent: 1 - proto: LightBulbBroken entities: - - uid: 1374 + - uid: 1407 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.6952374,22.684963 parent: 1 - - uid: 1375 + - uid: 1408 components: - type: Transform pos: 1.9922628,28.825588 parent: 1 - proto: LightStripInner entities: - - uid: 1376 + - uid: 1409 components: - type: Transform rot: 1.5707963267948966 rad @@ -13380,7 +14334,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1377 + - uid: 1410 components: - type: Transform rot: 3.141592653589793 rad @@ -13389,7 +14343,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1378 + - uid: 1411 components: - type: Transform rot: -1.5707963267948966 rad @@ -13398,7 +14352,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1379 + - uid: 1412 components: - type: Transform pos: -0.5,10.5 @@ -13406,7 +14360,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1380 + - uid: 1413 components: - type: Transform rot: 1.5707963267948966 rad @@ -13417,7 +14371,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 1381 + - uid: 1414 components: - type: Transform rot: -1.5707963267948966 rad @@ -13426,7 +14380,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1382 + - uid: 1415 components: - type: Transform rot: 3.141592653589793 rad @@ -13435,7 +14389,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1383 + - uid: 1416 components: - type: Transform rot: 1.5707963267948966 rad @@ -13444,7 +14398,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1384 + - uid: 1417 components: - type: Transform pos: 0.5,8.5 @@ -13454,7 +14408,7 @@ entities: - type: TurretIFF - proto: LockerBoozeFilled entities: - - uid: 1385 + - uid: 1418 components: - type: Transform pos: 7.5,7.5 @@ -13463,7 +14417,7 @@ entities: locked: False - proto: LockerWoodenGeneric entities: - - uid: 1071 + - uid: 1101 components: - type: Transform pos: 1.5,-10.5 @@ -13494,35 +14448,52 @@ entities: showEnts: False occludes: True ents: - - 1075 - - 1072 - - 1074 - - 1078 - - 1076 - - 1073 - - 1077 + - 1103 + - 1105 + - 1102 + - 1104 + - 1108 + - 1106 + - 1107 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LuxuryPen entities: - - uid: 1386 + - uid: 1419 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.3285117,-8.219619 parent: 1 +- proto: MaterialBiomass + entities: + - uid: 1420 + components: + - type: Transform + pos: -5.5318866,7.5747604 + parent: 1 - proto: MedalCase entities: - - uid: 1387 + - uid: 1421 components: - type: Transform pos: -3.4919944,-9.185922 parent: 1 +- proto: MedicalScanner + entities: + - uid: 1422 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1117 - proto: MedkitAdvancedFilled entities: - - uid: 1388 + - uid: 1423 components: - type: Transform pos: -4.2157016,11.484386 @@ -13532,7 +14503,7 @@ entities: linearDamping: 0 - proto: MedkitBruteFilled entities: - - uid: 1389 + - uid: 1424 components: - type: Transform pos: -6.129805,8.493019 @@ -13542,7 +14513,7 @@ entities: linearDamping: 0 - proto: MedkitBurnFilled entities: - - uid: 1390 + - uid: 1425 components: - type: Transform pos: -6.11418,8.680649 @@ -13552,7 +14523,7 @@ entities: linearDamping: 0 - proto: MedkitCombatFilled entities: - - uid: 1391 + - uid: 1426 components: - type: Transform pos: -6.567305,8.743193 @@ -13562,7 +14533,7 @@ entities: linearDamping: 0 - proto: MedkitFilled entities: - - uid: 1392 + - uid: 1427 components: - type: Transform pos: -6.11418,8.821372 @@ -13572,7 +14543,7 @@ entities: linearDamping: 0 - proto: MedkitOxygenFilled entities: - - uid: 1393 + - uid: 1428 components: - type: Transform pos: -6.11418,8.2741165 @@ -13582,7 +14553,7 @@ entities: linearDamping: 0 - proto: MedkitToxinFilled entities: - - uid: 1394 + - uid: 1429 components: - type: Transform pos: -6.58293,8.383568 @@ -13592,13 +14563,13 @@ entities: linearDamping: 0 - proto: Multitool entities: - - uid: 1395 + - uid: 1430 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.4180918,17.145731 parent: 1 - - uid: 1396 + - uid: 1431 components: - type: Transform rot: 1.5707963267948966 rad @@ -13606,71 +14577,64 @@ entities: parent: 1 - proto: NCWLConscriptAmmoVendory entities: - - uid: 1397 + - uid: 1432 components: - type: Transform pos: -2.5,22.5 parent: 1 - proto: NCWLConscriptGearVendory entities: - - uid: 1398 + - uid: 1433 components: - type: Transform pos: 3.5,22.5 parent: 1 - proto: NCWLConscriptShipVendory entities: - - uid: 1399 + - uid: 1434 components: - type: Transform pos: -0.5,28.5 parent: 1 -- proto: NCWLPoster1 - entities: - - uid: 1400 - components: - - type: Transform - pos: -1.5,13.5 - parent: 1 -- proto: NCWLPoster2 +- proto: NCWLPoster3 entities: - - uid: 1401 + - uid: 1435 components: - type: Transform - pos: 2.5,13.5 + pos: -3.5,5.5 parent: 1 -- proto: NCWLPoster3 +- proto: NCWLVolginPhoto entities: - - uid: 1402 + - uid: 1436 components: - type: Transform - pos: -3.5,5.5 + pos: 2.9100273,-1.380785 parent: 1 - proto: NetworkConfigurator entities: - - uid: 1403 + - uid: 1437 components: - type: Transform pos: -3.7073967,18.259022 parent: 1 - type: NetworkConfigurator devices: - 'UID: 58949': 1336 - 'UID: 58952': 1339 - 'UID: 58950': 1337 - 'UID: 58953': 1340 - 'UID: 58954': 1341 - 'UID: 58951': 1338 + 'UID: 58949': 1369 + 'UID: 58952': 1372 + 'UID: 58950': 1370 + 'UID: 58953': 1373 + 'UID: 58954': 1374 + 'UID: 58951': 1371 linkModeActive: False - proto: OreBox entities: - - uid: 1404 + - uid: 1438 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,15.5 parent: 1 - - uid: 1405 + - uid: 1439 components: - type: Transform rot: -1.5707963267948966 rad @@ -13678,26 +14642,75 @@ entities: parent: 1 - proto: OreProcessor entities: - - uid: 1406 + - uid: 1440 components: - type: Transform pos: 4.5,15.5 parent: 1 - proto: OxygenCanister entities: - - uid: 1407 + - uid: 1441 components: - type: Transform pos: -3.5,20.5 parent: 1 - - uid: 1408 + - uid: 1442 components: - type: Transform pos: 4.5,20.5 parent: 1 +- proto: PaintingNCWLVolgin + entities: + - uid: 1443 + components: + - type: Transform + pos: 1.5,29.5 + parent: 1 +- proto: Paper + entities: + - uid: 1444 + components: + - type: Transform + pos: 0.5536933,-0.5458118 + parent: 1 + - type: Paper + content: >- + From: Battalion Engineering Section + + + Comrade Commander, + + + Since the loss of our station we have received no supplies, and we have been travelling for a considerable time. I understand that your expectation of me is to keep this vessel operational. However, without resupply for much longer, I fear the ship will eventually lose its ability to function if we do not reach our new home soon. + + + My intention is not to damage morale. The engineering team is already working tirelessly to keep the ship together, and I am doing my best to maintain their spirits. This information remains strictly between you and me. I have not informed them of the situation. To keep morale high, I continue to assure them that everything is under control. + + + Everything for the Cause. + - uid: 2174 + components: + - type: Transform + pos: 0.6101261,-10.405304 + parent: 1 + - type: Paper + content: >- + Captain’s To-Do List + + + 1. Gather the crew and conduct a briefing. + + + 2. Establish authority as the Captain of the Dear Clementine and organise the command hierarchy among the other captains. + + + 3. Deploy fighters and prepare the ship for the upcoming battle. + + + 4. I forgot... - proto: PaperBin20 entities: - - uid: 1409 + - uid: 1445 components: - type: Transform rot: -1.5707963267948966 rad @@ -13705,13 +14718,24 @@ entities: parent: 1 - proto: PaperOffice entities: - - uid: 1410 + - uid: 1446 + components: + - type: Transform + pos: 2.4212117,-1.4017487 + parent: 1 + - type: Paper + content: >- + The weapons were emptied while we polished and treated them to remove corrosion. Do not forget to reload them before battle. + + + -Engineering + - uid: 1447 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.3582358,-8.516942 parent: 1 - - uid: 1411 + - uid: 1448 components: - type: Transform rot: 1.5707963267948966 rad @@ -13719,7 +14743,7 @@ entities: parent: 1 - proto: Pen entities: - - uid: 1412 + - uid: 1449 components: - type: Transform rot: -1.5707963267948966 rad @@ -13727,22 +14751,22 @@ entities: parent: 1 - proto: PersonalAI entities: - - uid: 1059 + - uid: 1089 components: - type: Transform - parent: 1053 + parent: 1083 - type: Physics canCollide: False - type: InsideEntityStorage - proto: PlasticFlapsAirtightOpaque entities: - - uid: 1413 + - uid: 1450 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,26.5 parent: 1 - - uid: 1414 + - uid: 1451 components: - type: Transform rot: -1.5707963267948966 rad @@ -13750,212 +14774,216 @@ entities: parent: 1 - proto: PlastitaniumWindow entities: - - uid: 1415 + - uid: 1452 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 1416 + - uid: 1453 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 1417 + - uid: 1454 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 1418 + - uid: 1455 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 1 - - uid: 1419 + - uid: 1456 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 - - uid: 1420 + - uid: 1457 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 1 - - uid: 1421 + - uid: 1458 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 1422 + - uid: 1459 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 1423 + - uid: 1460 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 1424 + - uid: 1461 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1425 + - uid: 1462 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 1426 + - uid: 1463 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 1 - - uid: 1427 + - uid: 1464 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 1 - - uid: 1428 + - uid: 1465 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 1 - - uid: 1429 + - uid: 1466 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 1 - - uid: 1430 + - uid: 1467 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 1 - - uid: 1431 + - uid: 1468 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 1 - - uid: 1432 + - uid: 1469 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-2.5 parent: 1 - - uid: 1433 + - uid: 1470 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - - uid: 1434 + - uid: 1471 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 1 - - uid: 1435 + - uid: 1472 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,11.5 parent: 1 -- proto: PowerCellRecharger +- proto: PosterContrabandCommunistState entities: - - uid: 1436 + - uid: 1473 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,5.5 + pos: 3.5,2.5 + parent: 1 + - uid: 1474 + components: + - type: Transform + pos: -2.5,2.5 parent: 1 - proto: PoweredLEDSmallLight entities: - - uid: 1437 + - uid: 1475 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,18.5 parent: 1 - - uid: 1438 + - uid: 1476 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,18.5 parent: 1 - - uid: 1439 + - uid: 1477 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,36.5 parent: 1 - - uid: 1440 + - uid: 1478 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,36.5 parent: 1 - - uid: 1441 + - uid: 1479 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,37.5 parent: 1 - - uid: 1442 + - uid: 1480 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,37.5 parent: 1 - - uid: 1443 + - uid: 1481 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,22.5 parent: 1 - - uid: 1444 + - uid: 1482 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,22.5 parent: 1 - - uid: 1445 + - uid: 1483 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,13.5 parent: 1 - - uid: 1446 + - uid: 1484 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,13.5 parent: 1 - - uid: 1447 + - uid: 1485 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-14.5 parent: 1 - - uid: 1448 + - uid: 1486 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-16.5 parent: 1 - - uid: 1449 + - uid: 1487 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 1450 + - uid: 1488 components: - type: Transform rot: -1.5707963267948966 rad @@ -13963,195 +14991,195 @@ entities: parent: 1 - proto: Poweredlight entities: - - uid: 1451 + - uid: 1489 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,10.5 parent: 1 - - uid: 1452 + - uid: 1490 components: - type: Transform pos: -7.5,27.5 parent: 1 - - uid: 1453 + - uid: 1491 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,32.5 parent: 1 - - uid: 1454 + - uid: 1492 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,32.5 parent: 1 - - uid: 1455 + - uid: 1493 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,20.5 parent: 1 - - uid: 1456 + - uid: 1494 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,6.5 parent: 1 - - uid: 1457 + - uid: 1495 components: - type: Transform pos: 8.5,27.5 parent: 1 - - uid: 1458 + - uid: 1496 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,16.5 parent: 1 - - uid: 1459 + - uid: 1497 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,16.5 parent: 1 - - uid: 1460 + - uid: 1498 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 1461 + - uid: 1499 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,17.5 parent: 1 - - uid: 1462 + - uid: 1500 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 1463 + - uid: 1501 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1464 + - uid: 1502 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,5.5 parent: 1 - - uid: 1465 + - uid: 1503 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,5.5 parent: 1 - - uid: 1466 + - uid: 1504 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 1467 + - uid: 1505 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 1468 + - uid: 1506 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 1469 + - uid: 1507 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,3.5 parent: 1 - - uid: 1470 + - uid: 1508 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-4.5 parent: 1 - - uid: 1471 + - uid: 1509 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-4.5 parent: 1 - - uid: 1472 + - uid: 1510 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-10.5 parent: 1 - - uid: 1473 + - uid: 1511 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-5.5 parent: 1 - - uid: 1474 + - uid: 1512 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-5.5 parent: 1 - - uid: 1475 + - uid: 1513 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 1 - - uid: 1476 + - uid: 1514 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-12.5 parent: 1 - - uid: 1477 + - uid: 1515 components: - type: Transform pos: -3.5,-11.5 parent: 1 - - uid: 1478 + - uid: 1516 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-8.5 parent: 1 - - uid: 1479 + - uid: 1517 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - uid: 1480 + - uid: 1518 components: - type: Transform pos: 2.5,-15.5 parent: 1 - - uid: 1481 + - uid: 1519 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-13.5 parent: 1 - - uid: 1482 + - uid: 1520 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,8.5 parent: 1 - - uid: 1483 + - uid: 1521 components: - type: Transform pos: -0.5,28.5 parent: 1 - - uid: 1484 + - uid: 1522 components: - type: Transform rot: 1.5707963267948966 rad @@ -14159,120 +15187,120 @@ entities: parent: 1 - proto: PoweredlightRed entities: - - uid: 1485 + - uid: 1523 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,36.5 parent: 1 - - uid: 1486 + - uid: 1524 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,36.5 parent: 1 - - uid: 1487 + - uid: 1525 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,38.5 parent: 1 - - uid: 1488 + - uid: 1526 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,38.5 parent: 1 - - uid: 1489 + - uid: 1527 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,36.5 parent: 1 - - uid: 1490 + - uid: 1528 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,34.5 parent: 1 - - uid: 1491 + - uid: 1529 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,13.5 parent: 1 - - uid: 1492 + - uid: 1530 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,36.5 parent: 1 - - uid: 1493 + - uid: 1531 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,13.5 parent: 1 - - uid: 1494 + - uid: 1532 components: - type: Transform pos: 8.5,-19.5 parent: 1 - - uid: 1495 + - uid: 1533 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,34.5 parent: 1 - - uid: 1496 + - uid: 1534 components: - type: Transform pos: -7.5,22.5 parent: 1 - - uid: 1497 + - uid: 1535 components: - type: Transform pos: 8.5,22.5 parent: 1 - - uid: 1498 + - uid: 1536 components: - type: Transform pos: 0.5,-20.5 parent: 1 - - uid: 1499 + - uid: 1537 components: - type: Transform pos: -7.5,-19.5 parent: 1 - - uid: 1500 + - uid: 1538 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 1501 + - uid: 1539 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-3.5 parent: 1 - - uid: 1502 + - uid: 1540 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-3.5 parent: 1 - - uid: 1503 + - uid: 1541 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 1504 + - uid: 1542 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 1 - - uid: 1505 + - uid: 1543 components: - type: Transform rot: -1.5707963267948966 rad @@ -14280,12 +15308,12 @@ entities: parent: 1 - proto: PoweredSmallLightEmpty entities: - - uid: 1506 + - uid: 1544 components: - type: Transform pos: 2.5,28.5 parent: 1 - - uid: 1507 + - uid: 1545 components: - type: Transform rot: 1.5707963267948966 rad @@ -14293,190 +15321,403 @@ entities: parent: 1 - proto: Rack entities: - - uid: 1508 + - uid: 1546 components: - type: Transform pos: 2.5,-12.5 parent: 1 - - uid: 1509 + - uid: 1547 components: - type: Transform pos: -9.5,-12.5 parent: 1 - - uid: 1510 + - uid: 1548 components: - type: Transform pos: 2.5,30.5 parent: 1 - - uid: 1511 + - uid: 1549 components: - type: Transform pos: -9.5,-10.5 parent: 1 - proto: RadioHandheld entities: - - uid: 1512 + - uid: 1550 components: - type: Transform pos: 5.370796,34.6056 parent: 1 - - uid: 1513 + - uid: 1551 components: - type: Transform pos: 5.4748306,34.67993 parent: 1 - - uid: 1514 + - uid: 1552 components: - type: Transform pos: 5.534279,34.560997 parent: 1 - - uid: 1515 + - uid: 1553 components: - type: Transform pos: 5.2964873,34.67993 parent: 1 - - uid: 1516 + - uid: 1554 components: - type: Transform pos: 5.564003,34.739395 parent: 1 - - uid: 1517 + - uid: 1555 components: - type: Transform pos: 5.682898,34.665062 parent: 1 - proto: Railing entities: - - uid: 1518 + - uid: 1556 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-1.5 parent: 1 - - uid: 1519 + - uid: 1557 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-1.5 parent: 1 - - uid: 1520 + - uid: 1558 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 1 - - uid: 1521 + - uid: 1559 components: - type: Transform pos: -0.5,35.5 parent: 1 - - uid: 1522 + - uid: 1560 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 1523 + - uid: 1561 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 1524 + - uid: 1562 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 1 - - uid: 1525 + - uid: 1563 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 1 - - uid: 1526 + - uid: 1564 components: - type: Transform pos: 1.5,35.5 parent: 1 - - uid: 1527 + - uid: 1565 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - - uid: 1528 + - uid: 1566 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 1 - - uid: 1529 + - uid: 1567 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 1530 + - uid: 1568 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,31.5 parent: 1 - - uid: 1531 + - uid: 1569 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,30.5 parent: 1 - - uid: 1532 + - uid: 1570 components: - type: Transform pos: -5.5,8.5 parent: 1 + - uid: 1571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,20.5 + parent: 1 + - uid: 1572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,19.5 + parent: 1 + - uid: 1573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,17.5 + parent: 1 + - uid: 1574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,18.5 + parent: 1 + - uid: 1575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + - uid: 1576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 + - uid: 1577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,16.5 + parent: 1 + - uid: 1578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - uid: 1579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 1580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + - uid: 1581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 1 + - uid: 1582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 1583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1 + - uid: 1584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + - uid: 1585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + - uid: 1586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,20.5 + parent: 1 + - uid: 1587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,19.5 + parent: 1 + - uid: 1588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,18.5 + parent: 1 + - uid: 1589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,17.5 + parent: 1 + - uid: 1590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,16.5 + parent: 1 + - uid: 1591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,38.5 + parent: 1 + - uid: 1592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,38.5 + parent: 1 + - uid: 1593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,38.5 + parent: 1 + - uid: 2178 + components: + - type: Transform + pos: 0.5,26.5 + parent: 1 - proto: RailingCorner entities: - - uid: 1533 + - uid: 1594 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-2.5 parent: 1 - - uid: 1534 + - uid: 1595 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 1596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,33.5 + parent: 1 + - uid: 1597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 1 + - uid: 1598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,32.5 + parent: 1 + - uid: 1599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,33.5 + parent: 1 + - uid: 1600 + components: + - type: Transform + pos: 8.5,22.5 + parent: 1 + - uid: 1601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,13.5 + parent: 1 + - uid: 1602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,22.5 + parent: 1 + - uid: 1603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,13.5 + parent: 1 + - uid: 1604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 1 + - uid: 1605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 1 + - uid: 1606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,34.5 + parent: 1 + - uid: 1607 components: - type: Transform - pos: 1.5,-2.5 + rot: 3.141592653589793 rad + pos: -7.5,34.5 parent: 1 - - uid: 1535 + - uid: 1608 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,33.5 + pos: -6.5,36.5 parent: 1 - - uid: 1536 + - uid: 1609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,8.5 + rot: 1.5707963267948966 rad + pos: 7.5,36.5 parent: 1 - - uid: 1537 + - uid: 2176 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,32.5 + pos: 1.5,26.5 parent: 1 - - uid: 1538 + - uid: 2177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,33.5 + rot: -1.5707963267948966 rad + pos: -0.5,26.5 parent: 1 - proto: RailingCornerSmall entities: - - uid: 1539 + - uid: 1610 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-0.5 parent: 1 - - uid: 1540 + - uid: 1611 components: - type: Transform rot: 1.5707963267948966 rad @@ -14484,7 +15725,7 @@ entities: parent: 1 - proto: RCD entities: - - uid: 1541 + - uid: 1612 components: - type: Transform rot: 1.5707963267948966 rad @@ -14492,107 +15733,68 @@ entities: parent: 1 - proto: RCDAmmo entities: - - uid: 1542 + - uid: 1613 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.646629,-16.607515 parent: 1 - - uid: 1543 + - uid: 1614 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.646629,-16.414255 parent: 1 -- proto: RemoteSignallerAdvanced - entities: - - uid: 1544 - components: - - type: MetaData - name: fire supercannon - - type: Transform - pos: 3.0348194,-1.3908072 - parent: 1 - proto: RubberStampApproved entities: - - uid: 1545 + - uid: 1615 components: - type: Transform pos: -0.015409172,-10.201724 parent: 1 - proto: RubberStampDenied entities: - - uid: 1546 + - uid: 1616 components: - type: Transform pos: -0.015409172,-10.380118 parent: 1 - proto: RubberStampNCWLCommand entities: - - uid: 1547 + - uid: 1617 components: - type: Transform pos: -0.0005475879,-10.5733795 parent: 1 -- proto: SheetGlass - entities: - - uid: 1548 - components: - - type: Transform - pos: -5.2448807,5.3164644 - parent: 1 - - type: Physics - angularDamping: 0 - linearDamping: 0 - proto: SheetPlasma1 entities: - - uid: 1549 - components: - - type: Transform - pos: -5.7609353,11.555087 - parent: 1 - - type: Physics - angularDamping: 0 - linearDamping: 0 - - uid: 1550 - components: - - type: Transform - pos: -5.6512265,11.280864 - parent: 1 - - type: Physics - angularDamping: 0 - linearDamping: 0 - - uid: 1551 + - uid: 1619 components: - type: Transform - pos: -5.870644,11.747044 + pos: -4.402343,9.6974325 parent: 1 - type: Physics angularDamping: 0 linearDamping: 0 -- proto: SheetPlastic - entities: - - uid: 1552 + - uid: 1620 components: - type: Transform - pos: -5.7111416,5.412442 + pos: -4.79568,10.145023 parent: 1 - type: Physics angularDamping: 0 linearDamping: 0 -- proto: SheetSteel - entities: - - uid: 1553 + - uid: 1621 components: - type: Transform - pos: -5.5191517,5.3850203 + pos: -4.226019,10.185714 parent: 1 - type: Physics angularDamping: 0 linearDamping: 0 - proto: ShotGunCabinetFilled entities: - - uid: 1554 + - uid: 1622 components: - type: Transform rot: -1.5707963267948966 rad @@ -14600,7 +15802,7 @@ entities: parent: 1 - proto: ShuttersNormal entities: - - uid: 1555 + - uid: 1623 components: - type: Transform rot: 1.5707963267948966 rad @@ -14608,8 +15810,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1564 - - uid: 1556 + - 1632 + - uid: 1624 components: - type: Transform rot: 1.5707963267948966 rad @@ -14617,8 +15819,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1564 - - uid: 1557 + - 1632 + - uid: 1625 components: - type: Transform rot: 1.5707963267948966 rad @@ -14626,44 +15828,44 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1564 + - 1632 - proto: ShuttersNormalOpen entities: - - uid: 1558 + - uid: 1626 components: - type: Transform pos: 0.5,-7.5 parent: 1 - type: DeviceLinkSink links: - - 1562 - - uid: 1559 + - 1630 + - uid: 1627 components: - type: Transform pos: 1.5,-7.5 parent: 1 - type: DeviceLinkSink links: - - 1562 - - uid: 1560 + - 1630 + - uid: 1628 components: - type: Transform pos: 3.5,19.5 parent: 1 - type: DeviceLinkSink links: - - 1565 - - uid: 1561 + - 1633 + - uid: 1629 components: - type: Transform pos: 2.5,19.5 parent: 1 - type: DeviceLinkSink links: - - 1565 + - 1633 - proto: SignalButton entities: - - uid: 1562 + - uid: 1630 components: - type: Transform rot: -1.5707963267948966 rad @@ -14671,13 +15873,13 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1559: + 1627: - - Pressed - Toggle - 1558: + 1626: - - Pressed - Toggle - - uid: 1563 + - uid: 1631 components: - type: Transform rot: -1.5707963267948966 rad @@ -14685,49 +15887,49 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 195: + 200: - - Pressed - Toggle - 194: + 199: - - Pressed - Toggle - 196: + 201: - - Pressed - Toggle - 197: + 202: - - Pressed - Toggle - 198: + 203: - - Pressed - Toggle - 203: + 208: - - Pressed - Toggle - 202: + 207: - - Pressed - Toggle - 201: + 206: - - Pressed - Toggle - 200: + 205: - - Pressed - Toggle - 199: + 204: - - Pressed - Toggle - 207: + 212: - - Pressed - Toggle - 206: + 211: - - Pressed - Toggle - 205: + 210: - - Pressed - Toggle - 204: + 209: - - Pressed - Toggle - - uid: 1564 + - uid: 1632 components: - type: MetaData name: armory shutters @@ -14737,16 +15939,16 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1555: + 1623: - - Pressed - Toggle - 1556: + 1624: - - Pressed - Toggle - 1557: + 1625: - - Pressed - Toggle - - uid: 1565 + - uid: 1633 components: - type: Transform rot: 3.141592653589793 rad @@ -14754,13 +15956,13 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1561: + 1629: - - Pressed - Toggle - 1560: + 1628: - - Pressed - Toggle - - uid: 1566 + - uid: 1634 components: - type: Transform rot: 1.5707963267948966 rad @@ -14768,26 +15970,26 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 193: + 198: - - Pressed - Toggle - - uid: 1567 + - uid: 1635 components: - type: Transform pos: 2.5,35.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 185: + 190: - - Pressed - Toggle - 186: + 191: - - Pressed - Toggle - 187: + 192: - - Pressed - Toggle - - uid: 1568 + - uid: 1636 components: - type: Transform rot: -1.5707963267948966 rad @@ -14795,10 +15997,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 192: + 197: - - Pressed - Toggle - - uid: 1569 + - uid: 1637 components: - type: Transform rot: -1.5707963267948966 rad @@ -14806,10 +16008,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 191: + 196: - - Pressed - Toggle - - uid: 1570 + - uid: 1638 components: - type: Transform rot: 1.5707963267948966 rad @@ -14817,10 +16019,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 190: + 195: - - Pressed - Toggle - - uid: 1571 + - uid: 1639 components: - type: Transform rot: -1.5707963267948966 rad @@ -14828,10 +16030,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 189: + 194: - - Pressed - Toggle - - uid: 1572 + - uid: 1640 components: - type: Transform rot: 1.5707963267948966 rad @@ -14839,39 +16041,65 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 188: + 193: - - Pressed - Toggle +- proto: SignBridge + entities: + - uid: 1641 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 1642 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 - proto: SignChem entities: - - uid: 1573 + - uid: 1643 components: - type: Transform pos: -3.5,10.5 parent: 1 +- proto: SignConference + entities: + - uid: 1644 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 - proto: SignCryo entities: - - uid: 1574 + - uid: 1645 components: - type: Transform pos: 4.5,7.5 parent: 1 +- proto: SignEngineering + entities: + - uid: 1646 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 - proto: SignLastIdiot entities: - - uid: 1575 + - uid: 1647 components: - type: Transform pos: -3.5,29.5 parent: 1 - proto: SignSpace entities: - - uid: 1576 + - uid: 1648 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-0.5 parent: 1 - - uid: 1577 + - uid: 1649 components: - type: Transform rot: 1.5707963267948966 rad @@ -14879,13 +16107,13 @@ entities: parent: 1 - proto: SinkWide entities: - - uid: 1578 + - uid: 1650 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-15.5 parent: 1 - - uid: 1579 + - uid: 1651 components: - type: Transform rot: 1.5707963267948966 rad @@ -14893,58 +16121,58 @@ entities: parent: 1 - proto: SMESBasic entities: - - uid: 1580 + - uid: 1652 components: - type: Transform pos: 10.5,-10.5 parent: 1 - - uid: 1581 + - uid: 1653 components: - type: Transform pos: 10.5,-12.5 parent: 1 - - uid: 1582 + - uid: 1654 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 1583 + - uid: 1655 components: - type: Transform pos: -7.5,4.5 parent: 1 - proto: SoapDeluxe entities: - - uid: 1060 + - uid: 1090 components: - type: Transform - parent: 1053 + parent: 1083 - type: Physics canCollide: False - type: InsideEntityStorage - proto: StairStageDark entities: - - uid: 1584 + - uid: 1656 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 1585 + - uid: 1657 components: - type: Transform pos: 2.5,32.5 parent: 1 - - uid: 1586 + - uid: 1658 components: - type: Transform pos: -1.5,32.5 parent: 1 - - uid: 1587 + - uid: 1659 components: - type: Transform pos: -7.5,8.5 parent: 1 - - uid: 1588 + - uid: 1660 components: - type: Transform rot: 3.141592653589793 rad @@ -14952,66 +16180,66 @@ entities: parent: 1 - proto: StationMap entities: - - uid: 1589 + - uid: 1661 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 1590 + - uid: 1662 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,18.5 parent: 1 - - uid: 1591 + - uid: 1663 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,33.5 parent: 1 - - uid: 1592 + - uid: 1664 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - - uid: 1593 + - uid: 1665 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-2.5 parent: 1 - - uid: 1594 + - uid: 1666 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,0.5 parent: 1 - - uid: 1595 + - uid: 1667 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,0.5 parent: 1 - - uid: 1596 + - uid: 1668 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-9.5 parent: 1 - - uid: 1597 + - uid: 1669 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 1 - - uid: 1598 + - uid: 1670 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,23.5 parent: 1 - - uid: 1599 + - uid: 1671 components: - type: Transform rot: -1.5707963267948966 rad @@ -15019,26 +16247,26 @@ entities: parent: 1 - proto: SteelBench entities: - - uid: 1600 + - uid: 1672 components: - type: Transform pos: 6.5,-6.5 parent: 1 - proto: SubstationBasic entities: - - uid: 1601 + - uid: 1673 components: - type: Transform - pos: 0.5,-16.5 + pos: -4.5,5.5 parent: 1 - - uid: 1602 + - uid: 1674 components: - type: Transform - pos: -4.5,7.5 + pos: 0.5,-16.5 parent: 1 - proto: SuitStorageBase entities: - - uid: 81 + - uid: 82 components: - type: Transform pos: -2.5,36.5 @@ -15067,12 +16295,12 @@ entities: showEnts: False occludes: True ents: + - 84 + - 86 - 83 + - 87 - 85 - - 82 - - 86 - - 84 - - uid: 87 + - uid: 88 components: - type: Transform pos: -2.5,37.5 @@ -15101,12 +16329,12 @@ entities: showEnts: False occludes: True ents: + - 93 - 92 + - 90 - 91 - 89 - - 90 - - 88 - - uid: 93 + - uid: 94 components: - type: Transform pos: 3.5,37.5 @@ -15135,12 +16363,12 @@ entities: showEnts: False occludes: True ents: - - 97 - - 94 - 98 - 95 + - 99 - 96 - - uid: 99 + - 97 + - uid: 100 components: - type: Transform pos: 7.5,28.5 @@ -15169,12 +16397,12 @@ entities: showEnts: False occludes: True ents: - - 100 - - 103 - - 104 - 101 + - 104 + - 105 - 102 - - uid: 105 + - 103 + - uid: 106 components: - type: Transform pos: -6.5,28.5 @@ -15203,12 +16431,12 @@ entities: showEnts: False occludes: True ents: - - 106 - 107 - - 110 - 108 + - 111 - 109 - - uid: 111 + - 110 + - uid: 112 components: - type: Transform pos: 3.5,36.5 @@ -15237,12 +16465,12 @@ entities: showEnts: False occludes: True ents: + - 116 - 115 + - 117 - 114 - - 116 - 113 - - 112 - - uid: 117 + - uid: 118 components: - type: Transform pos: -5.5,28.5 @@ -15271,12 +16499,12 @@ entities: showEnts: False occludes: True ents: - - 119 - - 122 - 120 + - 123 - 121 - - 118 - - uid: 123 + - 122 + - 119 + - uid: 124 components: - type: Transform pos: 6.5,28.5 @@ -15305,152 +16533,152 @@ entities: showEnts: False occludes: True ents: - - 126 - - 124 - - 128 - 127 - 125 + - 129 + - 128 + - 126 - proto: SurveillanceCameraGeneral entities: - - uid: 1603 + - uid: 1675 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,1.5 parent: 1 - - uid: 1604 + - uid: 1676 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,1.5 parent: 1 - - uid: 1605 + - uid: 1677 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 - - uid: 1606 + - uid: 1678 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,3.5 parent: 1 - - uid: 1607 + - uid: 1679 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 1608 + - uid: 1680 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 1609 + - uid: 1681 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-9.5 parent: 1 - - uid: 1610 + - uid: 1682 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-9.5 parent: 1 - - uid: 1611 + - uid: 1683 components: - type: Transform pos: -5.5,-16.5 parent: 1 - - uid: 1612 + - uid: 1684 components: - type: Transform pos: -2.5,-16.5 parent: 1 - - uid: 1613 + - uid: 1685 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - uid: 1614 + - uid: 1686 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-11.5 parent: 1 - - uid: 1615 + - uid: 1687 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 1616 + - uid: 1688 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-8.5 parent: 1 - - uid: 1617 + - uid: 1689 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 - - uid: 1618 + - uid: 1690 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 1619 + - uid: 1691 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 1620 + - uid: 1692 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 1621 + - uid: 1693 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,18.5 parent: 1 - - uid: 1622 + - uid: 1694 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,18.5 parent: 1 - - uid: 1623 + - uid: 1695 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,28.5 parent: 1 - - uid: 1624 + - uid: 1696 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,34.5 parent: 1 - - uid: 1625 + - uid: 1697 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,34.5 parent: 1 - - uid: 1626 + - uid: 1698 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,37.5 parent: 1 - - uid: 1627 + - uid: 1699 components: - type: Transform rot: 1.5707963267948966 rad @@ -15458,159 +16686,142 @@ entities: parent: 1 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 1628 + - uid: 1700 components: - type: Transform pos: 5.5,13.5 parent: 1 - proto: Table entities: - - uid: 1629 + - uid: 1701 components: - type: Transform pos: 6.5,34.5 parent: 1 - - uid: 1630 + - uid: 1702 components: - type: Transform pos: 5.5,34.5 parent: 1 - proto: TableGlass entities: - - uid: 1631 + - uid: 1703 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 1632 - components: - - type: Transform - pos: -5.5,11.5 - parent: 1 - - uid: 1633 + - uid: 1704 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 1634 + - uid: 1705 components: - type: Transform pos: -4.5,11.5 parent: 1 - proto: TableReinforced entities: - - uid: 1635 + - uid: 1706 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 1636 + - uid: 1707 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-4.5 parent: 1 - - uid: 1637 + - uid: 1708 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 1 - - uid: 1638 + - uid: 1709 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-4.5 parent: 1 - - uid: 1639 + - uid: 1710 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-4.5 parent: 1 - - uid: 1640 + - uid: 1711 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-1.5 parent: 1 - - uid: 1641 + - uid: 1712 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 - - uid: 1642 + - uid: 1713 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 1 - - uid: 1643 + - uid: 1714 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-4.5 parent: 1 - - uid: 1644 + - uid: 1715 components: - type: Transform pos: -3.5,-11.5 parent: 1 - - uid: 1645 + - uid: 1716 components: - type: Transform pos: -4.5,-11.5 parent: 1 - - uid: 1646 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,5.5 - parent: 1 - - uid: 1647 + - uid: 1717 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-16.5 parent: 1 - - uid: 1648 + - uid: 1718 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-16.5 parent: 1 - - uid: 1649 + - uid: 1719 components: - type: Transform pos: 4.5,16.5 parent: 1 - - uid: 1650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,5.5 - parent: 1 - - uid: 1651 + - uid: 1720 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,17.5 parent: 1 - - uid: 1652 + - uid: 1721 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,18.5 parent: 1 - - uid: 1653 + - uid: 1722 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 1654 + - uid: 1723 components: - type: Transform rot: 1.5707963267948966 rad @@ -15618,25 +16829,25 @@ entities: parent: 1 - proto: TableWood entities: - - uid: 1655 + - uid: 1724 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-9.5 parent: 1 - - uid: 1656 + - uid: 1725 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-10.5 parent: 1 - - uid: 1657 + - uid: 1726 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 1 - - uid: 1658 + - uid: 1727 components: - type: Transform rot: 1.5707963267948966 rad @@ -15644,7 +16855,7 @@ entities: parent: 1 - proto: TelecomServer entities: - - uid: 1195 + - uid: 1229 components: - type: Transform pos: -4.5,13.5 @@ -15655,7 +16866,7 @@ entities: showEnts: False occludes: True ents: - - 1196 + - 1230 machine_board: !type:Container showEnts: False occludes: True @@ -15666,38 +16877,38 @@ entities: ents: [] - proto: TelecomServerFilledNovaBalreska entities: - - uid: 1659 + - uid: 1728 components: - type: Transform pos: 0.5,-5.5 parent: 1 - proto: ThrusterNCWLFighter entities: - - uid: 1660 + - uid: 1729 components: - type: Transform pos: -8.5,-7.5 parent: 1 - - uid: 1661 + - uid: 1730 components: - type: Transform pos: -9.5,-7.5 parent: 1 - proto: ThrusterNCWLWarship entities: - - uid: 1662 + - uid: 1731 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-10.5 parent: 1 - - uid: 1663 + - uid: 1732 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-18.5 parent: 1 - - uid: 1664 + - uid: 1733 components: - type: Transform rot: -1.5707963267948966 rad @@ -15705,85 +16916,85 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 1665 + - uid: 1734 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-18.5 parent: 1 - - uid: 1666 + - uid: 1735 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-12.5 parent: 1 - - uid: 1667 + - uid: 1736 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-11.5 parent: 1 - - uid: 1668 + - uid: 1737 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-18.5 parent: 1 - - uid: 1669 + - uid: 1738 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-18.5 parent: 1 - - uid: 1670 + - uid: 1739 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-19.5 parent: 1 - - uid: 1671 + - uid: 1740 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-18.5 parent: 1 - - uid: 1672 + - uid: 1741 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-18.5 parent: 1 - - uid: 1673 + - uid: 1742 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-18.5 parent: 1 - - uid: 1674 + - uid: 1743 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-18.5 parent: 1 - - uid: 1675 + - uid: 1744 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-11.5 parent: 1 - - uid: 1676 + - uid: 1745 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-12.5 parent: 1 - - uid: 1677 + - uid: 1746 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-14.5 parent: 1 - - uid: 1678 + - uid: 1747 components: - type: Transform rot: 3.141592653589793 rad @@ -15791,25 +17002,25 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 1679 + - uid: 1748 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-19.5 parent: 1 - - uid: 1680 + - uid: 1749 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 parent: 1 - - uid: 1681 + - uid: 1750 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-19.5 parent: 1 - - uid: 1682 + - uid: 1751 components: - type: Transform rot: -1.5707963267948966 rad @@ -15817,25 +17028,25 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 1683 + - uid: 1752 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,32.5 parent: 1 - - uid: 1684 + - uid: 1753 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,31.5 parent: 1 - - uid: 1685 + - uid: 1754 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,30.5 parent: 1 - - uid: 1686 + - uid: 1755 components: - type: Transform rot: -1.5707963267948966 rad @@ -15845,7 +17056,7 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 1 - - uid: 1687 + - uid: 1756 components: - type: Transform rot: -1.5707963267948966 rad @@ -15853,35 +17064,35 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 1688 + - uid: 1757 components: - type: Transform pos: 9.5,-7.5 parent: 1 - - uid: 1689 + - uid: 1758 components: - type: Transform pos: 10.5,-7.5 parent: 1 - - uid: 1690 + - uid: 1759 components: - type: Transform pos: 6.5,38.5 parent: 1 - - uid: 1691 + - uid: 1760 components: - type: Transform pos: -5.5,38.5 parent: 1 - proto: ToiletDirtyWater entities: - - uid: 1692 + - uid: 1761 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 1 - - uid: 1693 + - uid: 1762 components: - type: Transform rot: 1.5707963267948966 rad @@ -15889,70 +17100,70 @@ entities: parent: 1 - proto: ToolboxElectricalFilled entities: - - uid: 1694 + - uid: 1763 components: - type: Transform pos: -3.4924016,18.751282 parent: 1 - proto: ToolboxMechanicalFilled entities: - - uid: 1695 + - uid: 1764 components: - type: Transform pos: -3.4924016,18.498556 parent: 1 - proto: TwoWayLever entities: - - uid: 1696 + - uid: 1765 components: - type: Transform pos: -5.5,26.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 1104: + 1136: - - Left - Forward - - Right - Reverse - - Middle - Off - 1103: + 1135: - - Left - Forward - - Right - Reverse - - Middle - Off - 1102: + 1134: - - Left - Forward - - Right - Reverse - - Middle - Off - - uid: 1697 + - uid: 1766 components: - type: Transform pos: 6.5,26.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 1106: + 1138: - - Left - Forward - - Right - Reverse - - Middle - Off - 1105: + 1137: - - Left - Forward - - Right - Reverse - - Middle - Off - 1107: + 1139: - - Left - Forward - - Right @@ -15961,49 +17172,49 @@ entities: - Off - proto: UnionfallClementineMothershipComputer entities: - - uid: 1698 + - uid: 1767 components: - type: Transform pos: 1.5,28.5 parent: 1 - proto: UnionfallShipNodeNCWL entities: - - uid: 1699 + - uid: 1768 components: - type: Transform pos: 0.5,9.5 parent: 1 - proto: VendingMachineChemicals entities: - - uid: 1700 + - uid: 1769 components: - type: Transform pos: -4.5,8.5 parent: 1 - proto: VendingMachineColaBlack entities: - - uid: 1701 + - uid: 1770 components: - type: Transform pos: -4.5,-6.5 parent: 1 - proto: VendingMachineMedical entities: - - uid: 1702 + - uid: 1771 components: - type: Transform pos: -5.5,8.5 parent: 1 - proto: VendingMachineSalvage entities: - - uid: 1703 + - uid: 1772 components: - type: Transform pos: 4.5,18.5 parent: 1 - proto: VendingMachineSnack entities: - - uid: 1704 + - uid: 1773 components: - type: Transform rot: 3.141592653589793 rad @@ -16011,14 +17222,14 @@ entities: parent: 1 - proto: VendingMachineSnackOrange entities: - - uid: 1705 + - uid: 1774 components: - type: Transform pos: 5.5,-6.5 parent: 1 - proto: VendingMachineSoda entities: - - uid: 1706 + - uid: 1775 components: - type: Transform rot: 3.141592653589793 rad @@ -16026,14 +17237,14 @@ entities: parent: 1 - proto: VendingMachineSovietSoda entities: - - uid: 1707 + - uid: 1776 components: - type: Transform pos: -5.5,30.5 parent: 1 - proto: VendingMachineSustenance entities: - - uid: 1708 + - uid: 1777 components: - type: Transform rot: 3.141592653589793 rad @@ -16041,1849 +17252,1820 @@ entities: parent: 1 - proto: VendingMachineTankDispenserEVA entities: - - uid: 1709 + - uid: 1778 components: - type: Transform pos: 6.5,31.5 parent: 1 - - uid: 1710 + - uid: 1779 components: - type: Transform pos: 6.5,30.5 parent: 1 - - uid: 1711 + - uid: 1780 components: - type: Transform pos: -6.5,24.5 parent: 1 - - uid: 1712 + - uid: 1781 components: - type: Transform pos: 7.5,24.5 parent: 1 - proto: VendingMachineYouTool entities: - - uid: 1713 + - uid: 1782 components: - type: Transform pos: -3.5,15.5 parent: 1 - proto: WallPlastitanium entities: - - uid: 1714 + - uid: 1783 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-5.5 parent: 1 - - uid: 1715 + - uid: 1784 components: - type: Transform pos: 4.5,-4.5 parent: 1 - - uid: 1716 + - uid: 1785 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 1717 + - uid: 1786 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-8.5 parent: 1 - - uid: 1718 + - uid: 1787 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 1719 + - uid: 1788 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-9.5 parent: 1 - - uid: 1720 + - uid: 1789 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 1721 + - uid: 1790 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 1722 + - uid: 1791 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 1723 + - uid: 1792 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 1724 + - uid: 1793 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 1725 + - uid: 1794 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 1 - - uid: 1726 + - uid: 1795 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 1 - - uid: 1727 + - uid: 1796 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-5.5 parent: 1 - - uid: 1728 + - uid: 1797 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-6.5 parent: 1 - - uid: 1729 + - uid: 1798 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-7.5 parent: 1 - - uid: 1730 + - uid: 1799 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-7.5 parent: 1 - - uid: 1731 + - uid: 1800 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-7.5 parent: 1 - - uid: 1732 + - uid: 1801 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 1 - - uid: 1733 + - uid: 1802 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 1 - - uid: 1734 + - uid: 1803 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-7.5 parent: 1 - - uid: 1735 + - uid: 1804 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-6.5 parent: 1 - - uid: 1736 + - uid: 1805 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-10.5 parent: 1 - - uid: 1737 + - uid: 1806 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-11.5 parent: 1 - - uid: 1738 + - uid: 1807 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-11.5 parent: 1 - - uid: 1739 + - uid: 1808 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-10.5 parent: 1 - - uid: 1740 + - uid: 1809 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-9.5 parent: 1 - - uid: 1741 + - uid: 1810 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 1 - - uid: 1742 + - uid: 1811 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 1743 + - uid: 1812 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 1744 + - uid: 1813 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 1745 + - uid: 1814 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 1746 + - uid: 1815 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 1747 + - uid: 1816 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 1748 + - uid: 1817 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 1749 + - uid: 1818 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 1750 + - uid: 1819 components: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 1751 + - uid: 1820 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 1752 + - uid: 1821 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,30.5 parent: 1 - - uid: 1753 + - uid: 1822 components: - type: Transform pos: 1.5,-18.5 parent: 1 - - uid: 1754 + - uid: 1823 components: - type: Transform pos: -4.5,-7.5 parent: 1 - - uid: 1755 + - uid: 1824 components: - type: Transform pos: -4.5,-8.5 parent: 1 - - uid: 1756 + - uid: 1825 components: - type: Transform pos: -4.5,-9.5 parent: 1 - - uid: 1757 + - uid: 1826 components: - type: Transform pos: -4.5,-10.5 parent: 1 - - uid: 1758 + - uid: 1827 components: - type: Transform pos: -3.5,-10.5 parent: 1 - - uid: 1759 + - uid: 1828 components: - type: Transform pos: -10.5,-12.5 parent: 1 - - uid: 1760 + - uid: 1829 components: - type: Transform pos: -1.5,-17.5 parent: 1 - - uid: 1761 + - uid: 1830 components: - type: Transform pos: -0.5,-17.5 parent: 1 - - uid: 1762 + - uid: 1831 components: - type: Transform pos: -2.5,-18.5 parent: 1 - - uid: 1763 + - uid: 1832 components: - type: Transform pos: -3.5,-17.5 parent: 1 - - uid: 1764 + - uid: 1833 components: - type: Transform pos: -5.5,-17.5 parent: 1 - - uid: 1765 + - uid: 1834 components: - type: Transform pos: -7.5,-17.5 parent: 1 - - uid: 1766 + - uid: 1835 components: - type: Transform pos: 11.5,-12.5 parent: 1 - - uid: 1767 + - uid: 1836 components: - type: Transform pos: 11.5,-10.5 parent: 1 - - uid: 1768 + - uid: 1837 components: - type: Transform pos: 11.5,-9.5 parent: 1 - - uid: 1769 + - uid: 1838 components: - type: Transform pos: -10.5,-10.5 parent: 1 - - uid: 1770 + - uid: 1839 components: - type: Transform pos: -10.5,-13.5 parent: 1 - - uid: 1771 + - uid: 1840 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-6.5 parent: 1 - - uid: 1772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,21.5 - parent: 1 - - uid: 1773 + - uid: 1841 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 1774 + - uid: 1842 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 1 - - uid: 1775 + - uid: 1843 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,13.5 parent: 1 - - uid: 1776 + - uid: 1844 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-0.5 parent: 1 - - uid: 1777 + - uid: 1845 components: - type: Transform pos: -11.5,-13.5 parent: 1 - - uid: 1778 + - uid: 1846 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-7.5 parent: 1 - - uid: 1779 + - uid: 1847 components: - type: Transform pos: 5.5,-7.5 parent: 1 - - uid: 1780 + - uid: 1848 components: - type: Transform pos: 8.5,-15.5 parent: 1 - - uid: 1781 + - uid: 1849 components: - type: Transform pos: 8.5,-17.5 parent: 1 - - uid: 1782 + - uid: 1850 components: - type: Transform pos: 5.5,-17.5 parent: 1 - - uid: 1783 + - uid: 1851 components: - type: Transform pos: -1.5,-18.5 parent: 1 - - uid: 1784 + - uid: 1852 components: - type: Transform pos: 1.5,-17.5 parent: 1 - - uid: 1785 + - uid: 1853 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-4.5 parent: 1 - - uid: 1786 + - uid: 1854 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-6.5 parent: 1 - - uid: 1787 + - uid: 1855 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-7.5 parent: 1 - - uid: 1788 + - uid: 1856 components: - type: Transform pos: 12.5,-13.5 parent: 1 - - uid: 1789 + - uid: 1857 components: - type: Transform pos: -7.5,-15.5 parent: 1 - - uid: 1790 + - uid: 1858 components: - type: Transform pos: -7.5,-16.5 parent: 1 - - uid: 1791 + - uid: 1859 components: - type: Transform pos: 9.5,-15.5 parent: 1 - - uid: 1792 + - uid: 1860 components: - type: Transform pos: 8.5,-18.5 parent: 1 - - uid: 1793 + - uid: 1861 components: - type: Transform pos: 6.5,-17.5 parent: 1 - - uid: 1794 + - uid: 1862 components: - type: Transform pos: 3.5,-17.5 parent: 1 - - uid: 1795 + - uid: 1863 components: - type: Transform pos: 3.5,-18.5 parent: 1 - - uid: 1796 + - uid: 1864 components: - type: Transform pos: 11.5,-13.5 parent: 1 - - uid: 1797 + - uid: 1865 components: - type: Transform pos: 4.5,-17.5 parent: 1 - - uid: 1798 + - uid: 1866 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 1799 + - uid: 1867 components: - type: Transform pos: 0.5,-17.5 parent: 1 - - uid: 1800 + - uid: 1868 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-4.5 parent: 1 - - uid: 1801 + - uid: 1869 components: - type: Transform pos: 7.5,-17.5 parent: 1 - - uid: 1802 + - uid: 1870 components: - type: Transform pos: 8.5,-16.5 parent: 1 - - uid: 1803 + - uid: 1871 components: - type: Transform pos: -2.5,-17.5 parent: 1 - - uid: 1804 + - uid: 1872 components: - type: Transform pos: -4.5,-17.5 parent: 1 - - uid: 1805 + - uid: 1873 components: - type: Transform pos: -6.5,-17.5 parent: 1 - - uid: 1806 + - uid: 1874 components: - type: Transform pos: -7.5,-18.5 parent: 1 - - uid: 1807 + - uid: 1875 components: - type: Transform pos: 11.5,-11.5 parent: 1 - - uid: 1808 + - uid: 1876 components: - type: Transform pos: -10.5,-11.5 parent: 1 - - uid: 1809 + - uid: 1877 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 1810 + - uid: 1878 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 1 - - uid: 1811 + - uid: 1879 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-5.5 parent: 1 - - uid: 1812 + - uid: 1880 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 1813 + - uid: 1881 components: - type: Transform pos: 10.5,-13.5 parent: 1 - - uid: 1814 + - uid: 1882 components: - type: Transform pos: 10.5,-14.5 parent: 1 - - uid: 1815 + - uid: 1883 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 1 - - uid: 1816 + - uid: 1884 components: - type: Transform pos: 2.5,-18.5 parent: 1 - - uid: 1817 + - uid: 1885 components: - type: Transform pos: 0.5,-18.5 parent: 1 - - uid: 1818 + - uid: 1886 components: - type: Transform pos: -0.5,-18.5 parent: 1 - - uid: 1819 + - uid: 1887 components: - type: Transform pos: 8.5,-8.5 parent: 1 - - uid: 1820 + - uid: 1888 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 1821 + - uid: 1889 components: - type: Transform pos: 12.5,-14.5 parent: 1 - - uid: 1822 + - uid: 1890 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-8.5 parent: 1 - - uid: 1823 + - uid: 1891 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-9.5 parent: 1 - - uid: 1824 + - uid: 1892 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-8.5 parent: 1 - - uid: 1825 + - uid: 1893 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-8.5 parent: 1 - - uid: 1826 + - uid: 1894 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-8.5 parent: 1 - - uid: 1827 + - uid: 1895 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-9.5 parent: 1 - - uid: 1828 + - uid: 1896 components: - type: Transform pos: 8.5,-12.5 parent: 1 - - uid: 1829 + - uid: 1897 components: - type: Transform pos: -6.5,-7.5 parent: 1 - - uid: 1830 + - uid: 1898 components: - type: Transform pos: -6.5,-8.5 parent: 1 - - uid: 1831 + - uid: 1899 components: - type: Transform pos: -6.5,-9.5 parent: 1 - - uid: 1832 + - uid: 1900 components: - type: Transform pos: -6.5,-13.5 parent: 1 - - uid: 1833 + - uid: 1901 components: - type: Transform pos: -6.5,-14.5 parent: 1 - - uid: 1834 + - uid: 1902 components: - type: Transform pos: -6.5,-15.5 parent: 1 - - uid: 1835 + - uid: 1903 components: - type: Transform pos: -0.5,-12.5 parent: 1 - - uid: 1836 + - uid: 1904 components: - type: Transform pos: -0.5,-14.5 parent: 1 - - uid: 1837 + - uid: 1905 components: - type: Transform pos: -0.5,-15.5 parent: 1 - - uid: 1838 + - uid: 1906 components: - type: Transform pos: -0.5,-16.5 parent: 1 - - uid: 1839 + - uid: 1907 components: - type: Transform pos: 1.5,-16.5 parent: 1 - - uid: 1840 + - uid: 1908 components: - type: Transform pos: 1.5,-14.5 parent: 1 - - uid: 1841 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 1 - - uid: 1842 + - uid: 1909 components: - type: Transform pos: 1.5,-12.5 parent: 1 - - uid: 1843 + - uid: 1910 components: - type: Transform pos: -3.5,-14.5 parent: 1 - - uid: 1844 + - uid: 1911 components: - type: Transform pos: -3.5,-15.5 parent: 1 - - uid: 1845 + - uid: 1912 components: - type: Transform pos: -3.5,-16.5 parent: 1 - - uid: 1846 + - uid: 1913 components: - type: Transform pos: -6.5,-16.5 parent: 1 - - uid: 1847 + - uid: 1914 components: - type: Transform pos: 8.5,-9.5 parent: 1 - - uid: 1848 + - uid: 1915 components: - type: Transform pos: 8.5,-10.5 parent: 1 - - uid: 1849 + - uid: 1916 components: - type: Transform pos: 2.5,-14.5 parent: 1 - - uid: 1850 + - uid: 1917 components: - type: Transform pos: 8.5,-14.5 parent: 1 - - uid: 1851 + - uid: 1918 components: - type: Transform pos: 8.5,-13.5 parent: 1 - - uid: 1852 + - uid: 1919 components: - type: Transform pos: 9.5,-14.5 parent: 1 - - uid: 1853 + - uid: 1920 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 1854 + - uid: 1921 components: - type: Transform pos: 3.5,-14.5 parent: 1 - - uid: 1855 + - uid: 1922 components: - type: Transform pos: 6.5,-16.5 parent: 1 - - uid: 1856 + - uid: 1923 components: - type: Transform pos: 4.5,-14.5 parent: 1 - - uid: 1857 + - uid: 1924 components: - type: Transform pos: 6.5,-14.5 parent: 1 - - uid: 1858 + - uid: 1925 components: - type: Transform pos: 7.5,-14.5 parent: 1 - - uid: 1859 + - uid: 1926 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - uid: 1860 + - uid: 1927 components: - type: Transform pos: 4.5,-16.5 parent: 1 - - uid: 1861 + - uid: 1928 components: - type: Transform pos: 2.5,-17.5 parent: 1 - - uid: 1862 + - uid: 1929 components: - type: Transform pos: -4.5,37.5 parent: 1 - - uid: 1863 + - uid: 1930 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,4.5 parent: 1 - - uid: 1864 + - uid: 1931 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,3.5 parent: 1 - - uid: 1865 + - uid: 1932 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,5.5 parent: 1 - - uid: 1866 + - uid: 1933 components: - type: Transform pos: -8.5,7.5 parent: 1 - - uid: 1867 + - uid: 1934 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,3.5 parent: 1 - - uid: 1868 + - uid: 1935 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,4.5 parent: 1 - - uid: 1869 + - uid: 1936 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 1 - - uid: 1870 + - uid: 1937 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 1 - - uid: 1871 + - uid: 1938 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,4.5 parent: 1 - - uid: 1872 + - uid: 1939 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,4.5 parent: 1 - - uid: 1873 + - uid: 1940 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,4.5 parent: 1 - - uid: 1874 + - uid: 1941 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 1875 + - uid: 1942 components: - type: Transform pos: 9.5,11.5 parent: 1 - - uid: 1876 + - uid: 1943 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,12.5 parent: 1 - - uid: 1877 + - uid: 1944 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,6.5 parent: 1 - - uid: 1878 + - uid: 1945 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,7.5 parent: 1 - - uid: 1879 + - uid: 1946 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,8.5 parent: 1 - - uid: 1880 + - uid: 1947 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 1 - - uid: 1881 + - uid: 1948 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,10.5 parent: 1 - - uid: 1882 + - uid: 1949 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 1883 + - uid: 1950 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,11.5 parent: 1 - - uid: 1884 + - uid: 1951 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 1 - - uid: 1885 + - uid: 1952 components: - type: Transform pos: -6.5,12.5 parent: 1 - - uid: 1886 + - uid: 1953 components: - type: Transform pos: -6.5,14.5 parent: 1 - - uid: 1887 + - uid: 1954 components: - type: Transform pos: -6.5,15.5 parent: 1 - - uid: 1888 + - uid: 1955 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,23.5 parent: 1 - - uid: 1889 + - uid: 1956 components: - type: Transform pos: -6.5,21.5 parent: 1 - - uid: 1890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,14.5 - parent: 1 - - uid: 1891 + - uid: 1957 components: - type: Transform pos: -6.5,23.5 parent: 1 - - uid: 1892 + - uid: 1958 components: - type: Transform pos: 7.5,12.5 parent: 1 - - uid: 1893 + - uid: 1959 components: - type: Transform pos: 7.5,14.5 parent: 1 - - uid: 1894 + - uid: 1960 components: - type: Transform pos: 7.5,15.5 parent: 1 - - uid: 1895 + - uid: 1961 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,23.5 parent: 1 - - uid: 1896 + - uid: 1962 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,24.5 parent: 1 - - uid: 1897 + - uid: 1963 components: - type: Transform pos: 7.5,21.5 parent: 1 - - uid: 1898 + - uid: 1964 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 1899 + - uid: 1965 components: - type: Transform pos: 7.5,23.5 parent: 1 - - uid: 1900 + - uid: 1966 components: - type: Transform pos: -7.5,33.5 parent: 1 - - uid: 1901 + - uid: 1967 components: - type: Transform pos: 8.5,33.5 parent: 1 - - uid: 1902 + - uid: 1968 components: - type: Transform pos: 5.5,37.5 parent: 1 - - uid: 1903 + - uid: 1969 components: - type: Transform pos: -7.5,29.5 parent: 1 - - uid: 1904 + - uid: 1970 components: - type: Transform pos: -1.5,37.5 parent: 1 - - uid: 1905 + - uid: 1971 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,34.5 parent: 1 - - uid: 1906 + - uid: 1972 components: - type: Transform pos: -2.5,33.5 parent: 1 - - uid: 1907 + - uid: 1973 components: - type: Transform pos: 8.5,29.5 parent: 1 - - uid: 1908 + - uid: 1974 components: - type: Transform pos: 6.5,-7.5 parent: 1 - - uid: 1909 + - uid: 1975 components: - type: Transform pos: -6.5,32.5 parent: 1 - - uid: 1910 + - uid: 1976 components: - type: Transform pos: -6.5,31.5 parent: 1 - - uid: 1911 + - uid: 1977 components: - type: Transform pos: 7.5,31.5 parent: 1 - - uid: 1912 + - uid: 1978 components: - type: Transform pos: 6.5,36.5 parent: 1 - - uid: 1913 + - uid: 1979 components: - type: Transform pos: 7.5,32.5 parent: 1 - - uid: 1914 + - uid: 1980 components: - type: Transform pos: -1.5,35.5 parent: 1 - - uid: 1915 + - uid: 1981 components: - type: Transform pos: -5.5,36.5 parent: 1 - - uid: 1916 + - uid: 1982 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,34.5 parent: 1 - - uid: 1917 + - uid: 1983 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,35.5 parent: 1 - - uid: 1918 + - uid: 1984 components: - type: Transform pos: -1.5,38.5 parent: 1 - - uid: 1919 + - uid: 1985 components: - type: Transform pos: -1.5,36.5 parent: 1 - - uid: 1920 + - uid: 1986 components: - type: Transform pos: -5.5,35.5 parent: 1 - - uid: 1921 + - uid: 1987 components: - type: Transform pos: 6.5,35.5 parent: 1 - - uid: 1922 + - uid: 1988 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,12.5 parent: 1 - - uid: 1923 + - uid: 1989 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,12.5 parent: 1 - - uid: 1924 + - uid: 1990 components: - type: Transform pos: 7.5,33.5 parent: 1 - - uid: 1925 + - uid: 1991 components: - type: Transform pos: -6.5,33.5 parent: 1 - - uid: 1926 + - uid: 1992 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,12.5 parent: 1 - - uid: 1927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,14.5 - parent: 1 - - uid: 1928 + - uid: 1993 components: - type: Transform pos: -6.5,29.5 parent: 1 - - uid: 1929 + - uid: 1994 components: - type: Transform pos: -6.5,30.5 parent: 1 - - uid: 1930 + - uid: 1995 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,30.5 parent: 1 - - uid: 1931 + - uid: 1996 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 1 - - uid: 1932 + - uid: 1997 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 1 - - uid: 1933 + - uid: 1998 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,5.5 parent: 1 - - uid: 1934 + - uid: 1999 components: - type: Transform pos: 9.5,8.5 parent: 1 - - uid: 1935 + - uid: 2000 components: - type: Transform pos: 9.5,10.5 parent: 1 - - uid: 1936 + - uid: 2001 components: - type: Transform pos: 9.5,6.5 parent: 1 - - uid: 1937 + - uid: 2002 components: - type: Transform pos: 9.5,5.5 parent: 1 - - uid: 1938 + - uid: 2003 components: - type: Transform pos: 9.5,7.5 parent: 1 - - uid: 1939 + - uid: 2004 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,12.5 parent: 1 - - uid: 1940 + - uid: 2005 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,12.5 parent: 1 - - uid: 1941 + - uid: 2006 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 1 - - uid: 1942 + - uid: 2007 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 1 - - uid: 1943 + - uid: 2008 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,6.5 parent: 1 - - uid: 1944 + - uid: 2009 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,7.5 parent: 1 - - uid: 1945 + - uid: 2010 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - - uid: 1946 + - uid: 2011 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,10.5 parent: 1 - - uid: 1947 + - uid: 2012 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,11.5 parent: 1 - - uid: 1948 + - uid: 2013 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 1 - - uid: 1949 + - uid: 2014 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 1950 + - uid: 2015 components: - type: Transform pos: 4.5,13.5 parent: 1 - - uid: 1951 + - uid: 2016 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 1952 + - uid: 2017 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 1953 + - uid: 2018 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 1954 + - uid: 2019 components: - type: Transform pos: -2.5,13.5 parent: 1 - - uid: 1955 + - uid: 2020 components: - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 1956 + - uid: 2021 components: - type: Transform pos: 2.5,36.5 parent: 1 - - uid: 1957 + - uid: 2022 components: - type: Transform pos: 2.5,37.5 parent: 1 - - uid: 1958 + - uid: 2023 components: - type: Transform pos: 2.5,38.5 parent: 1 - - uid: 1959 + - uid: 2024 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,38.5 parent: 1 - - uid: 1960 + - uid: 2025 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,38.5 parent: 1 - - uid: 1961 + - uid: 2026 components: - type: Transform pos: 2.5,35.5 parent: 1 - - uid: 1962 + - uid: 2027 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 1963 + - uid: 2028 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,28.5 parent: 1 - - uid: 1964 + - uid: 2029 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,28.5 parent: 1 - - uid: 1965 + - uid: 2030 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,24.5 parent: 1 - - uid: 1966 + - uid: 2031 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,29.5 parent: 1 - - uid: 1967 + - uid: 2032 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,28.5 parent: 1 - - uid: 1968 + - uid: 2033 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,24.5 parent: 1 - - uid: 1969 + - uid: 2034 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,23.5 parent: 1 - - uid: 1970 + - uid: 2035 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,22.5 parent: 1 - - uid: 1971 + - uid: 2036 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,21.5 parent: 1 - - uid: 1972 + - uid: 2037 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,20.5 parent: 1 - - uid: 1973 + - uid: 2038 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,19.5 parent: 1 - - uid: 1974 + - uid: 2039 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,18.5 parent: 1 - - uid: 1975 + - uid: 2040 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,17.5 parent: 1 - - uid: 1976 + - uid: 2041 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,16.5 parent: 1 - - uid: 1977 + - uid: 2042 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,15.5 parent: 1 - - uid: 1978 + - uid: 2043 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,14.5 parent: 1 - - uid: 1979 + - uid: 2044 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,14.5 parent: 1 - - uid: 1980 + - uid: 2045 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,15.5 parent: 1 - - uid: 1981 + - uid: 2046 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,14.5 parent: 1 - - uid: 1982 + - uid: 2047 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,14.5 parent: 1 - - uid: 1983 + - uid: 2048 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,16.5 parent: 1 - - uid: 1984 + - uid: 2049 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,17.5 parent: 1 - - uid: 1985 + - uid: 2050 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,18.5 parent: 1 - - uid: 1986 + - uid: 2051 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,19.5 parent: 1 - - uid: 1987 + - uid: 2052 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,20.5 parent: 1 - - uid: 1988 + - uid: 2053 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,21.5 parent: 1 - - uid: 1989 + - uid: 2054 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,22.5 parent: 1 - - uid: 1990 + - uid: 2055 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,23.5 parent: 1 - - uid: 1991 + - uid: 2056 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,24.5 parent: 1 - - uid: 1992 + - uid: 2057 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,28.5 parent: 1 - - uid: 1993 + - uid: 2058 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,29.5 parent: 1 - - uid: 1994 + - uid: 2059 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,29.5 parent: 1 - - uid: 1995 + - uid: 2060 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,35.5 parent: 1 - - uid: 1996 + - uid: 2061 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,29.5 parent: 1 - - uid: 1997 + - uid: 2062 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,29.5 parent: 1 - - uid: 1998 + - uid: 2063 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,35.5 parent: 1 - - uid: 1999 + - uid: 2064 components: - type: Transform pos: 1.5,29.5 parent: 1 - - uid: 2000 + - uid: 2065 components: - type: Transform pos: -2.5,35.5 parent: 1 - - uid: 2001 + - uid: 2066 components: - type: Transform pos: -5.5,29.5 parent: 1 - - uid: 2002 + - uid: 2067 components: - type: Transform pos: 6.5,29.5 parent: 1 - - uid: 2003 + - uid: 2068 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,14.5 parent: 1 - - uid: 2004 + - uid: 2069 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,15.5 parent: 1 - - uid: 2005 + - uid: 2070 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,17.5 parent: 1 - - uid: 2006 + - uid: 2071 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,18.5 parent: 1 - - uid: 2007 + - uid: 2072 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,29.5 parent: 1 - - uid: 2008 + - uid: 2073 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,29.5 parent: 1 - - uid: 2009 + - uid: 2074 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,14.5 parent: 1 - - uid: 2010 + - uid: 2075 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,15.5 parent: 1 - - uid: 2011 + - uid: 2076 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,32.5 parent: 1 - - uid: 2012 + - uid: 2077 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,17.5 parent: 1 - - uid: 2013 + - uid: 2078 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,18.5 parent: 1 - - uid: 2014 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,21.5 - parent: 1 - - uid: 2015 + - uid: 2079 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,19.5 parent: 1 - - uid: 2016 + - uid: 2080 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,19.5 parent: 1 - - uid: 2017 + - uid: 2081 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,19.5 parent: 1 - - uid: 2018 + - uid: 2082 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,19.5 parent: 1 - - uid: 2019 + - uid: 2083 components: - type: Transform pos: 3.5,35.5 parent: 1 - - uid: 2020 + - uid: 2084 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,19.5 parent: 1 - - uid: 2021 + - uid: 2085 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,34.5 parent: 1 - - uid: 2022 + - uid: 2086 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 2023 + - uid: 2087 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 2024 + - uid: 2088 components: - type: Transform pos: -5.5,37.5 parent: 1 - - uid: 2025 + - uid: 2089 components: - type: Transform pos: -4.5,38.5 parent: 1 - - uid: 2026 + - uid: 2090 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,35.5 parent: 1 - - uid: 2027 + - uid: 2091 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-11.5 parent: 1 - - uid: 2028 + - uid: 2092 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,30.5 parent: 1 - - uid: 2029 + - uid: 2093 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,29.5 parent: 1 - - uid: 2030 + - uid: 2094 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,32.5 parent: 1 - - uid: 2031 + - uid: 2095 components: - type: Transform pos: -8.5,4.5 parent: 1 - - uid: 2032 + - uid: 2096 components: - type: Transform pos: -2.5,34.5 parent: 1 - - uid: 2033 + - uid: 2097 components: - type: Transform pos: 9.5,9.5 parent: 1 - - uid: 2034 + - uid: 2098 components: - type: Transform pos: -8.5,5.5 parent: 1 - - uid: 2035 + - uid: 2099 components: - type: Transform pos: 6.5,37.5 parent: 1 - - uid: 2036 + - uid: 2100 components: - type: Transform pos: 5.5,38.5 parent: 1 - - uid: 2037 + - uid: 2101 components: - type: Transform pos: -7.5,3.5 parent: 1 - - uid: 2038 + - uid: 2102 components: - type: Transform pos: -7.5,-4.5 parent: 1 - - uid: 2039 + - uid: 2103 components: - type: Transform pos: -8.5,10.5 parent: 1 - - uid: 2040 + - uid: 2104 components: - type: Transform pos: -8.5,9.5 parent: 1 - - uid: 2041 + - uid: 2105 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,29.5 parent: 1 - - uid: 2042 + - uid: 2106 components: - type: Transform pos: -8.5,11.5 parent: 1 - - uid: 2043 + - uid: 2107 components: - type: Transform pos: 8.5,-4.5 parent: 1 - - uid: 2044 + - uid: 2108 components: - type: Transform pos: -8.5,8.5 parent: 1 - - uid: 2045 + - uid: 2109 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-11.5 parent: 1 - - uid: 2046 + - uid: 2110 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-11.5 parent: 1 - - uid: 2047 + - uid: 2111 components: - type: Transform rot: -1.5707963267948966 rad @@ -17891,118 +19073,120 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 2048 + - uid: 2112 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 2049 + - uid: 2113 components: - type: Transform pos: -11.5,-9.5 parent: 1 - - uid: 2050 + - uid: 2114 components: - type: Transform pos: -8.5,28.5 parent: 1 - - uid: 2051 + - uid: 2115 components: - type: Transform pos: -8.5,12.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestCurved entities: - - uid: 2052 + - uid: 2116 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 2053 + - uid: 2117 components: - type: Transform pos: 12.5,-9.5 parent: 1 - - uid: 2054 + - uid: 2118 components: - type: Transform pos: 9.5,28.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestHollow entities: - - uid: 2055 + - uid: 2119 components: - type: Transform pos: 9.5,12.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastCurved entities: - - uid: 2056 + - uid: 2120 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 2057 + - uid: 2121 components: - type: Transform pos: -2.5,-19.5 parent: 1 - - uid: 2058 + - uid: 2122 components: - type: Transform pos: -8.5,3.5 parent: 1 - - uid: 2059 + - uid: 2123 components: - type: Transform pos: -8.5,24.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestCurved entities: - - uid: 2060 + - uid: 2124 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 2061 + - uid: 2125 components: - type: Transform pos: 3.5,-19.5 parent: 1 - - uid: 2062 + - uid: 2126 components: - type: Transform pos: 9.5,24.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestHollow entities: - - uid: 2063 + - uid: 2127 components: - type: Transform pos: 10.5,-15.5 parent: 1 - - uid: 2064 + - uid: 2128 components: - type: Transform pos: 9.5,4.5 parent: 1 - proto: WarpPointShip entities: - - uid: 2065 + - uid: 2129 components: + - type: MetaData + name: NCWL Dear Clementine - type: Transform pos: 0.5,-3.5 parent: 1 - proto: WaterCooler entities: - - uid: 2066 + - uid: 2130 components: - type: Transform pos: 2.5,-6.5 parent: 1 - proto: WeaponTurretMortar entities: - - uid: 2067 + - uid: 2131 components: - type: Transform rot: 1.5707963267948966 rad @@ -18035,8 +19219,8 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 1097 - - uid: 2068 + linkedConsoleId: 1128 + - uid: 2132 components: - type: Transform rot: -1.5707963267948966 rad @@ -18069,8 +19253,8 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 1097 - - uid: 2069 + linkedConsoleId: 1128 + - uid: 2133 components: - type: Transform rot: 1.5707963267948966 rad @@ -18103,13 +19287,15 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 1097 - - uid: 2070 + linkedConsoleId: 1128 + - uid: 2134 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-3.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1128 - type: ApcPowerReceiver powerLoad: 5 - type: Battery @@ -18136,7 +19322,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 2071 + - uid: 2135 components: - type: Transform rot: -1.5707963267948966 rad @@ -18169,13 +19355,15 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 1097 - - uid: 2072 + linkedConsoleId: 1128 + - uid: 2136 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,2.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1128 - type: ApcPowerReceiver powerLoad: 5 - type: Battery @@ -18202,12 +19390,14 @@ entities: showEnts: False occludes: True ents: [] - - uid: 2073 + - uid: 2137 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-3.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1128 - type: ApcPowerReceiver powerLoad: 5 - type: Battery @@ -18234,12 +19424,14 @@ entities: showEnts: False occludes: True ents: [] - - uid: 2074 + - uid: 2138 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,2.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1128 - type: ApcPowerReceiver powerLoad: 5 - type: Battery @@ -18268,7 +19460,7 @@ entities: ents: [] - proto: WeaponTurretPDT entities: - - uid: 2075 + - uid: 2139 components: - type: Transform rot: 3.141592653589793 rad @@ -18293,8 +19485,8 @@ entities: - type: Battery startingCharge: 0 - type: PointCannon - linkedConsoleId: 1097 - - uid: 2076 + linkedConsoleId: 1128 + - uid: 2140 components: - type: Transform rot: 3.141592653589793 rad @@ -18319,8 +19511,8 @@ entities: - type: Battery startingCharge: 0 - type: PointCannon - linkedConsoleId: 1097 - - uid: 2077 + linkedConsoleId: 1128 + - uid: 2141 components: - type: Transform rot: 3.141592653589793 rad @@ -18345,12 +19537,14 @@ entities: - type: Battery startingCharge: 0 - type: PointCannon - linkedConsoleId: 1097 - - uid: 2078 + linkedConsoleId: 1128 + - uid: 2142 components: - type: Transform pos: -7.5,-19.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1128 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -18369,12 +19563,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2079 + - uid: 2143 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-8.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1128 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -18393,12 +19589,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2080 + - uid: 2144 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-8.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1128 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -18417,12 +19615,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2081 + - uid: 2145 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1128 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -18441,12 +19641,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2082 + - uid: 2146 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1128 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -18465,12 +19667,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2083 + - uid: 2147 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,13.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1128 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -18489,12 +19693,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2084 + - uid: 2148 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,22.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1128 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -18513,12 +19719,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2085 + - uid: 2149 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,22.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1128 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -18537,12 +19745,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2086 + - uid: 2150 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,13.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1128 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -18561,12 +19771,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2087 + - uid: 2151 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,36.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1128 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -18585,12 +19797,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2088 + - uid: 2152 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,18.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1128 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -18609,12 +19823,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2089 + - uid: 2153 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,18.5 parent: 1 + - type: PointCannon + linkedConsoleId: 1128 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -18633,7 +19849,7 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2090 + - uid: 2154 components: - type: Transform pos: 0.5,-20.5 @@ -18657,8 +19873,8 @@ entities: - type: Battery startingCharge: 0 - type: PointCannon - linkedConsoleId: 1097 - - uid: 2091 + linkedConsoleId: 1128 + - uid: 2155 components: - type: Transform pos: 8.5,-19.5 @@ -18682,51 +19898,51 @@ entities: - type: Battery startingCharge: 0 - type: PointCannon - linkedConsoleId: 1097 + linkedConsoleId: 1128 - proto: WindoorSecure entities: - - uid: 2092 + - uid: 2156 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 2093 + - uid: 2157 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,36.5 parent: 1 - - uid: 2094 + - uid: 2158 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,36.5 parent: 1 - - uid: 2095 + - uid: 2159 components: - type: Transform pos: 6.5,-12.5 parent: 1 - - uid: 2096 + - uid: 2160 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,13.5 parent: 1 - - uid: 2097 + - uid: 2161 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,13.5 parent: 1 - - uid: 2098 + - uid: 2162 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,4.5 parent: 1 - - uid: 2099 + - uid: 2163 components: - type: Transform rot: 3.141592653589793 rad @@ -18734,60 +19950,60 @@ entities: parent: 1 - proto: WindoorSecureNCWLCommand entities: - - uid: 2100 + - uid: 2164 components: - type: Transform pos: 1.5,-7.5 parent: 1 - proto: WindowReinforcedDirectional entities: - - uid: 2101 + - uid: 2165 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-8.5 parent: 1 - - uid: 2102 + - uid: 2166 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-12.5 parent: 1 - - uid: 2103 + - uid: 2167 components: - type: Transform pos: 3.5,-12.5 parent: 1 - - uid: 2104 + - uid: 2168 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-12.5 parent: 1 - - uid: 2105 + - uid: 2169 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-11.5 parent: 1 - - uid: 2106 + - uid: 2170 components: - type: Transform pos: 4.5,-12.5 parent: 1 - - uid: 2107 + - uid: 2171 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-9.5 parent: 1 - - uid: 2108 + - uid: 2172 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-10.5 parent: 1 - - uid: 2109 + - uid: 2173 components: - type: Transform pos: 5.5,-12.5 diff --git a/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml b/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml index 3ad233231c6..b7175e921a2 100644 --- a/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml +++ b/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml @@ -4,8 +4,8 @@ meta: engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 03/10/2026 14:35:15 - entityCount: 1749 + time: 03/10/2026 23:04:44 + entityCount: 1805 maps: [] grids: - 1 @@ -14,6 +14,8 @@ orphans: nullspace: [] tilemap: 0: Space + 19: FloorBrokenWood + 17: FloorDark 1: FloorDarkDiagonal 6: FloorDarkDiagonalMini 12: FloorDarkMono @@ -25,9 +27,11 @@ tilemap: 2: FloorTechMaint 7: FloorTechMaint2 14: FloorTechMaintDirectional + 20: FloorWhite 4: FloorWhiteOffset 9: FloorWhitePavementVertical 5: FloorWood + 18: FloorWoodHouseBroken 129: Lattice 130: Plating 16: PlatingBurnt @@ -47,27 +51,27 @@ entities: chunks: 0,0: ind: 0,0 - tiles: BgAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAA8AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAGAAAAAAAABgAAAAAAAIIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAIIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAAMAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAAADAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAIIAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAIIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAggAAAAAAAAEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAIIAAAAAAAABAAAAAAAAEQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACCAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAARAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAEQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAEQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAABEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAABEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAARAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 0,-1: ind: 0,-1 - tiles: ggAAAAAAAIIAAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAIIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAACCAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAAggAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAAAAIIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ggAAAAAAAIIAAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAIIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAIIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAAwAAAAAAAIIAAAAAAAAEAAAAAAAACQAAAAAAAAkAAAAAAAAEAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAMAAAAAAACCAAAAAAAABAAAAAAAAAkAAAAAAAAJAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAQAAAAAAAAggAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAwAAAAAAAIIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAIIAAAAAAAAGAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAIIAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAggAAAAAAAAYAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAGAAAAAAAABgAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAIIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAIIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAAwAAAAAAAIIAAAAAAAAEAAAAAAAACQAAAAAAAAkAAAAAAAAEAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAMAAAAAAACCAAAAAAAABAAAAAAAAAkAAAAAAAAJAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAARAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAwAAAAAAAIIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAgAAAAAAAABAAAAAAAAAQAAAAAAAA== version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIIAAAAAAAAGAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAggAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAIIAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAPAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAggAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAADwAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAABQAAAAAAABIAAAAAAAATAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAggAAAAAAABMAAAAAAAAFAAAAAAAAEgAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAIIAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAEgAAAAAAABMAAAAAAAAFAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAPAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAYAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAGAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAAggAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAADwAAAAAAAIIAAAAAAAAGAAAAAAAAggAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAACgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAACgAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAA== version: 7 0,-2: ind: 0,-2 - tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAIAAAAAAAAHAAAAAAAABwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAgQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACBAAAAAAAAAQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAAAggAAAAAAAAMAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAAAAIIAAAAAAAADAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAgQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACBAAAAAAAAAQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAMAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAADAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 0,1: ind: 0,1 @@ -105,3314 +109,4075 @@ entities: nodes: - node: color: '#D381C996' - id: ArrowsGreyscale + id: BoxGreyscale decals: - 109: -7,-15 - 110: -5,-15 - 111: -7,-13 + 18: -9,-20 + 27: 2,6 + 28: 2,6 + 29: 3,6 + 30: 3,6 + 31: 6,6 + 32: 6,6 + 33: 5,6 + 34: 5,6 + 2593: 2,0 - node: angle: 3.141592653589793 rad color: '#D381C996' - id: ArrowsGreyscale + id: BoxGreyscale decals: - 112: -7,-13 - 113: -5,-13 + 35: -2,-27 + 36: -2,-27 + 37: -2,-27 - node: color: '#D381C996' - id: BoxGreyscale + id: BrickTileSteelCornerNe decals: - 70: -10,-20 - 71: -9,-20 - 72: -10,-20 - 81: 2,6 - 82: 2,6 - 83: 3,6 - 84: 3,6 - 85: 6,6 - 86: 6,6 - 87: 5,6 - 88: 5,6 - 89: -4,-12 - 90: -4,-12 - 91: -5,-12 - 92: -5,-12 - 93: -8,-12 - 94: -8,-12 - 95: -7,-12 - 96: -7,-12 - 97: -8,-14 - 98: -8,-14 - 99: -7,-14 - 100: -7,-14 - 101: -8,-16 - 102: -8,-16 - 103: -7,-16 - 104: -7,-16 - 105: -4,-16 - 106: -4,-16 - 107: -5,-16 - 108: -5,-16 - 177: -5,-14 - 192: 0,-24 - 193: -12,-24 + 2516: 5,4 + 2556: 0,-19 + 2637: 8,1 + 2646: 8,1 + 2648: 0,5 + 2649: 1,4 - node: - angle: 3.141592653589793 rad color: '#D381C996' - id: BoxGreyscale + id: BrickTileSteelCornerNw decals: - 114: -2,-27 - 115: -2,-27 - 116: -2,-27 + 2514: 3,4 + 2524: -2,0 + 2533: -3,-18 + 2647: 7,4 + 2661: 1,1 - node: color: '#D381C996' - id: ConcreteTrimCornerNe + id: BrickTileSteelCornerSe decals: - 37: 0,-19 - 124: -6,-8 - 125: -6,-8 - 126: -6,-8 - 137: 6,-19 - 157: 8,-25 - 167: -4,0 + 2515: 5,3 + 2555: 0,-21 + 2650: 1,3 - node: color: '#D381C996' - id: ConcreteTrimCornerNw + id: BrickTileSteelCornerSw decals: - 7: -2,0 - 22: -3,-18 - 121: -5,-8 - 122: -5,-8 - 123: -5,-8 - 140: 2,-19 - 164: -7,0 + 2525: -7,-23 + 2654: -2,2 - node: color: '#D381C996' - id: ConcreteTrimCornerSe + id: BrickTileSteelInnerNe decals: - 36: 0,-21 - 130: -6,-7 - 131: -6,-7 - 132: -6,-7 - 158: 8,-26 - 166: -4,-2 + 2630: -1,-19 + 2645: 7,1 + 2658: 0,4 - node: color: '#D381C996' - id: ConcreteTrimCornerSw + id: BrickTileSteelInnerNw decals: - 29: -7,-23 - 127: -5,-7 - 128: -5,-7 - 129: -5,-7 - 141: 2,-21 - 159: 4,-26 - 165: -7,-2 + 2628: -3,-22 + 2631: -2,-18 + 2642: 7,1 + 2663: 1,0 - node: color: '#D381C996' - id: ConcreteTrimInnerNe + id: BrickTileSteelInnerSe decals: - 38: -1,-19 + 2629: -2,-21 + 2657: -1,3 - node: color: '#D381C996' - id: ConcreteTrimInnerNw + id: BrickTileSteelLineE decals: - 21: -2,-18 - 25: -3,-22 + 2552: -2,-22 + 2557: -1,-18 + 2558: -1,-16 + 2559: -1,-17 + 2560: -1,-15 + 2561: -1,-14 + 2562: -1,-13 + 2563: -1,-10 + 2564: -1,-9 + 2565: -1,-8 + 2566: -1,-7 + 2567: -1,-6 + 2568: -1,-5 + 2633: 8,-3 + 2634: 8,-2 + 2635: 8,-1 + 2636: 8,0 + 2643: 7,3 + 2644: 7,2 + 2656: -1,2 - node: color: '#D381C996' - id: ConcreteTrimInnerSe + id: BrickTileSteelLineN decals: - 34: -2,-21 + 2526: -7,-22 + 2527: -6,-22 + 2528: -5,-22 + 2529: -4,-22 + 2640: 6,1 + 2641: 5,1 + 2651: -2,5 + 2662: 0,0 + 2664: 2,1 - node: color: '#D381C996' - id: ConcreteTrimInnerSw + id: BrickTileSteelLineS + decals: + 2511: 5,3 + 2512: 4,3 + 2513: 5,3 + 2517: 8,-4 + 2518: 7,-4 + 2519: 6,-4 + 2547: -5,-23 + 2548: -4,-23 + 2549: -3,-23 + 2550: -2,-23 + 2551: -1,-23 + 2553: -1,-21 + 2554: 0,-21 + 2632: 5,-4 + 2655: 0,3 + - node: + color: '#D381C996' + id: BrickTileSteelLineW + decals: + 2520: -2,-4 + 2521: -2,-2 + 2522: -2,-3 + 2523: -2,-1 + 2530: -3,-21 + 2531: -3,-20 + 2532: -3,-19 + 2534: -2,-17 + 2535: -2,-16 + 2536: -2,-15 + 2537: -2,-14 + 2538: -2,-13 + 2539: -2,-12 + 2540: -2,-11 + 2541: -2,-10 + 2542: -2,-9 + 2543: -2,-8 + 2544: -2,-7 + 2545: -2,-6 + 2546: -2,-5 + 2638: 7,3 + 2639: 7,2 + 2652: -2,4 + 2653: -2,3 + 2659: 3,3 + 2660: 3,2 + - node: + color: '#D381C996' + id: ConcreteTrimCornerNe + decals: + 42: -6,-8 + 43: -6,-8 + 44: -6,-8 + 61: 8,-25 + - node: + color: '#D381C996' + id: ConcreteTrimCornerNw + decals: + 39: -5,-8 + 40: -5,-8 + 41: -5,-8 + - node: + color: '#D381C996' + id: ConcreteTrimCornerSe + decals: + 48: -6,-7 + 49: -6,-7 + 50: -6,-7 + 62: 8,-26 + - node: + color: '#D381C996' + id: ConcreteTrimCornerSw decals: - 146: 4,-21 - 147: -6,-20 + 45: -5,-7 + 46: -5,-7 + 47: -5,-7 + 63: 4,-26 - node: color: '#D381C996' - id: ConcreteTrimLineE + id: ConcreteTrimInnerSw decals: - 33: -2,-22 - 39: -1,-18 - 40: -1,-17 - 41: -1,-16 - 42: -1,-15 - 43: -1,-14 - 44: -1,-13 - 45: -1,-10 - 46: -1,-9 - 47: -1,-8 - 48: -1,-7 - 117: -1,-5 - 120: -1,-6 - 138: 6,-21 - 139: 6,-21 + 55: -6,-20 - node: color: '#D381C996' id: ConcreteTrimLineN decals: - 26: -4,-22 - 27: -5,-22 - 28: -6,-22 - 69: -9,-18 - 143: 3,-19 - 144: 4,-19 - 145: 5,-19 - 155: 6,-25 - 156: 7,-25 - 169: -6,0 - 170: -5,0 + 17: -9,-18 + 59: 6,-25 + 60: 7,-25 - node: color: '#D381C996' id: ConcreteTrimLineS decals: - 30: -5,-23 - 31: -4,-23 - 32: -3,-23 - 35: -1,-21 - 142: 3,-21 - 161: 5,-26 - 162: 6,-26 - 163: 7,-26 - 171: -6,-2 - 172: -5,-2 + 65: 5,-26 + 66: 6,-26 + 67: 7,-26 - node: color: '#D381C996' id: ConcreteTrimLineW decals: - 8: -2,-2 - 9: -2,-4 - 10: -2,-3 - 11: -2,-7 - 12: -2,-8 - 13: -2,-9 - 14: -2,-10 - 15: -2,-11 - 16: -2,-12 - 17: -2,-13 - 18: -2,-15 - 19: -2,-16 - 20: -2,-17 - 23: -3,-20 - 24: -3,-21 - 118: -2,-5 - 160: 4,-25 - 168: -7,-1 + 38: -2,-5 + 64: 4,-25 - node: color: '#FF94FF43' id: DeliveryGreyscale decals: - 194: -11,-9 - 195: -10,-4 - 199: 11,-5 - 200: 10,0 - 201: 9,6 - 202: 8,10 + 84: -11,-9 + 85: -10,-4 + - node: + color: '#D381C996' + id: DirtHeavy + decals: + 2473: -4,9 + 2474: -5,10 + 2475: -3,10 + 2476: -5,11 + 2477: -3,9 + 2478: -4,8 + 2695: 6,10 + 2696: 6,11 + 2697: 2,9 - node: - angle: 6.283185307179586 rad color: '#FFFFFFFF' - id: Dirt + id: DirtHeavy decals: - 340: -4,-14 - 341: -5,-14 - 342: -5,-15 - 343: -4,-15 - 344: -4,-16 - 345: -5,-16 - 346: -6,-16 - 347: -6,-15 - 348: -7,-15 - 349: -7,-16 - 350: -8,-16 - 351: -8,-15 - 352: -8,-14 - 353: -7,-14 - 354: -7,-13 - 355: -8,-13 - 356: -8,-12 - 357: -6,-12 - 358: -6,-12 - 359: -6,-13 - 360: -5,-13 - 361: -4,-13 - 362: -4,-12 - 363: -5,-12 + 2594: -1,-4 + 2595: -2,-3 + 2596: 3,-3 + 2597: 7,-3 + 2598: 7,2 + 2599: 6,-1 + 2600: 8,-2 + 2601: 1,-1 + 2602: -5,4 + 2603: -3,7 + 2604: -5,9 + 2605: -5,8 + 2606: -4,8 + 2607: -1,7 + 2608: 4,7 + 2609: 2,9 + 2610: 6,11 + 2611: 6,7 + 2612: 2,7 + 2613: 4,3 + 2614: 4,4 + 2615: -6,-7 + 2616: -5,-9 + 2617: -5,-5 + 2618: -7,-5 + 2619: 2,11 + 2620: 2,-30 + 2621: -1,-30 + 2622: -1,-29 + 2623: -3,-31 + 2624: -5,-30 + 2665: 7,-21 + 2666: 2,-20 + 2667: -2,-20 + 2668: -3,-19 + 2669: -2,-12 + 2670: -1,-10 + 2671: -2,-16 + 2672: -5,-22 + 2673: -7,-23 + 2674: -6,-25 + 2675: -6,-27 + 2676: 8,-20 + 2677: 7,-22 + 2678: 11,-22 + 2679: 11,-23 + 2705: -2,4 + 2706: -1,5 + 2707: -4,9 + 2708: -4,10 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 239: -1,-13 - 240: -2,-13 - 241: -1,-12 - 242: -1,-11 - 243: -1,-11 - 244: -2,-10 - 245: -2,-9 - 246: -2,-8 - 247: -2,-7 - 248: -2,-6 - 249: -1,-3 - 250: -1,-2 - 251: -1,-1 - 252: -2,-1 - 253: -2,-3 - 254: -2,-5 - 255: -2,-8 - 256: -1,-10 - 257: -1,-11 - 258: -1,-13 - 259: -2,-15 - 260: -2,-16 - 261: -1,-18 - 262: -2,-19 - 263: -2,-21 - 264: -3,-22 - 265: -3,-23 - 266: -5,-22 - 267: -6,-22 - 268: -7,-22 - 269: -7,-23 - 270: -5,-23 - 271: -2,-23 - 272: -2,-23 - 273: -2,-23 - 274: -2,-22 - 275: -1,-21 - 276: 0,-21 - 277: 0,-20 - 278: 0,-20 - 279: 0,-19 - 280: -1,-13 - 281: -2,-13 - 282: -2,-13 - 283: -2,-13 - 284: -2,-13 - 285: -2,-14 - 286: -2,-14 - 287: -1,-15 - 288: -2,-17 - 289: -2,-17 - 290: -5,-14 - 291: -5,-14 - 292: -4,-13 - 293: -5,-13 - 294: -2,-12 - 295: -2,-10 - 296: -2,-8 - 297: -2,-6 - 298: -2,-4 - 299: -1,-3 - 300: -1,-2 - 301: -1,-1 - 302: -2,-1 - 303: -2,-2 - 304: -2,-3 - 305: 3,-1 - 306: 3,-2 - 307: 3,-3 - 308: 4,-3 - 309: 4,-1 - 310: 4,-1 - 311: 3,-4 - 312: 5,-3 - 313: 5,0 - 314: 5,0 - 315: 3,0 - 398: 6,-26 - 399: 6,-26 - 400: 5,-26 - 401: 5,-25 - 402: 7,-25 - 403: 7,-26 - 404: 8,-26 - 405: 8,-25 - 406: 8,-25 - 407: 5,-25 - 408: 5,-24 - 409: 4,-24 - 410: 4,-24 - 411: 6,-25 + 108: -1,-1 + 109: -2,-5 + 110: -2,-19 + 111: -1,-1 + 112: 5,0 + 113: 5,0 + 114: 3,0 + 157: 6,-26 + 158: 6,-26 + 159: 5,-26 + 160: 5,-25 + 161: 7,-25 + 162: 7,-26 + 163: 8,-26 + 164: 8,-25 + 165: 8,-25 + 166: 5,-25 + 167: 5,-24 + 168: 4,-24 + 169: 4,-24 + 170: 6,-25 + - node: + color: '#D381C996' + id: DirtHeavyMonotile + decals: + 2698: -5,-22 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 2699: -6,-22 + 2700: -5,-22 + 2701: -1,-12 + 2702: -2,-10 + 2703: 2,-3 + 2704: 7,1 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 316: -4,-2 - 317: -5,-2 - 318: -5,-2 - 319: -6,-2 - 320: -6,0 - 321: -5,0 - 322: -4,-1 - 323: -4,-1 - 324: -5,-1 - 325: -6,-1 - 326: -6,-1 + 115: -4,-1 + 116: -4,-1 + 117: -5,-1 + 118: -6,-1 + 119: -6,-1 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtLight decals: - 364: -10,-24 - 365: -11,-25 - 366: -11,-26 - 367: -11,-25 - 368: -11,-24 - 369: -11,-24 - 370: -10,-23 - 371: -10,-22 - 372: -10,-22 - 373: -10,-23 - 374: -10,-24 - 375: -10,-25 - 376: -10,-26 - 377: -9,-26 - 378: -9,-20 - 379: -10,-20 - 380: -11,-19 - 381: -12,-19 - 382: -11,-18 - 383: -10,-18 - 384: -9,-19 - 385: -10,-20 - 386: 5,-22 - 387: 4,-21 - 388: 2,-21 - 389: 2,-20 - 390: 5,-21 - 391: 4,-20 - 392: 4,-20 - 393: 4,-25 - 394: 4,-25 - 395: 4,-24 - 396: 4,-26 - 397: 5,-26 + 129: -10,-24 + 130: -11,-25 + 131: -11,-26 + 132: -11,-25 + 133: -11,-24 + 134: -11,-24 + 135: -10,-23 + 136: -10,-22 + 137: -10,-22 + 138: -10,-23 + 139: -10,-24 + 140: -10,-25 + 141: -10,-26 + 142: -9,-26 + 143: -9,-20 + 144: -11,-19 + 145: -12,-19 + 146: -11,-18 + 147: -10,-18 + 148: -9,-19 + 149: 5,-21 + 150: 4,-20 + 151: 4,-20 + 152: 4,-25 + 153: 4,-25 + 154: 4,-24 + 155: 4,-26 + 156: 5,-26 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtMedium decals: - 327: -5,3 - 328: -5,5 - 329: -6,5 - 330: -6,4 - 331: -1,2 - 332: -1,2 - 333: -1,4 - 334: -4,7 - 335: -5,7 - 336: -6,7 - 337: -3,7 - 338: -2,7 - 339: 0,7 + 120: -5,3 + 121: -5,5 + 122: -6,5 + 123: -6,4 + 124: -1,2 + 125: -1,2 + 126: -1,4 + 127: -2,7 + 128: 0,7 - node: zIndex: 1 angle: -4.71238898038469 rad id: FloorTechMaintDirectionalCorner decals: - 2062: -8,-12 - 2174: -8,-12 - 2378: -8,-12 - 2659: -8,-12 - 2911: -8,-12 + 2827: -8,-12 + 3059: -8,-12 + 3291: -8,-12 + 3523: -8,-12 + 3755: -8,-12 - node: zIndex: 1 angle: -3.141592653589793 rad id: FloorTechMaintDirectionalCorner decals: - 2056: -8,-16 - 2168: -8,-16 - 2372: -8,-16 - 2653: -8,-16 - 2905: -8,-16 + 2821: -8,-16 + 3053: -8,-16 + 3285: -8,-16 + 3517: -8,-16 + 3749: -8,-16 - node: zIndex: 1 angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalCorner decals: - 2043: -4,-16 - 2183: -4,-16 - 2387: -4,-16 - 2668: -4,-16 - 2920: -4,-16 + 2836: -4,-16 + 3068: -4,-16 + 3300: -4,-16 + 3532: -4,-16 + 3764: -4,-16 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner decals: - 2049: -4,-12 - 2189: -4,-12 - 2393: -4,-12 - 2674: -4,-12 - 2926: -4,-12 + 2842: -4,-12 + 3074: -4,-12 + 3306: -4,-12 + 3538: -4,-12 + 3770: -4,-12 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge decals: - 2055: -8,-16 - 2058: -8,-15 - 2059: -8,-13 - 2061: -8,-12 - 2063: -8,-14 - 2167: -8,-16 - 2169: -8,-15 - 2170: -8,-14 - 2171: -8,-13 - 2173: -8,-12 - 2371: -8,-16 - 2373: -8,-15 - 2374: -8,-14 - 2375: -8,-13 - 2377: -8,-12 - 2652: -8,-16 - 2654: -8,-15 - 2655: -8,-14 - 2656: -8,-13 - 2658: -8,-12 - 2904: -8,-16 - 2906: -8,-15 - 2907: -8,-14 - 2908: -8,-13 - 2910: -8,-12 + 2820: -8,-16 + 2822: -8,-15 + 2823: -8,-14 + 2824: -8,-13 + 2826: -8,-12 + 3052: -8,-16 + 3054: -8,-15 + 3055: -8,-14 + 3056: -8,-13 + 3058: -8,-12 + 3284: -8,-16 + 3286: -8,-15 + 3287: -8,-14 + 3288: -8,-13 + 3290: -8,-12 + 3516: -8,-16 + 3518: -8,-15 + 3519: -8,-14 + 3520: -8,-13 + 3522: -8,-12 + 3748: -8,-16 + 3750: -8,-15 + 3751: -8,-14 + 3752: -8,-13 + 3754: -8,-12 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge decals: - 2041: -4,-16 - 2050: -5,-16 - 2052: -6,-16 - 2054: -8,-16 - 2057: -7,-16 - 2166: -8,-16 - 2175: -7,-16 - 2177: -6,-16 - 2179: -5,-16 - 2181: -4,-16 - 2370: -8,-16 - 2379: -7,-16 - 2381: -6,-16 - 2383: -5,-16 - 2385: -4,-16 - 2651: -8,-16 - 2660: -7,-16 - 2662: -6,-16 - 2664: -5,-16 - 2666: -4,-16 - 2903: -8,-16 - 2912: -7,-16 - 2914: -6,-16 - 2916: -5,-16 - 2918: -4,-16 + 2819: -8,-16 + 2828: -7,-16 + 2830: -6,-16 + 2832: -5,-16 + 2834: -4,-16 + 3051: -8,-16 + 3060: -7,-16 + 3062: -6,-16 + 3064: -5,-16 + 3066: -4,-16 + 3283: -8,-16 + 3292: -7,-16 + 3294: -6,-16 + 3296: -5,-16 + 3298: -4,-16 + 3515: -8,-16 + 3524: -7,-16 + 3526: -6,-16 + 3528: -5,-16 + 3530: -4,-16 + 3747: -8,-16 + 3756: -7,-16 + 3758: -6,-16 + 3760: -5,-16 + 3762: -4,-16 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge decals: - 2042: -4,-16 - 2044: -4,-15 - 2045: -4,-13 - 2046: -4,-14 - 2047: -4,-12 - 2182: -4,-16 - 2184: -4,-15 - 2185: -4,-14 - 2186: -4,-13 - 2187: -4,-12 - 2386: -4,-16 - 2388: -4,-15 - 2389: -4,-14 - 2390: -4,-13 - 2391: -4,-12 - 2667: -4,-16 - 2669: -4,-15 - 2670: -4,-14 - 2671: -4,-13 - 2672: -4,-12 - 2919: -4,-16 - 2921: -4,-15 - 2922: -4,-14 - 2923: -4,-13 - 2924: -4,-12 + 2835: -4,-16 + 2837: -4,-15 + 2838: -4,-14 + 2839: -4,-13 + 2840: -4,-12 + 3067: -4,-16 + 3069: -4,-15 + 3070: -4,-14 + 3071: -4,-13 + 3072: -4,-12 + 3299: -4,-16 + 3301: -4,-15 + 3302: -4,-14 + 3303: -4,-13 + 3304: -4,-12 + 3531: -4,-16 + 3533: -4,-15 + 3534: -4,-14 + 3535: -4,-13 + 3536: -4,-12 + 3763: -4,-16 + 3765: -4,-15 + 3766: -4,-14 + 3767: -4,-13 + 3768: -4,-12 - node: id: FloorTechMaintDirectionalEdge decals: - 2048: -4,-12 - 2051: -5,-12 - 2053: -6,-12 - 2060: -8,-12 - 2064: -7,-12 - 2172: -8,-12 - 2176: -7,-12 - 2178: -6,-12 - 2180: -5,-12 - 2188: -4,-12 - 2376: -8,-12 - 2380: -7,-12 - 2382: -6,-12 - 2384: -5,-12 - 2392: -4,-12 - 2657: -8,-12 - 2661: -7,-12 - 2663: -6,-12 - 2665: -5,-12 - 2673: -4,-12 - 2909: -8,-12 - 2913: -7,-12 - 2915: -6,-12 - 2917: -5,-12 - 2925: -4,-12 + 2825: -8,-12 + 2829: -7,-12 + 2831: -6,-12 + 2833: -5,-12 + 2841: -4,-12 + 3057: -8,-12 + 3061: -7,-12 + 3063: -6,-12 + 3065: -5,-12 + 3073: -4,-12 + 3289: -8,-12 + 3293: -7,-12 + 3295: -6,-12 + 3297: -5,-12 + 3305: -4,-12 + 3521: -8,-12 + 3525: -7,-12 + 3527: -6,-12 + 3529: -5,-12 + 3537: -4,-12 + 3753: -8,-12 + 3757: -7,-12 + 3759: -6,-12 + 3761: -5,-12 + 3769: -4,-12 + - node: + color: '#D381C996' + id: FloorTechMaintDirectionalEdge + decals: + 2680: -7,-12 + 2681: -6,-12 + 2682: -5,-12 - node: zIndex: 1 id: LatticeCornerNE decals: - 452: 4,12 - 460: 4,13 - 468: 4,14 - 476: 4,15 - 484: 8,2 - 492: 8,3 - 500: 8,4 - 543: -13,-15 - 548: -13,-14 - 556: -13,-22 - 561: -13,-21 - 566: -13,-20 - 569: -10,-28 - 574: -8,-32 - 579: 2,-27 - 590: 10,-27 - 598: 11,-26 - 616: 4,16 - 629: 4,12 - 637: 4,13 - 645: 4,14 - 653: 4,15 - 661: 8,2 - 669: 8,3 - 677: 8,4 - 720: -13,-15 - 725: -13,-14 - 733: -13,-22 - 738: -13,-21 - 743: -13,-20 - 746: -10,-28 - 751: -8,-32 - 756: 2,-27 - 767: 10,-27 - 775: 11,-26 - 793: 4,16 - 806: 4,12 - 814: 4,13 - 822: 4,14 - 830: 4,15 - 838: 8,2 - 846: 8,3 - 854: 8,4 - 897: -13,-15 - 902: -13,-14 - 910: -13,-22 - 915: -13,-21 - 920: -13,-20 - 923: -10,-28 - 928: -8,-32 - 933: 2,-27 - 944: 10,-27 - 952: 11,-26 - 970: 4,16 - 983: 4,12 - 991: 4,13 - 999: 4,14 - 1007: 4,15 - 1015: 8,2 - 1023: 8,3 - 1031: 8,4 - 1074: -13,-15 - 1079: -13,-14 - 1087: -13,-22 - 1092: -13,-21 - 1097: -13,-20 - 1100: -10,-28 - 1105: -8,-32 - 1110: 2,-27 - 1121: 10,-27 - 1129: 11,-26 - 1147: 4,16 - 1160: 4,12 - 1168: 4,13 - 1176: 4,14 - 1184: 4,15 - 1192: 8,2 - 1200: 8,3 - 1208: 8,4 - 1251: -13,-15 - 1256: -13,-14 - 1264: -13,-22 - 1269: -13,-21 - 1274: -13,-20 - 1277: -10,-28 - 1282: -8,-32 - 1287: 2,-27 - 1298: 10,-27 - 1306: 11,-26 - 1324: 4,16 - 1337: 4,12 - 1345: 4,13 - 1353: 4,14 - 1361: 4,15 - 1369: 8,2 - 1377: 8,3 - 1385: 8,4 - 1428: -13,-15 - 1433: -13,-14 - 1441: -13,-22 - 1446: -13,-21 - 1451: -13,-20 - 1454: -10,-28 - 1459: -8,-32 - 1464: 2,-27 - 1475: 10,-27 - 1483: 11,-26 - 1501: 4,16 - 1514: 4,12 - 1522: 4,13 - 1530: 4,14 - 1538: 4,15 - 1546: 8,2 - 1554: 8,3 - 1562: 8,4 - 1605: -13,-15 - 1610: -13,-14 + 183: 4,12 + 191: 4,13 + 199: 4,14 + 207: 4,15 + 215: 8,2 + 223: 8,3 + 261: -13,-22 + 271: -13,-20 + 274: -10,-28 + 279: -8,-32 + 284: 2,-27 + 295: 10,-27 + 303: 11,-26 + 321: 4,16 + 334: 4,12 + 342: 4,13 + 350: 4,14 + 358: 4,15 + 366: 8,2 + 374: 8,3 + 412: -13,-22 + 422: -13,-20 + 425: -10,-28 + 430: -8,-32 + 435: 2,-27 + 446: 10,-27 + 454: 11,-26 + 472: 4,16 + 485: 4,12 + 493: 4,13 + 501: 4,14 + 509: 4,15 + 517: 8,2 + 525: 8,3 + 563: -13,-22 + 573: -13,-20 + 576: -10,-28 + 581: -8,-32 + 586: 2,-27 + 597: 10,-27 + 605: 11,-26 + 623: 4,16 + 636: 4,12 + 644: 4,13 + 652: 4,14 + 660: 4,15 + 668: 8,2 + 676: 8,3 + 714: -13,-22 + 724: -13,-20 + 727: -10,-28 + 732: -8,-32 + 737: 2,-27 + 748: 10,-27 + 756: 11,-26 + 774: 4,16 + 787: 4,12 + 795: 4,13 + 803: 4,14 + 811: 4,15 + 819: 8,2 + 827: 8,3 + 865: -13,-22 + 875: -13,-20 + 878: -10,-28 + 883: -8,-32 + 888: 2,-27 + 899: 10,-27 + 907: 11,-26 + 925: 4,16 + 938: 4,12 + 946: 4,13 + 954: 4,14 + 962: 4,15 + 970: 8,2 + 978: 8,3 + 1016: -13,-22 + 1026: -13,-20 + 1029: -10,-28 + 1034: -8,-32 + 1039: 2,-27 + 1050: 10,-27 + 1058: 11,-26 + 1076: 4,16 + 1089: 4,12 + 1097: 4,13 + 1105: 4,14 + 1113: 4,15 + 1121: 8,2 + 1129: 8,3 + 1167: -13,-22 + 1177: -13,-20 + 1180: -10,-28 + 1185: -8,-32 + 1190: 2,-27 + 1201: 10,-27 + 1209: 11,-26 + 1227: 4,16 + 1240: 4,12 + 1248: 4,13 + 1256: 4,14 + 1264: 4,15 + 1272: 8,2 + 1280: 8,3 + 1318: -13,-22 + 1328: -13,-20 + 1331: -10,-28 + 1336: -8,-32 + 1341: 2,-27 + 1352: 10,-27 + 1360: 11,-26 + 1378: 4,16 + 1391: 4,12 + 1399: 4,13 + 1407: 4,14 + 1415: 4,15 + 1423: 8,2 + 1431: 8,3 + 1469: -13,-22 + 1479: -13,-20 + 1482: -10,-28 + 1487: -8,-32 + 1492: 2,-27 + 1503: 10,-27 + 1511: 11,-26 + 1529: 4,16 + 1542: 4,12 + 1550: 4,13 + 1558: 4,14 + 1566: 4,15 + 1574: 8,2 + 1582: 8,3 + 1620: -13,-22 + 1630: -13,-20 + 1633: -10,-28 + 1638: -8,-32 + 1643: 2,-27 + 1654: 10,-27 + 1662: 11,-26 + 1680: 4,16 + 1693: 4,12 + 1701: 4,13 + 1709: 4,14 + 1717: 4,15 + 1725: 8,2 + 1733: 8,3 + 1771: -13,-22 + 1781: -13,-20 + 1784: -10,-28 + 1791: 2,-27 + 1799: 10,-27 + 1807: 11,-26 + 1815: 4,16 + 1828: 11,-20 + 1845: -8,-32 + 1848: -9,-30 + 1861: -10,-5 + 1866: -10,-6 + 1874: -10,-8 + 1882: -10,-7 + 1887: -8,7 + 1895: 4,12 + 1903: 4,13 + 1911: 4,14 + 1919: 4,15 + 1927: 8,2 + 1935: 8,3 + 1976: -10,-8 + 1984: -10,-7 + 1989: -10,-6 + 1994: -10,-5 + 1999: -8,7 + 2007: -13,-22 + 2017: -13,-20 + 2020: -10,-28 + 2025: -9,-30 + 2028: -8,-32 + 2033: 2,-27 + 2047: 10,-27 + 2055: 11,-26 + 2063: 11,-20 + 2084: 4,16 + 2097: 4,12 + 2105: 4,13 + 2113: 4,14 + 2121: 4,15 + 2129: 8,2 + 2137: 8,3 + 2178: -10,-8 + 2186: -10,-7 + 2191: -10,-6 + 2196: -10,-5 + 2201: -8,7 + 2209: -13,-22 + 2219: -13,-20 + 2222: -10,-28 + 2227: -9,-30 + 2230: -8,-32 + 2235: 2,-27 + 2249: 10,-27 + 2257: 11,-26 + 2265: 11,-20 + 2286: 4,16 + 2299: 4,12 + 2307: 4,13 + 2315: 4,14 + 2323: 4,15 + 2354: -10,-8 + 2362: -10,-7 + 2367: -10,-6 + 2372: -10,-5 + 2377: -8,7 + 2385: -13,-22 + 2395: -13,-20 + 2398: -10,-28 + 2403: -9,-30 + 2408: 2,-27 + 2422: 10,-27 + 2430: 11,-26 + 2438: 11,-20 + 2459: 4,16 + 2499: 8,3 + 2507: 8,2 + 2627: -8,-32 + 2713: 4,12 + 2721: 4,13 + 2729: 4,14 + 2737: 4,15 + 2745: 8,2 + 2753: 8,3 + 2800: -10,-8 + 2808: -10,-7 + 2813: -10,-6 + 2818: -10,-5 + 2847: -8,7 + 2855: -13,-22 + 2865: -13,-20 + 2868: -10,-28 + 2873: -9,-30 + 2876: -8,-32 + 2881: 2,-27 + 2895: 10,-27 + 2903: 11,-26 + 2911: 11,-20 + 2932: 4,16 + 2945: 4,12 + 2953: 4,13 + 2961: 4,14 + 2969: 4,15 + 2977: 8,2 + 2985: 8,3 + 3032: -10,-8 + 3040: -10,-7 + 3045: -10,-6 + 3050: -10,-5 + 3079: -8,7 + 3087: -13,-22 + 3097: -13,-20 + 3100: -10,-28 + 3105: -9,-30 + 3108: -8,-32 + 3113: 2,-27 + 3127: 10,-27 + 3135: 11,-26 + 3143: 11,-20 + 3164: 4,16 + 3177: 4,12 + 3185: 4,13 + 3193: 4,14 + 3201: 4,15 + 3209: 8,2 + 3217: 8,3 + 3264: -10,-8 + 3272: -10,-7 + 3277: -10,-6 + 3282: -10,-5 + 3311: -8,7 + 3319: -13,-22 + 3329: -13,-20 + 3332: -10,-28 + 3337: -9,-30 + 3340: -8,-32 + 3345: 2,-27 + 3359: 10,-27 + 3367: 11,-26 + 3375: 11,-20 + 3396: 4,16 + 3409: 4,12 + 3417: 4,13 + 3425: 4,14 + 3433: 4,15 + 3441: 8,2 + 3449: 8,3 + 3496: -10,-8 + 3504: -10,-7 + 3509: -10,-6 + 3514: -10,-5 + 3543: -8,7 + 3551: -13,-22 + 3561: -13,-20 + 3564: -10,-28 + 3569: -9,-30 + 3572: -8,-32 + 3577: 2,-27 + 3591: 10,-27 + 3599: 11,-26 + 3607: 11,-20 + 3628: 4,16 + 3641: 4,12 + 3649: 4,13 + 3657: 4,14 + 3665: 4,15 + 3673: 8,2 + 3681: 8,3 + 3728: -10,-8 + 3775: -8,7 + 3796: -10,-28 + 3801: -9,-30 + 3804: -8,-32 + 3809: 2,-27 + 3823: 10,-27 + 3831: 11,-26 + 3839: 11,-20 + 3860: 4,16 + 3873: -10,-6 + 3878: -10,-7 + 3883: -10,-5 + 3892: -13,-20 + - node: + zIndex: 1 + id: LatticeCornerNW + decals: + 186: 4,12 + 194: 4,13 + 202: 4,14 + 210: 4,15 + 218: 8,2 + 226: 8,3 + 231: 9,3 + 236: 9,4 + 241: 2,-13 + 246: 2,-12 + 251: 2,-11 + 256: 2,-10 + 276: -10,-28 + 287: 2,-27 + 290: 8,-32 + 298: 10,-27 + 306: 11,-26 + 311: 11,-20 + 316: 11,-19 + 324: 4,16 + 337: 4,12 + 345: 4,13 + 353: 4,14 + 361: 4,15 + 369: 8,2 + 377: 8,3 + 382: 9,3 + 387: 9,4 + 392: 2,-13 + 397: 2,-12 + 402: 2,-11 + 407: 2,-10 + 427: -10,-28 + 438: 2,-27 + 441: 8,-32 + 449: 10,-27 + 457: 11,-26 + 462: 11,-20 + 467: 11,-19 + 475: 4,16 + 488: 4,12 + 496: 4,13 + 504: 4,14 + 512: 4,15 + 520: 8,2 + 528: 8,3 + 533: 9,3 + 538: 9,4 + 543: 2,-13 + 548: 2,-12 + 553: 2,-11 + 558: 2,-10 + 578: -10,-28 + 589: 2,-27 + 592: 8,-32 + 600: 10,-27 + 608: 11,-26 + 613: 11,-20 + 618: 11,-19 + 626: 4,16 + 639: 4,12 + 647: 4,13 + 655: 4,14 + 663: 4,15 + 671: 8,2 + 679: 8,3 + 684: 9,3 + 689: 9,4 + 694: 2,-13 + 699: 2,-12 + 704: 2,-11 + 709: 2,-10 + 729: -10,-28 + 740: 2,-27 + 743: 8,-32 + 751: 10,-27 + 759: 11,-26 + 764: 11,-20 + 769: 11,-19 + 777: 4,16 + 790: 4,12 + 798: 4,13 + 806: 4,14 + 814: 4,15 + 822: 8,2 + 830: 8,3 + 835: 9,3 + 840: 9,4 + 845: 2,-13 + 850: 2,-12 + 855: 2,-11 + 860: 2,-10 + 880: -10,-28 + 891: 2,-27 + 894: 8,-32 + 902: 10,-27 + 910: 11,-26 + 915: 11,-20 + 920: 11,-19 + 928: 4,16 + 941: 4,12 + 949: 4,13 + 957: 4,14 + 965: 4,15 + 973: 8,2 + 981: 8,3 + 986: 9,3 + 991: 9,4 + 996: 2,-13 + 1001: 2,-12 + 1006: 2,-11 + 1011: 2,-10 + 1031: -10,-28 + 1042: 2,-27 + 1045: 8,-32 + 1053: 10,-27 + 1061: 11,-26 + 1066: 11,-20 + 1071: 11,-19 + 1079: 4,16 + 1092: 4,12 + 1100: 4,13 + 1108: 4,14 + 1116: 4,15 + 1124: 8,2 + 1132: 8,3 + 1137: 9,3 + 1142: 9,4 + 1147: 2,-13 + 1152: 2,-12 + 1157: 2,-11 + 1162: 2,-10 + 1182: -10,-28 + 1193: 2,-27 + 1196: 8,-32 + 1204: 10,-27 + 1212: 11,-26 + 1217: 11,-20 + 1222: 11,-19 + 1230: 4,16 + 1243: 4,12 + 1251: 4,13 + 1259: 4,14 + 1267: 4,15 + 1275: 8,2 + 1283: 8,3 + 1288: 9,3 + 1293: 9,4 + 1298: 2,-13 + 1303: 2,-12 + 1308: 2,-11 + 1313: 2,-10 + 1333: -10,-28 + 1344: 2,-27 + 1347: 8,-32 + 1355: 10,-27 + 1363: 11,-26 + 1368: 11,-20 + 1373: 11,-19 + 1381: 4,16 + 1394: 4,12 + 1402: 4,13 + 1410: 4,14 + 1418: 4,15 + 1426: 8,2 + 1434: 8,3 + 1439: 9,3 + 1444: 9,4 + 1449: 2,-13 + 1454: 2,-12 + 1459: 2,-11 + 1464: 2,-10 + 1484: -10,-28 + 1495: 2,-27 + 1498: 8,-32 + 1506: 10,-27 + 1514: 11,-26 + 1519: 11,-20 + 1524: 11,-19 + 1532: 4,16 + 1545: 4,12 + 1553: 4,13 + 1561: 4,14 + 1569: 4,15 + 1577: 8,2 + 1585: 8,3 + 1590: 9,3 + 1595: 9,4 + 1600: 2,-13 + 1605: 2,-12 + 1610: 2,-11 + 1615: 2,-10 + 1635: -10,-28 + 1646: 2,-27 + 1649: 8,-32 + 1657: 10,-27 + 1665: 11,-26 + 1670: 11,-20 + 1675: 11,-19 + 1683: 4,16 + 1696: 4,12 + 1704: 4,13 + 1712: 4,14 + 1720: 4,15 + 1728: 8,2 + 1736: 8,3 + 1741: 9,3 + 1746: 9,4 + 1751: 2,-13 + 1756: 2,-12 + 1761: 2,-11 + 1766: 2,-10 + 1786: -10,-28 + 1794: 2,-27 + 1802: 10,-27 + 1810: 11,-26 + 1818: 4,16 + 1831: 11,-20 + 1836: 11,-19 + 1839: 8,-32 + 1842: 9,-30 + 1877: -10,-8 + 1898: 4,12 + 1906: 4,13 + 1914: 4,14 + 1922: 4,15 + 1930: 8,2 + 1938: 8,3 + 1943: 9,3 + 1948: 9,4 + 1953: 2,-13 + 1958: 2,-12 + 1963: 2,-11 + 1968: 2,-10 + 1979: -10,-8 + 2022: -10,-28 + 2036: 2,-27 + 2039: 8,-32 + 2042: 9,-30 + 2050: 10,-27 + 2058: 11,-26 + 2066: 11,-20 + 2071: 11,-19 + 2087: 4,16 + 2100: 4,12 + 2108: 4,13 + 2116: 4,14 + 2124: 4,15 + 2132: 8,2 + 2140: 8,3 + 2145: 9,3 + 2150: 9,4 + 2155: 2,-13 + 2160: 2,-12 + 2165: 2,-11 + 2170: 2,-10 + 2181: -10,-8 + 2224: -10,-28 + 2238: 2,-27 + 2241: 8,-32 + 2244: 9,-30 + 2252: 10,-27 + 2260: 11,-26 + 2268: 11,-20 + 2273: 11,-19 + 2289: 4,16 + 2302: 4,12 + 2310: 4,13 + 2318: 4,14 + 2326: 4,15 + 2331: 2,-13 + 2336: 2,-12 + 2341: 2,-11 + 2346: 2,-10 + 2357: -10,-8 + 2400: -10,-28 + 2411: 2,-27 + 2414: 8,-32 + 2417: 9,-30 + 2425: 10,-27 + 2433: 11,-26 + 2441: 11,-20 + 2446: 11,-19 + 2462: 4,16 + 2481: 10,-5 + 2489: 9,4 + 2494: 9,3 + 2502: 8,3 + 2510: 8,2 + 2716: 4,12 + 2724: 4,13 + 2732: 4,14 + 2740: 4,15 + 2748: 8,2 + 2756: 8,3 + 2761: 9,3 + 2766: 9,4 + 2771: 2,-13 + 2776: 2,-12 + 2781: 2,-11 + 2786: 2,-10 + 2789: 10,-5 + 2803: -10,-8 + 2870: -10,-28 + 2884: 2,-27 + 2887: 8,-32 + 2890: 9,-30 + 2898: 10,-27 + 2906: 11,-26 + 2914: 11,-20 + 2919: 11,-19 + 2935: 4,16 + 2948: 4,12 + 2956: 4,13 + 2964: 4,14 + 2972: 4,15 + 2980: 8,2 + 2988: 8,3 + 2993: 9,3 + 2998: 9,4 + 3003: 2,-13 + 3008: 2,-12 + 3013: 2,-11 + 3018: 2,-10 + 3021: 10,-5 + 3035: -10,-8 + 3102: -10,-28 + 3116: 2,-27 + 3119: 8,-32 + 3122: 9,-30 + 3130: 10,-27 + 3138: 11,-26 + 3146: 11,-20 + 3151: 11,-19 + 3167: 4,16 + 3180: 4,12 + 3188: 4,13 + 3196: 4,14 + 3204: 4,15 + 3212: 8,2 + 3220: 8,3 + 3225: 9,3 + 3230: 9,4 + 3235: 2,-13 + 3240: 2,-12 + 3245: 2,-11 + 3250: 2,-10 + 3253: 10,-5 + 3267: -10,-8 + 3334: -10,-28 + 3348: 2,-27 + 3351: 8,-32 + 3354: 9,-30 + 3362: 10,-27 + 3370: 11,-26 + 3378: 11,-20 + 3383: 11,-19 + 3399: 4,16 + 3412: 4,12 + 3420: 4,13 + 3428: 4,14 + 3436: 4,15 + 3444: 8,2 + 3452: 8,3 + 3457: 9,3 + 3462: 9,4 + 3467: 2,-13 + 3472: 2,-12 + 3477: 2,-11 + 3482: 2,-10 + 3485: 10,-5 + 3499: -10,-8 + 3566: -10,-28 + 3580: 2,-27 + 3583: 8,-32 + 3586: 9,-30 + 3594: 10,-27 + 3602: 11,-26 + 3610: 11,-20 + 3615: 11,-19 + 3631: 4,16 + 3644: 4,12 + 3652: 4,13 + 3660: 4,14 + 3668: 4,15 + 3676: 8,2 + 3684: 8,3 + 3689: 9,3 + 3694: 9,4 + 3699: 2,-13 + 3704: 2,-12 + 3709: 2,-11 + 3714: 2,-10 + 3717: 10,-5 + 3731: -10,-8 + 3798: -10,-28 + 3812: 2,-27 + 3815: 8,-32 + 3818: 9,-30 + 3826: 10,-27 + 3834: 11,-26 + 3842: 11,-20 + 3847: 11,-19 + 3863: 4,16 + - node: + zIndex: 1 + id: LatticeCornerSE + decals: + 181: 4,12 + 189: 4,13 + 197: 4,14 + 205: 4,15 + 213: 8,2 + 221: 8,3 + 259: -13,-22 + 269: -13,-20 + 282: 2,-27 + 293: 10,-27 + 301: 11,-26 + 319: 4,16 + 327: 4,17 + 332: 4,12 + 340: 4,13 + 348: 4,14 + 356: 4,15 + 364: 8,2 + 372: 8,3 + 410: -13,-22 + 420: -13,-20 + 433: 2,-27 + 444: 10,-27 + 452: 11,-26 + 470: 4,16 + 478: 4,17 + 483: 4,12 + 491: 4,13 + 499: 4,14 + 507: 4,15 + 515: 8,2 + 523: 8,3 + 561: -13,-22 + 571: -13,-20 + 584: 2,-27 + 595: 10,-27 + 603: 11,-26 + 621: 4,16 + 629: 4,17 + 634: 4,12 + 642: 4,13 + 650: 4,14 + 658: 4,15 + 666: 8,2 + 674: 8,3 + 712: -13,-22 + 722: -13,-20 + 735: 2,-27 + 746: 10,-27 + 754: 11,-26 + 772: 4,16 + 780: 4,17 + 785: 4,12 + 793: 4,13 + 801: 4,14 + 809: 4,15 + 817: 8,2 + 825: 8,3 + 863: -13,-22 + 873: -13,-20 + 886: 2,-27 + 897: 10,-27 + 905: 11,-26 + 923: 4,16 + 931: 4,17 + 936: 4,12 + 944: 4,13 + 952: 4,14 + 960: 4,15 + 968: 8,2 + 976: 8,3 + 1014: -13,-22 + 1024: -13,-20 + 1037: 2,-27 + 1048: 10,-27 + 1056: 11,-26 + 1074: 4,16 + 1082: 4,17 + 1087: 4,12 + 1095: 4,13 + 1103: 4,14 + 1111: 4,15 + 1119: 8,2 + 1127: 8,3 + 1165: -13,-22 + 1175: -13,-20 + 1188: 2,-27 + 1199: 10,-27 + 1207: 11,-26 + 1225: 4,16 + 1233: 4,17 + 1238: 4,12 + 1246: 4,13 + 1254: 4,14 + 1262: 4,15 + 1270: 8,2 + 1278: 8,3 + 1316: -13,-22 + 1326: -13,-20 + 1339: 2,-27 + 1350: 10,-27 + 1358: 11,-26 + 1376: 4,16 + 1384: 4,17 + 1389: 4,12 + 1397: 4,13 + 1405: 4,14 + 1413: 4,15 + 1421: 8,2 + 1429: 8,3 + 1467: -13,-22 + 1477: -13,-20 + 1490: 2,-27 + 1501: 10,-27 + 1509: 11,-26 + 1527: 4,16 + 1535: 4,17 + 1540: 4,12 + 1548: 4,13 + 1556: 4,14 + 1564: 4,15 + 1572: 8,2 + 1580: 8,3 1618: -13,-22 - 1623: -13,-21 1628: -13,-20 - 1631: -10,-28 - 1636: -8,-32 1641: 2,-27 1652: 10,-27 1660: 11,-26 1678: 4,16 + 1686: 4,17 1691: 4,12 1699: 4,13 1707: 4,14 1715: 4,15 1723: 8,2 1731: 8,3 - 1739: 8,4 - 1782: -13,-15 - 1787: -13,-14 - 1795: -13,-22 - 1800: -13,-21 - 1805: -13,-20 - 1808: -10,-28 - 1813: -8,-32 - 1818: 2,-27 - 1829: 10,-27 - 1837: 11,-26 - 1855: 4,16 - 1868: 4,12 - 1876: 4,13 - 1884: 4,14 - 1892: 4,15 - 1900: 8,2 - 1908: 8,3 - 1916: 8,4 - 1959: -13,-15 - 1964: -13,-14 - 1972: -13,-22 - 1977: -13,-21 - 1982: -13,-20 - 1985: -10,-28 - 1990: -8,-32 - 1995: 2,-27 - 2006: 10,-27 - 2014: 11,-26 - 2032: 4,16 - 2069: 4,12 - 2077: 4,13 - 2085: 4,14 - 2093: 4,15 - 2101: 8,2 - 2109: 8,3 - 2117: 8,4 - 2160: -13,-15 - 2165: -13,-14 - 2194: -13,-22 - 2199: -13,-21 - 2204: -13,-20 - 2207: -10,-28 - 2212: -8,-32 - 2217: 2,-27 - 2228: 10,-27 - 2236: 11,-26 - 2254: 4,16 - 2270: 4,12 - 2278: 4,13 - 2286: 4,14 - 2294: 4,15 - 2302: 8,2 - 2310: 8,3 - 2318: 8,4 - 2361: -13,-15 - 2366: -13,-14 - 2398: -13,-22 - 2403: -13,-21 - 2408: -13,-20 - 2411: -10,-28 - 2418: 2,-27 - 2426: 10,-27 - 2434: 11,-26 - 2442: 4,16 - 2458: 11,-20 - 2475: -8,-32 - 2478: -9,-30 - 2491: -10,-5 - 2496: -10,-6 - 2504: -10,-8 - 2512: -10,-7 - 2517: -8,7 - 2525: 4,12 - 2533: 4,13 - 2541: 4,14 - 2549: 4,15 - 2557: 8,2 - 2565: 8,3 - 2573: 8,4 - 2616: -13,-15 - 2621: -13,-14 - 2632: -10,-8 - 2640: -10,-7 - 2645: -10,-6 - 2650: -10,-5 - 2679: -8,7 - 2687: -13,-22 - 2692: -13,-21 - 2697: -13,-20 - 2700: -10,-28 - 2705: -9,-30 - 2708: -8,-32 - 2713: 2,-27 - 2727: 10,-27 - 2735: 11,-26 - 2743: 11,-20 - 2764: 4,16 - 2777: 4,12 - 2785: 4,13 - 2793: 4,14 - 2801: 4,15 - 2809: 8,2 - 2817: 8,3 - 2825: 8,4 - 2868: -13,-15 - 2873: -13,-14 - 2884: -10,-8 - 2892: -10,-7 - 2897: -10,-6 - 2902: -10,-5 - 2931: -8,7 - 2939: -13,-22 - 2944: -13,-21 - 2949: -13,-20 - 2952: -10,-28 - 2957: -9,-30 - 2960: -8,-32 - 2965: 2,-27 - 2979: 10,-27 - 2987: 11,-26 - 2995: 11,-20 - 3016: 4,16 - - node: - zIndex: 1 - id: LatticeCornerNW - decals: - 455: 4,12 - 463: 4,13 - 471: 4,14 - 479: 4,15 - 487: 8,2 - 495: 8,3 - 503: 8,4 - 508: 9,2 - 513: 9,3 - 518: 9,4 - 523: 2,-13 - 528: 2,-12 - 533: 2,-11 - 538: 2,-10 - 571: -10,-28 - 582: 2,-27 - 585: 8,-32 - 593: 10,-27 - 601: 11,-26 - 606: 11,-20 - 611: 11,-19 - 619: 4,16 - 632: 4,12 - 640: 4,13 - 648: 4,14 - 656: 4,15 - 664: 8,2 - 672: 8,3 - 680: 8,4 - 685: 9,2 - 690: 9,3 - 695: 9,4 - 700: 2,-13 - 705: 2,-12 - 710: 2,-11 - 715: 2,-10 - 748: -10,-28 - 759: 2,-27 - 762: 8,-32 - 770: 10,-27 - 778: 11,-26 - 783: 11,-20 - 788: 11,-19 - 796: 4,16 - 809: 4,12 - 817: 4,13 - 825: 4,14 - 833: 4,15 - 841: 8,2 - 849: 8,3 - 857: 8,4 - 862: 9,2 - 867: 9,3 - 872: 9,4 - 877: 2,-13 - 882: 2,-12 - 887: 2,-11 - 892: 2,-10 - 925: -10,-28 - 936: 2,-27 - 939: 8,-32 - 947: 10,-27 - 955: 11,-26 - 960: 11,-20 - 965: 11,-19 - 973: 4,16 - 986: 4,12 - 994: 4,13 - 1002: 4,14 - 1010: 4,15 - 1018: 8,2 - 1026: 8,3 - 1034: 8,4 - 1039: 9,2 - 1044: 9,3 - 1049: 9,4 - 1054: 2,-13 - 1059: 2,-12 - 1064: 2,-11 - 1069: 2,-10 - 1102: -10,-28 - 1113: 2,-27 - 1116: 8,-32 - 1124: 10,-27 - 1132: 11,-26 - 1137: 11,-20 - 1142: 11,-19 - 1150: 4,16 - 1163: 4,12 - 1171: 4,13 - 1179: 4,14 - 1187: 4,15 - 1195: 8,2 - 1203: 8,3 - 1211: 8,4 - 1216: 9,2 - 1221: 9,3 - 1226: 9,4 - 1231: 2,-13 - 1236: 2,-12 - 1241: 2,-11 - 1246: 2,-10 - 1279: -10,-28 - 1290: 2,-27 - 1293: 8,-32 - 1301: 10,-27 - 1309: 11,-26 - 1314: 11,-20 - 1319: 11,-19 - 1327: 4,16 - 1340: 4,12 - 1348: 4,13 - 1356: 4,14 - 1364: 4,15 - 1372: 8,2 - 1380: 8,3 - 1388: 8,4 - 1393: 9,2 - 1398: 9,3 - 1403: 9,4 - 1408: 2,-13 - 1413: 2,-12 - 1418: 2,-11 - 1423: 2,-10 - 1456: -10,-28 - 1467: 2,-27 - 1470: 8,-32 - 1478: 10,-27 - 1486: 11,-26 - 1491: 11,-20 - 1496: 11,-19 - 1504: 4,16 - 1517: 4,12 - 1525: 4,13 - 1533: 4,14 - 1541: 4,15 - 1549: 8,2 - 1557: 8,3 - 1565: 8,4 - 1570: 9,2 - 1575: 9,3 - 1580: 9,4 - 1585: 2,-13 - 1590: 2,-12 - 1595: 2,-11 - 1600: 2,-10 - 1633: -10,-28 - 1644: 2,-27 - 1647: 8,-32 - 1655: 10,-27 - 1663: 11,-26 - 1668: 11,-20 - 1673: 11,-19 - 1681: 4,16 - 1694: 4,12 - 1702: 4,13 - 1710: 4,14 - 1718: 4,15 - 1726: 8,2 - 1734: 8,3 - 1742: 8,4 - 1747: 9,2 - 1752: 9,3 - 1757: 9,4 - 1762: 2,-13 - 1767: 2,-12 - 1772: 2,-11 - 1777: 2,-10 - 1810: -10,-28 - 1821: 2,-27 - 1824: 8,-32 - 1832: 10,-27 - 1840: 11,-26 - 1845: 11,-20 - 1850: 11,-19 - 1858: 4,16 - 1871: 4,12 - 1879: 4,13 - 1887: 4,14 - 1895: 4,15 - 1903: 8,2 - 1911: 8,3 - 1919: 8,4 - 1924: 9,2 - 1929: 9,3 - 1934: 9,4 - 1939: 2,-13 - 1944: 2,-12 - 1949: 2,-11 - 1954: 2,-10 - 1987: -10,-28 - 1998: 2,-27 - 2001: 8,-32 - 2009: 10,-27 - 2017: 11,-26 - 2022: 11,-20 - 2027: 11,-19 - 2035: 4,16 - 2072: 4,12 - 2080: 4,13 - 2088: 4,14 - 2096: 4,15 - 2104: 8,2 - 2112: 8,3 - 2120: 8,4 - 2125: 9,2 - 2130: 9,3 - 2135: 9,4 - 2140: 2,-13 - 2145: 2,-12 - 2150: 2,-11 - 2155: 2,-10 - 2209: -10,-28 - 2220: 2,-27 - 2223: 8,-32 - 2231: 10,-27 - 2239: 11,-26 - 2244: 11,-20 - 2249: 11,-19 - 2257: 4,16 - 2273: 4,12 - 2281: 4,13 - 2289: 4,14 - 2297: 4,15 - 2305: 8,2 - 2313: 8,3 - 2321: 8,4 - 2326: 9,2 - 2331: 9,3 - 2336: 9,4 - 2341: 2,-13 - 2346: 2,-12 - 2351: 2,-11 - 2356: 2,-10 - 2413: -10,-28 - 2421: 2,-27 - 2429: 10,-27 - 2437: 11,-26 - 2445: 4,16 - 2461: 11,-20 - 2466: 11,-19 - 2469: 8,-32 - 2472: 9,-30 - 2507: -10,-8 - 2528: 4,12 - 2536: 4,13 - 2544: 4,14 - 2552: 4,15 - 2560: 8,2 - 2568: 8,3 - 2576: 8,4 - 2581: 9,2 - 2586: 9,3 - 2591: 9,4 - 2596: 2,-13 - 2601: 2,-12 - 2606: 2,-11 - 2611: 2,-10 - 2635: -10,-8 - 2702: -10,-28 - 2716: 2,-27 - 2719: 8,-32 - 2722: 9,-30 - 2730: 10,-27 - 2738: 11,-26 - 2746: 11,-20 - 2751: 11,-19 - 2767: 4,16 - 2780: 4,12 - 2788: 4,13 - 2796: 4,14 - 2804: 4,15 - 2812: 8,2 - 2820: 8,3 - 2828: 8,4 - 2833: 9,2 - 2838: 9,3 - 2843: 9,4 - 2848: 2,-13 - 2853: 2,-12 - 2858: 2,-11 - 2863: 2,-10 - 2887: -10,-8 - 2954: -10,-28 - 2968: 2,-27 - 2971: 8,-32 - 2974: 9,-30 - 2982: 10,-27 - 2990: 11,-26 - 2998: 11,-20 - 3003: 11,-19 - 3019: 4,16 + 1769: -13,-22 + 1779: -13,-20 + 1789: 2,-27 + 1797: 10,-27 + 1805: 11,-26 + 1813: 4,16 + 1821: 4,17 + 1826: 11,-20 + 1854: 12,-20 + 1859: -10,-5 + 1864: -10,-6 + 1869: -11,-8 + 1872: -10,-8 + 1880: -10,-7 + 1885: -8,7 + 1890: -8,9 + 1893: 4,12 + 1901: 4,13 + 1909: 4,14 + 1917: 4,15 + 1925: 8,2 + 1933: 8,3 + 1971: -11,-8 + 1974: -10,-8 + 1982: -10,-7 + 1987: -10,-6 + 1992: -10,-5 + 1997: -8,7 + 2002: -8,9 + 2005: -13,-22 + 2015: -13,-20 + 2031: 2,-27 + 2045: 10,-27 + 2053: 11,-26 + 2061: 11,-20 + 2074: 12,-20 + 2082: 4,16 + 2090: 4,17 + 2095: 4,12 + 2103: 4,13 + 2111: 4,14 + 2119: 4,15 + 2127: 8,2 + 2135: 8,3 + 2173: -11,-8 + 2176: -10,-8 + 2184: -10,-7 + 2189: -10,-6 + 2194: -10,-5 + 2199: -8,7 + 2204: -8,9 + 2207: -13,-22 + 2217: -13,-20 + 2233: 2,-27 + 2247: 10,-27 + 2255: 11,-26 + 2263: 11,-20 + 2276: 12,-20 + 2284: 4,16 + 2292: 4,17 + 2297: 4,12 + 2305: 4,13 + 2313: 4,14 + 2321: 4,15 + 2349: -11,-8 + 2352: -10,-8 + 2360: -10,-7 + 2365: -10,-6 + 2370: -10,-5 + 2375: -8,7 + 2380: -8,9 + 2383: -13,-22 + 2393: -13,-20 + 2406: 2,-27 + 2420: 10,-27 + 2428: 11,-26 + 2436: 11,-20 + 2449: 12,-20 + 2457: 4,16 + 2465: 4,17 + 2497: 8,3 + 2505: 8,2 + 2711: 4,12 + 2719: 4,13 + 2727: 4,14 + 2735: 4,15 + 2743: 8,2 + 2751: 8,3 + 2795: -11,-8 + 2798: -10,-8 + 2806: -10,-7 + 2811: -10,-6 + 2816: -10,-5 + 2845: -8,7 + 2850: -8,9 + 2853: -13,-22 + 2863: -13,-20 + 2879: 2,-27 + 2893: 10,-27 + 2901: 11,-26 + 2909: 11,-20 + 2922: 12,-20 + 2930: 4,16 + 2938: 4,17 + 2943: 4,12 + 2951: 4,13 + 2959: 4,14 + 2967: 4,15 + 2975: 8,2 + 2983: 8,3 + 3027: -11,-8 + 3030: -10,-8 + 3038: -10,-7 + 3043: -10,-6 + 3048: -10,-5 + 3077: -8,7 + 3082: -8,9 + 3085: -13,-22 + 3095: -13,-20 + 3111: 2,-27 + 3125: 10,-27 + 3133: 11,-26 + 3141: 11,-20 + 3154: 12,-20 + 3162: 4,16 + 3170: 4,17 + 3175: 4,12 + 3183: 4,13 + 3191: 4,14 + 3199: 4,15 + 3207: 8,2 + 3215: 8,3 + 3259: -11,-8 + 3262: -10,-8 + 3270: -10,-7 + 3275: -10,-6 + 3280: -10,-5 + 3309: -8,7 + 3314: -8,9 + 3317: -13,-22 + 3327: -13,-20 + 3343: 2,-27 + 3357: 10,-27 + 3365: 11,-26 + 3373: 11,-20 + 3386: 12,-20 + 3394: 4,16 + 3402: 4,17 + 3407: 4,12 + 3415: 4,13 + 3423: 4,14 + 3431: 4,15 + 3439: 8,2 + 3447: 8,3 + 3491: -11,-8 + 3494: -10,-8 + 3502: -10,-7 + 3507: -10,-6 + 3512: -10,-5 + 3541: -8,7 + 3546: -8,9 + 3549: -13,-22 + 3559: -13,-20 + 3575: 2,-27 + 3589: 10,-27 + 3597: 11,-26 + 3605: 11,-20 + 3618: 12,-20 + 3626: 4,16 + 3634: 4,17 + 3639: 4,12 + 3647: 4,13 + 3655: 4,14 + 3663: 4,15 + 3671: 8,2 + 3679: 8,3 + 3723: -11,-8 + 3726: -10,-8 + 3773: -8,7 + 3778: -8,9 + 3807: 2,-27 + 3821: 10,-27 + 3829: 11,-26 + 3837: 11,-20 + 3850: 12,-20 + 3858: 4,16 + 3866: 4,17 + 3871: -10,-6 + 3876: -10,-7 + 3881: -10,-5 + 3895: -13,-22 - node: zIndex: 1 - id: LatticeCornerSE + id: LatticeCornerSW decals: - 450: 4,12 - 458: 4,13 - 466: 4,14 - 474: 4,15 - 482: 8,2 - 490: 8,3 - 498: 8,4 - 541: -13,-15 - 546: -13,-14 - 551: -13,-13 - 554: -13,-22 - 559: -13,-21 - 564: -13,-20 - 577: 2,-27 - 588: 10,-27 - 596: 11,-26 - 614: 4,16 - 622: 4,17 - 627: 4,12 - 635: 4,13 - 643: 4,14 - 651: 4,15 - 659: 8,2 - 667: 8,3 - 675: 8,4 - 718: -13,-15 - 723: -13,-14 - 728: -13,-13 - 731: -13,-22 - 736: -13,-21 - 741: -13,-20 - 754: 2,-27 - 765: 10,-27 - 773: 11,-26 - 791: 4,16 - 799: 4,17 - 804: 4,12 - 812: 4,13 - 820: 4,14 - 828: 4,15 - 836: 8,2 - 844: 8,3 - 852: 8,4 - 895: -13,-15 - 900: -13,-14 - 905: -13,-13 - 908: -13,-22 - 913: -13,-21 - 918: -13,-20 - 931: 2,-27 - 942: 10,-27 - 950: 11,-26 - 968: 4,16 - 976: 4,17 - 981: 4,12 - 989: 4,13 - 997: 4,14 - 1005: 4,15 - 1013: 8,2 - 1021: 8,3 - 1029: 8,4 - 1072: -13,-15 - 1077: -13,-14 - 1082: -13,-13 - 1085: -13,-22 - 1090: -13,-21 - 1095: -13,-20 - 1108: 2,-27 - 1119: 10,-27 - 1127: 11,-26 - 1145: 4,16 - 1153: 4,17 - 1158: 4,12 - 1166: 4,13 - 1174: 4,14 - 1182: 4,15 - 1190: 8,2 - 1198: 8,3 - 1206: 8,4 - 1249: -13,-15 - 1254: -13,-14 - 1259: -13,-13 - 1262: -13,-22 - 1267: -13,-21 - 1272: -13,-20 - 1285: 2,-27 - 1296: 10,-27 - 1304: 11,-26 - 1322: 4,16 - 1330: 4,17 - 1335: 4,12 - 1343: 4,13 - 1351: 4,14 - 1359: 4,15 - 1367: 8,2 - 1375: 8,3 - 1383: 8,4 - 1426: -13,-15 - 1431: -13,-14 - 1436: -13,-13 - 1439: -13,-22 - 1444: -13,-21 - 1449: -13,-20 - 1462: 2,-27 - 1473: 10,-27 - 1481: 11,-26 - 1499: 4,16 - 1507: 4,17 - 1512: 4,12 - 1520: 4,13 - 1528: 4,14 - 1536: 4,15 - 1544: 8,2 - 1552: 8,3 - 1560: 8,4 - 1603: -13,-15 - 1608: -13,-14 - 1613: -13,-13 - 1616: -13,-22 - 1621: -13,-21 - 1626: -13,-20 - 1639: 2,-27 - 1650: 10,-27 - 1658: 11,-26 - 1676: 4,16 - 1684: 4,17 - 1689: 4,12 - 1697: 4,13 - 1705: 4,14 - 1713: 4,15 - 1721: 8,2 - 1729: 8,3 - 1737: 8,4 - 1780: -13,-15 - 1785: -13,-14 - 1790: -13,-13 - 1793: -13,-22 - 1798: -13,-21 - 1803: -13,-20 - 1816: 2,-27 - 1827: 10,-27 - 1835: 11,-26 - 1853: 4,16 - 1861: 4,17 - 1866: 4,12 - 1874: 4,13 - 1882: 4,14 - 1890: 4,15 - 1898: 8,2 - 1906: 8,3 - 1914: 8,4 - 1957: -13,-15 - 1962: -13,-14 - 1967: -13,-13 - 1970: -13,-22 - 1975: -13,-21 - 1980: -13,-20 - 1993: 2,-27 - 2004: 10,-27 - 2012: 11,-26 - 2030: 4,16 - 2038: 4,17 - 2067: 4,12 - 2075: 4,13 - 2083: 4,14 - 2091: 4,15 - 2099: 8,2 - 2107: 8,3 - 2115: 8,4 - 2158: -13,-15 - 2163: -13,-14 - 2192: -13,-22 - 2197: -13,-21 - 2202: -13,-20 - 2215: 2,-27 - 2226: 10,-27 - 2234: 11,-26 - 2252: 4,16 - 2260: 4,17 - 2265: -13,-13 - 2268: 4,12 - 2276: 4,13 - 2284: 4,14 - 2292: 4,15 - 2300: 8,2 - 2308: 8,3 - 2316: 8,4 - 2359: -13,-15 - 2364: -13,-14 - 2369: -13,-13 - 2396: -13,-22 - 2401: -13,-21 - 2406: -13,-20 - 2416: 2,-27 + 185: 4,12 + 193: 4,13 + 201: 4,14 + 209: 4,15 + 217: 8,2 + 225: 8,3 + 230: 9,3 + 235: 9,4 + 240: 2,-13 + 245: 2,-12 + 250: 2,-11 + 255: 2,-10 + 286: 2,-27 + 297: 10,-27 + 305: 11,-26 + 310: 11,-20 + 315: 11,-19 + 323: 4,16 + 329: 4,17 + 336: 4,12 + 344: 4,13 + 352: 4,14 + 360: 4,15 + 368: 8,2 + 376: 8,3 + 381: 9,3 + 386: 9,4 + 391: 2,-13 + 396: 2,-12 + 401: 2,-11 + 406: 2,-10 + 437: 2,-27 + 448: 10,-27 + 456: 11,-26 + 461: 11,-20 + 466: 11,-19 + 474: 4,16 + 480: 4,17 + 487: 4,12 + 495: 4,13 + 503: 4,14 + 511: 4,15 + 519: 8,2 + 527: 8,3 + 532: 9,3 + 537: 9,4 + 542: 2,-13 + 547: 2,-12 + 552: 2,-11 + 557: 2,-10 + 588: 2,-27 + 599: 10,-27 + 607: 11,-26 + 612: 11,-20 + 617: 11,-19 + 625: 4,16 + 631: 4,17 + 638: 4,12 + 646: 4,13 + 654: 4,14 + 662: 4,15 + 670: 8,2 + 678: 8,3 + 683: 9,3 + 688: 9,4 + 693: 2,-13 + 698: 2,-12 + 703: 2,-11 + 708: 2,-10 + 739: 2,-27 + 750: 10,-27 + 758: 11,-26 + 763: 11,-20 + 768: 11,-19 + 776: 4,16 + 782: 4,17 + 789: 4,12 + 797: 4,13 + 805: 4,14 + 813: 4,15 + 821: 8,2 + 829: 8,3 + 834: 9,3 + 839: 9,4 + 844: 2,-13 + 849: 2,-12 + 854: 2,-11 + 859: 2,-10 + 890: 2,-27 + 901: 10,-27 + 909: 11,-26 + 914: 11,-20 + 919: 11,-19 + 927: 4,16 + 933: 4,17 + 940: 4,12 + 948: 4,13 + 956: 4,14 + 964: 4,15 + 972: 8,2 + 980: 8,3 + 985: 9,3 + 990: 9,4 + 995: 2,-13 + 1000: 2,-12 + 1005: 2,-11 + 1010: 2,-10 + 1041: 2,-27 + 1052: 10,-27 + 1060: 11,-26 + 1065: 11,-20 + 1070: 11,-19 + 1078: 4,16 + 1084: 4,17 + 1091: 4,12 + 1099: 4,13 + 1107: 4,14 + 1115: 4,15 + 1123: 8,2 + 1131: 8,3 + 1136: 9,3 + 1141: 9,4 + 1146: 2,-13 + 1151: 2,-12 + 1156: 2,-11 + 1161: 2,-10 + 1192: 2,-27 + 1203: 10,-27 + 1211: 11,-26 + 1216: 11,-20 + 1221: 11,-19 + 1229: 4,16 + 1235: 4,17 + 1242: 4,12 + 1250: 4,13 + 1258: 4,14 + 1266: 4,15 + 1274: 8,2 + 1282: 8,3 + 1287: 9,3 + 1292: 9,4 + 1297: 2,-13 + 1302: 2,-12 + 1307: 2,-11 + 1312: 2,-10 + 1343: 2,-27 + 1354: 10,-27 + 1362: 11,-26 + 1367: 11,-20 + 1372: 11,-19 + 1380: 4,16 + 1386: 4,17 + 1393: 4,12 + 1401: 4,13 + 1409: 4,14 + 1417: 4,15 + 1425: 8,2 + 1433: 8,3 + 1438: 9,3 + 1443: 9,4 + 1448: 2,-13 + 1453: 2,-12 + 1458: 2,-11 + 1463: 2,-10 + 1494: 2,-27 + 1505: 10,-27 + 1513: 11,-26 + 1518: 11,-20 + 1523: 11,-19 + 1531: 4,16 + 1537: 4,17 + 1544: 4,12 + 1552: 4,13 + 1560: 4,14 + 1568: 4,15 + 1576: 8,2 + 1584: 8,3 + 1589: 9,3 + 1594: 9,4 + 1599: 2,-13 + 1604: 2,-12 + 1609: 2,-11 + 1614: 2,-10 + 1645: 2,-27 + 1656: 10,-27 + 1664: 11,-26 + 1669: 11,-20 + 1674: 11,-19 + 1682: 4,16 + 1688: 4,17 + 1695: 4,12 + 1703: 4,13 + 1711: 4,14 + 1719: 4,15 + 1727: 8,2 + 1735: 8,3 + 1740: 9,3 + 1745: 9,4 + 1750: 2,-13 + 1755: 2,-12 + 1760: 2,-11 + 1765: 2,-10 + 1793: 2,-27 + 1801: 10,-27 + 1809: 11,-26 + 1817: 4,16 + 1823: 4,17 + 1830: 11,-20 + 1835: 11,-19 + 1851: 13,-20 + 1856: 12,-20 + 1876: -10,-8 + 1897: 4,12 + 1905: 4,13 + 1913: 4,14 + 1921: 4,15 + 1929: 8,2 + 1937: 8,3 + 1942: 9,3 + 1947: 9,4 + 1952: 2,-13 + 1957: 2,-12 + 1962: 2,-11 + 1967: 2,-10 + 1978: -10,-8 + 2035: 2,-27 + 2049: 10,-27 + 2057: 11,-26 + 2065: 11,-20 + 2070: 11,-19 + 2076: 12,-20 + 2079: 13,-20 + 2086: 4,16 + 2092: 4,17 + 2099: 4,12 + 2107: 4,13 + 2115: 4,14 + 2123: 4,15 + 2131: 8,2 + 2139: 8,3 + 2144: 9,3 + 2149: 9,4 + 2154: 2,-13 + 2159: 2,-12 + 2164: 2,-11 + 2169: 2,-10 + 2180: -10,-8 + 2237: 2,-27 + 2251: 10,-27 + 2259: 11,-26 + 2267: 11,-20 + 2272: 11,-19 + 2278: 12,-20 + 2281: 13,-20 + 2288: 4,16 + 2294: 4,17 + 2301: 4,12 + 2309: 4,13 + 2317: 4,14 + 2325: 4,15 + 2330: 2,-13 + 2335: 2,-12 + 2340: 2,-11 + 2345: 2,-10 + 2356: -10,-8 + 2410: 2,-27 2424: 10,-27 2432: 11,-26 - 2440: 4,16 - 2448: 4,17 - 2456: 11,-20 - 2484: 12,-20 - 2489: -10,-5 - 2494: -10,-6 - 2499: -11,-8 - 2502: -10,-8 - 2510: -10,-7 - 2515: -8,7 - 2520: -8,9 - 2523: 4,12 - 2531: 4,13 - 2539: 4,14 - 2547: 4,15 - 2555: 8,2 - 2563: 8,3 - 2571: 8,4 - 2614: -13,-15 - 2619: -13,-14 - 2624: -13,-13 - 2627: -11,-8 - 2630: -10,-8 - 2638: -10,-7 - 2643: -10,-6 - 2648: -10,-5 - 2677: -8,7 - 2682: -8,9 - 2685: -13,-22 - 2690: -13,-21 - 2695: -13,-20 - 2711: 2,-27 - 2725: 10,-27 - 2733: 11,-26 - 2741: 11,-20 - 2754: 12,-20 - 2762: 4,16 - 2770: 4,17 - 2775: 4,12 - 2783: 4,13 - 2791: 4,14 - 2799: 4,15 - 2807: 8,2 - 2815: 8,3 - 2823: 8,4 - 2866: -13,-15 - 2871: -13,-14 - 2876: -13,-13 - 2879: -11,-8 - 2882: -10,-8 - 2890: -10,-7 - 2895: -10,-6 - 2900: -10,-5 - 2929: -8,7 - 2934: -8,9 - 2937: -13,-22 - 2942: -13,-21 - 2947: -13,-20 - 2963: 2,-27 - 2977: 10,-27 - 2985: 11,-26 - 2993: 11,-20 - 3006: 12,-20 - 3014: 4,16 - 3022: 4,17 - - node: - zIndex: 1 - id: LatticeCornerSW - decals: - 454: 4,12 - 462: 4,13 - 470: 4,14 - 478: 4,15 - 486: 8,2 - 494: 8,3 - 502: 8,4 - 507: 9,2 - 512: 9,3 - 517: 9,4 - 522: 2,-13 - 527: 2,-12 - 532: 2,-11 - 537: 2,-10 - 581: 2,-27 - 592: 10,-27 - 600: 11,-26 - 605: 11,-20 - 610: 11,-19 - 618: 4,16 - 624: 4,17 - 631: 4,12 - 639: 4,13 - 647: 4,14 - 655: 4,15 - 663: 8,2 - 671: 8,3 - 679: 8,4 - 684: 9,2 - 689: 9,3 - 694: 9,4 - 699: 2,-13 - 704: 2,-12 - 709: 2,-11 - 714: 2,-10 - 758: 2,-27 - 769: 10,-27 - 777: 11,-26 - 782: 11,-20 - 787: 11,-19 - 795: 4,16 - 801: 4,17 - 808: 4,12 - 816: 4,13 - 824: 4,14 - 832: 4,15 - 840: 8,2 - 848: 8,3 - 856: 8,4 - 861: 9,2 - 866: 9,3 - 871: 9,4 - 876: 2,-13 - 881: 2,-12 - 886: 2,-11 - 891: 2,-10 - 935: 2,-27 - 946: 10,-27 - 954: 11,-26 - 959: 11,-20 - 964: 11,-19 - 972: 4,16 - 978: 4,17 - 985: 4,12 - 993: 4,13 - 1001: 4,14 - 1009: 4,15 - 1017: 8,2 - 1025: 8,3 - 1033: 8,4 - 1038: 9,2 - 1043: 9,3 - 1048: 9,4 - 1053: 2,-13 - 1058: 2,-12 - 1063: 2,-11 - 1068: 2,-10 - 1112: 2,-27 - 1123: 10,-27 - 1131: 11,-26 - 1136: 11,-20 - 1141: 11,-19 - 1149: 4,16 - 1155: 4,17 - 1162: 4,12 - 1170: 4,13 - 1178: 4,14 - 1186: 4,15 - 1194: 8,2 - 1202: 8,3 - 1210: 8,4 - 1215: 9,2 - 1220: 9,3 - 1225: 9,4 - 1230: 2,-13 - 1235: 2,-12 - 1240: 2,-11 - 1245: 2,-10 - 1289: 2,-27 - 1300: 10,-27 - 1308: 11,-26 - 1313: 11,-20 - 1318: 11,-19 - 1326: 4,16 - 1332: 4,17 - 1339: 4,12 - 1347: 4,13 - 1355: 4,14 - 1363: 4,15 - 1371: 8,2 - 1379: 8,3 - 1387: 8,4 - 1392: 9,2 - 1397: 9,3 - 1402: 9,4 - 1407: 2,-13 - 1412: 2,-12 - 1417: 2,-11 - 1422: 2,-10 - 1466: 2,-27 - 1477: 10,-27 - 1485: 11,-26 - 1490: 11,-20 - 1495: 11,-19 - 1503: 4,16 - 1509: 4,17 - 1516: 4,12 - 1524: 4,13 - 1532: 4,14 - 1540: 4,15 - 1548: 8,2 - 1556: 8,3 - 1564: 8,4 - 1569: 9,2 - 1574: 9,3 - 1579: 9,4 - 1584: 2,-13 - 1589: 2,-12 - 1594: 2,-11 - 1599: 2,-10 - 1643: 2,-27 - 1654: 10,-27 - 1662: 11,-26 - 1667: 11,-20 - 1672: 11,-19 - 1680: 4,16 - 1686: 4,17 - 1693: 4,12 - 1701: 4,13 - 1709: 4,14 - 1717: 4,15 - 1725: 8,2 - 1733: 8,3 - 1741: 8,4 - 1746: 9,2 - 1751: 9,3 - 1756: 9,4 - 1761: 2,-13 - 1766: 2,-12 - 1771: 2,-11 - 1776: 2,-10 - 1820: 2,-27 - 1831: 10,-27 - 1839: 11,-26 - 1844: 11,-20 - 1849: 11,-19 - 1857: 4,16 - 1863: 4,17 - 1870: 4,12 - 1878: 4,13 - 1886: 4,14 - 1894: 4,15 - 1902: 8,2 - 1910: 8,3 - 1918: 8,4 - 1923: 9,2 - 1928: 9,3 - 1933: 9,4 - 1938: 2,-13 - 1943: 2,-12 - 1948: 2,-11 - 1953: 2,-10 - 1997: 2,-27 - 2008: 10,-27 - 2016: 11,-26 - 2021: 11,-20 - 2026: 11,-19 - 2034: 4,16 - 2040: 4,17 - 2071: 4,12 - 2079: 4,13 - 2087: 4,14 - 2095: 4,15 - 2103: 8,2 - 2111: 8,3 - 2119: 8,4 - 2124: 9,2 - 2129: 9,3 - 2134: 9,4 - 2139: 2,-13 - 2144: 2,-12 - 2149: 2,-11 - 2154: 2,-10 - 2219: 2,-27 - 2230: 10,-27 - 2238: 11,-26 - 2243: 11,-20 - 2248: 11,-19 - 2256: 4,16 - 2262: 4,17 - 2272: 4,12 - 2280: 4,13 - 2288: 4,14 - 2296: 4,15 - 2304: 8,2 - 2312: 8,3 - 2320: 8,4 - 2325: 9,2 - 2330: 9,3 - 2335: 9,4 - 2340: 2,-13 - 2345: 2,-12 - 2350: 2,-11 - 2355: 2,-10 - 2420: 2,-27 - 2428: 10,-27 - 2436: 11,-26 - 2444: 4,16 - 2450: 4,17 - 2460: 11,-20 - 2465: 11,-19 - 2481: 13,-20 - 2486: 12,-20 - 2506: -10,-8 - 2527: 4,12 - 2535: 4,13 - 2543: 4,14 - 2551: 4,15 - 2559: 8,2 - 2567: 8,3 - 2575: 8,4 - 2580: 9,2 - 2585: 9,3 - 2590: 9,4 - 2595: 2,-13 - 2600: 2,-12 - 2605: 2,-11 - 2610: 2,-10 - 2634: -10,-8 - 2715: 2,-27 - 2729: 10,-27 - 2737: 11,-26 - 2745: 11,-20 - 2750: 11,-19 - 2756: 12,-20 - 2759: 13,-20 - 2766: 4,16 - 2772: 4,17 - 2779: 4,12 - 2787: 4,13 - 2795: 4,14 - 2803: 4,15 - 2811: 8,2 - 2819: 8,3 - 2827: 8,4 - 2832: 9,2 - 2837: 9,3 - 2842: 9,4 - 2847: 2,-13 - 2852: 2,-12 - 2857: 2,-11 - 2862: 2,-10 - 2886: -10,-8 - 2967: 2,-27 - 2981: 10,-27 - 2989: 11,-26 - 2997: 11,-20 - 3002: 11,-19 - 3008: 12,-20 - 3011: 13,-20 - 3018: 4,16 - 3024: 4,17 + 2440: 11,-20 + 2445: 11,-19 + 2451: 12,-20 + 2454: 13,-20 + 2461: 4,16 + 2467: 4,17 + 2484: 10,-3 + 2488: 9,4 + 2493: 9,3 + 2501: 8,3 + 2509: 8,2 + 2715: 4,12 + 2723: 4,13 + 2731: 4,14 + 2739: 4,15 + 2747: 8,2 + 2755: 8,3 + 2760: 9,3 + 2765: 9,4 + 2770: 2,-13 + 2775: 2,-12 + 2780: 2,-11 + 2785: 2,-10 + 2792: 10,-3 + 2802: -10,-8 + 2883: 2,-27 + 2897: 10,-27 + 2905: 11,-26 + 2913: 11,-20 + 2918: 11,-19 + 2924: 12,-20 + 2927: 13,-20 + 2934: 4,16 + 2940: 4,17 + 2947: 4,12 + 2955: 4,13 + 2963: 4,14 + 2971: 4,15 + 2979: 8,2 + 2987: 8,3 + 2992: 9,3 + 2997: 9,4 + 3002: 2,-13 + 3007: 2,-12 + 3012: 2,-11 + 3017: 2,-10 + 3024: 10,-3 + 3034: -10,-8 + 3115: 2,-27 + 3129: 10,-27 + 3137: 11,-26 + 3145: 11,-20 + 3150: 11,-19 + 3156: 12,-20 + 3159: 13,-20 + 3166: 4,16 + 3172: 4,17 + 3179: 4,12 + 3187: 4,13 + 3195: 4,14 + 3203: 4,15 + 3211: 8,2 + 3219: 8,3 + 3224: 9,3 + 3229: 9,4 + 3234: 2,-13 + 3239: 2,-12 + 3244: 2,-11 + 3249: 2,-10 + 3256: 10,-3 + 3266: -10,-8 + 3347: 2,-27 + 3361: 10,-27 + 3369: 11,-26 + 3377: 11,-20 + 3382: 11,-19 + 3388: 12,-20 + 3391: 13,-20 + 3398: 4,16 + 3404: 4,17 + 3411: 4,12 + 3419: 4,13 + 3427: 4,14 + 3435: 4,15 + 3443: 8,2 + 3451: 8,3 + 3456: 9,3 + 3461: 9,4 + 3466: 2,-13 + 3471: 2,-12 + 3476: 2,-11 + 3481: 2,-10 + 3488: 10,-3 + 3498: -10,-8 + 3579: 2,-27 + 3593: 10,-27 + 3601: 11,-26 + 3609: 11,-20 + 3614: 11,-19 + 3620: 12,-20 + 3623: 13,-20 + 3630: 4,16 + 3636: 4,17 + 3643: 4,12 + 3651: 4,13 + 3659: 4,14 + 3667: 4,15 + 3675: 8,2 + 3683: 8,3 + 3688: 9,3 + 3693: 9,4 + 3698: 2,-13 + 3703: 2,-12 + 3708: 2,-11 + 3713: 2,-10 + 3720: 10,-3 + 3730: -10,-8 + 3811: 2,-27 + 3825: 10,-27 + 3833: 11,-26 + 3841: 11,-20 + 3846: 11,-19 + 3852: 12,-20 + 3855: 13,-20 + 3862: 4,16 + 3868: 4,17 - node: id: LatticeEdgeE decals: - 449: 4,12 - 457: 4,13 - 465: 4,14 - 473: 4,15 - 481: 8,2 - 489: 8,3 - 497: 8,4 - 540: -13,-15 - 545: -13,-14 - 550: -13,-13 - 553: -13,-22 - 558: -13,-21 - 563: -13,-20 - 567: -10,-28 - 572: -8,-32 - 576: 2,-27 - 587: 10,-27 - 595: 11,-26 - 613: 4,16 - 621: 4,17 - 626: 4,12 - 634: 4,13 - 642: 4,14 - 650: 4,15 - 658: 8,2 - 666: 8,3 - 674: 8,4 - 717: -13,-15 - 722: -13,-14 - 727: -13,-13 - 730: -13,-22 - 735: -13,-21 - 740: -13,-20 - 744: -10,-28 - 749: -8,-32 - 753: 2,-27 - 764: 10,-27 - 772: 11,-26 - 790: 4,16 - 798: 4,17 - 803: 4,12 - 811: 4,13 - 819: 4,14 - 827: 4,15 - 835: 8,2 - 843: 8,3 - 851: 8,4 - 894: -13,-15 - 899: -13,-14 - 904: -13,-13 - 907: -13,-22 - 912: -13,-21 - 917: -13,-20 - 921: -10,-28 - 926: -8,-32 - 930: 2,-27 - 941: 10,-27 - 949: 11,-26 - 967: 4,16 - 975: 4,17 - 980: 4,12 - 988: 4,13 - 996: 4,14 - 1004: 4,15 - 1012: 8,2 - 1020: 8,3 - 1028: 8,4 - 1071: -13,-15 - 1076: -13,-14 - 1081: -13,-13 - 1084: -13,-22 - 1089: -13,-21 - 1094: -13,-20 - 1098: -10,-28 - 1103: -8,-32 - 1107: 2,-27 - 1118: 10,-27 - 1126: 11,-26 - 1144: 4,16 - 1152: 4,17 - 1157: 4,12 - 1165: 4,13 - 1173: 4,14 - 1181: 4,15 - 1189: 8,2 - 1197: 8,3 - 1205: 8,4 - 1248: -13,-15 - 1253: -13,-14 - 1258: -13,-13 - 1261: -13,-22 - 1266: -13,-21 - 1271: -13,-20 - 1275: -10,-28 - 1280: -8,-32 - 1284: 2,-27 - 1295: 10,-27 - 1303: 11,-26 - 1321: 4,16 - 1329: 4,17 - 1334: 4,12 - 1342: 4,13 - 1350: 4,14 - 1358: 4,15 - 1366: 8,2 - 1374: 8,3 - 1382: 8,4 - 1425: -13,-15 - 1430: -13,-14 - 1435: -13,-13 - 1438: -13,-22 - 1443: -13,-21 - 1448: -13,-20 - 1452: -10,-28 - 1457: -8,-32 - 1461: 2,-27 - 1472: 10,-27 - 1480: 11,-26 - 1498: 4,16 - 1506: 4,17 - 1511: 4,12 - 1519: 4,13 - 1527: 4,14 - 1535: 4,15 - 1543: 8,2 - 1551: 8,3 - 1559: 8,4 - 1602: -13,-15 - 1607: -13,-14 - 1612: -13,-13 - 1615: -13,-22 - 1620: -13,-21 - 1625: -13,-20 - 1629: -10,-28 - 1634: -8,-32 - 1638: 2,-27 - 1649: 10,-27 - 1657: 11,-26 - 1675: 4,16 - 1683: 4,17 - 1688: 4,12 - 1696: 4,13 - 1704: 4,14 - 1712: 4,15 - 1720: 8,2 - 1728: 8,3 - 1736: 8,4 - 1779: -13,-15 - 1784: -13,-14 - 1789: -13,-13 - 1792: -13,-22 - 1797: -13,-21 - 1802: -13,-20 - 1806: -10,-28 - 1811: -8,-32 - 1815: 2,-27 - 1826: 10,-27 - 1834: 11,-26 - 1852: 4,16 - 1860: 4,17 - 1865: 4,12 - 1873: 4,13 - 1881: 4,14 - 1889: 4,15 - 1897: 8,2 - 1905: 8,3 - 1913: 8,4 - 1956: -13,-15 - 1961: -13,-14 - 1966: -13,-13 - 1969: -13,-22 - 1974: -13,-21 - 1979: -13,-20 - 1983: -10,-28 - 1988: -8,-32 - 1992: 2,-27 - 2003: 10,-27 - 2011: 11,-26 - 2029: 4,16 - 2037: 4,17 - 2066: 4,12 - 2074: 4,13 - 2082: 4,14 - 2090: 4,15 - 2098: 8,2 - 2106: 8,3 - 2114: 8,4 - 2157: -13,-15 - 2162: -13,-14 - 2191: -13,-22 - 2196: -13,-21 - 2201: -13,-20 - 2205: -10,-28 - 2210: -8,-32 - 2214: 2,-27 - 2225: 10,-27 - 2233: 11,-26 - 2251: 4,16 - 2259: 4,17 - 2264: -13,-13 - 2267: 4,12 - 2275: 4,13 - 2283: 4,14 - 2291: 4,15 - 2299: 8,2 - 2307: 8,3 - 2315: 8,4 - 2358: -13,-15 - 2363: -13,-14 - 2368: -13,-13 - 2395: -13,-22 - 2400: -13,-21 - 2405: -13,-20 - 2409: -10,-28 - 2415: 2,-27 - 2423: 10,-27 - 2431: 11,-26 - 2439: 4,16 - 2447: 4,17 - 2455: 11,-20 - 2473: -8,-32 - 2476: -9,-30 - 2483: 12,-20 - 2488: -10,-5 - 2493: -10,-6 - 2498: -11,-8 - 2501: -10,-8 - 2509: -10,-7 - 2514: -8,7 - 2519: -8,9 - 2522: 4,12 - 2530: 4,13 - 2538: 4,14 - 2546: 4,15 - 2554: 8,2 - 2562: 8,3 - 2570: 8,4 - 2613: -13,-15 - 2618: -13,-14 - 2623: -13,-13 - 2626: -11,-8 - 2629: -10,-8 - 2637: -10,-7 - 2642: -10,-6 - 2647: -10,-5 - 2676: -8,7 - 2681: -8,9 - 2684: -13,-22 - 2689: -13,-21 - 2694: -13,-20 - 2698: -10,-28 - 2703: -9,-30 - 2706: -8,-32 - 2710: 2,-27 - 2724: 10,-27 - 2732: 11,-26 - 2740: 11,-20 - 2753: 12,-20 - 2761: 4,16 - 2769: 4,17 - 2774: 4,12 - 2782: 4,13 - 2790: 4,14 - 2798: 4,15 - 2806: 8,2 - 2814: 8,3 - 2822: 8,4 - 2865: -13,-15 - 2870: -13,-14 - 2875: -13,-13 - 2878: -11,-8 - 2881: -10,-8 - 2889: -10,-7 - 2894: -10,-6 - 2899: -10,-5 - 2928: -8,7 - 2933: -8,9 - 2936: -13,-22 - 2941: -13,-21 - 2946: -13,-20 - 2950: -10,-28 - 2955: -9,-30 - 2958: -8,-32 - 2962: 2,-27 - 2976: 10,-27 - 2984: 11,-26 - 2992: 11,-20 - 3005: 12,-20 - 3013: 4,16 - 3021: 4,17 - - node: - id: LatticeEdgeN - decals: - 451: 4,12 - 459: 4,13 - 467: 4,14 - 475: 4,15 - 483: 8,2 - 491: 8,3 - 499: 8,4 - 505: 9,2 - 510: 9,3 - 515: 9,4 - 520: 2,-13 - 525: 2,-12 - 530: 2,-11 - 535: 2,-10 - 542: -13,-15 - 547: -13,-14 - 555: -13,-22 - 560: -13,-21 - 565: -13,-20 - 568: -10,-28 - 573: -8,-32 - 578: 2,-27 - 583: 8,-32 - 589: 10,-27 - 597: 11,-26 - 603: 11,-20 - 608: 11,-19 - 615: 4,16 - 628: 4,12 - 636: 4,13 - 644: 4,14 - 652: 4,15 - 660: 8,2 - 668: 8,3 - 676: 8,4 - 682: 9,2 - 687: 9,3 - 692: 9,4 - 697: 2,-13 - 702: 2,-12 - 707: 2,-11 - 712: 2,-10 - 719: -13,-15 - 724: -13,-14 - 732: -13,-22 - 737: -13,-21 - 742: -13,-20 - 745: -10,-28 - 750: -8,-32 - 755: 2,-27 - 760: 8,-32 - 766: 10,-27 - 774: 11,-26 - 780: 11,-20 - 785: 11,-19 - 792: 4,16 - 805: 4,12 - 813: 4,13 - 821: 4,14 - 829: 4,15 - 837: 8,2 - 845: 8,3 - 853: 8,4 - 859: 9,2 - 864: 9,3 - 869: 9,4 - 874: 2,-13 - 879: 2,-12 - 884: 2,-11 - 889: 2,-10 - 896: -13,-15 - 901: -13,-14 - 909: -13,-22 - 914: -13,-21 - 919: -13,-20 - 922: -10,-28 - 927: -8,-32 - 932: 2,-27 - 937: 8,-32 - 943: 10,-27 - 951: 11,-26 - 957: 11,-20 - 962: 11,-19 - 969: 4,16 - 982: 4,12 - 990: 4,13 - 998: 4,14 - 1006: 4,15 - 1014: 8,2 - 1022: 8,3 - 1030: 8,4 - 1036: 9,2 - 1041: 9,3 - 1046: 9,4 - 1051: 2,-13 - 1056: 2,-12 - 1061: 2,-11 - 1066: 2,-10 - 1073: -13,-15 - 1078: -13,-14 - 1086: -13,-22 - 1091: -13,-21 - 1096: -13,-20 - 1099: -10,-28 - 1104: -8,-32 - 1109: 2,-27 - 1114: 8,-32 - 1120: 10,-27 - 1128: 11,-26 - 1134: 11,-20 - 1139: 11,-19 - 1146: 4,16 - 1159: 4,12 - 1167: 4,13 - 1175: 4,14 - 1183: 4,15 - 1191: 8,2 - 1199: 8,3 - 1207: 8,4 - 1213: 9,2 - 1218: 9,3 - 1223: 9,4 - 1228: 2,-13 - 1233: 2,-12 - 1238: 2,-11 - 1243: 2,-10 - 1250: -13,-15 - 1255: -13,-14 - 1263: -13,-22 - 1268: -13,-21 - 1273: -13,-20 - 1276: -10,-28 - 1281: -8,-32 - 1286: 2,-27 - 1291: 8,-32 - 1297: 10,-27 - 1305: 11,-26 - 1311: 11,-20 - 1316: 11,-19 - 1323: 4,16 - 1336: 4,12 - 1344: 4,13 - 1352: 4,14 - 1360: 4,15 - 1368: 8,2 - 1376: 8,3 - 1384: 8,4 - 1390: 9,2 - 1395: 9,3 - 1400: 9,4 - 1405: 2,-13 - 1410: 2,-12 - 1415: 2,-11 - 1420: 2,-10 - 1427: -13,-15 - 1432: -13,-14 - 1440: -13,-22 - 1445: -13,-21 - 1450: -13,-20 - 1453: -10,-28 - 1458: -8,-32 - 1463: 2,-27 - 1468: 8,-32 - 1474: 10,-27 - 1482: 11,-26 - 1488: 11,-20 - 1493: 11,-19 - 1500: 4,16 - 1513: 4,12 - 1521: 4,13 - 1529: 4,14 - 1537: 4,15 - 1545: 8,2 - 1553: 8,3 - 1561: 8,4 - 1567: 9,2 - 1572: 9,3 - 1577: 9,4 - 1582: 2,-13 - 1587: 2,-12 - 1592: 2,-11 - 1597: 2,-10 - 1604: -13,-15 - 1609: -13,-14 + 180: 4,12 + 188: 4,13 + 196: 4,14 + 204: 4,15 + 212: 8,2 + 220: 8,3 + 258: -13,-22 + 268: -13,-20 + 272: -10,-28 + 277: -8,-32 + 281: 2,-27 + 292: 10,-27 + 300: 11,-26 + 318: 4,16 + 326: 4,17 + 331: 4,12 + 339: 4,13 + 347: 4,14 + 355: 4,15 + 363: 8,2 + 371: 8,3 + 409: -13,-22 + 419: -13,-20 + 423: -10,-28 + 428: -8,-32 + 432: 2,-27 + 443: 10,-27 + 451: 11,-26 + 469: 4,16 + 477: 4,17 + 482: 4,12 + 490: 4,13 + 498: 4,14 + 506: 4,15 + 514: 8,2 + 522: 8,3 + 560: -13,-22 + 570: -13,-20 + 574: -10,-28 + 579: -8,-32 + 583: 2,-27 + 594: 10,-27 + 602: 11,-26 + 620: 4,16 + 628: 4,17 + 633: 4,12 + 641: 4,13 + 649: 4,14 + 657: 4,15 + 665: 8,2 + 673: 8,3 + 711: -13,-22 + 721: -13,-20 + 725: -10,-28 + 730: -8,-32 + 734: 2,-27 + 745: 10,-27 + 753: 11,-26 + 771: 4,16 + 779: 4,17 + 784: 4,12 + 792: 4,13 + 800: 4,14 + 808: 4,15 + 816: 8,2 + 824: 8,3 + 862: -13,-22 + 872: -13,-20 + 876: -10,-28 + 881: -8,-32 + 885: 2,-27 + 896: 10,-27 + 904: 11,-26 + 922: 4,16 + 930: 4,17 + 935: 4,12 + 943: 4,13 + 951: 4,14 + 959: 4,15 + 967: 8,2 + 975: 8,3 + 1013: -13,-22 + 1023: -13,-20 + 1027: -10,-28 + 1032: -8,-32 + 1036: 2,-27 + 1047: 10,-27 + 1055: 11,-26 + 1073: 4,16 + 1081: 4,17 + 1086: 4,12 + 1094: 4,13 + 1102: 4,14 + 1110: 4,15 + 1118: 8,2 + 1126: 8,3 + 1164: -13,-22 + 1174: -13,-20 + 1178: -10,-28 + 1183: -8,-32 + 1187: 2,-27 + 1198: 10,-27 + 1206: 11,-26 + 1224: 4,16 + 1232: 4,17 + 1237: 4,12 + 1245: 4,13 + 1253: 4,14 + 1261: 4,15 + 1269: 8,2 + 1277: 8,3 + 1315: -13,-22 + 1325: -13,-20 + 1329: -10,-28 + 1334: -8,-32 + 1338: 2,-27 + 1349: 10,-27 + 1357: 11,-26 + 1375: 4,16 + 1383: 4,17 + 1388: 4,12 + 1396: 4,13 + 1404: 4,14 + 1412: 4,15 + 1420: 8,2 + 1428: 8,3 + 1466: -13,-22 + 1476: -13,-20 + 1480: -10,-28 + 1485: -8,-32 + 1489: 2,-27 + 1500: 10,-27 + 1508: 11,-26 + 1526: 4,16 + 1534: 4,17 + 1539: 4,12 + 1547: 4,13 + 1555: 4,14 + 1563: 4,15 + 1571: 8,2 + 1579: 8,3 1617: -13,-22 - 1622: -13,-21 1627: -13,-20 - 1630: -10,-28 - 1635: -8,-32 + 1631: -10,-28 + 1636: -8,-32 1640: 2,-27 - 1645: 8,-32 1651: 10,-27 1659: 11,-26 - 1665: 11,-20 - 1670: 11,-19 1677: 4,16 + 1685: 4,17 1690: 4,12 1698: 4,13 1706: 4,14 1714: 4,15 1722: 8,2 1730: 8,3 - 1738: 8,4 - 1744: 9,2 - 1749: 9,3 - 1754: 9,4 - 1759: 2,-13 - 1764: 2,-12 - 1769: 2,-11 - 1774: 2,-10 - 1781: -13,-15 - 1786: -13,-14 - 1794: -13,-22 - 1799: -13,-21 - 1804: -13,-20 - 1807: -10,-28 - 1812: -8,-32 - 1817: 2,-27 - 1822: 8,-32 - 1828: 10,-27 - 1836: 11,-26 - 1842: 11,-20 - 1847: 11,-19 - 1854: 4,16 - 1867: 4,12 - 1875: 4,13 - 1883: 4,14 - 1891: 4,15 - 1899: 8,2 - 1907: 8,3 - 1915: 8,4 - 1921: 9,2 - 1926: 9,3 - 1931: 9,4 - 1936: 2,-13 - 1941: 2,-12 - 1946: 2,-11 - 1951: 2,-10 - 1958: -13,-15 - 1963: -13,-14 - 1971: -13,-22 - 1976: -13,-21 - 1981: -13,-20 - 1984: -10,-28 - 1989: -8,-32 - 1994: 2,-27 - 1999: 8,-32 - 2005: 10,-27 - 2013: 11,-26 - 2019: 11,-20 - 2024: 11,-19 - 2031: 4,16 - 2068: 4,12 - 2076: 4,13 - 2084: 4,14 - 2092: 4,15 - 2100: 8,2 - 2108: 8,3 - 2116: 8,4 - 2122: 9,2 - 2127: 9,3 - 2132: 9,4 - 2137: 2,-13 - 2142: 2,-12 - 2147: 2,-11 - 2152: 2,-10 - 2159: -13,-15 - 2164: -13,-14 - 2193: -13,-22 - 2198: -13,-21 - 2203: -13,-20 - 2206: -10,-28 - 2211: -8,-32 - 2216: 2,-27 - 2221: 8,-32 - 2227: 10,-27 - 2235: 11,-26 - 2241: 11,-20 - 2246: 11,-19 - 2253: 4,16 - 2269: 4,12 - 2277: 4,13 - 2285: 4,14 - 2293: 4,15 - 2301: 8,2 - 2309: 8,3 - 2317: 8,4 - 2323: 9,2 - 2328: 9,3 - 2333: 9,4 - 2338: 2,-13 - 2343: 2,-12 - 2348: 2,-11 - 2353: 2,-10 - 2360: -13,-15 - 2365: -13,-14 - 2397: -13,-22 - 2402: -13,-21 - 2407: -13,-20 - 2410: -10,-28 - 2417: 2,-27 - 2425: 10,-27 - 2433: 11,-26 - 2441: 4,16 - 2457: 11,-20 - 2463: 11,-19 - 2467: 8,-32 - 2470: 9,-30 - 2474: -8,-32 - 2477: -9,-30 - 2490: -10,-5 - 2495: -10,-6 - 2503: -10,-8 - 2511: -10,-7 - 2516: -8,7 - 2524: 4,12 - 2532: 4,13 - 2540: 4,14 - 2548: 4,15 - 2556: 8,2 - 2564: 8,3 - 2572: 8,4 - 2578: 9,2 - 2583: 9,3 - 2588: 9,4 - 2593: 2,-13 - 2598: 2,-12 - 2603: 2,-11 - 2608: 2,-10 - 2615: -13,-15 - 2620: -13,-14 - 2631: -10,-8 - 2639: -10,-7 - 2644: -10,-6 - 2649: -10,-5 - 2678: -8,7 - 2686: -13,-22 - 2691: -13,-21 - 2696: -13,-20 - 2699: -10,-28 - 2704: -9,-30 - 2707: -8,-32 - 2712: 2,-27 - 2717: 8,-32 - 2720: 9,-30 - 2726: 10,-27 - 2734: 11,-26 - 2742: 11,-20 - 2748: 11,-19 - 2763: 4,16 - 2776: 4,12 - 2784: 4,13 - 2792: 4,14 - 2800: 4,15 - 2808: 8,2 - 2816: 8,3 - 2824: 8,4 - 2830: 9,2 - 2835: 9,3 - 2840: 9,4 - 2845: 2,-13 - 2850: 2,-12 - 2855: 2,-11 - 2860: 2,-10 - 2867: -13,-15 - 2872: -13,-14 - 2883: -10,-8 - 2891: -10,-7 - 2896: -10,-6 - 2901: -10,-5 - 2930: -8,7 - 2938: -13,-22 - 2943: -13,-21 - 2948: -13,-20 - 2951: -10,-28 - 2956: -9,-30 - 2959: -8,-32 - 2964: 2,-27 - 2969: 8,-32 - 2972: 9,-30 - 2978: 10,-27 - 2986: 11,-26 - 2994: 11,-20 - 3000: 11,-19 - 3015: 4,16 + 1768: -13,-22 + 1778: -13,-20 + 1782: -10,-28 + 1788: 2,-27 + 1796: 10,-27 + 1804: 11,-26 + 1812: 4,16 + 1820: 4,17 + 1825: 11,-20 + 1843: -8,-32 + 1846: -9,-30 + 1853: 12,-20 + 1858: -10,-5 + 1863: -10,-6 + 1868: -11,-8 + 1871: -10,-8 + 1879: -10,-7 + 1884: -8,7 + 1889: -8,9 + 1892: 4,12 + 1900: 4,13 + 1908: 4,14 + 1916: 4,15 + 1924: 8,2 + 1932: 8,3 + 1970: -11,-8 + 1973: -10,-8 + 1981: -10,-7 + 1986: -10,-6 + 1991: -10,-5 + 1996: -8,7 + 2001: -8,9 + 2004: -13,-22 + 2014: -13,-20 + 2018: -10,-28 + 2023: -9,-30 + 2026: -8,-32 + 2030: 2,-27 + 2044: 10,-27 + 2052: 11,-26 + 2060: 11,-20 + 2073: 12,-20 + 2081: 4,16 + 2089: 4,17 + 2094: 4,12 + 2102: 4,13 + 2110: 4,14 + 2118: 4,15 + 2126: 8,2 + 2134: 8,3 + 2172: -11,-8 + 2175: -10,-8 + 2183: -10,-7 + 2188: -10,-6 + 2193: -10,-5 + 2198: -8,7 + 2203: -8,9 + 2206: -13,-22 + 2216: -13,-20 + 2220: -10,-28 + 2225: -9,-30 + 2228: -8,-32 + 2232: 2,-27 + 2246: 10,-27 + 2254: 11,-26 + 2262: 11,-20 + 2275: 12,-20 + 2283: 4,16 + 2291: 4,17 + 2296: 4,12 + 2304: 4,13 + 2312: 4,14 + 2320: 4,15 + 2348: -11,-8 + 2351: -10,-8 + 2359: -10,-7 + 2364: -10,-6 + 2369: -10,-5 + 2374: -8,7 + 2379: -8,9 + 2382: -13,-22 + 2392: -13,-20 + 2396: -10,-28 + 2401: -9,-30 + 2405: 2,-27 + 2419: 10,-27 + 2427: 11,-26 + 2435: 11,-20 + 2448: 12,-20 + 2456: 4,16 + 2464: 4,17 + 2496: 8,3 + 2504: 8,2 + 2625: -8,-32 + 2710: 4,12 + 2718: 4,13 + 2726: 4,14 + 2734: 4,15 + 2742: 8,2 + 2750: 8,3 + 2794: -11,-8 + 2797: -10,-8 + 2805: -10,-7 + 2810: -10,-6 + 2815: -10,-5 + 2844: -8,7 + 2849: -8,9 + 2852: -13,-22 + 2862: -13,-20 + 2866: -10,-28 + 2871: -9,-30 + 2874: -8,-32 + 2878: 2,-27 + 2892: 10,-27 + 2900: 11,-26 + 2908: 11,-20 + 2921: 12,-20 + 2929: 4,16 + 2937: 4,17 + 2942: 4,12 + 2950: 4,13 + 2958: 4,14 + 2966: 4,15 + 2974: 8,2 + 2982: 8,3 + 3026: -11,-8 + 3029: -10,-8 + 3037: -10,-7 + 3042: -10,-6 + 3047: -10,-5 + 3076: -8,7 + 3081: -8,9 + 3084: -13,-22 + 3094: -13,-20 + 3098: -10,-28 + 3103: -9,-30 + 3106: -8,-32 + 3110: 2,-27 + 3124: 10,-27 + 3132: 11,-26 + 3140: 11,-20 + 3153: 12,-20 + 3161: 4,16 + 3169: 4,17 + 3174: 4,12 + 3182: 4,13 + 3190: 4,14 + 3198: 4,15 + 3206: 8,2 + 3214: 8,3 + 3258: -11,-8 + 3261: -10,-8 + 3269: -10,-7 + 3274: -10,-6 + 3279: -10,-5 + 3308: -8,7 + 3313: -8,9 + 3316: -13,-22 + 3326: -13,-20 + 3330: -10,-28 + 3335: -9,-30 + 3338: -8,-32 + 3342: 2,-27 + 3356: 10,-27 + 3364: 11,-26 + 3372: 11,-20 + 3385: 12,-20 + 3393: 4,16 + 3401: 4,17 + 3406: 4,12 + 3414: 4,13 + 3422: 4,14 + 3430: 4,15 + 3438: 8,2 + 3446: 8,3 + 3490: -11,-8 + 3493: -10,-8 + 3501: -10,-7 + 3506: -10,-6 + 3511: -10,-5 + 3540: -8,7 + 3545: -8,9 + 3548: -13,-22 + 3558: -13,-20 + 3562: -10,-28 + 3567: -9,-30 + 3570: -8,-32 + 3574: 2,-27 + 3588: 10,-27 + 3596: 11,-26 + 3604: 11,-20 + 3617: 12,-20 + 3625: 4,16 + 3633: 4,17 + 3638: 4,12 + 3646: 4,13 + 3654: 4,14 + 3662: 4,15 + 3670: 8,2 + 3678: 8,3 + 3722: -11,-8 + 3725: -10,-8 + 3772: -8,7 + 3777: -8,9 + 3794: -10,-28 + 3799: -9,-30 + 3802: -8,-32 + 3806: 2,-27 + 3820: 10,-27 + 3828: 11,-26 + 3836: 11,-20 + 3849: 12,-20 + 3857: 4,16 + 3865: 4,17 + 3870: -10,-6 + 3875: -10,-7 + 3880: -10,-5 + 3890: -13,-20 + 3894: -13,-22 - node: - id: LatticeEdgeS - decals: - 448: 4,12 - 456: 4,13 - 464: 4,14 - 472: 4,15 - 480: 8,2 - 488: 8,3 - 496: 8,4 - 504: 9,2 - 509: 9,3 - 514: 9,4 - 519: 2,-13 - 524: 2,-12 - 529: 2,-11 - 534: 2,-10 - 539: -13,-15 - 544: -13,-14 - 549: -13,-13 - 552: -13,-22 - 557: -13,-21 - 562: -13,-20 - 575: 2,-27 - 586: 10,-27 - 594: 11,-26 - 602: 11,-20 - 607: 11,-19 - 612: 4,16 - 620: 4,17 - 625: 4,12 - 633: 4,13 - 641: 4,14 - 649: 4,15 - 657: 8,2 - 665: 8,3 - 673: 8,4 - 681: 9,2 - 686: 9,3 - 691: 9,4 - 696: 2,-13 - 701: 2,-12 - 706: 2,-11 - 711: 2,-10 - 716: -13,-15 - 721: -13,-14 - 726: -13,-13 - 729: -13,-22 - 734: -13,-21 - 739: -13,-20 - 752: 2,-27 - 763: 10,-27 - 771: 11,-26 - 779: 11,-20 - 784: 11,-19 - 789: 4,16 - 797: 4,17 - 802: 4,12 - 810: 4,13 - 818: 4,14 - 826: 4,15 - 834: 8,2 - 842: 8,3 - 850: 8,4 - 858: 9,2 - 863: 9,3 - 868: 9,4 - 873: 2,-13 - 878: 2,-12 - 883: 2,-11 - 888: 2,-10 - 893: -13,-15 - 898: -13,-14 - 903: -13,-13 - 906: -13,-22 - 911: -13,-21 - 916: -13,-20 - 929: 2,-27 - 940: 10,-27 - 948: 11,-26 - 956: 11,-20 - 961: 11,-19 - 966: 4,16 - 974: 4,17 - 979: 4,12 - 987: 4,13 - 995: 4,14 - 1003: 4,15 - 1011: 8,2 - 1019: 8,3 - 1027: 8,4 - 1035: 9,2 - 1040: 9,3 - 1045: 9,4 - 1050: 2,-13 - 1055: 2,-12 - 1060: 2,-11 - 1065: 2,-10 - 1070: -13,-15 - 1075: -13,-14 - 1080: -13,-13 - 1083: -13,-22 - 1088: -13,-21 - 1093: -13,-20 - 1106: 2,-27 - 1117: 10,-27 - 1125: 11,-26 - 1133: 11,-20 - 1138: 11,-19 - 1143: 4,16 - 1151: 4,17 - 1156: 4,12 - 1164: 4,13 - 1172: 4,14 - 1180: 4,15 - 1188: 8,2 - 1196: 8,3 - 1204: 8,4 - 1212: 9,2 - 1217: 9,3 - 1222: 9,4 - 1227: 2,-13 - 1232: 2,-12 - 1237: 2,-11 - 1242: 2,-10 - 1247: -13,-15 - 1252: -13,-14 - 1257: -13,-13 - 1260: -13,-22 - 1265: -13,-21 - 1270: -13,-20 - 1283: 2,-27 - 1294: 10,-27 - 1302: 11,-26 - 1310: 11,-20 - 1315: 11,-19 - 1320: 4,16 - 1328: 4,17 - 1333: 4,12 - 1341: 4,13 - 1349: 4,14 - 1357: 4,15 - 1365: 8,2 - 1373: 8,3 - 1381: 8,4 - 1389: 9,2 - 1394: 9,3 - 1399: 9,4 - 1404: 2,-13 - 1409: 2,-12 - 1414: 2,-11 - 1419: 2,-10 - 1424: -13,-15 - 1429: -13,-14 - 1434: -13,-13 - 1437: -13,-22 - 1442: -13,-21 - 1447: -13,-20 - 1460: 2,-27 - 1471: 10,-27 - 1479: 11,-26 - 1487: 11,-20 - 1492: 11,-19 - 1497: 4,16 - 1505: 4,17 - 1510: 4,12 - 1518: 4,13 - 1526: 4,14 - 1534: 4,15 - 1542: 8,2 - 1550: 8,3 - 1558: 8,4 - 1566: 9,2 - 1571: 9,3 - 1576: 9,4 - 1581: 2,-13 - 1586: 2,-12 - 1591: 2,-11 - 1596: 2,-10 - 1601: -13,-15 - 1606: -13,-14 - 1611: -13,-13 - 1614: -13,-22 - 1619: -13,-21 - 1624: -13,-20 - 1637: 2,-27 - 1648: 10,-27 - 1656: 11,-26 - 1664: 11,-20 - 1669: 11,-19 - 1674: 4,16 - 1682: 4,17 - 1687: 4,12 - 1695: 4,13 - 1703: 4,14 - 1711: 4,15 - 1719: 8,2 - 1727: 8,3 - 1735: 8,4 - 1743: 9,2 - 1748: 9,3 - 1753: 9,4 - 1758: 2,-13 - 1763: 2,-12 - 1768: 2,-11 - 1773: 2,-10 - 1778: -13,-15 - 1783: -13,-14 - 1788: -13,-13 - 1791: -13,-22 - 1796: -13,-21 - 1801: -13,-20 - 1814: 2,-27 - 1825: 10,-27 - 1833: 11,-26 - 1841: 11,-20 - 1846: 11,-19 - 1851: 4,16 - 1859: 4,17 - 1864: 4,12 - 1872: 4,13 - 1880: 4,14 - 1888: 4,15 - 1896: 8,2 - 1904: 8,3 - 1912: 8,4 - 1920: 9,2 - 1925: 9,3 - 1930: 9,4 - 1935: 2,-13 - 1940: 2,-12 - 1945: 2,-11 - 1950: 2,-10 - 1955: -13,-15 - 1960: -13,-14 - 1965: -13,-13 - 1968: -13,-22 - 1973: -13,-21 - 1978: -13,-20 - 1991: 2,-27 - 2002: 10,-27 - 2010: 11,-26 - 2018: 11,-20 - 2023: 11,-19 - 2028: 4,16 - 2036: 4,17 - 2065: 4,12 - 2073: 4,13 - 2081: 4,14 - 2089: 4,15 - 2097: 8,2 - 2105: 8,3 - 2113: 8,4 - 2121: 9,2 - 2126: 9,3 - 2131: 9,4 - 2136: 2,-13 - 2141: 2,-12 - 2146: 2,-11 - 2151: 2,-10 - 2156: -13,-15 - 2161: -13,-14 - 2190: -13,-22 - 2195: -13,-21 - 2200: -13,-20 - 2213: 2,-27 - 2224: 10,-27 - 2232: 11,-26 - 2240: 11,-20 - 2245: 11,-19 - 2250: 4,16 - 2258: 4,17 - 2263: -13,-13 - 2266: 4,12 - 2274: 4,13 - 2282: 4,14 - 2290: 4,15 - 2298: 8,2 - 2306: 8,3 - 2314: 8,4 - 2322: 9,2 - 2327: 9,3 - 2332: 9,4 - 2337: 2,-13 - 2342: 2,-12 - 2347: 2,-11 - 2352: 2,-10 - 2357: -13,-15 - 2362: -13,-14 - 2367: -13,-13 - 2394: -13,-22 - 2399: -13,-21 - 2404: -13,-20 - 2414: 2,-27 - 2422: 10,-27 - 2430: 11,-26 - 2438: 4,16 - 2446: 4,17 - 2454: 11,-20 - 2462: 11,-19 - 2479: 13,-20 - 2482: 12,-20 - 2487: -10,-5 - 2492: -10,-6 - 2497: -11,-8 - 2500: -10,-8 - 2508: -10,-7 - 2513: -8,7 - 2518: -8,9 - 2521: 4,12 - 2529: 4,13 - 2537: 4,14 - 2545: 4,15 - 2553: 8,2 - 2561: 8,3 - 2569: 8,4 - 2577: 9,2 - 2582: 9,3 - 2587: 9,4 - 2592: 2,-13 - 2597: 2,-12 - 2602: 2,-11 - 2607: 2,-10 - 2612: -13,-15 - 2617: -13,-14 - 2622: -13,-13 - 2625: -11,-8 - 2628: -10,-8 - 2636: -10,-7 - 2641: -10,-6 - 2646: -10,-5 - 2675: -8,7 - 2680: -8,9 - 2683: -13,-22 - 2688: -13,-21 - 2693: -13,-20 - 2709: 2,-27 - 2723: 10,-27 - 2731: 11,-26 - 2739: 11,-20 - 2747: 11,-19 - 2752: 12,-20 - 2757: 13,-20 - 2760: 4,16 - 2768: 4,17 - 2773: 4,12 - 2781: 4,13 - 2789: 4,14 - 2797: 4,15 - 2805: 8,2 - 2813: 8,3 - 2821: 8,4 - 2829: 9,2 - 2834: 9,3 - 2839: 9,4 - 2844: 2,-13 - 2849: 2,-12 - 2854: 2,-11 - 2859: 2,-10 - 2864: -13,-15 - 2869: -13,-14 - 2874: -13,-13 - 2877: -11,-8 - 2880: -10,-8 - 2888: -10,-7 - 2893: -10,-6 - 2898: -10,-5 - 2927: -8,7 - 2932: -8,9 - 2935: -13,-22 - 2940: -13,-21 - 2945: -13,-20 - 2961: 2,-27 - 2975: 10,-27 - 2983: 11,-26 - 2991: 11,-20 - 2999: 11,-19 - 3004: 12,-20 - 3009: 13,-20 - 3012: 4,16 - 3020: 4,17 - - node: - id: LatticeEdgeW + id: LatticeEdgeN decals: - 453: 4,12 - 461: 4,13 - 469: 4,14 - 477: 4,15 - 485: 8,2 - 493: 8,3 - 501: 8,4 - 506: 9,2 - 511: 9,3 - 516: 9,4 - 521: 2,-13 - 526: 2,-12 - 531: 2,-11 - 536: 2,-10 - 570: -10,-28 - 580: 2,-27 - 584: 8,-32 - 591: 10,-27 - 599: 11,-26 - 604: 11,-20 - 609: 11,-19 - 617: 4,16 - 623: 4,17 - 630: 4,12 - 638: 4,13 - 646: 4,14 - 654: 4,15 - 662: 8,2 - 670: 8,3 - 678: 8,4 - 683: 9,2 - 688: 9,3 - 693: 9,4 - 698: 2,-13 - 703: 2,-12 - 708: 2,-11 - 713: 2,-10 - 747: -10,-28 - 757: 2,-27 - 761: 8,-32 - 768: 10,-27 - 776: 11,-26 - 781: 11,-20 - 786: 11,-19 - 794: 4,16 - 800: 4,17 - 807: 4,12 - 815: 4,13 - 823: 4,14 - 831: 4,15 - 839: 8,2 - 847: 8,3 - 855: 8,4 - 860: 9,2 - 865: 9,3 - 870: 9,4 - 875: 2,-13 - 880: 2,-12 - 885: 2,-11 - 890: 2,-10 - 924: -10,-28 - 934: 2,-27 - 938: 8,-32 - 945: 10,-27 - 953: 11,-26 - 958: 11,-20 - 963: 11,-19 - 971: 4,16 - 977: 4,17 - 984: 4,12 - 992: 4,13 - 1000: 4,14 - 1008: 4,15 - 1016: 8,2 - 1024: 8,3 - 1032: 8,4 - 1037: 9,2 - 1042: 9,3 - 1047: 9,4 - 1052: 2,-13 - 1057: 2,-12 - 1062: 2,-11 - 1067: 2,-10 - 1101: -10,-28 - 1111: 2,-27 - 1115: 8,-32 - 1122: 10,-27 - 1130: 11,-26 - 1135: 11,-20 - 1140: 11,-19 - 1148: 4,16 - 1154: 4,17 - 1161: 4,12 - 1169: 4,13 - 1177: 4,14 - 1185: 4,15 - 1193: 8,2 - 1201: 8,3 - 1209: 8,4 - 1214: 9,2 - 1219: 9,3 - 1224: 9,4 - 1229: 2,-13 - 1234: 2,-12 - 1239: 2,-11 - 1244: 2,-10 - 1278: -10,-28 - 1288: 2,-27 - 1292: 8,-32 - 1299: 10,-27 - 1307: 11,-26 - 1312: 11,-20 - 1317: 11,-19 - 1325: 4,16 - 1331: 4,17 - 1338: 4,12 - 1346: 4,13 - 1354: 4,14 - 1362: 4,15 - 1370: 8,2 - 1378: 8,3 - 1386: 8,4 - 1391: 9,2 - 1396: 9,3 - 1401: 9,4 - 1406: 2,-13 - 1411: 2,-12 - 1416: 2,-11 - 1421: 2,-10 - 1455: -10,-28 - 1465: 2,-27 - 1469: 8,-32 - 1476: 10,-27 - 1484: 11,-26 - 1489: 11,-20 - 1494: 11,-19 - 1502: 4,16 - 1508: 4,17 - 1515: 4,12 - 1523: 4,13 - 1531: 4,14 - 1539: 4,15 - 1547: 8,2 - 1555: 8,3 - 1563: 8,4 - 1568: 9,2 - 1573: 9,3 - 1578: 9,4 - 1583: 2,-13 - 1588: 2,-12 - 1593: 2,-11 - 1598: 2,-10 + 182: 4,12 + 190: 4,13 + 198: 4,14 + 206: 4,15 + 214: 8,2 + 222: 8,3 + 228: 9,3 + 233: 9,4 + 238: 2,-13 + 243: 2,-12 + 248: 2,-11 + 253: 2,-10 + 260: -13,-22 + 270: -13,-20 + 273: -10,-28 + 278: -8,-32 + 283: 2,-27 + 288: 8,-32 + 294: 10,-27 + 302: 11,-26 + 308: 11,-20 + 313: 11,-19 + 320: 4,16 + 333: 4,12 + 341: 4,13 + 349: 4,14 + 357: 4,15 + 365: 8,2 + 373: 8,3 + 379: 9,3 + 384: 9,4 + 389: 2,-13 + 394: 2,-12 + 399: 2,-11 + 404: 2,-10 + 411: -13,-22 + 421: -13,-20 + 424: -10,-28 + 429: -8,-32 + 434: 2,-27 + 439: 8,-32 + 445: 10,-27 + 453: 11,-26 + 459: 11,-20 + 464: 11,-19 + 471: 4,16 + 484: 4,12 + 492: 4,13 + 500: 4,14 + 508: 4,15 + 516: 8,2 + 524: 8,3 + 530: 9,3 + 535: 9,4 + 540: 2,-13 + 545: 2,-12 + 550: 2,-11 + 555: 2,-10 + 562: -13,-22 + 572: -13,-20 + 575: -10,-28 + 580: -8,-32 + 585: 2,-27 + 590: 8,-32 + 596: 10,-27 + 604: 11,-26 + 610: 11,-20 + 615: 11,-19 + 622: 4,16 + 635: 4,12 + 643: 4,13 + 651: 4,14 + 659: 4,15 + 667: 8,2 + 675: 8,3 + 681: 9,3 + 686: 9,4 + 691: 2,-13 + 696: 2,-12 + 701: 2,-11 + 706: 2,-10 + 713: -13,-22 + 723: -13,-20 + 726: -10,-28 + 731: -8,-32 + 736: 2,-27 + 741: 8,-32 + 747: 10,-27 + 755: 11,-26 + 761: 11,-20 + 766: 11,-19 + 773: 4,16 + 786: 4,12 + 794: 4,13 + 802: 4,14 + 810: 4,15 + 818: 8,2 + 826: 8,3 + 832: 9,3 + 837: 9,4 + 842: 2,-13 + 847: 2,-12 + 852: 2,-11 + 857: 2,-10 + 864: -13,-22 + 874: -13,-20 + 877: -10,-28 + 882: -8,-32 + 887: 2,-27 + 892: 8,-32 + 898: 10,-27 + 906: 11,-26 + 912: 11,-20 + 917: 11,-19 + 924: 4,16 + 937: 4,12 + 945: 4,13 + 953: 4,14 + 961: 4,15 + 969: 8,2 + 977: 8,3 + 983: 9,3 + 988: 9,4 + 993: 2,-13 + 998: 2,-12 + 1003: 2,-11 + 1008: 2,-10 + 1015: -13,-22 + 1025: -13,-20 + 1028: -10,-28 + 1033: -8,-32 + 1038: 2,-27 + 1043: 8,-32 + 1049: 10,-27 + 1057: 11,-26 + 1063: 11,-20 + 1068: 11,-19 + 1075: 4,16 + 1088: 4,12 + 1096: 4,13 + 1104: 4,14 + 1112: 4,15 + 1120: 8,2 + 1128: 8,3 + 1134: 9,3 + 1139: 9,4 + 1144: 2,-13 + 1149: 2,-12 + 1154: 2,-11 + 1159: 2,-10 + 1166: -13,-22 + 1176: -13,-20 + 1179: -10,-28 + 1184: -8,-32 + 1189: 2,-27 + 1194: 8,-32 + 1200: 10,-27 + 1208: 11,-26 + 1214: 11,-20 + 1219: 11,-19 + 1226: 4,16 + 1239: 4,12 + 1247: 4,13 + 1255: 4,14 + 1263: 4,15 + 1271: 8,2 + 1279: 8,3 + 1285: 9,3 + 1290: 9,4 + 1295: 2,-13 + 1300: 2,-12 + 1305: 2,-11 + 1310: 2,-10 + 1317: -13,-22 + 1327: -13,-20 + 1330: -10,-28 + 1335: -8,-32 + 1340: 2,-27 + 1345: 8,-32 + 1351: 10,-27 + 1359: 11,-26 + 1365: 11,-20 + 1370: 11,-19 + 1377: 4,16 + 1390: 4,12 + 1398: 4,13 + 1406: 4,14 + 1414: 4,15 + 1422: 8,2 + 1430: 8,3 + 1436: 9,3 + 1441: 9,4 + 1446: 2,-13 + 1451: 2,-12 + 1456: 2,-11 + 1461: 2,-10 + 1468: -13,-22 + 1478: -13,-20 + 1481: -10,-28 + 1486: -8,-32 + 1491: 2,-27 + 1496: 8,-32 + 1502: 10,-27 + 1510: 11,-26 + 1516: 11,-20 + 1521: 11,-19 + 1528: 4,16 + 1541: 4,12 + 1549: 4,13 + 1557: 4,14 + 1565: 4,15 + 1573: 8,2 + 1581: 8,3 + 1587: 9,3 + 1592: 9,4 + 1597: 2,-13 + 1602: 2,-12 + 1607: 2,-11 + 1612: 2,-10 + 1619: -13,-22 + 1629: -13,-20 1632: -10,-28 + 1637: -8,-32 1642: 2,-27 - 1646: 8,-32 + 1647: 8,-32 1653: 10,-27 1661: 11,-26 - 1666: 11,-20 - 1671: 11,-19 + 1667: 11,-20 + 1672: 11,-19 1679: 4,16 - 1685: 4,17 1692: 4,12 1700: 4,13 1708: 4,14 1716: 4,15 1724: 8,2 1732: 8,3 - 1740: 8,4 - 1745: 9,2 - 1750: 9,3 - 1755: 9,4 - 1760: 2,-13 - 1765: 2,-12 - 1770: 2,-11 - 1775: 2,-10 - 1809: -10,-28 - 1819: 2,-27 - 1823: 8,-32 - 1830: 10,-27 - 1838: 11,-26 - 1843: 11,-20 - 1848: 11,-19 - 1856: 4,16 - 1862: 4,17 - 1869: 4,12 - 1877: 4,13 - 1885: 4,14 - 1893: 4,15 - 1901: 8,2 - 1909: 8,3 - 1917: 8,4 - 1922: 9,2 - 1927: 9,3 - 1932: 9,4 - 1937: 2,-13 - 1942: 2,-12 - 1947: 2,-11 - 1952: 2,-10 - 1986: -10,-28 - 1996: 2,-27 - 2000: 8,-32 - 2007: 10,-27 - 2015: 11,-26 - 2020: 11,-20 - 2025: 11,-19 - 2033: 4,16 - 2039: 4,17 - 2070: 4,12 - 2078: 4,13 - 2086: 4,14 - 2094: 4,15 - 2102: 8,2 - 2110: 8,3 - 2118: 8,4 - 2123: 9,2 - 2128: 9,3 - 2133: 9,4 - 2138: 2,-13 - 2143: 2,-12 - 2148: 2,-11 - 2153: 2,-10 - 2208: -10,-28 - 2218: 2,-27 - 2222: 8,-32 - 2229: 10,-27 - 2237: 11,-26 - 2242: 11,-20 - 2247: 11,-19 - 2255: 4,16 - 2261: 4,17 - 2271: 4,12 - 2279: 4,13 - 2287: 4,14 - 2295: 4,15 - 2303: 8,2 - 2311: 8,3 - 2319: 8,4 - 2324: 9,2 - 2329: 9,3 - 2334: 9,4 - 2339: 2,-13 - 2344: 2,-12 - 2349: 2,-11 - 2354: 2,-10 - 2412: -10,-28 - 2419: 2,-27 - 2427: 10,-27 - 2435: 11,-26 - 2443: 4,16 - 2449: 4,17 - 2459: 11,-20 - 2464: 11,-19 - 2468: 8,-32 - 2471: 9,-30 - 2480: 13,-20 - 2485: 12,-20 - 2505: -10,-8 - 2526: 4,12 - 2534: 4,13 - 2542: 4,14 - 2550: 4,15 - 2558: 8,2 - 2566: 8,3 - 2574: 8,4 - 2579: 9,2 - 2584: 9,3 - 2589: 9,4 - 2594: 2,-13 - 2599: 2,-12 - 2604: 2,-11 - 2609: 2,-10 - 2633: -10,-8 - 2701: -10,-28 - 2714: 2,-27 - 2718: 8,-32 - 2721: 9,-30 - 2728: 10,-27 - 2736: 11,-26 - 2744: 11,-20 - 2749: 11,-19 - 2755: 12,-20 - 2758: 13,-20 - 2765: 4,16 - 2771: 4,17 - 2778: 4,12 - 2786: 4,13 - 2794: 4,14 - 2802: 4,15 - 2810: 8,2 - 2818: 8,3 - 2826: 8,4 - 2831: 9,2 - 2836: 9,3 - 2841: 9,4 - 2846: 2,-13 - 2851: 2,-12 - 2856: 2,-11 - 2861: 2,-10 - 2885: -10,-8 - 2953: -10,-28 - 2966: 2,-27 - 2970: 8,-32 - 2973: 9,-30 - 2980: 10,-27 - 2988: 11,-26 - 2996: 11,-20 - 3001: 11,-19 - 3007: 12,-20 - 3010: 13,-20 - 3017: 4,16 - 3023: 4,17 + 1738: 9,3 + 1743: 9,4 + 1748: 2,-13 + 1753: 2,-12 + 1758: 2,-11 + 1763: 2,-10 + 1770: -13,-22 + 1780: -13,-20 + 1783: -10,-28 + 1790: 2,-27 + 1798: 10,-27 + 1806: 11,-26 + 1814: 4,16 + 1827: 11,-20 + 1833: 11,-19 + 1837: 8,-32 + 1840: 9,-30 + 1844: -8,-32 + 1847: -9,-30 + 1860: -10,-5 + 1865: -10,-6 + 1873: -10,-8 + 1881: -10,-7 + 1886: -8,7 + 1894: 4,12 + 1902: 4,13 + 1910: 4,14 + 1918: 4,15 + 1926: 8,2 + 1934: 8,3 + 1940: 9,3 + 1945: 9,4 + 1950: 2,-13 + 1955: 2,-12 + 1960: 2,-11 + 1965: 2,-10 + 1975: -10,-8 + 1983: -10,-7 + 1988: -10,-6 + 1993: -10,-5 + 1998: -8,7 + 2006: -13,-22 + 2016: -13,-20 + 2019: -10,-28 + 2024: -9,-30 + 2027: -8,-32 + 2032: 2,-27 + 2037: 8,-32 + 2040: 9,-30 + 2046: 10,-27 + 2054: 11,-26 + 2062: 11,-20 + 2068: 11,-19 + 2083: 4,16 + 2096: 4,12 + 2104: 4,13 + 2112: 4,14 + 2120: 4,15 + 2128: 8,2 + 2136: 8,3 + 2142: 9,3 + 2147: 9,4 + 2152: 2,-13 + 2157: 2,-12 + 2162: 2,-11 + 2167: 2,-10 + 2177: -10,-8 + 2185: -10,-7 + 2190: -10,-6 + 2195: -10,-5 + 2200: -8,7 + 2208: -13,-22 + 2218: -13,-20 + 2221: -10,-28 + 2226: -9,-30 + 2229: -8,-32 + 2234: 2,-27 + 2239: 8,-32 + 2242: 9,-30 + 2248: 10,-27 + 2256: 11,-26 + 2264: 11,-20 + 2270: 11,-19 + 2285: 4,16 + 2298: 4,12 + 2306: 4,13 + 2314: 4,14 + 2322: 4,15 + 2328: 2,-13 + 2333: 2,-12 + 2338: 2,-11 + 2343: 2,-10 + 2353: -10,-8 + 2361: -10,-7 + 2366: -10,-6 + 2371: -10,-5 + 2376: -8,7 + 2384: -13,-22 + 2394: -13,-20 + 2397: -10,-28 + 2402: -9,-30 + 2407: 2,-27 + 2412: 8,-32 + 2415: 9,-30 + 2421: 10,-27 + 2429: 11,-26 + 2437: 11,-20 + 2443: 11,-19 + 2458: 4,16 + 2479: 10,-5 + 2486: 9,4 + 2491: 9,3 + 2498: 8,3 + 2506: 8,2 + 2626: -8,-32 + 2712: 4,12 + 2720: 4,13 + 2728: 4,14 + 2736: 4,15 + 2744: 8,2 + 2752: 8,3 + 2758: 9,3 + 2763: 9,4 + 2768: 2,-13 + 2773: 2,-12 + 2778: 2,-11 + 2783: 2,-10 + 2787: 10,-5 + 2799: -10,-8 + 2807: -10,-7 + 2812: -10,-6 + 2817: -10,-5 + 2846: -8,7 + 2854: -13,-22 + 2864: -13,-20 + 2867: -10,-28 + 2872: -9,-30 + 2875: -8,-32 + 2880: 2,-27 + 2885: 8,-32 + 2888: 9,-30 + 2894: 10,-27 + 2902: 11,-26 + 2910: 11,-20 + 2916: 11,-19 + 2931: 4,16 + 2944: 4,12 + 2952: 4,13 + 2960: 4,14 + 2968: 4,15 + 2976: 8,2 + 2984: 8,3 + 2990: 9,3 + 2995: 9,4 + 3000: 2,-13 + 3005: 2,-12 + 3010: 2,-11 + 3015: 2,-10 + 3019: 10,-5 + 3031: -10,-8 + 3039: -10,-7 + 3044: -10,-6 + 3049: -10,-5 + 3078: -8,7 + 3086: -13,-22 + 3096: -13,-20 + 3099: -10,-28 + 3104: -9,-30 + 3107: -8,-32 + 3112: 2,-27 + 3117: 8,-32 + 3120: 9,-30 + 3126: 10,-27 + 3134: 11,-26 + 3142: 11,-20 + 3148: 11,-19 + 3163: 4,16 + 3176: 4,12 + 3184: 4,13 + 3192: 4,14 + 3200: 4,15 + 3208: 8,2 + 3216: 8,3 + 3222: 9,3 + 3227: 9,4 + 3232: 2,-13 + 3237: 2,-12 + 3242: 2,-11 + 3247: 2,-10 + 3251: 10,-5 + 3263: -10,-8 + 3271: -10,-7 + 3276: -10,-6 + 3281: -10,-5 + 3310: -8,7 + 3318: -13,-22 + 3328: -13,-20 + 3331: -10,-28 + 3336: -9,-30 + 3339: -8,-32 + 3344: 2,-27 + 3349: 8,-32 + 3352: 9,-30 + 3358: 10,-27 + 3366: 11,-26 + 3374: 11,-20 + 3380: 11,-19 + 3395: 4,16 + 3408: 4,12 + 3416: 4,13 + 3424: 4,14 + 3432: 4,15 + 3440: 8,2 + 3448: 8,3 + 3454: 9,3 + 3459: 9,4 + 3464: 2,-13 + 3469: 2,-12 + 3474: 2,-11 + 3479: 2,-10 + 3483: 10,-5 + 3495: -10,-8 + 3503: -10,-7 + 3508: -10,-6 + 3513: -10,-5 + 3542: -8,7 + 3550: -13,-22 + 3560: -13,-20 + 3563: -10,-28 + 3568: -9,-30 + 3571: -8,-32 + 3576: 2,-27 + 3581: 8,-32 + 3584: 9,-30 + 3590: 10,-27 + 3598: 11,-26 + 3606: 11,-20 + 3612: 11,-19 + 3627: 4,16 + 3640: 4,12 + 3648: 4,13 + 3656: 4,14 + 3664: 4,15 + 3672: 8,2 + 3680: 8,3 + 3686: 9,3 + 3691: 9,4 + 3696: 2,-13 + 3701: 2,-12 + 3706: 2,-11 + 3711: 2,-10 + 3715: 10,-5 + 3727: -10,-8 + 3774: -8,7 + 3795: -10,-28 + 3800: -9,-30 + 3803: -8,-32 + 3808: 2,-27 + 3813: 8,-32 + 3816: 9,-30 + 3822: 10,-27 + 3830: 11,-26 + 3838: 11,-20 + 3844: 11,-19 + 3859: 4,16 + 3872: -10,-6 + 3877: -10,-7 + 3882: -10,-5 + 3891: -13,-20 + - node: + id: LatticeEdgeS + decals: + 179: 4,12 + 187: 4,13 + 195: 4,14 + 203: 4,15 + 211: 8,2 + 219: 8,3 + 227: 9,3 + 232: 9,4 + 237: 2,-13 + 242: 2,-12 + 247: 2,-11 + 252: 2,-10 + 257: -13,-22 + 267: -13,-20 + 280: 2,-27 + 291: 10,-27 + 299: 11,-26 + 307: 11,-20 + 312: 11,-19 + 317: 4,16 + 325: 4,17 + 330: 4,12 + 338: 4,13 + 346: 4,14 + 354: 4,15 + 362: 8,2 + 370: 8,3 + 378: 9,3 + 383: 9,4 + 388: 2,-13 + 393: 2,-12 + 398: 2,-11 + 403: 2,-10 + 408: -13,-22 + 418: -13,-20 + 431: 2,-27 + 442: 10,-27 + 450: 11,-26 + 458: 11,-20 + 463: 11,-19 + 468: 4,16 + 476: 4,17 + 481: 4,12 + 489: 4,13 + 497: 4,14 + 505: 4,15 + 513: 8,2 + 521: 8,3 + 529: 9,3 + 534: 9,4 + 539: 2,-13 + 544: 2,-12 + 549: 2,-11 + 554: 2,-10 + 559: -13,-22 + 569: -13,-20 + 582: 2,-27 + 593: 10,-27 + 601: 11,-26 + 609: 11,-20 + 614: 11,-19 + 619: 4,16 + 627: 4,17 + 632: 4,12 + 640: 4,13 + 648: 4,14 + 656: 4,15 + 664: 8,2 + 672: 8,3 + 680: 9,3 + 685: 9,4 + 690: 2,-13 + 695: 2,-12 + 700: 2,-11 + 705: 2,-10 + 710: -13,-22 + 720: -13,-20 + 733: 2,-27 + 744: 10,-27 + 752: 11,-26 + 760: 11,-20 + 765: 11,-19 + 770: 4,16 + 778: 4,17 + 783: 4,12 + 791: 4,13 + 799: 4,14 + 807: 4,15 + 815: 8,2 + 823: 8,3 + 831: 9,3 + 836: 9,4 + 841: 2,-13 + 846: 2,-12 + 851: 2,-11 + 856: 2,-10 + 861: -13,-22 + 871: -13,-20 + 884: 2,-27 + 895: 10,-27 + 903: 11,-26 + 911: 11,-20 + 916: 11,-19 + 921: 4,16 + 929: 4,17 + 934: 4,12 + 942: 4,13 + 950: 4,14 + 958: 4,15 + 966: 8,2 + 974: 8,3 + 982: 9,3 + 987: 9,4 + 992: 2,-13 + 997: 2,-12 + 1002: 2,-11 + 1007: 2,-10 + 1012: -13,-22 + 1022: -13,-20 + 1035: 2,-27 + 1046: 10,-27 + 1054: 11,-26 + 1062: 11,-20 + 1067: 11,-19 + 1072: 4,16 + 1080: 4,17 + 1085: 4,12 + 1093: 4,13 + 1101: 4,14 + 1109: 4,15 + 1117: 8,2 + 1125: 8,3 + 1133: 9,3 + 1138: 9,4 + 1143: 2,-13 + 1148: 2,-12 + 1153: 2,-11 + 1158: 2,-10 + 1163: -13,-22 + 1173: -13,-20 + 1186: 2,-27 + 1197: 10,-27 + 1205: 11,-26 + 1213: 11,-20 + 1218: 11,-19 + 1223: 4,16 + 1231: 4,17 + 1236: 4,12 + 1244: 4,13 + 1252: 4,14 + 1260: 4,15 + 1268: 8,2 + 1276: 8,3 + 1284: 9,3 + 1289: 9,4 + 1294: 2,-13 + 1299: 2,-12 + 1304: 2,-11 + 1309: 2,-10 + 1314: -13,-22 + 1324: -13,-20 + 1337: 2,-27 + 1348: 10,-27 + 1356: 11,-26 + 1364: 11,-20 + 1369: 11,-19 + 1374: 4,16 + 1382: 4,17 + 1387: 4,12 + 1395: 4,13 + 1403: 4,14 + 1411: 4,15 + 1419: 8,2 + 1427: 8,3 + 1435: 9,3 + 1440: 9,4 + 1445: 2,-13 + 1450: 2,-12 + 1455: 2,-11 + 1460: 2,-10 + 1465: -13,-22 + 1475: -13,-20 + 1488: 2,-27 + 1499: 10,-27 + 1507: 11,-26 + 1515: 11,-20 + 1520: 11,-19 + 1525: 4,16 + 1533: 4,17 + 1538: 4,12 + 1546: 4,13 + 1554: 4,14 + 1562: 4,15 + 1570: 8,2 + 1578: 8,3 + 1586: 9,3 + 1591: 9,4 + 1596: 2,-13 + 1601: 2,-12 + 1606: 2,-11 + 1611: 2,-10 + 1616: -13,-22 + 1626: -13,-20 + 1639: 2,-27 + 1650: 10,-27 + 1658: 11,-26 + 1666: 11,-20 + 1671: 11,-19 + 1676: 4,16 + 1684: 4,17 + 1689: 4,12 + 1697: 4,13 + 1705: 4,14 + 1713: 4,15 + 1721: 8,2 + 1729: 8,3 + 1737: 9,3 + 1742: 9,4 + 1747: 2,-13 + 1752: 2,-12 + 1757: 2,-11 + 1762: 2,-10 + 1767: -13,-22 + 1777: -13,-20 + 1787: 2,-27 + 1795: 10,-27 + 1803: 11,-26 + 1811: 4,16 + 1819: 4,17 + 1824: 11,-20 + 1832: 11,-19 + 1849: 13,-20 + 1852: 12,-20 + 1857: -10,-5 + 1862: -10,-6 + 1867: -11,-8 + 1870: -10,-8 + 1878: -10,-7 + 1883: -8,7 + 1888: -8,9 + 1891: 4,12 + 1899: 4,13 + 1907: 4,14 + 1915: 4,15 + 1923: 8,2 + 1931: 8,3 + 1939: 9,3 + 1944: 9,4 + 1949: 2,-13 + 1954: 2,-12 + 1959: 2,-11 + 1964: 2,-10 + 1969: -11,-8 + 1972: -10,-8 + 1980: -10,-7 + 1985: -10,-6 + 1990: -10,-5 + 1995: -8,7 + 2000: -8,9 + 2003: -13,-22 + 2013: -13,-20 + 2029: 2,-27 + 2043: 10,-27 + 2051: 11,-26 + 2059: 11,-20 + 2067: 11,-19 + 2072: 12,-20 + 2077: 13,-20 + 2080: 4,16 + 2088: 4,17 + 2093: 4,12 + 2101: 4,13 + 2109: 4,14 + 2117: 4,15 + 2125: 8,2 + 2133: 8,3 + 2141: 9,3 + 2146: 9,4 + 2151: 2,-13 + 2156: 2,-12 + 2161: 2,-11 + 2166: 2,-10 + 2171: -11,-8 + 2174: -10,-8 + 2182: -10,-7 + 2187: -10,-6 + 2192: -10,-5 + 2197: -8,7 + 2202: -8,9 + 2205: -13,-22 + 2215: -13,-20 + 2231: 2,-27 + 2245: 10,-27 + 2253: 11,-26 + 2261: 11,-20 + 2269: 11,-19 + 2274: 12,-20 + 2279: 13,-20 + 2282: 4,16 + 2290: 4,17 + 2295: 4,12 + 2303: 4,13 + 2311: 4,14 + 2319: 4,15 + 2327: 2,-13 + 2332: 2,-12 + 2337: 2,-11 + 2342: 2,-10 + 2347: -11,-8 + 2350: -10,-8 + 2358: -10,-7 + 2363: -10,-6 + 2368: -10,-5 + 2373: -8,7 + 2378: -8,9 + 2381: -13,-22 + 2391: -13,-20 + 2404: 2,-27 + 2418: 10,-27 + 2426: 11,-26 + 2434: 11,-20 + 2442: 11,-19 + 2447: 12,-20 + 2452: 13,-20 + 2455: 4,16 + 2463: 4,17 + 2482: 10,-3 + 2485: 9,4 + 2490: 9,3 + 2495: 8,3 + 2503: 8,2 + 2709: 4,12 + 2717: 4,13 + 2725: 4,14 + 2733: 4,15 + 2741: 8,2 + 2749: 8,3 + 2757: 9,3 + 2762: 9,4 + 2767: 2,-13 + 2772: 2,-12 + 2777: 2,-11 + 2782: 2,-10 + 2790: 10,-3 + 2793: -11,-8 + 2796: -10,-8 + 2804: -10,-7 + 2809: -10,-6 + 2814: -10,-5 + 2843: -8,7 + 2848: -8,9 + 2851: -13,-22 + 2861: -13,-20 + 2877: 2,-27 + 2891: 10,-27 + 2899: 11,-26 + 2907: 11,-20 + 2915: 11,-19 + 2920: 12,-20 + 2925: 13,-20 + 2928: 4,16 + 2936: 4,17 + 2941: 4,12 + 2949: 4,13 + 2957: 4,14 + 2965: 4,15 + 2973: 8,2 + 2981: 8,3 + 2989: 9,3 + 2994: 9,4 + 2999: 2,-13 + 3004: 2,-12 + 3009: 2,-11 + 3014: 2,-10 + 3022: 10,-3 + 3025: -11,-8 + 3028: -10,-8 + 3036: -10,-7 + 3041: -10,-6 + 3046: -10,-5 + 3075: -8,7 + 3080: -8,9 + 3083: -13,-22 + 3093: -13,-20 + 3109: 2,-27 + 3123: 10,-27 + 3131: 11,-26 + 3139: 11,-20 + 3147: 11,-19 + 3152: 12,-20 + 3157: 13,-20 + 3160: 4,16 + 3168: 4,17 + 3173: 4,12 + 3181: 4,13 + 3189: 4,14 + 3197: 4,15 + 3205: 8,2 + 3213: 8,3 + 3221: 9,3 + 3226: 9,4 + 3231: 2,-13 + 3236: 2,-12 + 3241: 2,-11 + 3246: 2,-10 + 3254: 10,-3 + 3257: -11,-8 + 3260: -10,-8 + 3268: -10,-7 + 3273: -10,-6 + 3278: -10,-5 + 3307: -8,7 + 3312: -8,9 + 3315: -13,-22 + 3325: -13,-20 + 3341: 2,-27 + 3355: 10,-27 + 3363: 11,-26 + 3371: 11,-20 + 3379: 11,-19 + 3384: 12,-20 + 3389: 13,-20 + 3392: 4,16 + 3400: 4,17 + 3405: 4,12 + 3413: 4,13 + 3421: 4,14 + 3429: 4,15 + 3437: 8,2 + 3445: 8,3 + 3453: 9,3 + 3458: 9,4 + 3463: 2,-13 + 3468: 2,-12 + 3473: 2,-11 + 3478: 2,-10 + 3486: 10,-3 + 3489: -11,-8 + 3492: -10,-8 + 3500: -10,-7 + 3505: -10,-6 + 3510: -10,-5 + 3539: -8,7 + 3544: -8,9 + 3547: -13,-22 + 3557: -13,-20 + 3573: 2,-27 + 3587: 10,-27 + 3595: 11,-26 + 3603: 11,-20 + 3611: 11,-19 + 3616: 12,-20 + 3621: 13,-20 + 3624: 4,16 + 3632: 4,17 + 3637: 4,12 + 3645: 4,13 + 3653: 4,14 + 3661: 4,15 + 3669: 8,2 + 3677: 8,3 + 3685: 9,3 + 3690: 9,4 + 3695: 2,-13 + 3700: 2,-12 + 3705: 2,-11 + 3710: 2,-10 + 3718: 10,-3 + 3721: -11,-8 + 3724: -10,-8 + 3771: -8,7 + 3776: -8,9 + 3805: 2,-27 + 3819: 10,-27 + 3827: 11,-26 + 3835: 11,-20 + 3843: 11,-19 + 3848: 12,-20 + 3853: 13,-20 + 3856: 4,16 + 3864: 4,17 + 3869: -10,-6 + 3874: -10,-7 + 3879: -10,-5 + 3893: -13,-22 + - node: + id: LatticeEdgeW + decals: + 184: 4,12 + 192: 4,13 + 200: 4,14 + 208: 4,15 + 216: 8,2 + 224: 8,3 + 229: 9,3 + 234: 9,4 + 239: 2,-13 + 244: 2,-12 + 249: 2,-11 + 254: 2,-10 + 275: -10,-28 + 285: 2,-27 + 289: 8,-32 + 296: 10,-27 + 304: 11,-26 + 309: 11,-20 + 314: 11,-19 + 322: 4,16 + 328: 4,17 + 335: 4,12 + 343: 4,13 + 351: 4,14 + 359: 4,15 + 367: 8,2 + 375: 8,3 + 380: 9,3 + 385: 9,4 + 390: 2,-13 + 395: 2,-12 + 400: 2,-11 + 405: 2,-10 + 426: -10,-28 + 436: 2,-27 + 440: 8,-32 + 447: 10,-27 + 455: 11,-26 + 460: 11,-20 + 465: 11,-19 + 473: 4,16 + 479: 4,17 + 486: 4,12 + 494: 4,13 + 502: 4,14 + 510: 4,15 + 518: 8,2 + 526: 8,3 + 531: 9,3 + 536: 9,4 + 541: 2,-13 + 546: 2,-12 + 551: 2,-11 + 556: 2,-10 + 577: -10,-28 + 587: 2,-27 + 591: 8,-32 + 598: 10,-27 + 606: 11,-26 + 611: 11,-20 + 616: 11,-19 + 624: 4,16 + 630: 4,17 + 637: 4,12 + 645: 4,13 + 653: 4,14 + 661: 4,15 + 669: 8,2 + 677: 8,3 + 682: 9,3 + 687: 9,4 + 692: 2,-13 + 697: 2,-12 + 702: 2,-11 + 707: 2,-10 + 728: -10,-28 + 738: 2,-27 + 742: 8,-32 + 749: 10,-27 + 757: 11,-26 + 762: 11,-20 + 767: 11,-19 + 775: 4,16 + 781: 4,17 + 788: 4,12 + 796: 4,13 + 804: 4,14 + 812: 4,15 + 820: 8,2 + 828: 8,3 + 833: 9,3 + 838: 9,4 + 843: 2,-13 + 848: 2,-12 + 853: 2,-11 + 858: 2,-10 + 879: -10,-28 + 889: 2,-27 + 893: 8,-32 + 900: 10,-27 + 908: 11,-26 + 913: 11,-20 + 918: 11,-19 + 926: 4,16 + 932: 4,17 + 939: 4,12 + 947: 4,13 + 955: 4,14 + 963: 4,15 + 971: 8,2 + 979: 8,3 + 984: 9,3 + 989: 9,4 + 994: 2,-13 + 999: 2,-12 + 1004: 2,-11 + 1009: 2,-10 + 1030: -10,-28 + 1040: 2,-27 + 1044: 8,-32 + 1051: 10,-27 + 1059: 11,-26 + 1064: 11,-20 + 1069: 11,-19 + 1077: 4,16 + 1083: 4,17 + 1090: 4,12 + 1098: 4,13 + 1106: 4,14 + 1114: 4,15 + 1122: 8,2 + 1130: 8,3 + 1135: 9,3 + 1140: 9,4 + 1145: 2,-13 + 1150: 2,-12 + 1155: 2,-11 + 1160: 2,-10 + 1181: -10,-28 + 1191: 2,-27 + 1195: 8,-32 + 1202: 10,-27 + 1210: 11,-26 + 1215: 11,-20 + 1220: 11,-19 + 1228: 4,16 + 1234: 4,17 + 1241: 4,12 + 1249: 4,13 + 1257: 4,14 + 1265: 4,15 + 1273: 8,2 + 1281: 8,3 + 1286: 9,3 + 1291: 9,4 + 1296: 2,-13 + 1301: 2,-12 + 1306: 2,-11 + 1311: 2,-10 + 1332: -10,-28 + 1342: 2,-27 + 1346: 8,-32 + 1353: 10,-27 + 1361: 11,-26 + 1366: 11,-20 + 1371: 11,-19 + 1379: 4,16 + 1385: 4,17 + 1392: 4,12 + 1400: 4,13 + 1408: 4,14 + 1416: 4,15 + 1424: 8,2 + 1432: 8,3 + 1437: 9,3 + 1442: 9,4 + 1447: 2,-13 + 1452: 2,-12 + 1457: 2,-11 + 1462: 2,-10 + 1483: -10,-28 + 1493: 2,-27 + 1497: 8,-32 + 1504: 10,-27 + 1512: 11,-26 + 1517: 11,-20 + 1522: 11,-19 + 1530: 4,16 + 1536: 4,17 + 1543: 4,12 + 1551: 4,13 + 1559: 4,14 + 1567: 4,15 + 1575: 8,2 + 1583: 8,3 + 1588: 9,3 + 1593: 9,4 + 1598: 2,-13 + 1603: 2,-12 + 1608: 2,-11 + 1613: 2,-10 + 1634: -10,-28 + 1644: 2,-27 + 1648: 8,-32 + 1655: 10,-27 + 1663: 11,-26 + 1668: 11,-20 + 1673: 11,-19 + 1681: 4,16 + 1687: 4,17 + 1694: 4,12 + 1702: 4,13 + 1710: 4,14 + 1718: 4,15 + 1726: 8,2 + 1734: 8,3 + 1739: 9,3 + 1744: 9,4 + 1749: 2,-13 + 1754: 2,-12 + 1759: 2,-11 + 1764: 2,-10 + 1785: -10,-28 + 1792: 2,-27 + 1800: 10,-27 + 1808: 11,-26 + 1816: 4,16 + 1822: 4,17 + 1829: 11,-20 + 1834: 11,-19 + 1838: 8,-32 + 1841: 9,-30 + 1850: 13,-20 + 1855: 12,-20 + 1875: -10,-8 + 1896: 4,12 + 1904: 4,13 + 1912: 4,14 + 1920: 4,15 + 1928: 8,2 + 1936: 8,3 + 1941: 9,3 + 1946: 9,4 + 1951: 2,-13 + 1956: 2,-12 + 1961: 2,-11 + 1966: 2,-10 + 1977: -10,-8 + 2021: -10,-28 + 2034: 2,-27 + 2038: 8,-32 + 2041: 9,-30 + 2048: 10,-27 + 2056: 11,-26 + 2064: 11,-20 + 2069: 11,-19 + 2075: 12,-20 + 2078: 13,-20 + 2085: 4,16 + 2091: 4,17 + 2098: 4,12 + 2106: 4,13 + 2114: 4,14 + 2122: 4,15 + 2130: 8,2 + 2138: 8,3 + 2143: 9,3 + 2148: 9,4 + 2153: 2,-13 + 2158: 2,-12 + 2163: 2,-11 + 2168: 2,-10 + 2179: -10,-8 + 2223: -10,-28 + 2236: 2,-27 + 2240: 8,-32 + 2243: 9,-30 + 2250: 10,-27 + 2258: 11,-26 + 2266: 11,-20 + 2271: 11,-19 + 2277: 12,-20 + 2280: 13,-20 + 2287: 4,16 + 2293: 4,17 + 2300: 4,12 + 2308: 4,13 + 2316: 4,14 + 2324: 4,15 + 2329: 2,-13 + 2334: 2,-12 + 2339: 2,-11 + 2344: 2,-10 + 2355: -10,-8 + 2399: -10,-28 + 2409: 2,-27 + 2413: 8,-32 + 2416: 9,-30 + 2423: 10,-27 + 2431: 11,-26 + 2439: 11,-20 + 2444: 11,-19 + 2450: 12,-20 + 2453: 13,-20 + 2460: 4,16 + 2466: 4,17 + 2480: 10,-5 + 2483: 10,-3 + 2487: 9,4 + 2492: 9,3 + 2500: 8,3 + 2508: 8,2 + 2714: 4,12 + 2722: 4,13 + 2730: 4,14 + 2738: 4,15 + 2746: 8,2 + 2754: 8,3 + 2759: 9,3 + 2764: 9,4 + 2769: 2,-13 + 2774: 2,-12 + 2779: 2,-11 + 2784: 2,-10 + 2788: 10,-5 + 2791: 10,-3 + 2801: -10,-8 + 2869: -10,-28 + 2882: 2,-27 + 2886: 8,-32 + 2889: 9,-30 + 2896: 10,-27 + 2904: 11,-26 + 2912: 11,-20 + 2917: 11,-19 + 2923: 12,-20 + 2926: 13,-20 + 2933: 4,16 + 2939: 4,17 + 2946: 4,12 + 2954: 4,13 + 2962: 4,14 + 2970: 4,15 + 2978: 8,2 + 2986: 8,3 + 2991: 9,3 + 2996: 9,4 + 3001: 2,-13 + 3006: 2,-12 + 3011: 2,-11 + 3016: 2,-10 + 3020: 10,-5 + 3023: 10,-3 + 3033: -10,-8 + 3101: -10,-28 + 3114: 2,-27 + 3118: 8,-32 + 3121: 9,-30 + 3128: 10,-27 + 3136: 11,-26 + 3144: 11,-20 + 3149: 11,-19 + 3155: 12,-20 + 3158: 13,-20 + 3165: 4,16 + 3171: 4,17 + 3178: 4,12 + 3186: 4,13 + 3194: 4,14 + 3202: 4,15 + 3210: 8,2 + 3218: 8,3 + 3223: 9,3 + 3228: 9,4 + 3233: 2,-13 + 3238: 2,-12 + 3243: 2,-11 + 3248: 2,-10 + 3252: 10,-5 + 3255: 10,-3 + 3265: -10,-8 + 3333: -10,-28 + 3346: 2,-27 + 3350: 8,-32 + 3353: 9,-30 + 3360: 10,-27 + 3368: 11,-26 + 3376: 11,-20 + 3381: 11,-19 + 3387: 12,-20 + 3390: 13,-20 + 3397: 4,16 + 3403: 4,17 + 3410: 4,12 + 3418: 4,13 + 3426: 4,14 + 3434: 4,15 + 3442: 8,2 + 3450: 8,3 + 3455: 9,3 + 3460: 9,4 + 3465: 2,-13 + 3470: 2,-12 + 3475: 2,-11 + 3480: 2,-10 + 3484: 10,-5 + 3487: 10,-3 + 3497: -10,-8 + 3565: -10,-28 + 3578: 2,-27 + 3582: 8,-32 + 3585: 9,-30 + 3592: 10,-27 + 3600: 11,-26 + 3608: 11,-20 + 3613: 11,-19 + 3619: 12,-20 + 3622: 13,-20 + 3629: 4,16 + 3635: 4,17 + 3642: 4,12 + 3650: 4,13 + 3658: 4,14 + 3666: 4,15 + 3674: 8,2 + 3682: 8,3 + 3687: 9,3 + 3692: 9,4 + 3697: 2,-13 + 3702: 2,-12 + 3707: 2,-11 + 3712: 2,-10 + 3716: 10,-5 + 3719: 10,-3 + 3729: -10,-8 + 3797: -10,-28 + 3810: 2,-27 + 3814: 8,-32 + 3817: 9,-30 + 3824: 10,-27 + 3832: 11,-26 + 3840: 11,-20 + 3845: 11,-19 + 3851: 12,-20 + 3854: 13,-20 + 3861: 4,16 + 3867: 4,17 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 196: -12,-13 - 197: -12,-15 - 198: -12,-14 + 86: -12,-13 + 87: -12,-15 + 88: -12,-14 - node: color: '#D381C996' id: LoadingAreaGreyscale decals: - 133: -7,-19 - 134: -7,-19 - 135: -7,-19 + 51: -7,-19 + 52: -7,-19 + 53: -7,-19 + - node: + color: '#D381C996' + id: Rust + decals: + 2468: -5,9 + 2469: -6,8 + 2470: -4,10 + 2471: -3,11 + 2472: -3,7 - node: color: '#FFFFFFFF' id: TechCornerE decals: - 136: -2,8 + 54: -2,8 - node: - color: '#FFFFFFFF' + color: '#D381C996' id: TechE decals: - 238: -3,10 + 2687: -4,-15 + 2688: -4,-13 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: TechE decals: - 413: -6,-4 - 414: -5,-4 + 172: -6,-4 + 173: -5,-4 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: TechN decals: - 418: -6,-5 - 419: -5,-5 + 177: -6,-5 + 178: -5,-5 - node: - angle: 6.283185307179586 rad - color: '#FFFFFFFF' - id: TechN + color: '#D381C996' + id: TechNE decals: - 2453: -4,11 + 2683: -4,-12 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: TechNE decals: - 417: -7,-5 + 176: -7,-5 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: TechNE decals: - 416: -4,-5 + 175: -4,-5 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechNE decals: - 415: -4,-4 - 2452: -3,11 + 174: -4,-4 - node: - angle: 6.283185307179586 rad - color: '#FFFFFFFF' + color: '#D381C996' id: TechNW decals: - 2451: -5,11 + 2684: -8,-12 - node: - color: '#FFFFFFFF' + color: '#D381C996' id: TechS decals: - 235: -4,9 + 2692: -7,-16 + 2693: -6,-16 + 2694: -5,-16 - node: - color: '#FFFFFFFF' + color: '#D381C996' id: TechSE decals: - 236: -3,9 + 2686: -4,-16 - node: - color: '#FFFFFFFF' + color: '#D381C996' id: TechSW decals: - 234: -5,9 + 2685: -8,-16 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: TechSW decals: - 412: -7,-4 + 171: -7,-4 - node: - color: '#FFFFFFFF' + color: '#D381C996' id: TechW decals: - 237: -5,10 - - node: - angle: 1.5707963267948966 rad - color: '#37C9B430' - id: TrimWarnEast - decals: - 427: 3,-1 - 428: 2,-1 - 429: 1,-1 - - node: - angle: 1.5707963267948966 rad - color: '#37C9B430' - id: TrimWarnNorthWest - decals: - 422: 0,-2 - 432: 0,-4 + 2689: -8,-13 + 2690: -8,-14 + 2691: -8,-15 - node: - angle: 3.141592653589793 rad - color: '#37C9B430' - id: TrimWarnNorthWest + color: '#D381C996' + id: TrimWarnNorth decals: - 423: 4,-2 - 433: 4,-4 + 2571: 1,-1 + 2572: 2,-1 + 2573: 3,-1 + 2581: 1,-3 + 2582: 2,-3 + 2583: 3,-3 - node: - angle: 4.71238898038469 rad - color: '#37C9B430' - id: TrimWarnNorthWest + color: '#D381C996' + id: TrimWarnNorthEast decals: - 421: 4,-1 - 431: 4,-3 + 2570: 4,-1 + 2579: 4,-3 - node: - angle: 6.283185307179586 rad - color: '#37C9B430' + color: '#D381C996' id: TrimWarnNorthWest decals: - 420: 0,-1 - 430: 0,-3 - - node: - angle: 3.141592653589793 rad - color: '#37C9B430' - id: TrimWarnSouth - decals: - 434: 1,-3 - 435: 2,-3 - 436: 3,-3 + 2569: 0,-1 + 2580: 0,-3 - node: - angle: 6.283185307179586 rad - color: '#37C9B430' + color: '#D381C996' id: TrimWarnSouth decals: - 424: 1,-2 - 425: 2,-2 - 426: 3,-2 - 437: 1,-4 - 438: 2,-4 - 439: 3,-4 + 2576: 1,-2 + 2577: 2,-2 + 2578: 3,-2 + 2586: 1,-4 + 2587: 2,-4 + 2588: 3,-4 - node: - angle: 1.5707963267948966 rad - color: '#37C9B430' - id: TrimlineNorth + color: '#D381C996' + id: TrimWarnSouthEast decals: - 445: 5,-3 - 446: -1,-3 + 2574: 4,-2 + 2584: 4,-4 - node: - angle: 4.71238898038469 rad - color: '#37C9B430' - id: TrimlineNorth + color: '#D381C996' + id: TrimWarnSouthWest decals: - 444: 5,-3 - 447: -1,-3 + 2575: 0,-2 + 2585: 0,-4 - node: - angle: 3.141592653589793 rad - color: '#37C9B430' + color: '#D381C996' id: TrimlineNorthEnd decals: - 441: 5,-4 - 443: -1,-4 + 2590: 5,-2 + 2591: -1,-2 - node: - angle: 6.283185307179586 rad - color: '#37C9B430' - id: TrimlineNorthEnd + color: '#D381C996' + id: TrimlineSouthEnd decals: - 440: 5,-2 - 442: -1,-2 + 2589: 5,-3 + 2592: -1,-3 - node: color: '#D381C996' id: WarnCornerGreyscaleNE decals: - 153: 5,-24 - - node: - color: '#FF94FF3E' - id: WarnCornerGreyscaleNE - decals: - 218: 8,10 - 219: 9,6 - 220: 10,0 - 222: 11,-4 + 57: 5,-24 - node: color: '#D381C996' id: WarnCornerGreyscaleNW decals: - 49: -7,-22 - 68: -12,-18 - 152: 4,-24 - 176: -13,-16 + 16: -12,-18 + 56: 4,-24 + 71: -13,-16 - node: color: '#FF94FF21' id: WarnCornerGreyscaleNW decals: - 203: -10,-4 - 204: -11,-9 + 89: -10,-4 + 90: -11,-9 - node: color: '#FF94FF3E' id: WarnCornerGreyscaleNW decals: - 205: -10,-4 - 206: -11,-9 - - node: - color: '#D381C996' - id: WarnCornerGreyscaleSE - decals: - 50: -2,-23 - 150: 6,-22 - - node: - color: '#FF94FF3E' - id: WarnCornerGreyscaleSE - decals: - 221: 11,-5 - - node: - color: '#D381C996' - id: WarnCornerGreyscaleSW - decals: - 148: 4,-22 + 91: -10,-4 + 92: -11,-9 - node: color: '#D381C996' id: WarnCornerSmallGreyscaleNE decals: - 154: 5,-25 + 58: 5,-25 - node: color: '#FF94FF3E' id: WarnCornerSmallGreyscaleNE decals: - 231: 10,-4 - 232: 9,0 - 233: 8,6 + 106: 10,-4 + 107: 9,0 - node: color: '#FF94FF3E' id: WarnCornerSmallGreyscaleNW decals: - 210: -10,-9 + 96: -10,-9 - node: color: '#FF94FF3E' id: WarnEndGreyscaleE decals: - 212: 11,-18 - 213: 13,-21 + 98: 11,-18 + 99: 13,-21 - node: color: '#FF94FF3E' id: WarnEndGreyscaleS decals: - 216: 7,-33 - 217: -7,-33 + 102: 7,-33 + 103: -7,-33 - node: color: '#D381C996' id: WarnFullGreyscale decals: - 178: 3,17 - 179: 5,17 - 180: -7,11 + 72: 3,17 + 73: 5,17 + 74: -7,11 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 59: -6,-29 - 60: -6,-30 - 61: -6,-31 + 7: -6,-29 + 8: -6,-30 + 9: -6,-31 - node: color: '#D381C996' id: WarnLineGreyscaleE @@ -3420,56 +4185,42 @@ entities: 0: -8,8 5: -9,-9 6: -9,-10 - 54: -1,-12 - 55: -1,-11 - 57: 0,-20 - 173: -4,-1 - 184: 6,7 - 188: 4,6 + 68: -4,-1 + 78: 6,7 + 82: 4,6 - node: color: '#FF94FF3E' id: WarnLineGreyscaleE decals: - 211: -12,-16 - 223: 8,9 - 224: 8,8 - 225: 8,7 - 226: 9,5 - 227: 9,1 - 228: 10,-1 - 229: 10,-2 - 230: 10,-3 + 97: -12,-16 + 104: 9,5 + 105: 9,1 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 51: -1,0 - 65: -11,-18 - 66: -10,-18 - 175: -12,-16 - 181: 3,7 - 182: 4,7 - 183: 5,7 - 190: 4,4 + 13: -11,-18 + 14: -10,-18 + 70: -12,-16 + 75: 3,7 + 76: 4,7 + 77: 5,7 - node: color: '#FF94FF3E' id: WarnLineGreyscaleN decals: - 214: 12,-21 + 100: 12,-21 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 58: -6,-23 - 149: 5,-22 - 186: 3,7 - 187: 5,7 - 191: 3,3 + 80: 3,7 + 81: 5,7 - node: color: '#FF94FF3E' id: WarnLineGreyscaleS decals: - 215: 10,-18 + 101: 10,-18 - node: color: '#D381C996' id: WarnLineGreyscaleW @@ -3478,45 +4229,40 @@ entities: 2: -8,6 3: -9,-9 4: -9,-10 - 52: -2,-1 - 53: -2,-14 - 56: -3,-19 - 67: -12,-19 - 119: -2,-6 - 151: 2,-20 - 174: -13,-17 - 185: 2,7 - 189: 4,6 + 15: -12,-19 + 69: -13,-17 + 79: 2,7 + 83: 4,6 - node: color: '#FF94FF3E' id: WarnLineGreyscaleW decals: - 207: -11,-12 - 208: -11,-11 - 209: -11,-10 + 93: -11,-12 + 94: -11,-11 + 95: -11,-10 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 73: 2,8 - 74: 6,8 - 75: 4,8 + 19: 2,8 + 20: 6,8 + 21: 4,8 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 62: 5,-29 - 63: 5,-30 - 64: 5,-31 + 10: 5,-29 + 11: 5,-30 + 12: 5,-31 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 76: 0,5 - 77: 0,4 - 78: 0,3 - 79: 0,2 - 80: -5,2 + 22: 0,5 + 23: 0,4 + 24: 0,3 + 25: 0,2 + 26: -5,2 - type: GridAtmosphere version: 2 data: @@ -3530,7 +4276,7 @@ entities: 0,1: 0: 56347 -1,1: - 0: 63709 + 0: 63741 0,2: 0: 52673 -1,2: @@ -3538,7 +4284,7 @@ entities: 0,4: 0: 4 1,0: - 0: 47287 + 0: 47359 1,1: 0: 30491 1,2: @@ -3546,20 +4292,19 @@ entities: 1,3: 1: 4369 1,-1: - 0: 30583 + 0: 65535 1,4: 1: 17 0: 4 2,0: - 0: 55 - 1: 13056 - 2,1: - 1: 3 - 0: 4912 - 2,2: - 0: 273 + 0: 17 + 1: 12544 2,-1: - 0: 30591 + 0: 4373 + 1: 64 + 2,1: + 1: 2 + 0: 32 0,-4: 0: 8738 1: 17476 @@ -3580,10 +4325,9 @@ entities: 0,-5: 0: 24799 2,-2: - 0: 49152 + 1: 16384 -4,-4: 0: 8 - 1: 34944 -4,-5: 0: 34944 1: 8 @@ -3608,7 +4352,7 @@ entities: -1,-5: 0: 52990 -2,1: - 0: 50653 + 0: 51677 1: 4096 -2,2: 0: 43213 @@ -3617,7 +4361,7 @@ entities: 0: 65024 1: 4 -3,-6: - 0: 7423 + 0: 23807 -4,-6: 1: 34816 -3,-5: @@ -3646,7 +4390,7 @@ entities: 0,-8: 0: 56816 0,-7: - 0: 28945 + 0: 61713 1: 64 0,-6: 0: 53367 @@ -3726,30 +4470,31 @@ entities: - uid: 2 components: - type: Transform - pos: 10.5,0.5 + rot: -1.5707963267948966 rad + pos: -7.5,8.5 parent: 1 - type: Physics canCollide: False - uid: 3 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,8.5 + rot: 1.5707963267948966 rad + pos: 11.5,-17.5 parent: 1 - type: Physics canCollide: False - uid: 4 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-17.5 + pos: -10.5,-8.5 parent: 1 - type: Physics canCollide: False - uid: 5 components: - type: Transform - pos: -10.5,-8.5 + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 parent: 1 - type: Physics canCollide: False @@ -3763,7 +4508,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 884 + - 914 - type: Physics canCollide: False - proto: AAAHardpointMediumBallistic @@ -3788,20 +4533,20 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,10.5 + pos: -6.5,11.5 parent: 1 - type: Physics canCollide: False +- proto: AAAHardpointSmallBallistic + entities: - uid: 10 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,11.5 + rot: 1.5707963267948966 rad + pos: 9.5,5.5 parent: 1 - type: Physics canCollide: False -- proto: AAAHardpointSmallBallistic - entities: - uid: 11 components: - type: Transform @@ -3840,7 +4585,8 @@ entities: - uid: 16 components: - type: Transform - pos: 11.5,-4.5 + rot: 1.5707963267948966 rad + pos: -8.5,0.5 parent: 1 - type: Physics canCollide: False @@ -3848,14 +4594,15 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,0.5 + pos: 13.5,-25.5 parent: 1 - type: Physics canCollide: False - uid: 18 components: - type: Transform - pos: 9.5,6.5 + rot: 1.5707963267948966 rad + pos: 9.5,3.5 parent: 1 - type: Physics canCollide: False @@ -3863,7 +4610,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-25.5 + pos: 10.5,-4.5 parent: 1 - type: Physics canCollide: False @@ -3896,7 +4643,7 @@ entities: occludes: True ents: [] - type: Battery - startingCharge: 94343.125 + startingCharge: 55240.066 - type: ApcPowerReceiverBattery enabled: True - type: ItemSlots @@ -3910,21 +4657,21 @@ entities: parent: 1 - type: DeviceList devices: - - 1053 - - 1061 - - 1054 - - 1062 - - 1060 - - 1057 - - 1065 - - 1056 - - 1064 - - 1059 - - 1052 - - 1058 - - 1066 - - 1055 - - 1063 + - 1105 + - 1113 + - 1106 + - 1114 + - 1112 + - 1109 + - 1117 + - 1108 + - 1116 + - 1111 + - 1104 + - 1110 + - 1118 + - 1107 + - 1115 - uid: 22 components: - type: Transform @@ -3933,21 +4680,21 @@ entities: parent: 1 - type: DeviceList devices: - - 1053 - - 1061 - - 1054 - - 1062 - - 1060 - - 1057 - - 1065 - - 1056 - - 1064 - - 1059 - - 1052 - - 1058 - - 1066 - - 1055 - - 1063 + - 1105 + - 1113 + - 1106 + - 1114 + - 1112 + - 1109 + - 1117 + - 1108 + - 1116 + - 1111 + - 1104 + - 1110 + - 1118 + - 1107 + - 1115 - uid: 23 components: - type: Transform @@ -3960,21 +4707,21 @@ entities: parent: 1 - type: DeviceList devices: - - 1053 - - 1061 - - 1054 - - 1062 - - 1060 - - 1057 - - 1065 - - 1056 - - 1064 - - 1059 - - 1052 - - 1058 - - 1066 - - 1055 - - 1063 + - 1105 + - 1113 + - 1106 + - 1114 + - 1112 + - 1109 + - 1117 + - 1108 + - 1116 + - 1111 + - 1104 + - 1110 + - 1118 + - 1107 + - 1115 - uid: 25 components: - type: Transform @@ -3983,21 +4730,21 @@ entities: parent: 1 - type: DeviceList devices: - - 1053 - - 1061 - - 1054 - - 1062 - - 1060 - - 1057 - - 1065 - - 1056 - - 1064 - - 1059 - - 1052 - - 1058 - - 1066 - - 1055 - - 1063 + - 1105 + - 1113 + - 1106 + - 1114 + - 1112 + - 1109 + - 1117 + - 1108 + - 1116 + - 1111 + - 1104 + - 1110 + - 1118 + - 1107 + - 1115 - proto: AirCanister entities: - uid: 26 @@ -4011,132 +4758,149 @@ entities: - proto: AirlockCommandLockedDSM entities: - uid: 27 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 1 - - uid: 28 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-23.5 parent: 1 - - uid: 29 + - uid: 28 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,1.5 parent: 1 - - uid: 30 + - uid: 29 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,6.5 parent: 1 - - uid: 31 + - uid: 30 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-4.5 parent: 1 - - uid: 32 + - uid: 31 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 1 - - uid: 33 + - uid: 32 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-22.5 parent: 1 - - uid: 34 + - uid: 33 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-22.5 parent: 1 + - uid: 34 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 1 - proto: AirlockCommandLockedDSMHorizontal entities: - - uid: 35 + - uid: 36 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 36 + - uid: 37 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-5.5 parent: 1 - - uid: 37 + - uid: 38 components: - type: Transform pos: 0.5,-10.5 parent: 1 - type: Door - secondsUntilStateChange: -15494.238 + secondsUntilStateChange: -23390.371 state: Opening - type: DeviceLinkSource lastSignals: DoorStatus: True - - uid: 38 + - uid: 39 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-22.5 parent: 1 - - uid: 39 + - uid: 40 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-21.5 parent: 1 - - uid: 40 + - uid: 41 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-18.5 parent: 1 - - uid: 41 + - uid: 42 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-18.5 parent: 1 - - uid: 42 + - uid: 43 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-13.5 parent: 1 - - uid: 43 + - uid: 44 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 parent: 1 - - uid: 44 + - uid: 45 components: - type: Transform pos: 1.5,-19.5 parent: 1 - - uid: 45 + - uid: 46 components: - type: Transform pos: 9.5,-21.5 parent: 1 + - uid: 47 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-24.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 - proto: AirlockExternal entities: - - uid: 46 + - uid: 49 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,5.5 parent: 1 - - uid: 47 + - uid: 50 components: - type: Transform rot: 3.141592653589793 rad @@ -4144,13 +4908,13 @@ entities: parent: 1 - proto: AirlockMaintHorizontal entities: - - uid: 48 + - uid: 51 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-30.5 parent: 1 - - uid: 49 + - uid: 52 components: - type: Transform rot: 3.141592653589793 rad @@ -4158,13 +4922,13 @@ entities: parent: 1 - proto: AirlockShuttle entities: - - uid: 50 + - uid: 53 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-10.5 parent: 1 - - uid: 51 + - uid: 54 components: - type: Transform rot: 1.5707963267948966 rad @@ -4174,15 +4938,15 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -22732.951 + secondsUntilStateChange: -30629.084 state: Opening - - uid: 52 + - uid: 55 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-17.5 parent: 1 - - uid: 53 + - uid: 56 components: - type: Transform rot: -1.5707963267948966 rad @@ -4190,25 +4954,37 @@ entities: parent: 1 - proto: AirTankFilled entities: - - uid: 55 + - uid: 58 components: - type: Transform - parent: 54 + parent: 57 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 60 + - uid: 63 components: - type: Transform - parent: 59 + parent: 62 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage +- proto: AltarConvertBurden + entities: + - uid: 67 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 1 - proto: AmeController entities: - - uid: 64 + - uid: 69 components: - type: Transform pos: 3.5,-30.5 @@ -4221,53 +4997,53 @@ entities: fuelSlot: !type:ContainerSlot showEnts: False occludes: True - ent: 65 + ent: 70 - proto: AmeJar entities: - - uid: 65 + - uid: 70 components: - type: Transform - parent: 64 + parent: 69 - type: Physics canCollide: False - - uid: 66 + - uid: 71 components: - type: Transform pos: 3.8230472,-28.364965 parent: 1 - - uid: 67 + - uid: 72 components: - type: Transform pos: 3.4812212,-28.364965 parent: 1 - - uid: 68 + - uid: 73 components: - type: Transform pos: 3.2880154,-28.364965 parent: 1 - - uid: 69 + - uid: 74 components: - type: Transform pos: 3.659566,-28.364965 parent: 1 - - uid: 70 + - uid: 75 components: - type: Transform pos: 3.1542568,-28.364965 parent: 1 - proto: AmeShielding entities: - - uid: 71 + - uid: 76 components: - type: Transform pos: 4.5,-30.5 parent: 1 - - uid: 72 + - uid: 77 components: - type: Transform pos: 5.5,-30.5 parent: 1 - - uid: 73 + - uid: 78 components: - type: Transform pos: 5.5,-29.5 @@ -4275,22 +5051,22 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 74 + - uid: 79 components: - type: Transform pos: 5.5,-28.5 parent: 1 - - uid: 75 + - uid: 80 components: - type: Transform pos: 4.5,-29.5 parent: 1 - - uid: 76 + - uid: 81 components: - type: Transform pos: 6.5,-30.5 parent: 1 - - uid: 77 + - uid: 82 components: - type: Transform pos: 6.5,-29.5 @@ -4298,94 +5074,88 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 78 + - uid: 83 components: - type: Transform pos: 6.5,-28.5 parent: 1 - - uid: 79 + - uid: 84 components: - type: Transform pos: 7.5,-30.5 parent: 1 - - uid: 80 + - uid: 85 components: - type: Transform pos: 7.5,-29.5 parent: 1 - - uid: 81 + - uid: 86 components: - type: Transform pos: 7.5,-28.5 parent: 1 - - uid: 82 + - uid: 87 components: - type: Transform pos: 4.5,-28.5 parent: 1 - proto: APCBasic entities: - - uid: 83 + - uid: 88 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-27.5 parent: 1 - - uid: 84 + - uid: 89 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-25.5 parent: 1 - - uid: 85 + - uid: 90 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-21.5 parent: 1 - - uid: 86 + - uid: 91 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-21.5 parent: 1 - - uid: 87 + - uid: 92 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-1.5 parent: 1 - - uid: 88 + - uid: 93 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-6.5 parent: 1 - - uid: 89 + - uid: 94 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-17.5 parent: 1 - - uid: 90 + - uid: 95 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-24.5 parent: 1 - - uid: 91 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 1 - - uid: 92 + - uid: 96 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,6.5 parent: 1 - - uid: 93 + - uid: 97 components: - type: Transform rot: 1.5707963267948966 rad @@ -4393,83 +5163,93 @@ entities: parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 94 + - uid: 98 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 95 + - uid: 99 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 96 + - uid: 100 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 97 + - uid: 101 components: - type: Transform pos: 11.5,-20.5 parent: 1 - - uid: 98 + - uid: 102 components: - type: Transform pos: -8.5,-5.5 parent: 1 - - uid: 99 + - uid: 103 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 100 + - uid: 104 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 101 + - uid: 105 components: - type: Transform pos: -8.5,-5.5 parent: 1 - - uid: 102 + - uid: 106 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,5.5 parent: 1 - - uid: 103 + - uid: 107 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,2.5 parent: 1 - - uid: 104 + - uid: 108 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-17.5 parent: 1 - - uid: 105 + - uid: 109 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-18.5 parent: 1 - - uid: 106 + - uid: 110 components: - type: Transform pos: 7.5,0.5 parent: 1 - - uid: 107 + - uid: 111 components: - type: Transform pos: 6.5,8.5 parent: 1 + - uid: 112 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 - proto: BaseWeaponTurretJeong entities: - - uid: 108 + - uid: 114 components: - type: Transform rot: -1.5707963267948966 rad @@ -4499,13 +5279,13 @@ entities: ents: [] - type: PointCannon linkedConsoleIds: - - 894 - linkedConsoleId: 894 - - uid: 109 + - 922 + linkedConsoleId: 922 + - uid: 115 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,0.5 + pos: 11.5,-17.5 parent: 1 - type: ApcPowerReceiver powerLoad: 5 @@ -4531,13 +5311,13 @@ entities: ents: [] - type: PointCannon linkedConsoleIds: - - 894 - linkedConsoleId: 894 - - uid: 110 + - 922 + linkedConsoleId: 922 + - uid: 116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-17.5 + rot: -1.5707963267948966 rad + pos: -7.5,8.5 parent: 1 - type: ApcPowerReceiver powerLoad: 5 @@ -4563,28 +5343,20 @@ entities: ents: [] - type: PointCannon linkedConsoleIds: - - 894 - linkedConsoleId: 894 - - uid: 111 + - 922 + linkedConsoleId: 922 + - uid: 117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,8.5 + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 5 - - type: Battery - startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null machine_board: !type:Container showEnts: False occludes: True @@ -4593,35 +5365,53 @@ entities: showEnts: False occludes: True ents: [] + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon linkedConsoleIds: - - 894 - linkedConsoleId: 894 -- proto: Bed + - 922 + linkedConsoleId: 922 + - type: Battery + startingCharge: 0 +- proto: BedsheetBrown entities: - - uid: 112 + - uid: 125 components: - type: Transform - pos: -3.5,2.5 + rot: 3.141592653589793 rad + pos: -8.5,-25.5 parent: 1 - - uid: 113 +- proto: BedsheetCaptain + entities: + - uid: 124 components: - type: Transform - pos: -8.5,-23.5 + rot: 3.141592653589793 rad + pos: -11.5,-24.5 parent: 1 - - uid: 114 +- proto: BedsheetGreen + entities: + - uid: 122 components: - type: Transform + rot: 3.141592653589793 rad pos: -8.5,-24.5 parent: 1 - - uid: 115 +- proto: BedsheetGrey + entities: + - uid: 120 components: - type: Transform - pos: -8.5,-25.5 + rot: 3.141592653589793 rad + pos: -11.5,-22.5 parent: 1 - proto: BedsheetMedical entities: - - uid: 116 + - uid: 118 components: - type: Transform pos: -3.4646935,-7.445119 @@ -4629,57 +5419,42 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 -- proto: BedsheetPurple - entities: - - uid: 117 - components: - - type: Transform - pos: -8.5,-23.5 - parent: 1 - - uid: 118 - components: - - type: Transform - pos: -8.5,-24.5 - parent: 1 - - uid: 119 - components: - - type: Transform - pos: -8.5,-25.5 - parent: 1 - proto: BedsheetRD entities: - - uid: 120 + - uid: 119 components: - - type: MetaData - name: imperial bedsheet - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,2.5 + pos: -11.5,-23.5 parent: 1 -- proto: BenchSteelLeft - entities: - uid: 121 components: - type: Transform - pos: 3.5,-18.5 + pos: -8.5,-23.5 parent: 1 -- proto: BenchSteelRight - entities: - - uid: 122 + - uid: 123 components: - type: Transform - pos: 4.5,-18.5 + pos: -10.5,-25.5 parent: 1 - proto: BiomassReclaimer entities: - - uid: 123 + - uid: 126 components: - type: Transform pos: -3.5,-3.5 parent: 1 - proto: BlastDoor entities: - - uid: 124 + - uid: 127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1362 + - uid: 128 components: - type: Transform rot: 3.141592653589793 rad @@ -4687,8 +5462,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1309 - - uid: 125 + - 1360 + - uid: 129 components: - type: Transform rot: 1.5707963267948966 rad @@ -4696,26 +5471,26 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1311 - - uid: 126 + - 1364 + - uid: 130 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-22.5 parent: 1 - - uid: 127 + - uid: 131 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-23.5 parent: 1 - - uid: 128 + - uid: 132 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-24.5 parent: 1 - - uid: 131 + - uid: 133 components: - type: Transform rot: 1.5707963267948966 rad @@ -4723,60 +5498,64 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1312 - - uid: 132 + - 1365 + - uid: 134 components: - type: Transform pos: 11.5,-20.5 parent: 1 - type: DeviceLinkSink links: - - 1313 - - uid: 133 + - 1366 + - uid: 135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 + rot: 1.5707963267948966 rad + pos: -5.5,11.5 parent: 1 - type: DeviceLinkSink links: - - 1314 - - uid: 134 + - 1363 + - uid: 136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,11.5 + rot: 3.141592653589793 rad + pos: 2.5,8.5 parent: 1 - type: DeviceLinkSink links: - - 1310 - - uid: 135 + - 1360 + - uid: 137 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,8.5 + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 parent: 1 - type: DeviceLinkSink links: - - 1309 + - 1361 - proto: BoozeDispenser entities: - - uid: 136 + - uid: 138 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,2.5 + pos: -5.5,2.5 parent: 1 - proto: BoriaticFuelTankFull entities: - - uid: 137 + - uid: 139 components: - type: Transform - pos: -8.5,-17.5 + anchored: True + pos: -9.5,-17.5 parent: 1 + - type: Physics + fixedRotation: False + bodyType: Static - proto: BoriaticGeneratorHerculesShuttle entities: - - uid: 138 + - uid: 140 components: - type: Transform pos: -6.5,-30.5 @@ -4787,2384 +5566,2385 @@ entities: bodyType: Static - proto: BoxBeaker entities: - - uid: 139 + - uid: 141 components: - type: Transform pos: -6.66038,-8.189533 parent: 1 - proto: BoxBottle entities: - - uid: 140 + - uid: 142 components: - type: Transform pos: -6.50413,-8.470783 parent: 1 - - uid: 141 + - uid: 143 components: - type: Transform pos: -6.50413,-8.470783 parent: 1 +- proto: BoxMRE + entities: + - uid: 144 + components: + - type: Transform + pos: -5.2764893,9.70092 + parent: 1 - proto: BoxPillCanister entities: - - uid: 142 + - uid: 145 components: - type: Transform pos: -6.301005,-8.189533 parent: 1 - proto: BoxSyringe entities: - - uid: 143 + - uid: 146 components: - type: Transform pos: -6.777571,-8.547294 parent: 1 +- proto: BrokenBottle + entities: + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.665624,9.387818 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: 1.570816353955541 rad + pos: -4.258595,11.426207 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 3.367074,-0.8726237 + parent: 1 - proto: ButtonFrameCaution entities: - - uid: 144 + - uid: 150 components: - type: Transform pos: 10.5,-20.5 parent: 1 - - uid: 145 + - uid: 151 components: - type: Transform pos: -7.5,-4.5 parent: 1 - - uid: 146 + - uid: 152 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,7.5 parent: 1 - - uid: 147 + - uid: 153 components: - type: Transform - pos: 6.5,1.5 + rot: -1.5707963267948966 rad + pos: 8.5,3.5 parent: 1 - - uid: 148 + - uid: 154 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,10.5 parent: 1 - - uid: 149 + - uid: 155 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 1 + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 - proto: ButtonFrameCautionSecurity entities: - - uid: 151 + - uid: 157 components: - type: Transform pos: 4.5,8.5 parent: 1 - proto: CableApcExtension entities: - - uid: 152 + - uid: 158 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 159 components: - type: Transform pos: 9.5,-24.5 parent: 1 - - uid: 153 + - uid: 160 components: - type: Transform pos: -11.5,-16.5 parent: 1 - - uid: 154 + - uid: 161 components: - type: Transform pos: -11.5,-15.5 parent: 1 - - uid: 155 + - uid: 162 components: - type: Transform pos: -11.5,-17.5 parent: 1 - - uid: 156 + - uid: 163 components: - type: Transform pos: 9.5,-25.5 parent: 1 - - uid: 157 + - uid: 164 components: - type: Transform pos: 9.5,-27.5 parent: 1 - - uid: 158 + - uid: 165 components: - type: Transform pos: -9.5,-26.5 parent: 1 - - uid: 159 + - uid: 166 components: - type: Transform pos: -8.5,-26.5 parent: 1 - - uid: 160 + - uid: 167 components: - type: Transform pos: -8.5,-27.5 parent: 1 - - uid: 161 + - uid: 168 components: - type: Transform pos: -8.5,-28.5 parent: 1 - - uid: 162 + - uid: 169 components: - type: Transform pos: 12.5,-23.5 parent: 1 - - uid: 163 + - uid: 170 components: - type: Transform pos: -8.5,-29.5 parent: 1 - - uid: 164 + - uid: 171 components: - type: Transform pos: -6.5,9.5 parent: 1 - - uid: 165 + - uid: 172 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 166 + - uid: 173 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 167 + - uid: 174 components: - type: Transform pos: 9.5,-29.5 parent: 1 - - uid: 168 + - uid: 175 components: - type: Transform pos: 11.5,-25.5 parent: 1 - - uid: 169 + - uid: 176 components: - type: Transform pos: -10.5,-26.5 parent: 1 - - uid: 170 + - uid: 177 components: - type: Transform pos: 9.5,-26.5 parent: 1 - - uid: 171 + - uid: 178 components: - type: Transform pos: 9.5,-28.5 parent: 1 - - uid: 172 + - uid: 179 components: - type: Transform pos: 11.5,-17.5 parent: 1 - - uid: 173 + - uid: 180 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 174 + - uid: 181 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 175 + - uid: 182 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 176 + - uid: 183 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 177 + - uid: 184 components: - type: Transform pos: 13.5,-20.5 parent: 1 - - uid: 178 + - uid: 185 components: - type: Transform pos: 10.5,-17.5 parent: 1 - - uid: 179 + - uid: 186 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 180 + - uid: 187 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 181 + - uid: 188 components: - type: Transform pos: 7.5,8.5 parent: 1 - - uid: 182 + - uid: 189 components: - type: Transform pos: -11.5,-20.5 parent: 1 - - uid: 183 + - uid: 190 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 184 + - uid: 191 components: - type: Transform pos: -6.5,10.5 parent: 1 - - uid: 185 + - uid: 192 components: - type: Transform pos: 13.5,-25.5 parent: 1 - - uid: 186 + - uid: 193 components: - type: Transform pos: 12.5,-25.5 parent: 1 - - uid: 187 + - uid: 194 components: - type: Transform pos: 8.5,-23.5 parent: 1 - - uid: 188 + - uid: 195 components: - type: Transform pos: 8.5,-24.5 parent: 1 - - uid: 189 + - uid: 196 components: - type: Transform pos: 7.5,-26.5 parent: 1 - - uid: 190 + - uid: 197 components: - type: Transform pos: 8.5,-26.5 parent: 1 - - uid: 191 + - uid: 198 components: - type: Transform pos: 7.5,-23.5 parent: 1 - - uid: 192 + - uid: 199 components: - type: Transform pos: 12.5,-20.5 parent: 1 - - uid: 193 + - uid: 200 components: - type: Transform pos: -0.5,9.5 parent: 1 - - uid: 194 + - uid: 201 components: - type: Transform pos: 7.5,-18.5 parent: 1 - - uid: 195 + - uid: 202 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 196 + - uid: 203 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 197 + - uid: 204 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 198 + - uid: 205 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 199 + - uid: 206 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 200 + - uid: 207 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 201 + - uid: 208 components: - type: Transform pos: -5.5,4.5 parent: 1 - - uid: 202 + - uid: 209 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 203 + - uid: 210 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 204 + - uid: 211 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 205 + - uid: 212 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 206 + - uid: 213 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 207 + - uid: 214 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 208 + - uid: 215 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 209 + - uid: 216 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 210 + - uid: 217 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 211 + - uid: 218 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 212 + - uid: 219 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 213 + - uid: 220 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 214 + - uid: 221 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 215 + - uid: 222 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 216 + - uid: 223 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 217 + - uid: 224 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 218 + - uid: 225 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 219 + - uid: 226 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 220 + - uid: 227 components: - type: Transform pos: -5.5,-14.5 parent: 1 - - uid: 221 + - uid: 228 components: - type: Transform pos: -5.5,-15.5 parent: 1 - - uid: 222 + - uid: 229 components: - type: Transform pos: -5.5,-16.5 parent: 1 - - uid: 223 + - uid: 230 components: - type: Transform pos: -5.5,-17.5 parent: 1 - - uid: 224 + - uid: 231 components: - type: Transform pos: -5.5,-18.5 parent: 1 - - uid: 225 + - uid: 232 components: - type: Transform pos: -5.5,-19.5 parent: 1 - - uid: 226 + - uid: 233 components: - type: Transform pos: -5.5,-20.5 parent: 1 - - uid: 227 + - uid: 234 components: - type: Transform pos: -5.5,-21.5 parent: 1 - - uid: 228 + - uid: 235 components: - type: Transform pos: -5.5,-22.5 parent: 1 - - uid: 229 + - uid: 236 components: - type: Transform pos: -5.5,-23.5 parent: 1 - - uid: 230 + - uid: 237 components: - type: Transform pos: -5.5,-24.5 parent: 1 - - uid: 231 + - uid: 238 components: - type: Transform pos: -5.5,-25.5 parent: 1 - - uid: 232 + - uid: 239 components: - type: Transform pos: -4.5,-25.5 parent: 1 - - uid: 233 + - uid: 240 components: - type: Transform pos: -3.5,-25.5 parent: 1 - - uid: 234 + - uid: 241 components: - type: Transform pos: -2.5,-25.5 parent: 1 - - uid: 235 + - uid: 242 components: - type: Transform pos: -5.5,-25.5 parent: 1 - - uid: 236 + - uid: 243 components: - type: Transform pos: -6.5,-25.5 parent: 1 - - uid: 237 + - uid: 244 components: - type: Transform pos: -7.5,-25.5 parent: 1 - - uid: 238 + - uid: 245 components: - type: Transform pos: -7.5,-24.5 parent: 1 - - uid: 239 + - uid: 246 components: - type: Transform pos: -6.5,-17.5 parent: 1 - - uid: 240 + - uid: 247 components: - type: Transform pos: -7.5,-17.5 parent: 1 - - uid: 241 + - uid: 248 components: - type: Transform pos: -6.5,-6.5 parent: 1 - - uid: 242 + - uid: 249 components: - type: Transform pos: -7.5,-6.5 parent: 1 - - uid: 243 + - uid: 250 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 244 + - uid: 251 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 245 + - uid: 252 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 246 + - uid: 253 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 247 + - uid: 254 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 248 + - uid: 255 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 249 + - uid: 256 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 250 + - uid: 257 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 251 + - uid: 258 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 252 + - uid: 259 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 253 + - uid: 260 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 254 + - uid: 261 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 255 + - uid: 262 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 256 + - uid: 263 components: - type: Transform pos: -1.5,7.5 parent: 1 - - uid: 257 + - uid: 264 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 258 + - uid: 265 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 259 + - uid: 266 components: - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 260 + - uid: 267 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 261 + - uid: 268 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 262 + - uid: 269 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 263 + - uid: 270 components: - type: Transform pos: 4.5,7.5 parent: 1 - - uid: 264 + - uid: 271 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 265 + - uid: 272 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 266 + - uid: 273 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 267 + - uid: 274 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 268 + - uid: 275 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 269 + - uid: 276 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 270 + - uid: 277 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 271 + - uid: 278 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 272 + - uid: 279 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 273 + - uid: 280 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 274 + - uid: 281 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 275 + - uid: 282 components: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 276 + - uid: 283 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 277 + - uid: 284 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 278 + - uid: 285 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 279 + - uid: 286 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 280 + - uid: 287 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 281 + - uid: 288 components: - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 282 + - uid: 289 components: - type: Transform pos: -0.5,-5.5 parent: 1 - - uid: 283 + - uid: 290 components: - type: Transform pos: -0.5,-6.5 parent: 1 - - uid: 284 + - uid: 291 components: - type: Transform pos: -0.5,-7.5 parent: 1 - - uid: 285 + - uid: 292 components: - type: Transform pos: -0.5,-8.5 parent: 1 - - uid: 286 + - uid: 293 components: - type: Transform pos: -0.5,-9.5 parent: 1 - - uid: 287 + - uid: 294 components: - type: Transform pos: -0.5,-10.5 parent: 1 - - uid: 288 + - uid: 295 components: - type: Transform pos: -0.5,-11.5 parent: 1 - - uid: 289 + - uid: 296 components: - type: Transform pos: -0.5,-12.5 parent: 1 - - uid: 290 + - uid: 297 components: - type: Transform pos: -0.5,-13.5 parent: 1 - - uid: 291 + - uid: 298 components: - type: Transform pos: -0.5,-14.5 parent: 1 - - uid: 292 + - uid: 299 components: - type: Transform pos: -0.5,-15.5 parent: 1 - - uid: 293 + - uid: 300 components: - type: Transform pos: -0.5,-16.5 parent: 1 - - uid: 294 + - uid: 301 components: - type: Transform pos: -0.5,-17.5 parent: 1 - - uid: 295 + - uid: 302 components: - type: Transform pos: -0.5,-18.5 parent: 1 - - uid: 296 + - uid: 303 components: - type: Transform pos: -0.5,-19.5 parent: 1 - - uid: 297 + - uid: 304 components: - type: Transform pos: -0.5,-20.5 parent: 1 - - uid: 298 + - uid: 305 components: - type: Transform pos: -0.5,-21.5 parent: 1 - - uid: 299 + - uid: 306 components: - type: Transform pos: -1.5,-22.5 parent: 1 - - uid: 300 + - uid: 307 components: - type: Transform pos: -2.5,-22.5 parent: 1 - - uid: 301 + - uid: 308 components: - type: Transform pos: -3.5,-22.5 parent: 1 - - uid: 302 + - uid: 309 components: - type: Transform pos: -4.5,-22.5 parent: 1 - - uid: 303 + - uid: 310 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - uid: 304 + - uid: 311 components: - type: Transform pos: 2.5,-19.5 parent: 1 - - uid: 305 + - uid: 312 components: - type: Transform pos: 3.5,-19.5 parent: 1 - - uid: 306 + - uid: 313 components: - type: Transform pos: 3.5,-20.5 parent: 1 - - uid: 307 + - uid: 314 components: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 308 + - uid: 315 components: - type: Transform pos: 0.5,-22.5 parent: 1 - - uid: 309 + - uid: 316 components: - type: Transform pos: 1.5,-22.5 parent: 1 - - uid: 310 + - uid: 317 components: - type: Transform pos: 2.5,-22.5 parent: 1 - - uid: 311 + - uid: 318 components: - type: Transform pos: 3.5,-22.5 parent: 1 - - uid: 312 + - uid: 319 components: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 313 + - uid: 320 components: - type: Transform pos: 1.5,-23.5 parent: 1 - - uid: 314 + - uid: 321 components: - type: Transform pos: 1.5,-24.5 parent: 1 - - uid: 315 + - uid: 322 components: - type: Transform pos: 0.5,-24.5 parent: 1 - - uid: 316 + - uid: 323 components: - type: Transform pos: 0.5,-25.5 parent: 1 - - uid: 317 + - uid: 324 components: - type: Transform pos: 0.5,-26.5 parent: 1 - - uid: 318 + - uid: 325 components: - type: Transform pos: 0.5,-27.5 parent: 1 - - uid: 319 + - uid: 326 components: - type: Transform pos: 0.5,-28.5 parent: 1 - - uid: 320 + - uid: 327 components: - type: Transform pos: 0.5,-29.5 parent: 1 - - uid: 321 + - uid: 328 components: - type: Transform pos: 0.5,-30.5 parent: 1 - - uid: 322 + - uid: 329 components: - type: Transform pos: 1.5,-30.5 parent: 1 - - uid: 323 + - uid: 330 components: - type: Transform pos: 2.5,-30.5 parent: 1 - - uid: 324 + - uid: 331 components: - type: Transform pos: 2.5,-29.5 parent: 1 - - uid: 325 + - uid: 332 components: - type: Transform pos: 3.5,-29.5 parent: 1 - - uid: 326 + - uid: 333 components: - type: Transform pos: 4.5,-29.5 parent: 1 - - uid: 327 + - uid: 334 components: - type: Transform pos: 5.5,-29.5 parent: 1 - - uid: 328 + - uid: 335 components: - type: Transform pos: 6.5,-29.5 parent: 1 - - uid: 329 + - uid: 336 components: - type: Transform pos: 7.5,-29.5 parent: 1 - - uid: 330 + - uid: 337 components: - type: Transform pos: -0.5,-27.5 parent: 1 - - uid: 331 + - uid: 338 components: - type: Transform pos: -1.5,-27.5 parent: 1 - - uid: 332 + - uid: 339 components: - type: Transform pos: -6.5,-9.5 parent: 1 - - uid: 333 + - uid: 340 components: - type: Transform pos: -7.5,-9.5 parent: 1 - - uid: 334 + - uid: 341 components: - type: Transform pos: -8.5,-9.5 parent: 1 - - uid: 335 + - uid: 342 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 336 + - uid: 343 components: - type: Transform pos: -8.5,-11.5 parent: 1 - - uid: 337 + - uid: 344 components: - type: Transform pos: -8.5,-12.5 parent: 1 - - uid: 338 + - uid: 345 components: - type: Transform pos: -8.5,-13.5 parent: 1 - - uid: 339 + - uid: 346 components: - type: Transform pos: -8.5,-14.5 parent: 1 - - uid: 340 + - uid: 347 components: - type: Transform pos: -8.5,-15.5 parent: 1 - - uid: 341 + - uid: 348 components: - type: Transform pos: -8.5,-16.5 parent: 1 - - uid: 342 + - uid: 349 components: - type: Transform pos: -8.5,-17.5 parent: 1 - - uid: 343 + - uid: 350 components: - type: Transform pos: -8.5,-18.5 parent: 1 - - uid: 344 + - uid: 351 components: - type: Transform pos: -9.5,-18.5 parent: 1 - - uid: 345 + - uid: 352 components: - type: Transform pos: -10.5,-18.5 parent: 1 - - uid: 346 + - uid: 353 components: - type: Transform pos: -11.5,-18.5 parent: 1 - - uid: 347 + - uid: 354 components: - type: Transform pos: -12.5,-18.5 parent: 1 - - uid: 348 + - uid: 355 components: - type: Transform pos: -12.5,-17.5 parent: 1 - - uid: 349 + - uid: 356 components: - type: Transform pos: -10.5,-19.5 parent: 1 - - uid: 350 + - uid: 357 components: - type: Transform pos: -10.5,-20.5 parent: 1 - - uid: 351 + - uid: 358 components: - type: Transform pos: -10.5,-21.5 parent: 1 - - uid: 352 + - uid: 359 components: - type: Transform pos: -10.5,-22.5 parent: 1 - - uid: 353 + - uid: 360 components: - type: Transform pos: -10.5,-23.5 parent: 1 - - uid: 354 + - uid: 361 components: - type: Transform pos: -10.5,-24.5 parent: 1 - - uid: 355 + - uid: 362 components: - type: Transform pos: -10.5,-25.5 parent: 1 - - uid: 356 + - uid: 363 components: - type: Transform pos: -10.5,-26.5 parent: 1 - - uid: 357 + - uid: 364 components: - type: Transform pos: -10.5,-27.5 parent: 1 - - uid: 358 + - uid: 365 components: - type: Transform pos: -9.5,-24.5 parent: 1 - - uid: 359 + - uid: 366 components: - type: Transform pos: -8.5,-24.5 parent: 1 - - uid: 360 + - uid: 367 components: - type: Transform pos: -7.5,-24.5 parent: 1 - - uid: 361 + - uid: 368 components: - type: Transform pos: -10.5,-24.5 parent: 1 - - uid: 362 + - uid: 369 components: - type: Transform pos: -12.5,-24.5 parent: 1 - - uid: 363 + - uid: 370 components: - type: Transform pos: -11.5,-24.5 parent: 1 - - uid: 364 + - uid: 371 components: - type: Transform pos: -9.5,-26.5 parent: 1 - - uid: 365 + - uid: 372 components: - type: Transform pos: -8.5,-26.5 parent: 1 - - uid: 366 + - uid: 373 components: - type: Transform pos: -7.5,-26.5 parent: 1 - - uid: 367 + - uid: 374 components: - type: Transform pos: -7.5,-27.5 parent: 1 - - uid: 368 + - uid: 375 components: - type: Transform pos: -7.5,-28.5 parent: 1 - - uid: 369 + - uid: 376 components: - type: Transform pos: -7.5,-29.5 parent: 1 - - uid: 370 + - uid: 377 components: - type: Transform pos: -7.5,-30.5 parent: 1 - - uid: 371 + - uid: 378 components: - type: Transform pos: -6.5,-30.5 parent: 1 - - uid: 372 + - uid: 379 components: - type: Transform pos: -5.5,-30.5 parent: 1 - - uid: 373 + - uid: 380 components: - type: Transform pos: -4.5,-30.5 parent: 1 - - uid: 374 + - uid: 381 components: - type: Transform pos: -3.5,-30.5 parent: 1 - - uid: 375 + - uid: 382 components: - type: Transform pos: -2.5,-30.5 parent: 1 - - uid: 376 + - uid: 383 components: - type: Transform pos: -1.5,-30.5 parent: 1 - - uid: 377 + - uid: 384 components: - type: Transform pos: -0.5,-30.5 parent: 1 - - uid: 378 + - uid: 385 components: - type: Transform pos: -3.5,-31.5 parent: 1 - - uid: 379 + - uid: 386 components: - type: Transform pos: -3.5,-32.5 parent: 1 - - uid: 380 + - uid: 387 components: - type: Transform pos: -4.5,-32.5 parent: 1 - - uid: 381 + - uid: 388 components: - type: Transform pos: -2.5,-32.5 parent: 1 - - uid: 382 + - uid: 389 components: - type: Transform pos: -1.5,-32.5 parent: 1 - - uid: 383 + - uid: 390 components: - type: Transform pos: -0.5,-32.5 parent: 1 - - uid: 384 + - uid: 391 components: - type: Transform pos: 0.5,-32.5 parent: 1 - - uid: 385 + - uid: 392 components: - type: Transform pos: 1.5,-32.5 parent: 1 - - uid: 386 + - uid: 393 components: - type: Transform pos: 2.5,-32.5 parent: 1 - - uid: 387 + - uid: 394 components: - type: Transform pos: 3.5,-32.5 parent: 1 - - uid: 388 + - uid: 395 components: - type: Transform pos: 4.5,-32.5 parent: 1 - - uid: 389 + - uid: 396 components: - type: Transform pos: 5.5,-32.5 parent: 1 - - uid: 390 + - uid: 397 components: - type: Transform pos: 6.5,-28.5 parent: 1 - - uid: 391 + - uid: 398 components: - type: Transform pos: 6.5,-27.5 parent: 1 - - uid: 392 + - uid: 399 components: - type: Transform pos: 6.5,-26.5 parent: 1 - - uid: 393 + - uid: 400 components: - type: Transform pos: 6.5,-25.5 parent: 1 - - uid: 394 + - uid: 401 components: - type: Transform pos: 6.5,-24.5 parent: 1 - - uid: 395 + - uid: 402 components: - type: Transform pos: 6.5,-23.5 parent: 1 - - uid: 396 + - uid: 403 components: - type: Transform pos: 6.5,-22.5 parent: 1 - - uid: 397 + - uid: 404 components: - type: Transform pos: 6.5,-21.5 parent: 1 - - uid: 398 + - uid: 405 components: - type: Transform pos: 6.5,-20.5 parent: 1 - - uid: 399 + - uid: 406 components: - type: Transform pos: 6.5,-19.5 parent: 1 - - uid: 400 + - uid: 407 components: - type: Transform pos: 5.5,-19.5 parent: 1 - - uid: 401 + - uid: 408 components: - type: Transform pos: 4.5,-19.5 parent: 1 - - uid: 402 + - uid: 409 components: - type: Transform pos: 7.5,-21.5 parent: 1 - - uid: 403 + - uid: 410 components: - type: Transform pos: 8.5,-21.5 parent: 1 - - uid: 404 + - uid: 411 components: - type: Transform pos: 9.5,-21.5 parent: 1 - - uid: 405 + - uid: 412 components: - type: Transform pos: 10.5,-21.5 parent: 1 - - uid: 406 + - uid: 413 components: - type: Transform pos: 11.5,-21.5 parent: 1 - - uid: 407 + - uid: 414 components: - type: Transform pos: 11.5,-22.5 parent: 1 - - uid: 408 + - uid: 415 components: - type: Transform pos: 11.5,-23.5 parent: 1 - - uid: 409 + - uid: 416 components: - type: Transform pos: 6.5,-18.5 parent: 1 - - uid: 410 + - uid: 417 components: - type: Transform pos: 1.5,-21.5 parent: 1 - - uid: 411 + - uid: 418 components: - type: Transform pos: 1.5,-20.5 parent: 1 - - uid: 412 + - uid: 419 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 413 + - uid: 420 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 414 + - uid: 421 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 415 + - uid: 422 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 416 + - uid: 423 components: - type: Transform pos: 5.5,-3.5 parent: 1 - - uid: 417 + - uid: 424 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 418 + - uid: 425 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 419 + - uid: 426 components: - type: Transform pos: 8.5,-3.5 parent: 1 - - uid: 420 + - uid: 427 components: - type: Transform pos: 8.5,-3.5 parent: 1 - - uid: 421 + - uid: 428 components: - type: Transform pos: 8.5,-1.5 parent: 1 - - uid: 422 + - uid: 429 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 423 + - uid: 430 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 424 + - uid: 431 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 425 + - uid: 432 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 426 + - uid: 433 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 427 + - uid: 434 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 428 + - uid: 435 components: - type: Transform pos: 4.5,9.5 parent: 1 - - uid: 429 + - uid: 436 components: - type: Transform pos: 4.5,10.5 parent: 1 - - uid: 430 + - uid: 437 components: - type: Transform pos: 4.5,11.5 parent: 1 - - uid: 431 + - uid: 438 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 432 + - uid: 439 components: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 433 + - uid: 440 components: - type: Transform pos: 2.5,10.5 parent: 1 - - uid: 434 + - uid: 441 components: - type: Transform pos: 2.5,11.5 parent: 1 - - uid: 435 + - uid: 442 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 436 + - uid: 443 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 437 + - uid: 444 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 438 + - uid: 445 components: - type: Transform pos: 5.5,7.5 parent: 1 - - uid: 439 + - uid: 446 components: - type: Transform pos: 6.5,7.5 parent: 1 - - uid: 440 + - uid: 447 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 441 + - uid: 448 components: - type: Transform pos: 6.5,9.5 parent: 1 - - uid: 442 + - uid: 449 components: - type: Transform pos: 6.5,10.5 parent: 1 - - uid: 443 + - uid: 450 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 444 + - uid: 451 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 445 + - uid: 452 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 446 + - uid: 453 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 447 + - uid: 454 components: - type: Transform pos: -3.5,5.5 parent: 1 - - uid: 448 + - uid: 455 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 449 + - uid: 456 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 450 + - uid: 457 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 451 + - uid: 458 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 452 + - uid: 459 components: - type: Transform pos: -4.5,-6.5 parent: 1 - - uid: 453 + - uid: 460 components: - type: Transform pos: -3.5,-6.5 parent: 1 - - uid: 454 + - uid: 461 components: - type: Transform pos: -2.5,-6.5 parent: 1 - - uid: 455 + - uid: 462 components: - type: Transform pos: -1.5,-6.5 parent: 1 - - uid: 456 + - uid: 463 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 457 + - uid: 464 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 458 + - uid: 465 components: - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 459 + - uid: 466 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 460 + - uid: 467 components: - type: Transform pos: -1.5,-13.5 parent: 1 - - uid: 461 + - uid: 468 components: - type: Transform pos: -6.5,-13.5 parent: 1 - - uid: 462 + - uid: 469 components: - type: Transform pos: -7.5,-13.5 parent: 1 - - uid: 463 + - uid: 470 components: - type: Transform pos: -8.5,-13.5 parent: 1 - - uid: 464 + - uid: 471 components: - type: Transform pos: -8.5,-12.5 parent: 1 - - uid: 465 + - uid: 472 components: - type: Transform pos: -8.5,-11.5 parent: 1 - - uid: 466 + - uid: 473 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 467 + - uid: 474 components: - type: Transform pos: -8.5,-14.5 parent: 1 - - uid: 468 + - uid: 475 components: - type: Transform pos: -8.5,-15.5 parent: 1 - - uid: 469 + - uid: 476 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 470 + - uid: 477 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 471 + - uid: 478 components: - type: Transform pos: -7.5,5.5 parent: 1 - - uid: 472 + - uid: 479 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 473 + - uid: 480 components: - type: Transform pos: -7.5,3.5 parent: 1 - - uid: 474 + - uid: 481 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 475 + - uid: 482 components: - type: Transform pos: -7.5,6.5 parent: 1 - - uid: 476 + - uid: 483 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 477 + - uid: 484 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 478 + - uid: 485 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 479 + - uid: 486 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 480 + - uid: 487 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 481 + - uid: 488 components: - type: Transform pos: -4.5,12.5 parent: 1 - - uid: 482 + - uid: 489 components: - type: Transform pos: -5.5,12.5 parent: 1 - - uid: 483 + - uid: 490 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 484 + - uid: 491 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 485 + - uid: 492 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 486 + - uid: 493 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 487 + - uid: 494 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 488 + - uid: 495 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 489 + - uid: 496 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 490 + - uid: 497 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 491 + - uid: 498 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 492 + - uid: 499 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 493 + - uid: 500 components: - type: Transform pos: 8.5,-18.5 parent: 1 - - uid: 494 + - uid: 501 components: - type: Transform pos: 9.5,-18.5 parent: 1 - - uid: 495 + - uid: 502 components: - type: Transform pos: 10.5,-18.5 parent: 1 - - uid: 496 + - uid: 503 components: - type: Transform pos: 8.5,-2.5 parent: 1 - - uid: 497 + - uid: 504 components: - type: Transform pos: 12.5,-24.5 parent: 1 - - uid: 498 + - uid: 505 components: - type: Transform pos: 1.5,-25.5 parent: 1 - - uid: 499 + - uid: 506 components: - type: Transform pos: 2.5,-25.5 parent: 1 - - uid: 500 + - uid: 507 components: - type: Transform pos: 3.5,-25.5 parent: 1 - - uid: 501 + - uid: 508 components: - type: Transform pos: 4.5,-25.5 parent: 1 - - uid: 502 + - uid: 509 components: - type: Transform pos: 5.5,-25.5 parent: 1 - - uid: 503 + - uid: 510 components: - type: Transform pos: 7.5,-25.5 parent: 1 - - uid: 504 + - uid: 511 components: - type: Transform pos: 8.5,-25.5 parent: 1 - - uid: 505 + - uid: 512 components: - type: Transform pos: 9.5,-25.5 parent: 1 - - uid: 506 + - uid: 513 components: - type: Transform pos: 9.5,-24.5 parent: 1 - - uid: 507 + - uid: 514 components: - type: Transform pos: 9.5,-23.5 parent: 1 - - uid: 508 + - uid: 515 components: - type: Transform pos: 9.5,-22.5 parent: 1 - - uid: 509 + - uid: 516 components: - type: Transform pos: 5.5,-21.5 parent: 1 - - uid: 510 + - uid: 517 components: - type: Transform pos: 4.5,-21.5 parent: 1 - - uid: 511 + - uid: 518 components: - type: Transform pos: 1.5,-17.5 parent: 1 - - uid: 512 + - uid: 519 components: - type: Transform pos: 1.5,-16.5 parent: 1 - - uid: 513 + - uid: 520 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 514 + - uid: 521 components: - type: Transform pos: 1.5,-14.5 parent: 1 - - uid: 515 + - uid: 522 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 516 + - uid: 523 components: - type: Transform pos: 1.5,-12.5 parent: 1 - - uid: 517 + - uid: 524 components: - type: Transform pos: 1.5,-11.5 parent: 1 - - uid: 518 + - uid: 525 components: - type: Transform pos: 1.5,-10.5 parent: 1 - - uid: 519 + - uid: 526 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 520 + - uid: 527 components: - type: Transform pos: 1.5,-8.5 parent: 1 - - uid: 521 + - uid: 528 components: - type: Transform pos: 1.5,-7.5 parent: 1 - - uid: 522 + - uid: 529 components: - type: Transform pos: 1.5,-6.5 parent: 1 - - uid: 523 + - uid: 530 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 524 + - uid: 531 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 525 + - uid: 532 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 526 + - uid: 533 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 527 + - uid: 534 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 528 + - uid: 535 components: - type: Transform pos: 7.5,9.5 parent: 1 - - uid: 529 + - uid: 536 components: - type: Transform pos: 7.5,10.5 parent: 1 - - uid: 530 + - uid: 537 components: - type: Transform pos: 7.5,12.5 parent: 1 - - uid: 531 + - uid: 538 components: - type: Transform pos: 6.5,-31.5 parent: 1 - - uid: 532 + - uid: 539 components: - type: Transform pos: -4.5,-29.5 parent: 1 - - uid: 533 + - uid: 540 components: - type: Transform pos: -4.5,-28.5 parent: 1 - - uid: 534 + - uid: 541 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 535 + - uid: 542 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 536 + - uid: 543 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 537 + - uid: 544 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 538 + - uid: 545 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 539 + - uid: 546 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 540 + - uid: 547 components: - type: Transform pos: 5.5,14.5 parent: 1 - - uid: 541 + - uid: 548 components: - type: Transform pos: 5.5,15.5 parent: 1 - - uid: 542 + - uid: 549 components: - type: Transform pos: 5.5,16.5 parent: 1 - - uid: 543 + - uid: 550 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 544 + - uid: 551 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 545 + - uid: 552 components: - type: Transform pos: 5.5,-31.5 parent: 1 - - uid: 546 + - uid: 553 components: - type: Transform pos: 3.5,-31.5 parent: 1 - - uid: 547 + - uid: 554 components: - type: Transform pos: 4.5,-31.5 parent: 1 - - uid: 548 + - uid: 555 components: - type: Transform pos: 7.5,-31.5 parent: 1 - - uid: 549 + - uid: 556 components: - type: Transform pos: -6.5,-31.5 parent: 1 - - uid: 550 + - uid: 557 components: - type: Transform pos: -10.5,-20.5 parent: 1 - - uid: 551 + - uid: 558 components: - type: Transform pos: 2.5,-31.5 parent: 1 - - uid: 552 + - uid: 559 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 553 - components: - - type: Transform - pos: 8.5,6.5 - parent: 1 - - uid: 554 + - uid: 560 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 555 + - uid: 561 components: - type: Transform pos: 8.5,0.5 parent: 1 - - uid: 556 + - uid: 562 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 557 + - uid: 563 components: - type: Transform pos: 9.5,0.5 parent: 1 - - uid: 558 + - uid: 564 components: - type: Transform pos: 9.5,-3.5 parent: 1 - - uid: 559 + - uid: 565 components: - type: Transform pos: 10.5,-3.5 parent: 1 - - uid: 560 + - uid: 566 components: - type: Transform pos: 11.5,-20.5 parent: 1 - - uid: 561 + - uid: 567 components: - type: Transform pos: -9.5,-8.5 parent: 1 - - uid: 562 + - uid: 568 components: - type: Transform pos: -8.5,-8.5 parent: 1 - - uid: 563 + - uid: 569 components: - type: Transform pos: -8.5,-9.5 parent: 1 - - uid: 564 + - uid: 570 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 565 + - uid: 571 components: - type: Transform pos: -9.5,-10.5 parent: 1 - - uid: 566 + - uid: 572 components: - type: Transform pos: -9.5,-7.5 parent: 1 - - uid: 567 + - uid: 573 components: - type: Transform pos: -9.5,-6.5 parent: 1 - - uid: 568 + - uid: 574 components: - type: Transform pos: -9.5,-5.5 parent: 1 - - uid: 569 + - uid: 575 components: - type: Transform pos: -9.5,-4.5 parent: 1 - - uid: 570 + - uid: 576 components: - type: Transform pos: -5.5,10.5 parent: 1 - - uid: 571 + - uid: 577 components: - type: Transform pos: 2.5,15.5 parent: 1 - - uid: 572 + - uid: 578 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 573 + - uid: 579 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 574 - components: - - type: Transform - pos: 2.5,12.5 - parent: 1 - - uid: 575 - components: - - type: Transform - pos: 6.5,12.5 - parent: 1 - - uid: 576 - components: - - type: Transform - pos: 6.5,13.5 - parent: 1 - - uid: 577 - components: - - type: Transform - pos: 6.5,14.5 - parent: 1 - - uid: 578 - components: - - type: Transform - pos: 6.5,15.5 - parent: 1 -- proto: CableHV - entities: - - uid: 579 - components: - - type: Transform - pos: -6.5,-29.5 - parent: 1 - uid: 580 components: - type: Transform - pos: -6.5,-28.5 + pos: 2.5,12.5 parent: 1 - uid: 581 components: - type: Transform - pos: -5.5,-29.5 + pos: 6.5,12.5 parent: 1 - uid: 582 components: - type: Transform - pos: -4.5,-29.5 + pos: 6.5,13.5 parent: 1 - uid: 583 components: - type: Transform - pos: -3.5,-29.5 + pos: 6.5,14.5 parent: 1 - uid: 584 components: - type: Transform - pos: -3.5,-30.5 + pos: 6.5,15.5 parent: 1 - uid: 585 components: - type: Transform - pos: -2.5,-30.5 + pos: 7.5,0.5 parent: 1 - uid: 586 components: - type: Transform - pos: -1.5,-30.5 + pos: 7.5,1.5 parent: 1 - uid: 587 components: - type: Transform - pos: -0.5,-30.5 + pos: 9.5,5.5 parent: 1 - uid: 588 components: - type: Transform - pos: 0.5,-30.5 + pos: 9.5,3.5 parent: 1 - uid: 589 components: - type: Transform - pos: 1.5,-30.5 + pos: -2.5,-1.5 parent: 1 - uid: 590 components: - type: Transform - pos: 2.5,-30.5 + pos: -2.5,-1.5 parent: 1 - uid: 591 components: - type: Transform - pos: 3.5,-30.5 + pos: 10.5,-2.5 parent: 1 - uid: 592 components: - type: Transform - pos: 4.5,-30.5 + pos: 7.5,-0.5 parent: 1 - uid: 593 components: - type: Transform - pos: 4.5,-29.5 + pos: -1.5,-1.5 parent: 1 - uid: 594 components: - type: Transform - pos: 5.5,-29.5 + pos: 1.5,-1.5 parent: 1 - uid: 595 components: - type: Transform - pos: 6.5,-29.5 + pos: 8.5,4.5 parent: 1 - uid: 596 components: - type: Transform - pos: 7.5,-29.5 + pos: 10.5,-4.5 parent: 1 - uid: 597 components: - type: Transform - pos: 7.5,-28.5 + pos: 9.5,4.5 parent: 1 +- proto: CableHV + entities: - uid: 598 components: - type: Transform - pos: 0.5,-29.5 + pos: -6.5,-29.5 parent: 1 - uid: 599 components: - type: Transform - pos: 0.5,-28.5 + pos: -6.5,-28.5 parent: 1 - uid: 600 components: - type: Transform - pos: 0.5,-27.5 + pos: -5.5,-29.5 parent: 1 - uid: 601 components: - type: Transform - pos: 0.5,-26.5 + pos: -4.5,-29.5 parent: 1 - uid: 602 components: - type: Transform - pos: 0.5,-25.5 + pos: -3.5,-29.5 parent: 1 - uid: 603 components: - type: Transform - pos: -0.5,-25.5 + pos: -3.5,-30.5 parent: 1 - uid: 604 components: - type: Transform - pos: -1.5,-25.5 + pos: -2.5,-30.5 parent: 1 - uid: 605 components: - type: Transform - pos: -1.5,-24.5 + pos: -1.5,-30.5 parent: 1 - uid: 606 components: - type: Transform - pos: -1.5,-26.5 + pos: -0.5,-30.5 parent: 1 - uid: 607 components: - type: Transform - pos: -6.5,-30.5 + pos: 0.5,-30.5 parent: 1 - uid: 608 components: - type: Transform - pos: -5.5,-28.5 + pos: 1.5,-30.5 parent: 1 -- proto: CableMV - entities: - uid: 609 components: - type: Transform - pos: 7.5,-29.5 + pos: 2.5,-30.5 parent: 1 - uid: 610 components: - type: Transform - pos: 6.5,-29.5 + pos: 3.5,-30.5 parent: 1 - uid: 611 components: - type: Transform - pos: 5.5,-29.5 + pos: 4.5,-30.5 parent: 1 - uid: 612 components: @@ -7174,1444 +7954,1559 @@ entities: - uid: 613 components: - type: Transform - pos: 3.5,-29.5 + pos: 5.5,-29.5 parent: 1 - uid: 614 components: - type: Transform - pos: 2.5,-29.5 + pos: 6.5,-29.5 parent: 1 - uid: 615 components: - type: Transform - pos: 2.5,-30.5 + pos: 7.5,-29.5 parent: 1 - uid: 616 components: - type: Transform - pos: 1.5,-30.5 + pos: 7.5,-28.5 parent: 1 - uid: 617 components: - type: Transform - pos: 0.5,-30.5 + pos: 0.5,-29.5 parent: 1 - uid: 618 components: - type: Transform - pos: 0.5,-29.5 + pos: 0.5,-28.5 parent: 1 - uid: 619 components: - type: Transform - pos: 0.5,-28.5 + pos: 0.5,-27.5 parent: 1 - uid: 620 components: - type: Transform - pos: 0.5,-27.5 + pos: 0.5,-26.5 parent: 1 - uid: 621 components: - type: Transform - pos: 0.5,-26.5 + pos: 0.5,-25.5 parent: 1 - uid: 622 components: - type: Transform - pos: 0.5,-25.5 + pos: -0.5,-25.5 parent: 1 - uid: 623 components: - type: Transform - pos: 0.5,-24.5 + pos: -1.5,-25.5 parent: 1 - uid: 624 components: - type: Transform - pos: 1.5,-24.5 + pos: -1.5,-24.5 parent: 1 - uid: 625 components: - type: Transform - pos: 1.5,-23.5 + pos: -1.5,-26.5 parent: 1 - uid: 626 components: - type: Transform - pos: 1.5,-22.5 + pos: -6.5,-30.5 parent: 1 - uid: 627 components: - type: Transform - pos: 0.5,-22.5 + pos: -5.5,-28.5 parent: 1 +- proto: CableMV + entities: - uid: 628 components: - type: Transform - pos: -0.5,-22.5 + pos: 7.5,-29.5 parent: 1 - uid: 629 components: - type: Transform - pos: -1.5,-22.5 + pos: 6.5,-29.5 parent: 1 - uid: 630 components: - type: Transform - pos: -0.5,-21.5 + pos: 5.5,-29.5 parent: 1 - uid: 631 components: - type: Transform - pos: 2.5,-22.5 + pos: 4.5,-29.5 parent: 1 - uid: 632 components: - type: Transform - pos: 3.5,-22.5 + pos: 3.5,-29.5 parent: 1 - uid: 633 components: - type: Transform - pos: 3.5,-21.5 + pos: 2.5,-29.5 parent: 1 - uid: 634 components: - type: Transform - pos: -0.5,-27.5 + pos: 2.5,-30.5 parent: 1 - uid: 635 components: - type: Transform - pos: -1.5,-27.5 + pos: 1.5,-30.5 parent: 1 - uid: 636 components: - type: Transform - pos: -0.5,-25.5 + pos: 0.5,-30.5 parent: 1 - uid: 637 components: - type: Transform - pos: -1.5,-25.5 + pos: 0.5,-29.5 parent: 1 - uid: 638 components: - type: Transform - pos: -2.5,-25.5 + pos: 0.5,-28.5 parent: 1 - uid: 639 components: - type: Transform - pos: -3.5,-25.5 + pos: 0.5,-27.5 parent: 1 - uid: 640 components: - type: Transform - pos: -4.5,-25.5 + pos: 0.5,-26.5 parent: 1 - uid: 641 components: - type: Transform - pos: -5.5,-25.5 + pos: 0.5,-25.5 parent: 1 - uid: 642 components: - type: Transform - pos: -6.5,-25.5 + pos: 0.5,-24.5 parent: 1 - uid: 643 components: - type: Transform - pos: -7.5,-25.5 + pos: 1.5,-24.5 parent: 1 - uid: 644 components: - type: Transform - pos: -7.5,-24.5 + pos: 1.5,-23.5 parent: 1 - uid: 645 components: - type: Transform - pos: -5.5,-24.5 + pos: 1.5,-22.5 parent: 1 - uid: 646 components: - type: Transform - pos: -5.5,-23.5 + pos: 0.5,-22.5 parent: 1 - uid: 647 components: - type: Transform - pos: -5.5,-22.5 + pos: -0.5,-22.5 parent: 1 - uid: 648 components: - type: Transform - pos: -5.5,-21.5 + pos: -1.5,-22.5 parent: 1 - uid: 649 components: - type: Transform - pos: -5.5,-20.5 + pos: -0.5,-21.5 parent: 1 - uid: 650 components: - type: Transform - pos: -5.5,-19.5 + pos: 2.5,-22.5 parent: 1 - uid: 651 components: - type: Transform - pos: -5.5,-18.5 + pos: 3.5,-22.5 parent: 1 - uid: 652 components: - type: Transform - pos: -5.5,-17.5 + pos: 3.5,-21.5 parent: 1 - uid: 653 components: - type: Transform - pos: -6.5,-17.5 + pos: -0.5,-27.5 parent: 1 - uid: 654 components: - type: Transform - pos: -7.5,-17.5 + pos: -1.5,-27.5 parent: 1 - uid: 655 components: - type: Transform - pos: -5.5,-16.5 + pos: -0.5,-25.5 parent: 1 - uid: 656 components: - type: Transform - pos: -5.5,-15.5 + pos: -1.5,-25.5 parent: 1 - uid: 657 components: - type: Transform - pos: -5.5,-14.5 + pos: -2.5,-25.5 parent: 1 - uid: 658 components: - type: Transform - pos: -5.5,-13.5 + pos: -3.5,-25.5 parent: 1 - uid: 659 components: - type: Transform - pos: -5.5,-12.5 + pos: -4.5,-25.5 parent: 1 - uid: 660 components: - type: Transform - pos: -5.5,-11.5 + pos: -5.5,-25.5 parent: 1 - uid: 661 components: - type: Transform - pos: -5.5,-10.5 + pos: -6.5,-25.5 parent: 1 - uid: 662 components: - type: Transform - pos: -5.5,-9.5 + pos: -7.5,-25.5 parent: 1 - uid: 663 components: - type: Transform - pos: -5.5,-8.5 + pos: -7.5,-24.5 parent: 1 - uid: 664 components: - type: Transform - pos: -5.5,-7.5 + pos: -5.5,-24.5 parent: 1 - uid: 665 components: - type: Transform - pos: -5.5,-6.5 + pos: -5.5,-23.5 parent: 1 - uid: 666 components: - type: Transform - pos: -6.5,-6.5 + pos: -5.5,-22.5 parent: 1 - uid: 667 components: - type: Transform - pos: -7.5,-6.5 + pos: -5.5,-21.5 parent: 1 - uid: 668 components: - type: Transform - pos: -5.5,-5.5 + pos: -5.5,-20.5 parent: 1 - uid: 669 components: - type: Transform - pos: -5.5,-4.5 + pos: -5.5,-19.5 parent: 1 - uid: 670 components: - type: Transform - pos: -5.5,-3.5 + pos: -5.5,-18.5 parent: 1 - uid: 671 components: - type: Transform - pos: -5.5,-2.5 + pos: -5.5,-17.5 parent: 1 - uid: 672 components: - type: Transform - pos: -5.5,-1.5 + pos: -6.5,-17.5 parent: 1 - uid: 673 components: - type: Transform - pos: -4.5,-1.5 + pos: -7.5,-17.5 parent: 1 - uid: 674 components: - type: Transform - pos: -3.5,-1.5 + pos: -5.5,-16.5 parent: 1 - uid: 675 components: - type: Transform - pos: -2.5,-1.5 + pos: -5.5,-15.5 parent: 1 - uid: 676 components: - type: Transform - pos: -5.5,-0.5 + pos: -5.5,-14.5 parent: 1 - uid: 677 components: - type: Transform - pos: -5.5,0.5 + pos: -5.5,-13.5 parent: 1 - uid: 678 components: - type: Transform - pos: -5.5,1.5 + pos: -5.5,-12.5 parent: 1 - uid: 679 components: - type: Transform - pos: -5.5,2.5 + pos: -5.5,-11.5 parent: 1 - uid: 680 components: - type: Transform - pos: -5.5,3.5 + pos: -5.5,-10.5 parent: 1 - uid: 681 components: - type: Transform - pos: -5.5,4.5 + pos: -5.5,-9.5 parent: 1 - uid: 682 components: - type: Transform - pos: -5.5,5.5 + pos: -5.5,-8.5 parent: 1 - uid: 683 components: - type: Transform - pos: -5.5,6.5 + pos: -5.5,-7.5 parent: 1 - uid: 684 components: - type: Transform - pos: -5.5,7.5 + pos: -5.5,-6.5 parent: 1 - uid: 685 components: - type: Transform - pos: -4.5,7.5 + pos: -6.5,-6.5 parent: 1 - uid: 686 components: - type: Transform - pos: -3.5,7.5 + pos: -7.5,-6.5 parent: 1 - uid: 687 components: - type: Transform - pos: -3.5,6.5 + pos: -5.5,-5.5 parent: 1 - uid: 688 components: - type: Transform - pos: -2.5,7.5 + pos: -5.5,-4.5 parent: 1 - uid: 689 components: - type: Transform - pos: -1.5,7.5 + pos: -5.5,-3.5 parent: 1 - uid: 690 components: - type: Transform - pos: -0.5,7.5 + pos: -5.5,-2.5 parent: 1 - uid: 691 components: - type: Transform - pos: -0.5,6.5 + pos: -5.5,-1.5 parent: 1 - uid: 692 components: - type: Transform - pos: -0.5,5.5 + pos: -4.5,-1.5 parent: 1 - uid: 693 components: - type: Transform - pos: -0.5,4.5 + pos: -3.5,-1.5 parent: 1 - uid: 694 components: - type: Transform - pos: -0.5,3.5 + pos: -2.5,-1.5 parent: 1 - uid: 695 components: - type: Transform - pos: -0.5,2.5 + pos: -5.5,-0.5 parent: 1 - uid: 696 components: - type: Transform - pos: -0.5,1.5 + pos: -5.5,0.5 parent: 1 - uid: 697 components: - type: Transform - pos: -0.5,0.5 + pos: -5.5,1.5 parent: 1 - uid: 698 components: - type: Transform - pos: -0.5,-0.5 + pos: -5.5,2.5 parent: 1 - uid: 699 components: - type: Transform - pos: -0.5,-1.5 + pos: -5.5,3.5 parent: 1 - uid: 700 components: - type: Transform - pos: -0.5,-2.5 + pos: -5.5,4.5 parent: 1 - uid: 701 components: - type: Transform - pos: -0.5,-3.5 + pos: -5.5,5.5 parent: 1 - uid: 702 components: - type: Transform - pos: -0.5,-4.5 + pos: -5.5,6.5 parent: 1 - uid: 703 components: - type: Transform - pos: -0.5,-5.5 + pos: -5.5,7.5 parent: 1 - uid: 704 components: - type: Transform - pos: -0.5,-6.5 + pos: -4.5,7.5 parent: 1 - uid: 705 components: - type: Transform - pos: -0.5,-7.5 + pos: -3.5,7.5 parent: 1 - uid: 706 components: - type: Transform - pos: -0.5,-8.5 + pos: -3.5,6.5 parent: 1 - uid: 707 components: - type: Transform - pos: -0.5,-9.5 + pos: -2.5,7.5 parent: 1 - uid: 708 components: - type: Transform - pos: -0.5,-10.5 + pos: -1.5,7.5 parent: 1 - uid: 709 components: - type: Transform - pos: -0.5,-11.5 + pos: -0.5,7.5 parent: 1 - uid: 710 components: - type: Transform - pos: -0.5,-12.5 + pos: -0.5,6.5 parent: 1 - uid: 711 components: - type: Transform - pos: -0.5,-13.5 + pos: -0.5,5.5 parent: 1 - uid: 712 components: - type: Transform - pos: -0.5,-14.5 + pos: -0.5,4.5 parent: 1 - uid: 713 components: - type: Transform - pos: -0.5,-15.5 + pos: -0.5,3.5 parent: 1 - uid: 714 components: - type: Transform - pos: -0.5,-16.5 + pos: -0.5,2.5 parent: 1 - uid: 715 components: - type: Transform - pos: -0.5,-17.5 + pos: -0.5,1.5 parent: 1 - uid: 716 components: - type: Transform - pos: -0.5,-18.5 + pos: -0.5,0.5 parent: 1 - uid: 717 components: - type: Transform - pos: -0.5,-19.5 + pos: -0.5,-0.5 parent: 1 - uid: 718 components: - type: Transform - pos: -0.5,-20.5 + pos: -0.5,-1.5 parent: 1 - uid: 719 components: - type: Transform - pos: -0.5,-21.5 + pos: -0.5,-2.5 parent: 1 - uid: 720 components: - type: Transform - pos: -2.5,-22.5 + pos: -0.5,-3.5 parent: 1 - uid: 721 components: - type: Transform - pos: -3.5,-22.5 + pos: -0.5,-4.5 parent: 1 - uid: 722 components: - type: Transform - pos: -4.5,-22.5 + pos: -0.5,-5.5 parent: 1 - uid: 723 components: - type: Transform - pos: 0.5,-19.5 + pos: -0.5,-6.5 parent: 1 - uid: 724 components: - type: Transform - pos: 1.5,-19.5 + pos: -0.5,-7.5 parent: 1 - uid: 725 components: - type: Transform - pos: 2.5,-19.5 + pos: -0.5,-8.5 parent: 1 - uid: 726 components: - type: Transform - pos: 3.5,-19.5 + pos: -0.5,-9.5 parent: 1 - uid: 727 components: - type: Transform - pos: 3.5,-20.5 + pos: -0.5,-10.5 parent: 1 - uid: 728 components: - type: Transform - pos: 3.5,-21.5 + pos: -0.5,-11.5 parent: 1 - uid: 729 components: - type: Transform - pos: 0.5,-1.5 + pos: -0.5,-12.5 parent: 1 - uid: 730 components: - type: Transform - pos: 1.5,-1.5 + pos: -0.5,-13.5 parent: 1 - uid: 731 components: - type: Transform - pos: 2.5,-1.5 + pos: -0.5,-14.5 parent: 1 - uid: 732 components: - type: Transform - pos: 3.5,-1.5 + pos: -0.5,-15.5 parent: 1 - uid: 733 components: - type: Transform - pos: 4.5,-1.5 + pos: -0.5,-16.5 parent: 1 - uid: 734 components: - type: Transform - pos: 5.5,-1.5 + pos: -0.5,-17.5 parent: 1 - uid: 735 components: - type: Transform - pos: 6.5,-1.5 + pos: -0.5,-18.5 parent: 1 - uid: 736 components: - type: Transform - pos: 7.5,-1.5 + pos: -0.5,-19.5 parent: 1 - uid: 737 components: - type: Transform - pos: 4.5,-0.5 + pos: -0.5,-20.5 parent: 1 - uid: 738 components: - type: Transform - pos: 4.5,0.5 + pos: -0.5,-21.5 parent: 1 - uid: 739 components: - type: Transform - pos: 4.5,1.5 + pos: -2.5,-22.5 parent: 1 - uid: 740 components: - type: Transform - pos: 4.5,2.5 + pos: -3.5,-22.5 parent: 1 - uid: 741 components: - type: Transform - pos: 4.5,3.5 + pos: -4.5,-22.5 parent: 1 - uid: 742 components: - type: Transform - pos: 4.5,4.5 + pos: 0.5,-19.5 parent: 1 - uid: 743 components: - type: Transform - pos: 4.5,5.5 + pos: 1.5,-19.5 parent: 1 - uid: 744 components: - type: Transform - pos: 4.5,6.5 + pos: 2.5,-19.5 parent: 1 - uid: 745 components: - type: Transform - pos: 4.5,7.5 + pos: 3.5,-19.5 parent: 1 - uid: 746 components: - type: Transform - pos: 3.5,7.5 + pos: 3.5,-20.5 parent: 1 - uid: 747 components: - type: Transform - pos: 2.5,7.5 + pos: 3.5,-21.5 parent: 1 - uid: 748 components: - type: Transform - pos: 1.5,7.5 + pos: 0.5,-1.5 parent: 1 - uid: 749 components: - type: Transform - pos: -6.5,-29.5 + pos: 1.5,-1.5 parent: 1 - uid: 750 components: - type: Transform - pos: -5.5,-29.5 + pos: 2.5,-1.5 parent: 1 - uid: 751 components: - type: Transform - pos: -4.5,-29.5 + pos: 3.5,-1.5 parent: 1 - uid: 752 components: - type: Transform - pos: -3.5,-29.5 + pos: 4.5,-1.5 parent: 1 - uid: 753 components: - type: Transform - pos: -3.5,-30.5 + pos: 5.5,-1.5 parent: 1 - uid: 754 components: - type: Transform - pos: -2.5,-30.5 + pos: 6.5,-1.5 parent: 1 - uid: 755 components: - type: Transform - pos: -1.5,-30.5 + pos: 7.5,-1.5 parent: 1 - uid: 756 components: - type: Transform - pos: -0.5,-30.5 + pos: 4.5,-0.5 parent: 1 -- proto: CableTerminal - entities: - uid: 757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-28.5 + pos: 4.5,0.5 parent: 1 -- proto: CarpetBlack - entities: - uid: 758 components: - type: Transform - pos: -8.5,-25.5 + pos: 4.5,1.5 parent: 1 - uid: 759 components: - type: Transform - pos: -8.5,-24.5 + pos: 4.5,2.5 parent: 1 - uid: 760 components: - type: Transform - pos: -8.5,-23.5 + pos: 4.5,3.5 parent: 1 - uid: 761 components: - type: Transform - pos: -9.5,-25.5 + pos: 4.5,4.5 parent: 1 - uid: 762 components: - type: Transform - pos: -9.5,-24.5 + pos: 4.5,5.5 parent: 1 - uid: 763 components: - type: Transform - pos: -9.5,-23.5 + pos: 4.5,6.5 parent: 1 -- proto: CarpetPurple - entities: - uid: 764 components: - type: Transform - pos: -5.5,2.5 + pos: 4.5,7.5 parent: 1 - uid: 765 components: - type: Transform - pos: -5.5,3.5 + pos: 3.5,7.5 parent: 1 - uid: 766 components: - type: Transform - pos: -4.5,2.5 + pos: 2.5,7.5 parent: 1 - uid: 767 components: - type: Transform - pos: -4.5,3.5 + pos: 1.5,7.5 parent: 1 - uid: 768 components: - type: Transform - pos: -4.5,4.5 + pos: -6.5,-29.5 parent: 1 - uid: 769 components: - type: Transform - pos: -3.5,2.5 + pos: -5.5,-29.5 parent: 1 - uid: 770 components: - type: Transform - pos: -3.5,3.5 + pos: -4.5,-29.5 parent: 1 - uid: 771 components: - type: Transform - pos: -3.5,4.5 - parent: 1 -- proto: CartridgeRailHighExplosive - entities: - - uid: 1745 - components: - - type: Transform - pos: 3.6922448,6.6476736 - parent: 1 - - uid: 1746 - components: - - type: Transform - pos: 3.5132082,6.4360847 - parent: 1 - - uid: 1747 - components: - - type: Transform - pos: 3.5132082,6.2570486 - parent: 1 - - uid: 1748 - components: - - type: Transform - pos: 3.5132082,6.6151214 - parent: 1 - - uid: 1749 - components: - - type: Transform - pos: 3.4969323,6.501189 + pos: -3.5,-29.5 parent: 1 -- proto: Catwalk - entities: - uid: 772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-13.5 + pos: -3.5,-30.5 parent: 1 - uid: 773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-12.5 + pos: -2.5,-30.5 parent: 1 - uid: 774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-14.5 + pos: -1.5,-30.5 parent: 1 - uid: 775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-13.5 + pos: -0.5,-30.5 parent: 1 - uid: 776 components: - type: Transform - pos: 2.5,-5.5 + pos: -1.5,-1.5 parent: 1 - uid: 777 components: - type: Transform - pos: 1.5,-5.5 + pos: -2.5,-1.5 parent: 1 +- proto: CableTerminal + entities: - uid: 778 components: - type: Transform - pos: 1.5,-6.5 + rot: -1.5707963267948966 rad + pos: -5.5,-28.5 parent: 1 +- proto: CandlePurpleSmallInfinite + entities: - uid: 779 components: - type: Transform - pos: 1.5,-7.5 + pos: 0.036164522,8.750959 parent: 1 - uid: 780 components: - type: Transform - pos: 1.5,-8.5 + pos: -0.80500996,8.838582 parent: 1 - uid: 781 components: - type: Transform - pos: 1.5,-9.5 + pos: 2.3813057,-18.354 parent: 1 - uid: 782 components: - type: Transform - pos: 1.5,-10.5 + pos: 8.67259,-18.248854 parent: 1 - uid: 783 components: - type: Transform - pos: 1.5,-11.5 + pos: 8.269527,-18.564293 parent: 1 - uid: 784 components: - type: Transform - pos: 1.5,-12.5 + pos: 3.2750537,-18.634392 parent: 1 - uid: 785 components: - type: Transform - pos: 1.5,-13.5 + pos: 7.4458776,-18.529245 parent: 1 - uid: 786 components: - type: Transform - pos: 1.5,-14.5 + pos: 2.6616974,-18.599342 parent: 1 - uid: 787 components: - type: Transform - pos: 1.5,-15.5 + pos: 7.761318,-18.406574 parent: 1 - uid: 788 components: - type: Transform - pos: 1.5,-16.5 + pos: 3.0121868,-18.231329 parent: 1 +- proto: CardDeckNanotrasen + entities: - uid: 789 components: - type: Transform - pos: 2.5,-16.5 + pos: -2.4614599,9.619713 parent: 1 +- proto: CarpetBlack + entities: - uid: 790 components: - type: Transform - pos: 6.5,8.5 + pos: -8.5,-25.5 parent: 1 - uid: 791 components: - type: Transform - pos: 4.5,11.5 + pos: -8.5,-24.5 parent: 1 - uid: 792 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-24.5 + pos: -8.5,-23.5 parent: 1 +- proto: CarpetPurple + entities: - uid: 793 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-24.5 + pos: 3.5,-18.5 parent: 1 - uid: 794 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-22.5 + pos: 5.5,-19.5 parent: 1 - uid: 795 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-23.5 + pos: 4.5,-19.5 parent: 1 - uid: 796 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-22.5 + pos: 5.5,-18.5 parent: 1 - uid: 797 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-26.5 + pos: 4.5,-18.5 parent: 1 - uid: 798 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-30.5 + pos: 2.5,-18.5 parent: 1 - uid: 799 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-28.5 + pos: 6.5,-19.5 parent: 1 - uid: 800 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-25.5 + pos: 7.5,-18.5 parent: 1 - uid: 801 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-27.5 + pos: 6.5,-18.5 parent: 1 - uid: 802 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-30.5 + pos: 8.5,-18.5 parent: 1 +- proto: CartridgeRailHighExplosive + entities: - uid: 803 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-29.5 + pos: 3.6922448,6.6476736 parent: 1 - uid: 804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-19.5 + pos: 3.5132082,6.4360847 parent: 1 - uid: 805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-19.5 + pos: 3.5132082,6.6151214 parent: 1 - uid: 806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-18.5 + pos: 3.4969323,6.501189 parent: 1 +- proto: Catwalk + entities: - uid: 807 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-19.5 + pos: 10.5,-4.5 parent: 1 - uid: 808 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-7.5 + pos: 10.5,-2.5 parent: 1 - uid: 809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-7.5 + rot: -1.5707963267948966 rad + pos: -11.5,-13.5 parent: 1 - uid: 810 components: - type: Transform - pos: 3.5,11.5 + rot: -1.5707963267948966 rad + pos: -10.5,-12.5 parent: 1 - uid: 811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-6.5 + rot: -1.5707963267948966 rad + pos: -10.5,-14.5 parent: 1 - uid: 812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-5.5 + rot: -1.5707963267948966 rad + pos: -10.5,-13.5 parent: 1 - uid: 813 components: - type: Transform - pos: 5.5,11.5 + pos: 2.5,-5.5 parent: 1 - uid: 814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-4.5 + pos: 1.5,-5.5 parent: 1 - uid: 815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,9.5 + pos: 1.5,-6.5 parent: 1 - uid: 816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,7.5 + pos: 1.5,-7.5 parent: 1 - uid: 817 components: - type: Transform - pos: 2.5,8.5 + pos: 1.5,-8.5 parent: 1 - uid: 818 components: - type: Transform - pos: 5.5,10.5 + pos: 1.5,-9.5 parent: 1 - uid: 819 components: - type: Transform - pos: 5.5,9.5 + pos: 1.5,-10.5 parent: 1 - uid: 820 components: - type: Transform - pos: 3.5,9.5 + pos: 1.5,-11.5 parent: 1 - uid: 821 components: - type: Transform - pos: 3.5,10.5 + pos: 1.5,-12.5 parent: 1 - uid: 822 components: - type: Transform - pos: 4.5,10.5 + pos: 1.5,-13.5 parent: 1 - uid: 823 components: - type: Transform - pos: 4.5,9.5 + pos: 1.5,-14.5 parent: 1 - uid: 824 components: - type: Transform - pos: 2.5,13.5 + pos: 1.5,-15.5 parent: 1 - uid: 825 components: - type: Transform - pos: 6.5,13.5 + pos: 1.5,-16.5 parent: 1 - uid: 826 components: - type: Transform - pos: 8.5,4.5 + pos: 2.5,-16.5 parent: 1 - uid: 827 components: - type: Transform - pos: 8.5,4.5 + pos: 6.5,8.5 parent: 1 - uid: 828 components: - type: Transform - pos: 8.5,3.5 + pos: 4.5,11.5 parent: 1 - uid: 829 components: - type: Transform - pos: 8.5,2.5 + rot: 3.141592653589793 rad + pos: 0.5,-24.5 parent: 1 - uid: 830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-15.5 + rot: 3.141592653589793 rad + pos: 1.5,-24.5 parent: 1 - uid: 831 components: - type: Transform - pos: 9.5,2.5 + rot: 3.141592653589793 rad + pos: 0.5,-22.5 parent: 1 - uid: 832 components: - type: Transform - pos: 9.5,3.5 + rot: 3.141592653589793 rad + pos: 1.5,-23.5 parent: 1 - uid: 833 components: - type: Transform - pos: 9.5,4.5 + rot: 3.141592653589793 rad + pos: 1.5,-22.5 parent: 1 -- proto: ChairFolding - entities: - uid: 834 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.363054,-19.397055 + rot: 3.141592653589793 rad + pos: 0.5,-26.5 parent: 1 - uid: 835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.675554,-19.41268 + rot: 3.141592653589793 rad + pos: -0.5,-30.5 parent: 1 - uid: 836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.675554,-19.41268 + rot: 3.141592653589793 rad + pos: 0.5,-28.5 parent: 1 - uid: 837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.750229,-22.76684 + rot: 3.141592653589793 rad + pos: 0.5,-25.5 parent: 1 - uid: 838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.718979,-23.907465 + rot: 3.141592653589793 rad + pos: 0.5,-27.5 parent: 1 -- proto: ChairOfficeDark - entities: - uid: 839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.325447,-29.204823 + rot: 3.141592653589793 rad + pos: 0.5,-30.5 parent: 1 - uid: 840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.422879,-19.352354 + rot: 3.141592653589793 rad + pos: 0.5,-29.5 parent: 1 - uid: 841 components: - type: Transform - pos: -5.5834303,-8.422228 + rot: 1.5707963267948966 rad + pos: 13.5,-19.5 parent: 1 -- proto: ChairPilotSeat - entities: - uid: 842 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,7.5 + rot: 1.5707963267948966 rad + pos: 12.5,-19.5 parent: 1 -- proto: ChairWood - entities: - uid: 843 components: - type: Transform - pos: -5.4415607,3.1557019 + rot: 1.5707963267948966 rad + pos: 11.5,-18.5 parent: 1 -- proto: ChemDispenser - entities: - uid: 844 components: - type: Transform - pos: -6.5,-6.5 + rot: 1.5707963267948966 rad + pos: 11.5,-19.5 parent: 1 -- proto: ChemistryHotplate - entities: - uid: 845 components: - type: Transform - pos: -5.5,-9.5 + rot: 1.5707963267948966 rad + pos: -10.5,-7.5 parent: 1 -- proto: ChemMaster - entities: - uid: 846 components: - type: Transform - pos: -6.5,-7.5 + rot: 1.5707963267948966 rad + pos: -9.5,-7.5 parent: 1 -- proto: CloningPod - entities: - uid: 847 components: - type: Transform - pos: -5.5,-3.5 + pos: 3.5,11.5 parent: 1 -- proto: ClosetEmergencyFilledRandom - entities: - uid: 848 components: - type: Transform - pos: -2.5,-17.5 + rot: 1.5707963267948966 rad + pos: -9.5,-6.5 parent: 1 - uid: 849 components: - type: Transform - pos: -6.5,-24.5 + rot: 1.5707963267948966 rad + pos: -9.5,-5.5 parent: 1 -- proto: ClothingBackpackDuffelSurgeryAdvancedFilled - entities: - uid: 850 components: - type: Transform - pos: -3.3814595,-5.8999166 + pos: 5.5,11.5 parent: 1 - uid: 851 components: - type: Transform - pos: -3.4363146,-5.5297155 + rot: 1.5707963267948966 rad + pos: -9.5,-4.5 parent: 1 - uid: 852 components: - type: Transform - pos: -3.4363146,-5.337759 + rot: 1.5707963267948966 rad + pos: -7.5,9.5 parent: 1 -- proto: ClothingHeadHelmetImperialEVA - entities: - - uid: 56 + - uid: 853 components: - type: Transform - parent: 54 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 61 + rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + - uid: 854 components: - type: Transform - parent: 59 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 854 + pos: 2.5,8.5 + parent: 1 + - uid: 855 components: - type: Transform - parent: 853 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 860 + pos: 5.5,10.5 + parent: 1 + - uid: 856 components: - type: Transform - parent: 859 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 866 + pos: 5.5,9.5 + parent: 1 + - uid: 857 components: - type: Transform - parent: 865 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadsetEmpire - entities: - - uid: 871 + pos: 3.5,9.5 + parent: 1 + - uid: 858 components: - type: Transform - pos: -6.560283,-25.952425 + pos: 3.5,10.5 parent: 1 - - uid: 872 + - uid: 859 components: - type: Transform - pos: -6.560283,-25.952425 + pos: 4.5,10.5 parent: 1 - - uid: 873 + - uid: 860 components: - type: Transform - pos: -6.372783,-25.9993 + pos: 4.5,9.5 parent: 1 -- proto: ClothingMaskImperialCombatGasmask - entities: - - uid: 57 + - uid: 861 components: - type: Transform - parent: 54 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 62 + pos: 2.5,13.5 + parent: 1 + - uid: 862 components: - type: Transform - parent: 59 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterCoatImperialSoftsuit - entities: - - uid: 58 + pos: 6.5,13.5 + parent: 1 + - uid: 863 components: - type: Transform - parent: 54 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 63 + pos: 8.5,3.5 + parent: 1 + - uid: 864 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-15.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 867 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 868 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 1 + - uid: 869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 +- proto: ChairFolding + entities: + - uid: 870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.4942985,11.499319 + parent: 1 + - uid: 871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.363054,-19.397055 + parent: 1 + - uid: 872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.675554,-19.41268 + parent: 1 + - uid: 873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.675554,-19.41268 + parent: 1 + - uid: 874 + components: + - type: Transform + pos: -3.5051608,4.552843 + parent: 1 + - uid: 875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.488885,2.6973746 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.325447,-29.204823 + parent: 1 + - uid: 877 + components: + - type: Transform + pos: -5.5834303,-8.422228 + parent: 1 +- proto: ChemDispenser + entities: + - uid: 878 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 +- proto: ChemistryHotplate + entities: + - uid: 879 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1 +- proto: ChemMaster + entities: + - uid: 880 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 1 +- proto: ChurchWindow + entities: + - uid: 881 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1 +- proto: CigaretteSpent + entities: + - uid: 882 + components: + - type: Transform + pos: -8.767945,-21.830345 + parent: 1 + - uid: 883 + components: + - type: Transform + pos: -10.7561,-22.430092 + parent: 1 +- proto: CloningPod + entities: + - uid: 884 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 912 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 885 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 1 + - uid: 886 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 1 + - uid: 887 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 1 +- proto: ClosetToolFilled + entities: + - uid: 1803 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 1 + - uid: 1804 components: - type: Transform - parent: 59 + anchored: True + pos: -8.5,-17.5 + parent: 1 - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 855 + fixedRotation: False + bodyType: Static +- proto: ClothingBackpackDuffelSurgeryAdvancedFilled + entities: + - uid: 888 + components: + - type: Transform + pos: -3.3814595,-5.8999166 + parent: 1 + - uid: 889 + components: + - type: Transform + pos: -3.4363146,-5.5297155 + parent: 1 + - uid: 890 components: - type: Transform - parent: 853 + pos: -3.4363146,-5.337759 + parent: 1 +- proto: ClothingHeadHelmetImperialEVA + entities: + - uid: 59 + components: + - type: Transform + parent: 57 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 861 + - uid: 64 components: - type: Transform - parent: 859 + parent: 62 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 867 +- proto: ClothingHeadsetEmpire + entities: + - uid: 891 components: - type: Transform - parent: 865 + pos: -6.560283,-25.952425 + parent: 1 + - uid: 892 + components: + - type: Transform + pos: -6.560283,-25.952425 + parent: 1 + - uid: 893 + components: + - type: Transform + pos: -6.372783,-25.9993 + parent: 1 +- proto: ClothingMaskImperialCombatGasmask + entities: + - uid: 60 + components: + - type: Transform + parent: 57 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: ClothingShoesBootsMag - entities: - - uid: 856 + - uid: 65 components: - type: Transform - parent: 853 + parent: 62 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 862 +- proto: ClothingNeckCrucifixGold + entities: + - uid: 894 + components: + - type: Transform + pos: 6.3914356,-18.430052 + parent: 1 +- proto: ClothingOuterCoatImperialSoftsuit + entities: + - uid: 61 components: - type: Transform - parent: 859 + parent: 57 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 868 + - uid: 66 components: - type: Transform - parent: 865 + parent: 62 - type: Physics angularDamping: 0 linearDamping: 0 @@ -8619,84 +9514,136 @@ entities: - type: InsideEntityStorage - proto: Cobweb1 entities: - - uid: 874 + - uid: 895 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 875 + - uid: 896 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,7.5 parent: 1 - - uid: 876 + - uid: 897 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 898 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 899 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 + - uid: 901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + - uid: 902 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: Cobweb2 + entities: + - uid: 903 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 1 + - uid: 904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1 + - uid: 905 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 906 components: - type: Transform - pos: 2.5,7.5 + rot: -1.5707963267948966 rad + pos: -3.5,2.5 parent: 1 -- proto: Cobweb2 - entities: - - uid: 877 + - uid: 907 components: - type: Transform - pos: 9.5,-24.5 + pos: 8.5,1.5 parent: 1 - - uid: 878 + - uid: 908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 + rot: -1.5707963267948966 rad + pos: 1.5,3.5 parent: 1 - - uid: 879 +- proto: ColonyShellComplete + entities: + - uid: 909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-17.5 + pos: 3.3598633,6.378355 parent: 1 - proto: ComputerAdvancedRadar entities: - - uid: 880 + - uid: 910 components: - type: Transform pos: 6.5,-23.5 parent: 1 -- proto: ComputerBankATM +- proto: ComputerBroken entities: - - uid: 881 + - uid: 911 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,1.5 + pos: 8.5,-2.5 parent: 1 - - type: ContainerContainer - containers: - bank-ATM-cashSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - board: !type:Container - showEnts: False - occludes: True - ents: [] - proto: ComputerCloningConsole entities: - - uid: 882 + - uid: 912 components: - type: Transform pos: -4.5,-3.5 parent: 1 + - type: DeviceLinkSource + linkedPorts: + 884: + - - CloningPodSender + - CloningPodReceiver + - - MedicalScannerSender + - CloningPodReceiver + 1164: + - - MedicalScannerSender + - MedicalScannerReceiver + - - CloningPodSender + - MedicalScannerReceiver - proto: ComputerRadar entities: - - uid: 883 + - uid: 913 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-3.5 + pos: 6.5,-3.5 parent: 1 - proto: ComputerShuttle entities: - - uid: 884 + - uid: 914 components: - type: Transform pos: 7.5,-23.5 @@ -8722,28 +9669,20 @@ entities: ent: null - type: NamedModules buttonNames: - - NOTHING - - Use signallers - - To fire main cannon + - Fire 320mm + - Module B + - Module C - Module D - Module E -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,5.5 - parent: 1 - proto: ComputerTabletopAlert entities: - - uid: 886 + - uid: 915 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-28.5 parent: 1 - - uid: 887 + - uid: 916 components: - type: Transform rot: -1.5707963267948966 rad @@ -8751,7 +9690,7 @@ entities: parent: 1 - proto: ComputerTabletopCommsShip entities: - - uid: 888 + - uid: 917 components: - type: Transform rot: 3.141592653589793 rad @@ -8759,7 +9698,7 @@ entities: parent: 1 - proto: ComputerTabletopCrewMonitoring entities: - - uid: 889 + - uid: 918 components: - type: Transform rot: 3.141592653589793 rad @@ -8767,35 +9706,27 @@ entities: parent: 1 - proto: ComputerTabletopPowerMonitoring entities: - - uid: 890 + - uid: 919 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-29.5 parent: 1 - - uid: 891 + - uid: 920 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-23.5 parent: 1 - - uid: 892 + - uid: 921 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 1 -- proto: ComputerTabletopSurveillanceCameraMonitor - entities: - - uid: 893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 1 - proto: ComputerTargeting entities: - - uid: 894 + - uid: 922 components: - type: Transform pos: 8.5,-23.5 @@ -8803,39 +9734,87 @@ entities: - type: TargetingConsole cannonGroups: all: - - 108 - - 109 - - 110 - - 111 + - 114 + - 115 + - 116 + - 117 + - 1782 + - 1783 + - 1784 + - 1785 + - 1786 + - 1787 + - 1788 + - 1789 + - 1790 + - 1791 + - 1792 + - 1793 + - 1794 70mm "Jeong" swarmrocket platform: - - 108 - - 109 - - 110 - - 111 + - 114 + - 115 + - 116 + - 117 + 60mm PTA 'Needler' heavy precision autogun: + - 1782 + - 1783 + - 1784 + - 1785 + SHI MG-213 light dual machinegun 20x135mm: + - 1786 + - 1787 + - 1788 + - 1789 + - 1790 + - 1791 + - 1792 + 20mm PTA "Operator" gatling turret: + - 1793 + - 1794 +- proto: ComputerWallmountBankATM + entities: + - uid: 923 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - type: ContainerContainer + containers: + bank-ATM-cashSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Physics + canCollide: False - proto: CoolantCartridge entities: - - uid: 896 + - uid: 925 components: - type: Transform - parent: 895 + parent: 924 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 897 + - uid: 926 components: - type: Transform - parent: 895 + parent: 924 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 898 + - uid: 927 components: - type: Transform - parent: 895 + parent: 924 - type: Physics angularDamping: 0 linearDamping: 0 @@ -8843,19 +9822,19 @@ entities: - type: InsideEntityStorage - proto: CoolantCartridge30 entities: - - uid: 899 + - uid: 928 components: - type: Transform - parent: 895 + parent: 924 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 900 + - uid: 929 components: - type: Transform - parent: 895 + parent: 924 - type: Physics angularDamping: 0 linearDamping: 0 @@ -8863,19 +9842,19 @@ entities: - type: InsideEntityStorage - proto: CrateAutogunAmmo entities: - - uid: 901 + - uid: 930 components: - type: Transform - pos: -2.5,11.5 + pos: -1.5,2.5 parent: 1 - - uid: 902 + - uid: 931 components: - type: Transform - pos: -3.5,11.5 + pos: -1.5,3.5 parent: 1 - proto: CrateCoolant entities: - - uid: 895 + - uid: 924 components: - type: Transform pos: 2.5,6.5 @@ -8914,247 +9893,264 @@ entities: showEnts: False occludes: True ents: - - 900 - - 899 - - 898 - - 897 - - 896 + - 929 + - 928 + - 927 + - 926 + - 925 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null +- proto: CrateFoodMRE + entities: + - uid: 932 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 - proto: CrateJeongAmmo entities: - - uid: 903 + - uid: 933 components: - type: Transform - pos: -3.5,10.5 + pos: 0.5,4.5 parent: 1 - - uid: 904 + - uid: 934 components: - type: Transform - pos: -2.5,10.5 + pos: 0.5,3.5 parent: 1 - proto: CrateVulcanAmmo entities: - - uid: 150 + - uid: 935 components: - type: Transform - pos: -4.5,11.5 + pos: 1.5,4.5 parent: 1 - - uid: 1308 + - uid: 936 components: - type: Transform - pos: -4.5,10.5 + pos: 1.5,3.5 parent: 1 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 905 + - uid: 937 components: - type: Transform pos: -3.5,-24.5 parent: 1 - - uid: 906 + - uid: 938 components: - type: Transform pos: -3.5,-26.5 parent: 1 - proto: CurtainsBlackOpen entities: - - uid: 907 + - uid: 939 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,0.5 + pos: -10.5,-25.5 parent: 1 - - uid: 908 + - uid: 940 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-1.5 + pos: -11.5,-24.5 parent: 1 -- proto: CurtainsPurpleOpen - entities: - - uid: 909 + - uid: 941 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,2.5 + pos: -8.5,-24.5 parent: 1 - - uid: 910 + - uid: 942 components: - type: Transform + rot: 3.141592653589793 rad pos: -8.5,-23.5 parent: 1 - - uid: 911 + - uid: 943 components: - type: Transform - pos: -8.5,-25.5 + rot: 3.141592653589793 rad + pos: -11.5,-22.5 parent: 1 - - uid: 912 + - uid: 944 components: - type: Transform - pos: -8.5,-24.5 + rot: 3.141592653589793 rad + pos: -11.5,-23.5 parent: 1 -- proto: DoubleEmergencyOxygenTank - entities: - - uid: 857 + - uid: 945 components: - type: Transform - parent: 853 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 863 + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + - uid: 946 components: - type: Transform - parent: 859 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 869 + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + - uid: 947 components: - type: Transform - parent: 865 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: Dresser + rot: 3.141592653589793 rad + pos: -8.5,-25.5 + parent: 1 +- proto: CurtainsPurpleOpen entities: - - uid: 913 + - uid: 948 components: - type: Transform - pos: -3.5,3.5 + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 parent: 1 -- proto: DresserFilled +- proto: Dresser entities: - - uid: 914 + - uid: 949 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-22.5 parent: 1 -- proto: DrinkColaCan +- proto: DrinkBeerCan entities: - - uid: 915 + - uid: 950 components: - type: Transform - pos: -11.672104,-24.42309 + pos: -10.738575,-22.1497 parent: 1 -- proto: DrinkGlass - entities: - - uid: 916 + - uid: 951 components: - type: Transform - pos: -1.6902208,4.7378936 + pos: -3.50918,3.8372777 parent: 1 - - uid: 917 + - uid: 952 components: - type: Transform - pos: -1.4870958,4.7535186 + pos: -10.195317,-22.079603 parent: 1 - - uid: 918 + - uid: 953 components: - type: Transform - pos: -1.3620958,4.5972686 + pos: -3.3586764,3.483025 parent: 1 - - uid: 919 +- proto: DrinkGlass + entities: + - uid: 954 components: - type: Transform - pos: -1.5808458,4.4878936 + pos: -5.3006854,4.105737 + parent: 1 + - uid: 955 + components: + - type: Transform + pos: -5.7225714,4.6838393 + parent: 1 + - uid: 956 + components: + - type: Transform + pos: -5.788966,4.1871176 parent: 1 - proto: DrinkRootBeerCan entities: - - uid: 920 + - uid: 957 components: - type: Transform pos: -5.30653,-19.372026 parent: 1 - proto: DrinkWineBottleFull entities: - - uid: 921 + - uid: 958 + components: + - type: Transform + pos: -3.5655012,11.610062 + parent: 1 + - uid: 959 components: - type: Transform - pos: -5.69732,2.8443413 + pos: -0.33184934,8.71591 parent: 1 - proto: DrinkWineGlass entities: - - uid: 922 + - uid: 960 + components: + - type: Transform + pos: -1.0328281,8.575714 + parent: 1 + - uid: 961 + components: + - type: Transform + pos: -3.845893,11.68016 + parent: 1 + - uid: 962 + components: + - type: Transform + pos: -3.179963,11.575012 + parent: 1 + - uid: 963 components: - type: Transform - pos: -5.35357,2.6412163 + pos: -1.3833175,8.663337 parent: 1 - proto: Dropper entities: - - uid: 923 + - uid: 964 components: - type: Transform pos: -4.53538,-9.439533 parent: 1 - proto: DSMConscriptAmmoVendory entities: - - uid: 924 + - uid: 965 components: - type: Transform - pos: 6.5,-0.5 + pos: 8.5,1.5 parent: 1 - proto: DSMConscriptGearVendory entities: - - uid: 925 + - uid: 966 components: - type: Transform - pos: 6.5,-2.5 + pos: 8.5,-0.5 parent: 1 - proto: DSMConscriptShipVendory entities: - - uid: 926 + - uid: 967 components: - type: Transform pos: 1.5,1.5 parent: 1 -- proto: EncryptionKeyEmpire - entities: - - uid: 928 - components: - - type: Transform - parent: 927 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - proto: ExtinguisherCabinetFilled entities: - - uid: 929 + - uid: 968 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 1 - - uid: 930 + - uid: 969 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-14.5 parent: 1 - - uid: 931 + - uid: 970 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-20.5 parent: 1 - - uid: 932 + - uid: 971 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-21.5 parent: 1 - - uid: 933 + - uid: 972 components: - type: Transform rot: 1.5707963267948966 rad @@ -9162,7 +10158,7 @@ entities: parent: 1 - proto: FireAxeCabinetFilled entities: - - uid: 934 + - uid: 973 components: - type: Transform rot: 1.5707963267948966 rad @@ -9170,169 +10166,251 @@ entities: parent: 1 - proto: Firelock entities: - - uid: 935 + - uid: 974 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 936 + - uid: 975 components: - type: Transform pos: -2.5,-6.5 parent: 1 - - uid: 937 + - uid: 976 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 938 + - uid: 977 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 939 + - uid: 978 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 940 - components: - - type: Transform - pos: -5.5,6.5 - parent: 1 - - uid: 941 + - uid: 979 components: - type: Transform pos: -2.5,-5.5 parent: 1 - - uid: 942 + - uid: 980 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 943 + - uid: 981 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 944 + - uid: 982 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 945 + - uid: 983 components: - type: Transform pos: 1.5,-19.5 parent: 1 - - uid: 946 + - uid: 984 components: - type: Transform pos: 9.5,-21.5 parent: 1 - - uid: 947 + - uid: 985 components: - type: Transform pos: -3.5,-18.5 parent: 1 - - uid: 948 + - uid: 986 components: - type: Transform pos: -7.5,-18.5 parent: 1 - - uid: 949 + - uid: 987 components: - type: Transform pos: -7.5,-21.5 parent: 1 - - uid: 950 + - uid: 988 components: - type: Transform pos: -5.5,-23.5 parent: 1 - - uid: 951 + - uid: 989 components: - type: Transform pos: -0.5,-22.5 parent: 1 - - uid: 952 + - uid: 990 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-16.5 parent: 1 - - uid: 953 + - uid: 991 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-16.5 parent: 1 - - uid: 954 + - uid: 992 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-21.5 parent: 1 - - uid: 955 + - uid: 993 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-22.5 parent: 1 -- proto: FirelockEdge +- proto: FloodlightBroken entities: - - uid: 956 + - uid: 994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-21.5 + pos: 6.3343687,1.5250366 parent: 1 - - uid: 957 +- proto: FloorDrain + entities: + - uid: 995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-20.5 + rot: 3.141592653589793 rad + pos: -6.5,-0.5 parent: 1 - - uid: 958 + - type: Fixtures + fixtures: {} + - uid: 996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-19.5 + pos: -3.5,-1.5 parent: 1 - - uid: 959 + - type: Fixtures + fixtures: {} +- proto: FoodBowlBigTrash + entities: + - uid: 997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 + pos: 0.077132344,8.544015 parent: 1 -- proto: FloorDrain +- proto: FoodPacketPistachioTrash entities: - - uid: 960 + - uid: 998 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-0.5 + pos: -4.536465,4.209358 parent: 1 - - type: Fixtures - fixtures: {} -- proto: FoodBoxDonkpocketHonk +- proto: FoodPacketPopcornTrash entities: - - uid: 961 + - uid: 999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.422104,-22.98559 + pos: -9.646851,-22.937117 + parent: 1 + - uid: 1000 + components: + - type: Transform + pos: 7.078408,-0.70122194 + parent: 1 + - uid: 1001 + components: + - type: Transform + pos: -3.706387,9.840868 + parent: 1 +- proto: FoodPacketRedalertnutsTrash + entities: + - uid: 1002 + components: + - type: Transform + pos: -0.43736482,-24.51416 + parent: 1 +- proto: FoodPacketSaturnosTrash + entities: + - uid: 1003 + components: + - type: Transform + pos: -4.9963512,-26.496159 + parent: 1 +- proto: FoodPacketSemkiTrash + entities: + - uid: 1004 + components: + - type: Transform + pos: -0.7350528,5.5156784 + parent: 1 +- proto: FoodPacketStickTrash + entities: + - uid: 1005 + components: + - type: Transform + pos: -0.5434767,-28.729654 + parent: 1 +- proto: FoodPacketSusTrash + entities: + - uid: 1006 + components: + - type: Transform + pos: -5.447663,-28.58317 + parent: 1 + - uid: 1007 + components: + - type: Transform + pos: 0.57957006,-28.33903 + parent: 1 +- proto: FoodPlateSmallTrash + entities: + - uid: 1008 + components: + - type: Transform + pos: -4.5162544,8.455652 + parent: 1 + - uid: 1009 + components: + - type: Transform + pos: 0.5346668,-2.3862953 + parent: 1 +- proto: FoodPSBTrash + entities: + - uid: 1010 + components: + - type: Transform + pos: -1.2760562,-11.846495 + parent: 1 + - uid: 1011 + components: + - type: Transform + pos: 2.1904192,-3.1112895 + parent: 1 + - uid: 1012 + components: + - type: Transform + pos: -0.60484445,7.4808426 parent: 1 - proto: FoodSnackNutribrick entities: - - uid: 962 + - uid: 1013 components: - type: Transform pos: -6.497783,-26.421175 parent: 1 +- proto: FoodTinBeansTrash + entities: + - uid: 1014 + components: + - type: Transform + pos: -10.533169,-24.56472 + parent: 1 - proto: GasPassiveVent entities: - - uid: 963 + - uid: 1015 components: - type: Transform rot: -1.5707963267948966 rad @@ -9340,81 +10418,81 @@ entities: parent: 1 - proto: GasPipeBend entities: - - uid: 964 + - uid: 1016 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 965 + - uid: 1017 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,7.5 parent: 1 - - uid: 966 + - uid: 1018 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 967 + - uid: 1019 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 1 - - uid: 968 + - uid: 1020 components: - type: Transform pos: -4.5,-12.5 parent: 1 - - uid: 969 + - uid: 1021 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-14.5 parent: 1 - - uid: 970 + - uid: 1022 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-22.5 parent: 1 - - uid: 971 + - uid: 1023 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 1 - - uid: 972 + - uid: 1024 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-22.5 parent: 1 - - uid: 973 + - uid: 1025 components: - type: Transform pos: 0.5,-22.5 parent: 1 - - uid: 974 + - uid: 1026 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-7.5 parent: 1 - - uid: 975 + - uid: 1027 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-7.5 parent: 1 - - uid: 976 + - uid: 1028 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-30.5 parent: 1 - - uid: 977 + - uid: 1029 components: - type: Transform rot: -1.5707963267948966 rad @@ -9422,415 +10500,415 @@ entities: parent: 1 - proto: GasPipeFourway entities: - - uid: 978 + - uid: 1030 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 979 + - uid: 1031 components: - type: Transform pos: -1.5,-19.5 parent: 1 - proto: GasPipeStraight entities: - - uid: 980 + - uid: 1032 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-2.5 parent: 1 - - uid: 981 + - uid: 1033 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 1 - - uid: 982 + - uid: 1034 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-2.5 parent: 1 - - uid: 983 + - uid: 1035 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-2.5 parent: 1 - - uid: 984 + - uid: 1036 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - - uid: 985 + - uid: 1037 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,5.5 parent: 1 - - uid: 986 + - uid: 1038 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 1 - - uid: 987 + - uid: 1039 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 1 - - uid: 988 + - uid: 1040 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,1.5 parent: 1 - - uid: 989 + - uid: 1041 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 parent: 1 - - uid: 990 + - uid: 1042 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-0.5 parent: 1 - - uid: 991 + - uid: 1043 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 1 - - uid: 992 + - uid: 1044 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 1 - - uid: 993 + - uid: 1045 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-5.5 parent: 1 - - uid: 994 + - uid: 1046 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-5.5 parent: 1 - - uid: 995 + - uid: 1047 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-18.5 parent: 1 - - uid: 996 + - uid: 1048 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-6.5 parent: 1 - - uid: 997 + - uid: 1049 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 - - uid: 998 + - uid: 1050 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-6.5 parent: 1 - - uid: 999 + - uid: 1051 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-21.5 parent: 1 - - uid: 1000 + - uid: 1052 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 1 - - uid: 1001 + - uid: 1053 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-21.5 parent: 1 - - uid: 1002 + - uid: 1054 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-21.5 parent: 1 - - uid: 1003 + - uid: 1055 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-21.5 parent: 1 - - uid: 1004 + - uid: 1056 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-21.5 parent: 1 - - uid: 1005 + - uid: 1057 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-26.5 parent: 1 - - uid: 1006 + - uid: 1058 components: - type: Transform pos: 0.5,-25.5 parent: 1 - - uid: 1007 + - uid: 1059 components: - type: Transform pos: 0.5,-24.5 parent: 1 - - uid: 1008 + - uid: 1060 components: - type: Transform pos: 0.5,-23.5 parent: 1 - - uid: 1009 + - uid: 1061 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-22.5 parent: 1 - - uid: 1010 + - uid: 1062 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-17.5 parent: 1 - - uid: 1011 + - uid: 1063 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-16.5 parent: 1 - - uid: 1012 + - uid: 1064 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-15.5 parent: 1 - - uid: 1013 + - uid: 1065 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 1 - - uid: 1014 + - uid: 1066 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-13.5 parent: 1 - - uid: 1015 + - uid: 1067 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-12.5 parent: 1 - - uid: 1016 + - uid: 1068 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-11.5 parent: 1 - - uid: 1017 + - uid: 1069 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-10.5 parent: 1 - - uid: 1018 + - uid: 1070 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-9.5 parent: 1 - - uid: 1019 + - uid: 1071 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-8.5 parent: 1 - - uid: 1020 + - uid: 1072 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-13.5 parent: 1 - - uid: 1021 + - uid: 1073 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-20.5 parent: 1 - - uid: 1022 + - uid: 1074 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-20.5 parent: 1 - - uid: 1023 + - uid: 1075 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-20.5 parent: 1 - - uid: 1024 + - uid: 1076 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-20.5 parent: 1 - - uid: 1025 + - uid: 1077 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-20.5 parent: 1 - - uid: 1026 + - uid: 1078 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-20.5 parent: 1 - - uid: 1027 + - uid: 1079 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-30.5 parent: 1 - - uid: 1028 + - uid: 1080 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-30.5 parent: 1 - - uid: 1029 + - uid: 1081 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-30.5 parent: 1 - - uid: 1030 + - uid: 1082 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-30.5 parent: 1 - - uid: 1031 + - uid: 1083 components: - type: Transform pos: 0.5,-29.5 parent: 1 - - uid: 1032 + - uid: 1084 components: - type: Transform pos: 0.5,-28.5 parent: 1 - - uid: 1033 + - uid: 1085 components: - type: Transform pos: 0.5,-27.5 parent: 1 - proto: GasPipeTJunction entities: - - uid: 1034 + - uid: 1086 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 1 - - uid: 1035 + - uid: 1087 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 1036 + - uid: 1088 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - - uid: 1037 + - uid: 1089 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 1 - - uid: 1038 + - uid: 1090 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-2.5 parent: 1 - - uid: 1039 + - uid: 1091 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 1 - - uid: 1040 + - uid: 1092 components: - type: Transform pos: -4.5,-5.5 parent: 1 - - uid: 1041 + - uid: 1093 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-13.5 parent: 1 - - uid: 1042 + - uid: 1094 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-20.5 parent: 1 - - uid: 1043 + - uid: 1095 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-22.5 parent: 1 - - uid: 1044 + - uid: 1096 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-21.5 parent: 1 - - uid: 1045 + - uid: 1097 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-26.5 parent: 1 - - uid: 1046 + - uid: 1098 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-20.5 parent: 1 - - uid: 1047 + - uid: 1099 components: - type: Transform rot: -1.5707963267948966 rad @@ -9838,33 +10916,33 @@ entities: parent: 1 - proto: GasPort entities: - - uid: 1048 + - uid: 1100 components: - type: Transform pos: -4.5,-28.5 parent: 1 - proto: GasValve entities: - - uid: 1049 + - uid: 1101 components: - type: Transform pos: -4.5,-29.5 parent: 1 - proto: GasVentPump entities: - - uid: 1050 + - uid: 1102 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 1051 + - uid: 1103 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-3.5 parent: 1 - - uid: 1052 + - uid: 1104 components: - type: Transform rot: -1.5707963267948966 rad @@ -9876,7 +10954,7 @@ entities: - 25 - 22 - 21 - - uid: 1053 + - uid: 1105 components: - type: Transform pos: 0.5,4.5 @@ -9887,7 +10965,7 @@ entities: - 25 - 22 - 21 - - uid: 1054 + - uid: 1106 components: - type: Transform rot: -1.5707963267948966 rad @@ -9899,7 +10977,7 @@ entities: - 25 - 22 - 21 - - uid: 1055 + - uid: 1107 components: - type: Transform pos: -9.5,-21.5 @@ -9910,7 +10988,7 @@ entities: - 25 - 22 - 21 - - uid: 1056 + - uid: 1108 components: - type: Transform rot: 1.5707963267948966 rad @@ -9922,7 +11000,7 @@ entities: - 25 - 22 - 21 - - uid: 1057 + - uid: 1109 components: - type: Transform rot: 1.5707963267948966 rad @@ -9934,7 +11012,7 @@ entities: - 25 - 22 - 21 - - uid: 1058 + - uid: 1110 components: - type: Transform rot: 3.141592653589793 rad @@ -9948,7 +11026,7 @@ entities: - 21 - proto: GasVentScrubber entities: - - uid: 1059 + - uid: 1111 components: - type: Transform rot: 1.5707963267948966 rad @@ -9960,7 +11038,7 @@ entities: - 25 - 22 - 21 - - uid: 1060 + - uid: 1112 components: - type: Transform rot: 1.5707963267948966 rad @@ -9972,7 +11050,7 @@ entities: - 25 - 22 - 21 - - uid: 1061 + - uid: 1113 components: - type: Transform rot: 3.141592653589793 rad @@ -9984,7 +11062,7 @@ entities: - 25 - 22 - 21 - - uid: 1062 + - uid: 1114 components: - type: Transform rot: 1.5707963267948966 rad @@ -9996,7 +11074,7 @@ entities: - 25 - 22 - 21 - - uid: 1063 + - uid: 1115 components: - type: Transform rot: 1.5707963267948966 rad @@ -10008,7 +11086,7 @@ entities: - 25 - 22 - 21 - - uid: 1064 + - uid: 1116 components: - type: Transform rot: 1.5707963267948966 rad @@ -10020,7 +11098,7 @@ entities: - 25 - 22 - 21 - - uid: 1065 + - uid: 1117 components: - type: Transform rot: -1.5707963267948966 rad @@ -10032,7 +11110,7 @@ entities: - 25 - 22 - 21 - - uid: 1066 + - uid: 1118 components: - type: Transform pos: 5.5,-19.5 @@ -10045,268 +11123,208 @@ entities: - 21 - proto: Girder entities: - - uid: 1067 + - uid: 1119 components: - type: Transform pos: 2.5,-9.5 parent: 1 - - uid: 1068 + - uid: 1120 components: - type: Transform pos: 2.5,-12.5 parent: 1 - proto: GravityGeneratorMini entities: - - uid: 1069 + - uid: 1121 components: - type: Transform pos: -1.5,-26.5 parent: 1 - proto: Grille entities: - - uid: 1070 + - uid: 1122 components: - type: Transform pos: -2.5,-9.5 parent: 1 - - uid: 1071 + - uid: 1123 components: - type: Transform pos: -2.5,-8.5 parent: 1 - - uid: 1072 + - uid: 1124 components: - type: Transform pos: -2.5,-7.5 parent: 1 - - uid: 1073 + - uid: 1125 components: - type: Transform pos: -2.5,-15.5 parent: 1 - - uid: 1074 + - uid: 1126 components: - type: Transform pos: -2.5,-11.5 parent: 1 - - uid: 1075 + - uid: 1127 components: - type: Transform pos: 5.5,-4.5 parent: 1 - - uid: 1076 + - uid: 1128 components: - type: Transform pos: 4.5,-4.5 parent: 1 - - uid: 1077 + - uid: 1129 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 1078 + - uid: 1130 components: - type: Transform pos: 3.5,-4.5 parent: 1 - - uid: 1080 + - uid: 1131 components: - type: Transform pos: -12.5,-22.5 parent: 1 - - uid: 1081 + - uid: 1132 components: - type: Transform pos: -12.5,-23.5 parent: 1 - - uid: 1082 + - uid: 1133 components: - type: Transform pos: -12.5,-24.5 parent: 1 - - uid: 1087 + - uid: 1134 components: - type: Transform pos: 2.5,-25.5 parent: 1 - - uid: 1088 + - uid: 1135 components: - type: Transform pos: 1.5,-25.5 parent: 1 - - uid: 1089 + - uid: 1136 components: - type: Transform pos: 1.5,-26.5 parent: 1 - - uid: 1090 + - uid: 1137 components: - type: Transform pos: 4.5,-17.5 parent: 1 - - uid: 1091 + - uid: 1138 components: - type: Transform pos: 5.5,-17.5 parent: 1 - - uid: 1092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,12.5 - parent: 1 - - uid: 1093 + - uid: 1139 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 1094 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 1 - - uid: 1095 + - uid: 1140 components: - type: Transform pos: 6.5,-17.5 parent: 1 - - uid: 1096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 1 - - uid: 1097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-23.5 - parent: 1 - - uid: 1098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 1 - - uid: 1099 + - uid: 1141 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 1100 + - uid: 1142 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,12.5 parent: 1 - - uid: 1101 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,11.5 - parent: 1 - - uid: 1102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,12.5 - parent: 1 - proto: Gyroscope entities: - - uid: 1103 + - uid: 1143 components: - type: Transform - pos: 0.5,-23.5 + pos: -0.5,-27.5 parent: 1 -- proto: GyroscopeNfsd - entities: - - uid: 1104 + - uid: 1144 components: - type: Transform pos: -1.5,-24.5 parent: 1 -- proto: JetpackBlackFilled - entities: - - uid: 858 + - uid: 1145 components: - type: Transform - parent: 853 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 864 + pos: 6.5,6.5 + parent: 1 + - uid: 1146 components: - type: Transform - parent: 859 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 870 + pos: -5.5,-30.5 + parent: 1 +- proto: HeadHuman + entities: + - uid: 1798 components: - type: Transform - parent: 865 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage + pos: -3.462973,10.391843 + parent: 1 - proto: JugBoriaticFuel entities: - - uid: 1105 + - uid: 1147 components: - type: Transform pos: -2.9984322,-28.354212 parent: 1 - - uid: 1106 + - uid: 1148 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5525718,-28.844797 parent: 1 - - uid: 1107 + - uid: 1149 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5674338,-28.94886 parent: 1 -- proto: Jukebox - entities: - - uid: 1108 + - uid: 1150 components: - type: Transform - pos: 0.5,5.5 + pos: -9.432028,-17.3254 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 1109 + - uid: 1151 components: - type: Transform - pos: -11.5,-22.5 + pos: -9.607809,-17.247274 parent: 1 -- proto: KitchenReagentGrinder +- proto: Jukebox entities: - - uid: 1110 + - uid: 1152 components: - type: Transform - pos: -6.5,-9.5 + pos: -2.5,8.5 parent: 1 -- proto: LampGold +- proto: KitchenReagentGrinder entities: - - uid: 1111 + - uid: 1153 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.1576877,5.140425 + pos: -6.5,-9.5 parent: 1 - proto: LightStripInner entities: - - uid: 1112 + - uid: 1154 components: - type: Transform rot: 1.5707963267948966 rad @@ -10315,7 +11333,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1113 + - uid: 1155 components: - type: Transform pos: -6.5,-12.5 @@ -10323,7 +11341,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1114 + - uid: 1156 components: - type: Transform rot: -1.5707963267948966 rad @@ -10332,7 +11350,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1115 + - uid: 1157 components: - type: Transform rot: 3.141592653589793 rad @@ -10341,7 +11359,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1116 + - uid: 1158 components: - type: Transform rot: 1.5707963267948966 rad @@ -10352,7 +11370,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 1117 + - uid: 1159 components: - type: Transform pos: -5.5,-14.5 @@ -10360,7 +11378,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1118 + - uid: 1160 components: - type: Transform rot: -1.5707963267948966 rad @@ -10369,7 +11387,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1119 + - uid: 1161 components: - type: Transform rot: 3.141592653589793 rad @@ -10378,7 +11396,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1120 + - uid: 1162 components: - type: Transform rot: 1.5707963267948966 rad @@ -10387,234 +11405,349 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF -- proto: LockerFreezerBase +- proto: MaterialBiomass entities: - - uid: 1121 + - uid: 1797 components: - type: Transform - pos: -1.5,5.5 + pos: -5.541295,-3.6153278 parent: 1 -- proto: LuxuryPen +- proto: MedicalBed entities: - - uid: 1122 + - uid: 1163 components: - type: Transform - pos: -3.8295627,4.734175 + pos: -3.5,-7.5 parent: 1 -- proto: MagazineNeedler +- proto: MedicalScanner entities: - - uid: 1123 + - uid: 1164 components: - type: Transform - pos: 4.721819,-3.2654834 + pos: -6.5,-3.5 parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1124 + - type: DeviceLinkSink + links: + - 912 +- proto: MedkitAdvancedFilled + entities: + - uid: 1165 components: - type: Transform - pos: 4.3233814,-3.3123584 + pos: -3.2042627,-9.149912 parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1125 +- proto: MedkitBruteFilled + entities: + - uid: 1166 components: - type: Transform - pos: 4.674944,-3.6639209 + pos: -3.6261377,-9.165537 parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1126 +- proto: MedkitBurnFilled + entities: + - uid: 1167 components: - type: Transform - pos: 4.2765064,-3.6639209 + pos: -3.6261377,-9.399912 parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] -- proto: MagazineVulcan +- proto: MedkitCombatFilled entities: - - uid: 130 + - uid: 1168 components: - type: Transform - pos: 5.2243333,-3.277742 + pos: -3.6678185,-8.195641 parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1079 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 1169 components: - type: Transform - pos: 5.40337,-3.7171946 + pos: -3.2355127,-8.177672 parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1086 +- proto: MedkitOxygenFilled + entities: + - uid: 1170 components: - type: Transform - pos: 5.842823,-3.6520905 + pos: -3.6573877,-8.443297 parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] - - uid: 1277 +- proto: MedkitRadiationFilled + entities: + - uid: 1171 components: - type: Transform - pos: 5.793995,-3.2451897 + pos: -3.1730127,-9.446787 parent: 1 - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - ents: [] -- proto: MedicalBed +- proto: MedkitToxinFilled entities: - - uid: 1127 + - uid: 1172 components: - type: Transform - pos: -3.5,-7.5 + pos: -3.2042627,-8.412047 parent: 1 -- proto: MedicalScanner +- proto: MiningDrill entities: - - uid: 1128 + - uid: 1173 components: - type: Transform - pos: -6.5,-3.5 + pos: -5.622288,-17.293901 parent: 1 -- proto: MedkitAdvancedFilled + - uid: 1174 + components: + - type: Transform + pos: -5.316179,-17.278828 + parent: 1 +- proto: N14BedWood entities: - - uid: 1129 + - uid: 1175 components: - type: Transform - pos: -3.2042627,-9.149912 + pos: -8.5,-25.5 parent: 1 -- proto: MedkitBruteFilled + - uid: 1176 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 1 + - uid: 1177 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 1 + - uid: 1178 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 1 + - uid: 1179 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 1 + - uid: 1180 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 1 + - uid: 1181 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 1 +- proto: N14BedWoodBunk entities: - - uid: 1130 + - uid: 1182 components: - type: Transform - pos: -3.6261377,-9.165537 + pos: -8.5,-23.5 parent: 1 -- proto: MedkitBurnFilled + - uid: 1183 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 1 + - uid: 1184 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 1 + - uid: 1185 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 1 + - uid: 1186 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 1 + - uid: 1187 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 1 + - uid: 1188 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 1 +- proto: N14ChairOfficeGreenBroken entities: - - uid: 1131 + - uid: 1189 components: - type: Transform - pos: -3.6261377,-9.399912 + rot: 3.141592653589793 rad + pos: -2.4491975,11.5481 parent: 1 -- proto: MedkitCombatFilled +- proto: N14JunkArcade entities: - - uid: 1132 + - uid: 1190 components: - type: Transform - pos: -3.6678185,-8.195641 + rot: 3.141592653589793 rad + pos: 0.5,5.5 parent: 1 - - type: Physics - angularDamping: 0 - linearDamping: 0 - - uid: 1133 +- proto: N14JunkMirror + entities: + - uid: 1191 components: - type: Transform - pos: -3.2355127,-8.177672 + rot: 3.141592653589793 rad + pos: -4.5,1.5 parent: 1 -- proto: MedkitOxygenFilled +- proto: N14JunkUrinal entities: - - uid: 1134 + - uid: 1192 components: - type: Transform - pos: -3.6573877,-8.443297 + pos: -3.5,0.5 parent: 1 -- proto: MedkitRadiationFilled + - type: Fixtures + fixtures: {} +- proto: N14TableCounterBar entities: - - uid: 1135 + - uid: 1193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + - uid: 1194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 1195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 +- proto: N14TableMetalGrate + entities: + - uid: 1196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 1197 components: - type: Transform - pos: -3.1730127,-9.446787 + pos: -3.5,11.5 parent: 1 -- proto: MedkitToxinFilled - entities: - - uid: 1136 + - uid: 1198 components: - type: Transform - pos: -3.2042627,-8.412047 + rot: 3.141592653589793 rad + pos: -10.5,-22.5 parent: 1 -- proto: MiningDrill +- proto: N14ToiletDirty entities: - - uid: 1137 + - uid: 1199 components: - type: Transform - pos: -5.622288,-17.293901 + rot: 1.5707963267948966 rad + pos: -6.5,0.5 parent: 1 - - uid: 1138 + - uid: 1200 components: - type: Transform - pos: -5.316179,-17.278828 + rot: 1.5707963267948966 rad + pos: -6.5,-1.5 parent: 1 - proto: OreBag entities: - - uid: 1139 + - uid: 1201 components: - type: Transform pos: -5.700413,-17.450151 parent: 1 - - uid: 1140 + - uid: 1202 components: - type: Transform pos: -5.363054,-17.435078 parent: 1 - proto: OreBox entities: - - uid: 1141 + - uid: 1203 components: - type: Transform - pos: -8.5,-19.5 + pos: -8.304914,-19.716951 parent: 1 + - type: Physics + sleepTime: 0.116666555 - proto: OreProcessor entities: - - uid: 1142 + - uid: 1204 components: - type: Transform pos: -6.5,-17.5 parent: 1 -- proto: PaperBin20 +- proto: Paper entities: - - uid: 1143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 1 - - uid: 1144 + - uid: 1205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,4.5 - parent: 1 -- proto: Pen + pos: 7.535639,-23.352873 + parent: 1 + - type: Paper + content: >- + From: Regiment Battalion Engineering Corps + + + Sir, + + + I do not wish to speak poorly, but given our trust, I must be honest. Keeping this rusted wreck running is a miracle — the ship is literally falling apart. Supplies have been scarce, the same engine oil has circulated far too long, and much of the vessel has rusted and become filthy. Some of the weapons are also corroded; we emptied them to remove the rust. Be sure to reload before battle. + + + To improve your survival chances in the upcoming engagements, we relocated the bridge to a more secure position. The move was rushed, however, and some prisoners have already turned the old bridge into a makeshift bar. + + + Please excuse the ship’s shortcomings. The prisoners we carry must either reach redemption soon, or we must reach our destination before they worsen the situation. + + + For the Kaiser! + - uid: 1799 + components: + - type: Transform + pos: -3.462973,10.194015 + parent: 1 + - type: Paper + content: He who paid for this with his life + - uid: 1800 + components: + - type: Transform + pos: 8.1924,-1.2578125 + parent: 1 + - type: Paper + content: >- + We scavanged disposal to fix some issues. + + + Just gather all the trash and throw it into space. + + + -Engineering +- proto: PlasmaReinforcedWindowDirectional entities: - - uid: 1145 + - uid: 1206 components: - type: Transform - pos: 7.504503,-20.35259 + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 parent: 1 - proto: PlasmaWindowDirectional entities: - - uid: 1146 + - uid: 1207 components: - type: Transform pos: -6.5,-0.5 parent: 1 - - uid: 1147 + - uid: 1208 components: - type: Transform rot: 3.141592653589793 rad @@ -10622,52 +11755,44 @@ entities: parent: 1 - proto: PlastitaniumWindow entities: - - uid: 1148 + - uid: 1209 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 1149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,12.5 - parent: 1 - - uid: 1150 + - uid: 1210 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 1151 + - uid: 1211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,11.5 + rot: 3.141592653589793 rad + pos: -3.5,12.5 parent: 1 - - uid: 1152 +- proto: PlushiePearCat + entities: + - uid: 1212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,12.5 + pos: -2.4731965,11.600811 parent: 1 - - uid: 1153 + - uid: 1213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,12.5 + pos: 11.401751,-23.386135 parent: 1 -- proto: PlushiePearCat - entities: - - uid: 1297 + - uid: 1214 components: - type: Transform - pos: 4.504834,-25.221157 + pos: -11.523069,-23.564976 parent: 1 - proto: PlushieSharkBlue entities: - - uid: 1154 + - uid: 1215 components: - type: Transform pos: -3.3709435,-7.382575 @@ -10677,888 +11802,882 @@ entities: linearDamping: 0 - proto: PosterLegitBarDrinks entities: - - uid: 1155 + - uid: 1216 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,1.5 parent: 1 -- proto: PottedPlantRandom +- proto: PosterLegitSafetyEyeProtection entities: - - uid: 1156 + - uid: 1217 components: - type: Transform - pos: 5.5,-18.5 + pos: -2.5,-12.5 parent: 1 - - uid: 1157 +- proto: Poweredlight + entities: + - uid: 1218 components: - type: Transform - pos: 2.5,-18.5 + rot: 1.5707963267948966 rad + pos: -6.5,-8.5 parent: 1 -- proto: PowerCellRecharger - entities: - - uid: 1158 + - uid: 1219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-24.5 + rot: 3.141592653589793 rad + pos: 2.5,-8.5 parent: 1 -- proto: Poweredlight - entities: - - uid: 1159 + - uid: 1220 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-9.5 + pos: 1.5,-22.5 parent: 1 - - uid: 1160 + - uid: 1221 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-8.5 + pos: -0.5,-29.5 parent: 1 -- proto: PoweredlightLED - entities: - - uid: 1161 + - uid: 1222 components: - type: Transform - pos: 2.5,-13.5 + pos: -6.5,-21.5 parent: 1 - - uid: 1162 + - uid: 1223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-29.5 + pos: -4.5,-24.5 parent: 1 - - uid: 1163 + - uid: 1224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-29.5 + rot: 3.141592653589793 rad + pos: -10.5,-25.5 parent: 1 - - uid: 1164 + - uid: 1225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-29.5 + rot: 3.141592653589793 rad + pos: -4.5,-26.5 parent: 1 - - uid: 1165 + - uid: 1226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-29.5 + pos: -11.5,-22.5 parent: 1 - - uid: 1166 + - uid: 1227 components: - type: Transform - pos: -0.5,-24.5 + rot: 1.5707963267948966 rad + pos: -2.5,-20.5 parent: 1 - - uid: 1167 + - uid: 1228 components: - type: Transform - pos: 1.5,-22.5 + rot: 1.5707963267948966 rad + pos: -7.5,-15.5 parent: 1 - - uid: 1168 + - uid: 1229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-21.5 + rot: 3.141592653589793 rad + pos: -3.5,2.5 parent: 1 - - uid: 1169 + - uid: 1230 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-22.5 + pos: -7.5,-11.5 parent: 1 - - uid: 1170 + - uid: 1231 components: - type: Transform - pos: -4.5,-24.5 + rot: 3.141592653589793 rad + pos: -8.5,-19.5 parent: 1 - - uid: 1171 + - uid: 1232 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-26.5 + pos: -10.5,-17.5 parent: 1 - - uid: 1172 + - uid: 1233 components: - type: Transform - pos: -11.5,-22.5 + rot: 3.141592653589793 rad + pos: 7.5,-21.5 parent: 1 - - uid: 1173 + - uid: 1234 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-24.5 + pos: 9.5,-25.5 parent: 1 - - uid: 1174 + - uid: 1235 components: - type: Transform - pos: -8.5,-21.5 + rot: 3.141592653589793 rad + pos: 5.5,-25.5 parent: 1 - - uid: 1175 + - uid: 1236 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-18.5 + pos: 2.5,-13.5 parent: 1 - - uid: 1176 + - uid: 1237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 1238 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-17.5 + pos: -0.5,-16.5 parent: 1 - - uid: 1177 + - uid: 1239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-19.5 + rot: 3.141592653589793 rad + pos: -5.5,-9.5 parent: 1 - - uid: 1178 + - uid: 1240 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 1241 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-19.5 + pos: 8.5,0.5 parent: 1 - - uid: 1179 + - uid: 1242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + - uid: 1243 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 1244 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-14.5 + pos: -1.5,4.5 parent: 1 - - uid: 1180 + - uid: 1245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 + - uid: 1246 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-12.5 + pos: -1.5,-2.5 parent: 1 - - uid: 1181 + - uid: 1247 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-12.5 + pos: -0.5,-6.5 parent: 1 - - uid: 1182 + - uid: 1248 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-9.5 + pos: 2.5,1.5 parent: 1 - - uid: 1183 + - uid: 1249 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-9.5 + pos: 2.5,-3.5 parent: 1 - - uid: 1184 + - uid: 1250 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 1 + - uid: 1805 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 1 +- proto: PoweredlightRed + entities: + - uid: 1251 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-4.5 + pos: 9.5,5.5 parent: 1 - - uid: 1185 + - uid: 1252 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-4.5 + pos: 6.5,10.5 parent: 1 - - uid: 1186 + - uid: 1253 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-0.5 + pos: 2.5,10.5 parent: 1 - - uid: 1187 + - uid: 1254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,0.5 + rot: 1.5707963267948966 rad + pos: 10.5,-18.5 parent: 1 - - uid: 1188 + - uid: 1255 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-1.5 + pos: -7.5,7.5 parent: 1 - - uid: 1189 + - uid: 1256 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,2.5 + pos: -9.5,-6.5 parent: 1 - - uid: 1190 + - uid: 1257 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,5.5 + pos: 10.5,-4.5 parent: 1 - - uid: 1191 +- proto: PoweredSmallLight + entities: + - uid: 1258 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,7.5 + pos: -5.5,-30.5 parent: 1 - - uid: 1192 + - uid: 1259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,7.5 + rot: -1.5707963267948966 rad + pos: -2.5,-28.5 parent: 1 - - uid: 1193 + - uid: 1260 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 1194 + - uid: 1261 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,6.5 parent: 1 - - uid: 1195 + - uid: 1262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,4.5 + rot: 3.141592653589793 rad + pos: 11.5,-23.5 parent: 1 - - uid: 1196 + - uid: 1263 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-3.5 + pos: 2.5,-29.5 parent: 1 - - uid: 1197 + - uid: 1264 components: - type: Transform - pos: -1.5,0.5 + rot: -1.5707963267948966 rad + pos: 5.5,4.5 parent: 1 - - uid: 1198 +- proto: PoweredSmallLightMaintenanceRed + entities: + - uid: 1265 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,2.5 + rot: 1.5707963267948966 rad + pos: -5.5,9.5 parent: 1 - - uid: 1199 +- proto: Rack + entities: + - uid: 1266 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 1 - - uid: 1200 - components: - - type: Transform - pos: 0.5,5.5 - parent: 1 - - uid: 1201 - components: - - type: Transform - pos: -1.5,5.5 + pos: -5.5,-17.5 parent: 1 - - uid: 1202 + - uid: 1267 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 1 - - uid: 1203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-15.5 + pos: 2.5,-28.5 parent: 1 - - uid: 1204 + - uid: 1268 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-15.5 + pos: 3.5,-28.5 parent: 1 - - uid: 1205 + - uid: 1269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-20.5 + pos: -3.5,-9.5 parent: 1 - - uid: 1206 + - uid: 1270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-20.5 + pos: -3.5,-8.5 parent: 1 - - uid: 1207 + - uid: 1271 components: - type: Transform - pos: 6.5,-24.5 + rot: 1.5707963267948966 rad + pos: -5.5,9.5 parent: 1 - - uid: 1208 + - uid: 1272 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-25.5 + pos: 5.5,6.5 parent: 1 - - uid: 1209 + - uid: 1273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-25.5 + rot: 3.141592653589793 rad + pos: 3.5,6.5 parent: 1 - - uid: 1210 + - uid: 1274 components: - type: Transform - pos: 7.5,-23.5 + pos: 11.5,-23.5 parent: 1 - - uid: 1211 +- proto: Railing + entities: + - uid: 1275 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-20.5 + pos: -7.5,7.5 parent: 1 - - uid: 1212 + - uid: 1276 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-20.5 + pos: 1.5,-6.5 parent: 1 - - uid: 1213 + - uid: 1277 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-22.5 + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 parent: 1 - - uid: 1214 + - uid: 1278 components: - type: Transform - pos: 7.5,-18.5 + rot: -1.5707963267948966 rad + pos: -0.5,-26.5 parent: 1 - - uid: 1215 + - uid: 1279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 + rot: -1.5707963267948966 rad + pos: -0.5,-24.5 parent: 1 - - uid: 1216 + - uid: 1280 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-8.5 + pos: 11.5,-17.5 parent: 1 -- proto: PoweredlightRed - entities: - - uid: 1217 + - uid: 1281 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,5.5 + pos: -4.5,-26.5 parent: 1 - - uid: 1218 + - uid: 1282 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,1.5 + pos: -4.5,-24.5 parent: 1 - - uid: 1219 + - uid: 1283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-2.5 + pos: -6.5,-4.5 parent: 1 - - uid: 1220 + - uid: 1284 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,9.5 - parent: 1 - - uid: 1221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 1 - - uid: 1222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 + pos: -6.5,-5.5 parent: 1 -- proto: PoweredSmallLight - entities: - - uid: 1223 + - uid: 1285 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-29.5 - parent: 1 - - uid: 1224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-29.5 + pos: -3.5,-5.5 parent: 1 - - uid: 1225 + - uid: 1286 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-26.5 + pos: 1.5,1.5 parent: 1 - - uid: 1226 + - uid: 1287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-26.5 + pos: -3.5,-4.5 parent: 1 -- proto: Rack - entities: - - uid: 1085 + - uid: 1288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 + pos: 2.5,0.5 parent: 1 - - uid: 1227 + - uid: 1289 components: - type: Transform - pos: 3.5,-3.5 + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 parent: 1 - - uid: 1228 + - uid: 1290 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-17.5 + pos: 12.5,-19.5 parent: 1 - - uid: 1229 + - uid: 1291 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-28.5 + pos: 11.5,-18.5 parent: 1 - - uid: 1230 + - uid: 1292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-28.5 + rot: -1.5707963267948966 rad + pos: -10.5,-8.5 parent: 1 - - uid: 1231 + - uid: 1293 components: - type: Transform - pos: -3.5,-9.5 + rot: -1.5707963267948966 rad + pos: -9.5,-4.5 parent: 1 - - uid: 1232 + - uid: 1294 components: - type: Transform - pos: -3.5,-8.5 + rot: -1.5707963267948966 rad + pos: -9.5,-5.5 parent: 1 - - uid: 1233 + - uid: 1295 components: - type: Transform - pos: 4.5,-3.5 + rot: -1.5707963267948966 rad + pos: -9.5,-6.5 parent: 1 - - uid: 1234 + - uid: 1296 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,9.5 - parent: 1 - - uid: 1236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,6.5 - parent: 1 - - uid: 1237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,6.5 + pos: 9.5,4.5 parent: 1 - - uid: 1238 + - uid: 1297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,6.5 + rot: 1.5707963267948966 rad + pos: 9.5,3.5 parent: 1 -- proto: Railing - entities: - - uid: 1239 + - uid: 1298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-15.5 + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 parent: 1 - - uid: 1240 + - uid: 1299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-14.5 + rot: 1.5707963267948966 rad + pos: 1.5,-13.5 parent: 1 - - uid: 1241 + - uid: 1300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-13.5 + rot: 1.5707963267948966 rad + pos: 1.5,-15.5 parent: 1 - - uid: 1242 + - uid: 1301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 + rot: 1.5707963267948966 rad + pos: 1.5,-14.5 parent: 1 - - uid: 1243 + - uid: 1801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 + rot: 3.141592653589793 rad + pos: 4.5,17.5 parent: 1 - - uid: 1244 + - uid: 1802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 + rot: 3.141592653589793 rad + pos: 4.5,16.5 parent: 1 - - uid: 1245 +- proto: RailingCorner + entities: + - uid: 1302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-26.5 + rot: 1.5707963267948966 rad + pos: 6.5,16.5 parent: 1 - - uid: 1246 + - uid: 1303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-24.5 + rot: 1.5707963267948966 rad + pos: 11.5,-17.5 parent: 1 - - uid: 1247 + - uid: 1304 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-17.5 + rot: 1.5707963267948966 rad + pos: 13.5,-19.5 parent: 1 - - uid: 1248 + - uid: 1305 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,4.5 + pos: -7.5,9.5 parent: 1 - - uid: 1249 + - uid: 1306 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,4.5 + pos: -6.5,11.5 parent: 1 - - uid: 1250 + - uid: 1307 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,4.5 + pos: 2.5,16.5 parent: 1 - - uid: 1251 + - uid: 1308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-26.5 + pos: 2.5,-5.5 parent: 1 - - uid: 1252 + - uid: 1309 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-24.5 + pos: 2.5,-16.5 parent: 1 - - uid: 1253 + - uid: 1310 components: - type: Transform - pos: -6.5,-4.5 + pos: 3.5,0.5 parent: 1 - - uid: 1254 + - uid: 1311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-5.5 + rot: -1.5707963267948966 rad + pos: 1.5,0.5 parent: 1 - - uid: 1255 + - uid: 1312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-5.5 + pos: 13.5,-20.5 parent: 1 - - uid: 1256 + - uid: 1313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,1.5 + rot: 3.141592653589793 rad + pos: -12.5,-15.5 parent: 1 - - uid: 1257 + - uid: 1314 components: - type: Transform - pos: -3.5,-4.5 + rot: 3.141592653589793 rad + pos: -10.5,-7.5 parent: 1 - - uid: 1258 + - uid: 1315 components: - type: Transform - pos: 2.5,0.5 + rot: 3.141592653589793 rad + pos: -8.5,0.5 parent: 1 - - uid: 1259 + - uid: 1316 components: - type: Transform - pos: -3.5,9.5 + rot: 3.141592653589793 rad + pos: -9.5,-3.5 parent: 1 - - uid: 1260 + - uid: 1317 components: - type: Transform - pos: 11.5,-4.5 + rot: 1.5707963267948966 rad + pos: 9.5,5.5 parent: 1 -- proto: RailingCorner - entities: - - uid: 1261 + - uid: 1318 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-16.5 + pos: 10.5,-2.5 parent: 1 - - uid: 1262 + - uid: 1319 components: - type: Transform - pos: 2.5,-5.5 + pos: 10.5,-4.5 parent: 1 - - uid: 1263 +- proto: RailingCornerSmall + entities: + - uid: 1320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,9.5 + rot: 3.141592653589793 rad + pos: 1.5,-12.5 parent: 1 - - uid: 1264 + - uid: 1321 components: - type: Transform - pos: 3.5,0.5 + rot: 3.141592653589793 rad + pos: 1.5,-5.5 parent: 1 - - uid: 1265 + - uid: 1322 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,0.5 + pos: 1.5,-16.5 parent: 1 -- proto: RailingCornerSmall - entities: - - uid: 1266 + - uid: 1323 components: - type: Transform pos: -0.5,-27.5 parent: 1 - - uid: 1267 + - uid: 1324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,10.5 + rot: -1.5707963267948966 rad + pos: 11.5,-19.5 parent: 1 -- proto: RandomVendingSnacks - entities: - - uid: 1268 + - uid: 1325 components: - type: Transform - pos: 0.5,-20.5 + pos: -9.5,-7.5 + parent: 1 + - uid: 1326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 parent: 1 - proto: RCD entities: - - uid: 1269 + - uid: 1327 components: - type: Transform pos: 2.4895868,-28.36768 parent: 1 - proto: RCDAmmo entities: - - uid: 1270 + - uid: 1328 components: - type: Transform pos: 2.2552118,-28.539555 parent: 1 - - uid: 1271 + - uid: 1329 components: - type: Transform pos: 2.4114618,-28.539555 parent: 1 - proto: ReinforcedPlasmaWindow entities: - - uid: 1272 + - uid: 1330 components: - type: Transform pos: -12.5,-22.5 parent: 1 - - uid: 1273 + - uid: 1331 components: - type: Transform pos: -12.5,-23.5 parent: 1 - - uid: 1274 + - uid: 1332 components: - type: Transform pos: -12.5,-24.5 parent: 1 - - uid: 1278 - components: - - type: Transform - pos: 12.5,-21.5 - parent: 1 - - uid: 1279 - components: - - type: Transform - pos: 12.5,-22.5 - parent: 1 - - uid: 1280 - components: - - type: Transform - pos: 12.5,-23.5 - parent: 1 - - uid: 1281 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 1 - - uid: 1282 + - uid: 1333 components: - type: Transform pos: 4.5,-17.5 parent: 1 - - uid: 1283 + - uid: 1334 components: - type: Transform pos: 5.5,-17.5 parent: 1 - - uid: 1284 + - uid: 1335 components: - type: Transform pos: 6.5,-17.5 parent: 1 - - uid: 1285 + - uid: 1336 components: - type: Transform pos: 5.5,-4.5 parent: 1 - - uid: 1286 + - uid: 1337 components: - type: Transform pos: 3.5,-4.5 parent: 1 - - uid: 1287 + - uid: 1338 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 1288 + - uid: 1339 components: - type: Transform pos: 4.5,-4.5 parent: 1 - proto: ReinforcedWindow entities: - - uid: 1289 + - uid: 1340 components: - type: Transform pos: -2.5,-8.5 parent: 1 - - uid: 1290 + - uid: 1341 components: - type: Transform pos: -2.5,-7.5 parent: 1 - - uid: 1291 + - uid: 1342 components: - type: Transform pos: -2.5,-9.5 parent: 1 - - uid: 1292 + - uid: 1343 components: - type: Transform pos: 2.5,-25.5 parent: 1 - - uid: 1293 + - uid: 1344 components: - type: Transform pos: 1.5,-25.5 parent: 1 - - uid: 1294 + - uid: 1345 components: - type: Transform pos: 1.5,-26.5 parent: 1 - - uid: 1295 + - uid: 1346 components: - type: Transform pos: -2.5,-11.5 parent: 1 - - uid: 1296 + - uid: 1347 components: - type: Transform pos: -2.5,-15.5 parent: 1 -- proto: RubberStampEmpire +- proto: RomaineBible entities: - - uid: 1298 + - uid: 1348 components: - type: Transform - pos: -3.8295627,4.3123 + pos: 0.68456995,8.628288 parent: 1 -- proto: SheetPlasma1 - entities: - - uid: 1299 + - uid: 1349 components: - type: Transform - pos: -6.2016025,-9.712741 + pos: 4.667796,-18.42695 parent: 1 - - uid: 1300 +- proto: ScrapFaxMachine + entities: + - uid: 1350 components: - type: Transform - pos: -6.4895864,-9.781297 + pos: 5.4670944,-25.431835 parent: 1 - - uid: 1301 +- proto: ShardGlass + entities: + - uid: 1351 components: - type: Transform - pos: -6.722717,-9.753875 + pos: -5.0402684,2.5269613 parent: 1 -- proto: ShuttersNormalOpen +- proto: SheetPlasma1 entities: - - uid: 1302 + - uid: 1352 components: - type: Transform - pos: -5.5,12.5 + pos: -6.2016025,-9.712741 parent: 1 - - type: DeviceLinkSink - links: - - 1307 - - uid: 1303 + - uid: 1353 + components: + - type: Transform + pos: -6.4895864,-9.781297 + parent: 1 + - uid: 1354 + components: + - type: Transform + pos: -6.722717,-9.753875 + parent: 1 +- proto: Shower + entities: + - uid: 1355 components: - type: Transform - pos: -1.5,12.5 + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 parent: 1 - - type: DeviceLinkSink - links: - - 1307 - - uid: 1304 + - type: Fixtures + fixtures: {} +- proto: ShuttersNormalOpen + entities: + - uid: 1356 components: - type: Transform + rot: 3.141592653589793 rad pos: -2.5,12.5 parent: 1 - type: DeviceLinkSink links: - - 1307 - - uid: 1305 + - 1359 + - uid: 1357 components: - type: Transform + rot: 3.141592653589793 rad pos: -4.5,12.5 parent: 1 - type: DeviceLinkSink links: - - 1307 - - uid: 1306 + - 1359 + - uid: 1358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,11.5 + rot: 3.141592653589793 rad + pos: -3.5,12.5 parent: 1 - type: DeviceLinkSink links: - - 1307 + - 1359 - proto: SignalButton entities: - - uid: 1307 + - uid: 1359 components: - type: Transform rot: -1.5707963267948966 rad @@ -11566,37 +12685,53 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1306: + 1356: - - Pressed - Toggle - 1303: + 1358: - - Pressed - Toggle - 1304: + 1357: - - Pressed - Toggle - 1305: + - uid: 1360 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 128: - - Pressed - Toggle - 1302: + 136: - - Pressed - Toggle - - uid: 1309 + - uid: 1361 components: - type: Transform - pos: 4.5,8.5 + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 124: + 137: - - Pressed - Toggle - 135: + - uid: 1362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 127: - - Pressed - Toggle - proto: SignalButtonDirectional entities: - - uid: 1310 + - uid: 1363 components: - type: Transform rot: 1.5707963267948966 rad @@ -11604,10 +12739,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 134: + 135: - - Pressed - Toggle - - uid: 1311 + - uid: 1364 components: - type: Transform rot: 1.5707963267948966 rad @@ -11615,201 +12750,200 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 125: + 129: - - Pressed - Toggle - - uid: 1312 + - uid: 1365 components: - type: Transform pos: -7.5,-4.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 131: + 133: - - Pressed - Toggle - - uid: 1313 + - uid: 1366 components: - type: Transform pos: 10.5,-20.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 132: + 134: - - Pressed - Toggle - - uid: 1314 +- proto: SignArmory + entities: + - uid: 1367 components: - type: Transform - pos: 6.5,1.5 + pos: 0.5,1.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 133: - - - Pressed - - Toggle - proto: SignBridge entities: - - uid: 1315 + - uid: 1368 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-20.5 parent: 1 - - uid: 1316 + - uid: 1369 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-22.5 parent: 1 -- proto: SignCargo - entities: - - uid: 1317 + - uid: 1370 components: - type: Transform - pos: -2.5,-12.5 + pos: 3.5,-23.5 parent: 1 - proto: SignConference entities: - - uid: 1318 + - uid: 1371 components: - type: Transform pos: 0.5,-5.5 parent: 1 -- proto: SignEngineering +- proto: SignDirectionalDorms entities: - - uid: 1319 + - uid: 1372 components: - type: Transform - pos: -1.5,-23.5 + rot: -1.5707963267948966 rad + pos: -7.5,-22.5 parent: 1 -- proto: SignEVA - entities: - - uid: 1320 + - uid: 1373 components: - type: Transform - pos: 0.5,-12.5 + pos: -8.5,-20.5 parent: 1 - - uid: 1321 +- proto: SignEngineering + entities: + - uid: 1374 components: - type: Transform - pos: 0.5,-9.5 + pos: -1.5,-23.5 parent: 1 -- proto: SinkWide +- proto: SignEVA entities: - - uid: 1322 + - uid: 1375 components: - type: Transform - pos: -3.5,0.5 + pos: 0.5,-12.5 parent: 1 - - uid: 1323 + - uid: 1376 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-1.5 + pos: 0.5,-9.5 parent: 1 - - uid: 1324 +- proto: Sink + entities: + - uid: 1377 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 1325 +- proto: SinkWide + entities: + - uid: 1378 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-1.5 + pos: -4.5,-1.5 parent: 1 - proto: SMESBasic entities: - - uid: 1326 + - uid: 1379 components: - type: Transform pos: -6.5,-28.5 parent: 1 - proto: SoapSyndie entities: - - uid: 1327 + - uid: 1380 components: - type: Transform pos: -6.4883375,-0.45261037 parent: 1 - proto: SodaDispenser entities: - - uid: 1328 + - uid: 1381 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,3.5 + pos: -5.5,3.5 + parent: 1 +- proto: SpaceCash + entities: + - uid: 1382 + components: + - type: Transform + pos: -2.3738375,9.803488 + parent: 1 + - uid: 1383 + components: + - type: Transform + pos: -2.724327,9.426944 parent: 1 - proto: StairDark entities: - - uid: 1329 + - uid: 1384 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 1330 + - uid: 1385 components: - type: Transform pos: -4.5,-5.5 parent: 1 - proto: StairStage entities: - - uid: 1331 + - uid: 1386 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-25.5 parent: 1 - - uid: 1332 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,4.5 - parent: 1 - proto: StairStageDark entities: - - uid: 1333 + - uid: 1387 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-25.5 parent: 1 - - uid: 1334 + - uid: 1388 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,1.5 parent: 1 - - uid: 1335 - components: - - type: Transform - pos: -2.5,8.5 - parent: 1 - proto: StoolBar entities: - - uid: 1336 + - uid: 1389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,3.5 + rot: 3.141592653589793 rad + pos: 0.5,7.5 parent: 1 - - uid: 1337 + - uid: 1390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,4.5 + pos: -2.5,10.5 parent: 1 - proto: SubstationBasic entities: - - uid: 1338 + - uid: 1391 components: - type: Transform pos: -6.5,-29.5 parent: 1 - proto: SuitStorageBase entities: - - uid: 54 + - uid: 57 components: - type: Transform pos: 5.5,4.5 @@ -11838,11 +12972,11 @@ entities: showEnts: False occludes: True ents: - - 57 + - 60 + - 61 - 58 - - 55 - - 56 - - uid: 59 + - 59 + - uid: 62 components: - type: Transform pos: 5.5,3.5 @@ -11873,2214 +13007,2120 @@ entities: showEnts: False occludes: True ents: + - 66 + - 65 + - 64 - 63 - - 62 - - 61 - - 60 - - uid: 853 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 857 - - 858 - - 856 - - 854 - - 855 - - uid: 859 - components: - - type: Transform - pos: 0.5,8.5 - parent: 1 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 863 - - 864 - - 861 - - 862 - - 860 - - uid: 865 - components: - - type: Transform - pos: -1.5,8.5 - parent: 1 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 866 - - 870 - - 867 - - 869 - - 868 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 1339 + - uid: 1392 components: - type: Transform pos: -4.5,-30.5 parent: 1 -- proto: SwarmrocketClip - entities: - - uid: 1340 - components: - - type: Transform - pos: 3.5939274,-3.408547 - parent: 1 - - uid: 1341 - components: - - type: Transform - pos: 3.3595524,-3.7132344 - parent: 1 -- proto: SyndicatePersonalAI - entities: - - uid: 1342 - components: - - type: MetaData - desc: An Imperial model personal AI. - name: imperial personal AI - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.497063,-23.8065 - parent: 1 - proto: Table entities: - - uid: 1343 + - uid: 1393 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-19.5 parent: 1 - - uid: 1344 +- proto: TableCarpet + entities: + - uid: 1394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-22.5 + pos: -2.5,9.5 parent: 1 - - uid: 1345 +- proto: TableFancyPurple + entities: + - uid: 1395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-23.5 + pos: 3.5,-18.5 parent: 1 - - uid: 1346 + - uid: 1396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-24.5 + pos: 7.5,-18.5 parent: 1 -- proto: TableFancyPurple - entities: - - uid: 1235 + - uid: 1397 components: - type: Transform - pos: 4.5,-25.5 + pos: 8.5,-18.5 parent: 1 - - uid: 1347 + - uid: 1398 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-24.5 parent: 1 - - uid: 1348 + - uid: 1399 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 1 - - uid: 1349 + - uid: 1400 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-26.5 parent: 1 - - uid: 1350 + - uid: 1401 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-26.5 parent: 1 + - uid: 1402 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 - proto: TableGlass entities: - - uid: 1351 + - uid: 1403 components: - type: Transform pos: -6.5,-8.5 parent: 1 - - uid: 1352 + - uid: 1404 components: - type: Transform pos: -6.5,-9.5 parent: 1 - - uid: 1353 + - uid: 1405 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 1354 + - uid: 1406 components: - type: Transform pos: -4.5,-9.5 parent: 1 - proto: TableReinforced entities: - - uid: 1355 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,8.5 - parent: 1 - - uid: 1356 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,8.5 - parent: 1 - - uid: 1357 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-24.5 - parent: 1 - - uid: 1358 + - uid: 1407 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-22.5 parent: 1 - - uid: 1359 + - uid: 1408 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-23.5 parent: 1 - - uid: 1360 + - uid: 1409 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 - - uid: 1361 + - uid: 1410 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-28.5 parent: 1 - - uid: 1362 + - uid: 1411 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-29.5 parent: 1 - - uid: 1363 + - uid: 1412 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-28.5 parent: 1 - - uid: 1364 + - uid: 1413 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-26.5 parent: 1 - - uid: 1365 + - uid: 1414 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-25.5 parent: 1 - - uid: 1366 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 1 - - uid: 1367 - components: - - type: Transform - pos: 7.5,-19.5 - parent: 1 - - uid: 1368 + - uid: 1415 components: - type: Transform - pos: 7.5,-20.5 + pos: 5.5,-25.5 parent: 1 - proto: TableWood entities: - - uid: 1369 - components: - - type: Transform - pos: -5.5,2.5 - parent: 1 - - uid: 1370 + - uid: 1416 components: - type: Transform - pos: -1.5,2.5 + pos: -3.5,3.5 parent: 1 - - uid: 1371 + - uid: 1417 components: - type: Transform - pos: -1.5,3.5 + rot: -1.5707963267948966 rad + pos: -5.5,3.5 parent: 1 - - uid: 1372 + - uid: 1418 components: - type: Transform - pos: -1.5,4.5 + rot: -1.5707963267948966 rad + pos: -5.5,2.5 parent: 1 - - uid: 1373 + - uid: 1419 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,4.5 + rot: -1.5707963267948966 rad + pos: -5.5,4.5 parent: 1 - proto: TelecomServer entities: - - uid: 927 + - uid: 1420 components: - type: Transform - pos: 0.5,-25.5 + pos: -1.5,-25.5 parent: 1 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 928 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - proto: ThrusterDSMWarship entities: - - uid: 1374 + - uid: 1421 components: - type: Transform pos: 0.5,10.5 parent: 1 - - uid: 1375 + - uid: 1422 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-32.5 parent: 1 - - uid: 1376 + - uid: 1423 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-32.5 parent: 1 - - uid: 1377 + - uid: 1424 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-32.5 parent: 1 - - uid: 1378 + - uid: 1425 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-32.5 parent: 1 - - uid: 1379 + - uid: 1426 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-32.5 parent: 1 - - uid: 1380 + - uid: 1427 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-32.5 parent: 1 - - uid: 1381 + - uid: 1428 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-32.5 parent: 1 - - uid: 1382 + - uid: 1429 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-32.5 parent: 1 - - uid: 1383 + - uid: 1430 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,2.5 parent: 1 - - uid: 1384 + - uid: 1431 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,3.5 parent: 1 - - uid: 1385 + - uid: 1432 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,4.5 parent: 1 - - uid: 1386 + - uid: 1433 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,5.5 parent: 1 - - uid: 1387 + - uid: 1434 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-18.5 parent: 1 - - uid: 1388 + - uid: 1435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,2.5 + rot: 3.141592653589793 rad + pos: -4.5,-32.5 parent: 1 - - uid: 1389 + - uid: 1436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,3.5 + pos: -0.5,10.5 parent: 1 - - uid: 1390 + - uid: 1437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,4.5 + rot: 1.5707963267948966 rad + pos: -11.5,-20.5 parent: 1 - - uid: 1391 +- proto: ToolboxElectricalFilled + entities: + - uid: 1438 + components: + - type: Transform + pos: -3.4456987,-28.261448 + parent: 1 +- proto: ToolboxEmergencyFilled + entities: + - uid: 1439 + components: + - type: Transform + pos: -6.497783,-25.358675 + parent: 1 +- proto: ToolboxMechanicalFilled + entities: + - uid: 1440 + components: + - type: Transform + pos: -3.4456987,-28.464573 + parent: 1 +- proto: TradeGoodWine + entities: + - uid: 1441 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 +- proto: TrashBag + entities: + - uid: 1442 + components: + - type: Transform + pos: 8.414298,-1.3230925 + parent: 1 + - uid: 1443 + components: + - type: Transform + pos: 8.646911,-1.12778 + parent: 1 +- proto: UnionfallNemesisMothershipComputer + entities: + - uid: 1444 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-32.5 + pos: 5.5,-3.5 parent: 1 - - uid: 1392 +- proto: UnionfallShipNodeDSM + entities: + - uid: 1445 components: - type: Transform - pos: -0.5,10.5 + pos: -5.5,-13.5 parent: 1 - - uid: 1393 +- proto: VendingMachineCoffee + entities: + - uid: 1446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-20.5 + pos: 0.5,-18.5 parent: 1 -- proto: ToiletDirtyWater +- proto: VendingMachineSalvage entities: - - uid: 1394 + - uid: 1447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,0.5 + pos: -4.5,-17.5 parent: 1 - - uid: 1395 +- proto: VendingMachineStarkist + entities: + - uid: 1448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-1.5 + pos: 0.5,-20.5 parent: 1 -- proto: ToolboxElectricalFilled +- proto: VendingMachineSustenance entities: - - uid: 1396 + - uid: 1449 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 1450 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 +- proto: VendingMachineYouTool + entities: + - uid: 1451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 1452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + - uid: 1453 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 1 + - uid: 1454 components: - type: Transform - pos: -3.4456987,-28.261448 + pos: 12.5,-21.5 parent: 1 -- proto: ToolboxEmergencyFilled - entities: - - uid: 1397 + - uid: 1455 components: - type: Transform - pos: -6.497783,-25.358675 + pos: 12.5,-22.5 parent: 1 -- proto: ToolboxMechanicalFilled - entities: - - uid: 1398 + - uid: 1456 components: - type: Transform - pos: -3.4456987,-28.464573 + pos: 12.5,-23.5 parent: 1 -- proto: UnionfallNemesisMothershipComputer - entities: - - uid: 1399 + - uid: 1457 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-3.5 + pos: -5.5,12.5 parent: 1 -- proto: UnionfallShipNodeDSM - entities: - - uid: 1400 + - uid: 1458 components: - type: Transform - pos: -5.5,-13.5 + rot: 3.141592653589793 rad + pos: -1.5,12.5 parent: 1 -- proto: VendingMachineCoffee - entities: - - uid: 1401 + - uid: 1459 components: - type: Transform - pos: 1.5,4.5 + rot: 1.5707963267948966 rad + pos: 9.5,0.5 parent: 1 -- proto: VendingMachineSalvage - entities: - - uid: 1402 + - uid: 1460 components: - type: Transform - pos: -4.5,-17.5 + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 parent: 1 -- proto: VendingMachineSovietSoda - entities: - - uid: 1403 + - uid: 1461 components: - type: Transform - pos: 1.5,3.5 + rot: 3.141592653589793 rad + pos: -1.5,11.5 parent: 1 -- proto: VendingMachineSustenance - entities: - - uid: 1404 + - uid: 1462 components: - type: Transform - pos: -1.5,0.5 + rot: 3.141592653589793 rad + pos: 9.5,2.5 parent: 1 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 1405 + - uid: 1463 components: - type: Transform - pos: 3.5,4.5 + rot: 3.141592653589793 rad + pos: 8.5,2.5 parent: 1 -- proto: VendingMachineYouTool - entities: - - uid: 1406 + - uid: 1464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 + rot: 3.141592653589793 rad + pos: 8.5,3.5 parent: 1 -- proto: WallPlastitanium - entities: - - uid: 129 + - uid: 1465 components: - type: Transform pos: -10.5,-26.5 parent: 1 - - uid: 1083 + - uid: 1466 components: - type: Transform pos: -12.5,-25.5 parent: 1 - - uid: 1084 + - uid: 1467 components: - type: Transform pos: -11.5,-25.5 parent: 1 - - uid: 1275 + - uid: 1468 components: - type: Transform pos: -11.5,-26.5 parent: 1 - - uid: 1276 + - uid: 1469 components: - type: Transform pos: -10.5,-27.5 parent: 1 - - uid: 1407 + - uid: 1470 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 1408 + - uid: 1471 components: - type: Transform pos: 0.5,-17.5 parent: 1 - - uid: 1409 + - uid: 1472 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 1410 + - uid: 1473 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 1411 + - uid: 1474 components: - type: Transform pos: 0.5,-14.5 parent: 1 - - uid: 1412 + - uid: 1475 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 1413 + - uid: 1476 components: - type: Transform pos: 0.5,-12.5 parent: 1 - - uid: 1414 + - uid: 1477 components: - type: Transform pos: 0.5,-9.5 parent: 1 - - uid: 1415 + - uid: 1478 components: - type: Transform pos: 0.5,-8.5 parent: 1 - - uid: 1416 + - uid: 1479 components: - type: Transform pos: 0.5,-7.5 parent: 1 - - uid: 1417 + - uid: 1480 components: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 1418 + - uid: 1481 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 1419 + - uid: 1482 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 1420 + - uid: 1483 components: - type: Transform pos: -10.5,-16.5 parent: 1 - - uid: 1421 + - uid: 1484 components: - type: Transform pos: 11.5,-27.5 parent: 1 - - uid: 1422 + - uid: 1485 components: - type: Transform pos: -1.5,1.5 parent: 1 - - uid: 1423 + - uid: 1486 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 1424 + - uid: 1487 components: - type: Transform pos: -2.5,1.5 parent: 1 - - uid: 1425 + - uid: 1488 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 1426 + - uid: 1489 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 1427 + - uid: 1490 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 1428 + - uid: 1491 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 1429 + - uid: 1492 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 1 - - uid: 1430 + - uid: 1493 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,6.5 parent: 1 - - uid: 1431 + - uid: 1494 components: - type: Transform pos: -2.5,-10.5 parent: 1 - - uid: 1432 + - uid: 1495 components: - type: Transform pos: -10.5,-15.5 parent: 1 - - uid: 1433 + - uid: 1496 components: - type: Transform pos: -2.5,-12.5 parent: 1 - - uid: 1434 + - uid: 1497 components: - type: Transform pos: -2.5,-14.5 parent: 1 - - uid: 1435 + - uid: 1498 components: - type: Transform pos: -2.5,-16.5 parent: 1 - - uid: 1436 + - uid: 1499 components: - type: Transform pos: 1.5,-17.5 parent: 1 - - uid: 1437 + - uid: 1500 components: - type: Transform pos: 1.5,-18.5 parent: 1 - - uid: 1438 + - uid: 1501 components: - type: Transform pos: 1.5,-20.5 parent: 1 - - uid: 1439 + - uid: 1502 components: - type: Transform pos: 1.5,-21.5 parent: 1 - - uid: 1440 + - uid: 1503 components: - type: Transform pos: 0.5,-21.5 parent: 1 - - uid: 1441 + - uid: 1504 components: - type: Transform pos: -0.5,-21.5 parent: 1 - - uid: 1442 + - uid: 1505 components: - type: Transform pos: -0.5,-23.5 parent: 1 - - uid: 1443 + - uid: 1506 components: - type: Transform pos: -1.5,-23.5 parent: 1 - - uid: 1444 + - uid: 1507 components: - type: Transform pos: -2.5,-23.5 parent: 1 - - uid: 1445 + - uid: 1508 components: - type: Transform pos: -3.5,-23.5 parent: 1 - - uid: 1446 + - uid: 1509 components: - type: Transform pos: -4.5,-23.5 parent: 1 - - uid: 1447 + - uid: 1510 components: - type: Transform pos: -6.5,-23.5 parent: 1 - - uid: 1448 + - uid: 1511 components: - type: Transform pos: -3.5,-16.5 parent: 1 - - uid: 1449 + - uid: 1512 components: - type: Transform pos: -3.5,-17.5 parent: 1 - - uid: 1450 + - uid: 1513 components: - type: Transform pos: -3.5,-19.5 parent: 1 - - uid: 1451 + - uid: 1514 components: - type: Transform pos: -3.5,-20.5 parent: 1 - - uid: 1452 + - uid: 1515 components: - type: Transform pos: -4.5,-16.5 parent: 1 - - uid: 1453 + - uid: 1516 components: - type: Transform pos: -5.5,-16.5 parent: 1 - - uid: 1454 + - uid: 1517 components: - type: Transform pos: -6.5,-16.5 parent: 1 - - uid: 1455 + - uid: 1518 components: - type: Transform pos: -7.5,-16.5 parent: 1 - - uid: 1456 + - uid: 1519 components: - type: Transform pos: -8.5,-16.5 parent: 1 - - uid: 1457 + - uid: 1520 components: - type: Transform pos: -7.5,-19.5 parent: 1 - - uid: 1458 + - uid: 1521 components: - type: Transform pos: -7.5,-17.5 parent: 1 - - uid: 1459 + - uid: 1522 components: - type: Transform pos: -7.5,-20.5 parent: 1 - - uid: 1460 + - uid: 1523 components: - type: Transform pos: -6.5,-20.5 parent: 1 - - uid: 1461 + - uid: 1524 components: - type: Transform pos: -5.5,-20.5 parent: 1 - - uid: 1462 + - uid: 1525 components: - type: Transform pos: -4.5,-20.5 parent: 1 - - uid: 1463 + - uid: 1526 components: - type: Transform pos: -7.5,-22.5 parent: 1 - - uid: 1464 + - uid: 1527 components: - type: Transform pos: -7.5,-23.5 parent: 1 - - uid: 1465 + - uid: 1528 components: - type: Transform pos: -3.5,-10.5 parent: 1 - - uid: 1466 + - uid: 1529 components: - type: Transform pos: -4.5,-10.5 parent: 1 - - uid: 1467 + - uid: 1530 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 1468 + - uid: 1531 components: - type: Transform pos: -6.5,-10.5 parent: 1 - - uid: 1469 + - uid: 1532 components: - type: Transform pos: -7.5,-10.5 parent: 1 - - uid: 1470 + - uid: 1533 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 1471 + - uid: 1534 components: - type: Transform pos: -8.5,-14.5 parent: 1 - - uid: 1472 + - uid: 1535 components: - type: Transform pos: -8.5,-15.5 parent: 1 - - uid: 1473 + - uid: 1536 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 1474 + - uid: 1537 components: - type: Transform pos: -4.5,-2.5 parent: 1 - - uid: 1475 + - uid: 1538 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 1476 + - uid: 1539 components: - type: Transform pos: -6.5,-2.5 parent: 1 - - uid: 1477 + - uid: 1540 components: - type: Transform pos: -7.5,-4.5 parent: 1 - - uid: 1478 + - uid: 1541 components: - type: Transform pos: -7.5,-3.5 parent: 1 - - uid: 1479 + - uid: 1542 components: - type: Transform pos: -9.5,-16.5 parent: 1 - - uid: 1480 + - uid: 1543 components: - type: Transform pos: -7.5,-6.5 parent: 1 - - uid: 1481 + - uid: 1544 components: - type: Transform pos: -7.5,-8.5 parent: 1 - - uid: 1482 + - uid: 1545 components: - type: Transform pos: -7.5,-9.5 parent: 1 - - uid: 1483 + - uid: 1546 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 1484 + - uid: 1547 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 1485 + - uid: 1548 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 1486 + - uid: 1549 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 1487 + - uid: 1550 components: - type: Transform pos: -7.5,1.5 parent: 1 - - uid: 1488 - components: - - type: Transform - pos: -11.5,-12.5 - parent: 1 - - uid: 1489 - components: - - type: Transform - pos: -2.5,3.5 - parent: 1 - - uid: 1490 + - uid: 1551 components: - type: Transform - pos: -2.5,4.5 + pos: -11.5,-12.5 parent: 1 - - uid: 1491 + - uid: 1552 components: - type: Transform - pos: -2.5,5.5 + pos: -2.5,3.5 parent: 1 - - uid: 1492 + - uid: 1553 components: - type: Transform - pos: -2.5,6.5 + pos: -2.5,4.5 parent: 1 - - uid: 1493 + - uid: 1554 components: - type: Transform - pos: -4.5,6.5 + pos: -2.5,6.5 parent: 1 - - uid: 1494 + - uid: 1555 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 1495 + - uid: 1556 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 1496 + - uid: 1557 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 1497 + - uid: 1558 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 1498 + - uid: 1559 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 1499 + - uid: 1560 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 1500 + - uid: 1561 components: - type: Transform pos: -1.5,6.5 parent: 1 - - uid: 1501 + - uid: 1562 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 1502 + - uid: 1563 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 1503 + - uid: 1564 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 1504 + - uid: 1565 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 1505 + - uid: 1566 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 1506 + - uid: 1567 components: - type: Transform pos: 11.5,-26.5 parent: 1 - - uid: 1507 + - uid: 1568 components: - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 1508 + - uid: 1569 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 1509 + - uid: 1570 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 1510 + - uid: 1571 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 1511 + - uid: 1572 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 1512 - components: - - type: Transform - pos: 7.5,-3.5 - parent: 1 - - uid: 1513 + - uid: 1573 components: - type: Transform pos: -11.5,-10.5 parent: 1 - - uid: 1514 + - uid: 1574 components: - type: Transform pos: -11.5,-13.5 parent: 1 - - uid: 1515 + - uid: 1575 components: - type: Transform pos: -9.5,-11.5 parent: 1 - - uid: 1516 + - uid: 1576 components: - type: Transform pos: 12.5,-25.5 parent: 1 - - uid: 1517 + - uid: 1577 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 1518 + - uid: 1578 components: - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 1519 + - uid: 1579 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-23.5 parent: 1 - - uid: 1520 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 1 - - uid: 1521 - components: - - type: Transform - pos: 7.5,-2.5 - parent: 1 - - uid: 1522 - components: - - type: Transform - pos: 6.5,1.5 - parent: 1 - - uid: 1523 + - uid: 1580 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 1524 + - uid: 1581 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 1525 + - uid: 1582 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 1526 + - uid: 1583 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 1527 + - uid: 1584 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 1528 + - uid: 1585 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 1529 + - uid: 1586 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 1530 + - uid: 1587 components: - type: Transform pos: -11.5,-11.5 parent: 1 - - uid: 1531 + - uid: 1588 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 1532 + - uid: 1589 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 1533 + - uid: 1590 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 1534 + - uid: 1591 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 1535 + - uid: 1592 components: - type: Transform pos: 7.5,5.5 parent: 1 - - uid: 1536 + - uid: 1593 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 1537 + - uid: 1594 components: - type: Transform pos: 7.5,12.5 parent: 1 - - uid: 1538 + - uid: 1595 components: - type: Transform pos: -9.5,-10.5 parent: 1 - - uid: 1539 + - uid: 1596 components: - type: Transform pos: 5.5,8.5 parent: 1 - - uid: 1540 + - uid: 1597 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 1541 + - uid: 1598 components: - type: Transform pos: 2.5,-17.5 parent: 1 - - uid: 1542 + - uid: 1599 components: - type: Transform pos: 4.5,-26.5 parent: 1 - - uid: 1543 + - uid: 1600 components: - type: Transform pos: 10.5,-23.5 parent: 1 - - uid: 1544 + - uid: 1601 components: - type: Transform pos: 10.5,-20.5 parent: 1 - - uid: 1545 + - uid: 1602 components: - type: Transform pos: 9.5,-22.5 parent: 1 - - uid: 1546 + - uid: 1603 components: - type: Transform pos: 9.5,-18.5 parent: 1 - - uid: 1547 + - uid: 1604 components: - type: Transform pos: 9.5,-19.5 parent: 1 - - uid: 1548 + - uid: 1605 components: - type: Transform pos: 9.5,-20.5 parent: 1 - - uid: 1549 + - uid: 1606 components: - type: Transform pos: 5.5,-26.5 parent: 1 - - uid: 1550 + - uid: 1607 components: - type: Transform pos: 10.5,-24.5 parent: 1 - - uid: 1551 + - uid: 1608 components: - type: Transform pos: 11.5,-24.5 parent: 1 - - uid: 1552 + - uid: 1609 components: - type: Transform pos: 10.5,-25.5 parent: 1 - - uid: 1553 + - uid: 1610 components: - type: Transform pos: 9.5,-26.5 parent: 1 - - uid: 1554 + - uid: 1611 components: - type: Transform pos: 2.5,-21.5 parent: 1 - - uid: 1555 + - uid: 1612 components: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 1556 + - uid: 1613 components: - type: Transform pos: 3.5,-22.5 parent: 1 - - uid: 1557 + - uid: 1614 components: - type: Transform pos: 6.5,-22.5 parent: 1 - - uid: 1558 + - uid: 1615 components: - type: Transform pos: 8.5,-22.5 parent: 1 - - uid: 1559 + - uid: 1616 components: - type: Transform pos: 3.5,-23.5 parent: 1 - - uid: 1560 - components: - - type: Transform - pos: 3.5,-24.5 - parent: 1 - - uid: 1561 + - uid: 1617 components: - type: Transform pos: 3.5,-25.5 parent: 1 - - uid: 1562 + - uid: 1618 components: - type: Transform pos: 3.5,-26.5 parent: 1 - - uid: 1563 + - uid: 1619 components: - type: Transform pos: 3.5,-27.5 parent: 1 - - uid: 1564 + - uid: 1620 components: - type: Transform pos: 4.5,-27.5 parent: 1 - - uid: 1565 + - uid: 1621 components: - type: Transform pos: 5.5,-27.5 parent: 1 - - uid: 1566 + - uid: 1622 components: - type: Transform pos: 6.5,-27.5 parent: 1 - - uid: 1567 + - uid: 1623 components: - type: Transform pos: 7.5,-27.5 parent: 1 - - uid: 1568 + - uid: 1624 components: - type: Transform pos: 8.5,-27.5 parent: 1 - - uid: 1569 + - uid: 1625 components: - type: Transform pos: -8.5,-20.5 parent: 1 - - uid: 1570 + - uid: 1626 components: - type: Transform pos: -10.5,-20.5 parent: 1 - - uid: 1571 - components: - - type: Transform - pos: -9.5,-20.5 - parent: 1 - - uid: 1572 + - uid: 1627 components: - type: Transform pos: -10.5,-21.5 parent: 1 - - uid: 1573 + - uid: 1628 components: - type: Transform pos: -11.5,-21.5 parent: 1 - - uid: 1574 + - uid: 1629 components: - type: Transform pos: -9.5,-26.5 parent: 1 - - uid: 1575 + - uid: 1630 components: - type: Transform pos: -8.5,-26.5 parent: 1 - - uid: 1576 + - uid: 1631 components: - type: Transform pos: -7.5,-29.5 parent: 1 - - uid: 1577 + - uid: 1632 components: - type: Transform pos: -7.5,-28.5 parent: 1 - - uid: 1578 + - uid: 1633 components: - type: Transform pos: -7.5,-24.5 parent: 1 - - uid: 1579 + - uid: 1634 components: - type: Transform pos: -7.5,-25.5 parent: 1 - - uid: 1580 + - uid: 1635 components: - type: Transform pos: -7.5,-26.5 parent: 1 - - uid: 1581 + - uid: 1636 components: - type: Transform pos: -7.5,-27.5 parent: 1 - - uid: 1582 + - uid: 1637 components: - type: Transform pos: -2.5,-24.5 parent: 1 - - uid: 1583 + - uid: 1638 components: - type: Transform pos: -2.5,-25.5 parent: 1 - - uid: 1584 + - uid: 1639 components: - type: Transform pos: -2.5,-26.5 parent: 1 - - uid: 1585 + - uid: 1640 components: - type: Transform pos: -2.5,-27.5 parent: 1 - - uid: 1586 + - uid: 1641 components: - type: Transform pos: -3.5,-27.5 parent: 1 - - uid: 1587 + - uid: 1642 components: - type: Transform pos: -4.5,-27.5 parent: 1 - - uid: 1588 + - uid: 1643 components: - type: Transform pos: -5.5,-27.5 parent: 1 - - uid: 1589 + - uid: 1644 components: - type: Transform pos: -6.5,-27.5 parent: 1 - - uid: 1590 + - uid: 1645 components: - type: Transform pos: 8.5,-28.5 parent: 1 - - uid: 1591 + - uid: 1646 components: - type: Transform pos: 8.5,-29.5 parent: 1 - - uid: 1592 + - uid: 1647 components: - type: Transform pos: -7.5,-30.5 parent: 1 - - uid: 1593 + - uid: 1648 components: - type: Transform pos: 8.5,-30.5 parent: 1 - - uid: 1594 + - uid: 1649 components: - type: Transform pos: 6.5,-31.5 parent: 1 - - uid: 1595 + - uid: 1650 components: - type: Transform pos: 2.5,-31.5 parent: 1 - - uid: 1596 + - uid: 1651 components: - type: Transform pos: -5.5,-31.5 parent: 1 - - uid: 1597 + - uid: 1652 components: - type: Transform pos: -1.5,-31.5 parent: 1 - - uid: 1598 + - uid: 1653 components: - type: Transform pos: 5.5,-31.5 parent: 1 - - uid: 1599 + - uid: 1654 components: - type: Transform pos: 4.5,-31.5 parent: 1 - - uid: 1600 + - uid: 1655 components: - type: Transform pos: 3.5,-31.5 parent: 1 - - uid: 1601 + - uid: 1656 components: - type: Transform pos: 1.5,-31.5 parent: 1 - - uid: 1602 + - uid: 1657 components: - type: Transform pos: 0.5,-31.5 parent: 1 - - uid: 1603 + - uid: 1658 components: - type: Transform pos: -0.5,-31.5 parent: 1 - - uid: 1604 + - uid: 1659 components: - type: Transform pos: -2.5,-31.5 parent: 1 - - uid: 1605 + - uid: 1660 components: - type: Transform pos: -3.5,-31.5 parent: 1 - - uid: 1606 + - uid: 1661 components: - type: Transform pos: -4.5,-31.5 parent: 1 - - uid: 1607 + - uid: 1662 components: - type: Transform pos: 2.5,-27.5 parent: 1 - - uid: 1608 + - uid: 1663 components: - type: Transform pos: 1.5,-28.5 parent: 1 - - uid: 1609 + - uid: 1664 components: - type: Transform pos: 1.5,-27.5 parent: 1 - - uid: 1610 + - uid: 1665 components: - type: Transform pos: 1.5,-29.5 parent: 1 - - uid: 1611 + - uid: 1666 components: - type: Transform pos: -1.5,-27.5 parent: 1 - - uid: 1612 + - uid: 1667 components: - type: Transform pos: -1.5,-28.5 parent: 1 - - uid: 1613 + - uid: 1668 components: - type: Transform pos: -1.5,-29.5 parent: 1 - - uid: 1614 + - uid: 1669 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 1615 + - uid: 1670 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,9.5 parent: 1 - - uid: 1616 + - uid: 1671 components: - type: Transform pos: -11.5,-19.5 parent: 1 - - uid: 1617 + - uid: 1672 components: - type: Transform pos: -10.5,-19.5 parent: 1 - - uid: 1618 + - uid: 1673 components: - type: Transform pos: -11.5,-15.5 parent: 1 - - uid: 1619 + - uid: 1674 components: - type: Transform pos: -11.5,-16.5 parent: 1 - - uid: 1620 + - uid: 1675 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,10.5 parent: 1 - - uid: 1621 + - uid: 1676 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,9.5 parent: 1 - - uid: 1622 + - uid: 1677 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-22.5 parent: 1 - - uid: 1623 + - uid: 1678 components: - type: Transform pos: -9.5,-12.5 parent: 1 - - uid: 1624 + - uid: 1679 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 1625 + - uid: 1680 components: - type: Transform pos: 10.5,-27.5 parent: 1 - - uid: 1626 + - uid: 1681 components: - type: Transform pos: 10.5,-28.5 parent: 1 - - uid: 1627 + - uid: 1682 components: - type: Transform pos: -10.5,-14.5 parent: 1 - - uid: 1628 + - uid: 1683 components: - type: Transform pos: -10.5,-13.5 parent: 1 - - uid: 1629 + - uid: 1684 components: - type: Transform pos: -10.5,-10.5 parent: 1 - - uid: 1630 + - uid: 1685 components: - type: Transform pos: -10.5,-11.5 parent: 1 - - uid: 1631 + - uid: 1686 components: - type: Transform pos: 6.5,-26.5 parent: 1 - - uid: 1632 + - uid: 1687 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 1633 + - uid: 1688 components: - type: Transform pos: 10.5,-26.5 parent: 1 - - uid: 1634 + - uid: 1689 components: - type: Transform pos: 12.5,-24.5 parent: 1 - - uid: 1635 + - uid: 1690 components: - type: Transform pos: 11.5,-25.5 parent: 1 - - uid: 1636 + - uid: 1691 components: - type: Transform pos: -10.5,-12.5 parent: 1 - - uid: 1637 + - uid: 1692 components: - type: Transform pos: -9.5,-14.5 parent: 1 - - uid: 1638 + - uid: 1693 components: - type: Transform pos: -9.5,-15.5 parent: 1 - - uid: 1639 + - uid: 1694 components: - type: Transform pos: -9.5,-13.5 parent: 1 - - uid: 1640 + - uid: 1695 components: - type: Transform pos: -9.5,-8.5 parent: 1 + - uid: 1696 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 1697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + - uid: 1698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 1699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + - uid: 1700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 - proto: WallPlastitaniumCMM entities: - - uid: 1641 + - uid: 1701 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-4.5 parent: 1 - - uid: 1642 + - uid: 1702 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-7.5 parent: 1 - - uid: 1643 + - uid: 1703 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-3.5 parent: 1 - - uid: 1644 + - uid: 1704 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-1.5 parent: 1 - - uid: 1645 + - uid: 1705 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-0.5 parent: 1 - - uid: 1646 + - uid: 1706 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-8.5 parent: 1 - - uid: 1647 + - uid: 1707 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-9.5 parent: 1 - - uid: 1648 + - uid: 1708 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-6.5 parent: 1 - - uid: 1649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-2.5 - parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 1650 + - uid: 1709 components: - type: Transform pos: -12.5,-21.5 parent: 1 - - uid: 1651 + - uid: 1710 components: - type: Transform pos: -12.5,-16.5 parent: 1 - - uid: 1652 + - uid: 1711 components: - type: Transform pos: -7.5,6.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestCurved entities: - - uid: 1653 + - uid: 1712 components: - type: Transform pos: 12.5,-20.5 parent: 1 - - uid: 1654 - components: - - type: Transform - pos: 10.5,-4.5 - parent: 1 - - uid: 1655 - components: - - type: Transform - pos: 7.5,1.5 - parent: 1 - proto: WallPlastitaniumDiagonalNorthwestHollow entities: - - uid: 1656 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 1 - - uid: 1657 + - uid: 1713 components: - type: Transform pos: 10.5,-19.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastCurved entities: - - uid: 1658 + - uid: 1714 components: - type: Transform pos: -12.5,-19.5 parent: 1 - - uid: 1659 + - uid: 1715 components: - type: Transform pos: -7.5,-31.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastHollow entities: - - uid: 1660 + - uid: 1716 components: - type: Transform pos: -8.5,-29.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestCurved entities: - - uid: 1661 + - uid: 1717 components: - type: Transform pos: 10.5,-17.5 parent: 1 - - uid: 1662 + - uid: 1718 components: - type: Transform pos: 8.5,-31.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestHollow entities: - - uid: 1663 + - uid: 1719 components: - type: Transform pos: 9.5,-29.5 parent: 1 - proto: WallPlastitaniumDSM entities: - - uid: 1664 + - uid: 1720 components: - type: Transform pos: 5.5,15.5 parent: 1 - - uid: 1665 + - uid: 1721 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 1666 + - uid: 1722 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1667 + - uid: 1723 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 1668 + - uid: 1724 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-27.5 parent: 1 - - uid: 1669 + - uid: 1725 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-27.5 parent: 1 - - uid: 1670 + - uid: 1726 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-31.5 parent: 1 - - uid: 1671 + - uid: 1727 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-4.5 parent: 1 - - uid: 1672 + - uid: 1728 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 1673 + - uid: 1729 components: - type: Transform pos: 5.5,17.5 parent: 1 - - uid: 1674 + - uid: 1730 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 1675 + - uid: 1731 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-28.5 parent: 1 - - uid: 1676 + - uid: 1732 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-32.5 parent: 1 - - uid: 1677 + - uid: 1733 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-32.5 parent: 1 - - uid: 1678 + - uid: 1734 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-32.5 parent: 1 - - uid: 1679 + - uid: 1735 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,10.5 parent: 1 - - uid: 1680 + - uid: 1736 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 1681 + - uid: 1737 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,9.5 parent: 1 - - uid: 1682 + - uid: 1738 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-17.5 parent: 1 - - uid: 1683 + - uid: 1739 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,7.5 parent: 1 - - uid: 1684 + - uid: 1740 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,6.5 parent: 1 - - uid: 1685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 1 - - uid: 1686 + - uid: 1741 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 1687 + - uid: 1742 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 1688 + - uid: 1743 components: - type: Transform pos: 2.5,15.5 parent: 1 - - uid: 1689 + - uid: 1744 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 1 - - uid: 1690 + - uid: 1745 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-4.5 parent: 1 - - uid: 1691 + - uid: 1746 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-4.5 parent: 1 - - uid: 1692 + - uid: 1747 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-17.5 parent: 1 - - uid: 1693 + - uid: 1748 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-17.5 parent: 1 - - uid: 1694 + - uid: 1749 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-27.5 parent: 1 - - uid: 1695 + - uid: 1750 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 1 - - uid: 1696 + - uid: 1751 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,10.5 parent: 1 - - uid: 1697 + - uid: 1752 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-32.5 parent: 1 - - uid: 1698 + - uid: 1753 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,2.5 parent: 1 - - uid: 1699 + - uid: 1754 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,2.5 parent: 1 - - uid: 1700 + - uid: 1755 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 1 - - uid: 1701 + - uid: 1756 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-28.5 parent: 1 - - uid: 1702 + - uid: 1757 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-31.5 parent: 1 - - uid: 1703 + - uid: 1758 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-0.5 parent: 1 - - uid: 1704 + - uid: 1759 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 1 - - uid: 1705 + - uid: 1760 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-13.5 parent: 1 - - uid: 1706 + - uid: 1761 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-12.5 parent: 1 - - uid: 1707 + - uid: 1762 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-2.5 parent: 1 - - uid: 1708 + - uid: 1763 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,12.5 parent: 1 - - uid: 1709 + - uid: 1764 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 1 - - uid: 1710 + - uid: 1765 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - uid: 1711 + - uid: 1766 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,9.5 parent: 1 - - uid: 1712 + - uid: 1767 components: - type: Transform pos: 5.5,16.5 parent: 1 - - uid: 1713 + - uid: 1768 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 1714 + - uid: 1769 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 1715 + - uid: 1770 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 1716 + - uid: 1771 components: - type: Transform pos: 3.5,18.5 parent: 1 - - uid: 1717 + - uid: 1772 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 1718 + - uid: 1773 components: - type: Transform pos: 6.5,15.5 parent: 1 - - uid: 1719 + - uid: 1774 components: - type: Transform pos: 5.5,18.5 parent: 1 - - uid: 1720 + - uid: 1775 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 1721 + - uid: 1776 components: - type: Transform pos: 5.5,14.5 parent: 1 - - uid: 1722 + - uid: 1777 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 1723 + - uid: 1778 components: - type: Transform pos: 3.5,17.5 parent: 1 - proto: WarpPointShip entities: - - uid: 1724 + - uid: 1779 components: + - type: MetaData + name: DSM Nemesis - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-5.5 parent: 1 - proto: WeaponCapacitorRecharger entities: - - uid: 1725 + - uid: 1780 components: - type: Transform rot: -1.5707963267948966 rad @@ -14088,37 +15128,25 @@ entities: parent: 1 - proto: WeaponFlareGun entities: - - uid: 1726 + - uid: 1781 components: - type: Transform pos: -5.634655,-19.159256 parent: 1 - proto: WeaponTurretNeedler entities: - - uid: 1727 + - uid: 1782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,11.5 + rot: 1.5707963267948966 rad + pos: 9.5,5.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 5 - - type: Battery - startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: null machine_board: !type:Container showEnts: False occludes: True @@ -14127,13 +15155,27 @@ entities: showEnts: False occludes: True ents: [] + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + gun_chamber: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon - linkedConsoleId: 894 - - uid: 1728 + linkedConsoleIds: + - 922 + linkedConsoleId: 922 + - type: Battery + startingCharge: 0 + - uid: 1783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,10.5 + rot: -1.5707963267948966 rad + pos: -6.5,11.5 parent: 1 - type: ApcPowerReceiver powerLoad: 5 @@ -14162,8 +15204,10 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 894 - - uid: 1729 + linkedConsoleIds: + - 922 + linkedConsoleId: 922 + - uid: 1784 components: - type: Transform rot: -1.5707963267948966 rad @@ -14196,8 +15240,10 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 894 - - uid: 1730 + linkedConsoleIds: + - 922 + linkedConsoleId: 922 + - uid: 1785 components: - type: Transform rot: 1.5707963267948966 rad @@ -14230,32 +15276,23 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 894 -- proto: WeaponTurretVulcan + linkedConsoleIds: + - 922 + linkedConsoleId: 922 +- proto: WeaponTurretPDT entities: - - uid: 1731 + - uid: 1786 components: - type: Transform - pos: 13.5,-25.5 + rot: 3.141592653589793 rad + pos: 2.5,16.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 5 - - type: Battery - startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: null machine_board: !type:Container showEnts: False occludes: True @@ -14264,32 +15301,25 @@ entities: showEnts: False occludes: True ents: [] - - type: PointCannon - linkedConsoleId: 894 - - uid: 1732 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-15.5 - parent: 1 - type: ApcPowerReceiver powerLoad: 5 + - type: PointCannon + linkedConsoleIds: + - 922 + linkedConsoleId: 922 - type: Battery startingCharge: 0 + - uid: 1787 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 1 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: null machine_board: !type:Container showEnts: False occludes: True @@ -14298,32 +15328,26 @@ entities: showEnts: False occludes: True ents: [] - - type: PointCannon - linkedConsoleId: 894 - - uid: 1733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,16.5 - parent: 1 - type: ApcPowerReceiver powerLoad: 5 + - type: PointCannon + linkedConsoleIds: + - 922 + linkedConsoleId: 922 - type: Battery startingCharge: 0 + - uid: 1788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-15.5 + parent: 1 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: null machine_board: !type:Container showEnts: False occludes: True @@ -14332,31 +15356,25 @@ entities: showEnts: False occludes: True ents: [] + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon - linkedConsoleId: 894 - - uid: 1734 + linkedConsoleIds: + - 922 + linkedConsoleId: 922 + - type: Battery + startingCharge: 0 + - uid: 1789 components: - type: Transform pos: 7.5,-32.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 5 - - type: Battery - startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: null machine_board: !type:Container showEnts: False occludes: True @@ -14365,31 +15383,25 @@ entities: showEnts: False occludes: True ents: [] + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon - linkedConsoleId: 894 - - uid: 1735 + linkedConsoleIds: + - 922 + linkedConsoleId: 922 + - type: Battery + startingCharge: 0 + - uid: 1790 components: - type: Transform pos: -6.5,-32.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 5 - - type: Battery - startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: null machine_board: !type:Container showEnts: False occludes: True @@ -14398,32 +15410,26 @@ entities: showEnts: False occludes: True ents: [] + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon - linkedConsoleId: 894 - - uid: 1736 + linkedConsoleIds: + - 922 + linkedConsoleId: 922 + - type: Battery + startingCharge: 0 + - uid: 1791 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,16.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 5 - - type: Battery - startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: null machine_board: !type:Container showEnts: False occludes: True @@ -14432,32 +15438,26 @@ entities: showEnts: False occludes: True ents: [] - - type: PointCannon - linkedConsoleId: 894 - - uid: 1737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,6.5 - parent: 1 - type: ApcPowerReceiver powerLoad: 5 + - type: PointCannon + linkedConsoleIds: + - 922 + linkedConsoleId: 922 - type: Battery startingCharge: 0 + - uid: 1792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: null machine_board: !type:Container showEnts: False occludes: True @@ -14466,32 +15466,28 @@ entities: showEnts: False occludes: True ents: [] + - type: ApcPowerReceiver + powerLoad: 5 - type: PointCannon - linkedConsoleId: 894 - - uid: 1738 + linkedConsoleIds: + - 922 + linkedConsoleId: 922 + - type: Battery + startingCharge: 0 +- proto: WeaponTurretVulcan + entities: + - uid: 1793 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-4.5 + pos: 9.5,3.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 5 - - type: Battery - startingCharge: 0 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: null machine_board: !type:Container showEnts: False occludes: True @@ -14500,32 +15496,34 @@ entities: showEnts: False occludes: True ents: [] - - type: PointCannon - linkedConsoleId: 894 - - uid: 1739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,0.5 - parent: 1 + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + gun_chamber: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - type: ApcPowerReceiver powerLoad: 5 + - type: PointCannon + linkedConsoleIds: + - 922 + linkedConsoleId: 922 - type: Battery startingCharge: 0 + - uid: 1794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 1 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: null machine_board: !type:Container showEnts: False occludes: True @@ -14534,38 +15532,34 @@ entities: showEnts: False occludes: True ents: [] + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + gun_chamber: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: ApcPowerReceiver + powerLoad: 5 + - type: PointCannon + linkedConsoleIds: + - 922 + linkedConsoleId: 922 + - type: Battery + startingCharge: 0 - proto: WindoorSecure entities: - - uid: 1740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-19.5 - parent: 1 - - uid: 1741 + - uid: 1795 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 - - uid: 1742 + - uid: 1796 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 -- proto: WindowReinforcedDirectional - entities: - - uid: 1743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 1 - - uid: 1744 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 1 ... diff --git a/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMCadetNote.yml b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMCadetNote.yml index 07c4765572e..17bd5eb0cdc 100644 --- a/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMCadetNote.yml +++ b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMCadetNote.yml @@ -8,13 +8,13 @@ DIVINE SOL MANDATE DISCIPLINARY REGIMENT BRIEFING - Cadet, + Soldiers of the Regiment, You serve in a Mandate disciplinary regiment — a formation composed of disgraced soldiers, criminals and condemned veterans. - The Mandate wastes no useful servant of Sol. + Mandate wastes no useful servant. In the Taypan sector our patrol fleet has detected the remnants of a rebel warfleet belonging to the @@ -46,7 +46,7 @@ - Interaction time: 10 seconds - Detonation timer: 60 seconds - Enemy technicians may disarm the device. + Enemy technicians may disarm the device. So defend it till your last breath. ------------------------------------------------ @@ -82,6 +82,6 @@ Redemption is earned through obedience. - Serve Sol faithfully. + FOR THE KAISER! - Glory to the Divine Mandate. \ No newline at end of file + GLORY TO MANDATE! \ No newline at end of file diff --git a/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLCadetNote.yml b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLCadetNote.yml index 451709312fe..2edaf7d1199 100644 --- a/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLCadetNote.yml +++ b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLCadetNote.yml @@ -6,7 +6,7 @@ - type: Paper content: | NEW CRESCENT WORKERS LEAGUE - REVOLUTIONARY CADET BRIEFING + REVOLUTIONARY SOLDIER BRIEFING Comrade, @@ -70,7 +70,7 @@ ------------------------------------------------ - ORDERS TO ALL CADETS + ORDERS TO ALL SOLDIERS 1. Report to the Kommissar or Admiral. 2. Join an active ship crew or obtain diff --git a/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_clementine.yml b/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_clementine.yml index aec5d0efa39..7ec079e6ac4 100644 --- a/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_clementine.yml +++ b/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_clementine.yml @@ -22,7 +22,7 @@ UnionfallShipCaptainNCWL: [ 1, 1 ] UnionfallShipCrewNCWL: [ 2, 2 ] UnionfallLeaderNCWL: [ 1, 1 ] - UnionfallOfficerNCWL: [ 5, 5 ] + UnionfallOfficerNCWL: [ 3, 3 ] UnionfallDoctorNCWL: [ 5, 5 ] - UnionfallRiflemanNCWL: [ 50, 50 ] - UnionfallCadetNCWL: [ 50, 50 ] + UnionfallRiflemanNCWL: [ 10, 10 ] + UnionfallCadetNCWL: [ 20, 20 ] diff --git a/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_nemesis.yml b/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_nemesis.yml index ca4324f08e3..83d601b952b 100644 --- a/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_nemesis.yml +++ b/Resources/Prototypes/_Crescent/Maps/unionfall_gamemode/unionfall_nemesis.yml @@ -22,7 +22,7 @@ UnionfallShipCaptainDSM: [ 1, 1 ] UnionfallShipCrewDSM: [ 2, 2 ] UnionfallLeaderDSM: [ 1, 1 ] - UnionfallOfficerDSM: [ 5, 5 ] + UnionfallOfficerDSM: [ 3, 3 ] UnionfallDoctorDSM: [ 5, 5 ] - UnionfallRiflemanDSM: [ 50, 50 ] - UnionfallCadetDSM: [ 50, 50 ] + UnionfallRiflemanDSM: [ 10, 10 ] + UnionfallCadetDSM: [ 20, 20 ] diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_cadet.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_cadet.yml index 84e7fa02167..fe08e5af975 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_cadet.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_cadet.yml @@ -44,7 +44,7 @@ equipment: neck: ClothingNeckIFFCyan jumpsuit: ClothingUniformJumpsuitImperialCombat - outerClothing: ClothingOuterHardsuitImperialSoldier + outerClothing: ClothingOuterCoatVictorian shoes: ClothingShoesBootsMagDSM belt: ClothingBeltAssaultFilledRifleman gloves: ClothingHandsGlovesImperialLonggloves @@ -60,7 +60,8 @@ - JetpackBlackFilled storage: back: - - BoxMRE - - WeaponPistolComplianceImperial - - CrowbarRed - - HandHeldMassScannerEE + - ClothingMaskImperialCombatGasmask + - VoidsuitKitDSM + - WeaponPistolComplianceImperial + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_doctor.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_doctor.yml index 4d139f37e88..5e5a0717a0c 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_doctor.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_doctor.yml @@ -49,7 +49,7 @@ head: ClothingHeadHatImperialSurgeon neck: ClothingNeckIFFCyan jumpsuit: ClothingUniformJumpsuitImperialSurgeon - outerClothing: ClothingOuterHardsuitImperialWorker + outerClothing: ClothingOuterCoatAuthorityChirurgeon shoes: ClothingShoesBootsMagDSM belt: ClothingBeltAssaultFilledMedic eyes: ClothingEyesHudMedSec @@ -62,18 +62,16 @@ back: ClothingBackpackSatchelMedical inhand: - UnionfallDSMCadetNote - - JetpackBlackFilled storage: back: - - DefibrillatorCompact - - BoxMRE - - MedkitCombatFilled - - OmnizineChemistryBottle - - Bloodpack - - CartridgePuncturase - - CartridgePuncturase - - CartridgePuncturase - - CartridgePuncturase - - CartridgePuncturase - - CrowbarRed - - HandHeldMassScannerEE + - DefibrillatorCompact + - MedkitCombatFilled + - OmnizineChemistryBottle + - Bloodpack + - CartridgePuncturase + - CartridgePuncturase + - CartridgePuncturase + - CartridgePuncturase + - CartridgePuncturase + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_leader.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_leader.yml index c7094b684be..8d42e7c4197 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_leader.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_leader.yml @@ -83,10 +83,11 @@ id: UnionfallLeaderDSMGear equipment: jumpsuit: ClothingUniformJumpsuitImperialGovernor - neck: ClothingNeckCloakImperialCapelet + neck: ClothingNeckImperialGreatcoat back: ClothingBackpackDSM shoes: ClothingShoesBootsMagDSM - head: ClothingHeadHatImperialBicorne + head: ClothingHeadHatImperialPeakedCap + gloves: ClothingHandsGlovesImperialLonggloves outerClothing: ClothingOuterHardsuitImperialKnight id: KnightPDA belt: ClothingBeltAssaultFilledAdjutant @@ -99,7 +100,7 @@ - JetpackBlackFilled storage: back: - - BoxMRE - - WeaponPistolNeoVolker - - CrowbarRed - - HandHeldMassScannerEE + - ClothingMaskImperialCombatGasmask + - WeaponPistolNeoVolker + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_officer.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_officer.yml index 983c3a9bf89..cec0977a474 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_officer.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_officer.yml @@ -86,6 +86,7 @@ back: ClothingBackpackDSM shoes: ClothingShoesBootsMagDSM head: ClothingHeadHatImperialBeret + gloves: ClothingHandsGlovesImperialLonggloves outerClothing: ClothingOuterHardsuitImperialKnight id: KnightPDA belt: ClothingBeltAssaultFilledAdjutant @@ -98,7 +99,7 @@ - JetpackBlackFilled storage: back: - - BoxMRE - - WeaponPistolNeoVolker - - CrowbarRed - - HandHeldMassScannerEE + - ClothingMaskImperialCombatGasmask + - WeaponPistolNeoVolker + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_rifleman.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_rifleman.yml index 96d61d191cc..515a9311447 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_rifleman.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_rifleman.yml @@ -63,7 +63,7 @@ - JetpackBlackFilled storage: back: - - BoxMRE - - WeaponPistolComplianceImperial - - CrowbarRed - - HandHeldMassScannerEE + - ClothingMaskImperialCombatGasmask + - WeaponPistolComplianceImperial + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_captain.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_captain.yml index 10140d246d8..44724fdca52 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_captain.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_captain.yml @@ -85,15 +85,19 @@ neck: ClothingNeckCloakImperialGovernor back: ClothingBackpackDSM shoes: ClothingShoesBootsMagDSM - head: ClothingHeadHatImperialPeakedCap + head: ClothingHeadHatImperialBicorne + gloves: ClothingHandsGlovesImperialLonggloves outerClothing: ClothingOuterHardsuitImperialCommand id: KnightPDA belt: ClothingBeltAssaultFilledCrew pocket1: DoubleEmergencyOxygenTankFilled ears: ClothingHeadsetEmpire eyes: ClothingEyesHudSecurity + inhand: + - JetpackBlackFilled storage: back: - - VoidsuitKitDSM - - BoxMRE - - WeaponPistolNeoVolker + - ClothingMaskImperialCombatGasmask + - WeaponPistolNeoVolker + - HandHeldMassScannerEE + - CrowbarRed diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml index 67740c40c9c..ebd5df0d171 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml @@ -94,5 +94,6 @@ - JetpackBlackFilled storage: back: - - BoxMRE - - WeaponPistolNeoVolker + - ClothingMaskImperialCombatGasmask + - HandHeldMassScannerEE + - CrowbarRed diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml index cbdeca4ab65..4551b2d92cd 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml @@ -50,7 +50,7 @@ equipment: neck: ClothingNeckIFFOrange jumpsuit: ClothingUniformJumpsuitNCWL - outerClothing: ClothingOuterHardsuitNCWLInfantry + outerClothing: ClothingOuterCoatTrench shoes: ClothingShoesBootsMagNCWL belt: ClothingBeltNCWLPouchesFilledRifleman back: ClothingBackpackNCWL @@ -58,7 +58,7 @@ pocket2: ExGrenade ears: ClothingHeadsetNCWL id: NCWLHomeguardSoldatPDA - suitstorage: WeaponSniperNCWLNovomosin + suitstorage: WeaponPistolT91 gloves: ClothingHandsGlovesCombat eyes: ClothingEyesGlassesNCWL inhand: @@ -66,7 +66,10 @@ - JetpackBlackFilled storage: back: - - BoxMRE - - WeaponPistolComrade - - CrowbarRed - - HandHeldMassScannerEE + - ClothingMaskNCWLGasmask + - VoidsuitKitNCWL + - WeaponPistolComrade + - CrowbarRed + - HandHeldMassScannerEE + + diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_doctor.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_doctor.yml index 68381b54b43..2ffb745e152 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_doctor.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_doctor.yml @@ -57,7 +57,7 @@ belt: ClothingBeltNCWLPouchesFilledMedic pocket1: DoubleEmergencyOxygenTankFilled pocket2: ParamedHypo - outerClothing: ClothingOuterHardsuitNCWLMedi + outerClothing: ClothingOuterCoatAuthorityChirurgeon head: ClothingHeadHatNCWLCapsoftMedical suitstorage: WeaponPistolT91 back: ClothingBackpackSatchelMedical @@ -65,18 +65,16 @@ eyes: ClothingEyesHudMedSec inhand: - UnionfallNCWLCadetNote - - JetpackBlackFilled storage: back: - - DefibrillatorCompact - - BoxMRE - - MedkitCombatFilled - - OmnizineChemistryBottle - - Bloodpack - - CartridgePuncturase - - CartridgePuncturase - - CartridgePuncturase - - CartridgePuncturase - - CartridgePuncturase - - CrowbarRed - - HandHeldMassScannerEE + - DefibrillatorCompact + - MedkitCombatFilled + - OmnizineChemistryBottle + - Bloodpack + - CartridgePuncturase + - CartridgePuncturase + - CartridgePuncturase + - CartridgePuncturase + - CartridgePuncturase + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_leader.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_leader.yml index 2c20fbdb51c..a4dfae52adc 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_leader.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_leader.yml @@ -98,7 +98,7 @@ - JetpackBlackFilled storage: back: - - BoxMRE - - WeaponPistolT91 - - CrowbarRed - - HandHeldMassScannerEE + - ClothingMaskNCWLGasmask + - WeaponPistolT91 + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_officer.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_officer.yml index ddbd1fdce51..52c68af83f4 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_officer.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_officer.yml @@ -97,7 +97,7 @@ - JetpackBlackFilled storage: back: - - BoxMRE - - WeaponPistolT91 - - CrowbarRed - - HandHeldMassScannerEE + - ClothingMaskNCWLGasmask + - WeaponPistolT91 + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_rifleman.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_rifleman.yml index c4cceabacdb..61c36482f90 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_rifleman.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_rifleman.yml @@ -64,12 +64,14 @@ suitstorage: WeaponSniperNCWLNovomosin gloves: ClothingHandsGlovesCombat eyes: ClothingEyesGlassesNCWL + inhand: - UnionfallNCWLCadetNote - JetpackBlackFilled + storage: back: - - BoxMRE - - WeaponPistolComrade - - CrowbarRed - - HandHeldMassScannerEE + - ClothingMaskNCWLGasmask + - WeaponPistolComrade + - CrowbarRed + - HandHeldMassScannerEE diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml index 9d1adc6dbd7..80eb944c94c 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml @@ -84,19 +84,21 @@ id: NCWLHomeguardLeaderPDA ears: ClothingHeadsetNCWL shoes: ClothingShoesBootsMagNCWL - outerClothing: ClothingOuterCoatJacketJamrock + outerClothing: ClothingOuterArmorNCWLCarapace head: ClothingHeadHatNCWLBeretAdmiral - belt: ClothingBeltAssaultFilledCrew #looks better + belt: ClothingBeltAssaultFilledCrew pocket1: DoubleEmergencyOxygenTankFilled + pocket2: WeaponPistolT91 back: ClothingBackpackNCWL gloves: ClothingHandsGlovesCombat + suitstorage: JetpackBlackFilled eyes: ClothingEyesHudSecurity - suitstorage: WeaponPistolT91 - storage: + inhand: - ClothingOuterHardsuitNCWLPetya - - JetpackBlackFilled - back: - - VoidsuitKitNCWL - - BoxMRE - - WeaponPistolT91 + + storage: + back: + - ClothingMaskNCWLGasmask + - HandHeldMassScannerEE + - CrowbarRed \ No newline at end of file diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_crew.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_crew.yml index f015b0f76a1..5a7773b9786 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_crew.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_crew.yml @@ -92,10 +92,14 @@ outerClothing: ClothingOuterHardsuitNCWLEngi eyes: ClothingEyesHudSecurity suitstorage: WeaponPistolT91 + inhand: - UnionfallNCWLCadetNote - JetpackBlackFilled + storage: back: - - BoxMRE - - WeaponPistolT91 + - ClothingMaskNCWLGasmask + - WeaponPistolT91 + - HandHeldMassScannerEE + - CrowbarRed \ No newline at end of file From 5384666f1b0565bfe1efffd149fc38ddaba8eb69 Mon Sep 17 00:00:00 2001 From: Emre D Date: Wed, 11 Mar 2026 01:25:35 +0100 Subject: [PATCH 4/6] Unionfallupdate1 --- .../Unionfall/NCWL/unionfall_aegis.yml | 1179 +- .../Unionfall/NCWL/unionfall_vanguard.yml | 511 +- .../Unionfall/unionfall_clementine.yml | 14722 ++++++++-------- .../_Crescent/Unionfall/unionfall_nemesis.yml | 9608 +++++----- 4 files changed, 13477 insertions(+), 12543 deletions(-) diff --git a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_aegis.yml b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_aegis.yml index 9cb0f9518ad..676b8c99ea3 100644 --- a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_aegis.yml +++ b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_aegis.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/11/2026 00:18:32 + entityCount: 260 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 38: FloorDark @@ -24,20 +35,20 @@ entities: chunks: 0,0: ind: 0,0 - tiles: xAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFwEAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAFwEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAARAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAGAEAAAAAFAEAAAAAxAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAARAAAAAAAFAEAAAAARAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwEAAAAA7QAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: xAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABcBAAAAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAXAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAARAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAAAYAQAAAAAAFAEAAAAAAMQAAAAAAADtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAARAAAAAAAABQBAAAAAABEAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwEAAAAAAO0AAAAAAADtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAFAEAAAAARAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAFwEAAAAAFwEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAFAEAAAAAFAEAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFwEAAAAAFAEAAAAARAAAAAAARAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAAFAEAAAAAAEQAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAUAQAAAAAAFwEAAAAAABcBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO0AAAAAAAAUAQAAAAAAFAEAAAAAAMQAAAAAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAFwEAAAAAABQBAAAAAABEAAAAAAAARAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAFwEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFwEAAAAAxAAAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAARAAAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAxAAAAAAAFAEAAAAAGAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAARAAAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAAAAAAAAFwEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAABcBAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAEQAAAAAAADEAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO0AAAAAAADEAAAAAAAAFAEAAAAAABgBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAARAAAAAAAABQBAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAARAAAAAAARAAAAAAAFAEAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwEAAAAAFwEAAAAAFwEAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAARAAAAAAARAAAAAAAFAEAAAAAFwEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBAAAAAAAXAQAAAAAAFwEAAAAAABQBAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmAAAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAAFAEAAAAAAO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAAEQAAAAAAABEAAAAAAAAFAEAAAAAABcBAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -116,9 +127,12 @@ entities: 184: -5,-2 187: -4,-5 193: -4,4 - 231: -5,-2 - 234: -4,-5 - 323: -4,4 + 215: -5,-2 + 218: -4,-5 + 231: -4,4 + 268: -5,-2 + 271: -4,-5 + 277: -4,4 - node: zIndex: 1 id: LatticeCornerNW @@ -132,9 +146,12 @@ entities: 178: 4,4 209: 4,-5 212: 5,-2 - 256: 4,-5 - 259: 5,-2 - 333: 4,4 + 223: 4,-5 + 226: 5,-2 + 236: 4,4 + 265: 4,4 + 289: 4,-5 + 292: 5,-2 - node: zIndex: 1 id: LatticeCornerSE @@ -154,10 +171,14 @@ entities: 196: -4,5 199: -3,5 204: -2,6 - 321: -4,4 - 371: -2,6 - 474: -1,6 - 479: 1,6 + 229: -4,4 + 242: -2,6 + 245: -1,6 + 250: 1,6 + 255: 1,6 + 275: -4,4 + 280: -2,6 + 283: -1,6 - node: zIndex: 1 id: LatticeCornerSW @@ -177,10 +198,14 @@ entities: 177: 4,4 181: 4,5 201: -3,5 - 332: 4,4 - 355: 2,6 - 476: -1,6 - 481: 1,6 + 235: 4,4 + 239: 2,6 + 247: -1,6 + 252: 1,6 + 257: 1,6 + 260: 2,6 + 264: 4,4 + 285: -1,6 - node: id: LatticeEdgeE decals: @@ -205,12 +230,18 @@ entities: 195: -4,5 198: -3,5 203: -2,6 - 229: -5,-2 - 232: -4,-5 - 320: -4,4 - 370: -2,6 - 473: -1,6 - 478: 1,6 + 213: -5,-2 + 216: -4,-5 + 228: -4,4 + 241: -2,6 + 244: -1,6 + 249: 1,6 + 254: 1,6 + 266: -5,-2 + 269: -4,-5 + 274: -4,4 + 279: -2,6 + 282: -1,6 - node: id: LatticeEdgeN decals: @@ -240,14 +271,22 @@ entities: 206: 3,-6 207: 4,-5 210: 5,-2 - 230: -5,-2 - 233: -4,-5 - 235: -3,-6 - 253: 3,-6 - 254: 4,-5 - 257: 5,-2 - 322: -4,4 - 330: 4,4 + 214: -5,-2 + 217: -4,-5 + 219: -3,-6 + 220: 3,-6 + 221: 4,-5 + 224: 5,-2 + 230: -4,4 + 233: 4,4 + 262: 4,4 + 267: -5,-2 + 270: -4,-5 + 272: -3,-6 + 276: -4,4 + 286: 3,-6 + 287: 4,-5 + 290: 5,-2 - node: id: LatticeEdgeS decals: @@ -275,12 +314,18 @@ entities: 194: -4,5 197: -3,5 202: -2,6 - 319: -4,4 - 329: 4,4 - 353: 2,6 - 369: -2,6 - 472: -1,6 - 477: 1,6 + 227: -4,4 + 232: 4,4 + 237: 2,6 + 240: -2,6 + 243: -1,6 + 248: 1,6 + 253: 1,6 + 258: 2,6 + 261: 4,4 + 273: -4,4 + 278: -2,6 + 281: -1,6 - node: id: LatticeEdgeW decals: @@ -305,12 +350,18 @@ entities: 200: -3,5 208: 4,-5 211: 5,-2 - 255: 4,-5 - 258: 5,-2 - 331: 4,4 - 354: 2,6 - 475: -1,6 - 480: 1,6 + 222: 4,-5 + 225: 5,-2 + 234: 4,4 + 238: 2,6 + 246: -1,6 + 251: 1,6 + 256: 1,6 + 259: 2,6 + 263: 4,4 + 284: -1,6 + 288: 4,-5 + 291: 5,-2 - node: color: '#FFFFFFFF' id: TechE @@ -494,9 +545,10 @@ entities: - type: RadiationGridResistance - type: BecomesStation id: VanguardMarkTwo + - type: SelfDeleteGrid - proto: AAAHardpointFixed entities: - - uid: 17 + - uid: 2 components: - type: Transform rot: 3.141592653589793 rad @@ -504,19 +556,19 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 244 + - 128 - type: Physics canCollide: False - proto: AAAHardpointSmallBallistic entities: - - uid: 4 + - uid: 3 components: - type: Transform pos: 0.5,-6.5 parent: 1 - type: Physics canCollide: False - - uid: 16 + - uid: 4 components: - type: Transform rot: 3.141592653589793 rad @@ -524,7 +576,7 @@ entities: parent: 1 - type: Physics canCollide: False - - uid: 261 + - uid: 5 components: - type: Transform rot: 3.141592653589793 rad @@ -534,7 +586,7 @@ entities: canCollide: False - proto: AirCanister entities: - - uid: 111 + - uid: 6 components: - type: Transform anchored: True @@ -546,13 +598,13 @@ entities: bodyType: Static - proto: AirlockCommand entities: - - uid: 81 + - uid: 7 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,0.5 parent: 1 - - uid: 82 + - uid: 8 components: - type: Transform rot: 3.141592653589793 rad @@ -560,13 +612,13 @@ entities: parent: 1 - proto: AirlockCommandHorizontal entities: - - uid: 207 + - uid: 9 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,1.5 parent: 1 - - uid: 208 + - uid: 10 components: - type: Transform rot: 1.5707963267948966 rad @@ -574,13 +626,13 @@ entities: parent: 1 - proto: AirlockShuttle entities: - - uid: 79 + - uid: 11 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,0.5 parent: 1 - - uid: 80 + - uid: 12 components: - type: Transform rot: -1.5707963267948966 rad @@ -588,7 +640,7 @@ entities: parent: 1 - proto: APCBasic entities: - - uid: 145 + - uid: 13 components: - type: Transform rot: 1.5707963267948966 rad @@ -596,24 +648,24 @@ entities: parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 211 + - uid: 14 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 215 + - uid: 15 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 228 + - uid: 16 components: - type: Transform pos: 0.5,6.5 parent: 1 - proto: BoriaticGeneratorHerculesShuttle entities: - - uid: 97 + - uid: 17 components: - type: Transform pos: -1.5,-2.5 @@ -624,7 +676,7 @@ entities: bodyType: Static - proto: ButtonFrameCaution entities: - - uid: 236 + - uid: 18 components: - type: Transform rot: 3.141592653589793 rad @@ -632,575 +684,607 @@ entities: parent: 1 - proto: CableApcExtension entities: - - uid: 33 + - uid: 19 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 34 + - uid: 20 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 35 + - uid: 21 components: - type: Transform pos: -3.5,5.5 parent: 1 - - uid: 36 + - uid: 22 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 38 + - uid: 23 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 39 + - uid: 24 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 40 + - uid: 25 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 41 + - uid: 26 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 42 + - uid: 27 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 85 + - uid: 28 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 148 + - uid: 29 components: - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 149 + - uid: 30 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 150 + - uid: 31 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 151 + - uid: 32 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 152 + - uid: 33 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 153 + - uid: 34 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 154 + - uid: 35 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 155 + - uid: 36 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 156 + - uid: 37 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 157 + - uid: 38 components: - type: Transform pos: 3.5,-4.5 parent: 1 - - uid: 158 + - uid: 39 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 159 + - uid: 40 components: - type: Transform pos: 3.5,-2.5 parent: 1 - - uid: 160 + - uid: 41 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 161 + - uid: 42 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 162 + - uid: 43 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 163 + - uid: 44 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 164 + - uid: 45 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 165 + - uid: 46 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 166 + - uid: 47 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 167 + - uid: 48 components: - type: Transform pos: 3.5,1.5 parent: 1 - - uid: 168 + - uid: 49 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 169 + - uid: 50 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 170 + - uid: 51 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 171 + - uid: 52 components: - type: Transform pos: -2.5,1.5 parent: 1 - - uid: 172 + - uid: 53 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 173 + - uid: 54 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 174 + - uid: 55 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 175 + - uid: 56 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 176 + - uid: 57 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 179 + - uid: 58 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 180 + - uid: 59 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 181 + - uid: 60 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 182 + - uid: 61 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 183 + - uid: 62 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 184 + - uid: 63 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 185 + - uid: 64 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 186 + - uid: 65 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 187 + - uid: 66 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 188 + - uid: 67 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 189 + - uid: 68 components: - type: Transform pos: -3.5,-0.5 parent: 1 - - uid: 190 + - uid: 69 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 191 + - uid: 70 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 192 + - uid: 71 components: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 193 + - uid: 72 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 194 + - uid: 73 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 195 + - uid: 74 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 196 + - uid: 75 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 197 + - uid: 76 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 198 + - uid: 77 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 199 + - uid: 78 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 200 + - uid: 79 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 201 + - uid: 80 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 202 + - uid: 81 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 203 + - uid: 82 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 204 + - uid: 83 components: - type: Transform pos: -1.5,4.5 parent: 1 - - uid: 205 + - uid: 84 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 206 + - uid: 85 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 225 + - uid: 86 components: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 226 + - uid: 87 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 227 + - uid: 88 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 229 + - uid: 89 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 234 + - uid: 90 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 235 + - uid: 91 components: - type: Transform pos: 0.5,6.5 parent: 1 - proto: CableHV entities: - - uid: 141 + - uid: 92 components: - type: Transform pos: -1.5,-2.5 parent: 1 - - uid: 142 + - uid: 93 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 143 + - uid: 94 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 144 + - uid: 95 components: - type: Transform pos: 1.5,-2.5 parent: 1 - proto: CableMV entities: - - uid: 137 + - uid: 96 components: - type: Transform pos: -1.5,-2.5 parent: 1 - - uid: 138 + - uid: 97 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 139 + - uid: 98 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 140 + - uid: 99 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 146 + - uid: 100 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 147 + - uid: 101 components: - type: Transform pos: -2.5,-1.5 parent: 1 - proto: CartridgeShellArmorPiercing entities: - - uid: 27 + - uid: 167 components: - type: Transform - pos: -1.2630869,3.4399166 - parent: 1 - - uid: 28 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 168 components: - type: Transform - pos: -1.3099619,3.557104 - parent: 1 - - uid: 29 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 169 components: - type: Transform - pos: -1.3333994,3.6274166 - parent: 1 - - uid: 31 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 170 components: - type: Transform - pos: -1.2162119,3.3461666 - parent: 1 - - uid: 37 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 171 components: - type: Transform - pos: -1.8255868,3.697729 - parent: 1 - - uid: 77 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 172 components: - type: Transform - pos: -1.4505869,3.697729 - parent: 1 - - uid: 83 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 173 components: - type: Transform - pos: -1.4974619,3.791479 - parent: 1 - - uid: 87 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 174 components: - type: Transform - pos: -1.6380868,3.885229 - parent: 1 - - uid: 178 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 175 components: - type: Transform - pos: -1.6849618,3.9555416 - parent: 1 - - uid: 219 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 176 components: - type: Transform - pos: -1.6380868,3.4399166 - parent: 1 - - uid: 220 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 177 components: - type: Transform - pos: -1.7083993,3.603979 - parent: 1 - - uid: 221 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 178 components: - type: Transform - pos: -1.6146493,3.3930416 - parent: 1 - - uid: 222 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 179 components: - type: Transform - pos: -1.6615243,3.5336666 - parent: 1 - - uid: 231 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 180 components: - type: Transform - pos: -1.4505869,3.088354 - parent: 1 - - uid: 232 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 181 components: - type: Transform - pos: -1.5677743,3.2992916 - parent: 1 - - uid: 233 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 182 components: - type: Transform - pos: -1.4974619,3.2055416 - parent: 1 + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: CartridgeShellHighExplosive entities: - - uid: 267 + - uid: 102 components: - type: Transform pos: 2.4792738,3.7435112 parent: 1 - - uid: 268 + - uid: 103 components: - type: Transform pos: 2.5067015,3.3047543 parent: 1 - proto: Catwalk entities: - - uid: 101 + - uid: 104 components: - type: Transform pos: -3.5,-0.5 parent: 1 - - uid: 102 + - uid: 105 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 103 + - uid: 106 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 104 + - uid: 107 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 105 + - uid: 108 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 106 + - uid: 109 components: - type: Transform pos: 4.5,1.5 parent: 1 - proto: ClothingHeadHelmetNCWLEVA entities: - - uid: 9 + - uid: 111 components: - type: Transform - parent: 5 + parent: 110 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 214 + - uid: 117 components: - type: Transform - parent: 212 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 242 + - uid: 126 components: - type: Transform - parent: 237 + parent: 122 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1208,28 +1292,28 @@ entities: - type: InsideEntityStorage - proto: ClothingOuterNCWLEVA entities: - - uid: 14 + - uid: 112 components: - type: Transform - parent: 5 + parent: 110 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 218 + - uid: 118 components: - type: Transform - parent: 212 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 239 + - uid: 123 components: - type: Transform - parent: 237 + parent: 122 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1237,36 +1321,43 @@ entities: - type: InsideEntityStorage - proto: ClothingShoesBootsMagNCWL entities: - - uid: 13 + - uid: 113 components: - type: Transform - parent: 5 + parent: 110 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 213 + - uid: 119 components: - type: Transform - parent: 212 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 238 + - uid: 125 components: - type: Transform - parent: 237 + parent: 122 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage +- proto: ComputerAdvancedRadar + entities: + - uid: 191 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 - proto: ComputerShuttle entities: - - uid: 244 + - uid: 128 components: - type: Transform pos: -0.5,-0.5 @@ -1287,8 +1378,9 @@ entities: ent: null - type: DeviceLinkSource linkedPorts: - 17: - - Group1: SpaceArtilleryFire + 2: + - - Group1 + - SpaceArtilleryFire - type: NamedModules buttonNames: - Fire 120mm @@ -1298,45 +1390,35 @@ entities: - Module E - proto: ComputerTargeting entities: - - uid: 3 + - uid: 129 components: - type: Transform pos: -0.5,4.5 parent: 1 - - type: TargetingConsole - cannonGroups: - all: - - 259 - - 6 - - 260 - SHI MG-213 light dual machinegun 20x135mm: - - 259 - - 6 - - 260 - proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 7 + - uid: 114 components: - type: Transform - parent: 5 + parent: 110 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 216 + - uid: 120 components: - type: Transform - parent: 212 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 241 + - uid: 127 components: - type: Transform - parent: 237 + parent: 122 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1344,14 +1426,14 @@ entities: - type: InsideEntityStorage - proto: FaxMachineShip entities: - - uid: 95 + - uid: 130 components: - type: Transform pos: 2.5,-0.5 parent: 1 - proto: GasPassiveVent entities: - - uid: 136 + - uid: 131 components: - type: Transform rot: 3.141592653589793 rad @@ -1361,7 +1443,7 @@ entities: color: '#990000FF' - proto: GasPipeBend entities: - - uid: 127 + - uid: 132 components: - type: Transform rot: -1.5707963267948966 rad @@ -1369,7 +1451,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 128 + - uid: 133 components: - type: Transform rot: 1.5707963267948966 rad @@ -1379,77 +1461,77 @@ entities: color: '#990000FF' - proto: GasPipeStraight entities: - - uid: 120 + - uid: 134 components: - type: Transform pos: 0.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 121 + - uid: 135 components: - type: Transform pos: 0.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 122 + - uid: 136 components: - type: Transform pos: 0.5,0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 123 + - uid: 137 components: - type: Transform pos: 0.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 124 + - uid: 138 components: - type: Transform pos: 0.5,2.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 129 + - uid: 139 components: - type: Transform pos: -0.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 130 + - uid: 140 components: - type: Transform pos: -0.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 131 + - uid: 141 components: - type: Transform pos: -0.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 133 + - uid: 142 components: - type: Transform pos: -0.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 134 + - uid: 143 components: - type: Transform pos: -0.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 135 + - uid: 144 components: - type: Transform pos: -0.5,-3.5 @@ -1458,7 +1540,7 @@ entities: color: '#990000FF' - proto: GasPipeTJunction entities: - - uid: 132 + - uid: 145 components: - type: Transform rot: 1.5707963267948966 rad @@ -1468,7 +1550,7 @@ entities: color: '#990000FF' - proto: GasPort entities: - - uid: 117 + - uid: 146 components: - type: Transform rot: 3.141592653589793 rad @@ -1478,14 +1560,14 @@ entities: color: '#0055CCFF' - proto: GasVentPump entities: - - uid: 118 + - uid: 147 components: - type: Transform pos: 0.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 119 + - uid: 148 components: - type: Transform pos: 0.5,3.5 @@ -1494,7 +1576,7 @@ entities: color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 125 + - uid: 149 components: - type: Transform rot: -1.5707963267948966 rad @@ -1502,7 +1584,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 126 + - uid: 150 components: - type: Transform pos: 0.5,4.5 @@ -1511,144 +1593,118 @@ entities: color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 98 + - uid: 151 components: - type: Transform pos: -0.5,-2.5 parent: 1 - proto: Gyroscope entities: - - uid: 100 + - uid: 152 components: - type: Transform pos: 2.5,-2.5 parent: 1 -- proto: HandHeldMassScannerEE - entities: - - uid: 271 - components: - - type: Transform - pos: 1.5378815,-0.3590932 - parent: 1 - - type: Physics - angularDamping: 0 - linearDamping: 0 - - uid: 272 - components: - - type: Transform - pos: 1.3184658,-0.66073847 - parent: 1 - - uid: 273 - components: - - type: Transform - pos: 1.9081465,-0.6470275 - parent: 1 - proto: JetpackBlackFilled entities: - - uid: 12 + - uid: 115 components: - type: Transform - parent: 5 + parent: 110 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 217 + - uid: 121 components: - type: Transform - parent: 212 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 240 + - uid: 124 components: - type: Transform - parent: 237 + parent: 122 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: PaperBin20 +- proto: N14CrateAluminium entities: - - uid: 96 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 1 -- proto: PlastitaniumWindow - entities: - - uid: 8 - components: - - type: Transform - pos: 3.5,4.5 - parent: 1 - - uid: 10 - components: - - type: Transform - pos: 3.5,3.5 - parent: 1 - - uid: 11 - components: - - type: Transform - pos: -2.5,4.5 - parent: 1 - - uid: 30 - components: - - type: Transform - pos: -2.5,3.5 - parent: 1 - - uid: 246 - components: - - type: Transform - pos: 2.5,4.5 - parent: 1 - - uid: 247 + - uid: 166 components: - type: Transform - pos: -1.5,4.5 + pos: -1.5,3.5 parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 182 + - 167 + - 168 + - 169 + - 170 + - 171 + - 172 + - 173 + - 174 + - 175 + - 176 + - 177 + - 178 + - 179 + - 180 + - 181 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: PoweredSmallLight entities: - - uid: 112 + - uid: 159 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-2.5 parent: 1 - - uid: 113 + - uid: 160 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 114 + - uid: 161 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 115 + - uid: 162 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 1 - - uid: 116 + - uid: 163 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,3.5 parent: 1 - - uid: 209 + - uid: 164 components: - type: Transform pos: 1.5,1.5 parent: 1 - type: PointLight energy: 0.5 - - uid: 210 + - uid: 165 components: - type: Transform pos: -0.5,1.5 @@ -1657,37 +1713,32 @@ entities: energy: 0.5 - proto: Rack entities: - - uid: 223 - components: - - type: Transform - pos: -1.5,3.5 - parent: 1 - - uid: 224 + - uid: 183 components: - type: Transform pos: 2.5,3.5 parent: 1 - proto: Railing entities: - - uid: 107 + - uid: 184 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 1 - - uid: 108 + - uid: 185 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 1 - - uid: 109 + - uid: 186 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-2.5 parent: 1 - - uid: 110 + - uid: 187 components: - type: Transform rot: 3.141592653589793 rad @@ -1695,17 +1746,17 @@ entities: parent: 1 - proto: ShuttersNormalOpen entities: - - uid: 230 + - uid: 188 components: - type: Transform pos: 0.5,6.5 parent: 1 - type: DeviceLinkSink links: - - 243 + - 189 - proto: SignalButtonDirectional entities: - - uid: 243 + - uid: 189 components: - type: Transform rot: 3.141592653589793 rad @@ -1713,18 +1764,19 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 230: - - Pressed: Toggle + 188: + - - Pressed + - Toggle - proto: SubstationBasic entities: - - uid: 99 + - uid: 190 components: - type: Transform pos: 1.5,-2.5 parent: 1 - proto: SuitStorageBase entities: - - uid: 5 + - uid: 110 components: - type: Transform pos: 4.5,-0.5 @@ -1737,12 +1789,12 @@ entities: showEnts: False occludes: True ents: - - 7 - - 9 - - 12 - - 13 - - 14 - - uid: 212 + - 114 + - 111 + - 115 + - 113 + - 112 + - uid: 116 components: - type: Transform pos: -3.5,-0.5 @@ -1755,12 +1807,12 @@ entities: showEnts: False occludes: True ents: - - 213 - - 214 - - 216 - - 217 - - 218 - - uid: 237 + - 119 + - 117 + - 120 + - 121 + - 118 + - uid: 122 components: - type: Transform pos: -1.5,-0.5 @@ -1773,20 +1825,14 @@ entities: showEnts: False occludes: True ents: - - 238 - - 239 - - 240 - - 241 - - 242 + - 123 + - 126 + - 127 + - 124 + - 125 - proto: TableReinforced entities: - - uid: 93 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 1 - - uid: 94 + - uid: 192 components: - type: Transform rot: 3.141592653589793 rad @@ -1794,71 +1840,71 @@ entities: parent: 1 - proto: ThrusterNCWLWarship entities: - - uid: 15 + - uid: 193 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,3.5 parent: 1 - - uid: 19 + - uid: 194 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-4.5 parent: 1 - - uid: 20 + - uid: 195 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 1 - - uid: 21 + - uid: 196 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 1 - - uid: 22 + - uid: 197 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-4.5 parent: 1 - - uid: 23 + - uid: 198 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-3.5 parent: 1 - - uid: 24 + - uid: 199 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-2.5 parent: 1 - - uid: 25 + - uid: 200 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 26 + - uid: 201 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 1 - - uid: 32 + - uid: 202 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 73 + - uid: 203 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 86 + - uid: 204 components: - type: Transform rot: -1.5707963267948966 rad @@ -1866,328 +1912,447 @@ entities: parent: 1 - proto: Type99Artillery entities: - - uid: 18 + - uid: 205 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,5.5 parent: 1 -- proto: WallReinforced + - type: ApcPowerReceiver + powerLoad: 1000 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Battery + startingCharge: 18968.877 + - type: ApcPowerReceiverBattery + enabled: True +- proto: WallPlastitanium entities: - - uid: 43 + - uid: 153 components: - type: Transform - pos: 3.5,-0.5 + pos: -1.5,5.5 parent: 1 - - uid: 44 + - uid: 156 components: - type: Transform - pos: 3.5,2.5 + pos: -1.5,4.5 parent: 1 - - uid: 45 + - uid: 157 components: - type: Transform - pos: -0.5,2.5 + pos: -0.5,6.5 parent: 1 - - uid: 46 + - uid: 158 components: - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-3.5 parent: 1 - - uid: 47 + - uid: 210 components: - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-3.5 parent: 1 - - uid: 48 + - uid: 211 components: - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-3.5 parent: 1 - - uid: 49 + - uid: 212 components: - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,-3.5 parent: 1 - - uid: 50 + - uid: 213 components: - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-3.5 parent: 1 - - uid: 51 + - uid: 214 components: - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 - - uid: 52 - components: - - type: Transform - pos: -2.5,-4.5 - parent: 1 - - uid: 53 + - uid: 216 components: - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-3.5 parent: 1 - - uid: 54 + - uid: 218 components: - type: Transform - pos: 3.5,-4.5 + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 parent: 1 - - uid: 55 + - uid: 219 components: - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-4.5 parent: 1 - - uid: 56 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 1 - - uid: 57 + - uid: 220 components: - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-3.5 parent: 1 - - uid: 58 + - uid: 221 components: - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-1.5 parent: 1 - - uid: 59 + - uid: 222 components: - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-2.5 parent: 1 - - uid: 60 + - uid: 223 components: - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-1.5 parent: 1 - - uid: 61 + - uid: 224 components: - type: Transform - pos: -2.5,2.5 + pos: -3.5,2.5 parent: 1 - - uid: 62 + - uid: 225 components: - type: Transform - pos: 4.5,-1.5 + pos: -2.5,2.5 parent: 1 - - uid: 63 + - uid: 227 components: - type: Transform - pos: -3.5,-1.5 + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 parent: 1 - - uid: 64 + - uid: 228 components: - type: Transform - pos: -4.5,-0.5 + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 parent: 1 - - uid: 65 + - uid: 229 components: - type: Transform - pos: -4.5,1.5 + rot: 1.5707963267948966 rad + pos: 2.5,2.5 parent: 1 - - uid: 66 + - uid: 230 components: - type: Transform - pos: -1.5,2.5 + pos: 5.5,1.5 parent: 1 - - uid: 67 + - uid: 231 components: - type: Transform - pos: 5.5,-0.5 + pos: 4.5,2.5 parent: 1 - - uid: 68 + - uid: 233 components: - type: Transform - pos: 5.5,1.5 + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 parent: 1 - - uid: 69 + - uid: 234 components: - type: Transform - pos: 5.5,2.5 + rot: 1.5707963267948966 rad + pos: -0.5,2.5 parent: 1 - - uid: 70 + - uid: 235 components: - type: Transform - pos: -2.5,0.5 + rot: 1.5707963267948966 rad + pos: 3.5,0.5 parent: 1 - - uid: 71 + - uid: 236 components: - type: Transform - pos: 1.5,2.5 + rot: 1.5707963267948966 rad + pos: 1.5,0.5 parent: 1 - - uid: 72 + - uid: 237 components: - type: Transform - pos: 3.5,0.5 + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 parent: 1 - - uid: 74 + - uid: 238 components: - type: Transform - pos: 1.5,0.5 + rot: 1.5707963267948966 rad + pos: -2.5,0.5 parent: 1 - - uid: 75 + - uid: 240 components: - type: Transform - pos: -3.5,2.5 + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 parent: 1 - - uid: 76 + - uid: 241 components: - type: Transform - pos: -2.5,-0.5 + pos: 3.5,3.5 parent: 1 - - uid: 78 + - uid: 242 components: - type: Transform - pos: 4.5,2.5 + rot: 1.5707963267948966 rad + pos: -1.5,2.5 parent: 1 - - uid: 84 + - uid: 243 components: - type: Transform - pos: -4.5,2.5 + pos: 1.5,6.5 parent: 1 - - uid: 88 + - uid: 244 components: - type: Transform - pos: -1.5,5.5 + rot: 1.5707963267948966 rad + pos: 2.5,0.5 parent: 1 - - uid: 89 + - uid: 245 components: - type: Transform - pos: 2.5,2.5 + rot: 1.5707963267948966 rad + pos: -1.5,0.5 parent: 1 - - uid: 90 + - uid: 246 components: - type: Transform - pos: 2.5,5.5 + rot: 1.5707963267948966 rad + pos: -0.5,0.5 parent: 1 - - uid: 91 + - uid: 247 components: - type: Transform - pos: 2.5,0.5 + pos: 2.5,4.5 parent: 1 - - uid: 92 + - uid: 248 components: - type: Transform - pos: -1.5,0.5 + pos: -4.5,1.5 parent: 1 - - uid: 177 + - uid: 250 components: - type: Transform - pos: -0.5,0.5 + rot: 3.141592653589793 rad + pos: -2.5,-4.5 parent: 1 - - uid: 248 + - uid: 252 components: - type: Transform - pos: 1.5,6.5 + rot: 3.141592653589793 rad + pos: 3.5,-4.5 parent: 1 - - uid: 251 + - uid: 255 components: - type: Transform - pos: -0.5,6.5 + pos: 2.5,5.5 parent: 1 -- proto: WallReinforcedDiagonalCurved +- proto: WallPlastitaniumDiagonalCurved entities: - - uid: 253 + - uid: 154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-1.5 + pos: -1.5,6.5 parent: 1 - - uid: 254 + - uid: 155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 + pos: -2.5,4.5 parent: 1 - - uid: 255 + - uid: 215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 + rot: 3.141592653589793 rad + pos: 3.5,-5.5 parent: 1 - - uid: 256 + - uid: 217 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-4.5 parent: 1 - - uid: 257 + - uid: 226 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-5.5 + pos: 5.5,-1.5 parent: 1 - - uid: 258 + - uid: 232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-1.5 + pos: -4.5,2.5 parent: 1 -- proto: WallReinforcedDiagonalHollow - entities: - - uid: 245 + - uid: 239 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,5.5 + rot: -1.5707963267948966 rad + pos: 5.5,2.5 parent: 1 - uid: 249 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,5.5 + pos: -2.5,-5.5 parent: 1 - - uid: 250 + - uid: 251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - uid: 256 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,6.5 parent: 1 - - uid: 252 +- proto: WallReinforced + entities: + - uid: 207 components: - type: Transform - pos: -1.5,6.5 + pos: 3.5,2.5 parent: 1 - proto: WarpPointShip entities: - - uid: 2 + - uid: 257 components: - type: Transform pos: 0.5,0.5 parent: 1 - proto: WeaponTurretPDT entities: - - uid: 6 + - uid: 258 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,5.5 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleIds: - - 3 - linkedConsoleId: 3 + linkedConsoleId: 129 - uid: 259 components: - type: Transform pos: 0.5,-6.5 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleIds: - - 3 - linkedConsoleId: 3 + linkedConsoleId: 129 - uid: 260 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,5.5 parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 5 + - type: Battery + startingCharge: 0 - type: PointCannon - linkedConsoleIds: - - 3 - linkedConsoleId: 3 + linkedConsoleId: 129 ... diff --git a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_vanguard.yml b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_vanguard.yml index 77ed20a2f9c..f552f97483f 100644 --- a/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_vanguard.yml +++ b/Resources/Maps/_Crescent/Unionfall/NCWL/unionfall_vanguard.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 03/11/2026 00:20:02 + entityCount: 203 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 38: FloorDark @@ -24,20 +35,20 @@ entities: chunks: 0,0: ind: 0,0 - tiles: xAAAAAAAxAAAAAAAxAAAAAAAxAAAAAAAFwEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAxAAAAAAARAAAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAJgAAAAAAFAEAAAAARAAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwEAAAAAFwEAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: xAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAABcBAAAAAAAUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmAAAAAAAAJgAAAAAAAMQAAAAAAABEAAAAAAAAFAEAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAACYAAAAAAAAUAQAAAAAARAAAAAAAAO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcBAAAAAAAXAQAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFwEAAAAAxAAAAAAAxAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAARAAAAAAAxAAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAARAAAAAAAFAEAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAFwEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAAFwEAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAUAQAAAAAARAAAAAAAAMQAAAAAAAAmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAAEQAAAAAAAAUAQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAABcBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAA7QAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAARAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAFAEAAAAAFAEAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAFAEAAAAAFAEAAAAAFwEAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAAFwEAAAAAFAEAAAAAFwEAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAFwEAAAAAFAEAAAAAFAEAAAAAFAEAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADtAAAAAAAA7QAAAAAAAO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAFAEAAAAAAEQAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAABQBAAAAAAAUAQAAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAAABQBAAAAAAAUAQAAAAAAFwEAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQBAAAAAAAXAQAAAAAAFAEAAAAAABcBAAAAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAAAAAAAAFwEAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7QAAAAAA7QAAAAAA7QAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAEAAAAARAAAAAAARAAAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAFwEAAAAAFAEAAAAAFAEAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAxAAAAAAAFwEAAAAAFAEAAAAAFwEAAAAAFAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAFAEAAAAAFAEAAAAAFAEAAAAAFwEAAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO0AAAAAAADtAAAAAAAA7QAAAAAAAO0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAQAAAAAARAAAAAAAAEQAAAAAAAAUAQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAAMQAAAAAAAAUAQAAAAAAFAEAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAADEAAAAAAAAFwEAAAAAABQBAAAAAAAUAQAAAAAA7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAAAAAAAAxAAAAAAAABcBAAAAAAAUAQAAAAAAFwEAAAAAABQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAAAAABQBAAAAAAAUAQAAAAAAFAEAAAAAABcBAAAAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -115,19 +126,19 @@ entities: color: '#FFFFFFFF' id: DirtMedium decals: - 251: 0,-4 - 252: 1,-4 - 253: -1,-4 + 199: 0,-4 + 200: 1,-4 + 201: -1,-4 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtMedium decals: - 257: -1,-4 - 258: 0,-4 - 259: 1,-4 - 260: 1,-4 - 261: -1,-4 + 205: -1,-4 + 206: 0,-4 + 207: 1,-4 + 208: 1,-4 + 209: -1,-4 - node: zIndex: 1 id: LatticeCornerNE @@ -137,12 +148,19 @@ entities: 122: -5,-3 137: -5,-3 164: -5,-3 - 198: -2,-6 - 203: -3,-6 - 206: -1,-6 - 222: 0,-6 - 240: 2,-6 + 170: -2,-6 + 175: -3,-6 + 178: -1,-6 + 183: 0,-6 + 188: 2,-6 + 193: 1,-6 + 224: -5,-3 + 227: -3,-6 + 230: -2,-6 + 235: -1,-6 + 240: 0,-6 245: 1,-6 + 250: 2,-6 - node: zIndex: 1 id: LatticeCornerNW @@ -151,13 +169,20 @@ entities: 113: 5,-3 128: 5,-3 143: 5,-3 - 170: 5,-3 - 200: -2,-6 - 208: -1,-6 - 224: 0,-6 - 242: 2,-6 + 167: 5,-3 + 172: -2,-6 + 180: -1,-6 + 185: 0,-6 + 190: 2,-6 + 195: 1,-6 + 198: 3,-6 + 232: -2,-6 + 237: -1,-6 + 242: 0,-6 247: 1,-6 - 250: 3,-6 + 252: 2,-6 + 255: 3,-6 + 258: 5,-3 - node: zIndex: 1 id: LatticeCornerSE @@ -169,6 +194,8 @@ entities: 146: -2,4 158: -4,3 161: -2,4 + 218: -4,3 + 221: -2,4 - node: zIndex: 1 id: LatticeCornerSW @@ -180,6 +207,8 @@ entities: 149: 2,4 152: 2,4 155: 4,3 + 212: 2,4 + 215: 4,3 - node: id: LatticeEdgeE decals: @@ -195,12 +224,21 @@ entities: 157: -4,3 160: -2,4 162: -5,-3 - 196: -2,-6 - 201: -3,-6 - 204: -1,-6 - 220: 0,-6 - 238: 2,-6 + 168: -2,-6 + 173: -3,-6 + 176: -1,-6 + 181: 0,-6 + 186: 2,-6 + 191: 1,-6 + 217: -4,3 + 220: -2,4 + 222: -5,-3 + 225: -3,-6 + 228: -2,-6 + 233: -1,-6 + 238: 0,-6 243: 1,-6 + 248: 2,-6 - node: id: LatticeEdgeN decals: @@ -225,14 +263,23 @@ entities: 140: 3,-6 141: 5,-3 163: -5,-3 - 168: 5,-3 - 197: -2,-6 - 202: -3,-6 - 205: -1,-6 - 221: 0,-6 - 239: 2,-6 + 165: 5,-3 + 169: -2,-6 + 174: -3,-6 + 177: -1,-6 + 182: 0,-6 + 187: 2,-6 + 192: 1,-6 + 196: 3,-6 + 223: -5,-3 + 226: -3,-6 + 229: -2,-6 + 234: -1,-6 + 239: 0,-6 244: 1,-6 - 248: 3,-6 + 249: 2,-6 + 253: 3,-6 + 256: 5,-3 - node: id: LatticeEdgeS decals: @@ -250,6 +297,10 @@ entities: 153: 4,3 156: -4,3 159: -2,4 + 210: 2,4 + 213: 4,3 + 216: -4,3 + 219: -2,4 - node: id: LatticeEdgeW decals: @@ -264,13 +315,22 @@ entities: 148: 2,4 151: 2,4 154: 4,3 - 169: 5,-3 - 199: -2,-6 - 207: -1,-6 - 223: 0,-6 - 241: 2,-6 + 166: 5,-3 + 171: -2,-6 + 179: -1,-6 + 184: 0,-6 + 189: 2,-6 + 194: 1,-6 + 197: 3,-6 + 211: 2,4 + 214: 4,3 + 231: -2,-6 + 236: -1,-6 + 241: 0,-6 246: 1,-6 - 249: 3,-6 + 251: 2,-6 + 254: 3,-6 + 257: 5,-3 - node: color: '#FFFFFFFF' id: TechCornerE @@ -314,19 +374,19 @@ entities: color: '#FFFFFFFF' id: TechS decals: - 256: 0,-4 + 204: 0,-4 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechSE decals: - 255: 1,-4 + 203: 1,-4 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechSW decals: - 254: -1,-4 + 202: -1,-4 - node: color: '#FFFFFFFF' id: TechW @@ -465,6 +525,7 @@ entities: - type: RadiationGridResistance - type: BecomesStation id: Vanguard + - type: SelfDeleteGrid - proto: AAAHardpointFixed entities: - uid: 2 @@ -475,7 +536,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 188 + - 107 - type: Physics canCollide: False - uid: 3 @@ -486,7 +547,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 188 + - 107 - type: Physics canCollide: False - proto: AirlockCommand @@ -557,7 +618,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 146 + - 137 - uid: 14 components: - type: Transform @@ -565,7 +626,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 145 + - 136 - proto: BoriaticGeneratorHerculesShuttle entities: - uid: 15 @@ -976,7 +1037,7 @@ entities: parent: 1 - proto: ChairPilotSeat entities: - - uid: 135 + - uid: 93 components: - type: Transform rot: 3.141592653589793 rad @@ -984,19 +1045,19 @@ entities: parent: 1 - proto: ClothingHeadHelmetNCWLEVA entities: - - uid: 94 + - uid: 95 components: - type: Transform - parent: 93 + parent: 94 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 100 + - uid: 101 components: - type: Transform - parent: 99 + parent: 100 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1004,19 +1065,19 @@ entities: - type: InsideEntityStorage - proto: ClothingOuterNCWLEVA entities: - - uid: 95 + - uid: 96 components: - type: Transform - parent: 93 + parent: 94 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 101 + - uid: 102 components: - type: Transform - parent: 99 + parent: 100 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1024,19 +1085,19 @@ entities: - type: InsideEntityStorage - proto: ClothingShoesBootsMag entities: - - uid: 96 + - uid: 97 components: - type: Transform - parent: 93 + parent: 94 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 102 + - uid: 103 components: - type: Transform - parent: 99 + parent: 100 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1044,14 +1105,14 @@ entities: - type: InsideEntityStorage - proto: ComputerAdvancedRadar entities: - - uid: 121 + - uid: 106 components: - type: Transform - pos: 0.5,3.5 + pos: 1.5,-3.5 parent: 1 - proto: ComputerShuttle entities: - - uid: 188 + - uid: 107 components: - type: Transform pos: 0.5,-2.5 @@ -1073,9 +1134,11 @@ entities: - type: DeviceLinkSource linkedPorts: 3: - - Group1: Toggle + - - Group1 + - Toggle 2: - - Group1: Toggle + - - Group1 + - Toggle - type: NamedModules buttonNames: - Toggle Slugthrowers @@ -1085,19 +1148,19 @@ entities: - Module E - proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 97 + - uid: 98 components: - type: Transform - parent: 93 + parent: 94 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 103 + - uid: 104 components: - type: Transform - parent: 99 + parent: 100 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1105,49 +1168,49 @@ entities: - type: InsideEntityStorage - proto: GasPipeStraight entities: - - uid: 107 + - uid: 108 components: - type: Transform pos: 0.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 108 + - uid: 109 components: - type: Transform pos: 0.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 109 + - uid: 110 components: - type: Transform pos: 0.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 110 + - uid: 111 components: - type: Transform pos: 0.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 111 + - uid: 112 components: - type: Transform pos: 0.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 112 + - uid: 113 components: - type: Transform pos: 0.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 113 + - uid: 114 components: - type: Transform pos: 0.5,-4.5 @@ -1156,14 +1219,14 @@ entities: color: '#990000FF' - proto: GasVentScrubber entities: - - uid: 114 + - uid: 115 components: - type: Transform pos: 0.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 115 + - uid: 116 components: - type: Transform pos: 0.5,-1.5 @@ -1172,33 +1235,33 @@ entities: color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 116 + - uid: 117 components: - type: Transform pos: -1.5,-1.5 parent: 1 - proto: Gyroscope entities: - - uid: 120 + - uid: 118 components: - type: Transform pos: 2.5,-1.5 parent: 1 - proto: JetpackBlackFilled entities: - - uid: 98 + - uid: 99 components: - type: Transform - parent: 93 + parent: 94 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 104 + - uid: 105 components: - type: Transform - parent: 99 + parent: 100 - type: Physics angularDamping: 0 linearDamping: 0 @@ -1206,7 +1269,7 @@ entities: - type: InsideEntityStorage - proto: JugBoriaticFuel entities: - - uid: 117 + - uid: 119 components: - type: Transform pos: -1.609375,-2.546875 @@ -1216,79 +1279,59 @@ entities: linearDamping: 0 - proto: MagazineLightRifleBoxSlug entities: - - uid: 123 + - uid: 121 components: - type: Transform - parent: 122 + parent: 120 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 124 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 122 components: - type: Transform - parent: 122 + parent: 120 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 125 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 124 components: - type: Transform - parent: 122 + parent: 123 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - - type: InsideEntityStorage + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] - uid: 126 components: - type: Transform - parent: 122 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 127 - components: - - type: Transform - parent: 122 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 128 - components: - - type: Transform - parent: 122 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 130 - components: - - type: Transform - parent: 129 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - uid: 132 - components: - - type: Transform - parent: 131 + parent: 125 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] - proto: N14CrateAluminium entities: - - uid: 122 + - uid: 120 components: - type: Transform pos: -0.5,3.5 @@ -1299,41 +1342,37 @@ entities: showEnts: False occludes: True ents: - - 123 - - 124 - - 125 - - 126 - - 127 - - 128 + - 122 + - 121 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: PoweredSmallLight entities: - - uid: 134 + - uid: 127 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-3.5 parent: 1 - - uid: 137 + - uid: 128 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 138 + - uid: 129 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 139 + - uid: 130 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,2.5 parent: 1 - - uid: 140 + - uid: 131 components: - type: Transform rot: 3.141592653589793 rad @@ -1341,25 +1380,25 @@ entities: parent: 1 - proto: Railing entities: - - uid: 141 + - uid: 132 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-2.5 parent: 1 - - uid: 142 + - uid: 133 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-1.5 parent: 1 - - uid: 143 + - uid: 134 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-1.5 parent: 1 - - uid: 144 + - uid: 135 components: - type: Transform rot: 1.5707963267948966 rad @@ -1367,7 +1406,7 @@ entities: parent: 1 - proto: SignalButton entities: - - uid: 145 + - uid: 136 components: - type: Transform pos: -1.5,3.5 @@ -1375,8 +1414,9 @@ entities: - type: DeviceLinkSource linkedPorts: 14: - - Pressed: Toggle - - uid: 146 + - - Pressed + - Toggle + - uid: 137 components: - type: Transform pos: 2.5,3.5 @@ -1384,15 +1424,22 @@ entities: - type: DeviceLinkSource linkedPorts: 13: - - Pressed: Toggle + - - Pressed + - Toggle - proto: SlugthrowerCannon entities: - - uid: 129 + - uid: 123 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 19611.025 + - type: ApcPowerReceiverBattery + enabled: True - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -1402,19 +1449,33 @@ entities: gun_magazine: !type:ContainerSlot showEnts: False occludes: True - ent: 130 + ent: 124 gun_chamber: !type:ContainerSlot showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: ChamberMagazineAmmoProvider boltClosed: True - - uid: 131 + - uid: 125 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,2.5 parent: 1 + - type: ApcPowerReceiver + powerLoad: 1000 + - type: Battery + startingCharge: 19611.025 + - type: ApcPowerReceiverBattery + enabled: True - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -1424,16 +1485,24 @@ entities: gun_magazine: !type:ContainerSlot showEnts: False occludes: True - ent: 132 + ent: 126 gun_chamber: !type:ContainerSlot showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - type: ChamberMagazineAmmoProvider boltClosed: True - proto: SubstationBasic entities: - - uid: 147 + - uid: 138 components: - type: Transform pos: 2.5,-2.5 @@ -1442,7 +1511,7 @@ entities: - Explosive - proto: SuitStorageWallmount entities: - - uid: 93 + - uid: 94 components: - type: Transform pos: -1.5,1.5 @@ -1453,14 +1522,14 @@ entities: showEnts: False occludes: True ents: - - 98 - - 94 - 96 + - 98 - 97 - 95 + - 99 - type: Physics canCollide: False - - uid: 99 + - uid: 100 components: - type: Transform pos: 2.5,1.5 @@ -1471,68 +1540,68 @@ entities: showEnts: False occludes: True ents: + - 104 - 103 - 102 + - 105 - 101 - - 104 - - 100 - type: Physics canCollide: False - proto: ThrusterNCWLFighter entities: - - uid: 106 + - uid: 139 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 1 - - uid: 133 + - uid: 140 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-5.5 parent: 1 - - uid: 136 + - uid: 141 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 1 - - uid: 152 + - uid: 142 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-4.5 parent: 1 - - uid: 153 + - uid: 143 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-3.5 parent: 1 - - uid: 154 + - uid: 144 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-4.5 parent: 1 - - uid: 155 + - uid: 145 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 156 + - uid: 146 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 157 + - uid: 147 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 187 + - uid: 148 components: - type: Transform rot: 3.141592653589793 rad @@ -1540,7 +1609,7 @@ entities: parent: 1 - proto: ToolboxMechanicalFilled entities: - - uid: 158 + - uid: 149 components: - type: Transform pos: 1.367957,3.4839787 @@ -1550,43 +1619,43 @@ entities: linearDamping: 0 - proto: WallPlastitanium entities: - - uid: 105 + - uid: 150 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 1 - - uid: 163 + - uid: 151 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,2.5 parent: 1 - - uid: 165 + - uid: 152 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,4.5 parent: 1 - - uid: 174 + - uid: 153 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,4.5 parent: 1 - - uid: 200 + - uid: 154 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,4.5 parent: 1 - - uid: 201 + - uid: 155 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,3.5 parent: 1 - - uid: 202 + - uid: 156 components: - type: Transform rot: 1.5707963267948966 rad @@ -1594,178 +1663,178 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 118 + - uid: 157 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,3.5 parent: 1 - - uid: 119 + - uid: 158 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,4.5 parent: 1 - - uid: 166 + - uid: 159 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 199 + - uid: 160 components: - type: Transform pos: -1.5,4.5 parent: 1 - proto: WallReinforcedNCWL entities: - - uid: 148 + - uid: 161 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 149 + - uid: 162 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 150 + - uid: 163 components: - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 151 + - uid: 164 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 159 + - uid: 165 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,1.5 parent: 1 - - uid: 160 + - uid: 166 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,1.5 parent: 1 - - uid: 161 + - uid: 167 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 parent: 1 - - uid: 162 + - uid: 168 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 1 - - uid: 164 + - uid: 169 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,1.5 parent: 1 - - uid: 167 + - uid: 170 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,1.5 parent: 1 - - uid: 168 + - uid: 171 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,1.5 parent: 1 - - uid: 169 + - uid: 172 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,0.5 parent: 1 - - uid: 170 + - uid: 173 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 1 - - uid: 171 + - uid: 174 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,1.5 parent: 1 - - uid: 172 + - uid: 175 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,1.5 parent: 1 - - uid: 173 + - uid: 176 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,1.5 parent: 1 - - uid: 175 + - uid: 177 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 176 + - uid: 178 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 177 + - uid: 179 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 178 + - uid: 180 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 179 + - uid: 181 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 180 + - uid: 182 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 181 + - uid: 183 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 182 + - uid: 184 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 183 + - uid: 185 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 184 + - uid: 186 components: - type: Transform pos: 3.5,-2.5 parent: 1 - - uid: 185 + - uid: 187 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 186 + - uid: 188 components: - type: Transform pos: -1.5,-4.5 @@ -1826,31 +1895,31 @@ entities: parent: 1 - proto: WallSolidDiagonalSoutheastCurved entities: - - uid: 203 + - uid: 199 components: - type: Transform pos: -2.5,-5.5 parent: 1 - - uid: 204 + - uid: 200 components: - type: Transform pos: -4.5,-2.5 parent: 1 - proto: WallSolidDiagonalSouthwestCurved entities: - - uid: 205 + - uid: 201 components: - type: Transform pos: 3.5,-5.5 parent: 1 - - uid: 206 + - uid: 202 components: - type: Transform pos: 5.5,-2.5 parent: 1 - proto: WarpPointShip entities: - - uid: 207 + - uid: 203 components: - type: Transform pos: 0.5,0.5 diff --git a/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml b/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml index dd66acdc110..ddeeb87d189 100644 --- a/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml +++ b/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml @@ -4,8 +4,8 @@ meta: engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 03/11/2026 00:02:36 - entityCount: 2178 + time: 03/11/2026 00:21:53 + entityCount: 2180 maps: [] grids: - 1 @@ -112,13 +112,13 @@ entities: color: '#FFFFFF6D' id: Arrows decals: - 935: 2,26 + 925: 2,26 - node: angle: 4.71238898038469 rad color: '#FFFFFF6D' id: Arrows decals: - 936: -2,26 + 926: -2,26 - node: color: '#EFB34196' id: BotLeftGreyscale @@ -128,121 +128,121 @@ entities: color: '#EFB34196' id: BoxGreyscale decals: - 5467: 0,26 + 5435: 0,26 - node: color: '#EFB34196' id: BrickTileSteelCornerNe decals: 229: -5,7 - 353: 4,28 - 482: -5,-2 - 511: 7,-6 - 514: -5,-6 - 554: -2,-13 - 555: -3,-12 - 562: -2,-16 + 349: 4,28 + 478: -5,-2 + 507: 7,-6 + 510: -5,-6 + 550: -2,-13 + 551: -3,-12 + 558: -2,-16 - node: color: '#EFB34196' id: BrickTileSteelCornerNw decals: 230: -8,7 - 354: -4,28 - 481: 5,-2 - 513: -7,-6 - 515: 5,-6 - 561: -6,-16 + 350: -4,28 + 477: 5,-2 + 509: -7,-6 + 511: 5,-6 + 557: -6,-16 - node: color: '#EFB34196' id: BrickTileSteelCornerSe decals: 228: -5,5 237: 1,5 - 506: -5,2 - 517: -5,-7 - 518: 7,-7 - 553: -2,-14 - 563: -2,-17 - 564: -5,-17 + 502: -5,2 + 513: -5,-7 + 514: 7,-7 + 549: -2,-14 + 559: -2,-17 + 560: -5,-17 - node: color: '#EFB34196' id: BrickTileSteelCornerSw decals: 234: -8,5 236: -1,5 - 355: -4,20 - 505: 5,2 - 512: -7,-7 - 516: 5,-7 - 551: -6,-14 - 565: -3,-17 - 566: -6,-17 + 351: -4,20 + 501: 5,2 + 508: -7,-7 + 512: 5,-7 + 547: -6,-14 + 561: -3,-17 + 562: -6,-17 - node: color: '#EFB34196' id: BrickTileSteelEndN decals: - 548: -6,-9 + 544: -6,-9 - node: color: '#EFB34196' id: BrickTileSteelInnerNe decals: - 468: -1,-7 - 500: -6,-2 - 559: -6,-12 - 560: -3,-13 + 464: -1,-7 + 496: -6,-2 + 555: -6,-12 + 556: -3,-13 - node: color: '#EFB34196' id: BrickTileSteelInnerNw decals: - 467: 1,-7 - 501: 6,-2 + 463: 1,-7 + 497: 6,-2 - node: color: '#EFB34196' id: BrickTileSteelInnerSe decals: - 466: -1,-4 - 507: -6,2 + 462: -1,-4 + 503: -6,2 - node: color: '#EFB34196' id: BrickTileSteelInnerSw decals: - 465: 1,-4 - 508: 6,2 + 461: 1,-4 + 504: 6,2 - node: color: '#EFB34196' id: BrickTileSteelLineE decals: 233: -5,6 240: 1,6 - 349: 4,21 - 350: 4,22 - 351: 4,23 - 352: 4,24 - 458: -1,-6 - 459: -1,-5 - 464: -2,-4 - 479: -5,-3 - 483: -6,-1 - 484: -6,0 - 485: -6,1 - 549: -6,-10 - 558: -6,-11 + 345: 4,21 + 346: 4,22 + 347: 4,23 + 348: 4,24 + 454: -1,-6 + 455: -1,-5 + 460: -2,-4 + 475: -5,-3 + 479: -6,-1 + 480: -6,0 + 481: -6,1 + 545: -6,-10 + 554: -6,-11 - node: color: '#EFB34196' id: BrickTileSteelLineN decals: 226: -7,7 227: -6,7 - 361: 3,28 - 362: 2,28 - 363: 1,28 - 364: -3,28 - 365: -2,28 - 366: -1,28 - 457: 0,-7 - 520: 6,-6 - 522: -6,-6 - 556: -4,-12 - 557: -5,-12 + 357: 3,28 + 358: 2,28 + 359: 1,28 + 360: -3,28 + 361: -2,28 + 362: -1,28 + 453: 0,-7 + 516: 6,-6 + 518: -6,-6 + 552: -4,-12 + 553: -5,-12 - node: color: '#EFB34196' id: BrickTileSteelLineS @@ -250,4951 +250,5199 @@ entities: 231: -6,5 235: -7,5 239: 0,5 - 338: -3,20 - 339: -2,20 - 340: -1,20 - 341: 1,20 - 342: 2,20 - 343: 3,20 - 460: 0,-4 - 519: 6,-7 - 521: -6,-7 - 552: -4,-14 + 334: -3,20 + 335: -2,20 + 336: -1,20 + 337: 1,20 + 338: 2,20 + 339: 3,20 + 456: 0,-4 + 515: 6,-7 + 517: -6,-7 + 548: -4,-14 - node: color: '#EFB34196' id: BrickTileSteelLineW decals: 232: -8,6 238: -1,6 - 345: -4,21 - 346: -4,22 - 347: -4,23 - 348: -4,24 - 461: 1,-6 - 462: 1,-5 - 463: 2,-4 - 480: 5,-3 - 502: 6,-1 - 503: 6,0 - 504: 6,1 - 550: -6,-10 + 341: -4,21 + 342: -4,22 + 343: -4,23 + 344: -4,24 + 457: 1,-6 + 458: 1,-5 + 459: 2,-4 + 476: 5,-3 + 498: 6,-1 + 499: 6,0 + 500: 6,1 + 546: -6,-10 - node: color: '#FFFFFFFF' id: Damaged decals: - 844: -6,10 + 837: -6,10 - node: color: '#EFB34196' id: DeliveryGreyscale decals: - 5447: 1,23 - 5450: 0,23 - 5465: -1,23 + 5420: 1,23 + 5421: 0,23 + 5434: -1,23 - node: color: '#FFFFFFFF' id: Dirt decals: - 842: 0,6 - 843: 0,9 + 835: 0,6 + 836: 0,9 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 573: -8,25 - 574: -7,27 - 575: -6,27 - 576: -7,26 - 577: -7,26 - 578: -5,26 - 579: -2,27 - 580: -3,28 - 581: -4,26 - 582: -5,25 - 584: -2,25 - 585: -3,23 - 586: -4,22 - 588: 2,26 - 589: 4,27 - 591: -3,22 - 592: -4,20 - 593: -3,21 - 594: 4,27 - 595: -4,20 - 596: -4,20 - 597: -3,21 - 598: 3,26 - 599: 4,26 - 600: 3,24 - 601: -1,20 - 602: 3,24 - 603: 4,25 - 604: 5,26 - 605: 5,25 - 606: 4,23 - 607: 0,20 - 608: 0,20 - 609: 2,20 - 610: 4,21 - 611: 4,22 - 612: 1,20 - 613: 1,29 - 614: 2,30 - 615: 0,31 - 616: -1,31 - 617: -2,31 - 618: 0,31 - 619: 2,32 - 620: 2,32 - 621: 0,30 - 622: 0,30 - 623: -5,30 - 624: -5,30 - 625: -4,31 - 626: -4,32 - 627: -4,34 - 628: -5,34 - 629: -5,32 - 630: -6,31 - 631: -6,30 - 632: -4,30 - 633: -5,32 - 634: -5,34 - 635: -6,33 - 636: -7,32 - 637: -5,34 - 638: -4,37 - 639: -4,36 - 640: -4,36 - 641: 5,33 - 642: 5,33 - 643: 5,34 - 644: 4,31 - 645: 6,31 - 646: 5,31 - 647: 6,30 - 648: 5,32 - 649: 3,31 - 650: 3,31 - 651: 0,32 - 652: 0,33 - 653: 7,26 - 654: 7,27 - 655: 5,27 - 656: 7,26 - 657: 6,27 - 658: 7,25 - 659: 8,25 - 660: 6,25 - 661: 6,26 - 662: 6,25 - 663: 7,24 - 664: 6,26 - 665: 2,25 - 666: 3,21 - 667: 1,20 - 668: -1,19 - 669: -3,17 - 670: -2,18 - 671: -3,16 - 672: -3,18 - 673: -2,14 - 674: -3,15 - 675: -3,17 - 676: -2,17 - 677: -1,15 - 678: 3,18 - 679: 1,17 - 680: 3,18 - 681: 1,17 - 682: 3,15 - 683: 3,17 - 684: 2,16 - 685: 3,16 - 686: 2,16 - 687: -5,16 - 688: -7,20 - 689: -6,14 - 690: -6,12 - 691: -6,14 - 692: -6,13 - 693: -4,12 - 694: -4,9 - 695: -6,10 - 696: -8,11 - 697: -8,8 - 698: -7,6 - 699: -7,5 - 700: -8,6 - 701: -7,7 - 702: -7,5 - 703: -5,5 - 704: -4,6 - 705: -6,6 - 706: -1,6 - 707: -2,6 - 708: -1,6 - 709: 2,6 - 710: 6,7 - 711: 7,8 - 712: 5,5 - 713: 5,5 - 714: 6,5 - 715: 5,6 - 716: 5,8 - 717: 7,6 - 718: 7,4 - 719: 7,8 - 720: 6,9 - 721: 6,10 - 722: 8,10 - 723: 3,9 - 724: -2,12 - 725: 1,12 - 726: -2,13 - 727: 1,12 - 728: 0,15 - 729: 0,16 - 730: 3,18 - 731: 3,16 - 732: 3,14 - 733: 3,9 - 734: 3,6 - 735: 3,5 - 736: -5,2 - 737: -6,1 - 738: -6,0 - 739: -5,-4 - 740: -5,-4 - 741: -6,-2 - 742: -6,-1 - 743: -6,-4 + 569: -8,25 + 570: -7,27 + 571: -6,27 + 572: -7,26 + 573: -7,26 + 574: -5,26 + 575: -2,27 + 576: -3,28 + 577: -4,26 + 578: -5,25 + 579: -2,25 + 580: -3,23 + 581: -4,22 + 582: 2,26 + 583: 4,27 + 584: -3,22 + 585: -4,20 + 586: -3,21 + 587: 4,27 + 588: -4,20 + 589: -4,20 + 590: -3,21 + 591: 3,26 + 592: 4,26 + 593: 3,24 + 594: -1,20 + 595: 3,24 + 596: 4,25 + 597: 5,26 + 598: 5,25 + 599: 4,23 + 600: 0,20 + 601: 0,20 + 602: 2,20 + 603: 4,21 + 604: 4,22 + 605: 1,20 + 606: 1,29 + 607: 2,30 + 608: 0,31 + 609: -1,31 + 610: -2,31 + 611: 0,31 + 612: 2,32 + 613: 2,32 + 614: 0,30 + 615: 0,30 + 616: -5,30 + 617: -5,30 + 618: -4,31 + 619: -4,32 + 620: -4,34 + 621: -5,34 + 622: -5,32 + 623: -6,31 + 624: -6,30 + 625: -4,30 + 626: -5,32 + 627: -5,34 + 628: -6,33 + 629: -7,32 + 630: -5,34 + 631: -4,37 + 632: -4,36 + 633: -4,36 + 634: 5,33 + 635: 5,33 + 636: 5,34 + 637: 4,31 + 638: 6,31 + 639: 5,31 + 640: 6,30 + 641: 5,32 + 642: 3,31 + 643: 3,31 + 644: 0,32 + 645: 0,33 + 646: 7,26 + 647: 7,27 + 648: 5,27 + 649: 7,26 + 650: 6,27 + 651: 7,25 + 652: 8,25 + 653: 6,25 + 654: 6,26 + 655: 6,25 + 656: 7,24 + 657: 6,26 + 658: 2,25 + 659: 3,21 + 660: 1,20 + 661: -1,19 + 662: -3,17 + 663: -2,18 + 664: -3,16 + 665: -3,18 + 666: -2,14 + 667: -3,15 + 668: -3,17 + 669: -2,17 + 670: -1,15 + 671: 3,18 + 672: 1,17 + 673: 3,18 + 674: 1,17 + 675: 3,15 + 676: 3,17 + 677: 2,16 + 678: 3,16 + 679: 2,16 + 680: -5,16 + 681: -7,20 + 682: -6,14 + 683: -6,12 + 684: -6,14 + 685: -6,13 + 686: -4,12 + 687: -4,9 + 688: -6,10 + 689: -8,11 + 690: -8,8 + 691: -7,6 + 692: -7,5 + 693: -8,6 + 694: -7,7 + 695: -7,5 + 696: -5,5 + 697: -4,6 + 698: -6,6 + 699: -1,6 + 700: -2,6 + 701: -1,6 + 702: 2,6 + 703: 6,7 + 704: 7,8 + 705: 5,5 + 706: 5,5 + 707: 6,5 + 708: 5,6 + 709: 5,8 + 710: 7,6 + 711: 7,4 + 712: 7,8 + 713: 6,9 + 714: 6,10 + 715: 8,10 + 716: 3,9 + 717: -2,12 + 718: 1,12 + 719: -2,13 + 720: 1,12 + 721: 0,15 + 722: 0,16 + 723: 3,18 + 724: 3,16 + 725: 3,14 + 726: 3,9 + 727: 3,6 + 728: 3,5 + 729: -5,2 + 730: -6,1 + 731: -6,0 + 732: -5,-4 + 733: -5,-4 + 734: -6,-2 + 735: -6,-1 + 736: -6,-4 + 737: -6,-4 + 738: -5,-4 + 739: -6,-2 + 740: -6,0 + 741: -6,2 + 742: -5,3 + 743: -6,3 744: -6,-4 - 745: -5,-4 - 746: -6,-2 - 747: -6,0 - 748: -6,2 - 749: -5,3 - 750: -6,3 - 751: -6,-4 - 752: -5,-6 - 753: -6,-7 - 754: -6,-7 - 755: -7,-7 - 756: -6,-6 - 757: -7,-7 - 758: -1,-5 - 759: -1,-4 - 760: -1,-3 - 761: 1,-4 - 762: 4,-3 - 763: 2,-6 - 764: -4,-7 - 765: -3,-5 - 766: -3,-4 - 767: -3,-8 - 768: -1,-7 - 769: 2,-7 - 770: 5,-7 - 771: -1,-7 - 772: -3,-7 - 773: -3,-6 - 774: -2,-4 - 775: -1,-3 - 776: 2,-3 - 777: 1,-6 - 778: 2,-6 - 779: 2,-5 - 780: 3,-5 - 781: 2,-7 - 782: -1,-5 - 783: -1,-2 - 784: -2,-4 - 785: 0,-10 - 786: -1,-10 - 787: 0,-9 - 788: -1,-11 - 789: 0,-11 - 790: -1,-10 - 791: -1,-9 - 792: 6,-7 - 793: 7,-7 - 794: 5,-6 - 795: 7,-6 - 796: 5,-6 - 797: 5,-4 - 798: 5,-3 - 799: 6,-2 - 800: 5,-4 - 801: 6,-4 - 802: 6,-1 - 803: 6,1 - 804: 4,3 - 805: 5,3 - 806: 5,2 - 807: 5,2 - 808: 7,-9 - 809: 7,-10 - 810: 4,-13 - 811: 2,-13 - 812: 5,-13 - 813: 5,-13 - 814: 6,-13 - 815: 1,-14 - 816: -2,-14 - 817: -2,-14 - 818: -2,-13 - 819: -3,-13 - 820: -4,-14 - 821: -3,-13 - 822: -4,-13 - 823: -6,-14 - 824: -4,-13 - 825: -3,-12 - 826: -6,-14 - 827: -6,-14 - 828: -6,-11 - 829: -6,-10 - 830: -6,-9 - 831: -6,-11 - 832: -6,-13 - 833: -7,-13 - 834: -8,-12 - 835: -8,-11 - 836: -9,-13 - 837: -8,-14 - 838: -10,-13 - 839: -10,-11 - 840: -9,-11 - 841: -8,-14 - 859: -3,25 - 860: -4,25 - 861: -4,25 - 862: -3,24 - 863: -3,24 - 864: -1,20 - 865: 0,20 - 866: 0,20 - 867: 1,20 - 868: 1,20 - 869: -2,20 - 870: -3,20 - 874: 2,28 - 875: 2,28 - 876: 2,26 - 877: 2,26 - 878: 0,30 - 879: -1,30 - 880: -2,30 - 881: -1,31 - 882: 0,30 - 883: -4,30 - 884: -5,30 - 885: -5,30 - 886: -4,32 - 887: -4,32 - 888: -5,33 - 889: -5,34 - 890: -5,32 - 891: -2,17 - 892: -3,17 - 893: -3,17 - 894: -3,16 - 895: -2,15 - 896: -2,15 - 897: 5,15 - 898: 3,16 - 899: 2,15 - 900: 3,15 - 901: 2,16 - 902: 2,17 - 903: 3,18 - 904: 3,18 - 905: 3,18 - 906: 0,12 - 907: -2,12 - 908: 6,7 - 909: 5,8 - 910: 5,8 - 911: 6,8 - 912: 6,10 - 913: 6,10 - 914: -1,-6 - 915: -1,-5 - 916: -1,-5 - 917: -3,-4 - 918: -3,-4 - 919: -3,-6 - 920: -2,-6 - 921: -1,-6 - 922: -1,-7 - 923: -1,-7 - 924: 1,-7 - 925: 2,-6 - 926: 2,-6 - 927: 1,-6 - 928: 1,-4 - 929: -5,-4 - 930: -5,-3 - 931: -5,-3 - 932: -5,-2 - 933: -6,-2 - 934: -6,0 + 745: -5,-6 + 746: -6,-7 + 747: -6,-7 + 748: -7,-7 + 749: -6,-6 + 750: -7,-7 + 751: -1,-5 + 752: -1,-4 + 753: -1,-3 + 754: 1,-4 + 755: 4,-3 + 756: 2,-6 + 757: -4,-7 + 758: -3,-5 + 759: -3,-4 + 760: -3,-8 + 761: -1,-7 + 762: 2,-7 + 763: 5,-7 + 764: -1,-7 + 765: -3,-7 + 766: -3,-6 + 767: -2,-4 + 768: -1,-3 + 769: 2,-3 + 770: 1,-6 + 771: 2,-6 + 772: 2,-5 + 773: 3,-5 + 774: 2,-7 + 775: -1,-5 + 776: -1,-2 + 777: -2,-4 + 778: 0,-10 + 779: -1,-10 + 780: 0,-9 + 781: -1,-11 + 782: 0,-11 + 783: -1,-10 + 784: -1,-9 + 785: 6,-7 + 786: 7,-7 + 787: 5,-6 + 788: 7,-6 + 789: 5,-6 + 790: 5,-4 + 791: 5,-3 + 792: 6,-2 + 793: 5,-4 + 794: 6,-4 + 795: 6,-1 + 796: 6,1 + 797: 4,3 + 798: 5,3 + 799: 5,2 + 800: 5,2 + 801: 7,-9 + 802: 7,-10 + 803: 4,-13 + 804: 2,-13 + 805: 5,-13 + 806: 5,-13 + 807: 6,-13 + 808: 1,-14 + 809: -2,-14 + 810: -2,-14 + 811: -2,-13 + 812: -3,-13 + 813: -4,-14 + 814: -3,-13 + 815: -4,-13 + 816: -6,-14 + 817: -4,-13 + 818: -3,-12 + 819: -6,-14 + 820: -6,-14 + 821: -6,-11 + 822: -6,-10 + 823: -6,-9 + 824: -6,-11 + 825: -6,-13 + 826: -7,-13 + 827: -8,-12 + 828: -8,-11 + 829: -9,-13 + 830: -8,-14 + 831: -10,-13 + 832: -10,-11 + 833: -9,-11 + 834: -8,-14 + 852: -3,25 + 853: -4,25 + 854: -4,25 + 855: -3,24 + 856: -3,24 + 857: -1,20 + 858: 0,20 + 859: 0,20 + 860: 1,20 + 861: 1,20 + 862: -2,20 + 863: -3,20 + 864: 2,28 + 865: 2,28 + 866: 2,26 + 867: 2,26 + 868: 0,30 + 869: -1,30 + 870: -2,30 + 871: -1,31 + 872: 0,30 + 873: -4,30 + 874: -5,30 + 875: -5,30 + 876: -4,32 + 877: -4,32 + 878: -5,33 + 879: -5,34 + 880: -5,32 + 881: -2,17 + 882: -3,17 + 883: -3,17 + 884: -3,16 + 885: -2,15 + 886: -2,15 + 887: 5,15 + 888: 3,16 + 889: 2,15 + 890: 3,15 + 891: 2,16 + 892: 2,17 + 893: 3,18 + 894: 3,18 + 895: 3,18 + 896: 0,12 + 897: -2,12 + 898: 6,7 + 899: 5,8 + 900: 5,8 + 901: 6,8 + 902: 6,10 + 903: 6,10 + 904: -1,-6 + 905: -1,-5 + 906: -1,-5 + 907: -3,-4 + 908: -3,-4 + 909: -3,-6 + 910: -2,-6 + 911: -1,-6 + 912: -1,-7 + 913: -1,-7 + 914: 1,-7 + 915: 2,-6 + 916: 2,-6 + 917: 1,-6 + 918: 1,-4 + 919: -5,-4 + 920: -5,-3 + 921: -5,-3 + 922: -5,-2 + 923: -6,-2 + 924: -6,0 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 845: -7,8 - 846: -7,8 - 847: -7,9 - 848: -6,8 - 849: -5,8 - 850: -5,10 - 851: -5,10 - 852: -6,10 - 853: -7,10 - 854: -8,9 - 855: -7,11 + 838: -7,8 + 839: -7,8 + 840: -7,9 + 841: -6,8 + 842: -5,8 + 843: -5,10 + 844: -5,10 + 845: -6,10 + 846: -7,10 + 847: -8,9 + 848: -7,11 - node: zIndex: 1 angle: -4.71238898038469 rad id: FloorTechMaintDirectionalCorner decals: - 3403: -2,11 - 3562: -2,11 - 3818: -2,11 - 4066: -2,11 - 4314: -2,11 - 4562: -2,11 - 4810: -2,11 - 5085: -2,11 - 5333: -2,11 + 3393: -2,11 + 3552: -2,11 + 3808: -2,11 + 4056: -2,11 + 4304: -2,11 + 4552: -2,11 + 4800: -2,11 + 5063: -2,11 + 5311: -2,11 + 5581: -2,11 - node: zIndex: 1 angle: -3.141592653589793 rad id: FloorTechMaintDirectionalCorner decals: - 3408: -2,7 - 3666: -2,7 - 3812: -2,7 - 4060: -2,7 - 4308: -2,7 - 4556: -2,7 - 4804: -2,7 - 5079: -2,7 - 5327: -2,7 + 3398: -2,7 + 3656: -2,7 + 3802: -2,7 + 4050: -2,7 + 4298: -2,7 + 4546: -2,7 + 4794: -2,7 + 5057: -2,7 + 5305: -2,7 + 5575: -2,7 - node: zIndex: 1 angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalCorner decals: - 3422: 2,7 - 3671: 2,7 - 3703: 2,7 - 3951: 2,7 - 4199: 2,7 - 4447: 2,7 - 4695: 2,7 - 4970: 2,7 - 5218: 2,7 + 3412: 2,7 + 3661: 2,7 + 3693: 2,7 + 3941: 2,7 + 4189: 2,7 + 4437: 2,7 + 4685: 2,7 + 4948: 2,7 + 5196: 2,7 + 5466: 2,7 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner decals: - 3416: 2,11 - 3456: 2,11 - 3709: 2,11 - 3957: 2,11 - 4205: 2,11 - 4453: 2,11 - 4701: 2,11 - 4976: 2,11 - 5224: 2,11 + 3406: 2,11 + 3446: 2,11 + 3699: 2,11 + 3947: 2,11 + 4195: 2,11 + 4443: 2,11 + 4691: 2,11 + 4954: 2,11 + 5202: 2,11 + 5472: 2,11 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge decals: - 3402: -2,11 - 3404: -2,10 - 3405: -2,9 - 3407: -2,7 - 3409: -2,8 - 3557: -2,8 - 3558: -2,9 - 3559: -2,10 - 3561: -2,11 - 3665: -2,7 - 3811: -2,7 - 3813: -2,8 - 3814: -2,9 - 3815: -2,10 - 3817: -2,11 - 4059: -2,7 - 4061: -2,8 - 4062: -2,9 - 4063: -2,10 - 4065: -2,11 - 4307: -2,7 - 4309: -2,8 - 4310: -2,9 - 4311: -2,10 - 4313: -2,11 - 4555: -2,7 - 4557: -2,8 - 4558: -2,9 - 4559: -2,10 - 4561: -2,11 - 4803: -2,7 - 4805: -2,8 - 4806: -2,9 - 4807: -2,10 - 4809: -2,11 - 5078: -2,7 - 5080: -2,8 - 5081: -2,9 - 5082: -2,10 - 5084: -2,11 - 5326: -2,7 - 5328: -2,8 - 5329: -2,9 - 5330: -2,10 - 5332: -2,11 + 3392: -2,11 + 3394: -2,10 + 3395: -2,9 + 3397: -2,7 + 3399: -2,8 + 3547: -2,8 + 3548: -2,9 + 3549: -2,10 + 3551: -2,11 + 3655: -2,7 + 3801: -2,7 + 3803: -2,8 + 3804: -2,9 + 3805: -2,10 + 3807: -2,11 + 4049: -2,7 + 4051: -2,8 + 4052: -2,9 + 4053: -2,10 + 4055: -2,11 + 4297: -2,7 + 4299: -2,8 + 4300: -2,9 + 4301: -2,10 + 4303: -2,11 + 4545: -2,7 + 4547: -2,8 + 4548: -2,9 + 4549: -2,10 + 4551: -2,11 + 4793: -2,7 + 4795: -2,8 + 4796: -2,9 + 4797: -2,10 + 4799: -2,11 + 5056: -2,7 + 5058: -2,8 + 5059: -2,9 + 5060: -2,10 + 5062: -2,11 + 5304: -2,7 + 5306: -2,8 + 5307: -2,9 + 5308: -2,10 + 5310: -2,11 + 5574: -2,7 + 5576: -2,8 + 5577: -2,9 + 5578: -2,10 + 5580: -2,11 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge decals: - 3406: -2,7 - 3411: -1,7 - 3413: 0,7 - 3420: 2,7 - 3424: 1,7 - 3664: -2,7 - 3667: -1,7 - 3668: 0,7 - 3669: 2,7 - 3672: 1,7 - 3681: 0,7 - 3691: 1,7 - 3701: 2,7 - 3810: -2,7 - 3827: -1,7 - 3929: 0,7 - 3939: 1,7 - 3949: 2,7 - 4058: -2,7 - 4075: -1,7 - 4177: 0,7 - 4187: 1,7 - 4197: 2,7 - 4306: -2,7 - 4323: -1,7 - 4425: 0,7 - 4435: 1,7 - 4445: 2,7 - 4554: -2,7 - 4571: -1,7 - 4673: 0,7 - 4683: 1,7 - 4693: 2,7 - 4802: -2,7 - 4819: -1,7 - 4948: 0,7 - 4958: 1,7 - 4968: 2,7 - 5077: -2,7 - 5094: -1,7 - 5196: 0,7 - 5206: 1,7 - 5216: 2,7 - 5325: -2,7 - 5342: -1,7 + 3396: -2,7 + 3401: -1,7 + 3403: 0,7 + 3410: 2,7 + 3414: 1,7 + 3654: -2,7 + 3657: -1,7 + 3658: 0,7 + 3659: 2,7 + 3662: 1,7 + 3671: 0,7 + 3681: 1,7 + 3691: 2,7 + 3800: -2,7 + 3817: -1,7 + 3919: 0,7 + 3929: 1,7 + 3939: 2,7 + 4048: -2,7 + 4065: -1,7 + 4167: 0,7 + 4177: 1,7 + 4187: 2,7 + 4296: -2,7 + 4313: -1,7 + 4415: 0,7 + 4425: 1,7 + 4435: 2,7 + 4544: -2,7 + 4561: -1,7 + 4663: 0,7 + 4673: 1,7 + 4683: 2,7 + 4792: -2,7 + 4809: -1,7 + 4926: 0,7 + 4936: 1,7 + 4946: 2,7 + 5055: -2,7 + 5072: -1,7 + 5174: 0,7 + 5184: 1,7 + 5194: 2,7 + 5303: -2,7 + 5320: -1,7 + 5444: 0,7 + 5454: 1,7 + 5464: 2,7 + 5573: -2,7 + 5590: -1,7 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge decals: - 3414: 2,11 - 3418: 2,10 - 3419: 2,9 - 3421: 2,7 - 3423: 2,8 - 3451: 2,8 - 3452: 2,9 - 3453: 2,10 - 3454: 2,11 - 3670: 2,7 - 3702: 2,7 - 3704: 2,8 - 3705: 2,9 - 3706: 2,10 - 3707: 2,11 - 3950: 2,7 - 3952: 2,8 - 3953: 2,9 - 3954: 2,10 - 3955: 2,11 - 4198: 2,7 - 4200: 2,8 - 4201: 2,9 - 4202: 2,10 - 4203: 2,11 - 4446: 2,7 - 4448: 2,8 - 4449: 2,9 - 4450: 2,10 - 4451: 2,11 - 4694: 2,7 - 4696: 2,8 - 4697: 2,9 - 4698: 2,10 - 4699: 2,11 - 4969: 2,7 - 4971: 2,8 - 4972: 2,9 - 4973: 2,10 - 4974: 2,11 - 5217: 2,7 - 5219: 2,8 - 5220: 2,9 - 5221: 2,10 - 5222: 2,11 + 3404: 2,11 + 3408: 2,10 + 3409: 2,9 + 3411: 2,7 + 3413: 2,8 + 3441: 2,8 + 3442: 2,9 + 3443: 2,10 + 3444: 2,11 + 3660: 2,7 + 3692: 2,7 + 3694: 2,8 + 3695: 2,9 + 3696: 2,10 + 3697: 2,11 + 3940: 2,7 + 3942: 2,8 + 3943: 2,9 + 3944: 2,10 + 3945: 2,11 + 4188: 2,7 + 4190: 2,8 + 4191: 2,9 + 4192: 2,10 + 4193: 2,11 + 4436: 2,7 + 4438: 2,8 + 4439: 2,9 + 4440: 2,10 + 4441: 2,11 + 4684: 2,7 + 4686: 2,8 + 4687: 2,9 + 4688: 2,10 + 4689: 2,11 + 4947: 2,7 + 4949: 2,8 + 4950: 2,9 + 4951: 2,10 + 4952: 2,11 + 5195: 2,7 + 5197: 2,8 + 5198: 2,9 + 5199: 2,10 + 5200: 2,11 + 5465: 2,7 + 5467: 2,8 + 5468: 2,9 + 5469: 2,10 + 5470: 2,11 - node: id: FloorTechMaintDirectionalEdge decals: - 3401: -2,11 - 3410: -1,11 - 3412: 0,11 - 3415: 2,11 - 3417: 1,11 - 3433: 0,11 - 3442: 1,11 - 3455: 2,11 - 3560: -2,11 - 3571: -1,11 - 3682: 0,11 - 3692: 1,11 - 3708: 2,11 - 3816: -2,11 - 3828: -1,11 - 3930: 0,11 - 3940: 1,11 - 3956: 2,11 - 4064: -2,11 - 4076: -1,11 - 4178: 0,11 - 4188: 1,11 - 4204: 2,11 - 4312: -2,11 - 4324: -1,11 - 4426: 0,11 - 4436: 1,11 - 4452: 2,11 - 4560: -2,11 - 4572: -1,11 - 4674: 0,11 - 4684: 1,11 - 4700: 2,11 - 4808: -2,11 - 4820: -1,11 - 4949: 0,11 - 4959: 1,11 - 4975: 2,11 - 5083: -2,11 - 5095: -1,11 - 5197: 0,11 - 5207: 1,11 - 5223: 2,11 - 5331: -2,11 - 5343: -1,11 + 3391: -2,11 + 3400: -1,11 + 3402: 0,11 + 3405: 2,11 + 3407: 1,11 + 3423: 0,11 + 3432: 1,11 + 3445: 2,11 + 3550: -2,11 + 3561: -1,11 + 3672: 0,11 + 3682: 1,11 + 3698: 2,11 + 3806: -2,11 + 3818: -1,11 + 3920: 0,11 + 3930: 1,11 + 3946: 2,11 + 4054: -2,11 + 4066: -1,11 + 4168: 0,11 + 4178: 1,11 + 4194: 2,11 + 4302: -2,11 + 4314: -1,11 + 4416: 0,11 + 4426: 1,11 + 4442: 2,11 + 4550: -2,11 + 4562: -1,11 + 4664: 0,11 + 4674: 1,11 + 4690: 2,11 + 4798: -2,11 + 4810: -1,11 + 4927: 0,11 + 4937: 1,11 + 4953: 2,11 + 5061: -2,11 + 5073: -1,11 + 5175: 0,11 + 5185: 1,11 + 5201: 2,11 + 5309: -2,11 + 5321: -1,11 + 5445: 0,11 + 5455: 1,11 + 5471: 2,11 + 5579: -2,11 + 5591: -1,11 - node: zIndex: 1 id: LatticeCornerNE decals: - 941: 0,1 - 949: 1,1 - 957: 2,1 - 965: 3,0 - 973: 3,1 - 981: 4,0 - 989: 4,1 - 997: 8,12 - 1009: -9,3 - 1017: -8,12 - 1025: -4,0 - 1033: -4,1 - 1041: -3,0 - 1049: -3,1 - 1057: -2,1 - 1065: -1,1 - 1074: -10,-16 - 1079: -4,-1 - 1087: 4,-1 - 1105: -9,-17 - 1108: -3,-20 - 1113: 6,16 - 1121: 6,17 - 1129: 6,18 - 1137: 6,19 - 1145: 6,20 - 1157: -9,24 - 1165: 0,1 - 1173: 1,1 - 1181: 2,1 - 1189: 3,0 - 1197: 3,1 - 1205: 4,0 - 1213: 4,1 - 1221: 8,12 - 1233: -9,3 - 1241: -8,12 - 1249: -4,0 - 1257: -4,1 - 1265: -3,0 - 1273: -3,1 - 1281: -2,1 - 1289: -1,1 - 1298: -10,-16 - 1303: -4,-1 - 1311: 4,-1 - 1329: -9,-17 - 1332: -3,-20 - 1337: 6,16 - 1345: 6,17 - 1353: 6,18 - 1361: 6,19 - 1369: 6,20 - 1381: -9,24 - 1389: 0,1 - 1397: 1,1 - 1405: 2,1 - 1413: 3,0 - 1421: 3,1 - 1429: 4,0 - 1437: 4,1 - 1445: 8,12 - 1457: -9,3 - 1465: -8,12 - 1473: -4,0 - 1481: -4,1 - 1489: -3,0 - 1497: -3,1 - 1505: -2,1 - 1513: -1,1 - 1522: -10,-16 - 1527: -4,-1 - 1535: 4,-1 - 1553: -9,-17 - 1556: -3,-20 - 1561: 6,16 - 1569: 6,17 - 1577: 6,18 - 1585: 6,19 - 1593: 6,20 - 1605: -9,24 - 1613: 0,1 - 1621: 1,1 - 1629: 2,1 - 1637: 3,0 - 1645: 3,1 - 1653: 4,0 - 1661: 4,1 - 1669: 8,12 - 1681: -9,3 - 1689: -8,12 - 1697: -4,0 - 1705: -4,1 - 1713: -3,0 - 1721: -3,1 - 1729: -2,1 - 1737: -1,1 - 1746: -10,-16 - 1751: -4,-1 - 1759: 4,-1 - 1777: -9,-17 - 1780: -3,-20 - 1785: 6,16 - 1793: 6,17 - 1801: 6,18 - 1809: 6,19 - 1817: 6,20 - 1829: -9,24 - 1837: 0,1 - 1845: 1,1 - 1853: 2,1 - 1861: 3,0 - 1869: 3,1 - 1877: 4,0 - 1885: 4,1 - 1893: 8,12 - 1905: -9,3 - 1910: -4,0 - 1918: -4,1 - 1926: -3,0 - 1934: -3,1 - 1942: -2,1 - 1950: -1,1 - 1959: -10,-16 - 1964: -4,-1 - 1972: 4,-1 - 1990: -9,-17 - 1993: -3,-20 - 1998: 6,16 - 2006: 6,17 - 2014: 6,18 - 2022: 6,19 - 2030: 6,20 - 2042: -9,24 - 2050: -8,12 - 2061: 0,1 - 2069: 1,1 - 2077: 2,1 - 2085: 3,0 - 2093: 3,1 - 2101: 4,0 - 2109: 4,1 - 2117: 8,12 - 2129: -9,3 - 2137: -8,12 - 2145: -4,0 - 2153: -4,1 - 2161: -3,0 - 2169: -3,1 - 2177: -2,1 - 2185: -1,1 - 2194: -10,-16 - 2199: -4,-1 - 2207: 4,-1 - 2225: -9,-17 - 2228: -3,-20 - 2233: 6,16 - 2241: 6,17 - 2249: 6,18 - 2257: 6,19 - 2265: 6,20 - 2277: -9,24 - 2285: 0,1 - 2293: 1,1 - 2301: 2,1 - 2309: 3,0 - 2317: 3,1 - 2325: 4,0 - 2333: 4,1 - 2341: 8,12 - 2353: -9,3 - 2361: -8,12 - 2369: -4,0 - 2377: -4,1 - 2385: -3,0 - 2393: -3,1 - 2401: -2,1 - 2409: -1,1 - 2418: -10,-16 - 2423: -4,-1 - 2431: 4,-1 - 2449: -9,-17 - 2452: -3,-20 - 2457: 6,16 - 2465: 6,17 - 2473: 6,18 - 2481: 6,19 - 2489: 6,20 - 2501: -9,24 - 2509: 0,1 - 2517: 1,1 - 2525: 2,1 - 2533: 3,0 - 2541: 3,1 - 2549: 4,0 - 2557: 4,1 - 2565: 8,12 - 2577: -9,3 - 2585: -8,12 - 2593: -4,0 - 2601: -4,1 - 2609: -3,0 - 2617: -3,1 - 2625: -2,1 - 2633: -1,1 - 2642: -10,-16 - 2647: -4,-1 - 2655: 4,-1 - 2673: -9,-17 - 2676: -3,-20 - 2681: 6,16 - 2689: 6,17 - 2697: 6,18 - 2705: 6,19 - 2713: 6,20 - 2725: -9,24 - 2733: 0,1 - 2741: 1,1 - 2749: 2,1 - 2757: 3,0 - 2765: 3,1 - 2773: 4,0 - 2781: 4,1 - 2789: 8,12 - 2801: -9,3 - 2809: -8,12 - 2817: -4,0 - 2825: -4,1 - 2833: -3,0 - 2841: -3,1 - 2849: -2,1 - 2857: -1,1 - 2866: -10,-16 - 2871: -4,-1 - 2879: 4,-1 - 2897: -9,-17 - 2900: -3,-20 - 2905: 6,16 - 2913: 6,17 - 2921: 6,18 - 2929: 6,19 - 2937: 6,20 - 2949: -9,24 - 2957: 0,1 - 2965: 1,1 - 2973: 2,1 - 2981: 3,0 - 2989: 3,1 - 2997: 4,0 - 3005: 4,1 - 3013: 8,12 - 3025: -9,3 - 3033: -8,12 - 3041: -4,0 - 3049: -4,1 - 3057: -3,0 - 3065: -3,1 - 3073: -2,1 - 3081: -1,1 - 3090: -10,-16 - 3095: -4,-1 - 3103: 4,-1 - 3121: -9,-17 - 3124: -3,-20 - 3129: 6,16 - 3137: 6,17 - 3145: 6,18 - 3153: 6,19 - 3161: 6,20 - 3173: -9,24 - 3181: 0,1 - 3189: 1,1 - 3197: 2,1 - 3205: 3,0 - 3213: 3,1 - 3221: 4,0 - 3229: 4,1 - 3237: 8,12 - 3249: -9,3 - 3257: -8,12 - 3265: -4,0 - 3273: -4,1 - 3281: -3,0 - 3289: -3,1 - 3297: -2,1 - 3305: -1,1 - 3314: -10,-16 - 3319: -4,-1 - 3327: 4,-1 - 3345: -9,-17 - 3348: -3,-20 - 3353: 6,16 - 3361: 6,17 - 3369: 6,18 - 3377: 6,19 - 3385: 6,20 - 3397: -9,24 - 3429: 0,1 - 3438: 1,1 - 3447: 2,1 - 3461: 3,0 - 3469: 3,1 - 3477: 4,0 - 3485: 4,1 - 3493: 8,12 - 3505: -9,3 - 3513: -8,12 - 3521: -4,0 - 3529: -4,1 - 3537: -3,0 - 3545: -3,1 - 3553: -2,1 - 3567: -1,1 - 3577: -10,-16 - 3582: -4,-1 - 3590: 4,-1 - 3608: -9,-17 - 3611: -3,-20 - 3616: 6,16 - 3624: 6,17 - 3632: 6,18 - 3640: 6,19 - 3648: 6,20 - 3660: -9,24 - 3677: 0,1 - 3687: 1,1 - 3697: 2,1 - 3714: 3,0 - 3722: 3,1 - 3730: 4,0 - 3738: 4,1 - 3746: 8,12 - 3758: -9,3 - 3766: -8,12 - 3774: -4,0 - 3782: -4,1 - 3790: -3,0 - 3798: -3,1 - 3806: -2,1 - 3823: -1,1 - 3834: -10,-16 - 3839: -4,-1 - 3847: 4,-1 - 3865: -9,-17 - 3868: -3,-20 - 3873: 6,16 - 3881: 6,17 - 3889: 6,18 - 3897: 6,19 - 3905: 6,20 - 3917: -9,24 - 3925: 0,1 - 3935: 1,1 - 3945: 2,1 - 3962: 3,0 - 3970: 3,1 - 3978: 4,0 - 3986: 4,1 - 3994: 8,12 - 4006: -9,3 - 4014: -8,12 - 4022: -4,0 - 4030: -4,1 - 4038: -3,0 - 4046: -3,1 - 4054: -2,1 - 4071: -1,1 - 4079: -10,-16 - 4084: -4,-1 - 4092: 4,-1 - 4107: -9,-17 - 4110: -3,-20 - 4115: 6,16 - 4123: 6,17 - 4131: 6,18 - 4139: 6,19 - 4147: 6,20 - 4159: -9,24 - 4173: 0,1 - 4183: 1,1 - 4193: 2,1 - 4210: 3,0 - 4218: 3,1 - 4226: 4,0 - 4234: 4,1 - 4242: 8,12 - 4254: -9,3 - 4262: -8,12 - 4270: -4,0 - 4278: -4,1 - 4286: -3,0 - 4294: -3,1 - 4302: -2,1 - 4319: -1,1 - 4330: -10,-16 - 4335: -4,-1 - 4343: 4,-1 - 4361: -9,-17 - 4364: -3,-20 - 4369: 6,16 - 4377: 6,17 - 4385: 6,18 - 4393: 6,19 - 4401: 6,20 - 4413: -9,24 - 4421: 0,1 - 4431: 1,1 - 4441: 2,1 - 4458: 3,0 - 4466: 3,1 - 4474: 4,0 - 4482: 4,1 - 4490: 8,12 - 4502: -9,3 - 4510: -8,12 - 4518: -4,0 - 4526: -4,1 - 4534: -3,0 - 4542: -3,1 - 4550: -2,1 - 4567: -1,1 - 4578: -10,-16 - 4583: -4,-1 - 4591: 4,-1 - 4609: -9,-17 - 4612: -3,-20 - 4617: 6,16 - 4625: 6,17 - 4633: 6,18 - 4641: 6,19 - 4649: 6,20 - 4661: -9,24 - 4669: 0,1 - 4679: 1,1 - 4689: 2,1 - 4706: 3,0 - 4714: 3,1 - 4722: 4,0 - 4730: 4,1 - 4738: 8,12 - 4750: -9,3 - 4758: -8,12 - 4766: -4,0 - 4774: -4,1 - 4782: -3,0 - 4790: -3,1 - 4798: -2,1 - 4815: -1,1 - 4826: -10,-16 - 4831: -4,-1 - 4839: 4,-1 - 4857: -9,-17 - 4860: -3,-20 - 4865: 6,16 - 4873: 6,17 - 4881: 6,18 - 4889: 6,19 - 4897: 6,20 - 4909: -9,24 - 4944: 0,1 - 4954: 1,1 - 4964: 2,1 - 4981: 3,0 - 4989: 3,1 - 4997: 4,0 - 5005: 4,1 - 5013: 8,12 - 5025: -9,3 - 5033: -8,12 - 5041: -4,0 - 5049: -4,1 - 5057: -3,0 - 5065: -3,1 - 5073: -2,1 - 5090: -1,1 - 5101: -10,-16 - 5106: -4,-1 - 5114: 4,-1 - 5132: -9,-17 - 5135: -3,-20 - 5140: 6,16 - 5148: 6,17 - 5156: 6,18 - 5164: 6,19 - 5172: 6,20 - 5184: -9,24 - 5192: 0,1 - 5202: 1,1 - 5212: 2,1 - 5229: 3,0 - 5237: 3,1 - 5245: 4,0 - 5253: 4,1 - 5261: 8,12 - 5273: -9,3 - 5281: -8,12 - 5289: -4,0 - 5297: -4,1 - 5305: -3,0 - 5313: -3,1 - 5321: -2,1 - 5338: -1,1 - 5349: -10,-16 - 5354: -4,-1 - 5362: 4,-1 - 5380: -9,-17 - 5383: -3,-20 - 5388: 6,16 - 5396: 6,17 - 5404: 6,18 - 5412: 6,19 - 5420: 6,20 - 5432: -9,24 + 931: 0,1 + 939: 1,1 + 947: 2,1 + 955: 3,0 + 963: 3,1 + 971: 4,0 + 979: 4,1 + 987: 8,12 + 999: -9,3 + 1007: -8,12 + 1015: -4,0 + 1023: -4,1 + 1031: -3,0 + 1039: -3,1 + 1047: -2,1 + 1055: -1,1 + 1064: -10,-16 + 1069: -4,-1 + 1077: 4,-1 + 1095: -9,-17 + 1098: -3,-20 + 1103: 6,16 + 1111: 6,17 + 1119: 6,18 + 1127: 6,19 + 1135: 6,20 + 1147: -9,24 + 1155: 0,1 + 1163: 1,1 + 1171: 2,1 + 1179: 3,0 + 1187: 3,1 + 1195: 4,0 + 1203: 4,1 + 1211: 8,12 + 1223: -9,3 + 1231: -8,12 + 1239: -4,0 + 1247: -4,1 + 1255: -3,0 + 1263: -3,1 + 1271: -2,1 + 1279: -1,1 + 1288: -10,-16 + 1293: -4,-1 + 1301: 4,-1 + 1319: -9,-17 + 1322: -3,-20 + 1327: 6,16 + 1335: 6,17 + 1343: 6,18 + 1351: 6,19 + 1359: 6,20 + 1371: -9,24 + 1379: 0,1 + 1387: 1,1 + 1395: 2,1 + 1403: 3,0 + 1411: 3,1 + 1419: 4,0 + 1427: 4,1 + 1435: 8,12 + 1447: -9,3 + 1455: -8,12 + 1463: -4,0 + 1471: -4,1 + 1479: -3,0 + 1487: -3,1 + 1495: -2,1 + 1503: -1,1 + 1512: -10,-16 + 1517: -4,-1 + 1525: 4,-1 + 1543: -9,-17 + 1546: -3,-20 + 1551: 6,16 + 1559: 6,17 + 1567: 6,18 + 1575: 6,19 + 1583: 6,20 + 1595: -9,24 + 1603: 0,1 + 1611: 1,1 + 1619: 2,1 + 1627: 3,0 + 1635: 3,1 + 1643: 4,0 + 1651: 4,1 + 1659: 8,12 + 1671: -9,3 + 1679: -8,12 + 1687: -4,0 + 1695: -4,1 + 1703: -3,0 + 1711: -3,1 + 1719: -2,1 + 1727: -1,1 + 1736: -10,-16 + 1741: -4,-1 + 1749: 4,-1 + 1767: -9,-17 + 1770: -3,-20 + 1775: 6,16 + 1783: 6,17 + 1791: 6,18 + 1799: 6,19 + 1807: 6,20 + 1819: -9,24 + 1827: 0,1 + 1835: 1,1 + 1843: 2,1 + 1851: 3,0 + 1859: 3,1 + 1867: 4,0 + 1875: 4,1 + 1883: 8,12 + 1895: -9,3 + 1900: -4,0 + 1908: -4,1 + 1916: -3,0 + 1924: -3,1 + 1932: -2,1 + 1940: -1,1 + 1949: -10,-16 + 1954: -4,-1 + 1962: 4,-1 + 1980: -9,-17 + 1983: -3,-20 + 1988: 6,16 + 1996: 6,17 + 2004: 6,18 + 2012: 6,19 + 2020: 6,20 + 2032: -9,24 + 2040: -8,12 + 2051: 0,1 + 2059: 1,1 + 2067: 2,1 + 2075: 3,0 + 2083: 3,1 + 2091: 4,0 + 2099: 4,1 + 2107: 8,12 + 2119: -9,3 + 2127: -8,12 + 2135: -4,0 + 2143: -4,1 + 2151: -3,0 + 2159: -3,1 + 2167: -2,1 + 2175: -1,1 + 2184: -10,-16 + 2189: -4,-1 + 2197: 4,-1 + 2215: -9,-17 + 2218: -3,-20 + 2223: 6,16 + 2231: 6,17 + 2239: 6,18 + 2247: 6,19 + 2255: 6,20 + 2267: -9,24 + 2275: 0,1 + 2283: 1,1 + 2291: 2,1 + 2299: 3,0 + 2307: 3,1 + 2315: 4,0 + 2323: 4,1 + 2331: 8,12 + 2343: -9,3 + 2351: -8,12 + 2359: -4,0 + 2367: -4,1 + 2375: -3,0 + 2383: -3,1 + 2391: -2,1 + 2399: -1,1 + 2408: -10,-16 + 2413: -4,-1 + 2421: 4,-1 + 2439: -9,-17 + 2442: -3,-20 + 2447: 6,16 + 2455: 6,17 + 2463: 6,18 + 2471: 6,19 + 2479: 6,20 + 2491: -9,24 + 2499: 0,1 + 2507: 1,1 + 2515: 2,1 + 2523: 3,0 + 2531: 3,1 + 2539: 4,0 + 2547: 4,1 + 2555: 8,12 + 2567: -9,3 + 2575: -8,12 + 2583: -4,0 + 2591: -4,1 + 2599: -3,0 + 2607: -3,1 + 2615: -2,1 + 2623: -1,1 + 2632: -10,-16 + 2637: -4,-1 + 2645: 4,-1 + 2663: -9,-17 + 2666: -3,-20 + 2671: 6,16 + 2679: 6,17 + 2687: 6,18 + 2695: 6,19 + 2703: 6,20 + 2715: -9,24 + 2723: 0,1 + 2731: 1,1 + 2739: 2,1 + 2747: 3,0 + 2755: 3,1 + 2763: 4,0 + 2771: 4,1 + 2779: 8,12 + 2791: -9,3 + 2799: -8,12 + 2807: -4,0 + 2815: -4,1 + 2823: -3,0 + 2831: -3,1 + 2839: -2,1 + 2847: -1,1 + 2856: -10,-16 + 2861: -4,-1 + 2869: 4,-1 + 2887: -9,-17 + 2890: -3,-20 + 2895: 6,16 + 2903: 6,17 + 2911: 6,18 + 2919: 6,19 + 2927: 6,20 + 2939: -9,24 + 2947: 0,1 + 2955: 1,1 + 2963: 2,1 + 2971: 3,0 + 2979: 3,1 + 2987: 4,0 + 2995: 4,1 + 3003: 8,12 + 3015: -9,3 + 3023: -8,12 + 3031: -4,0 + 3039: -4,1 + 3047: -3,0 + 3055: -3,1 + 3063: -2,1 + 3071: -1,1 + 3080: -10,-16 + 3085: -4,-1 + 3093: 4,-1 + 3111: -9,-17 + 3114: -3,-20 + 3119: 6,16 + 3127: 6,17 + 3135: 6,18 + 3143: 6,19 + 3151: 6,20 + 3163: -9,24 + 3171: 0,1 + 3179: 1,1 + 3187: 2,1 + 3195: 3,0 + 3203: 3,1 + 3211: 4,0 + 3219: 4,1 + 3227: 8,12 + 3239: -9,3 + 3247: -8,12 + 3255: -4,0 + 3263: -4,1 + 3271: -3,0 + 3279: -3,1 + 3287: -2,1 + 3295: -1,1 + 3304: -10,-16 + 3309: -4,-1 + 3317: 4,-1 + 3335: -9,-17 + 3338: -3,-20 + 3343: 6,16 + 3351: 6,17 + 3359: 6,18 + 3367: 6,19 + 3375: 6,20 + 3387: -9,24 + 3419: 0,1 + 3428: 1,1 + 3437: 2,1 + 3451: 3,0 + 3459: 3,1 + 3467: 4,0 + 3475: 4,1 + 3483: 8,12 + 3495: -9,3 + 3503: -8,12 + 3511: -4,0 + 3519: -4,1 + 3527: -3,0 + 3535: -3,1 + 3543: -2,1 + 3557: -1,1 + 3567: -10,-16 + 3572: -4,-1 + 3580: 4,-1 + 3598: -9,-17 + 3601: -3,-20 + 3606: 6,16 + 3614: 6,17 + 3622: 6,18 + 3630: 6,19 + 3638: 6,20 + 3650: -9,24 + 3667: 0,1 + 3677: 1,1 + 3687: 2,1 + 3704: 3,0 + 3712: 3,1 + 3720: 4,0 + 3728: 4,1 + 3736: 8,12 + 3748: -9,3 + 3756: -8,12 + 3764: -4,0 + 3772: -4,1 + 3780: -3,0 + 3788: -3,1 + 3796: -2,1 + 3813: -1,1 + 3824: -10,-16 + 3829: -4,-1 + 3837: 4,-1 + 3855: -9,-17 + 3858: -3,-20 + 3863: 6,16 + 3871: 6,17 + 3879: 6,18 + 3887: 6,19 + 3895: 6,20 + 3907: -9,24 + 3915: 0,1 + 3925: 1,1 + 3935: 2,1 + 3952: 3,0 + 3960: 3,1 + 3968: 4,0 + 3976: 4,1 + 3984: 8,12 + 3996: -9,3 + 4004: -8,12 + 4012: -4,0 + 4020: -4,1 + 4028: -3,0 + 4036: -3,1 + 4044: -2,1 + 4061: -1,1 + 4069: -10,-16 + 4074: -4,-1 + 4082: 4,-1 + 4097: -9,-17 + 4100: -3,-20 + 4105: 6,16 + 4113: 6,17 + 4121: 6,18 + 4129: 6,19 + 4137: 6,20 + 4149: -9,24 + 4163: 0,1 + 4173: 1,1 + 4183: 2,1 + 4200: 3,0 + 4208: 3,1 + 4216: 4,0 + 4224: 4,1 + 4232: 8,12 + 4244: -9,3 + 4252: -8,12 + 4260: -4,0 + 4268: -4,1 + 4276: -3,0 + 4284: -3,1 + 4292: -2,1 + 4309: -1,1 + 4320: -10,-16 + 4325: -4,-1 + 4333: 4,-1 + 4351: -9,-17 + 4354: -3,-20 + 4359: 6,16 + 4367: 6,17 + 4375: 6,18 + 4383: 6,19 + 4391: 6,20 + 4403: -9,24 + 4411: 0,1 + 4421: 1,1 + 4431: 2,1 + 4448: 3,0 + 4456: 3,1 + 4464: 4,0 + 4472: 4,1 + 4480: 8,12 + 4492: -9,3 + 4500: -8,12 + 4508: -4,0 + 4516: -4,1 + 4524: -3,0 + 4532: -3,1 + 4540: -2,1 + 4557: -1,1 + 4568: -10,-16 + 4573: -4,-1 + 4581: 4,-1 + 4599: -9,-17 + 4602: -3,-20 + 4607: 6,16 + 4615: 6,17 + 4623: 6,18 + 4631: 6,19 + 4639: 6,20 + 4651: -9,24 + 4659: 0,1 + 4669: 1,1 + 4679: 2,1 + 4696: 3,0 + 4704: 3,1 + 4712: 4,0 + 4720: 4,1 + 4728: 8,12 + 4740: -9,3 + 4748: -8,12 + 4756: -4,0 + 4764: -4,1 + 4772: -3,0 + 4780: -3,1 + 4788: -2,1 + 4805: -1,1 + 4816: -10,-16 + 4821: -4,-1 + 4829: 4,-1 + 4847: -9,-17 + 4850: -3,-20 + 4855: 6,16 + 4863: 6,17 + 4871: 6,18 + 4879: 6,19 + 4887: 6,20 + 4899: -9,24 + 4922: 0,1 + 4932: 1,1 + 4942: 2,1 + 4959: 3,0 + 4967: 3,1 + 4975: 4,0 + 4983: 4,1 + 4991: 8,12 + 5003: -9,3 + 5011: -8,12 + 5019: -4,0 + 5027: -4,1 + 5035: -3,0 + 5043: -3,1 + 5051: -2,1 + 5068: -1,1 + 5079: -10,-16 + 5084: -4,-1 + 5092: 4,-1 + 5110: -9,-17 + 5113: -3,-20 + 5118: 6,16 + 5126: 6,17 + 5134: 6,18 + 5142: 6,19 + 5150: 6,20 + 5162: -9,24 + 5170: 0,1 + 5180: 1,1 + 5190: 2,1 + 5207: 3,0 + 5215: 3,1 + 5223: 4,0 + 5231: 4,1 + 5239: 8,12 + 5251: -9,3 + 5259: -8,12 + 5267: -4,0 + 5275: -4,1 + 5283: -3,0 + 5291: -3,1 + 5299: -2,1 + 5316: -1,1 + 5327: -10,-16 + 5332: -4,-1 + 5340: 4,-1 + 5358: -9,-17 + 5361: -3,-20 + 5366: 6,16 + 5374: 6,17 + 5382: 6,18 + 5390: 6,19 + 5398: 6,20 + 5410: -9,24 + 5440: 0,1 + 5450: 1,1 + 5460: 2,1 + 5477: 3,0 + 5485: 3,1 + 5493: 4,0 + 5501: 4,1 + 5509: 8,12 + 5521: -9,3 + 5529: -8,12 + 5537: -4,0 + 5545: -4,1 + 5553: -3,0 + 5561: -3,1 + 5569: -2,1 + 5586: -1,1 + 5597: -10,-16 + 5602: -4,-1 + 5610: 4,-1 + 5628: -9,-17 + 5631: -3,-20 + 5636: 6,16 + 5644: 6,17 + 5652: 6,18 + 5660: 6,19 + 5668: 6,20 + 5680: -9,24 - node: zIndex: 1 id: LatticeCornerNW decals: - 944: 0,1 - 952: 1,1 - 960: 2,1 - 968: 3,0 - 976: 3,1 - 984: 4,0 - 992: 4,1 - 1000: 8,12 - 1003: 9,4 - 1020: -8,12 - 1028: -4,0 - 1036: -4,1 - 1044: -3,0 - 1052: -3,1 - 1060: -2,1 - 1068: -1,1 - 1082: -4,-1 - 1090: 4,-1 - 1093: 10,-16 - 1099: 3,-20 - 1102: 9,-17 - 1116: 6,16 - 1124: 6,17 - 1132: 6,18 - 1140: 6,19 - 1148: 6,20 - 1151: 9,24 - 1168: 0,1 - 1176: 1,1 - 1184: 2,1 - 1192: 3,0 - 1200: 3,1 - 1208: 4,0 - 1216: 4,1 - 1224: 8,12 - 1227: 9,4 - 1244: -8,12 - 1252: -4,0 - 1260: -4,1 - 1268: -3,0 - 1276: -3,1 - 1284: -2,1 - 1292: -1,1 - 1306: -4,-1 - 1314: 4,-1 - 1317: 10,-16 - 1323: 3,-20 - 1326: 9,-17 - 1340: 6,16 - 1348: 6,17 - 1356: 6,18 - 1364: 6,19 - 1372: 6,20 - 1375: 9,24 - 1392: 0,1 - 1400: 1,1 - 1408: 2,1 - 1416: 3,0 - 1424: 3,1 - 1432: 4,0 - 1440: 4,1 - 1448: 8,12 - 1451: 9,4 - 1468: -8,12 - 1476: -4,0 - 1484: -4,1 - 1492: -3,0 - 1500: -3,1 - 1508: -2,1 - 1516: -1,1 - 1530: -4,-1 - 1538: 4,-1 - 1541: 10,-16 - 1547: 3,-20 - 1550: 9,-17 - 1564: 6,16 - 1572: 6,17 - 1580: 6,18 - 1588: 6,19 - 1596: 6,20 - 1599: 9,24 - 1616: 0,1 - 1624: 1,1 - 1632: 2,1 - 1640: 3,0 - 1648: 3,1 - 1656: 4,0 - 1664: 4,1 - 1672: 8,12 - 1675: 9,4 - 1692: -8,12 - 1700: -4,0 - 1708: -4,1 - 1716: -3,0 - 1724: -3,1 - 1732: -2,1 - 1740: -1,1 - 1754: -4,-1 - 1762: 4,-1 - 1765: 10,-16 - 1771: 3,-20 - 1774: 9,-17 - 1788: 6,16 - 1796: 6,17 - 1804: 6,18 - 1812: 6,19 - 1820: 6,20 - 1823: 9,24 - 1840: 0,1 - 1848: 1,1 - 1856: 2,1 - 1864: 3,0 - 1872: 3,1 - 1880: 4,0 - 1888: 4,1 - 1896: 8,12 - 1899: 9,4 - 1913: -4,0 - 1921: -4,1 - 1929: -3,0 - 1937: -3,1 - 1945: -2,1 - 1953: -1,1 - 1967: -4,-1 - 1975: 4,-1 - 1978: 10,-16 - 1984: 3,-20 - 1987: 9,-17 - 2001: 6,16 - 2009: 6,17 - 2017: 6,18 - 2025: 6,19 - 2033: 6,20 - 2036: 9,24 - 2053: -8,12 - 2064: 0,1 - 2072: 1,1 - 2080: 2,1 - 2088: 3,0 - 2096: 3,1 - 2104: 4,0 - 2112: 4,1 - 2120: 8,12 - 2123: 9,4 - 2140: -8,12 - 2148: -4,0 - 2156: -4,1 - 2164: -3,0 - 2172: -3,1 - 2180: -2,1 - 2188: -1,1 - 2202: -4,-1 - 2210: 4,-1 - 2213: 10,-16 - 2219: 3,-20 - 2222: 9,-17 - 2236: 6,16 - 2244: 6,17 - 2252: 6,18 - 2260: 6,19 - 2268: 6,20 - 2271: 9,24 - 2288: 0,1 - 2296: 1,1 - 2304: 2,1 - 2312: 3,0 - 2320: 3,1 - 2328: 4,0 - 2336: 4,1 - 2344: 8,12 - 2347: 9,4 - 2364: -8,12 - 2372: -4,0 - 2380: -4,1 - 2388: -3,0 - 2396: -3,1 - 2404: -2,1 - 2412: -1,1 - 2426: -4,-1 - 2434: 4,-1 - 2437: 10,-16 - 2443: 3,-20 - 2446: 9,-17 - 2460: 6,16 - 2468: 6,17 - 2476: 6,18 - 2484: 6,19 - 2492: 6,20 - 2495: 9,24 - 2512: 0,1 - 2520: 1,1 - 2528: 2,1 - 2536: 3,0 - 2544: 3,1 - 2552: 4,0 - 2560: 4,1 - 2568: 8,12 - 2571: 9,4 - 2588: -8,12 - 2596: -4,0 - 2604: -4,1 - 2612: -3,0 - 2620: -3,1 - 2628: -2,1 - 2636: -1,1 - 2650: -4,-1 - 2658: 4,-1 - 2661: 10,-16 - 2667: 3,-20 - 2670: 9,-17 - 2684: 6,16 - 2692: 6,17 - 2700: 6,18 - 2708: 6,19 - 2716: 6,20 - 2719: 9,24 - 2736: 0,1 - 2744: 1,1 - 2752: 2,1 - 2760: 3,0 - 2768: 3,1 - 2776: 4,0 - 2784: 4,1 - 2792: 8,12 - 2795: 9,4 - 2812: -8,12 - 2820: -4,0 - 2828: -4,1 - 2836: -3,0 - 2844: -3,1 - 2852: -2,1 - 2860: -1,1 - 2874: -4,-1 - 2882: 4,-1 - 2885: 10,-16 - 2891: 3,-20 - 2894: 9,-17 - 2908: 6,16 - 2916: 6,17 - 2924: 6,18 - 2932: 6,19 - 2940: 6,20 - 2943: 9,24 - 2960: 0,1 - 2968: 1,1 - 2976: 2,1 - 2984: 3,0 - 2992: 3,1 - 3000: 4,0 - 3008: 4,1 - 3016: 8,12 - 3019: 9,4 - 3036: -8,12 - 3044: -4,0 - 3052: -4,1 - 3060: -3,0 - 3068: -3,1 - 3076: -2,1 - 3084: -1,1 - 3098: -4,-1 - 3106: 4,-1 - 3109: 10,-16 - 3115: 3,-20 - 3118: 9,-17 - 3132: 6,16 - 3140: 6,17 - 3148: 6,18 - 3156: 6,19 - 3164: 6,20 - 3167: 9,24 - 3184: 0,1 - 3192: 1,1 - 3200: 2,1 - 3208: 3,0 - 3216: 3,1 - 3224: 4,0 - 3232: 4,1 - 3240: 8,12 - 3243: 9,4 - 3260: -8,12 - 3268: -4,0 - 3276: -4,1 - 3284: -3,0 - 3292: -3,1 - 3300: -2,1 - 3308: -1,1 - 3322: -4,-1 - 3330: 4,-1 - 3333: 10,-16 - 3339: 3,-20 - 3342: 9,-17 - 3356: 6,16 - 3364: 6,17 - 3372: 6,18 - 3380: 6,19 - 3388: 6,20 - 3391: 9,24 - 3432: 0,1 - 3441: 1,1 - 3450: 2,1 - 3464: 3,0 - 3472: 3,1 - 3480: 4,0 - 3488: 4,1 - 3496: 8,12 - 3499: 9,4 - 3516: -8,12 - 3524: -4,0 - 3532: -4,1 - 3540: -3,0 - 3548: -3,1 - 3556: -2,1 - 3570: -1,1 - 3585: -4,-1 - 3593: 4,-1 - 3596: 10,-16 - 3602: 3,-20 - 3605: 9,-17 - 3619: 6,16 - 3627: 6,17 - 3635: 6,18 - 3643: 6,19 - 3651: 6,20 - 3654: 9,24 - 3680: 0,1 - 3690: 1,1 - 3700: 2,1 - 3717: 3,0 - 3725: 3,1 - 3733: 4,0 - 3741: 4,1 - 3749: 8,12 - 3752: 9,4 - 3769: -8,12 - 3777: -4,0 - 3785: -4,1 - 3793: -3,0 - 3801: -3,1 - 3809: -2,1 - 3826: -1,1 - 3842: -4,-1 - 3850: 4,-1 - 3853: 10,-16 - 3859: 3,-20 - 3862: 9,-17 - 3876: 6,16 - 3884: 6,17 - 3892: 6,18 - 3900: 6,19 - 3908: 6,20 - 3911: 9,24 - 3928: 0,1 - 3938: 1,1 - 3948: 2,1 - 3965: 3,0 - 3973: 3,1 - 3981: 4,0 - 3989: 4,1 - 3997: 8,12 - 4000: 9,4 - 4017: -8,12 - 4025: -4,0 - 4033: -4,1 - 4041: -3,0 - 4049: -3,1 - 4057: -2,1 - 4074: -1,1 - 4087: -4,-1 - 4095: 4,-1 - 4098: 10,-16 - 4101: 3,-20 - 4104: 9,-17 - 4118: 6,16 - 4126: 6,17 - 4134: 6,18 - 4142: 6,19 - 4150: 6,20 - 4153: 9,24 - 4176: 0,1 - 4186: 1,1 - 4196: 2,1 - 4213: 3,0 - 4221: 3,1 - 4229: 4,0 - 4237: 4,1 - 4245: 8,12 - 4248: 9,4 - 4265: -8,12 - 4273: -4,0 - 4281: -4,1 - 4289: -3,0 - 4297: -3,1 - 4305: -2,1 - 4322: -1,1 - 4338: -4,-1 - 4346: 4,-1 - 4349: 10,-16 - 4355: 3,-20 - 4358: 9,-17 - 4372: 6,16 - 4380: 6,17 - 4388: 6,18 - 4396: 6,19 - 4404: 6,20 - 4407: 9,24 - 4424: 0,1 - 4434: 1,1 - 4444: 2,1 - 4461: 3,0 - 4469: 3,1 - 4477: 4,0 - 4485: 4,1 - 4493: 8,12 - 4496: 9,4 - 4513: -8,12 - 4521: -4,0 - 4529: -4,1 - 4537: -3,0 - 4545: -3,1 - 4553: -2,1 - 4570: -1,1 - 4586: -4,-1 - 4594: 4,-1 - 4597: 10,-16 - 4603: 3,-20 - 4606: 9,-17 - 4620: 6,16 - 4628: 6,17 - 4636: 6,18 - 4644: 6,19 - 4652: 6,20 - 4655: 9,24 - 4672: 0,1 - 4682: 1,1 - 4692: 2,1 - 4709: 3,0 - 4717: 3,1 - 4725: 4,0 - 4733: 4,1 - 4741: 8,12 - 4744: 9,4 - 4761: -8,12 - 4769: -4,0 - 4777: -4,1 - 4785: -3,0 - 4793: -3,1 - 4801: -2,1 - 4818: -1,1 - 4834: -4,-1 - 4842: 4,-1 - 4845: 10,-16 - 4851: 3,-20 - 4854: 9,-17 - 4868: 6,16 - 4876: 6,17 - 4884: 6,18 - 4892: 6,19 - 4900: 6,20 - 4903: 9,24 - 4947: 0,1 - 4957: 1,1 - 4967: 2,1 - 4984: 3,0 - 4992: 3,1 - 5000: 4,0 - 5008: 4,1 - 5016: 8,12 - 5019: 9,4 - 5036: -8,12 - 5044: -4,0 - 5052: -4,1 - 5060: -3,0 - 5068: -3,1 - 5076: -2,1 - 5093: -1,1 - 5109: -4,-1 - 5117: 4,-1 - 5120: 10,-16 - 5126: 3,-20 - 5129: 9,-17 - 5143: 6,16 - 5151: 6,17 - 5159: 6,18 - 5167: 6,19 - 5175: 6,20 - 5178: 9,24 - 5195: 0,1 - 5205: 1,1 - 5215: 2,1 - 5232: 3,0 - 5240: 3,1 - 5248: 4,0 - 5256: 4,1 - 5264: 8,12 - 5267: 9,4 - 5284: -8,12 - 5292: -4,0 - 5300: -4,1 - 5308: -3,0 - 5316: -3,1 - 5324: -2,1 - 5341: -1,1 - 5357: -4,-1 - 5365: 4,-1 - 5368: 10,-16 - 5374: 3,-20 - 5377: 9,-17 - 5391: 6,16 - 5399: 6,17 - 5407: 6,18 - 5415: 6,19 - 5423: 6,20 - 5426: 9,24 + 934: 0,1 + 942: 1,1 + 950: 2,1 + 958: 3,0 + 966: 3,1 + 974: 4,0 + 982: 4,1 + 990: 8,12 + 993: 9,4 + 1010: -8,12 + 1018: -4,0 + 1026: -4,1 + 1034: -3,0 + 1042: -3,1 + 1050: -2,1 + 1058: -1,1 + 1072: -4,-1 + 1080: 4,-1 + 1083: 10,-16 + 1089: 3,-20 + 1092: 9,-17 + 1106: 6,16 + 1114: 6,17 + 1122: 6,18 + 1130: 6,19 + 1138: 6,20 + 1141: 9,24 + 1158: 0,1 + 1166: 1,1 + 1174: 2,1 + 1182: 3,0 + 1190: 3,1 + 1198: 4,0 + 1206: 4,1 + 1214: 8,12 + 1217: 9,4 + 1234: -8,12 + 1242: -4,0 + 1250: -4,1 + 1258: -3,0 + 1266: -3,1 + 1274: -2,1 + 1282: -1,1 + 1296: -4,-1 + 1304: 4,-1 + 1307: 10,-16 + 1313: 3,-20 + 1316: 9,-17 + 1330: 6,16 + 1338: 6,17 + 1346: 6,18 + 1354: 6,19 + 1362: 6,20 + 1365: 9,24 + 1382: 0,1 + 1390: 1,1 + 1398: 2,1 + 1406: 3,0 + 1414: 3,1 + 1422: 4,0 + 1430: 4,1 + 1438: 8,12 + 1441: 9,4 + 1458: -8,12 + 1466: -4,0 + 1474: -4,1 + 1482: -3,0 + 1490: -3,1 + 1498: -2,1 + 1506: -1,1 + 1520: -4,-1 + 1528: 4,-1 + 1531: 10,-16 + 1537: 3,-20 + 1540: 9,-17 + 1554: 6,16 + 1562: 6,17 + 1570: 6,18 + 1578: 6,19 + 1586: 6,20 + 1589: 9,24 + 1606: 0,1 + 1614: 1,1 + 1622: 2,1 + 1630: 3,0 + 1638: 3,1 + 1646: 4,0 + 1654: 4,1 + 1662: 8,12 + 1665: 9,4 + 1682: -8,12 + 1690: -4,0 + 1698: -4,1 + 1706: -3,0 + 1714: -3,1 + 1722: -2,1 + 1730: -1,1 + 1744: -4,-1 + 1752: 4,-1 + 1755: 10,-16 + 1761: 3,-20 + 1764: 9,-17 + 1778: 6,16 + 1786: 6,17 + 1794: 6,18 + 1802: 6,19 + 1810: 6,20 + 1813: 9,24 + 1830: 0,1 + 1838: 1,1 + 1846: 2,1 + 1854: 3,0 + 1862: 3,1 + 1870: 4,0 + 1878: 4,1 + 1886: 8,12 + 1889: 9,4 + 1903: -4,0 + 1911: -4,1 + 1919: -3,0 + 1927: -3,1 + 1935: -2,1 + 1943: -1,1 + 1957: -4,-1 + 1965: 4,-1 + 1968: 10,-16 + 1974: 3,-20 + 1977: 9,-17 + 1991: 6,16 + 1999: 6,17 + 2007: 6,18 + 2015: 6,19 + 2023: 6,20 + 2026: 9,24 + 2043: -8,12 + 2054: 0,1 + 2062: 1,1 + 2070: 2,1 + 2078: 3,0 + 2086: 3,1 + 2094: 4,0 + 2102: 4,1 + 2110: 8,12 + 2113: 9,4 + 2130: -8,12 + 2138: -4,0 + 2146: -4,1 + 2154: -3,0 + 2162: -3,1 + 2170: -2,1 + 2178: -1,1 + 2192: -4,-1 + 2200: 4,-1 + 2203: 10,-16 + 2209: 3,-20 + 2212: 9,-17 + 2226: 6,16 + 2234: 6,17 + 2242: 6,18 + 2250: 6,19 + 2258: 6,20 + 2261: 9,24 + 2278: 0,1 + 2286: 1,1 + 2294: 2,1 + 2302: 3,0 + 2310: 3,1 + 2318: 4,0 + 2326: 4,1 + 2334: 8,12 + 2337: 9,4 + 2354: -8,12 + 2362: -4,0 + 2370: -4,1 + 2378: -3,0 + 2386: -3,1 + 2394: -2,1 + 2402: -1,1 + 2416: -4,-1 + 2424: 4,-1 + 2427: 10,-16 + 2433: 3,-20 + 2436: 9,-17 + 2450: 6,16 + 2458: 6,17 + 2466: 6,18 + 2474: 6,19 + 2482: 6,20 + 2485: 9,24 + 2502: 0,1 + 2510: 1,1 + 2518: 2,1 + 2526: 3,0 + 2534: 3,1 + 2542: 4,0 + 2550: 4,1 + 2558: 8,12 + 2561: 9,4 + 2578: -8,12 + 2586: -4,0 + 2594: -4,1 + 2602: -3,0 + 2610: -3,1 + 2618: -2,1 + 2626: -1,1 + 2640: -4,-1 + 2648: 4,-1 + 2651: 10,-16 + 2657: 3,-20 + 2660: 9,-17 + 2674: 6,16 + 2682: 6,17 + 2690: 6,18 + 2698: 6,19 + 2706: 6,20 + 2709: 9,24 + 2726: 0,1 + 2734: 1,1 + 2742: 2,1 + 2750: 3,0 + 2758: 3,1 + 2766: 4,0 + 2774: 4,1 + 2782: 8,12 + 2785: 9,4 + 2802: -8,12 + 2810: -4,0 + 2818: -4,1 + 2826: -3,0 + 2834: -3,1 + 2842: -2,1 + 2850: -1,1 + 2864: -4,-1 + 2872: 4,-1 + 2875: 10,-16 + 2881: 3,-20 + 2884: 9,-17 + 2898: 6,16 + 2906: 6,17 + 2914: 6,18 + 2922: 6,19 + 2930: 6,20 + 2933: 9,24 + 2950: 0,1 + 2958: 1,1 + 2966: 2,1 + 2974: 3,0 + 2982: 3,1 + 2990: 4,0 + 2998: 4,1 + 3006: 8,12 + 3009: 9,4 + 3026: -8,12 + 3034: -4,0 + 3042: -4,1 + 3050: -3,0 + 3058: -3,1 + 3066: -2,1 + 3074: -1,1 + 3088: -4,-1 + 3096: 4,-1 + 3099: 10,-16 + 3105: 3,-20 + 3108: 9,-17 + 3122: 6,16 + 3130: 6,17 + 3138: 6,18 + 3146: 6,19 + 3154: 6,20 + 3157: 9,24 + 3174: 0,1 + 3182: 1,1 + 3190: 2,1 + 3198: 3,0 + 3206: 3,1 + 3214: 4,0 + 3222: 4,1 + 3230: 8,12 + 3233: 9,4 + 3250: -8,12 + 3258: -4,0 + 3266: -4,1 + 3274: -3,0 + 3282: -3,1 + 3290: -2,1 + 3298: -1,1 + 3312: -4,-1 + 3320: 4,-1 + 3323: 10,-16 + 3329: 3,-20 + 3332: 9,-17 + 3346: 6,16 + 3354: 6,17 + 3362: 6,18 + 3370: 6,19 + 3378: 6,20 + 3381: 9,24 + 3422: 0,1 + 3431: 1,1 + 3440: 2,1 + 3454: 3,0 + 3462: 3,1 + 3470: 4,0 + 3478: 4,1 + 3486: 8,12 + 3489: 9,4 + 3506: -8,12 + 3514: -4,0 + 3522: -4,1 + 3530: -3,0 + 3538: -3,1 + 3546: -2,1 + 3560: -1,1 + 3575: -4,-1 + 3583: 4,-1 + 3586: 10,-16 + 3592: 3,-20 + 3595: 9,-17 + 3609: 6,16 + 3617: 6,17 + 3625: 6,18 + 3633: 6,19 + 3641: 6,20 + 3644: 9,24 + 3670: 0,1 + 3680: 1,1 + 3690: 2,1 + 3707: 3,0 + 3715: 3,1 + 3723: 4,0 + 3731: 4,1 + 3739: 8,12 + 3742: 9,4 + 3759: -8,12 + 3767: -4,0 + 3775: -4,1 + 3783: -3,0 + 3791: -3,1 + 3799: -2,1 + 3816: -1,1 + 3832: -4,-1 + 3840: 4,-1 + 3843: 10,-16 + 3849: 3,-20 + 3852: 9,-17 + 3866: 6,16 + 3874: 6,17 + 3882: 6,18 + 3890: 6,19 + 3898: 6,20 + 3901: 9,24 + 3918: 0,1 + 3928: 1,1 + 3938: 2,1 + 3955: 3,0 + 3963: 3,1 + 3971: 4,0 + 3979: 4,1 + 3987: 8,12 + 3990: 9,4 + 4007: -8,12 + 4015: -4,0 + 4023: -4,1 + 4031: -3,0 + 4039: -3,1 + 4047: -2,1 + 4064: -1,1 + 4077: -4,-1 + 4085: 4,-1 + 4088: 10,-16 + 4091: 3,-20 + 4094: 9,-17 + 4108: 6,16 + 4116: 6,17 + 4124: 6,18 + 4132: 6,19 + 4140: 6,20 + 4143: 9,24 + 4166: 0,1 + 4176: 1,1 + 4186: 2,1 + 4203: 3,0 + 4211: 3,1 + 4219: 4,0 + 4227: 4,1 + 4235: 8,12 + 4238: 9,4 + 4255: -8,12 + 4263: -4,0 + 4271: -4,1 + 4279: -3,0 + 4287: -3,1 + 4295: -2,1 + 4312: -1,1 + 4328: -4,-1 + 4336: 4,-1 + 4339: 10,-16 + 4345: 3,-20 + 4348: 9,-17 + 4362: 6,16 + 4370: 6,17 + 4378: 6,18 + 4386: 6,19 + 4394: 6,20 + 4397: 9,24 + 4414: 0,1 + 4424: 1,1 + 4434: 2,1 + 4451: 3,0 + 4459: 3,1 + 4467: 4,0 + 4475: 4,1 + 4483: 8,12 + 4486: 9,4 + 4503: -8,12 + 4511: -4,0 + 4519: -4,1 + 4527: -3,0 + 4535: -3,1 + 4543: -2,1 + 4560: -1,1 + 4576: -4,-1 + 4584: 4,-1 + 4587: 10,-16 + 4593: 3,-20 + 4596: 9,-17 + 4610: 6,16 + 4618: 6,17 + 4626: 6,18 + 4634: 6,19 + 4642: 6,20 + 4645: 9,24 + 4662: 0,1 + 4672: 1,1 + 4682: 2,1 + 4699: 3,0 + 4707: 3,1 + 4715: 4,0 + 4723: 4,1 + 4731: 8,12 + 4734: 9,4 + 4751: -8,12 + 4759: -4,0 + 4767: -4,1 + 4775: -3,0 + 4783: -3,1 + 4791: -2,1 + 4808: -1,1 + 4824: -4,-1 + 4832: 4,-1 + 4835: 10,-16 + 4841: 3,-20 + 4844: 9,-17 + 4858: 6,16 + 4866: 6,17 + 4874: 6,18 + 4882: 6,19 + 4890: 6,20 + 4893: 9,24 + 4925: 0,1 + 4935: 1,1 + 4945: 2,1 + 4962: 3,0 + 4970: 3,1 + 4978: 4,0 + 4986: 4,1 + 4994: 8,12 + 4997: 9,4 + 5014: -8,12 + 5022: -4,0 + 5030: -4,1 + 5038: -3,0 + 5046: -3,1 + 5054: -2,1 + 5071: -1,1 + 5087: -4,-1 + 5095: 4,-1 + 5098: 10,-16 + 5104: 3,-20 + 5107: 9,-17 + 5121: 6,16 + 5129: 6,17 + 5137: 6,18 + 5145: 6,19 + 5153: 6,20 + 5156: 9,24 + 5173: 0,1 + 5183: 1,1 + 5193: 2,1 + 5210: 3,0 + 5218: 3,1 + 5226: 4,0 + 5234: 4,1 + 5242: 8,12 + 5245: 9,4 + 5262: -8,12 + 5270: -4,0 + 5278: -4,1 + 5286: -3,0 + 5294: -3,1 + 5302: -2,1 + 5319: -1,1 + 5335: -4,-1 + 5343: 4,-1 + 5346: 10,-16 + 5352: 3,-20 + 5355: 9,-17 + 5369: 6,16 + 5377: 6,17 + 5385: 6,18 + 5393: 6,19 + 5401: 6,20 + 5404: 9,24 + 5443: 0,1 + 5453: 1,1 + 5463: 2,1 + 5480: 3,0 + 5488: 3,1 + 5496: 4,0 + 5504: 4,1 + 5512: 8,12 + 5515: 9,4 + 5532: -8,12 + 5540: -4,0 + 5548: -4,1 + 5556: -3,0 + 5564: -3,1 + 5572: -2,1 + 5589: -1,1 + 5605: -4,-1 + 5613: 4,-1 + 5616: 10,-16 + 5622: 3,-20 + 5625: 9,-17 + 5639: 6,16 + 5647: 6,17 + 5655: 6,18 + 5663: 6,19 + 5671: 6,20 + 5674: 9,24 - node: zIndex: 1 id: LatticeCornerSE decals: - 939: 0,1 - 947: 1,1 - 955: 2,1 - 963: 3,0 - 971: 3,1 - 979: 4,0 - 987: 4,1 - 995: 8,12 - 1012: -9,12 - 1015: -8,12 - 1023: -4,0 - 1031: -4,1 - 1039: -3,0 - 1047: -3,1 - 1055: -2,1 - 1063: -1,1 - 1071: -12,-10 - 1077: -4,-1 - 1085: 4,-1 - 1111: 6,16 - 1119: 6,17 - 1127: 6,18 - 1135: 6,19 - 1143: 6,20 - 1160: -9,28 - 1163: 0,1 - 1171: 1,1 - 1179: 2,1 - 1187: 3,0 - 1195: 3,1 - 1203: 4,0 - 1211: 4,1 - 1219: 8,12 - 1236: -9,12 - 1239: -8,12 - 1247: -4,0 - 1255: -4,1 - 1263: -3,0 - 1271: -3,1 - 1279: -2,1 - 1287: -1,1 - 1295: -12,-10 - 1301: -4,-1 - 1309: 4,-1 - 1335: 6,16 - 1343: 6,17 - 1351: 6,18 - 1359: 6,19 - 1367: 6,20 - 1384: -9,28 - 1387: 0,1 - 1395: 1,1 - 1403: 2,1 - 1411: 3,0 - 1419: 3,1 - 1427: 4,0 - 1435: 4,1 - 1443: 8,12 - 1460: -9,12 - 1463: -8,12 - 1471: -4,0 - 1479: -4,1 - 1487: -3,0 - 1495: -3,1 - 1503: -2,1 - 1511: -1,1 - 1519: -12,-10 - 1525: -4,-1 - 1533: 4,-1 - 1559: 6,16 - 1567: 6,17 - 1575: 6,18 - 1583: 6,19 - 1591: 6,20 - 1608: -9,28 - 1611: 0,1 - 1619: 1,1 - 1627: 2,1 - 1635: 3,0 - 1643: 3,1 - 1651: 4,0 - 1659: 4,1 - 1667: 8,12 - 1684: -9,12 - 1687: -8,12 - 1695: -4,0 - 1703: -4,1 - 1711: -3,0 - 1719: -3,1 - 1727: -2,1 - 1735: -1,1 - 1743: -12,-10 - 1749: -4,-1 - 1757: 4,-1 - 1783: 6,16 - 1791: 6,17 - 1799: 6,18 - 1807: 6,19 - 1815: 6,20 - 1832: -9,28 - 1835: 0,1 - 1843: 1,1 - 1851: 2,1 - 1859: 3,0 - 1867: 3,1 - 1875: 4,0 - 1883: 4,1 - 1891: 8,12 - 1908: -4,0 - 1916: -4,1 - 1924: -3,0 - 1932: -3,1 - 1940: -2,1 - 1948: -1,1 - 1956: -12,-10 - 1962: -4,-1 - 1970: 4,-1 - 1996: 6,16 - 2004: 6,17 - 2012: 6,18 - 2020: 6,19 - 2028: 6,20 - 2045: -9,28 - 2048: -8,12 - 2056: -9,12 - 2059: 0,1 - 2067: 1,1 - 2075: 2,1 - 2083: 3,0 - 2091: 3,1 - 2099: 4,0 - 2107: 4,1 - 2115: 8,12 - 2132: -9,12 - 2135: -8,12 - 2143: -4,0 - 2151: -4,1 - 2159: -3,0 - 2167: -3,1 - 2175: -2,1 - 2183: -1,1 - 2191: -12,-10 - 2197: -4,-1 - 2205: 4,-1 - 2231: 6,16 - 2239: 6,17 - 2247: 6,18 - 2255: 6,19 - 2263: 6,20 - 2280: -9,28 - 2283: 0,1 - 2291: 1,1 - 2299: 2,1 - 2307: 3,0 - 2315: 3,1 - 2323: 4,0 - 2331: 4,1 - 2339: 8,12 - 2356: -9,12 - 2359: -8,12 - 2367: -4,0 - 2375: -4,1 - 2383: -3,0 - 2391: -3,1 - 2399: -2,1 - 2407: -1,1 - 2415: -12,-10 - 2421: -4,-1 - 2429: 4,-1 - 2455: 6,16 - 2463: 6,17 - 2471: 6,18 - 2479: 6,19 - 2487: 6,20 - 2504: -9,28 - 2507: 0,1 - 2515: 1,1 - 2523: 2,1 - 2531: 3,0 - 2539: 3,1 - 2547: 4,0 - 2555: 4,1 - 2563: 8,12 - 2580: -9,12 - 2583: -8,12 - 2591: -4,0 - 2599: -4,1 - 2607: -3,0 - 2615: -3,1 - 2623: -2,1 - 2631: -1,1 - 2639: -12,-10 - 2645: -4,-1 - 2653: 4,-1 - 2679: 6,16 - 2687: 6,17 - 2695: 6,18 - 2703: 6,19 - 2711: 6,20 - 2728: -9,28 - 2731: 0,1 - 2739: 1,1 - 2747: 2,1 - 2755: 3,0 - 2763: 3,1 - 2771: 4,0 - 2779: 4,1 - 2787: 8,12 - 2804: -9,12 - 2807: -8,12 - 2815: -4,0 - 2823: -4,1 - 2831: -3,0 - 2839: -3,1 - 2847: -2,1 - 2855: -1,1 - 2863: -12,-10 - 2869: -4,-1 - 2877: 4,-1 - 2903: 6,16 - 2911: 6,17 - 2919: 6,18 - 2927: 6,19 - 2935: 6,20 - 2952: -9,28 - 2955: 0,1 - 2963: 1,1 - 2971: 2,1 - 2979: 3,0 - 2987: 3,1 - 2995: 4,0 - 3003: 4,1 - 3011: 8,12 - 3028: -9,12 - 3031: -8,12 - 3039: -4,0 - 3047: -4,1 - 3055: -3,0 - 3063: -3,1 - 3071: -2,1 - 3079: -1,1 - 3087: -12,-10 - 3093: -4,-1 - 3101: 4,-1 - 3127: 6,16 - 3135: 6,17 - 3143: 6,18 - 3151: 6,19 - 3159: 6,20 - 3176: -9,28 - 3179: 0,1 - 3187: 1,1 - 3195: 2,1 - 3203: 3,0 - 3211: 3,1 - 3219: 4,0 - 3227: 4,1 - 3235: 8,12 - 3252: -9,12 - 3255: -8,12 - 3263: -4,0 - 3271: -4,1 - 3279: -3,0 - 3287: -3,1 - 3295: -2,1 - 3303: -1,1 - 3311: -12,-10 - 3317: -4,-1 - 3325: 4,-1 - 3351: 6,16 - 3359: 6,17 - 3367: 6,18 - 3375: 6,19 - 3383: 6,20 - 3400: -9,28 - 3427: 0,1 - 3436: 1,1 - 3445: 2,1 - 3459: 3,0 - 3467: 3,1 - 3475: 4,0 - 3483: 4,1 - 3491: 8,12 - 3508: -9,12 - 3511: -8,12 - 3519: -4,0 - 3527: -4,1 - 3535: -3,0 - 3543: -3,1 - 3551: -2,1 - 3565: -1,1 - 3574: -12,-10 - 3580: -4,-1 - 3588: 4,-1 - 3614: 6,16 - 3622: 6,17 - 3630: 6,18 - 3638: 6,19 - 3646: 6,20 - 3663: -9,28 - 3675: 0,1 - 3685: 1,1 - 3695: 2,1 - 3712: 3,0 - 3720: 3,1 - 3728: 4,0 - 3736: 4,1 - 3744: 8,12 - 3761: -9,12 - 3764: -8,12 - 3772: -4,0 - 3780: -4,1 - 3788: -3,0 - 3796: -3,1 - 3804: -2,1 - 3821: -1,1 - 3831: -12,-10 - 3837: -4,-1 - 3845: 4,-1 - 3871: 6,16 - 3879: 6,17 - 3887: 6,18 - 3895: 6,19 - 3903: 6,20 - 3920: -9,28 - 3923: 0,1 - 3933: 1,1 - 3943: 2,1 - 3960: 3,0 - 3968: 3,1 - 3976: 4,0 - 3984: 4,1 - 3992: 8,12 - 4009: -9,12 - 4012: -8,12 - 4020: -4,0 - 4028: -4,1 - 4036: -3,0 - 4044: -3,1 - 4052: -2,1 - 4069: -1,1 - 4082: -4,-1 - 4090: 4,-1 - 4113: 6,16 - 4121: 6,17 - 4129: 6,18 - 4137: 6,19 - 4145: 6,20 - 4162: -9,28 - 4165: -12,-10 - 4171: 0,1 - 4181: 1,1 - 4191: 2,1 - 4208: 3,0 - 4216: 3,1 - 4224: 4,0 - 4232: 4,1 - 4240: 8,12 - 4257: -9,12 - 4260: -8,12 - 4268: -4,0 - 4276: -4,1 - 4284: -3,0 - 4292: -3,1 - 4300: -2,1 - 4317: -1,1 - 4327: -12,-10 - 4333: -4,-1 - 4341: 4,-1 - 4367: 6,16 - 4375: 6,17 - 4383: 6,18 - 4391: 6,19 - 4399: 6,20 - 4416: -9,28 - 4419: 0,1 - 4429: 1,1 - 4439: 2,1 - 4456: 3,0 - 4464: 3,1 - 4472: 4,0 - 4480: 4,1 - 4488: 8,12 - 4505: -9,12 - 4508: -8,12 - 4516: -4,0 - 4524: -4,1 - 4532: -3,0 - 4540: -3,1 - 4548: -2,1 - 4565: -1,1 - 4575: -12,-10 - 4581: -4,-1 - 4589: 4,-1 - 4615: 6,16 - 4623: 6,17 - 4631: 6,18 - 4639: 6,19 - 4647: 6,20 - 4664: -9,28 - 4667: 0,1 - 4677: 1,1 - 4687: 2,1 - 4704: 3,0 - 4712: 3,1 - 4720: 4,0 - 4728: 4,1 - 4736: 8,12 - 4753: -9,12 - 4756: -8,12 - 4764: -4,0 - 4772: -4,1 - 4780: -3,0 - 4788: -3,1 - 4796: -2,1 - 4813: -1,1 - 4823: -12,-10 - 4829: -4,-1 - 4837: 4,-1 - 4863: 6,16 - 4871: 6,17 - 4879: 6,18 - 4887: 6,19 - 4895: 6,20 - 4912: -9,28 - 4942: 0,1 - 4952: 1,1 - 4962: 2,1 - 4979: 3,0 - 4987: 3,1 - 4995: 4,0 - 5003: 4,1 - 5011: 8,12 - 5028: -9,12 - 5031: -8,12 - 5039: -4,0 - 5047: -4,1 - 5055: -3,0 - 5063: -3,1 - 5071: -2,1 - 5088: -1,1 - 5098: -12,-10 - 5104: -4,-1 - 5112: 4,-1 - 5138: 6,16 - 5146: 6,17 - 5154: 6,18 - 5162: 6,19 - 5170: 6,20 - 5187: -9,28 - 5190: 0,1 - 5200: 1,1 - 5210: 2,1 - 5227: 3,0 - 5235: 3,1 - 5243: 4,0 - 5251: 4,1 - 5259: 8,12 - 5276: -9,12 - 5279: -8,12 - 5287: -4,0 - 5295: -4,1 - 5303: -3,0 - 5311: -3,1 - 5319: -2,1 - 5336: -1,1 - 5346: -12,-10 - 5352: -4,-1 - 5360: 4,-1 - 5386: 6,16 - 5394: 6,17 - 5402: 6,18 - 5410: 6,19 - 5418: 6,20 - 5435: -9,28 + 929: 0,1 + 937: 1,1 + 945: 2,1 + 953: 3,0 + 961: 3,1 + 969: 4,0 + 977: 4,1 + 985: 8,12 + 1002: -9,12 + 1005: -8,12 + 1013: -4,0 + 1021: -4,1 + 1029: -3,0 + 1037: -3,1 + 1045: -2,1 + 1053: -1,1 + 1061: -12,-10 + 1067: -4,-1 + 1075: 4,-1 + 1101: 6,16 + 1109: 6,17 + 1117: 6,18 + 1125: 6,19 + 1133: 6,20 + 1150: -9,28 + 1153: 0,1 + 1161: 1,1 + 1169: 2,1 + 1177: 3,0 + 1185: 3,1 + 1193: 4,0 + 1201: 4,1 + 1209: 8,12 + 1226: -9,12 + 1229: -8,12 + 1237: -4,0 + 1245: -4,1 + 1253: -3,0 + 1261: -3,1 + 1269: -2,1 + 1277: -1,1 + 1285: -12,-10 + 1291: -4,-1 + 1299: 4,-1 + 1325: 6,16 + 1333: 6,17 + 1341: 6,18 + 1349: 6,19 + 1357: 6,20 + 1374: -9,28 + 1377: 0,1 + 1385: 1,1 + 1393: 2,1 + 1401: 3,0 + 1409: 3,1 + 1417: 4,0 + 1425: 4,1 + 1433: 8,12 + 1450: -9,12 + 1453: -8,12 + 1461: -4,0 + 1469: -4,1 + 1477: -3,0 + 1485: -3,1 + 1493: -2,1 + 1501: -1,1 + 1509: -12,-10 + 1515: -4,-1 + 1523: 4,-1 + 1549: 6,16 + 1557: 6,17 + 1565: 6,18 + 1573: 6,19 + 1581: 6,20 + 1598: -9,28 + 1601: 0,1 + 1609: 1,1 + 1617: 2,1 + 1625: 3,0 + 1633: 3,1 + 1641: 4,0 + 1649: 4,1 + 1657: 8,12 + 1674: -9,12 + 1677: -8,12 + 1685: -4,0 + 1693: -4,1 + 1701: -3,0 + 1709: -3,1 + 1717: -2,1 + 1725: -1,1 + 1733: -12,-10 + 1739: -4,-1 + 1747: 4,-1 + 1773: 6,16 + 1781: 6,17 + 1789: 6,18 + 1797: 6,19 + 1805: 6,20 + 1822: -9,28 + 1825: 0,1 + 1833: 1,1 + 1841: 2,1 + 1849: 3,0 + 1857: 3,1 + 1865: 4,0 + 1873: 4,1 + 1881: 8,12 + 1898: -4,0 + 1906: -4,1 + 1914: -3,0 + 1922: -3,1 + 1930: -2,1 + 1938: -1,1 + 1946: -12,-10 + 1952: -4,-1 + 1960: 4,-1 + 1986: 6,16 + 1994: 6,17 + 2002: 6,18 + 2010: 6,19 + 2018: 6,20 + 2035: -9,28 + 2038: -8,12 + 2046: -9,12 + 2049: 0,1 + 2057: 1,1 + 2065: 2,1 + 2073: 3,0 + 2081: 3,1 + 2089: 4,0 + 2097: 4,1 + 2105: 8,12 + 2122: -9,12 + 2125: -8,12 + 2133: -4,0 + 2141: -4,1 + 2149: -3,0 + 2157: -3,1 + 2165: -2,1 + 2173: -1,1 + 2181: -12,-10 + 2187: -4,-1 + 2195: 4,-1 + 2221: 6,16 + 2229: 6,17 + 2237: 6,18 + 2245: 6,19 + 2253: 6,20 + 2270: -9,28 + 2273: 0,1 + 2281: 1,1 + 2289: 2,1 + 2297: 3,0 + 2305: 3,1 + 2313: 4,0 + 2321: 4,1 + 2329: 8,12 + 2346: -9,12 + 2349: -8,12 + 2357: -4,0 + 2365: -4,1 + 2373: -3,0 + 2381: -3,1 + 2389: -2,1 + 2397: -1,1 + 2405: -12,-10 + 2411: -4,-1 + 2419: 4,-1 + 2445: 6,16 + 2453: 6,17 + 2461: 6,18 + 2469: 6,19 + 2477: 6,20 + 2494: -9,28 + 2497: 0,1 + 2505: 1,1 + 2513: 2,1 + 2521: 3,0 + 2529: 3,1 + 2537: 4,0 + 2545: 4,1 + 2553: 8,12 + 2570: -9,12 + 2573: -8,12 + 2581: -4,0 + 2589: -4,1 + 2597: -3,0 + 2605: -3,1 + 2613: -2,1 + 2621: -1,1 + 2629: -12,-10 + 2635: -4,-1 + 2643: 4,-1 + 2669: 6,16 + 2677: 6,17 + 2685: 6,18 + 2693: 6,19 + 2701: 6,20 + 2718: -9,28 + 2721: 0,1 + 2729: 1,1 + 2737: 2,1 + 2745: 3,0 + 2753: 3,1 + 2761: 4,0 + 2769: 4,1 + 2777: 8,12 + 2794: -9,12 + 2797: -8,12 + 2805: -4,0 + 2813: -4,1 + 2821: -3,0 + 2829: -3,1 + 2837: -2,1 + 2845: -1,1 + 2853: -12,-10 + 2859: -4,-1 + 2867: 4,-1 + 2893: 6,16 + 2901: 6,17 + 2909: 6,18 + 2917: 6,19 + 2925: 6,20 + 2942: -9,28 + 2945: 0,1 + 2953: 1,1 + 2961: 2,1 + 2969: 3,0 + 2977: 3,1 + 2985: 4,0 + 2993: 4,1 + 3001: 8,12 + 3018: -9,12 + 3021: -8,12 + 3029: -4,0 + 3037: -4,1 + 3045: -3,0 + 3053: -3,1 + 3061: -2,1 + 3069: -1,1 + 3077: -12,-10 + 3083: -4,-1 + 3091: 4,-1 + 3117: 6,16 + 3125: 6,17 + 3133: 6,18 + 3141: 6,19 + 3149: 6,20 + 3166: -9,28 + 3169: 0,1 + 3177: 1,1 + 3185: 2,1 + 3193: 3,0 + 3201: 3,1 + 3209: 4,0 + 3217: 4,1 + 3225: 8,12 + 3242: -9,12 + 3245: -8,12 + 3253: -4,0 + 3261: -4,1 + 3269: -3,0 + 3277: -3,1 + 3285: -2,1 + 3293: -1,1 + 3301: -12,-10 + 3307: -4,-1 + 3315: 4,-1 + 3341: 6,16 + 3349: 6,17 + 3357: 6,18 + 3365: 6,19 + 3373: 6,20 + 3390: -9,28 + 3417: 0,1 + 3426: 1,1 + 3435: 2,1 + 3449: 3,0 + 3457: 3,1 + 3465: 4,0 + 3473: 4,1 + 3481: 8,12 + 3498: -9,12 + 3501: -8,12 + 3509: -4,0 + 3517: -4,1 + 3525: -3,0 + 3533: -3,1 + 3541: -2,1 + 3555: -1,1 + 3564: -12,-10 + 3570: -4,-1 + 3578: 4,-1 + 3604: 6,16 + 3612: 6,17 + 3620: 6,18 + 3628: 6,19 + 3636: 6,20 + 3653: -9,28 + 3665: 0,1 + 3675: 1,1 + 3685: 2,1 + 3702: 3,0 + 3710: 3,1 + 3718: 4,0 + 3726: 4,1 + 3734: 8,12 + 3751: -9,12 + 3754: -8,12 + 3762: -4,0 + 3770: -4,1 + 3778: -3,0 + 3786: -3,1 + 3794: -2,1 + 3811: -1,1 + 3821: -12,-10 + 3827: -4,-1 + 3835: 4,-1 + 3861: 6,16 + 3869: 6,17 + 3877: 6,18 + 3885: 6,19 + 3893: 6,20 + 3910: -9,28 + 3913: 0,1 + 3923: 1,1 + 3933: 2,1 + 3950: 3,0 + 3958: 3,1 + 3966: 4,0 + 3974: 4,1 + 3982: 8,12 + 3999: -9,12 + 4002: -8,12 + 4010: -4,0 + 4018: -4,1 + 4026: -3,0 + 4034: -3,1 + 4042: -2,1 + 4059: -1,1 + 4072: -4,-1 + 4080: 4,-1 + 4103: 6,16 + 4111: 6,17 + 4119: 6,18 + 4127: 6,19 + 4135: 6,20 + 4152: -9,28 + 4155: -12,-10 + 4161: 0,1 + 4171: 1,1 + 4181: 2,1 + 4198: 3,0 + 4206: 3,1 + 4214: 4,0 + 4222: 4,1 + 4230: 8,12 + 4247: -9,12 + 4250: -8,12 + 4258: -4,0 + 4266: -4,1 + 4274: -3,0 + 4282: -3,1 + 4290: -2,1 + 4307: -1,1 + 4317: -12,-10 + 4323: -4,-1 + 4331: 4,-1 + 4357: 6,16 + 4365: 6,17 + 4373: 6,18 + 4381: 6,19 + 4389: 6,20 + 4406: -9,28 + 4409: 0,1 + 4419: 1,1 + 4429: 2,1 + 4446: 3,0 + 4454: 3,1 + 4462: 4,0 + 4470: 4,1 + 4478: 8,12 + 4495: -9,12 + 4498: -8,12 + 4506: -4,0 + 4514: -4,1 + 4522: -3,0 + 4530: -3,1 + 4538: -2,1 + 4555: -1,1 + 4565: -12,-10 + 4571: -4,-1 + 4579: 4,-1 + 4605: 6,16 + 4613: 6,17 + 4621: 6,18 + 4629: 6,19 + 4637: 6,20 + 4654: -9,28 + 4657: 0,1 + 4667: 1,1 + 4677: 2,1 + 4694: 3,0 + 4702: 3,1 + 4710: 4,0 + 4718: 4,1 + 4726: 8,12 + 4743: -9,12 + 4746: -8,12 + 4754: -4,0 + 4762: -4,1 + 4770: -3,0 + 4778: -3,1 + 4786: -2,1 + 4803: -1,1 + 4813: -12,-10 + 4819: -4,-1 + 4827: 4,-1 + 4853: 6,16 + 4861: 6,17 + 4869: 6,18 + 4877: 6,19 + 4885: 6,20 + 4902: -9,28 + 4920: 0,1 + 4930: 1,1 + 4940: 2,1 + 4957: 3,0 + 4965: 3,1 + 4973: 4,0 + 4981: 4,1 + 4989: 8,12 + 5006: -9,12 + 5009: -8,12 + 5017: -4,0 + 5025: -4,1 + 5033: -3,0 + 5041: -3,1 + 5049: -2,1 + 5066: -1,1 + 5076: -12,-10 + 5082: -4,-1 + 5090: 4,-1 + 5116: 6,16 + 5124: 6,17 + 5132: 6,18 + 5140: 6,19 + 5148: 6,20 + 5165: -9,28 + 5168: 0,1 + 5178: 1,1 + 5188: 2,1 + 5205: 3,0 + 5213: 3,1 + 5221: 4,0 + 5229: 4,1 + 5237: 8,12 + 5254: -9,12 + 5257: -8,12 + 5265: -4,0 + 5273: -4,1 + 5281: -3,0 + 5289: -3,1 + 5297: -2,1 + 5314: -1,1 + 5324: -12,-10 + 5330: -4,-1 + 5338: 4,-1 + 5364: 6,16 + 5372: 6,17 + 5380: 6,18 + 5388: 6,19 + 5396: 6,20 + 5413: -9,28 + 5438: 0,1 + 5448: 1,1 + 5458: 2,1 + 5475: 3,0 + 5483: 3,1 + 5491: 4,0 + 5499: 4,1 + 5507: 8,12 + 5524: -9,12 + 5527: -8,12 + 5535: -4,0 + 5543: -4,1 + 5551: -3,0 + 5559: -3,1 + 5567: -2,1 + 5584: -1,1 + 5594: -12,-10 + 5600: -4,-1 + 5608: 4,-1 + 5634: 6,16 + 5642: 6,17 + 5650: 6,18 + 5658: 6,19 + 5666: 6,20 + 5683: -9,28 - node: zIndex: 1 id: LatticeCornerSW decals: - 943: 0,1 - 951: 1,1 - 959: 2,1 - 967: 3,0 - 975: 3,1 - 983: 4,0 - 991: 4,1 - 999: 8,12 - 1006: 9,12 - 1019: -8,12 - 1027: -4,0 - 1035: -4,1 - 1043: -3,0 - 1051: -3,1 - 1059: -2,1 - 1067: -1,1 - 1081: -4,-1 - 1089: 4,-1 - 1096: 12,-10 - 1115: 6,16 - 1123: 6,17 - 1131: 6,18 - 1139: 6,19 - 1147: 6,20 - 1154: 9,28 - 1167: 0,1 - 1175: 1,1 - 1183: 2,1 - 1191: 3,0 - 1199: 3,1 - 1207: 4,0 - 1215: 4,1 - 1223: 8,12 - 1230: 9,12 - 1243: -8,12 - 1251: -4,0 - 1259: -4,1 - 1267: -3,0 - 1275: -3,1 - 1283: -2,1 - 1291: -1,1 - 1305: -4,-1 - 1313: 4,-1 - 1320: 12,-10 - 1339: 6,16 - 1347: 6,17 - 1355: 6,18 - 1363: 6,19 - 1371: 6,20 - 1378: 9,28 - 1391: 0,1 - 1399: 1,1 - 1407: 2,1 - 1415: 3,0 - 1423: 3,1 - 1431: 4,0 - 1439: 4,1 - 1447: 8,12 - 1454: 9,12 - 1467: -8,12 - 1475: -4,0 - 1483: -4,1 - 1491: -3,0 - 1499: -3,1 - 1507: -2,1 - 1515: -1,1 - 1529: -4,-1 - 1537: 4,-1 - 1544: 12,-10 - 1563: 6,16 - 1571: 6,17 - 1579: 6,18 - 1587: 6,19 - 1595: 6,20 - 1602: 9,28 - 1615: 0,1 - 1623: 1,1 - 1631: 2,1 - 1639: 3,0 - 1647: 3,1 - 1655: 4,0 - 1663: 4,1 - 1671: 8,12 - 1678: 9,12 - 1691: -8,12 - 1699: -4,0 - 1707: -4,1 - 1715: -3,0 - 1723: -3,1 - 1731: -2,1 - 1739: -1,1 - 1753: -4,-1 - 1761: 4,-1 - 1768: 12,-10 - 1787: 6,16 - 1795: 6,17 - 1803: 6,18 - 1811: 6,19 - 1819: 6,20 - 1826: 9,28 - 1839: 0,1 - 1847: 1,1 - 1855: 2,1 - 1863: 3,0 - 1871: 3,1 - 1879: 4,0 - 1887: 4,1 - 1895: 8,12 - 1902: 9,12 - 1912: -4,0 - 1920: -4,1 - 1928: -3,0 - 1936: -3,1 - 1944: -2,1 - 1952: -1,1 - 1966: -4,-1 - 1974: 4,-1 - 1981: 12,-10 - 2000: 6,16 - 2008: 6,17 - 2016: 6,18 - 2024: 6,19 - 2032: 6,20 - 2039: 9,28 - 2052: -8,12 - 2063: 0,1 - 2071: 1,1 - 2079: 2,1 - 2087: 3,0 - 2095: 3,1 - 2103: 4,0 - 2111: 4,1 - 2119: 8,12 - 2126: 9,12 - 2139: -8,12 - 2147: -4,0 - 2155: -4,1 - 2163: -3,0 - 2171: -3,1 - 2179: -2,1 - 2187: -1,1 - 2201: -4,-1 - 2209: 4,-1 - 2216: 12,-10 - 2235: 6,16 - 2243: 6,17 - 2251: 6,18 - 2259: 6,19 - 2267: 6,20 - 2274: 9,28 - 2287: 0,1 - 2295: 1,1 - 2303: 2,1 - 2311: 3,0 - 2319: 3,1 - 2327: 4,0 - 2335: 4,1 - 2343: 8,12 - 2350: 9,12 - 2363: -8,12 - 2371: -4,0 - 2379: -4,1 - 2387: -3,0 - 2395: -3,1 - 2403: -2,1 - 2411: -1,1 - 2425: -4,-1 - 2433: 4,-1 - 2440: 12,-10 - 2459: 6,16 - 2467: 6,17 - 2475: 6,18 - 2483: 6,19 - 2491: 6,20 - 2498: 9,28 - 2511: 0,1 - 2519: 1,1 - 2527: 2,1 - 2535: 3,0 - 2543: 3,1 - 2551: 4,0 - 2559: 4,1 - 2567: 8,12 - 2574: 9,12 - 2587: -8,12 - 2595: -4,0 - 2603: -4,1 - 2611: -3,0 - 2619: -3,1 - 2627: -2,1 - 2635: -1,1 - 2649: -4,-1 - 2657: 4,-1 - 2664: 12,-10 - 2683: 6,16 - 2691: 6,17 - 2699: 6,18 - 2707: 6,19 - 2715: 6,20 - 2722: 9,28 - 2735: 0,1 - 2743: 1,1 - 2751: 2,1 - 2759: 3,0 - 2767: 3,1 - 2775: 4,0 - 2783: 4,1 - 2791: 8,12 - 2798: 9,12 - 2811: -8,12 - 2819: -4,0 - 2827: -4,1 - 2835: -3,0 - 2843: -3,1 - 2851: -2,1 - 2859: -1,1 - 2873: -4,-1 - 2881: 4,-1 - 2888: 12,-10 - 2907: 6,16 - 2915: 6,17 - 2923: 6,18 - 2931: 6,19 - 2939: 6,20 - 2946: 9,28 - 2959: 0,1 - 2967: 1,1 - 2975: 2,1 - 2983: 3,0 - 2991: 3,1 - 2999: 4,0 - 3007: 4,1 - 3015: 8,12 - 3022: 9,12 - 3035: -8,12 - 3043: -4,0 - 3051: -4,1 - 3059: -3,0 - 3067: -3,1 - 3075: -2,1 - 3083: -1,1 - 3097: -4,-1 - 3105: 4,-1 - 3112: 12,-10 - 3131: 6,16 - 3139: 6,17 - 3147: 6,18 - 3155: 6,19 - 3163: 6,20 - 3170: 9,28 - 3183: 0,1 - 3191: 1,1 - 3199: 2,1 - 3207: 3,0 - 3215: 3,1 - 3223: 4,0 - 3231: 4,1 - 3239: 8,12 - 3246: 9,12 - 3259: -8,12 - 3267: -4,0 - 3275: -4,1 - 3283: -3,0 - 3291: -3,1 - 3299: -2,1 - 3307: -1,1 - 3321: -4,-1 - 3329: 4,-1 - 3336: 12,-10 - 3355: 6,16 - 3363: 6,17 - 3371: 6,18 - 3379: 6,19 - 3387: 6,20 - 3394: 9,28 - 3431: 0,1 - 3440: 1,1 - 3449: 2,1 - 3463: 3,0 - 3471: 3,1 - 3479: 4,0 - 3487: 4,1 - 3495: 8,12 - 3502: 9,12 - 3515: -8,12 - 3523: -4,0 - 3531: -4,1 - 3539: -3,0 - 3547: -3,1 - 3555: -2,1 - 3569: -1,1 - 3584: -4,-1 - 3592: 4,-1 - 3599: 12,-10 - 3618: 6,16 - 3626: 6,17 - 3634: 6,18 - 3642: 6,19 - 3650: 6,20 - 3657: 9,28 - 3679: 0,1 - 3689: 1,1 - 3699: 2,1 - 3716: 3,0 - 3724: 3,1 - 3732: 4,0 - 3740: 4,1 - 3748: 8,12 - 3755: 9,12 - 3768: -8,12 - 3776: -4,0 - 3784: -4,1 - 3792: -3,0 - 3800: -3,1 - 3808: -2,1 - 3825: -1,1 - 3841: -4,-1 - 3849: 4,-1 - 3856: 12,-10 - 3875: 6,16 - 3883: 6,17 - 3891: 6,18 - 3899: 6,19 - 3907: 6,20 - 3914: 9,28 - 3927: 0,1 - 3937: 1,1 - 3947: 2,1 - 3964: 3,0 - 3972: 3,1 - 3980: 4,0 - 3988: 4,1 - 3996: 8,12 - 4003: 9,12 - 4016: -8,12 - 4024: -4,0 - 4032: -4,1 - 4040: -3,0 - 4048: -3,1 - 4056: -2,1 - 4073: -1,1 - 4086: -4,-1 - 4094: 4,-1 - 4117: 6,16 - 4125: 6,17 - 4133: 6,18 - 4141: 6,19 - 4149: 6,20 - 4156: 9,28 - 4168: 12,-10 - 4175: 0,1 - 4185: 1,1 - 4195: 2,1 - 4212: 3,0 - 4220: 3,1 - 4228: 4,0 - 4236: 4,1 - 4244: 8,12 - 4251: 9,12 - 4264: -8,12 - 4272: -4,0 - 4280: -4,1 - 4288: -3,0 - 4296: -3,1 - 4304: -2,1 - 4321: -1,1 - 4337: -4,-1 - 4345: 4,-1 - 4352: 12,-10 - 4371: 6,16 - 4379: 6,17 - 4387: 6,18 - 4395: 6,19 - 4403: 6,20 - 4410: 9,28 - 4423: 0,1 - 4433: 1,1 - 4443: 2,1 - 4460: 3,0 - 4468: 3,1 - 4476: 4,0 - 4484: 4,1 - 4492: 8,12 - 4499: 9,12 - 4512: -8,12 - 4520: -4,0 - 4528: -4,1 - 4536: -3,0 - 4544: -3,1 - 4552: -2,1 - 4569: -1,1 - 4585: -4,-1 - 4593: 4,-1 - 4600: 12,-10 - 4619: 6,16 - 4627: 6,17 - 4635: 6,18 - 4643: 6,19 - 4651: 6,20 - 4658: 9,28 - 4671: 0,1 - 4681: 1,1 - 4691: 2,1 - 4708: 3,0 - 4716: 3,1 - 4724: 4,0 - 4732: 4,1 - 4740: 8,12 - 4747: 9,12 - 4760: -8,12 - 4768: -4,0 - 4776: -4,1 - 4784: -3,0 - 4792: -3,1 - 4800: -2,1 - 4817: -1,1 - 4833: -4,-1 - 4841: 4,-1 - 4848: 12,-10 - 4867: 6,16 - 4875: 6,17 - 4883: 6,18 - 4891: 6,19 - 4899: 6,20 - 4906: 9,28 - 4946: 0,1 - 4956: 1,1 - 4966: 2,1 - 4983: 3,0 - 4991: 3,1 - 4999: 4,0 - 5007: 4,1 - 5015: 8,12 - 5022: 9,12 - 5035: -8,12 - 5043: -4,0 - 5051: -4,1 - 5059: -3,0 - 5067: -3,1 - 5075: -2,1 - 5092: -1,1 - 5108: -4,-1 - 5116: 4,-1 - 5123: 12,-10 - 5142: 6,16 - 5150: 6,17 - 5158: 6,18 - 5166: 6,19 - 5174: 6,20 - 5181: 9,28 - 5194: 0,1 - 5204: 1,1 - 5214: 2,1 - 5231: 3,0 - 5239: 3,1 - 5247: 4,0 - 5255: 4,1 - 5263: 8,12 - 5270: 9,12 - 5283: -8,12 - 5291: -4,0 - 5299: -4,1 - 5307: -3,0 - 5315: -3,1 - 5323: -2,1 - 5340: -1,1 - 5356: -4,-1 - 5364: 4,-1 - 5371: 12,-10 - 5390: 6,16 - 5398: 6,17 - 5406: 6,18 - 5414: 6,19 - 5422: 6,20 - 5429: 9,28 + 933: 0,1 + 941: 1,1 + 949: 2,1 + 957: 3,0 + 965: 3,1 + 973: 4,0 + 981: 4,1 + 989: 8,12 + 996: 9,12 + 1009: -8,12 + 1017: -4,0 + 1025: -4,1 + 1033: -3,0 + 1041: -3,1 + 1049: -2,1 + 1057: -1,1 + 1071: -4,-1 + 1079: 4,-1 + 1086: 12,-10 + 1105: 6,16 + 1113: 6,17 + 1121: 6,18 + 1129: 6,19 + 1137: 6,20 + 1144: 9,28 + 1157: 0,1 + 1165: 1,1 + 1173: 2,1 + 1181: 3,0 + 1189: 3,1 + 1197: 4,0 + 1205: 4,1 + 1213: 8,12 + 1220: 9,12 + 1233: -8,12 + 1241: -4,0 + 1249: -4,1 + 1257: -3,0 + 1265: -3,1 + 1273: -2,1 + 1281: -1,1 + 1295: -4,-1 + 1303: 4,-1 + 1310: 12,-10 + 1329: 6,16 + 1337: 6,17 + 1345: 6,18 + 1353: 6,19 + 1361: 6,20 + 1368: 9,28 + 1381: 0,1 + 1389: 1,1 + 1397: 2,1 + 1405: 3,0 + 1413: 3,1 + 1421: 4,0 + 1429: 4,1 + 1437: 8,12 + 1444: 9,12 + 1457: -8,12 + 1465: -4,0 + 1473: -4,1 + 1481: -3,0 + 1489: -3,1 + 1497: -2,1 + 1505: -1,1 + 1519: -4,-1 + 1527: 4,-1 + 1534: 12,-10 + 1553: 6,16 + 1561: 6,17 + 1569: 6,18 + 1577: 6,19 + 1585: 6,20 + 1592: 9,28 + 1605: 0,1 + 1613: 1,1 + 1621: 2,1 + 1629: 3,0 + 1637: 3,1 + 1645: 4,0 + 1653: 4,1 + 1661: 8,12 + 1668: 9,12 + 1681: -8,12 + 1689: -4,0 + 1697: -4,1 + 1705: -3,0 + 1713: -3,1 + 1721: -2,1 + 1729: -1,1 + 1743: -4,-1 + 1751: 4,-1 + 1758: 12,-10 + 1777: 6,16 + 1785: 6,17 + 1793: 6,18 + 1801: 6,19 + 1809: 6,20 + 1816: 9,28 + 1829: 0,1 + 1837: 1,1 + 1845: 2,1 + 1853: 3,0 + 1861: 3,1 + 1869: 4,0 + 1877: 4,1 + 1885: 8,12 + 1892: 9,12 + 1902: -4,0 + 1910: -4,1 + 1918: -3,0 + 1926: -3,1 + 1934: -2,1 + 1942: -1,1 + 1956: -4,-1 + 1964: 4,-1 + 1971: 12,-10 + 1990: 6,16 + 1998: 6,17 + 2006: 6,18 + 2014: 6,19 + 2022: 6,20 + 2029: 9,28 + 2042: -8,12 + 2053: 0,1 + 2061: 1,1 + 2069: 2,1 + 2077: 3,0 + 2085: 3,1 + 2093: 4,0 + 2101: 4,1 + 2109: 8,12 + 2116: 9,12 + 2129: -8,12 + 2137: -4,0 + 2145: -4,1 + 2153: -3,0 + 2161: -3,1 + 2169: -2,1 + 2177: -1,1 + 2191: -4,-1 + 2199: 4,-1 + 2206: 12,-10 + 2225: 6,16 + 2233: 6,17 + 2241: 6,18 + 2249: 6,19 + 2257: 6,20 + 2264: 9,28 + 2277: 0,1 + 2285: 1,1 + 2293: 2,1 + 2301: 3,0 + 2309: 3,1 + 2317: 4,0 + 2325: 4,1 + 2333: 8,12 + 2340: 9,12 + 2353: -8,12 + 2361: -4,0 + 2369: -4,1 + 2377: -3,0 + 2385: -3,1 + 2393: -2,1 + 2401: -1,1 + 2415: -4,-1 + 2423: 4,-1 + 2430: 12,-10 + 2449: 6,16 + 2457: 6,17 + 2465: 6,18 + 2473: 6,19 + 2481: 6,20 + 2488: 9,28 + 2501: 0,1 + 2509: 1,1 + 2517: 2,1 + 2525: 3,0 + 2533: 3,1 + 2541: 4,0 + 2549: 4,1 + 2557: 8,12 + 2564: 9,12 + 2577: -8,12 + 2585: -4,0 + 2593: -4,1 + 2601: -3,0 + 2609: -3,1 + 2617: -2,1 + 2625: -1,1 + 2639: -4,-1 + 2647: 4,-1 + 2654: 12,-10 + 2673: 6,16 + 2681: 6,17 + 2689: 6,18 + 2697: 6,19 + 2705: 6,20 + 2712: 9,28 + 2725: 0,1 + 2733: 1,1 + 2741: 2,1 + 2749: 3,0 + 2757: 3,1 + 2765: 4,0 + 2773: 4,1 + 2781: 8,12 + 2788: 9,12 + 2801: -8,12 + 2809: -4,0 + 2817: -4,1 + 2825: -3,0 + 2833: -3,1 + 2841: -2,1 + 2849: -1,1 + 2863: -4,-1 + 2871: 4,-1 + 2878: 12,-10 + 2897: 6,16 + 2905: 6,17 + 2913: 6,18 + 2921: 6,19 + 2929: 6,20 + 2936: 9,28 + 2949: 0,1 + 2957: 1,1 + 2965: 2,1 + 2973: 3,0 + 2981: 3,1 + 2989: 4,0 + 2997: 4,1 + 3005: 8,12 + 3012: 9,12 + 3025: -8,12 + 3033: -4,0 + 3041: -4,1 + 3049: -3,0 + 3057: -3,1 + 3065: -2,1 + 3073: -1,1 + 3087: -4,-1 + 3095: 4,-1 + 3102: 12,-10 + 3121: 6,16 + 3129: 6,17 + 3137: 6,18 + 3145: 6,19 + 3153: 6,20 + 3160: 9,28 + 3173: 0,1 + 3181: 1,1 + 3189: 2,1 + 3197: 3,0 + 3205: 3,1 + 3213: 4,0 + 3221: 4,1 + 3229: 8,12 + 3236: 9,12 + 3249: -8,12 + 3257: -4,0 + 3265: -4,1 + 3273: -3,0 + 3281: -3,1 + 3289: -2,1 + 3297: -1,1 + 3311: -4,-1 + 3319: 4,-1 + 3326: 12,-10 + 3345: 6,16 + 3353: 6,17 + 3361: 6,18 + 3369: 6,19 + 3377: 6,20 + 3384: 9,28 + 3421: 0,1 + 3430: 1,1 + 3439: 2,1 + 3453: 3,0 + 3461: 3,1 + 3469: 4,0 + 3477: 4,1 + 3485: 8,12 + 3492: 9,12 + 3505: -8,12 + 3513: -4,0 + 3521: -4,1 + 3529: -3,0 + 3537: -3,1 + 3545: -2,1 + 3559: -1,1 + 3574: -4,-1 + 3582: 4,-1 + 3589: 12,-10 + 3608: 6,16 + 3616: 6,17 + 3624: 6,18 + 3632: 6,19 + 3640: 6,20 + 3647: 9,28 + 3669: 0,1 + 3679: 1,1 + 3689: 2,1 + 3706: 3,0 + 3714: 3,1 + 3722: 4,0 + 3730: 4,1 + 3738: 8,12 + 3745: 9,12 + 3758: -8,12 + 3766: -4,0 + 3774: -4,1 + 3782: -3,0 + 3790: -3,1 + 3798: -2,1 + 3815: -1,1 + 3831: -4,-1 + 3839: 4,-1 + 3846: 12,-10 + 3865: 6,16 + 3873: 6,17 + 3881: 6,18 + 3889: 6,19 + 3897: 6,20 + 3904: 9,28 + 3917: 0,1 + 3927: 1,1 + 3937: 2,1 + 3954: 3,0 + 3962: 3,1 + 3970: 4,0 + 3978: 4,1 + 3986: 8,12 + 3993: 9,12 + 4006: -8,12 + 4014: -4,0 + 4022: -4,1 + 4030: -3,0 + 4038: -3,1 + 4046: -2,1 + 4063: -1,1 + 4076: -4,-1 + 4084: 4,-1 + 4107: 6,16 + 4115: 6,17 + 4123: 6,18 + 4131: 6,19 + 4139: 6,20 + 4146: 9,28 + 4158: 12,-10 + 4165: 0,1 + 4175: 1,1 + 4185: 2,1 + 4202: 3,0 + 4210: 3,1 + 4218: 4,0 + 4226: 4,1 + 4234: 8,12 + 4241: 9,12 + 4254: -8,12 + 4262: -4,0 + 4270: -4,1 + 4278: -3,0 + 4286: -3,1 + 4294: -2,1 + 4311: -1,1 + 4327: -4,-1 + 4335: 4,-1 + 4342: 12,-10 + 4361: 6,16 + 4369: 6,17 + 4377: 6,18 + 4385: 6,19 + 4393: 6,20 + 4400: 9,28 + 4413: 0,1 + 4423: 1,1 + 4433: 2,1 + 4450: 3,0 + 4458: 3,1 + 4466: 4,0 + 4474: 4,1 + 4482: 8,12 + 4489: 9,12 + 4502: -8,12 + 4510: -4,0 + 4518: -4,1 + 4526: -3,0 + 4534: -3,1 + 4542: -2,1 + 4559: -1,1 + 4575: -4,-1 + 4583: 4,-1 + 4590: 12,-10 + 4609: 6,16 + 4617: 6,17 + 4625: 6,18 + 4633: 6,19 + 4641: 6,20 + 4648: 9,28 + 4661: 0,1 + 4671: 1,1 + 4681: 2,1 + 4698: 3,0 + 4706: 3,1 + 4714: 4,0 + 4722: 4,1 + 4730: 8,12 + 4737: 9,12 + 4750: -8,12 + 4758: -4,0 + 4766: -4,1 + 4774: -3,0 + 4782: -3,1 + 4790: -2,1 + 4807: -1,1 + 4823: -4,-1 + 4831: 4,-1 + 4838: 12,-10 + 4857: 6,16 + 4865: 6,17 + 4873: 6,18 + 4881: 6,19 + 4889: 6,20 + 4896: 9,28 + 4924: 0,1 + 4934: 1,1 + 4944: 2,1 + 4961: 3,0 + 4969: 3,1 + 4977: 4,0 + 4985: 4,1 + 4993: 8,12 + 5000: 9,12 + 5013: -8,12 + 5021: -4,0 + 5029: -4,1 + 5037: -3,0 + 5045: -3,1 + 5053: -2,1 + 5070: -1,1 + 5086: -4,-1 + 5094: 4,-1 + 5101: 12,-10 + 5120: 6,16 + 5128: 6,17 + 5136: 6,18 + 5144: 6,19 + 5152: 6,20 + 5159: 9,28 + 5172: 0,1 + 5182: 1,1 + 5192: 2,1 + 5209: 3,0 + 5217: 3,1 + 5225: 4,0 + 5233: 4,1 + 5241: 8,12 + 5248: 9,12 + 5261: -8,12 + 5269: -4,0 + 5277: -4,1 + 5285: -3,0 + 5293: -3,1 + 5301: -2,1 + 5318: -1,1 + 5334: -4,-1 + 5342: 4,-1 + 5349: 12,-10 + 5368: 6,16 + 5376: 6,17 + 5384: 6,18 + 5392: 6,19 + 5400: 6,20 + 5407: 9,28 + 5442: 0,1 + 5452: 1,1 + 5462: 2,1 + 5479: 3,0 + 5487: 3,1 + 5495: 4,0 + 5503: 4,1 + 5511: 8,12 + 5518: 9,12 + 5531: -8,12 + 5539: -4,0 + 5547: -4,1 + 5555: -3,0 + 5563: -3,1 + 5571: -2,1 + 5588: -1,1 + 5604: -4,-1 + 5612: 4,-1 + 5619: 12,-10 + 5638: 6,16 + 5646: 6,17 + 5654: 6,18 + 5662: 6,19 + 5670: 6,20 + 5677: 9,28 - node: id: LatticeEdgeE decals: - 938: 0,1 - 946: 1,1 - 954: 2,1 - 962: 3,0 - 970: 3,1 - 978: 4,0 - 986: 4,1 - 994: 8,12 - 1007: -9,3 - 1011: -9,12 - 1014: -8,12 - 1022: -4,0 - 1030: -4,1 - 1038: -3,0 - 1046: -3,1 - 1054: -2,1 - 1062: -1,1 - 1070: -12,-10 - 1072: -10,-16 - 1076: -4,-1 - 1084: 4,-1 - 1103: -9,-17 - 1106: -3,-20 - 1110: 6,16 - 1118: 6,17 - 1126: 6,18 - 1134: 6,19 - 1142: 6,20 - 1155: -9,24 - 1159: -9,28 - 1162: 0,1 - 1170: 1,1 - 1178: 2,1 - 1186: 3,0 - 1194: 3,1 - 1202: 4,0 - 1210: 4,1 - 1218: 8,12 - 1231: -9,3 - 1235: -9,12 - 1238: -8,12 - 1246: -4,0 - 1254: -4,1 - 1262: -3,0 - 1270: -3,1 - 1278: -2,1 - 1286: -1,1 - 1294: -12,-10 - 1296: -10,-16 - 1300: -4,-1 - 1308: 4,-1 - 1327: -9,-17 - 1330: -3,-20 - 1334: 6,16 - 1342: 6,17 - 1350: 6,18 - 1358: 6,19 - 1366: 6,20 - 1379: -9,24 - 1383: -9,28 - 1386: 0,1 - 1394: 1,1 - 1402: 2,1 - 1410: 3,0 - 1418: 3,1 - 1426: 4,0 - 1434: 4,1 - 1442: 8,12 - 1455: -9,3 - 1459: -9,12 - 1462: -8,12 - 1470: -4,0 - 1478: -4,1 - 1486: -3,0 - 1494: -3,1 - 1502: -2,1 - 1510: -1,1 - 1518: -12,-10 - 1520: -10,-16 - 1524: -4,-1 - 1532: 4,-1 - 1551: -9,-17 - 1554: -3,-20 - 1558: 6,16 - 1566: 6,17 - 1574: 6,18 - 1582: 6,19 - 1590: 6,20 - 1603: -9,24 - 1607: -9,28 - 1610: 0,1 - 1618: 1,1 - 1626: 2,1 - 1634: 3,0 - 1642: 3,1 - 1650: 4,0 - 1658: 4,1 - 1666: 8,12 - 1679: -9,3 - 1683: -9,12 - 1686: -8,12 - 1694: -4,0 - 1702: -4,1 - 1710: -3,0 - 1718: -3,1 - 1726: -2,1 - 1734: -1,1 - 1742: -12,-10 - 1744: -10,-16 - 1748: -4,-1 - 1756: 4,-1 - 1775: -9,-17 - 1778: -3,-20 - 1782: 6,16 - 1790: 6,17 - 1798: 6,18 - 1806: 6,19 - 1814: 6,20 - 1827: -9,24 - 1831: -9,28 - 1834: 0,1 - 1842: 1,1 - 1850: 2,1 - 1858: 3,0 - 1866: 3,1 - 1874: 4,0 - 1882: 4,1 - 1890: 8,12 - 1903: -9,3 - 1907: -4,0 - 1915: -4,1 - 1923: -3,0 - 1931: -3,1 - 1939: -2,1 - 1947: -1,1 - 1955: -12,-10 - 1957: -10,-16 - 1961: -4,-1 - 1969: 4,-1 - 1988: -9,-17 - 1991: -3,-20 - 1995: 6,16 - 2003: 6,17 - 2011: 6,18 - 2019: 6,19 - 2027: 6,20 - 2040: -9,24 - 2044: -9,28 - 2047: -8,12 - 2055: -9,12 - 2058: 0,1 - 2066: 1,1 - 2074: 2,1 - 2082: 3,0 - 2090: 3,1 - 2098: 4,0 - 2106: 4,1 - 2114: 8,12 - 2127: -9,3 - 2131: -9,12 - 2134: -8,12 - 2142: -4,0 - 2150: -4,1 - 2158: -3,0 - 2166: -3,1 - 2174: -2,1 - 2182: -1,1 - 2190: -12,-10 - 2192: -10,-16 - 2196: -4,-1 - 2204: 4,-1 - 2223: -9,-17 - 2226: -3,-20 - 2230: 6,16 - 2238: 6,17 - 2246: 6,18 - 2254: 6,19 - 2262: 6,20 - 2275: -9,24 - 2279: -9,28 - 2282: 0,1 - 2290: 1,1 - 2298: 2,1 - 2306: 3,0 - 2314: 3,1 - 2322: 4,0 - 2330: 4,1 - 2338: 8,12 - 2351: -9,3 - 2355: -9,12 - 2358: -8,12 - 2366: -4,0 - 2374: -4,1 - 2382: -3,0 - 2390: -3,1 - 2398: -2,1 - 2406: -1,1 - 2414: -12,-10 - 2416: -10,-16 - 2420: -4,-1 - 2428: 4,-1 - 2447: -9,-17 - 2450: -3,-20 - 2454: 6,16 - 2462: 6,17 - 2470: 6,18 - 2478: 6,19 - 2486: 6,20 - 2499: -9,24 - 2503: -9,28 - 2506: 0,1 - 2514: 1,1 - 2522: 2,1 - 2530: 3,0 - 2538: 3,1 - 2546: 4,0 - 2554: 4,1 - 2562: 8,12 - 2575: -9,3 - 2579: -9,12 - 2582: -8,12 - 2590: -4,0 - 2598: -4,1 - 2606: -3,0 - 2614: -3,1 - 2622: -2,1 - 2630: -1,1 - 2638: -12,-10 - 2640: -10,-16 - 2644: -4,-1 - 2652: 4,-1 - 2671: -9,-17 - 2674: -3,-20 - 2678: 6,16 - 2686: 6,17 - 2694: 6,18 - 2702: 6,19 - 2710: 6,20 - 2723: -9,24 - 2727: -9,28 - 2730: 0,1 - 2738: 1,1 - 2746: 2,1 - 2754: 3,0 - 2762: 3,1 - 2770: 4,0 - 2778: 4,1 - 2786: 8,12 - 2799: -9,3 - 2803: -9,12 - 2806: -8,12 - 2814: -4,0 - 2822: -4,1 - 2830: -3,0 - 2838: -3,1 - 2846: -2,1 - 2854: -1,1 - 2862: -12,-10 - 2864: -10,-16 - 2868: -4,-1 - 2876: 4,-1 - 2895: -9,-17 - 2898: -3,-20 - 2902: 6,16 - 2910: 6,17 - 2918: 6,18 - 2926: 6,19 - 2934: 6,20 - 2947: -9,24 - 2951: -9,28 - 2954: 0,1 - 2962: 1,1 - 2970: 2,1 - 2978: 3,0 - 2986: 3,1 - 2994: 4,0 - 3002: 4,1 - 3010: 8,12 - 3023: -9,3 - 3027: -9,12 - 3030: -8,12 - 3038: -4,0 - 3046: -4,1 - 3054: -3,0 - 3062: -3,1 - 3070: -2,1 - 3078: -1,1 - 3086: -12,-10 - 3088: -10,-16 - 3092: -4,-1 - 3100: 4,-1 - 3119: -9,-17 - 3122: -3,-20 - 3126: 6,16 - 3134: 6,17 - 3142: 6,18 - 3150: 6,19 - 3158: 6,20 - 3171: -9,24 - 3175: -9,28 - 3178: 0,1 - 3186: 1,1 - 3194: 2,1 - 3202: 3,0 - 3210: 3,1 - 3218: 4,0 - 3226: 4,1 - 3234: 8,12 - 3247: -9,3 - 3251: -9,12 - 3254: -8,12 - 3262: -4,0 - 3270: -4,1 - 3278: -3,0 - 3286: -3,1 - 3294: -2,1 - 3302: -1,1 - 3310: -12,-10 - 3312: -10,-16 - 3316: -4,-1 - 3324: 4,-1 - 3343: -9,-17 - 3346: -3,-20 - 3350: 6,16 - 3358: 6,17 - 3366: 6,18 - 3374: 6,19 - 3382: 6,20 - 3395: -9,24 - 3399: -9,28 - 3426: 0,1 - 3435: 1,1 - 3444: 2,1 - 3458: 3,0 - 3466: 3,1 - 3474: 4,0 - 3482: 4,1 - 3490: 8,12 - 3503: -9,3 - 3507: -9,12 - 3510: -8,12 - 3518: -4,0 - 3526: -4,1 - 3534: -3,0 - 3542: -3,1 - 3550: -2,1 - 3564: -1,1 - 3573: -12,-10 - 3575: -10,-16 - 3579: -4,-1 - 3587: 4,-1 - 3606: -9,-17 - 3609: -3,-20 - 3613: 6,16 - 3621: 6,17 - 3629: 6,18 - 3637: 6,19 - 3645: 6,20 - 3658: -9,24 - 3662: -9,28 - 3674: 0,1 - 3684: 1,1 - 3694: 2,1 - 3711: 3,0 - 3719: 3,1 - 3727: 4,0 - 3735: 4,1 - 3743: 8,12 - 3756: -9,3 - 3760: -9,12 - 3763: -8,12 - 3771: -4,0 - 3779: -4,1 - 3787: -3,0 - 3795: -3,1 - 3803: -2,1 - 3820: -1,1 - 3830: -12,-10 - 3832: -10,-16 - 3836: -4,-1 - 3844: 4,-1 - 3863: -9,-17 - 3866: -3,-20 - 3870: 6,16 - 3878: 6,17 - 3886: 6,18 - 3894: 6,19 - 3902: 6,20 - 3915: -9,24 - 3919: -9,28 - 3922: 0,1 - 3932: 1,1 - 3942: 2,1 - 3959: 3,0 - 3967: 3,1 - 3975: 4,0 - 3983: 4,1 - 3991: 8,12 - 4004: -9,3 - 4008: -9,12 - 4011: -8,12 - 4019: -4,0 - 4027: -4,1 - 4035: -3,0 - 4043: -3,1 - 4051: -2,1 - 4068: -1,1 - 4077: -10,-16 - 4081: -4,-1 - 4089: 4,-1 - 4105: -9,-17 - 4108: -3,-20 - 4112: 6,16 - 4120: 6,17 - 4128: 6,18 - 4136: 6,19 - 4144: 6,20 - 4157: -9,24 - 4161: -9,28 - 4164: -12,-10 - 4170: 0,1 - 4180: 1,1 - 4190: 2,1 - 4207: 3,0 - 4215: 3,1 - 4223: 4,0 - 4231: 4,1 - 4239: 8,12 - 4252: -9,3 - 4256: -9,12 - 4259: -8,12 - 4267: -4,0 - 4275: -4,1 - 4283: -3,0 - 4291: -3,1 - 4299: -2,1 - 4316: -1,1 - 4326: -12,-10 - 4328: -10,-16 - 4332: -4,-1 - 4340: 4,-1 - 4359: -9,-17 - 4362: -3,-20 - 4366: 6,16 - 4374: 6,17 - 4382: 6,18 - 4390: 6,19 - 4398: 6,20 - 4411: -9,24 - 4415: -9,28 - 4418: 0,1 - 4428: 1,1 - 4438: 2,1 - 4455: 3,0 - 4463: 3,1 - 4471: 4,0 - 4479: 4,1 - 4487: 8,12 - 4500: -9,3 - 4504: -9,12 - 4507: -8,12 - 4515: -4,0 - 4523: -4,1 - 4531: -3,0 - 4539: -3,1 - 4547: -2,1 - 4564: -1,1 - 4574: -12,-10 - 4576: -10,-16 - 4580: -4,-1 - 4588: 4,-1 - 4607: -9,-17 - 4610: -3,-20 - 4614: 6,16 - 4622: 6,17 - 4630: 6,18 - 4638: 6,19 - 4646: 6,20 - 4659: -9,24 - 4663: -9,28 - 4666: 0,1 - 4676: 1,1 - 4686: 2,1 - 4703: 3,0 - 4711: 3,1 - 4719: 4,0 - 4727: 4,1 - 4735: 8,12 - 4748: -9,3 - 4752: -9,12 - 4755: -8,12 - 4763: -4,0 - 4771: -4,1 - 4779: -3,0 - 4787: -3,1 - 4795: -2,1 - 4812: -1,1 - 4822: -12,-10 - 4824: -10,-16 - 4828: -4,-1 - 4836: 4,-1 - 4855: -9,-17 - 4858: -3,-20 - 4862: 6,16 - 4870: 6,17 - 4878: 6,18 - 4886: 6,19 - 4894: 6,20 - 4907: -9,24 - 4911: -9,28 - 4941: 0,1 - 4951: 1,1 - 4961: 2,1 - 4978: 3,0 - 4986: 3,1 - 4994: 4,0 - 5002: 4,1 - 5010: 8,12 - 5023: -9,3 - 5027: -9,12 - 5030: -8,12 - 5038: -4,0 - 5046: -4,1 - 5054: -3,0 - 5062: -3,1 - 5070: -2,1 - 5087: -1,1 - 5097: -12,-10 - 5099: -10,-16 - 5103: -4,-1 - 5111: 4,-1 - 5130: -9,-17 - 5133: -3,-20 - 5137: 6,16 - 5145: 6,17 - 5153: 6,18 - 5161: 6,19 - 5169: 6,20 - 5182: -9,24 - 5186: -9,28 - 5189: 0,1 - 5199: 1,1 - 5209: 2,1 - 5226: 3,0 - 5234: 3,1 - 5242: 4,0 - 5250: 4,1 - 5258: 8,12 - 5271: -9,3 - 5275: -9,12 - 5278: -8,12 - 5286: -4,0 - 5294: -4,1 - 5302: -3,0 - 5310: -3,1 - 5318: -2,1 - 5335: -1,1 - 5345: -12,-10 - 5347: -10,-16 - 5351: -4,-1 - 5359: 4,-1 - 5378: -9,-17 - 5381: -3,-20 - 5385: 6,16 - 5393: 6,17 - 5401: 6,18 - 5409: 6,19 - 5417: 6,20 - 5430: -9,24 - 5434: -9,28 + 928: 0,1 + 936: 1,1 + 944: 2,1 + 952: 3,0 + 960: 3,1 + 968: 4,0 + 976: 4,1 + 984: 8,12 + 997: -9,3 + 1001: -9,12 + 1004: -8,12 + 1012: -4,0 + 1020: -4,1 + 1028: -3,0 + 1036: -3,1 + 1044: -2,1 + 1052: -1,1 + 1060: -12,-10 + 1062: -10,-16 + 1066: -4,-1 + 1074: 4,-1 + 1093: -9,-17 + 1096: -3,-20 + 1100: 6,16 + 1108: 6,17 + 1116: 6,18 + 1124: 6,19 + 1132: 6,20 + 1145: -9,24 + 1149: -9,28 + 1152: 0,1 + 1160: 1,1 + 1168: 2,1 + 1176: 3,0 + 1184: 3,1 + 1192: 4,0 + 1200: 4,1 + 1208: 8,12 + 1221: -9,3 + 1225: -9,12 + 1228: -8,12 + 1236: -4,0 + 1244: -4,1 + 1252: -3,0 + 1260: -3,1 + 1268: -2,1 + 1276: -1,1 + 1284: -12,-10 + 1286: -10,-16 + 1290: -4,-1 + 1298: 4,-1 + 1317: -9,-17 + 1320: -3,-20 + 1324: 6,16 + 1332: 6,17 + 1340: 6,18 + 1348: 6,19 + 1356: 6,20 + 1369: -9,24 + 1373: -9,28 + 1376: 0,1 + 1384: 1,1 + 1392: 2,1 + 1400: 3,0 + 1408: 3,1 + 1416: 4,0 + 1424: 4,1 + 1432: 8,12 + 1445: -9,3 + 1449: -9,12 + 1452: -8,12 + 1460: -4,0 + 1468: -4,1 + 1476: -3,0 + 1484: -3,1 + 1492: -2,1 + 1500: -1,1 + 1508: -12,-10 + 1510: -10,-16 + 1514: -4,-1 + 1522: 4,-1 + 1541: -9,-17 + 1544: -3,-20 + 1548: 6,16 + 1556: 6,17 + 1564: 6,18 + 1572: 6,19 + 1580: 6,20 + 1593: -9,24 + 1597: -9,28 + 1600: 0,1 + 1608: 1,1 + 1616: 2,1 + 1624: 3,0 + 1632: 3,1 + 1640: 4,0 + 1648: 4,1 + 1656: 8,12 + 1669: -9,3 + 1673: -9,12 + 1676: -8,12 + 1684: -4,0 + 1692: -4,1 + 1700: -3,0 + 1708: -3,1 + 1716: -2,1 + 1724: -1,1 + 1732: -12,-10 + 1734: -10,-16 + 1738: -4,-1 + 1746: 4,-1 + 1765: -9,-17 + 1768: -3,-20 + 1772: 6,16 + 1780: 6,17 + 1788: 6,18 + 1796: 6,19 + 1804: 6,20 + 1817: -9,24 + 1821: -9,28 + 1824: 0,1 + 1832: 1,1 + 1840: 2,1 + 1848: 3,0 + 1856: 3,1 + 1864: 4,0 + 1872: 4,1 + 1880: 8,12 + 1893: -9,3 + 1897: -4,0 + 1905: -4,1 + 1913: -3,0 + 1921: -3,1 + 1929: -2,1 + 1937: -1,1 + 1945: -12,-10 + 1947: -10,-16 + 1951: -4,-1 + 1959: 4,-1 + 1978: -9,-17 + 1981: -3,-20 + 1985: 6,16 + 1993: 6,17 + 2001: 6,18 + 2009: 6,19 + 2017: 6,20 + 2030: -9,24 + 2034: -9,28 + 2037: -8,12 + 2045: -9,12 + 2048: 0,1 + 2056: 1,1 + 2064: 2,1 + 2072: 3,0 + 2080: 3,1 + 2088: 4,0 + 2096: 4,1 + 2104: 8,12 + 2117: -9,3 + 2121: -9,12 + 2124: -8,12 + 2132: -4,0 + 2140: -4,1 + 2148: -3,0 + 2156: -3,1 + 2164: -2,1 + 2172: -1,1 + 2180: -12,-10 + 2182: -10,-16 + 2186: -4,-1 + 2194: 4,-1 + 2213: -9,-17 + 2216: -3,-20 + 2220: 6,16 + 2228: 6,17 + 2236: 6,18 + 2244: 6,19 + 2252: 6,20 + 2265: -9,24 + 2269: -9,28 + 2272: 0,1 + 2280: 1,1 + 2288: 2,1 + 2296: 3,0 + 2304: 3,1 + 2312: 4,0 + 2320: 4,1 + 2328: 8,12 + 2341: -9,3 + 2345: -9,12 + 2348: -8,12 + 2356: -4,0 + 2364: -4,1 + 2372: -3,0 + 2380: -3,1 + 2388: -2,1 + 2396: -1,1 + 2404: -12,-10 + 2406: -10,-16 + 2410: -4,-1 + 2418: 4,-1 + 2437: -9,-17 + 2440: -3,-20 + 2444: 6,16 + 2452: 6,17 + 2460: 6,18 + 2468: 6,19 + 2476: 6,20 + 2489: -9,24 + 2493: -9,28 + 2496: 0,1 + 2504: 1,1 + 2512: 2,1 + 2520: 3,0 + 2528: 3,1 + 2536: 4,0 + 2544: 4,1 + 2552: 8,12 + 2565: -9,3 + 2569: -9,12 + 2572: -8,12 + 2580: -4,0 + 2588: -4,1 + 2596: -3,0 + 2604: -3,1 + 2612: -2,1 + 2620: -1,1 + 2628: -12,-10 + 2630: -10,-16 + 2634: -4,-1 + 2642: 4,-1 + 2661: -9,-17 + 2664: -3,-20 + 2668: 6,16 + 2676: 6,17 + 2684: 6,18 + 2692: 6,19 + 2700: 6,20 + 2713: -9,24 + 2717: -9,28 + 2720: 0,1 + 2728: 1,1 + 2736: 2,1 + 2744: 3,0 + 2752: 3,1 + 2760: 4,0 + 2768: 4,1 + 2776: 8,12 + 2789: -9,3 + 2793: -9,12 + 2796: -8,12 + 2804: -4,0 + 2812: -4,1 + 2820: -3,0 + 2828: -3,1 + 2836: -2,1 + 2844: -1,1 + 2852: -12,-10 + 2854: -10,-16 + 2858: -4,-1 + 2866: 4,-1 + 2885: -9,-17 + 2888: -3,-20 + 2892: 6,16 + 2900: 6,17 + 2908: 6,18 + 2916: 6,19 + 2924: 6,20 + 2937: -9,24 + 2941: -9,28 + 2944: 0,1 + 2952: 1,1 + 2960: 2,1 + 2968: 3,0 + 2976: 3,1 + 2984: 4,0 + 2992: 4,1 + 3000: 8,12 + 3013: -9,3 + 3017: -9,12 + 3020: -8,12 + 3028: -4,0 + 3036: -4,1 + 3044: -3,0 + 3052: -3,1 + 3060: -2,1 + 3068: -1,1 + 3076: -12,-10 + 3078: -10,-16 + 3082: -4,-1 + 3090: 4,-1 + 3109: -9,-17 + 3112: -3,-20 + 3116: 6,16 + 3124: 6,17 + 3132: 6,18 + 3140: 6,19 + 3148: 6,20 + 3161: -9,24 + 3165: -9,28 + 3168: 0,1 + 3176: 1,1 + 3184: 2,1 + 3192: 3,0 + 3200: 3,1 + 3208: 4,0 + 3216: 4,1 + 3224: 8,12 + 3237: -9,3 + 3241: -9,12 + 3244: -8,12 + 3252: -4,0 + 3260: -4,1 + 3268: -3,0 + 3276: -3,1 + 3284: -2,1 + 3292: -1,1 + 3300: -12,-10 + 3302: -10,-16 + 3306: -4,-1 + 3314: 4,-1 + 3333: -9,-17 + 3336: -3,-20 + 3340: 6,16 + 3348: 6,17 + 3356: 6,18 + 3364: 6,19 + 3372: 6,20 + 3385: -9,24 + 3389: -9,28 + 3416: 0,1 + 3425: 1,1 + 3434: 2,1 + 3448: 3,0 + 3456: 3,1 + 3464: 4,0 + 3472: 4,1 + 3480: 8,12 + 3493: -9,3 + 3497: -9,12 + 3500: -8,12 + 3508: -4,0 + 3516: -4,1 + 3524: -3,0 + 3532: -3,1 + 3540: -2,1 + 3554: -1,1 + 3563: -12,-10 + 3565: -10,-16 + 3569: -4,-1 + 3577: 4,-1 + 3596: -9,-17 + 3599: -3,-20 + 3603: 6,16 + 3611: 6,17 + 3619: 6,18 + 3627: 6,19 + 3635: 6,20 + 3648: -9,24 + 3652: -9,28 + 3664: 0,1 + 3674: 1,1 + 3684: 2,1 + 3701: 3,0 + 3709: 3,1 + 3717: 4,0 + 3725: 4,1 + 3733: 8,12 + 3746: -9,3 + 3750: -9,12 + 3753: -8,12 + 3761: -4,0 + 3769: -4,1 + 3777: -3,0 + 3785: -3,1 + 3793: -2,1 + 3810: -1,1 + 3820: -12,-10 + 3822: -10,-16 + 3826: -4,-1 + 3834: 4,-1 + 3853: -9,-17 + 3856: -3,-20 + 3860: 6,16 + 3868: 6,17 + 3876: 6,18 + 3884: 6,19 + 3892: 6,20 + 3905: -9,24 + 3909: -9,28 + 3912: 0,1 + 3922: 1,1 + 3932: 2,1 + 3949: 3,0 + 3957: 3,1 + 3965: 4,0 + 3973: 4,1 + 3981: 8,12 + 3994: -9,3 + 3998: -9,12 + 4001: -8,12 + 4009: -4,0 + 4017: -4,1 + 4025: -3,0 + 4033: -3,1 + 4041: -2,1 + 4058: -1,1 + 4067: -10,-16 + 4071: -4,-1 + 4079: 4,-1 + 4095: -9,-17 + 4098: -3,-20 + 4102: 6,16 + 4110: 6,17 + 4118: 6,18 + 4126: 6,19 + 4134: 6,20 + 4147: -9,24 + 4151: -9,28 + 4154: -12,-10 + 4160: 0,1 + 4170: 1,1 + 4180: 2,1 + 4197: 3,0 + 4205: 3,1 + 4213: 4,0 + 4221: 4,1 + 4229: 8,12 + 4242: -9,3 + 4246: -9,12 + 4249: -8,12 + 4257: -4,0 + 4265: -4,1 + 4273: -3,0 + 4281: -3,1 + 4289: -2,1 + 4306: -1,1 + 4316: -12,-10 + 4318: -10,-16 + 4322: -4,-1 + 4330: 4,-1 + 4349: -9,-17 + 4352: -3,-20 + 4356: 6,16 + 4364: 6,17 + 4372: 6,18 + 4380: 6,19 + 4388: 6,20 + 4401: -9,24 + 4405: -9,28 + 4408: 0,1 + 4418: 1,1 + 4428: 2,1 + 4445: 3,0 + 4453: 3,1 + 4461: 4,0 + 4469: 4,1 + 4477: 8,12 + 4490: -9,3 + 4494: -9,12 + 4497: -8,12 + 4505: -4,0 + 4513: -4,1 + 4521: -3,0 + 4529: -3,1 + 4537: -2,1 + 4554: -1,1 + 4564: -12,-10 + 4566: -10,-16 + 4570: -4,-1 + 4578: 4,-1 + 4597: -9,-17 + 4600: -3,-20 + 4604: 6,16 + 4612: 6,17 + 4620: 6,18 + 4628: 6,19 + 4636: 6,20 + 4649: -9,24 + 4653: -9,28 + 4656: 0,1 + 4666: 1,1 + 4676: 2,1 + 4693: 3,0 + 4701: 3,1 + 4709: 4,0 + 4717: 4,1 + 4725: 8,12 + 4738: -9,3 + 4742: -9,12 + 4745: -8,12 + 4753: -4,0 + 4761: -4,1 + 4769: -3,0 + 4777: -3,1 + 4785: -2,1 + 4802: -1,1 + 4812: -12,-10 + 4814: -10,-16 + 4818: -4,-1 + 4826: 4,-1 + 4845: -9,-17 + 4848: -3,-20 + 4852: 6,16 + 4860: 6,17 + 4868: 6,18 + 4876: 6,19 + 4884: 6,20 + 4897: -9,24 + 4901: -9,28 + 4919: 0,1 + 4929: 1,1 + 4939: 2,1 + 4956: 3,0 + 4964: 3,1 + 4972: 4,0 + 4980: 4,1 + 4988: 8,12 + 5001: -9,3 + 5005: -9,12 + 5008: -8,12 + 5016: -4,0 + 5024: -4,1 + 5032: -3,0 + 5040: -3,1 + 5048: -2,1 + 5065: -1,1 + 5075: -12,-10 + 5077: -10,-16 + 5081: -4,-1 + 5089: 4,-1 + 5108: -9,-17 + 5111: -3,-20 + 5115: 6,16 + 5123: 6,17 + 5131: 6,18 + 5139: 6,19 + 5147: 6,20 + 5160: -9,24 + 5164: -9,28 + 5167: 0,1 + 5177: 1,1 + 5187: 2,1 + 5204: 3,0 + 5212: 3,1 + 5220: 4,0 + 5228: 4,1 + 5236: 8,12 + 5249: -9,3 + 5253: -9,12 + 5256: -8,12 + 5264: -4,0 + 5272: -4,1 + 5280: -3,0 + 5288: -3,1 + 5296: -2,1 + 5313: -1,1 + 5323: -12,-10 + 5325: -10,-16 + 5329: -4,-1 + 5337: 4,-1 + 5356: -9,-17 + 5359: -3,-20 + 5363: 6,16 + 5371: 6,17 + 5379: 6,18 + 5387: 6,19 + 5395: 6,20 + 5408: -9,24 + 5412: -9,28 + 5437: 0,1 + 5447: 1,1 + 5457: 2,1 + 5474: 3,0 + 5482: 3,1 + 5490: 4,0 + 5498: 4,1 + 5506: 8,12 + 5519: -9,3 + 5523: -9,12 + 5526: -8,12 + 5534: -4,0 + 5542: -4,1 + 5550: -3,0 + 5558: -3,1 + 5566: -2,1 + 5583: -1,1 + 5593: -12,-10 + 5595: -10,-16 + 5599: -4,-1 + 5607: 4,-1 + 5626: -9,-17 + 5629: -3,-20 + 5633: 6,16 + 5641: 6,17 + 5649: 6,18 + 5657: 6,19 + 5665: 6,20 + 5678: -9,24 + 5682: -9,28 - node: id: LatticeEdgeN decals: - 940: 0,1 - 948: 1,1 - 956: 2,1 - 964: 3,0 - 972: 3,1 - 980: 4,0 - 988: 4,1 - 996: 8,12 - 1001: 9,4 - 1008: -9,3 - 1016: -8,12 - 1024: -4,0 - 1032: -4,1 - 1040: -3,0 - 1048: -3,1 - 1056: -2,1 - 1064: -1,1 - 1073: -10,-16 - 1078: -4,-1 - 1086: 4,-1 - 1091: 10,-16 - 1097: 3,-20 - 1100: 9,-17 - 1104: -9,-17 - 1107: -3,-20 - 1112: 6,16 - 1120: 6,17 - 1128: 6,18 - 1136: 6,19 - 1144: 6,20 - 1149: 9,24 - 1156: -9,24 - 1164: 0,1 - 1172: 1,1 - 1180: 2,1 - 1188: 3,0 - 1196: 3,1 - 1204: 4,0 - 1212: 4,1 - 1220: 8,12 - 1225: 9,4 - 1232: -9,3 - 1240: -8,12 - 1248: -4,0 - 1256: -4,1 - 1264: -3,0 - 1272: -3,1 - 1280: -2,1 - 1288: -1,1 - 1297: -10,-16 - 1302: -4,-1 - 1310: 4,-1 - 1315: 10,-16 - 1321: 3,-20 - 1324: 9,-17 - 1328: -9,-17 - 1331: -3,-20 - 1336: 6,16 - 1344: 6,17 - 1352: 6,18 - 1360: 6,19 - 1368: 6,20 - 1373: 9,24 - 1380: -9,24 - 1388: 0,1 - 1396: 1,1 - 1404: 2,1 - 1412: 3,0 - 1420: 3,1 - 1428: 4,0 - 1436: 4,1 - 1444: 8,12 - 1449: 9,4 - 1456: -9,3 - 1464: -8,12 - 1472: -4,0 - 1480: -4,1 - 1488: -3,0 - 1496: -3,1 - 1504: -2,1 - 1512: -1,1 - 1521: -10,-16 - 1526: -4,-1 - 1534: 4,-1 - 1539: 10,-16 - 1545: 3,-20 - 1548: 9,-17 - 1552: -9,-17 - 1555: -3,-20 - 1560: 6,16 - 1568: 6,17 - 1576: 6,18 - 1584: 6,19 - 1592: 6,20 - 1597: 9,24 - 1604: -9,24 - 1612: 0,1 - 1620: 1,1 - 1628: 2,1 - 1636: 3,0 - 1644: 3,1 - 1652: 4,0 - 1660: 4,1 - 1668: 8,12 - 1673: 9,4 - 1680: -9,3 - 1688: -8,12 - 1696: -4,0 - 1704: -4,1 - 1712: -3,0 - 1720: -3,1 - 1728: -2,1 - 1736: -1,1 - 1745: -10,-16 - 1750: -4,-1 - 1758: 4,-1 - 1763: 10,-16 - 1769: 3,-20 - 1772: 9,-17 - 1776: -9,-17 - 1779: -3,-20 - 1784: 6,16 - 1792: 6,17 - 1800: 6,18 - 1808: 6,19 - 1816: 6,20 - 1821: 9,24 - 1828: -9,24 - 1836: 0,1 - 1844: 1,1 - 1852: 2,1 - 1860: 3,0 - 1868: 3,1 - 1876: 4,0 - 1884: 4,1 - 1892: 8,12 - 1897: 9,4 - 1904: -9,3 - 1909: -4,0 - 1917: -4,1 - 1925: -3,0 - 1933: -3,1 - 1941: -2,1 - 1949: -1,1 - 1958: -10,-16 - 1963: -4,-1 - 1971: 4,-1 - 1976: 10,-16 - 1982: 3,-20 - 1985: 9,-17 - 1989: -9,-17 - 1992: -3,-20 - 1997: 6,16 - 2005: 6,17 - 2013: 6,18 - 2021: 6,19 - 2029: 6,20 - 2034: 9,24 - 2041: -9,24 - 2049: -8,12 - 2060: 0,1 - 2068: 1,1 - 2076: 2,1 - 2084: 3,0 - 2092: 3,1 - 2100: 4,0 - 2108: 4,1 - 2116: 8,12 - 2121: 9,4 - 2128: -9,3 - 2136: -8,12 - 2144: -4,0 - 2152: -4,1 - 2160: -3,0 - 2168: -3,1 - 2176: -2,1 - 2184: -1,1 - 2193: -10,-16 - 2198: -4,-1 - 2206: 4,-1 - 2211: 10,-16 - 2217: 3,-20 - 2220: 9,-17 - 2224: -9,-17 - 2227: -3,-20 - 2232: 6,16 - 2240: 6,17 - 2248: 6,18 - 2256: 6,19 - 2264: 6,20 - 2269: 9,24 - 2276: -9,24 - 2284: 0,1 - 2292: 1,1 - 2300: 2,1 - 2308: 3,0 - 2316: 3,1 - 2324: 4,0 - 2332: 4,1 - 2340: 8,12 - 2345: 9,4 - 2352: -9,3 - 2360: -8,12 - 2368: -4,0 - 2376: -4,1 - 2384: -3,0 - 2392: -3,1 - 2400: -2,1 - 2408: -1,1 - 2417: -10,-16 - 2422: -4,-1 - 2430: 4,-1 - 2435: 10,-16 - 2441: 3,-20 - 2444: 9,-17 - 2448: -9,-17 - 2451: -3,-20 - 2456: 6,16 - 2464: 6,17 - 2472: 6,18 - 2480: 6,19 - 2488: 6,20 - 2493: 9,24 - 2500: -9,24 - 2508: 0,1 - 2516: 1,1 - 2524: 2,1 - 2532: 3,0 - 2540: 3,1 - 2548: 4,0 - 2556: 4,1 - 2564: 8,12 - 2569: 9,4 - 2576: -9,3 - 2584: -8,12 - 2592: -4,0 - 2600: -4,1 - 2608: -3,0 - 2616: -3,1 - 2624: -2,1 - 2632: -1,1 - 2641: -10,-16 - 2646: -4,-1 - 2654: 4,-1 - 2659: 10,-16 - 2665: 3,-20 - 2668: 9,-17 - 2672: -9,-17 - 2675: -3,-20 - 2680: 6,16 - 2688: 6,17 - 2696: 6,18 - 2704: 6,19 - 2712: 6,20 - 2717: 9,24 - 2724: -9,24 - 2732: 0,1 - 2740: 1,1 - 2748: 2,1 - 2756: 3,0 - 2764: 3,1 - 2772: 4,0 - 2780: 4,1 - 2788: 8,12 - 2793: 9,4 - 2800: -9,3 - 2808: -8,12 - 2816: -4,0 - 2824: -4,1 - 2832: -3,0 - 2840: -3,1 - 2848: -2,1 - 2856: -1,1 - 2865: -10,-16 - 2870: -4,-1 - 2878: 4,-1 - 2883: 10,-16 - 2889: 3,-20 - 2892: 9,-17 - 2896: -9,-17 - 2899: -3,-20 - 2904: 6,16 - 2912: 6,17 - 2920: 6,18 - 2928: 6,19 - 2936: 6,20 - 2941: 9,24 - 2948: -9,24 - 2956: 0,1 - 2964: 1,1 - 2972: 2,1 - 2980: 3,0 - 2988: 3,1 - 2996: 4,0 - 3004: 4,1 - 3012: 8,12 - 3017: 9,4 - 3024: -9,3 - 3032: -8,12 - 3040: -4,0 - 3048: -4,1 - 3056: -3,0 - 3064: -3,1 - 3072: -2,1 - 3080: -1,1 - 3089: -10,-16 - 3094: -4,-1 - 3102: 4,-1 - 3107: 10,-16 - 3113: 3,-20 - 3116: 9,-17 - 3120: -9,-17 - 3123: -3,-20 - 3128: 6,16 - 3136: 6,17 - 3144: 6,18 - 3152: 6,19 - 3160: 6,20 - 3165: 9,24 - 3172: -9,24 - 3180: 0,1 - 3188: 1,1 - 3196: 2,1 - 3204: 3,0 - 3212: 3,1 - 3220: 4,0 - 3228: 4,1 - 3236: 8,12 - 3241: 9,4 - 3248: -9,3 - 3256: -8,12 - 3264: -4,0 - 3272: -4,1 - 3280: -3,0 - 3288: -3,1 - 3296: -2,1 - 3304: -1,1 - 3313: -10,-16 - 3318: -4,-1 - 3326: 4,-1 - 3331: 10,-16 - 3337: 3,-20 - 3340: 9,-17 - 3344: -9,-17 - 3347: -3,-20 - 3352: 6,16 - 3360: 6,17 - 3368: 6,18 - 3376: 6,19 - 3384: 6,20 - 3389: 9,24 - 3396: -9,24 - 3428: 0,1 - 3437: 1,1 - 3446: 2,1 - 3460: 3,0 - 3468: 3,1 - 3476: 4,0 - 3484: 4,1 - 3492: 8,12 - 3497: 9,4 - 3504: -9,3 - 3512: -8,12 - 3520: -4,0 - 3528: -4,1 - 3536: -3,0 - 3544: -3,1 - 3552: -2,1 - 3566: -1,1 - 3576: -10,-16 - 3581: -4,-1 - 3589: 4,-1 - 3594: 10,-16 - 3600: 3,-20 - 3603: 9,-17 - 3607: -9,-17 - 3610: -3,-20 - 3615: 6,16 - 3623: 6,17 - 3631: 6,18 - 3639: 6,19 - 3647: 6,20 - 3652: 9,24 - 3659: -9,24 - 3676: 0,1 - 3686: 1,1 - 3696: 2,1 - 3713: 3,0 - 3721: 3,1 - 3729: 4,0 - 3737: 4,1 - 3745: 8,12 - 3750: 9,4 - 3757: -9,3 - 3765: -8,12 - 3773: -4,0 - 3781: -4,1 - 3789: -3,0 - 3797: -3,1 - 3805: -2,1 - 3822: -1,1 - 3833: -10,-16 - 3838: -4,-1 - 3846: 4,-1 - 3851: 10,-16 - 3857: 3,-20 - 3860: 9,-17 - 3864: -9,-17 - 3867: -3,-20 - 3872: 6,16 - 3880: 6,17 - 3888: 6,18 - 3896: 6,19 - 3904: 6,20 - 3909: 9,24 - 3916: -9,24 - 3924: 0,1 - 3934: 1,1 - 3944: 2,1 - 3961: 3,0 - 3969: 3,1 - 3977: 4,0 - 3985: 4,1 - 3993: 8,12 - 3998: 9,4 - 4005: -9,3 - 4013: -8,12 - 4021: -4,0 - 4029: -4,1 - 4037: -3,0 - 4045: -3,1 - 4053: -2,1 - 4070: -1,1 - 4078: -10,-16 - 4083: -4,-1 - 4091: 4,-1 - 4096: 10,-16 - 4099: 3,-20 - 4102: 9,-17 - 4106: -9,-17 - 4109: -3,-20 - 4114: 6,16 - 4122: 6,17 - 4130: 6,18 - 4138: 6,19 - 4146: 6,20 - 4151: 9,24 - 4158: -9,24 - 4172: 0,1 - 4182: 1,1 - 4192: 2,1 - 4209: 3,0 - 4217: 3,1 - 4225: 4,0 - 4233: 4,1 - 4241: 8,12 - 4246: 9,4 - 4253: -9,3 - 4261: -8,12 - 4269: -4,0 - 4277: -4,1 - 4285: -3,0 - 4293: -3,1 - 4301: -2,1 - 4318: -1,1 - 4329: -10,-16 - 4334: -4,-1 - 4342: 4,-1 - 4347: 10,-16 - 4353: 3,-20 - 4356: 9,-17 - 4360: -9,-17 - 4363: -3,-20 - 4368: 6,16 - 4376: 6,17 - 4384: 6,18 - 4392: 6,19 - 4400: 6,20 - 4405: 9,24 - 4412: -9,24 - 4420: 0,1 - 4430: 1,1 - 4440: 2,1 - 4457: 3,0 - 4465: 3,1 - 4473: 4,0 - 4481: 4,1 - 4489: 8,12 - 4494: 9,4 - 4501: -9,3 - 4509: -8,12 - 4517: -4,0 - 4525: -4,1 - 4533: -3,0 - 4541: -3,1 - 4549: -2,1 - 4566: -1,1 - 4577: -10,-16 - 4582: -4,-1 - 4590: 4,-1 - 4595: 10,-16 - 4601: 3,-20 - 4604: 9,-17 - 4608: -9,-17 - 4611: -3,-20 - 4616: 6,16 - 4624: 6,17 - 4632: 6,18 - 4640: 6,19 - 4648: 6,20 - 4653: 9,24 - 4660: -9,24 - 4668: 0,1 - 4678: 1,1 - 4688: 2,1 - 4705: 3,0 - 4713: 3,1 - 4721: 4,0 - 4729: 4,1 - 4737: 8,12 - 4742: 9,4 - 4749: -9,3 - 4757: -8,12 - 4765: -4,0 - 4773: -4,1 - 4781: -3,0 - 4789: -3,1 - 4797: -2,1 - 4814: -1,1 - 4825: -10,-16 - 4830: -4,-1 - 4838: 4,-1 - 4843: 10,-16 - 4849: 3,-20 - 4852: 9,-17 - 4856: -9,-17 - 4859: -3,-20 - 4864: 6,16 - 4872: 6,17 - 4880: 6,18 - 4888: 6,19 - 4896: 6,20 - 4901: 9,24 - 4908: -9,24 - 4943: 0,1 - 4953: 1,1 - 4963: 2,1 - 4980: 3,0 - 4988: 3,1 - 4996: 4,0 - 5004: 4,1 - 5012: 8,12 - 5017: 9,4 - 5024: -9,3 - 5032: -8,12 - 5040: -4,0 - 5048: -4,1 - 5056: -3,0 - 5064: -3,1 - 5072: -2,1 - 5089: -1,1 - 5100: -10,-16 - 5105: -4,-1 - 5113: 4,-1 - 5118: 10,-16 - 5124: 3,-20 - 5127: 9,-17 - 5131: -9,-17 - 5134: -3,-20 - 5139: 6,16 - 5147: 6,17 - 5155: 6,18 - 5163: 6,19 - 5171: 6,20 - 5176: 9,24 - 5183: -9,24 - 5191: 0,1 - 5201: 1,1 - 5211: 2,1 - 5228: 3,0 - 5236: 3,1 - 5244: 4,0 - 5252: 4,1 - 5260: 8,12 - 5265: 9,4 - 5272: -9,3 - 5280: -8,12 - 5288: -4,0 - 5296: -4,1 - 5304: -3,0 - 5312: -3,1 - 5320: -2,1 - 5337: -1,1 - 5348: -10,-16 - 5353: -4,-1 - 5361: 4,-1 - 5366: 10,-16 - 5372: 3,-20 - 5375: 9,-17 - 5379: -9,-17 - 5382: -3,-20 - 5387: 6,16 - 5395: 6,17 - 5403: 6,18 - 5411: 6,19 - 5419: 6,20 - 5424: 9,24 - 5431: -9,24 + 930: 0,1 + 938: 1,1 + 946: 2,1 + 954: 3,0 + 962: 3,1 + 970: 4,0 + 978: 4,1 + 986: 8,12 + 991: 9,4 + 998: -9,3 + 1006: -8,12 + 1014: -4,0 + 1022: -4,1 + 1030: -3,0 + 1038: -3,1 + 1046: -2,1 + 1054: -1,1 + 1063: -10,-16 + 1068: -4,-1 + 1076: 4,-1 + 1081: 10,-16 + 1087: 3,-20 + 1090: 9,-17 + 1094: -9,-17 + 1097: -3,-20 + 1102: 6,16 + 1110: 6,17 + 1118: 6,18 + 1126: 6,19 + 1134: 6,20 + 1139: 9,24 + 1146: -9,24 + 1154: 0,1 + 1162: 1,1 + 1170: 2,1 + 1178: 3,0 + 1186: 3,1 + 1194: 4,0 + 1202: 4,1 + 1210: 8,12 + 1215: 9,4 + 1222: -9,3 + 1230: -8,12 + 1238: -4,0 + 1246: -4,1 + 1254: -3,0 + 1262: -3,1 + 1270: -2,1 + 1278: -1,1 + 1287: -10,-16 + 1292: -4,-1 + 1300: 4,-1 + 1305: 10,-16 + 1311: 3,-20 + 1314: 9,-17 + 1318: -9,-17 + 1321: -3,-20 + 1326: 6,16 + 1334: 6,17 + 1342: 6,18 + 1350: 6,19 + 1358: 6,20 + 1363: 9,24 + 1370: -9,24 + 1378: 0,1 + 1386: 1,1 + 1394: 2,1 + 1402: 3,0 + 1410: 3,1 + 1418: 4,0 + 1426: 4,1 + 1434: 8,12 + 1439: 9,4 + 1446: -9,3 + 1454: -8,12 + 1462: -4,0 + 1470: -4,1 + 1478: -3,0 + 1486: -3,1 + 1494: -2,1 + 1502: -1,1 + 1511: -10,-16 + 1516: -4,-1 + 1524: 4,-1 + 1529: 10,-16 + 1535: 3,-20 + 1538: 9,-17 + 1542: -9,-17 + 1545: -3,-20 + 1550: 6,16 + 1558: 6,17 + 1566: 6,18 + 1574: 6,19 + 1582: 6,20 + 1587: 9,24 + 1594: -9,24 + 1602: 0,1 + 1610: 1,1 + 1618: 2,1 + 1626: 3,0 + 1634: 3,1 + 1642: 4,0 + 1650: 4,1 + 1658: 8,12 + 1663: 9,4 + 1670: -9,3 + 1678: -8,12 + 1686: -4,0 + 1694: -4,1 + 1702: -3,0 + 1710: -3,1 + 1718: -2,1 + 1726: -1,1 + 1735: -10,-16 + 1740: -4,-1 + 1748: 4,-1 + 1753: 10,-16 + 1759: 3,-20 + 1762: 9,-17 + 1766: -9,-17 + 1769: -3,-20 + 1774: 6,16 + 1782: 6,17 + 1790: 6,18 + 1798: 6,19 + 1806: 6,20 + 1811: 9,24 + 1818: -9,24 + 1826: 0,1 + 1834: 1,1 + 1842: 2,1 + 1850: 3,0 + 1858: 3,1 + 1866: 4,0 + 1874: 4,1 + 1882: 8,12 + 1887: 9,4 + 1894: -9,3 + 1899: -4,0 + 1907: -4,1 + 1915: -3,0 + 1923: -3,1 + 1931: -2,1 + 1939: -1,1 + 1948: -10,-16 + 1953: -4,-1 + 1961: 4,-1 + 1966: 10,-16 + 1972: 3,-20 + 1975: 9,-17 + 1979: -9,-17 + 1982: -3,-20 + 1987: 6,16 + 1995: 6,17 + 2003: 6,18 + 2011: 6,19 + 2019: 6,20 + 2024: 9,24 + 2031: -9,24 + 2039: -8,12 + 2050: 0,1 + 2058: 1,1 + 2066: 2,1 + 2074: 3,0 + 2082: 3,1 + 2090: 4,0 + 2098: 4,1 + 2106: 8,12 + 2111: 9,4 + 2118: -9,3 + 2126: -8,12 + 2134: -4,0 + 2142: -4,1 + 2150: -3,0 + 2158: -3,1 + 2166: -2,1 + 2174: -1,1 + 2183: -10,-16 + 2188: -4,-1 + 2196: 4,-1 + 2201: 10,-16 + 2207: 3,-20 + 2210: 9,-17 + 2214: -9,-17 + 2217: -3,-20 + 2222: 6,16 + 2230: 6,17 + 2238: 6,18 + 2246: 6,19 + 2254: 6,20 + 2259: 9,24 + 2266: -9,24 + 2274: 0,1 + 2282: 1,1 + 2290: 2,1 + 2298: 3,0 + 2306: 3,1 + 2314: 4,0 + 2322: 4,1 + 2330: 8,12 + 2335: 9,4 + 2342: -9,3 + 2350: -8,12 + 2358: -4,0 + 2366: -4,1 + 2374: -3,0 + 2382: -3,1 + 2390: -2,1 + 2398: -1,1 + 2407: -10,-16 + 2412: -4,-1 + 2420: 4,-1 + 2425: 10,-16 + 2431: 3,-20 + 2434: 9,-17 + 2438: -9,-17 + 2441: -3,-20 + 2446: 6,16 + 2454: 6,17 + 2462: 6,18 + 2470: 6,19 + 2478: 6,20 + 2483: 9,24 + 2490: -9,24 + 2498: 0,1 + 2506: 1,1 + 2514: 2,1 + 2522: 3,0 + 2530: 3,1 + 2538: 4,0 + 2546: 4,1 + 2554: 8,12 + 2559: 9,4 + 2566: -9,3 + 2574: -8,12 + 2582: -4,0 + 2590: -4,1 + 2598: -3,0 + 2606: -3,1 + 2614: -2,1 + 2622: -1,1 + 2631: -10,-16 + 2636: -4,-1 + 2644: 4,-1 + 2649: 10,-16 + 2655: 3,-20 + 2658: 9,-17 + 2662: -9,-17 + 2665: -3,-20 + 2670: 6,16 + 2678: 6,17 + 2686: 6,18 + 2694: 6,19 + 2702: 6,20 + 2707: 9,24 + 2714: -9,24 + 2722: 0,1 + 2730: 1,1 + 2738: 2,1 + 2746: 3,0 + 2754: 3,1 + 2762: 4,0 + 2770: 4,1 + 2778: 8,12 + 2783: 9,4 + 2790: -9,3 + 2798: -8,12 + 2806: -4,0 + 2814: -4,1 + 2822: -3,0 + 2830: -3,1 + 2838: -2,1 + 2846: -1,1 + 2855: -10,-16 + 2860: -4,-1 + 2868: 4,-1 + 2873: 10,-16 + 2879: 3,-20 + 2882: 9,-17 + 2886: -9,-17 + 2889: -3,-20 + 2894: 6,16 + 2902: 6,17 + 2910: 6,18 + 2918: 6,19 + 2926: 6,20 + 2931: 9,24 + 2938: -9,24 + 2946: 0,1 + 2954: 1,1 + 2962: 2,1 + 2970: 3,0 + 2978: 3,1 + 2986: 4,0 + 2994: 4,1 + 3002: 8,12 + 3007: 9,4 + 3014: -9,3 + 3022: -8,12 + 3030: -4,0 + 3038: -4,1 + 3046: -3,0 + 3054: -3,1 + 3062: -2,1 + 3070: -1,1 + 3079: -10,-16 + 3084: -4,-1 + 3092: 4,-1 + 3097: 10,-16 + 3103: 3,-20 + 3106: 9,-17 + 3110: -9,-17 + 3113: -3,-20 + 3118: 6,16 + 3126: 6,17 + 3134: 6,18 + 3142: 6,19 + 3150: 6,20 + 3155: 9,24 + 3162: -9,24 + 3170: 0,1 + 3178: 1,1 + 3186: 2,1 + 3194: 3,0 + 3202: 3,1 + 3210: 4,0 + 3218: 4,1 + 3226: 8,12 + 3231: 9,4 + 3238: -9,3 + 3246: -8,12 + 3254: -4,0 + 3262: -4,1 + 3270: -3,0 + 3278: -3,1 + 3286: -2,1 + 3294: -1,1 + 3303: -10,-16 + 3308: -4,-1 + 3316: 4,-1 + 3321: 10,-16 + 3327: 3,-20 + 3330: 9,-17 + 3334: -9,-17 + 3337: -3,-20 + 3342: 6,16 + 3350: 6,17 + 3358: 6,18 + 3366: 6,19 + 3374: 6,20 + 3379: 9,24 + 3386: -9,24 + 3418: 0,1 + 3427: 1,1 + 3436: 2,1 + 3450: 3,0 + 3458: 3,1 + 3466: 4,0 + 3474: 4,1 + 3482: 8,12 + 3487: 9,4 + 3494: -9,3 + 3502: -8,12 + 3510: -4,0 + 3518: -4,1 + 3526: -3,0 + 3534: -3,1 + 3542: -2,1 + 3556: -1,1 + 3566: -10,-16 + 3571: -4,-1 + 3579: 4,-1 + 3584: 10,-16 + 3590: 3,-20 + 3593: 9,-17 + 3597: -9,-17 + 3600: -3,-20 + 3605: 6,16 + 3613: 6,17 + 3621: 6,18 + 3629: 6,19 + 3637: 6,20 + 3642: 9,24 + 3649: -9,24 + 3666: 0,1 + 3676: 1,1 + 3686: 2,1 + 3703: 3,0 + 3711: 3,1 + 3719: 4,0 + 3727: 4,1 + 3735: 8,12 + 3740: 9,4 + 3747: -9,3 + 3755: -8,12 + 3763: -4,0 + 3771: -4,1 + 3779: -3,0 + 3787: -3,1 + 3795: -2,1 + 3812: -1,1 + 3823: -10,-16 + 3828: -4,-1 + 3836: 4,-1 + 3841: 10,-16 + 3847: 3,-20 + 3850: 9,-17 + 3854: -9,-17 + 3857: -3,-20 + 3862: 6,16 + 3870: 6,17 + 3878: 6,18 + 3886: 6,19 + 3894: 6,20 + 3899: 9,24 + 3906: -9,24 + 3914: 0,1 + 3924: 1,1 + 3934: 2,1 + 3951: 3,0 + 3959: 3,1 + 3967: 4,0 + 3975: 4,1 + 3983: 8,12 + 3988: 9,4 + 3995: -9,3 + 4003: -8,12 + 4011: -4,0 + 4019: -4,1 + 4027: -3,0 + 4035: -3,1 + 4043: -2,1 + 4060: -1,1 + 4068: -10,-16 + 4073: -4,-1 + 4081: 4,-1 + 4086: 10,-16 + 4089: 3,-20 + 4092: 9,-17 + 4096: -9,-17 + 4099: -3,-20 + 4104: 6,16 + 4112: 6,17 + 4120: 6,18 + 4128: 6,19 + 4136: 6,20 + 4141: 9,24 + 4148: -9,24 + 4162: 0,1 + 4172: 1,1 + 4182: 2,1 + 4199: 3,0 + 4207: 3,1 + 4215: 4,0 + 4223: 4,1 + 4231: 8,12 + 4236: 9,4 + 4243: -9,3 + 4251: -8,12 + 4259: -4,0 + 4267: -4,1 + 4275: -3,0 + 4283: -3,1 + 4291: -2,1 + 4308: -1,1 + 4319: -10,-16 + 4324: -4,-1 + 4332: 4,-1 + 4337: 10,-16 + 4343: 3,-20 + 4346: 9,-17 + 4350: -9,-17 + 4353: -3,-20 + 4358: 6,16 + 4366: 6,17 + 4374: 6,18 + 4382: 6,19 + 4390: 6,20 + 4395: 9,24 + 4402: -9,24 + 4410: 0,1 + 4420: 1,1 + 4430: 2,1 + 4447: 3,0 + 4455: 3,1 + 4463: 4,0 + 4471: 4,1 + 4479: 8,12 + 4484: 9,4 + 4491: -9,3 + 4499: -8,12 + 4507: -4,0 + 4515: -4,1 + 4523: -3,0 + 4531: -3,1 + 4539: -2,1 + 4556: -1,1 + 4567: -10,-16 + 4572: -4,-1 + 4580: 4,-1 + 4585: 10,-16 + 4591: 3,-20 + 4594: 9,-17 + 4598: -9,-17 + 4601: -3,-20 + 4606: 6,16 + 4614: 6,17 + 4622: 6,18 + 4630: 6,19 + 4638: 6,20 + 4643: 9,24 + 4650: -9,24 + 4658: 0,1 + 4668: 1,1 + 4678: 2,1 + 4695: 3,0 + 4703: 3,1 + 4711: 4,0 + 4719: 4,1 + 4727: 8,12 + 4732: 9,4 + 4739: -9,3 + 4747: -8,12 + 4755: -4,0 + 4763: -4,1 + 4771: -3,0 + 4779: -3,1 + 4787: -2,1 + 4804: -1,1 + 4815: -10,-16 + 4820: -4,-1 + 4828: 4,-1 + 4833: 10,-16 + 4839: 3,-20 + 4842: 9,-17 + 4846: -9,-17 + 4849: -3,-20 + 4854: 6,16 + 4862: 6,17 + 4870: 6,18 + 4878: 6,19 + 4886: 6,20 + 4891: 9,24 + 4898: -9,24 + 4921: 0,1 + 4931: 1,1 + 4941: 2,1 + 4958: 3,0 + 4966: 3,1 + 4974: 4,0 + 4982: 4,1 + 4990: 8,12 + 4995: 9,4 + 5002: -9,3 + 5010: -8,12 + 5018: -4,0 + 5026: -4,1 + 5034: -3,0 + 5042: -3,1 + 5050: -2,1 + 5067: -1,1 + 5078: -10,-16 + 5083: -4,-1 + 5091: 4,-1 + 5096: 10,-16 + 5102: 3,-20 + 5105: 9,-17 + 5109: -9,-17 + 5112: -3,-20 + 5117: 6,16 + 5125: 6,17 + 5133: 6,18 + 5141: 6,19 + 5149: 6,20 + 5154: 9,24 + 5161: -9,24 + 5169: 0,1 + 5179: 1,1 + 5189: 2,1 + 5206: 3,0 + 5214: 3,1 + 5222: 4,0 + 5230: 4,1 + 5238: 8,12 + 5243: 9,4 + 5250: -9,3 + 5258: -8,12 + 5266: -4,0 + 5274: -4,1 + 5282: -3,0 + 5290: -3,1 + 5298: -2,1 + 5315: -1,1 + 5326: -10,-16 + 5331: -4,-1 + 5339: 4,-1 + 5344: 10,-16 + 5350: 3,-20 + 5353: 9,-17 + 5357: -9,-17 + 5360: -3,-20 + 5365: 6,16 + 5373: 6,17 + 5381: 6,18 + 5389: 6,19 + 5397: 6,20 + 5402: 9,24 + 5409: -9,24 + 5439: 0,1 + 5449: 1,1 + 5459: 2,1 + 5476: 3,0 + 5484: 3,1 + 5492: 4,0 + 5500: 4,1 + 5508: 8,12 + 5513: 9,4 + 5520: -9,3 + 5528: -8,12 + 5536: -4,0 + 5544: -4,1 + 5552: -3,0 + 5560: -3,1 + 5568: -2,1 + 5585: -1,1 + 5596: -10,-16 + 5601: -4,-1 + 5609: 4,-1 + 5614: 10,-16 + 5620: 3,-20 + 5623: 9,-17 + 5627: -9,-17 + 5630: -3,-20 + 5635: 6,16 + 5643: 6,17 + 5651: 6,18 + 5659: 6,19 + 5667: 6,20 + 5672: 9,24 + 5679: -9,24 - node: id: LatticeEdgeS decals: - 937: 0,1 - 945: 1,1 - 953: 2,1 - 961: 3,0 - 969: 3,1 - 977: 4,0 - 985: 4,1 - 993: 8,12 - 1004: 9,12 - 1010: -9,12 - 1013: -8,12 - 1021: -4,0 - 1029: -4,1 - 1037: -3,0 - 1045: -3,1 - 1053: -2,1 - 1061: -1,1 - 1069: -12,-10 - 1075: -4,-1 - 1083: 4,-1 - 1094: 12,-10 - 1109: 6,16 - 1117: 6,17 - 1125: 6,18 - 1133: 6,19 - 1141: 6,20 - 1152: 9,28 - 1158: -9,28 - 1161: 0,1 - 1169: 1,1 - 1177: 2,1 - 1185: 3,0 - 1193: 3,1 - 1201: 4,0 - 1209: 4,1 - 1217: 8,12 - 1228: 9,12 - 1234: -9,12 - 1237: -8,12 - 1245: -4,0 - 1253: -4,1 - 1261: -3,0 - 1269: -3,1 - 1277: -2,1 - 1285: -1,1 - 1293: -12,-10 - 1299: -4,-1 - 1307: 4,-1 - 1318: 12,-10 - 1333: 6,16 - 1341: 6,17 - 1349: 6,18 - 1357: 6,19 - 1365: 6,20 - 1376: 9,28 - 1382: -9,28 - 1385: 0,1 - 1393: 1,1 - 1401: 2,1 - 1409: 3,0 - 1417: 3,1 - 1425: 4,0 - 1433: 4,1 - 1441: 8,12 - 1452: 9,12 - 1458: -9,12 - 1461: -8,12 - 1469: -4,0 - 1477: -4,1 - 1485: -3,0 - 1493: -3,1 - 1501: -2,1 - 1509: -1,1 - 1517: -12,-10 - 1523: -4,-1 - 1531: 4,-1 - 1542: 12,-10 - 1557: 6,16 - 1565: 6,17 - 1573: 6,18 - 1581: 6,19 - 1589: 6,20 - 1600: 9,28 - 1606: -9,28 - 1609: 0,1 - 1617: 1,1 - 1625: 2,1 - 1633: 3,0 - 1641: 3,1 - 1649: 4,0 - 1657: 4,1 - 1665: 8,12 - 1676: 9,12 - 1682: -9,12 - 1685: -8,12 - 1693: -4,0 - 1701: -4,1 - 1709: -3,0 - 1717: -3,1 - 1725: -2,1 - 1733: -1,1 - 1741: -12,-10 - 1747: -4,-1 - 1755: 4,-1 - 1766: 12,-10 - 1781: 6,16 - 1789: 6,17 - 1797: 6,18 - 1805: 6,19 - 1813: 6,20 - 1824: 9,28 - 1830: -9,28 - 1833: 0,1 - 1841: 1,1 - 1849: 2,1 - 1857: 3,0 - 1865: 3,1 - 1873: 4,0 - 1881: 4,1 - 1889: 8,12 - 1900: 9,12 - 1906: -4,0 - 1914: -4,1 - 1922: -3,0 - 1930: -3,1 - 1938: -2,1 - 1946: -1,1 - 1954: -12,-10 - 1960: -4,-1 - 1968: 4,-1 - 1979: 12,-10 - 1994: 6,16 - 2002: 6,17 - 2010: 6,18 - 2018: 6,19 - 2026: 6,20 - 2037: 9,28 - 2043: -9,28 - 2046: -8,12 - 2054: -9,12 - 2057: 0,1 - 2065: 1,1 - 2073: 2,1 - 2081: 3,0 - 2089: 3,1 - 2097: 4,0 - 2105: 4,1 - 2113: 8,12 - 2124: 9,12 - 2130: -9,12 - 2133: -8,12 - 2141: -4,0 - 2149: -4,1 - 2157: -3,0 - 2165: -3,1 - 2173: -2,1 - 2181: -1,1 - 2189: -12,-10 - 2195: -4,-1 - 2203: 4,-1 - 2214: 12,-10 - 2229: 6,16 - 2237: 6,17 - 2245: 6,18 - 2253: 6,19 - 2261: 6,20 - 2272: 9,28 - 2278: -9,28 - 2281: 0,1 - 2289: 1,1 - 2297: 2,1 - 2305: 3,0 - 2313: 3,1 - 2321: 4,0 - 2329: 4,1 - 2337: 8,12 - 2348: 9,12 - 2354: -9,12 - 2357: -8,12 - 2365: -4,0 - 2373: -4,1 - 2381: -3,0 - 2389: -3,1 - 2397: -2,1 - 2405: -1,1 - 2413: -12,-10 - 2419: -4,-1 - 2427: 4,-1 - 2438: 12,-10 - 2453: 6,16 - 2461: 6,17 - 2469: 6,18 - 2477: 6,19 - 2485: 6,20 - 2496: 9,28 - 2502: -9,28 - 2505: 0,1 - 2513: 1,1 - 2521: 2,1 - 2529: 3,0 - 2537: 3,1 - 2545: 4,0 - 2553: 4,1 - 2561: 8,12 - 2572: 9,12 - 2578: -9,12 - 2581: -8,12 - 2589: -4,0 - 2597: -4,1 - 2605: -3,0 - 2613: -3,1 - 2621: -2,1 - 2629: -1,1 - 2637: -12,-10 - 2643: -4,-1 - 2651: 4,-1 - 2662: 12,-10 - 2677: 6,16 - 2685: 6,17 - 2693: 6,18 - 2701: 6,19 - 2709: 6,20 - 2720: 9,28 - 2726: -9,28 - 2729: 0,1 - 2737: 1,1 - 2745: 2,1 - 2753: 3,0 - 2761: 3,1 - 2769: 4,0 - 2777: 4,1 - 2785: 8,12 - 2796: 9,12 - 2802: -9,12 - 2805: -8,12 - 2813: -4,0 - 2821: -4,1 - 2829: -3,0 - 2837: -3,1 - 2845: -2,1 - 2853: -1,1 - 2861: -12,-10 - 2867: -4,-1 - 2875: 4,-1 - 2886: 12,-10 - 2901: 6,16 - 2909: 6,17 - 2917: 6,18 - 2925: 6,19 - 2933: 6,20 - 2944: 9,28 - 2950: -9,28 - 2953: 0,1 - 2961: 1,1 - 2969: 2,1 - 2977: 3,0 - 2985: 3,1 - 2993: 4,0 - 3001: 4,1 - 3009: 8,12 - 3020: 9,12 - 3026: -9,12 - 3029: -8,12 - 3037: -4,0 - 3045: -4,1 - 3053: -3,0 - 3061: -3,1 - 3069: -2,1 - 3077: -1,1 - 3085: -12,-10 - 3091: -4,-1 - 3099: 4,-1 - 3110: 12,-10 - 3125: 6,16 - 3133: 6,17 - 3141: 6,18 - 3149: 6,19 - 3157: 6,20 - 3168: 9,28 - 3174: -9,28 - 3177: 0,1 - 3185: 1,1 - 3193: 2,1 - 3201: 3,0 - 3209: 3,1 - 3217: 4,0 - 3225: 4,1 - 3233: 8,12 - 3244: 9,12 - 3250: -9,12 - 3253: -8,12 - 3261: -4,0 - 3269: -4,1 - 3277: -3,0 - 3285: -3,1 - 3293: -2,1 - 3301: -1,1 - 3309: -12,-10 - 3315: -4,-1 - 3323: 4,-1 - 3334: 12,-10 - 3349: 6,16 - 3357: 6,17 - 3365: 6,18 - 3373: 6,19 - 3381: 6,20 - 3392: 9,28 - 3398: -9,28 - 3425: 0,1 - 3434: 1,1 - 3443: 2,1 - 3457: 3,0 - 3465: 3,1 - 3473: 4,0 - 3481: 4,1 - 3489: 8,12 - 3500: 9,12 - 3506: -9,12 - 3509: -8,12 - 3517: -4,0 - 3525: -4,1 - 3533: -3,0 - 3541: -3,1 - 3549: -2,1 - 3563: -1,1 - 3572: -12,-10 - 3578: -4,-1 - 3586: 4,-1 - 3597: 12,-10 - 3612: 6,16 - 3620: 6,17 - 3628: 6,18 - 3636: 6,19 - 3644: 6,20 - 3655: 9,28 - 3661: -9,28 - 3673: 0,1 - 3683: 1,1 - 3693: 2,1 - 3710: 3,0 - 3718: 3,1 - 3726: 4,0 - 3734: 4,1 - 3742: 8,12 - 3753: 9,12 - 3759: -9,12 - 3762: -8,12 - 3770: -4,0 - 3778: -4,1 - 3786: -3,0 - 3794: -3,1 - 3802: -2,1 - 3819: -1,1 - 3829: -12,-10 - 3835: -4,-1 - 3843: 4,-1 - 3854: 12,-10 - 3869: 6,16 - 3877: 6,17 - 3885: 6,18 - 3893: 6,19 - 3901: 6,20 - 3912: 9,28 - 3918: -9,28 - 3921: 0,1 - 3931: 1,1 - 3941: 2,1 - 3958: 3,0 - 3966: 3,1 - 3974: 4,0 - 3982: 4,1 - 3990: 8,12 - 4001: 9,12 - 4007: -9,12 - 4010: -8,12 - 4018: -4,0 - 4026: -4,1 - 4034: -3,0 - 4042: -3,1 - 4050: -2,1 - 4067: -1,1 - 4080: -4,-1 - 4088: 4,-1 - 4111: 6,16 - 4119: 6,17 - 4127: 6,18 - 4135: 6,19 - 4143: 6,20 - 4154: 9,28 - 4160: -9,28 - 4163: -12,-10 - 4166: 12,-10 - 4169: 0,1 - 4179: 1,1 - 4189: 2,1 - 4206: 3,0 - 4214: 3,1 - 4222: 4,0 - 4230: 4,1 - 4238: 8,12 - 4249: 9,12 - 4255: -9,12 - 4258: -8,12 - 4266: -4,0 - 4274: -4,1 - 4282: -3,0 - 4290: -3,1 - 4298: -2,1 - 4315: -1,1 - 4325: -12,-10 - 4331: -4,-1 - 4339: 4,-1 - 4350: 12,-10 - 4365: 6,16 - 4373: 6,17 - 4381: 6,18 - 4389: 6,19 - 4397: 6,20 - 4408: 9,28 - 4414: -9,28 - 4417: 0,1 - 4427: 1,1 - 4437: 2,1 - 4454: 3,0 - 4462: 3,1 - 4470: 4,0 - 4478: 4,1 - 4486: 8,12 - 4497: 9,12 - 4503: -9,12 - 4506: -8,12 - 4514: -4,0 - 4522: -4,1 - 4530: -3,0 - 4538: -3,1 - 4546: -2,1 - 4563: -1,1 - 4573: -12,-10 - 4579: -4,-1 - 4587: 4,-1 - 4598: 12,-10 - 4613: 6,16 - 4621: 6,17 - 4629: 6,18 - 4637: 6,19 - 4645: 6,20 - 4656: 9,28 - 4662: -9,28 - 4665: 0,1 - 4675: 1,1 - 4685: 2,1 - 4702: 3,0 - 4710: 3,1 - 4718: 4,0 - 4726: 4,1 - 4734: 8,12 - 4745: 9,12 - 4751: -9,12 - 4754: -8,12 - 4762: -4,0 - 4770: -4,1 - 4778: -3,0 - 4786: -3,1 - 4794: -2,1 - 4811: -1,1 - 4821: -12,-10 - 4827: -4,-1 - 4835: 4,-1 - 4846: 12,-10 - 4861: 6,16 - 4869: 6,17 - 4877: 6,18 - 4885: 6,19 - 4893: 6,20 - 4904: 9,28 - 4910: -9,28 - 4940: 0,1 - 4950: 1,1 - 4960: 2,1 - 4977: 3,0 - 4985: 3,1 - 4993: 4,0 - 5001: 4,1 - 5009: 8,12 - 5020: 9,12 - 5026: -9,12 - 5029: -8,12 - 5037: -4,0 - 5045: -4,1 - 5053: -3,0 - 5061: -3,1 - 5069: -2,1 - 5086: -1,1 - 5096: -12,-10 - 5102: -4,-1 - 5110: 4,-1 - 5121: 12,-10 - 5136: 6,16 - 5144: 6,17 - 5152: 6,18 - 5160: 6,19 - 5168: 6,20 - 5179: 9,28 - 5185: -9,28 - 5188: 0,1 - 5198: 1,1 - 5208: 2,1 - 5225: 3,0 - 5233: 3,1 - 5241: 4,0 - 5249: 4,1 - 5257: 8,12 - 5268: 9,12 - 5274: -9,12 - 5277: -8,12 - 5285: -4,0 - 5293: -4,1 - 5301: -3,0 - 5309: -3,1 - 5317: -2,1 - 5334: -1,1 - 5344: -12,-10 - 5350: -4,-1 - 5358: 4,-1 - 5369: 12,-10 - 5384: 6,16 - 5392: 6,17 - 5400: 6,18 - 5408: 6,19 - 5416: 6,20 - 5427: 9,28 - 5433: -9,28 + 927: 0,1 + 935: 1,1 + 943: 2,1 + 951: 3,0 + 959: 3,1 + 967: 4,0 + 975: 4,1 + 983: 8,12 + 994: 9,12 + 1000: -9,12 + 1003: -8,12 + 1011: -4,0 + 1019: -4,1 + 1027: -3,0 + 1035: -3,1 + 1043: -2,1 + 1051: -1,1 + 1059: -12,-10 + 1065: -4,-1 + 1073: 4,-1 + 1084: 12,-10 + 1099: 6,16 + 1107: 6,17 + 1115: 6,18 + 1123: 6,19 + 1131: 6,20 + 1142: 9,28 + 1148: -9,28 + 1151: 0,1 + 1159: 1,1 + 1167: 2,1 + 1175: 3,0 + 1183: 3,1 + 1191: 4,0 + 1199: 4,1 + 1207: 8,12 + 1218: 9,12 + 1224: -9,12 + 1227: -8,12 + 1235: -4,0 + 1243: -4,1 + 1251: -3,0 + 1259: -3,1 + 1267: -2,1 + 1275: -1,1 + 1283: -12,-10 + 1289: -4,-1 + 1297: 4,-1 + 1308: 12,-10 + 1323: 6,16 + 1331: 6,17 + 1339: 6,18 + 1347: 6,19 + 1355: 6,20 + 1366: 9,28 + 1372: -9,28 + 1375: 0,1 + 1383: 1,1 + 1391: 2,1 + 1399: 3,0 + 1407: 3,1 + 1415: 4,0 + 1423: 4,1 + 1431: 8,12 + 1442: 9,12 + 1448: -9,12 + 1451: -8,12 + 1459: -4,0 + 1467: -4,1 + 1475: -3,0 + 1483: -3,1 + 1491: -2,1 + 1499: -1,1 + 1507: -12,-10 + 1513: -4,-1 + 1521: 4,-1 + 1532: 12,-10 + 1547: 6,16 + 1555: 6,17 + 1563: 6,18 + 1571: 6,19 + 1579: 6,20 + 1590: 9,28 + 1596: -9,28 + 1599: 0,1 + 1607: 1,1 + 1615: 2,1 + 1623: 3,0 + 1631: 3,1 + 1639: 4,0 + 1647: 4,1 + 1655: 8,12 + 1666: 9,12 + 1672: -9,12 + 1675: -8,12 + 1683: -4,0 + 1691: -4,1 + 1699: -3,0 + 1707: -3,1 + 1715: -2,1 + 1723: -1,1 + 1731: -12,-10 + 1737: -4,-1 + 1745: 4,-1 + 1756: 12,-10 + 1771: 6,16 + 1779: 6,17 + 1787: 6,18 + 1795: 6,19 + 1803: 6,20 + 1814: 9,28 + 1820: -9,28 + 1823: 0,1 + 1831: 1,1 + 1839: 2,1 + 1847: 3,0 + 1855: 3,1 + 1863: 4,0 + 1871: 4,1 + 1879: 8,12 + 1890: 9,12 + 1896: -4,0 + 1904: -4,1 + 1912: -3,0 + 1920: -3,1 + 1928: -2,1 + 1936: -1,1 + 1944: -12,-10 + 1950: -4,-1 + 1958: 4,-1 + 1969: 12,-10 + 1984: 6,16 + 1992: 6,17 + 2000: 6,18 + 2008: 6,19 + 2016: 6,20 + 2027: 9,28 + 2033: -9,28 + 2036: -8,12 + 2044: -9,12 + 2047: 0,1 + 2055: 1,1 + 2063: 2,1 + 2071: 3,0 + 2079: 3,1 + 2087: 4,0 + 2095: 4,1 + 2103: 8,12 + 2114: 9,12 + 2120: -9,12 + 2123: -8,12 + 2131: -4,0 + 2139: -4,1 + 2147: -3,0 + 2155: -3,1 + 2163: -2,1 + 2171: -1,1 + 2179: -12,-10 + 2185: -4,-1 + 2193: 4,-1 + 2204: 12,-10 + 2219: 6,16 + 2227: 6,17 + 2235: 6,18 + 2243: 6,19 + 2251: 6,20 + 2262: 9,28 + 2268: -9,28 + 2271: 0,1 + 2279: 1,1 + 2287: 2,1 + 2295: 3,0 + 2303: 3,1 + 2311: 4,0 + 2319: 4,1 + 2327: 8,12 + 2338: 9,12 + 2344: -9,12 + 2347: -8,12 + 2355: -4,0 + 2363: -4,1 + 2371: -3,0 + 2379: -3,1 + 2387: -2,1 + 2395: -1,1 + 2403: -12,-10 + 2409: -4,-1 + 2417: 4,-1 + 2428: 12,-10 + 2443: 6,16 + 2451: 6,17 + 2459: 6,18 + 2467: 6,19 + 2475: 6,20 + 2486: 9,28 + 2492: -9,28 + 2495: 0,1 + 2503: 1,1 + 2511: 2,1 + 2519: 3,0 + 2527: 3,1 + 2535: 4,0 + 2543: 4,1 + 2551: 8,12 + 2562: 9,12 + 2568: -9,12 + 2571: -8,12 + 2579: -4,0 + 2587: -4,1 + 2595: -3,0 + 2603: -3,1 + 2611: -2,1 + 2619: -1,1 + 2627: -12,-10 + 2633: -4,-1 + 2641: 4,-1 + 2652: 12,-10 + 2667: 6,16 + 2675: 6,17 + 2683: 6,18 + 2691: 6,19 + 2699: 6,20 + 2710: 9,28 + 2716: -9,28 + 2719: 0,1 + 2727: 1,1 + 2735: 2,1 + 2743: 3,0 + 2751: 3,1 + 2759: 4,0 + 2767: 4,1 + 2775: 8,12 + 2786: 9,12 + 2792: -9,12 + 2795: -8,12 + 2803: -4,0 + 2811: -4,1 + 2819: -3,0 + 2827: -3,1 + 2835: -2,1 + 2843: -1,1 + 2851: -12,-10 + 2857: -4,-1 + 2865: 4,-1 + 2876: 12,-10 + 2891: 6,16 + 2899: 6,17 + 2907: 6,18 + 2915: 6,19 + 2923: 6,20 + 2934: 9,28 + 2940: -9,28 + 2943: 0,1 + 2951: 1,1 + 2959: 2,1 + 2967: 3,0 + 2975: 3,1 + 2983: 4,0 + 2991: 4,1 + 2999: 8,12 + 3010: 9,12 + 3016: -9,12 + 3019: -8,12 + 3027: -4,0 + 3035: -4,1 + 3043: -3,0 + 3051: -3,1 + 3059: -2,1 + 3067: -1,1 + 3075: -12,-10 + 3081: -4,-1 + 3089: 4,-1 + 3100: 12,-10 + 3115: 6,16 + 3123: 6,17 + 3131: 6,18 + 3139: 6,19 + 3147: 6,20 + 3158: 9,28 + 3164: -9,28 + 3167: 0,1 + 3175: 1,1 + 3183: 2,1 + 3191: 3,0 + 3199: 3,1 + 3207: 4,0 + 3215: 4,1 + 3223: 8,12 + 3234: 9,12 + 3240: -9,12 + 3243: -8,12 + 3251: -4,0 + 3259: -4,1 + 3267: -3,0 + 3275: -3,1 + 3283: -2,1 + 3291: -1,1 + 3299: -12,-10 + 3305: -4,-1 + 3313: 4,-1 + 3324: 12,-10 + 3339: 6,16 + 3347: 6,17 + 3355: 6,18 + 3363: 6,19 + 3371: 6,20 + 3382: 9,28 + 3388: -9,28 + 3415: 0,1 + 3424: 1,1 + 3433: 2,1 + 3447: 3,0 + 3455: 3,1 + 3463: 4,0 + 3471: 4,1 + 3479: 8,12 + 3490: 9,12 + 3496: -9,12 + 3499: -8,12 + 3507: -4,0 + 3515: -4,1 + 3523: -3,0 + 3531: -3,1 + 3539: -2,1 + 3553: -1,1 + 3562: -12,-10 + 3568: -4,-1 + 3576: 4,-1 + 3587: 12,-10 + 3602: 6,16 + 3610: 6,17 + 3618: 6,18 + 3626: 6,19 + 3634: 6,20 + 3645: 9,28 + 3651: -9,28 + 3663: 0,1 + 3673: 1,1 + 3683: 2,1 + 3700: 3,0 + 3708: 3,1 + 3716: 4,0 + 3724: 4,1 + 3732: 8,12 + 3743: 9,12 + 3749: -9,12 + 3752: -8,12 + 3760: -4,0 + 3768: -4,1 + 3776: -3,0 + 3784: -3,1 + 3792: -2,1 + 3809: -1,1 + 3819: -12,-10 + 3825: -4,-1 + 3833: 4,-1 + 3844: 12,-10 + 3859: 6,16 + 3867: 6,17 + 3875: 6,18 + 3883: 6,19 + 3891: 6,20 + 3902: 9,28 + 3908: -9,28 + 3911: 0,1 + 3921: 1,1 + 3931: 2,1 + 3948: 3,0 + 3956: 3,1 + 3964: 4,0 + 3972: 4,1 + 3980: 8,12 + 3991: 9,12 + 3997: -9,12 + 4000: -8,12 + 4008: -4,0 + 4016: -4,1 + 4024: -3,0 + 4032: -3,1 + 4040: -2,1 + 4057: -1,1 + 4070: -4,-1 + 4078: 4,-1 + 4101: 6,16 + 4109: 6,17 + 4117: 6,18 + 4125: 6,19 + 4133: 6,20 + 4144: 9,28 + 4150: -9,28 + 4153: -12,-10 + 4156: 12,-10 + 4159: 0,1 + 4169: 1,1 + 4179: 2,1 + 4196: 3,0 + 4204: 3,1 + 4212: 4,0 + 4220: 4,1 + 4228: 8,12 + 4239: 9,12 + 4245: -9,12 + 4248: -8,12 + 4256: -4,0 + 4264: -4,1 + 4272: -3,0 + 4280: -3,1 + 4288: -2,1 + 4305: -1,1 + 4315: -12,-10 + 4321: -4,-1 + 4329: 4,-1 + 4340: 12,-10 + 4355: 6,16 + 4363: 6,17 + 4371: 6,18 + 4379: 6,19 + 4387: 6,20 + 4398: 9,28 + 4404: -9,28 + 4407: 0,1 + 4417: 1,1 + 4427: 2,1 + 4444: 3,0 + 4452: 3,1 + 4460: 4,0 + 4468: 4,1 + 4476: 8,12 + 4487: 9,12 + 4493: -9,12 + 4496: -8,12 + 4504: -4,0 + 4512: -4,1 + 4520: -3,0 + 4528: -3,1 + 4536: -2,1 + 4553: -1,1 + 4563: -12,-10 + 4569: -4,-1 + 4577: 4,-1 + 4588: 12,-10 + 4603: 6,16 + 4611: 6,17 + 4619: 6,18 + 4627: 6,19 + 4635: 6,20 + 4646: 9,28 + 4652: -9,28 + 4655: 0,1 + 4665: 1,1 + 4675: 2,1 + 4692: 3,0 + 4700: 3,1 + 4708: 4,0 + 4716: 4,1 + 4724: 8,12 + 4735: 9,12 + 4741: -9,12 + 4744: -8,12 + 4752: -4,0 + 4760: -4,1 + 4768: -3,0 + 4776: -3,1 + 4784: -2,1 + 4801: -1,1 + 4811: -12,-10 + 4817: -4,-1 + 4825: 4,-1 + 4836: 12,-10 + 4851: 6,16 + 4859: 6,17 + 4867: 6,18 + 4875: 6,19 + 4883: 6,20 + 4894: 9,28 + 4900: -9,28 + 4918: 0,1 + 4928: 1,1 + 4938: 2,1 + 4955: 3,0 + 4963: 3,1 + 4971: 4,0 + 4979: 4,1 + 4987: 8,12 + 4998: 9,12 + 5004: -9,12 + 5007: -8,12 + 5015: -4,0 + 5023: -4,1 + 5031: -3,0 + 5039: -3,1 + 5047: -2,1 + 5064: -1,1 + 5074: -12,-10 + 5080: -4,-1 + 5088: 4,-1 + 5099: 12,-10 + 5114: 6,16 + 5122: 6,17 + 5130: 6,18 + 5138: 6,19 + 5146: 6,20 + 5157: 9,28 + 5163: -9,28 + 5166: 0,1 + 5176: 1,1 + 5186: 2,1 + 5203: 3,0 + 5211: 3,1 + 5219: 4,0 + 5227: 4,1 + 5235: 8,12 + 5246: 9,12 + 5252: -9,12 + 5255: -8,12 + 5263: -4,0 + 5271: -4,1 + 5279: -3,0 + 5287: -3,1 + 5295: -2,1 + 5312: -1,1 + 5322: -12,-10 + 5328: -4,-1 + 5336: 4,-1 + 5347: 12,-10 + 5362: 6,16 + 5370: 6,17 + 5378: 6,18 + 5386: 6,19 + 5394: 6,20 + 5405: 9,28 + 5411: -9,28 + 5436: 0,1 + 5446: 1,1 + 5456: 2,1 + 5473: 3,0 + 5481: 3,1 + 5489: 4,0 + 5497: 4,1 + 5505: 8,12 + 5516: 9,12 + 5522: -9,12 + 5525: -8,12 + 5533: -4,0 + 5541: -4,1 + 5549: -3,0 + 5557: -3,1 + 5565: -2,1 + 5582: -1,1 + 5592: -12,-10 + 5598: -4,-1 + 5606: 4,-1 + 5617: 12,-10 + 5632: 6,16 + 5640: 6,17 + 5648: 6,18 + 5656: 6,19 + 5664: 6,20 + 5675: 9,28 + 5681: -9,28 - node: id: LatticeEdgeW decals: - 942: 0,1 - 950: 1,1 - 958: 2,1 - 966: 3,0 - 974: 3,1 - 982: 4,0 - 990: 4,1 - 998: 8,12 - 1002: 9,4 - 1005: 9,12 - 1018: -8,12 - 1026: -4,0 - 1034: -4,1 - 1042: -3,0 - 1050: -3,1 - 1058: -2,1 - 1066: -1,1 - 1080: -4,-1 - 1088: 4,-1 - 1092: 10,-16 - 1095: 12,-10 - 1098: 3,-20 - 1101: 9,-17 - 1114: 6,16 - 1122: 6,17 - 1130: 6,18 - 1138: 6,19 - 1146: 6,20 - 1150: 9,24 - 1153: 9,28 - 1166: 0,1 - 1174: 1,1 - 1182: 2,1 - 1190: 3,0 - 1198: 3,1 - 1206: 4,0 - 1214: 4,1 - 1222: 8,12 - 1226: 9,4 - 1229: 9,12 - 1242: -8,12 - 1250: -4,0 - 1258: -4,1 - 1266: -3,0 - 1274: -3,1 - 1282: -2,1 - 1290: -1,1 - 1304: -4,-1 - 1312: 4,-1 - 1316: 10,-16 - 1319: 12,-10 - 1322: 3,-20 - 1325: 9,-17 - 1338: 6,16 - 1346: 6,17 - 1354: 6,18 - 1362: 6,19 - 1370: 6,20 - 1374: 9,24 - 1377: 9,28 - 1390: 0,1 - 1398: 1,1 - 1406: 2,1 - 1414: 3,0 - 1422: 3,1 - 1430: 4,0 - 1438: 4,1 - 1446: 8,12 - 1450: 9,4 - 1453: 9,12 - 1466: -8,12 - 1474: -4,0 - 1482: -4,1 - 1490: -3,0 - 1498: -3,1 - 1506: -2,1 - 1514: -1,1 - 1528: -4,-1 - 1536: 4,-1 - 1540: 10,-16 - 1543: 12,-10 - 1546: 3,-20 - 1549: 9,-17 - 1562: 6,16 - 1570: 6,17 - 1578: 6,18 - 1586: 6,19 - 1594: 6,20 - 1598: 9,24 - 1601: 9,28 - 1614: 0,1 - 1622: 1,1 - 1630: 2,1 - 1638: 3,0 - 1646: 3,1 - 1654: 4,0 - 1662: 4,1 - 1670: 8,12 - 1674: 9,4 - 1677: 9,12 - 1690: -8,12 - 1698: -4,0 - 1706: -4,1 - 1714: -3,0 - 1722: -3,1 - 1730: -2,1 - 1738: -1,1 - 1752: -4,-1 - 1760: 4,-1 - 1764: 10,-16 - 1767: 12,-10 - 1770: 3,-20 - 1773: 9,-17 - 1786: 6,16 - 1794: 6,17 - 1802: 6,18 - 1810: 6,19 - 1818: 6,20 - 1822: 9,24 - 1825: 9,28 - 1838: 0,1 - 1846: 1,1 - 1854: 2,1 - 1862: 3,0 - 1870: 3,1 - 1878: 4,0 - 1886: 4,1 - 1894: 8,12 - 1898: 9,4 - 1901: 9,12 - 1911: -4,0 - 1919: -4,1 - 1927: -3,0 - 1935: -3,1 - 1943: -2,1 - 1951: -1,1 - 1965: -4,-1 - 1973: 4,-1 - 1977: 10,-16 - 1980: 12,-10 - 1983: 3,-20 - 1986: 9,-17 - 1999: 6,16 - 2007: 6,17 - 2015: 6,18 - 2023: 6,19 - 2031: 6,20 - 2035: 9,24 - 2038: 9,28 - 2051: -8,12 - 2062: 0,1 - 2070: 1,1 - 2078: 2,1 - 2086: 3,0 - 2094: 3,1 - 2102: 4,0 - 2110: 4,1 - 2118: 8,12 - 2122: 9,4 - 2125: 9,12 - 2138: -8,12 - 2146: -4,0 - 2154: -4,1 - 2162: -3,0 - 2170: -3,1 - 2178: -2,1 - 2186: -1,1 - 2200: -4,-1 - 2208: 4,-1 - 2212: 10,-16 - 2215: 12,-10 - 2218: 3,-20 - 2221: 9,-17 - 2234: 6,16 - 2242: 6,17 - 2250: 6,18 - 2258: 6,19 - 2266: 6,20 - 2270: 9,24 - 2273: 9,28 - 2286: 0,1 - 2294: 1,1 - 2302: 2,1 - 2310: 3,0 - 2318: 3,1 - 2326: 4,0 - 2334: 4,1 - 2342: 8,12 - 2346: 9,4 - 2349: 9,12 - 2362: -8,12 - 2370: -4,0 - 2378: -4,1 - 2386: -3,0 - 2394: -3,1 - 2402: -2,1 - 2410: -1,1 - 2424: -4,-1 - 2432: 4,-1 - 2436: 10,-16 - 2439: 12,-10 - 2442: 3,-20 - 2445: 9,-17 - 2458: 6,16 - 2466: 6,17 - 2474: 6,18 - 2482: 6,19 - 2490: 6,20 - 2494: 9,24 - 2497: 9,28 - 2510: 0,1 - 2518: 1,1 - 2526: 2,1 - 2534: 3,0 - 2542: 3,1 - 2550: 4,0 - 2558: 4,1 - 2566: 8,12 - 2570: 9,4 - 2573: 9,12 - 2586: -8,12 - 2594: -4,0 - 2602: -4,1 - 2610: -3,0 - 2618: -3,1 - 2626: -2,1 - 2634: -1,1 - 2648: -4,-1 - 2656: 4,-1 - 2660: 10,-16 - 2663: 12,-10 - 2666: 3,-20 - 2669: 9,-17 - 2682: 6,16 - 2690: 6,17 - 2698: 6,18 - 2706: 6,19 - 2714: 6,20 - 2718: 9,24 - 2721: 9,28 - 2734: 0,1 - 2742: 1,1 - 2750: 2,1 - 2758: 3,0 - 2766: 3,1 - 2774: 4,0 - 2782: 4,1 - 2790: 8,12 - 2794: 9,4 - 2797: 9,12 - 2810: -8,12 - 2818: -4,0 - 2826: -4,1 - 2834: -3,0 - 2842: -3,1 - 2850: -2,1 - 2858: -1,1 - 2872: -4,-1 - 2880: 4,-1 - 2884: 10,-16 - 2887: 12,-10 - 2890: 3,-20 - 2893: 9,-17 - 2906: 6,16 - 2914: 6,17 - 2922: 6,18 - 2930: 6,19 - 2938: 6,20 - 2942: 9,24 - 2945: 9,28 - 2958: 0,1 - 2966: 1,1 - 2974: 2,1 - 2982: 3,0 - 2990: 3,1 - 2998: 4,0 - 3006: 4,1 - 3014: 8,12 - 3018: 9,4 - 3021: 9,12 - 3034: -8,12 - 3042: -4,0 - 3050: -4,1 - 3058: -3,0 - 3066: -3,1 - 3074: -2,1 - 3082: -1,1 - 3096: -4,-1 - 3104: 4,-1 - 3108: 10,-16 - 3111: 12,-10 - 3114: 3,-20 - 3117: 9,-17 - 3130: 6,16 - 3138: 6,17 - 3146: 6,18 - 3154: 6,19 - 3162: 6,20 - 3166: 9,24 - 3169: 9,28 - 3182: 0,1 - 3190: 1,1 - 3198: 2,1 - 3206: 3,0 - 3214: 3,1 - 3222: 4,0 - 3230: 4,1 - 3238: 8,12 - 3242: 9,4 - 3245: 9,12 - 3258: -8,12 - 3266: -4,0 - 3274: -4,1 - 3282: -3,0 - 3290: -3,1 - 3298: -2,1 - 3306: -1,1 - 3320: -4,-1 - 3328: 4,-1 - 3332: 10,-16 - 3335: 12,-10 - 3338: 3,-20 - 3341: 9,-17 - 3354: 6,16 - 3362: 6,17 - 3370: 6,18 - 3378: 6,19 - 3386: 6,20 - 3390: 9,24 - 3393: 9,28 - 3430: 0,1 - 3439: 1,1 - 3448: 2,1 - 3462: 3,0 - 3470: 3,1 - 3478: 4,0 - 3486: 4,1 - 3494: 8,12 - 3498: 9,4 - 3501: 9,12 - 3514: -8,12 - 3522: -4,0 - 3530: -4,1 - 3538: -3,0 - 3546: -3,1 - 3554: -2,1 - 3568: -1,1 - 3583: -4,-1 - 3591: 4,-1 - 3595: 10,-16 - 3598: 12,-10 - 3601: 3,-20 - 3604: 9,-17 - 3617: 6,16 - 3625: 6,17 - 3633: 6,18 - 3641: 6,19 - 3649: 6,20 - 3653: 9,24 - 3656: 9,28 - 3678: 0,1 - 3688: 1,1 - 3698: 2,1 - 3715: 3,0 - 3723: 3,1 - 3731: 4,0 - 3739: 4,1 - 3747: 8,12 - 3751: 9,4 - 3754: 9,12 - 3767: -8,12 - 3775: -4,0 - 3783: -4,1 - 3791: -3,0 - 3799: -3,1 - 3807: -2,1 - 3824: -1,1 - 3840: -4,-1 - 3848: 4,-1 - 3852: 10,-16 - 3855: 12,-10 - 3858: 3,-20 - 3861: 9,-17 - 3874: 6,16 - 3882: 6,17 - 3890: 6,18 - 3898: 6,19 - 3906: 6,20 - 3910: 9,24 - 3913: 9,28 - 3926: 0,1 - 3936: 1,1 - 3946: 2,1 - 3963: 3,0 - 3971: 3,1 - 3979: 4,0 - 3987: 4,1 - 3995: 8,12 - 3999: 9,4 - 4002: 9,12 - 4015: -8,12 - 4023: -4,0 - 4031: -4,1 - 4039: -3,0 - 4047: -3,1 - 4055: -2,1 - 4072: -1,1 - 4085: -4,-1 - 4093: 4,-1 - 4097: 10,-16 - 4100: 3,-20 - 4103: 9,-17 - 4116: 6,16 - 4124: 6,17 - 4132: 6,18 - 4140: 6,19 - 4148: 6,20 - 4152: 9,24 - 4155: 9,28 - 4167: 12,-10 - 4174: 0,1 - 4184: 1,1 - 4194: 2,1 - 4211: 3,0 - 4219: 3,1 - 4227: 4,0 - 4235: 4,1 - 4243: 8,12 - 4247: 9,4 - 4250: 9,12 - 4263: -8,12 - 4271: -4,0 - 4279: -4,1 - 4287: -3,0 - 4295: -3,1 - 4303: -2,1 - 4320: -1,1 - 4336: -4,-1 - 4344: 4,-1 - 4348: 10,-16 - 4351: 12,-10 - 4354: 3,-20 - 4357: 9,-17 - 4370: 6,16 - 4378: 6,17 - 4386: 6,18 - 4394: 6,19 - 4402: 6,20 - 4406: 9,24 - 4409: 9,28 - 4422: 0,1 - 4432: 1,1 - 4442: 2,1 - 4459: 3,0 - 4467: 3,1 - 4475: 4,0 - 4483: 4,1 - 4491: 8,12 - 4495: 9,4 - 4498: 9,12 - 4511: -8,12 - 4519: -4,0 - 4527: -4,1 - 4535: -3,0 - 4543: -3,1 - 4551: -2,1 - 4568: -1,1 - 4584: -4,-1 - 4592: 4,-1 - 4596: 10,-16 - 4599: 12,-10 - 4602: 3,-20 - 4605: 9,-17 - 4618: 6,16 - 4626: 6,17 - 4634: 6,18 - 4642: 6,19 - 4650: 6,20 - 4654: 9,24 - 4657: 9,28 - 4670: 0,1 - 4680: 1,1 - 4690: 2,1 - 4707: 3,0 - 4715: 3,1 - 4723: 4,0 - 4731: 4,1 - 4739: 8,12 - 4743: 9,4 - 4746: 9,12 - 4759: -8,12 - 4767: -4,0 - 4775: -4,1 - 4783: -3,0 - 4791: -3,1 - 4799: -2,1 - 4816: -1,1 - 4832: -4,-1 - 4840: 4,-1 - 4844: 10,-16 - 4847: 12,-10 - 4850: 3,-20 - 4853: 9,-17 - 4866: 6,16 - 4874: 6,17 - 4882: 6,18 - 4890: 6,19 - 4898: 6,20 - 4902: 9,24 - 4905: 9,28 - 4945: 0,1 - 4955: 1,1 - 4965: 2,1 - 4982: 3,0 - 4990: 3,1 - 4998: 4,0 - 5006: 4,1 - 5014: 8,12 - 5018: 9,4 - 5021: 9,12 - 5034: -8,12 - 5042: -4,0 - 5050: -4,1 - 5058: -3,0 - 5066: -3,1 - 5074: -2,1 - 5091: -1,1 - 5107: -4,-1 - 5115: 4,-1 - 5119: 10,-16 - 5122: 12,-10 - 5125: 3,-20 - 5128: 9,-17 - 5141: 6,16 - 5149: 6,17 - 5157: 6,18 - 5165: 6,19 - 5173: 6,20 - 5177: 9,24 - 5180: 9,28 - 5193: 0,1 - 5203: 1,1 - 5213: 2,1 - 5230: 3,0 - 5238: 3,1 - 5246: 4,0 - 5254: 4,1 - 5262: 8,12 - 5266: 9,4 - 5269: 9,12 - 5282: -8,12 - 5290: -4,0 - 5298: -4,1 - 5306: -3,0 - 5314: -3,1 - 5322: -2,1 - 5339: -1,1 - 5355: -4,-1 - 5363: 4,-1 - 5367: 10,-16 - 5370: 12,-10 - 5373: 3,-20 - 5376: 9,-17 - 5389: 6,16 - 5397: 6,17 - 5405: 6,18 - 5413: 6,19 - 5421: 6,20 - 5425: 9,24 - 5428: 9,28 + 932: 0,1 + 940: 1,1 + 948: 2,1 + 956: 3,0 + 964: 3,1 + 972: 4,0 + 980: 4,1 + 988: 8,12 + 992: 9,4 + 995: 9,12 + 1008: -8,12 + 1016: -4,0 + 1024: -4,1 + 1032: -3,0 + 1040: -3,1 + 1048: -2,1 + 1056: -1,1 + 1070: -4,-1 + 1078: 4,-1 + 1082: 10,-16 + 1085: 12,-10 + 1088: 3,-20 + 1091: 9,-17 + 1104: 6,16 + 1112: 6,17 + 1120: 6,18 + 1128: 6,19 + 1136: 6,20 + 1140: 9,24 + 1143: 9,28 + 1156: 0,1 + 1164: 1,1 + 1172: 2,1 + 1180: 3,0 + 1188: 3,1 + 1196: 4,0 + 1204: 4,1 + 1212: 8,12 + 1216: 9,4 + 1219: 9,12 + 1232: -8,12 + 1240: -4,0 + 1248: -4,1 + 1256: -3,0 + 1264: -3,1 + 1272: -2,1 + 1280: -1,1 + 1294: -4,-1 + 1302: 4,-1 + 1306: 10,-16 + 1309: 12,-10 + 1312: 3,-20 + 1315: 9,-17 + 1328: 6,16 + 1336: 6,17 + 1344: 6,18 + 1352: 6,19 + 1360: 6,20 + 1364: 9,24 + 1367: 9,28 + 1380: 0,1 + 1388: 1,1 + 1396: 2,1 + 1404: 3,0 + 1412: 3,1 + 1420: 4,0 + 1428: 4,1 + 1436: 8,12 + 1440: 9,4 + 1443: 9,12 + 1456: -8,12 + 1464: -4,0 + 1472: -4,1 + 1480: -3,0 + 1488: -3,1 + 1496: -2,1 + 1504: -1,1 + 1518: -4,-1 + 1526: 4,-1 + 1530: 10,-16 + 1533: 12,-10 + 1536: 3,-20 + 1539: 9,-17 + 1552: 6,16 + 1560: 6,17 + 1568: 6,18 + 1576: 6,19 + 1584: 6,20 + 1588: 9,24 + 1591: 9,28 + 1604: 0,1 + 1612: 1,1 + 1620: 2,1 + 1628: 3,0 + 1636: 3,1 + 1644: 4,0 + 1652: 4,1 + 1660: 8,12 + 1664: 9,4 + 1667: 9,12 + 1680: -8,12 + 1688: -4,0 + 1696: -4,1 + 1704: -3,0 + 1712: -3,1 + 1720: -2,1 + 1728: -1,1 + 1742: -4,-1 + 1750: 4,-1 + 1754: 10,-16 + 1757: 12,-10 + 1760: 3,-20 + 1763: 9,-17 + 1776: 6,16 + 1784: 6,17 + 1792: 6,18 + 1800: 6,19 + 1808: 6,20 + 1812: 9,24 + 1815: 9,28 + 1828: 0,1 + 1836: 1,1 + 1844: 2,1 + 1852: 3,0 + 1860: 3,1 + 1868: 4,0 + 1876: 4,1 + 1884: 8,12 + 1888: 9,4 + 1891: 9,12 + 1901: -4,0 + 1909: -4,1 + 1917: -3,0 + 1925: -3,1 + 1933: -2,1 + 1941: -1,1 + 1955: -4,-1 + 1963: 4,-1 + 1967: 10,-16 + 1970: 12,-10 + 1973: 3,-20 + 1976: 9,-17 + 1989: 6,16 + 1997: 6,17 + 2005: 6,18 + 2013: 6,19 + 2021: 6,20 + 2025: 9,24 + 2028: 9,28 + 2041: -8,12 + 2052: 0,1 + 2060: 1,1 + 2068: 2,1 + 2076: 3,0 + 2084: 3,1 + 2092: 4,0 + 2100: 4,1 + 2108: 8,12 + 2112: 9,4 + 2115: 9,12 + 2128: -8,12 + 2136: -4,0 + 2144: -4,1 + 2152: -3,0 + 2160: -3,1 + 2168: -2,1 + 2176: -1,1 + 2190: -4,-1 + 2198: 4,-1 + 2202: 10,-16 + 2205: 12,-10 + 2208: 3,-20 + 2211: 9,-17 + 2224: 6,16 + 2232: 6,17 + 2240: 6,18 + 2248: 6,19 + 2256: 6,20 + 2260: 9,24 + 2263: 9,28 + 2276: 0,1 + 2284: 1,1 + 2292: 2,1 + 2300: 3,0 + 2308: 3,1 + 2316: 4,0 + 2324: 4,1 + 2332: 8,12 + 2336: 9,4 + 2339: 9,12 + 2352: -8,12 + 2360: -4,0 + 2368: -4,1 + 2376: -3,0 + 2384: -3,1 + 2392: -2,1 + 2400: -1,1 + 2414: -4,-1 + 2422: 4,-1 + 2426: 10,-16 + 2429: 12,-10 + 2432: 3,-20 + 2435: 9,-17 + 2448: 6,16 + 2456: 6,17 + 2464: 6,18 + 2472: 6,19 + 2480: 6,20 + 2484: 9,24 + 2487: 9,28 + 2500: 0,1 + 2508: 1,1 + 2516: 2,1 + 2524: 3,0 + 2532: 3,1 + 2540: 4,0 + 2548: 4,1 + 2556: 8,12 + 2560: 9,4 + 2563: 9,12 + 2576: -8,12 + 2584: -4,0 + 2592: -4,1 + 2600: -3,0 + 2608: -3,1 + 2616: -2,1 + 2624: -1,1 + 2638: -4,-1 + 2646: 4,-1 + 2650: 10,-16 + 2653: 12,-10 + 2656: 3,-20 + 2659: 9,-17 + 2672: 6,16 + 2680: 6,17 + 2688: 6,18 + 2696: 6,19 + 2704: 6,20 + 2708: 9,24 + 2711: 9,28 + 2724: 0,1 + 2732: 1,1 + 2740: 2,1 + 2748: 3,0 + 2756: 3,1 + 2764: 4,0 + 2772: 4,1 + 2780: 8,12 + 2784: 9,4 + 2787: 9,12 + 2800: -8,12 + 2808: -4,0 + 2816: -4,1 + 2824: -3,0 + 2832: -3,1 + 2840: -2,1 + 2848: -1,1 + 2862: -4,-1 + 2870: 4,-1 + 2874: 10,-16 + 2877: 12,-10 + 2880: 3,-20 + 2883: 9,-17 + 2896: 6,16 + 2904: 6,17 + 2912: 6,18 + 2920: 6,19 + 2928: 6,20 + 2932: 9,24 + 2935: 9,28 + 2948: 0,1 + 2956: 1,1 + 2964: 2,1 + 2972: 3,0 + 2980: 3,1 + 2988: 4,0 + 2996: 4,1 + 3004: 8,12 + 3008: 9,4 + 3011: 9,12 + 3024: -8,12 + 3032: -4,0 + 3040: -4,1 + 3048: -3,0 + 3056: -3,1 + 3064: -2,1 + 3072: -1,1 + 3086: -4,-1 + 3094: 4,-1 + 3098: 10,-16 + 3101: 12,-10 + 3104: 3,-20 + 3107: 9,-17 + 3120: 6,16 + 3128: 6,17 + 3136: 6,18 + 3144: 6,19 + 3152: 6,20 + 3156: 9,24 + 3159: 9,28 + 3172: 0,1 + 3180: 1,1 + 3188: 2,1 + 3196: 3,0 + 3204: 3,1 + 3212: 4,0 + 3220: 4,1 + 3228: 8,12 + 3232: 9,4 + 3235: 9,12 + 3248: -8,12 + 3256: -4,0 + 3264: -4,1 + 3272: -3,0 + 3280: -3,1 + 3288: -2,1 + 3296: -1,1 + 3310: -4,-1 + 3318: 4,-1 + 3322: 10,-16 + 3325: 12,-10 + 3328: 3,-20 + 3331: 9,-17 + 3344: 6,16 + 3352: 6,17 + 3360: 6,18 + 3368: 6,19 + 3376: 6,20 + 3380: 9,24 + 3383: 9,28 + 3420: 0,1 + 3429: 1,1 + 3438: 2,1 + 3452: 3,0 + 3460: 3,1 + 3468: 4,0 + 3476: 4,1 + 3484: 8,12 + 3488: 9,4 + 3491: 9,12 + 3504: -8,12 + 3512: -4,0 + 3520: -4,1 + 3528: -3,0 + 3536: -3,1 + 3544: -2,1 + 3558: -1,1 + 3573: -4,-1 + 3581: 4,-1 + 3585: 10,-16 + 3588: 12,-10 + 3591: 3,-20 + 3594: 9,-17 + 3607: 6,16 + 3615: 6,17 + 3623: 6,18 + 3631: 6,19 + 3639: 6,20 + 3643: 9,24 + 3646: 9,28 + 3668: 0,1 + 3678: 1,1 + 3688: 2,1 + 3705: 3,0 + 3713: 3,1 + 3721: 4,0 + 3729: 4,1 + 3737: 8,12 + 3741: 9,4 + 3744: 9,12 + 3757: -8,12 + 3765: -4,0 + 3773: -4,1 + 3781: -3,0 + 3789: -3,1 + 3797: -2,1 + 3814: -1,1 + 3830: -4,-1 + 3838: 4,-1 + 3842: 10,-16 + 3845: 12,-10 + 3848: 3,-20 + 3851: 9,-17 + 3864: 6,16 + 3872: 6,17 + 3880: 6,18 + 3888: 6,19 + 3896: 6,20 + 3900: 9,24 + 3903: 9,28 + 3916: 0,1 + 3926: 1,1 + 3936: 2,1 + 3953: 3,0 + 3961: 3,1 + 3969: 4,0 + 3977: 4,1 + 3985: 8,12 + 3989: 9,4 + 3992: 9,12 + 4005: -8,12 + 4013: -4,0 + 4021: -4,1 + 4029: -3,0 + 4037: -3,1 + 4045: -2,1 + 4062: -1,1 + 4075: -4,-1 + 4083: 4,-1 + 4087: 10,-16 + 4090: 3,-20 + 4093: 9,-17 + 4106: 6,16 + 4114: 6,17 + 4122: 6,18 + 4130: 6,19 + 4138: 6,20 + 4142: 9,24 + 4145: 9,28 + 4157: 12,-10 + 4164: 0,1 + 4174: 1,1 + 4184: 2,1 + 4201: 3,0 + 4209: 3,1 + 4217: 4,0 + 4225: 4,1 + 4233: 8,12 + 4237: 9,4 + 4240: 9,12 + 4253: -8,12 + 4261: -4,0 + 4269: -4,1 + 4277: -3,0 + 4285: -3,1 + 4293: -2,1 + 4310: -1,1 + 4326: -4,-1 + 4334: 4,-1 + 4338: 10,-16 + 4341: 12,-10 + 4344: 3,-20 + 4347: 9,-17 + 4360: 6,16 + 4368: 6,17 + 4376: 6,18 + 4384: 6,19 + 4392: 6,20 + 4396: 9,24 + 4399: 9,28 + 4412: 0,1 + 4422: 1,1 + 4432: 2,1 + 4449: 3,0 + 4457: 3,1 + 4465: 4,0 + 4473: 4,1 + 4481: 8,12 + 4485: 9,4 + 4488: 9,12 + 4501: -8,12 + 4509: -4,0 + 4517: -4,1 + 4525: -3,0 + 4533: -3,1 + 4541: -2,1 + 4558: -1,1 + 4574: -4,-1 + 4582: 4,-1 + 4586: 10,-16 + 4589: 12,-10 + 4592: 3,-20 + 4595: 9,-17 + 4608: 6,16 + 4616: 6,17 + 4624: 6,18 + 4632: 6,19 + 4640: 6,20 + 4644: 9,24 + 4647: 9,28 + 4660: 0,1 + 4670: 1,1 + 4680: 2,1 + 4697: 3,0 + 4705: 3,1 + 4713: 4,0 + 4721: 4,1 + 4729: 8,12 + 4733: 9,4 + 4736: 9,12 + 4749: -8,12 + 4757: -4,0 + 4765: -4,1 + 4773: -3,0 + 4781: -3,1 + 4789: -2,1 + 4806: -1,1 + 4822: -4,-1 + 4830: 4,-1 + 4834: 10,-16 + 4837: 12,-10 + 4840: 3,-20 + 4843: 9,-17 + 4856: 6,16 + 4864: 6,17 + 4872: 6,18 + 4880: 6,19 + 4888: 6,20 + 4892: 9,24 + 4895: 9,28 + 4923: 0,1 + 4933: 1,1 + 4943: 2,1 + 4960: 3,0 + 4968: 3,1 + 4976: 4,0 + 4984: 4,1 + 4992: 8,12 + 4996: 9,4 + 4999: 9,12 + 5012: -8,12 + 5020: -4,0 + 5028: -4,1 + 5036: -3,0 + 5044: -3,1 + 5052: -2,1 + 5069: -1,1 + 5085: -4,-1 + 5093: 4,-1 + 5097: 10,-16 + 5100: 12,-10 + 5103: 3,-20 + 5106: 9,-17 + 5119: 6,16 + 5127: 6,17 + 5135: 6,18 + 5143: 6,19 + 5151: 6,20 + 5155: 9,24 + 5158: 9,28 + 5171: 0,1 + 5181: 1,1 + 5191: 2,1 + 5208: 3,0 + 5216: 3,1 + 5224: 4,0 + 5232: 4,1 + 5240: 8,12 + 5244: 9,4 + 5247: 9,12 + 5260: -8,12 + 5268: -4,0 + 5276: -4,1 + 5284: -3,0 + 5292: -3,1 + 5300: -2,1 + 5317: -1,1 + 5333: -4,-1 + 5341: 4,-1 + 5345: 10,-16 + 5348: 12,-10 + 5351: 3,-20 + 5354: 9,-17 + 5367: 6,16 + 5375: 6,17 + 5383: 6,18 + 5391: 6,19 + 5399: 6,20 + 5403: 9,24 + 5406: 9,28 + 5441: 0,1 + 5451: 1,1 + 5461: 2,1 + 5478: 3,0 + 5486: 3,1 + 5494: 4,0 + 5502: 4,1 + 5510: 8,12 + 5514: 9,4 + 5517: 9,12 + 5530: -8,12 + 5538: -4,0 + 5546: -4,1 + 5554: -3,0 + 5562: -3,1 + 5570: -2,1 + 5587: -1,1 + 5603: -4,-1 + 5611: 4,-1 + 5615: 10,-16 + 5618: 12,-10 + 5621: 3,-20 + 5624: 9,-17 + 5637: 6,16 + 5645: 6,17 + 5653: 6,18 + 5661: 6,19 + 5669: 6,20 + 5673: 9,24 + 5676: 9,28 - node: color: '#FFFFFFFF' id: Rust decals: - 856: -6,11 - 857: -1,11 - 858: -8,34 + 849: -6,11 + 850: -1,11 + 851: -8,34 - node: color: '#FFFFFFFF' id: TechCornerN @@ -5209,20 +5457,20 @@ entities: 285: -2,31 295: -4,36 296: -4,37 - 386: 5,25 - 387: 5,26 - 388: 5,27 - 442: -2,-7 - 443: -2,-6 - 486: 6,-4 - 487: 6,-3 - 488: 6,-2 - 489: 6,-1 - 490: 6,0 - 491: 6,1 - 492: 6,2 - 571: -10,-13 - 572: -10,-11 + 382: 5,25 + 383: 5,26 + 384: 5,27 + 438: -2,-7 + 439: -2,-6 + 482: 6,-4 + 483: 6,-3 + 484: 6,-2 + 485: 6,-1 + 486: 6,0 + 487: 6,1 + 488: 6,2 + 567: -10,-13 + 568: -10,-11 - node: color: '#FFFFFFFF' id: TechN @@ -5230,41 +5478,41 @@ entities: 242: 6,10 252: 6,7 291: -6,31 - 368: -8,25 - 369: -7,25 - 375: -6,25 - 380: 6,25 - 381: 7,25 - 382: 8,25 - 418: 2,15 - 419: 3,15 - 420: -2,15 - 421: -3,15 - 422: 4,15 - 423: -4,15 - 446: 3,-5 - 447: -3,-5 - 452: -1,-4 - 453: 0,-4 - 454: 1,-4 - 535: 9,-13 - 536: 10,-13 - 569: -9,-14 - 570: -8,-14 + 364: -8,25 + 365: -7,25 + 371: -6,25 + 376: 6,25 + 377: 7,25 + 378: 8,25 + 414: 2,15 + 415: 3,15 + 416: -2,15 + 417: -3,15 + 418: 4,15 + 419: -4,15 + 442: 3,-5 + 443: -3,-5 + 448: -1,-4 + 449: 0,-4 + 450: 1,-4 + 531: 9,-13 + 532: 10,-13 + 565: -9,-14 + 566: -8,-14 - node: color: '#FFFFFFFF' id: TechNE decals: 245: 7,10 248: 7,7 - 444: -2,-5 + 440: -2,-5 - node: color: '#FFFFFFFF' id: TechNW decals: 246: 5,10 250: 5,7 - 445: 2,-5 + 441: 2,-5 - node: color: '#FFFFFFFF' id: TechS @@ -5274,42 +5522,42 @@ entities: 271: -1,32 272: 0,32 273: 1,32 - 370: -8,27 - 371: -7,27 - 376: -6,27 - 383: 6,27 - 384: 8,27 - 385: 7,27 - 404: 7,28 - 405: 6,28 - 406: -7,28 - 407: -6,28 - 450: 3,-3 - 451: -3,-3 - 523: -1,-7 - 524: 0,-7 - 525: 1,-7 - 526: -1,-3 - 527: 1,-3 - 528: 0,-3 - 533: 9,-11 - 534: 10,-11 - 567: -9,-10 - 568: -8,-10 + 366: -8,27 + 367: -7,27 + 372: -6,27 + 379: 6,27 + 380: 8,27 + 381: 7,27 + 400: 7,28 + 401: 6,28 + 402: -7,28 + 403: -6,28 + 446: 3,-3 + 447: -3,-3 + 519: -1,-7 + 520: 0,-7 + 521: 1,-7 + 522: -1,-3 + 523: 1,-3 + 524: 0,-3 + 529: 9,-11 + 530: 10,-11 + 563: -9,-10 + 564: -8,-10 - node: color: '#FFFFFFFF' id: TechSE decals: 247: 7,9 251: 7,5 - 449: -2,-3 + 445: -2,-3 - node: color: '#FFFFFFFF' id: TechSW decals: 244: 5,9 249: 5,5 - 448: 2,-3 + 444: 2,-3 - node: color: '#FFFFFFFF' id: TechW @@ -5322,79 +5570,79 @@ entities: 290: -5,34 297: 4,36 298: 4,37 - 377: -5,25 - 378: -5,26 - 379: -5,27 - 440: 2,-7 - 441: 2,-6 - 493: -6,-4 - 494: -6,-3 - 495: -6,-2 - 496: -6,-1 - 497: -6,0 - 498: -6,1 - 499: -6,2 - 537: 10,-12 + 373: -5,25 + 374: -5,26 + 375: -5,27 + 436: 2,-7 + 437: 2,-6 + 489: -6,-4 + 490: -6,-3 + 491: -6,-2 + 492: -6,-1 + 493: -6,0 + 494: -6,1 + 495: -6,2 + 533: 10,-12 - node: color: '#EFB34196' id: TrimWarnNorth decals: - 4921: 0,22 - 5444: 0,25 + 4907: 0,22 + 5418: 0,25 - node: color: '#EFB34196' id: TrimWarnNorthEast decals: - 4915: 1,22 - 5443: 1,25 + 4905: 1,22 + 5417: 1,25 - node: color: '#EFB34196' id: TrimWarnNorthWest decals: - 4916: -1,22 - 5442: -1,25 + 4906: -1,22 + 5416: -1,25 - node: color: '#EFB34196' id: TrimWarnSouth decals: - 4922: 0,21 - 5445: 0,24 + 4908: 0,21 + 5419: 0,24 - node: color: '#EFB34196' id: TrimWarnSouthEast decals: - 4913: 1,21 - 5440: 1,24 + 4903: 1,21 + 5414: 1,24 - node: color: '#EFB34196' id: TrimWarnSouthWest decals: - 4914: -1,21 - 5441: -1,24 + 4904: -1,21 + 5415: -1,24 - node: color: '#EFB34196' id: TrimlineEast decals: - 5453: -2,23 - 5457: 2,23 + 5423: -2,23 + 5426: 2,23 - node: color: '#EFB34196' id: TrimlineNorthEnd decals: - 5455: -2,24 - 5458: 2,24 + 5424: -2,24 + 5427: 2,24 - node: color: '#EFB34196' id: TrimlineSouthEnd decals: - 4925: 2,22 - 4927: -2,22 + 4909: 2,22 + 4910: -2,22 - node: color: '#EFB34196' id: TrimlineWest decals: - 5452: -2,23 - 5456: 2,23 + 5422: -2,23 + 5425: 2,23 - node: color: '#EFB34196' id: WarnBoxGreyscale @@ -5433,50 +5681,50 @@ entities: 262: 5,5 277: 2,30 294: -5,34 - 336: -4,20 - 337: 2,20 - 5462: 2,24 + 332: -4,20 + 333: 2,20 + 5431: 2,24 - node: angle: 6.283185307179586 rad color: '#EFB34196' id: WarnCornerSmallNE decals: - 4935: -4,24 + 4916: -4,24 - node: color: '#EFB34196' id: WarnCornerSmallNW decals: 260: 7,5 275: -2,30 - 334: 4,20 - 335: -2,20 - 5461: -2,24 + 330: 4,20 + 331: -2,20 + 5430: -2,24 - node: angle: 6.283185307179586 rad color: '#EFB34196' id: WarnCornerSmallNW decals: - 4938: 4,24 + 4917: 4,24 - node: color: '#EFB34196' id: WarnCornerSmallSE decals: 263: 5,7 282: -1,30 - 327: -4,24 - 328: -4,28 - 329: 2,28 - 5464: 2,24 + 324: -4,24 + 325: -4,28 + 326: 2,28 + 5433: 2,24 - node: color: '#EFB34196' id: WarnCornerSmallSW decals: 261: 7,7 283: 1,30 - 330: 4,28 - 331: -2,28 - 333: 4,24 - 5460: -2,24 + 327: 4,28 + 328: -2,28 + 329: 4,24 + 5429: -2,24 - node: color: '#EFB34196' id: WarnEndE @@ -5497,14 +5745,14 @@ entities: color: '#EFB34196' id: WarnFull decals: - 372: -8,26 - 373: -7,26 - 389: 7,26 - 390: 8,26 - 408: -4,16 - 409: -4,17 - 410: -4,18 - 411: -2,18 + 368: -8,26 + 369: -7,26 + 385: 7,26 + 386: 8,26 + 404: -4,16 + 405: -4,17 + 406: -4,18 + 407: -2,18 - node: color: '#EFB34196' id: WarnFullGreyscale @@ -5613,42 +5861,42 @@ entities: 304: -4,21 305: -4,22 306: -4,23 - 358: 4,25 - 359: 4,26 - 360: 4,27 - 391: 6,26 - 392: 9,25 - 393: 9,26 - 394: 9,27 - 395: -9,25 - 396: -9,26 - 397: -9,27 - 424: 4,3 - 425: -4,3 - 428: -6,13 - 429: -6,14 - 456: 3,-4 - 470: -5,-4 - 510: -5,3 - 538: -8,-13 - 539: -8,-12 - 540: -8,-11 - 5463: 2,23 + 354: 4,25 + 355: 4,26 + 356: 4,27 + 387: 6,26 + 388: 9,25 + 389: 9,26 + 390: 9,27 + 391: -9,25 + 392: -9,26 + 393: -9,27 + 420: 4,3 + 421: -4,3 + 424: -6,13 + 425: -6,14 + 452: 3,-4 + 466: -5,-4 + 506: -5,3 + 534: -8,-13 + 535: -8,-12 + 536: -8,-11 + 5432: 2,23 - node: angle: 3.141592653589793 rad color: '#EFB34196' id: WarnLineE decals: - 4931: -2,22 - 4932: -2,21 + 4913: -2,22 + 4914: -2,21 - node: angle: 6.283185307179586 rad color: '#EFB34196' id: WarnLineE decals: - 4929: 2,22 - 4930: 2,21 - 4933: -4,27 + 4911: 2,22 + 4912: 2,21 + 4915: -4,27 - node: color: '#EFB34196' id: WarnLineGreyscaleE @@ -5689,20 +5937,20 @@ entities: 241: -8,9 257: 6,7 281: 0,30 - 318: 3,28 - 319: -3,28 - 320: -3,24 - 321: 3,24 - 344: 0,20 - 412: -3,19 - 414: 2,19 - 415: 3,19 - 475: -6,-5 - 476: -5,-5 - 477: 5,-5 - 478: 6,-5 - 544: -5,-14 - 545: -3,-14 + 316: 3,28 + 317: -3,28 + 318: -3,24 + 319: 3,24 + 340: 0,20 + 408: -3,19 + 410: 2,19 + 411: 3,19 + 471: -6,-5 + 472: -5,-5 + 473: 5,-5 + 474: 6,-5 + 540: -5,-14 + 541: -3,-14 - node: color: '#EFB34196' id: WarnLineS @@ -5761,35 +6009,35 @@ entities: 268: -3,37 269: 5,36 274: -2,31 - 308: 4,21 - 309: 4,22 - 310: 4,23 - 311: 4,25 - 312: 4,26 - 313: 4,27 - 315: -2,25 - 316: -2,26 - 317: -2,27 - 356: -4,25 - 357: -4,26 - 374: -6,26 - 398: -9,25 - 399: -9,26 - 400: -9,27 - 401: 9,25 - 402: 9,26 - 403: 9,27 - 426: 4,3 - 427: -4,3 - 430: 6,13 - 431: 6,14 - 455: -3,-4 - 469: 5,-4 - 509: 5,3 - 541: -6,-13 - 542: -6,-12 - 543: -6,-11 - 5459: -2,23 + 307: 4,21 + 308: 4,22 + 309: 4,23 + 310: 4,25 + 311: 4,26 + 312: 4,27 + 313: -2,25 + 314: -2,26 + 315: -2,27 + 352: -4,25 + 353: -4,26 + 370: -6,26 + 394: -9,25 + 395: -9,26 + 396: -9,27 + 397: 9,25 + 398: 9,26 + 399: 9,27 + 422: 4,3 + 423: -4,3 + 426: 6,13 + 427: 6,14 + 451: -3,-4 + 465: 5,-4 + 505: 5,3 + 537: -6,-13 + 538: -6,-12 + 539: -6,-11 + 5428: -2,23 - node: color: '#EFB34196' id: WarnLineW @@ -5825,64 +6073,64 @@ entities: 279: 0,31 280: 1,31 293: -4,34 - 322: 3,20 - 323: -3,20 - 324: -3,24 - 325: 3,24 - 367: 0,28 - 413: -3,19 - 416: 2,19 - 417: 3,19 - 471: 5,-5 - 472: 6,-5 - 473: -5,-5 - 474: -6,-5 - 529: 3,-13 - 530: 4,-13 - 531: 5,-13 - 532: 6,-13 - 546: -3,-16 - 547: -5,-16 + 320: 3,20 + 321: -3,20 + 322: -3,24 + 323: 3,24 + 363: 0,28 + 409: -3,19 + 412: 2,19 + 413: 3,19 + 467: 5,-5 + 468: 6,-5 + 469: -5,-5 + 470: -6,-5 + 525: 3,-13 + 526: 4,-13 + 527: 5,-13 + 528: 6,-13 + 542: -3,-16 + 543: -5,-16 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 439: 1,-9 + 435: 1,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 438: -1,-9 + 434: -1,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 437: 1,-11 + 433: 1,-11 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 432: -1,-11 + 428: -1,-11 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 433: 1,-10 + 429: 1,-10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 434: 0,-9 + 430: 0,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 435: 0,-11 + 431: 0,-11 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 436: -1,-10 + 432: -1,-10 - type: RadiationGridResistance - type: GridAtmosphere version: 2 @@ -6127,7 +6375,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1120 + - 1121 - type: Physics canCollide: False - proto: AAAHardpointMediumBallistic @@ -6341,7 +6589,7 @@ entities: - type: ApcPowerReceiver powerLoad: 25000 - type: Battery - startingCharge: 83273.01 + startingCharge: 83091.88 - type: ApcPowerReceiverBattery enabled: True - type: BallisticAmmoProvider @@ -6387,12 +6635,12 @@ entities: parent: 1 - type: DeviceList devices: - - 1369 + - 1371 + - 1374 - 1372 - - 1370 + - 1375 + - 1376 - 1373 - - 1374 - - 1371 - uid: 35 components: - type: Transform @@ -6401,14 +6649,14 @@ entities: parent: 1 - type: DeviceList configurators: - - 1437 + - 1439 devices: - - 1369 + - 1371 + - 1374 - 1372 - - 1370 + - 1375 + - 1376 - 1373 - - 1374 - - 1371 - proto: AirCanister entities: - uid: 36 @@ -7136,7 +7384,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1635 + - 1640 - uid: 191 components: - type: Transform @@ -7144,7 +7392,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1635 + - 1640 - uid: 192 components: - type: Transform @@ -7152,7 +7400,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1635 + - 1640 - uid: 193 components: - type: Transform @@ -7161,7 +7409,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1640 + - 1645 - uid: 194 components: - type: Transform @@ -7170,7 +7418,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1639 + - 1644 - uid: 195 components: - type: Transform @@ -7179,7 +7427,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1638 + - 1643 - uid: 196 components: - type: Transform @@ -7188,7 +7436,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1637 + - 1642 - uid: 197 components: - type: Transform @@ -7197,7 +7445,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1636 + - 1641 - uid: 198 components: - type: Transform @@ -7206,7 +7454,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1634 + - 1639 - proto: BlastDoorOpen entities: - uid: 199 @@ -7216,7 +7464,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1631 + - 1636 - uid: 200 components: - type: Transform @@ -7224,7 +7472,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1631 + - 1636 - uid: 201 components: - type: Transform @@ -7232,7 +7480,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1631 + - 1636 - uid: 202 components: - type: Transform @@ -7240,7 +7488,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1631 + - 1636 - uid: 203 components: - type: Transform @@ -7248,7 +7496,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1631 + - 1636 - uid: 204 components: - type: Transform @@ -7256,7 +7504,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1631 + - 1636 - uid: 205 components: - type: Transform @@ -7264,7 +7512,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1631 + - 1636 - uid: 206 components: - type: Transform @@ -7272,7 +7520,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1631 + - 1636 - uid: 207 components: - type: Transform @@ -7280,7 +7528,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1631 + - 1636 - uid: 208 components: - type: Transform @@ -7288,7 +7536,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1631 + - 1636 - uid: 209 components: - type: Transform @@ -7297,7 +7545,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1631 + - 1636 - uid: 210 components: - type: Transform @@ -7306,7 +7554,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1631 + - 1636 - uid: 211 components: - type: Transform @@ -7315,7 +7563,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1631 + - 1636 - uid: 212 components: - type: Transform @@ -7324,7 +7572,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1631 + - 1636 - proto: BoriaticGeneratorHerculesShuttle entities: - uid: 213 @@ -7354,7 +7602,7 @@ entities: parent: 1 - proto: BoxFolderBlack entities: - - uid: 2175 + - uid: 216 components: - type: MetaData name: Volgin Files @@ -7363,7 +7611,7 @@ entities: parent: 1 - proto: BoxSyringe entities: - - uid: 216 + - uid: 217 components: - type: Transform pos: -4.7007365,11.41998 @@ -7373,61 +7621,61 @@ entities: linearDamping: 0 - proto: ButtonFrameCaution entities: - - uid: 217 + - uid: 218 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-8.5 parent: 1 - - uid: 218 + - uid: 219 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 1 - - uid: 219 + - uid: 220 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-8.5 parent: 1 - - uid: 220 + - uid: 221 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,19.5 parent: 1 - - uid: 221 + - uid: 222 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,24.5 parent: 1 - - uid: 222 + - uid: 223 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,24.5 parent: 1 - - uid: 223 + - uid: 224 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,22.5 parent: 1 - - uid: 224 + - uid: 225 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,14.5 parent: 1 - - uid: 225 + - uid: 226 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,22.5 parent: 1 - - uid: 226 + - uid: 227 components: - type: Transform rot: 1.5707963267948966 rad @@ -7435,3643 +7683,3643 @@ entities: parent: 1 - proto: ButtonFrameCautionSecurity entities: - - uid: 227 + - uid: 228 components: - type: Transform pos: 2.5,35.5 parent: 1 - proto: CableApcExtension entities: - - uid: 228 + - uid: 229 components: - type: Transform pos: 8.5,-17.5 parent: 1 - - uid: 229 + - uid: 230 components: - type: Transform pos: 8.5,-16.5 parent: 1 - - uid: 230 + - uid: 231 components: - type: Transform pos: 7.5,-16.5 parent: 1 - - uid: 231 + - uid: 232 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 232 + - uid: 233 components: - type: Transform pos: 6.5,-15.5 parent: 1 - - uid: 233 + - uid: 234 components: - type: Transform pos: 5.5,-15.5 parent: 1 - - uid: 234 + - uid: 235 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 235 + - uid: 236 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 236 + - uid: 237 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 237 + - uid: 238 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 238 + - uid: 239 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 239 + - uid: 240 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 240 + - uid: 241 components: - type: Transform pos: -7.5,11.5 parent: 1 - - uid: 241 + - uid: 242 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 242 + - uid: 243 components: - type: Transform pos: -6.5,11.5 parent: 1 - - uid: 243 + - uid: 244 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 244 + - uid: 245 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 245 + - uid: 246 components: - type: Transform pos: -9.5,-8.5 parent: 1 - - uid: 246 + - uid: 247 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 247 + - uid: 248 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 248 + - uid: 249 components: - type: Transform pos: 3.5,32.5 parent: 1 - - uid: 249 + - uid: 250 components: - type: Transform pos: 3.5,31.5 parent: 1 - - uid: 250 + - uid: 251 components: - type: Transform pos: 2.5,31.5 parent: 1 - - uid: 251 + - uid: 252 components: - type: Transform pos: 1.5,31.5 parent: 1 - - uid: 252 + - uid: 253 components: - type: Transform pos: 0.5,31.5 parent: 1 - - uid: 253 + - uid: 254 components: - type: Transform pos: -0.5,31.5 parent: 1 - - uid: 254 + - uid: 255 components: - type: Transform pos: -1.5,31.5 parent: 1 - - uid: 255 + - uid: 256 components: - type: Transform pos: -2.5,31.5 parent: 1 - - uid: 256 + - uid: 257 components: - type: Transform pos: -3.5,31.5 parent: 1 - - uid: 257 + - uid: 258 components: - type: Transform pos: -4.5,31.5 parent: 1 - - uid: 258 + - uid: 259 components: - type: Transform pos: -4.5,32.5 parent: 1 - - uid: 259 + - uid: 260 components: - type: Transform pos: -4.5,33.5 parent: 1 - - uid: 260 + - uid: 261 components: - type: Transform pos: -4.5,34.5 parent: 1 - - uid: 261 + - uid: 262 components: - type: Transform pos: -4.5,35.5 parent: 1 - - uid: 262 + - uid: 263 components: - type: Transform pos: -4.5,36.5 parent: 1 - - uid: 263 + - uid: 264 components: - type: Transform pos: -3.5,36.5 parent: 1 - - uid: 264 + - uid: 265 components: - type: Transform pos: -3.5,37.5 parent: 1 - - uid: 265 + - uid: 266 components: - type: Transform pos: -3.5,38.5 parent: 1 - - uid: 266 + - uid: 267 components: - type: Transform pos: 4.5,31.5 parent: 1 - - uid: 267 + - uid: 268 components: - type: Transform pos: 5.5,31.5 parent: 1 - - uid: 268 + - uid: 269 components: - type: Transform pos: 5.5,31.5 parent: 1 - - uid: 269 + - uid: 270 components: - type: Transform pos: 5.5,32.5 parent: 1 - - uid: 270 + - uid: 271 components: - type: Transform pos: 5.5,33.5 parent: 1 - - uid: 271 + - uid: 272 components: - type: Transform pos: 5.5,34.5 parent: 1 - - uid: 272 + - uid: 273 components: - type: Transform pos: 4.5,34.5 parent: 1 - - uid: 273 + - uid: 274 components: - type: Transform pos: 4.5,35.5 parent: 1 - - uid: 274 + - uid: 275 components: - type: Transform pos: 4.5,36.5 parent: 1 - - uid: 275 + - uid: 276 components: - type: Transform pos: 4.5,37.5 parent: 1 - - uid: 276 + - uid: 277 components: - type: Transform pos: 4.5,38.5 parent: 1 - - uid: 277 + - uid: 278 components: - type: Transform pos: 5.5,38.5 parent: 1 - - uid: 278 + - uid: 279 components: - type: Transform pos: 5.5,36.5 parent: 1 - - uid: 279 + - uid: 280 components: - type: Transform pos: 6.5,36.5 parent: 1 - - uid: 280 + - uid: 281 components: - type: Transform pos: 7.5,36.5 parent: 1 - - uid: 281 + - uid: 282 components: - type: Transform pos: 6.5,34.5 parent: 1 - - uid: 282 + - uid: 283 components: - type: Transform pos: 7.5,34.5 parent: 1 - - uid: 283 + - uid: 284 components: - type: Transform pos: 8.5,34.5 parent: 1 - - uid: 284 + - uid: 285 components: - type: Transform pos: -5.5,34.5 parent: 1 - - uid: 285 + - uid: 286 components: - type: Transform pos: -6.5,34.5 parent: 1 - - uid: 286 + - uid: 287 components: - type: Transform pos: -7.5,34.5 parent: 1 - - uid: 287 + - uid: 288 components: - type: Transform pos: -4.5,36.5 parent: 1 - - uid: 288 + - uid: 289 components: - type: Transform pos: -5.5,36.5 parent: 1 - - uid: 289 + - uid: 290 components: - type: Transform pos: -6.5,36.5 parent: 1 - - uid: 290 + - uid: 291 components: - type: Transform pos: -4.5,38.5 parent: 1 - - uid: 291 + - uid: 292 components: - type: Transform pos: 8.5,33.5 parent: 1 - - uid: 292 + - uid: 293 components: - type: Transform pos: 8.5,32.5 parent: 1 - - uid: 293 + - uid: 294 components: - type: Transform pos: 8.5,31.5 parent: 1 - - uid: 294 + - uid: 295 components: - type: Transform pos: 8.5,30.5 parent: 1 - - uid: 295 + - uid: 296 components: - type: Transform pos: -7.5,33.5 parent: 1 - - uid: 296 + - uid: 297 components: - type: Transform pos: -7.5,32.5 parent: 1 - - uid: 297 + - uid: 298 components: - type: Transform pos: -7.5,31.5 parent: 1 - - uid: 298 + - uid: 299 components: - type: Transform pos: -7.5,30.5 parent: 1 - - uid: 299 + - uid: 300 components: - type: Transform pos: -0.5,19.5 parent: 1 - - uid: 300 + - uid: 301 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 301 + - uid: 302 components: - type: Transform pos: -0.5,21.5 parent: 1 - - uid: 302 + - uid: 303 components: - type: Transform pos: -0.5,22.5 parent: 1 - - uid: 303 + - uid: 304 components: - type: Transform pos: -0.5,23.5 parent: 1 - - uid: 304 + - uid: 305 components: - type: Transform pos: -0.5,24.5 parent: 1 - - uid: 305 + - uid: 306 components: - type: Transform pos: -0.5,25.5 parent: 1 - - uid: 306 + - uid: 307 components: - type: Transform pos: -0.5,26.5 parent: 1 - - uid: 307 + - uid: 308 components: - type: Transform pos: -0.5,27.5 parent: 1 - - uid: 308 + - uid: 309 components: - type: Transform pos: -0.5,28.5 parent: 1 - - uid: 309 + - uid: 310 components: - type: Transform pos: -1.5,28.5 parent: 1 - - uid: 310 + - uid: 311 components: - type: Transform pos: -2.5,28.5 parent: 1 - - uid: 311 + - uid: 312 components: - type: Transform pos: -3.5,28.5 parent: 1 - - uid: 312 + - uid: 313 components: - type: Transform pos: -3.5,27.5 parent: 1 - - uid: 313 + - uid: 314 components: - type: Transform pos: -3.5,26.5 parent: 1 - - uid: 314 + - uid: 315 components: - type: Transform pos: -3.5,25.5 parent: 1 - - uid: 315 + - uid: 316 components: - type: Transform pos: -3.5,24.5 parent: 1 - - uid: 316 + - uid: 317 components: - type: Transform pos: -3.5,23.5 parent: 1 - - uid: 317 + - uid: 318 components: - type: Transform pos: -3.5,22.5 parent: 1 - - uid: 318 + - uid: 319 components: - type: Transform pos: -3.5,21.5 parent: 1 - - uid: 319 + - uid: 320 components: - type: Transform pos: -3.5,20.5 parent: 1 - - uid: 320 + - uid: 321 components: - type: Transform pos: -2.5,20.5 parent: 1 - - uid: 321 + - uid: 322 components: - type: Transform pos: -1.5,20.5 parent: 1 - - uid: 322 + - uid: 323 components: - type: Transform pos: -2.5,19.5 parent: 1 - - uid: 323 + - uid: 324 components: - type: Transform pos: -2.5,18.5 parent: 1 - - uid: 324 + - uid: 325 components: - type: Transform pos: -2.5,17.5 parent: 1 - - uid: 325 + - uid: 326 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 326 + - uid: 327 components: - type: Transform pos: -2.5,15.5 parent: 1 - - uid: 327 + - uid: 328 components: - type: Transform pos: -2.5,14.5 parent: 1 - - uid: 328 + - uid: 329 components: - type: Transform pos: -1.5,14.5 parent: 1 - - uid: 329 + - uid: 330 components: - type: Transform pos: -3.5,16.5 parent: 1 - - uid: 330 + - uid: 331 components: - type: Transform pos: -1.5,16.5 parent: 1 - - uid: 331 + - uid: 332 components: - type: Transform pos: -0.5,16.5 parent: 1 - - uid: 332 + - uid: 333 components: - type: Transform pos: 0.5,16.5 parent: 1 - - uid: 333 + - uid: 334 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 334 + - uid: 335 components: - type: Transform pos: 2.5,16.5 parent: 1 - - uid: 335 + - uid: 336 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 336 + - uid: 337 components: - type: Transform pos: 4.5,16.5 parent: 1 - - uid: 337 + - uid: 338 components: - type: Transform pos: 4.5,17.5 parent: 1 - - uid: 338 + - uid: 339 components: - type: Transform pos: 4.5,18.5 parent: 1 - - uid: 339 + - uid: 340 components: - type: Transform pos: 3.5,18.5 parent: 1 - - uid: 340 + - uid: 341 components: - type: Transform pos: 2.5,18.5 parent: 1 - - uid: 341 + - uid: 342 components: - type: Transform pos: 2.5,17.5 parent: 1 - - uid: 342 + - uid: 343 components: - type: Transform pos: 2.5,15.5 parent: 1 - - uid: 343 + - uid: 344 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 344 + - uid: 345 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 345 + - uid: 346 components: - type: Transform pos: 4.5,14.5 parent: 1 - - uid: 346 + - uid: 347 components: - type: Transform pos: 4.5,15.5 parent: 1 - - uid: 347 + - uid: 348 components: - type: Transform pos: 0.5,20.5 parent: 1 - - uid: 348 + - uid: 349 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 349 + - uid: 350 components: - type: Transform pos: 2.5,20.5 parent: 1 - - uid: 350 + - uid: 351 components: - type: Transform pos: 3.5,20.5 parent: 1 - - uid: 351 + - uid: 352 components: - type: Transform pos: 3.5,19.5 parent: 1 - - uid: 352 + - uid: 353 components: - type: Transform pos: 4.5,20.5 parent: 1 - - uid: 353 + - uid: 354 components: - type: Transform pos: 4.5,21.5 parent: 1 - - uid: 354 + - uid: 355 components: - type: Transform pos: 4.5,22.5 parent: 1 - - uid: 355 + - uid: 356 components: - type: Transform pos: 4.5,23.5 parent: 1 - - uid: 356 + - uid: 357 components: - type: Transform pos: 4.5,24.5 parent: 1 - - uid: 357 + - uid: 358 components: - type: Transform pos: 4.5,25.5 parent: 1 - - uid: 358 + - uid: 359 components: - type: Transform pos: 4.5,26.5 parent: 1 - - uid: 359 + - uid: 360 components: - type: Transform pos: 4.5,27.5 parent: 1 - - uid: 360 + - uid: 361 components: - type: Transform pos: 4.5,28.5 parent: 1 - - uid: 361 + - uid: 362 components: - type: Transform pos: 3.5,28.5 parent: 1 - - uid: 362 + - uid: 363 components: - type: Transform pos: 2.5,28.5 parent: 1 - - uid: 363 + - uid: 364 components: - type: Transform pos: 1.5,28.5 parent: 1 - - uid: 364 + - uid: 365 components: - type: Transform pos: 0.5,28.5 parent: 1 - - uid: 365 + - uid: 366 components: - type: Transform pos: 5.5,26.5 parent: 1 - - uid: 366 + - uid: 367 components: - type: Transform pos: 6.5,26.5 parent: 1 - - uid: 367 + - uid: 368 components: - type: Transform pos: 7.5,26.5 parent: 1 - - uid: 368 + - uid: 369 components: - type: Transform pos: 6.5,27.5 parent: 1 - - uid: 369 + - uid: 370 components: - type: Transform pos: 6.5,28.5 parent: 1 - - uid: 370 + - uid: 371 components: - type: Transform pos: 6.5,25.5 parent: 1 - - uid: 371 + - uid: 372 components: - type: Transform pos: 6.5,24.5 parent: 1 - - uid: 372 + - uid: 373 components: - type: Transform pos: 6.5,23.5 parent: 1 - - uid: 373 + - uid: 374 components: - type: Transform pos: 6.5,22.5 parent: 1 - - uid: 374 + - uid: 375 components: - type: Transform pos: 6.5,21.5 parent: 1 - - uid: 375 + - uid: 376 components: - type: Transform pos: 6.5,20.5 parent: 1 - - uid: 376 + - uid: 377 components: - type: Transform pos: 6.5,19.5 parent: 1 - - uid: 377 + - uid: 378 components: - type: Transform pos: 6.5,18.5 parent: 1 - - uid: 378 + - uid: 379 components: - type: Transform pos: 6.5,17.5 parent: 1 - - uid: 379 + - uid: 380 components: - type: Transform pos: 6.5,16.5 parent: 1 - - uid: 380 + - uid: 381 components: - type: Transform pos: 6.5,15.5 parent: 1 - - uid: 381 + - uid: 382 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 382 + - uid: 383 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 383 + - uid: 384 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 384 + - uid: 385 components: - type: Transform pos: 7.5,16.5 parent: 1 - - uid: 385 + - uid: 386 components: - type: Transform pos: 7.5,18.5 parent: 1 - - uid: 386 + - uid: 387 components: - type: Transform pos: 7.5,20.5 parent: 1 - - uid: 387 + - uid: 388 components: - type: Transform pos: 7.5,22.5 parent: 1 - - uid: 388 + - uid: 389 components: - type: Transform pos: 8.5,22.5 parent: 1 - - uid: 389 + - uid: 390 components: - type: Transform pos: 7.5,13.5 parent: 1 - - uid: 390 + - uid: 391 components: - type: Transform pos: 8.5,13.5 parent: 1 - - uid: 391 + - uid: 392 components: - type: Transform pos: -4.5,13.5 parent: 1 - - uid: 392 + - uid: 393 components: - type: Transform pos: -4.5,14.5 parent: 1 - - uid: 393 + - uid: 394 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 394 + - uid: 395 components: - type: Transform pos: -5.5,14.5 parent: 1 - - uid: 395 + - uid: 396 components: - type: Transform pos: -5.5,15.5 parent: 1 - - uid: 396 + - uid: 397 components: - type: Transform pos: -5.5,16.5 parent: 1 - - uid: 397 + - uid: 398 components: - type: Transform pos: -5.5,17.5 parent: 1 - - uid: 398 + - uid: 399 components: - type: Transform pos: -5.5,18.5 parent: 1 - - uid: 399 + - uid: 400 components: - type: Transform pos: -5.5,19.5 parent: 1 - - uid: 400 + - uid: 401 components: - type: Transform pos: -5.5,20.5 parent: 1 - - uid: 401 + - uid: 402 components: - type: Transform pos: -5.5,21.5 parent: 1 - - uid: 402 + - uid: 403 components: - type: Transform pos: -4.5,21.5 parent: 1 - - uid: 403 + - uid: 404 components: - type: Transform pos: -6.5,20.5 parent: 1 - - uid: 404 + - uid: 405 components: - type: Transform pos: -6.5,18.5 parent: 1 - - uid: 405 + - uid: 406 components: - type: Transform pos: -6.5,16.5 parent: 1 - - uid: 406 + - uid: 407 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 407 + - uid: 408 components: - type: Transform pos: -6.5,13.5 parent: 1 - - uid: 408 + - uid: 409 components: - type: Transform pos: -7.5,13.5 parent: 1 - - uid: 409 + - uid: 410 components: - type: Transform pos: -5.5,22.5 parent: 1 - - uid: 410 + - uid: 411 components: - type: Transform pos: -6.5,22.5 parent: 1 - - uid: 411 + - uid: 412 components: - type: Transform pos: -7.5,22.5 parent: 1 - - uid: 412 + - uid: 413 components: - type: Transform pos: -5.5,23.5 parent: 1 - - uid: 413 + - uid: 414 components: - type: Transform pos: -5.5,24.5 parent: 1 - - uid: 414 + - uid: 415 components: - type: Transform pos: -5.5,25.5 parent: 1 - - uid: 415 + - uid: 416 components: - type: Transform pos: -5.5,26.5 parent: 1 - - uid: 416 + - uid: 417 components: - type: Transform pos: -5.5,27.5 parent: 1 - - uid: 417 + - uid: 418 components: - type: Transform pos: -5.5,28.5 parent: 1 - - uid: 418 + - uid: 419 components: - type: Transform pos: -6.5,28.5 parent: 1 - - uid: 419 + - uid: 420 components: - type: Transform pos: -7.5,28.5 parent: 1 - - uid: 420 + - uid: 421 components: - type: Transform pos: -7.5,27.5 parent: 1 - - uid: 421 + - uid: 422 components: - type: Transform pos: -7.5,26.5 parent: 1 - - uid: 422 + - uid: 423 components: - type: Transform pos: -7.5,25.5 parent: 1 - - uid: 423 + - uid: 424 components: - type: Transform pos: -7.5,24.5 parent: 1 - - uid: 424 + - uid: 425 components: - type: Transform pos: -7.5,23.5 parent: 1 - - uid: 425 + - uid: 426 components: - type: Transform pos: -4.5,26.5 parent: 1 - - uid: 426 + - uid: 427 components: - type: Transform pos: -3.5,26.5 parent: 1 - - uid: 427 + - uid: 428 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 428 + - uid: 429 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 429 + - uid: 430 components: - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 430 + - uid: 431 components: - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 431 + - uid: 432 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 432 + - uid: 433 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 433 + - uid: 434 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 434 + - uid: 435 components: - type: Transform pos: -0.5,8.5 parent: 1 - - uid: 435 + - uid: 436 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 436 + - uid: 437 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 437 + - uid: 438 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 438 + - uid: 439 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 439 + - uid: 440 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 440 + - uid: 441 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 441 + - uid: 442 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 442 + - uid: 443 components: - type: Transform pos: 6.5,7.5 parent: 1 - - uid: 443 + - uid: 444 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 444 + - uid: 445 components: - type: Transform pos: 6.5,9.5 parent: 1 - - uid: 445 + - uid: 446 components: - type: Transform pos: 6.5,10.5 parent: 1 - - uid: 446 + - uid: 447 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 447 + - uid: 448 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 448 + - uid: 449 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 449 + - uid: 450 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 450 + - uid: 451 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 451 + - uid: 452 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 452 + - uid: 453 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 453 + - uid: 454 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 454 + - uid: 455 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 455 + - uid: 456 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 456 + - uid: 457 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 457 + - uid: 458 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 458 + - uid: 459 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 459 + - uid: 460 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 460 + - uid: 461 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 461 + - uid: 462 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 462 + - uid: 463 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 463 + - uid: 464 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 464 + - uid: 465 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 465 + - uid: 466 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 466 + - uid: 467 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 467 + - uid: 468 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 468 + - uid: 469 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 469 + - uid: 470 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 470 + - uid: 471 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 471 + - uid: 472 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 472 + - uid: 473 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 473 + - uid: 474 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 474 + - uid: 475 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 475 + - uid: 476 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 476 + - uid: 477 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 477 + - uid: 478 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 478 + - uid: 479 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 479 + - uid: 480 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 480 + - uid: 481 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 481 + - uid: 482 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 482 + - uid: 483 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 483 + - uid: 484 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 484 + - uid: 485 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 485 + - uid: 486 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 486 + - uid: 487 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 487 + - uid: 488 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 488 + - uid: 489 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 489 + - uid: 490 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 490 + - uid: 491 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 491 + - uid: 492 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 492 + - uid: 493 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 493 + - uid: 494 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 494 + - uid: 495 components: - type: Transform pos: 6.5,-5.5 parent: 1 - - uid: 495 + - uid: 496 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 496 + - uid: 497 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 497 + - uid: 498 components: - type: Transform pos: 6.5,-2.5 parent: 1 - - uid: 498 + - uid: 499 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 499 + - uid: 500 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 500 + - uid: 501 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 501 + - uid: 502 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 502 + - uid: 503 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 503 + - uid: 504 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 504 + - uid: 505 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 505 + - uid: 506 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 506 + - uid: 507 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 507 + - uid: 508 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 508 + - uid: 509 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 509 + - uid: 510 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 510 + - uid: 511 components: - type: Transform pos: -3.5,-14.5 parent: 1 - - uid: 511 + - uid: 512 components: - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 512 + - uid: 513 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 513 + - uid: 514 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 514 + - uid: 515 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 515 + - uid: 516 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 516 + - uid: 517 components: - type: Transform pos: -6.5,-11.5 parent: 1 - - uid: 517 + - uid: 518 components: - type: Transform pos: -7.5,-11.5 parent: 1 - - uid: 518 + - uid: 519 components: - type: Transform pos: -8.5,-11.5 parent: 1 - - uid: 519 + - uid: 520 components: - type: Transform pos: -9.5,-11.5 parent: 1 - - uid: 520 + - uid: 521 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 521 + - uid: 522 components: - type: Transform pos: -8.5,-9.5 parent: 1 - - uid: 522 + - uid: 523 components: - type: Transform pos: -8.5,-13.5 parent: 1 - - uid: 523 + - uid: 524 components: - type: Transform pos: -9.5,-13.5 parent: 1 - - uid: 524 + - uid: 525 components: - type: Transform pos: -10.5,-13.5 parent: 1 - - uid: 525 + - uid: 526 components: - type: Transform pos: -10.5,-14.5 parent: 1 - - uid: 526 + - uid: 527 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 527 + - uid: 528 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 528 + - uid: 529 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 529 + - uid: 530 components: - type: Transform pos: -9.5,-8.5 parent: 1 - - uid: 530 + - uid: 531 components: - type: Transform pos: -9.5,-7.5 parent: 1 - - uid: 531 + - uid: 532 components: - type: Transform pos: -8.5,-7.5 parent: 1 - - uid: 532 + - uid: 533 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 533 + - uid: 534 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 534 + - uid: 535 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 535 + - uid: 536 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 536 + - uid: 537 components: - type: Transform pos: -1.5,-13.5 parent: 1 - - uid: 537 + - uid: 538 components: - type: Transform pos: -2.5,-12.5 parent: 1 - - uid: 538 + - uid: 539 components: - type: Transform pos: -2.5,-11.5 parent: 1 - - uid: 539 + - uid: 540 components: - type: Transform pos: -2.5,-10.5 parent: 1 - - uid: 540 + - uid: 541 components: - type: Transform pos: -2.5,-9.5 parent: 1 - - uid: 541 + - uid: 542 components: - type: Transform pos: -2.5,-8.5 parent: 1 - - uid: 542 + - uid: 543 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 543 + - uid: 544 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 544 + - uid: 545 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 545 + - uid: 546 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 546 + - uid: 547 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 547 + - uid: 548 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 548 + - uid: 549 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 549 + - uid: 550 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 550 + - uid: 551 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 551 + - uid: 552 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 552 + - uid: 553 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 553 + - uid: 554 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 554 + - uid: 555 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 555 + - uid: 556 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 556 + - uid: 557 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 557 + - uid: 558 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 558 + - uid: 559 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 559 + - uid: 560 components: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 560 + - uid: 561 components: - type: Transform pos: 0.5,-7.5 parent: 1 - - uid: 561 + - uid: 562 components: - type: Transform pos: 0.5,-8.5 parent: 1 - - uid: 562 + - uid: 563 components: - type: Transform pos: 0.5,-9.5 parent: 1 - - uid: 563 + - uid: 564 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 564 + - uid: 565 components: - type: Transform pos: -0.5,-9.5 parent: 1 - - uid: 565 + - uid: 566 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 566 + - uid: 567 components: - type: Transform pos: 1.5,-6.5 parent: 1 - - uid: 567 + - uid: 568 components: - type: Transform pos: 2.5,-6.5 parent: 1 - - uid: 568 + - uid: 569 components: - type: Transform pos: 3.5,-6.5 parent: 1 - - uid: 569 + - uid: 570 components: - type: Transform pos: -0.5,-6.5 parent: 1 - - uid: 570 + - uid: 571 components: - type: Transform pos: -1.5,-6.5 parent: 1 - - uid: 571 + - uid: 572 components: - type: Transform pos: -2.5,-6.5 parent: 1 - - uid: 572 + - uid: 573 components: - type: Transform pos: -1.5,-5.5 parent: 1 - - uid: 573 + - uid: 574 components: - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 574 + - uid: 575 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 575 + - uid: 576 components: - type: Transform pos: -1.5,-2.5 parent: 1 - - uid: 576 + - uid: 577 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 577 + - uid: 578 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 578 + - uid: 579 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 579 + - uid: 580 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 580 + - uid: 581 components: - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 581 + - uid: 582 components: - type: Transform pos: 2.5,-5.5 parent: 1 - - uid: 582 + - uid: 583 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 583 + - uid: 584 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 584 + - uid: 585 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 585 + - uid: 586 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 586 + - uid: 587 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 587 + - uid: 588 components: - type: Transform pos: 4.5,-13.5 parent: 1 - - uid: 588 + - uid: 589 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 589 + - uid: 590 components: - type: Transform pos: 6.5,-13.5 parent: 1 - - uid: 590 + - uid: 591 components: - type: Transform pos: 7.5,-13.5 parent: 1 - - uid: 591 + - uid: 592 components: - type: Transform pos: 7.5,-12.5 parent: 1 - - uid: 592 + - uid: 593 components: - type: Transform pos: 7.5,-11.5 parent: 1 - - uid: 593 + - uid: 594 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 594 + - uid: 595 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 595 + - uid: 596 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 596 + - uid: 597 components: - type: Transform pos: 5.5,-12.5 parent: 1 - - uid: 597 + - uid: 598 components: - type: Transform pos: 5.5,-11.5 parent: 1 - - uid: 598 + - uid: 599 components: - type: Transform pos: 5.5,-10.5 parent: 1 - - uid: 599 + - uid: 600 components: - type: Transform pos: 5.5,-9.5 parent: 1 - - uid: 600 + - uid: 601 components: - type: Transform pos: 5.5,-8.5 parent: 1 - - uid: 601 + - uid: 602 components: - type: Transform pos: -11.5,-9.5 parent: 1 - - uid: 602 + - uid: 603 components: - type: Transform pos: -11.5,-10.5 parent: 1 - - uid: 603 + - uid: 604 components: - type: Transform pos: -11.5,-11.5 parent: 1 - - uid: 604 + - uid: 605 components: - type: Transform pos: -11.5,-12.5 parent: 1 - - uid: 605 + - uid: 606 components: - type: Transform pos: -11.5,-13.5 parent: 1 - - uid: 606 + - uid: 607 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 607 + - uid: 608 components: - type: Transform pos: -4.5,-14.5 parent: 1 - - uid: 608 + - uid: 609 components: - type: Transform pos: -4.5,-15.5 parent: 1 - - uid: 609 + - uid: 610 components: - type: Transform pos: -4.5,-16.5 parent: 1 - - uid: 610 + - uid: 611 components: - type: Transform pos: -5.5,-15.5 parent: 1 - - uid: 611 + - uid: 612 components: - type: Transform pos: -3.5,-15.5 parent: 1 - - uid: 612 + - uid: 613 components: - type: Transform pos: -2.5,-15.5 parent: 1 - - uid: 613 + - uid: 614 components: - type: Transform pos: -1.5,-15.5 parent: 1 - - uid: 614 + - uid: 615 components: - type: Transform pos: -1.5,-16.5 parent: 1 - - uid: 615 + - uid: 616 components: - type: Transform pos: -4.5,-17.5 parent: 1 - - uid: 616 + - uid: 617 components: - type: Transform pos: -4.5,-18.5 parent: 1 - - uid: 617 + - uid: 618 components: - type: Transform pos: -5.5,-18.5 parent: 1 - - uid: 618 + - uid: 619 components: - type: Transform pos: -6.5,-18.5 parent: 1 - - uid: 619 + - uid: 620 components: - type: Transform pos: -3.5,-18.5 parent: 1 - - uid: 620 + - uid: 621 components: - type: Transform pos: -7.5,-18.5 parent: 1 - - uid: 621 + - uid: 622 components: - type: Transform pos: -7.5,-19.5 parent: 1 - - uid: 622 + - uid: 623 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 623 + - uid: 624 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 624 + - uid: 625 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 625 + - uid: 626 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 626 + - uid: 627 components: - type: Transform pos: 0.5,-14.5 parent: 1 - - uid: 627 + - uid: 628 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 628 + - uid: 629 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 629 + - uid: 630 components: - type: Transform pos: 0.5,-17.5 parent: 1 - - uid: 630 + - uid: 631 components: - type: Transform pos: 0.5,-18.5 parent: 1 - - uid: 631 + - uid: 632 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - uid: 632 + - uid: 633 components: - type: Transform pos: 0.5,-20.5 parent: 1 - - uid: 633 + - uid: 634 components: - type: Transform pos: -0.5,-19.5 parent: 1 - - uid: 634 + - uid: 635 components: - type: Transform pos: -1.5,-19.5 parent: 1 - - uid: 635 + - uid: 636 components: - type: Transform pos: 1.5,-19.5 parent: 1 - - uid: 636 + - uid: 637 components: - type: Transform pos: 2.5,-19.5 parent: 1 - - uid: 637 + - uid: 638 components: - type: Transform pos: 3.5,-19.5 parent: 1 - - uid: 638 + - uid: 639 components: - type: Transform pos: 3.5,-18.5 parent: 1 - - uid: 639 + - uid: 640 components: - type: Transform pos: 4.5,-18.5 parent: 1 - - uid: 640 + - uid: 641 components: - type: Transform pos: 5.5,-18.5 parent: 1 - - uid: 641 + - uid: 642 components: - type: Transform pos: 6.5,-18.5 parent: 1 - - uid: 642 + - uid: 643 components: - type: Transform pos: 7.5,-18.5 parent: 1 - - uid: 643 + - uid: 644 components: - type: Transform pos: 8.5,-18.5 parent: 1 - - uid: 644 + - uid: 645 components: - type: Transform pos: 8.5,-19.5 parent: 1 - - uid: 645 + - uid: 646 components: - type: Transform pos: 8.5,-11.5 parent: 1 - - uid: 646 + - uid: 647 components: - type: Transform pos: 9.5,-11.5 parent: 1 - - uid: 647 + - uid: 648 components: - type: Transform pos: 10.5,-11.5 parent: 1 - - uid: 648 + - uid: 649 components: - type: Transform pos: 9.5,-10.5 parent: 1 - - uid: 649 + - uid: 650 components: - type: Transform pos: 9.5,-9.5 parent: 1 - - uid: 650 + - uid: 651 components: - type: Transform pos: 9.5,-13.5 parent: 1 - - uid: 651 + - uid: 652 components: - type: Transform pos: 9.5,-8.5 parent: 1 - - uid: 652 + - uid: 653 components: - type: Transform pos: 10.5,-8.5 parent: 1 - - uid: 653 + - uid: 654 components: - type: Transform pos: 10.5,-7.5 parent: 1 - - uid: 654 + - uid: 655 components: - type: Transform pos: 9.5,-7.5 parent: 1 - - uid: 655 + - uid: 656 components: - type: Transform pos: 9.5,-12.5 parent: 1 - - uid: 656 + - uid: 657 components: - type: Transform pos: 9.5,-13.5 parent: 1 - - uid: 657 + - uid: 658 components: - type: Transform pos: 10.5,-13.5 parent: 1 - - uid: 658 + - uid: 659 components: - type: Transform pos: 11.5,-13.5 parent: 1 - - uid: 659 + - uid: 660 components: - type: Transform pos: 12.5,-13.5 parent: 1 - - uid: 660 + - uid: 661 components: - type: Transform pos: 12.5,-12.5 parent: 1 - - uid: 661 + - uid: 662 components: - type: Transform pos: 12.5,-11.5 parent: 1 - - uid: 662 + - uid: 663 components: - type: Transform pos: 12.5,-10.5 parent: 1 - - uid: 663 + - uid: 664 components: - type: Transform pos: 12.5,-14.5 parent: 1 - - uid: 664 + - uid: 665 components: - type: Transform pos: 12.5,-13.5 parent: 1 - - uid: 665 + - uid: 666 components: - type: Transform pos: 11.5,-14.5 parent: 1 - - uid: 666 + - uid: 667 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 667 + - uid: 668 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 668 + - uid: 669 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 669 + - uid: 670 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 670 + - uid: 671 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 671 + - uid: 672 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 672 + - uid: 673 components: - type: Transform pos: -5.5,9.5 parent: 1 - - uid: 673 + - uid: 674 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 674 + - uid: 675 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 675 + - uid: 676 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 676 + - uid: 677 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 677 + - uid: 678 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 678 + - uid: 679 components: - type: Transform pos: 3.5,-14.5 parent: 1 - - uid: 679 + - uid: 680 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 680 + - uid: 681 components: - type: Transform pos: 3.5,-14.5 parent: 1 - - uid: 681 + - uid: 682 components: - type: Transform pos: 4.5,-13.5 parent: 1 - - uid: 682 + - uid: 683 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 683 + - uid: 684 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 684 + - uid: 685 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 685 + - uid: 686 components: - type: Transform pos: 3.5,-14.5 parent: 1 - - uid: 686 + - uid: 687 components: - type: Transform pos: 2.5,-14.5 parent: 1 - - uid: 687 + - uid: 688 components: - type: Transform pos: 4.5,-14.5 parent: 1 - proto: CableHV entities: - - uid: 688 + - uid: 689 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 689 + - uid: 690 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 690 + - uid: 691 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 691 + - uid: 692 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 692 + - uid: 693 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 693 + - uid: 694 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 694 + - uid: 695 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 695 + - uid: 696 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 696 + - uid: 697 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 697 + - uid: 698 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 698 + - uid: 699 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 699 + - uid: 700 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 700 + - uid: 701 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 701 + - uid: 702 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 702 + - uid: 703 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 703 + - uid: 704 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 704 + - uid: 705 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 705 + - uid: 706 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 706 + - uid: 707 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 707 + - uid: 708 components: - type: Transform pos: 3.5,-12.5 parent: 1 - - uid: 708 + - uid: 709 components: - type: Transform pos: 5.5,-12.5 parent: 1 - - uid: 709 + - uid: 710 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 710 + - uid: 711 components: - type: Transform pos: 4.5,-12.5 parent: 1 - - uid: 711 + - uid: 712 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 712 + - uid: 713 components: - type: Transform pos: 5.5,-15.5 parent: 1 - - uid: 713 + - uid: 714 components: - type: Transform pos: 4.5,-15.5 parent: 1 - - uid: 714 + - uid: 715 components: - type: Transform pos: 5.5,-16.5 parent: 1 - - uid: 715 + - uid: 716 components: - type: Transform pos: 3.5,-15.5 parent: 1 - - uid: 716 + - uid: 717 components: - type: Transform pos: 2.5,-15.5 parent: 1 - - uid: 717 + - uid: 718 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 718 + - uid: 719 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 719 + - uid: 720 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 720 + - uid: 721 components: - type: Transform pos: 6.5,-15.5 parent: 1 - - uid: 721 + - uid: 722 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 722 + - uid: 723 components: - type: Transform pos: 7.5,-16.5 parent: 1 - - uid: 723 + - uid: 724 components: - type: Transform pos: 6.5,-13.5 parent: 1 - - uid: 724 + - uid: 725 components: - type: Transform pos: 7.5,-13.5 parent: 1 - - uid: 725 + - uid: 726 components: - type: Transform pos: 7.5,-12.5 parent: 1 - - uid: 726 + - uid: 727 components: - type: Transform pos: 7.5,-11.5 parent: 1 - - uid: 727 + - uid: 728 components: - type: Transform pos: 8.5,-11.5 parent: 1 - - uid: 728 + - uid: 729 components: - type: Transform pos: 9.5,-11.5 parent: 1 - - uid: 729 + - uid: 730 components: - type: Transform pos: 10.5,-11.5 parent: 1 - - uid: 730 + - uid: 731 components: - type: Transform pos: 10.5,-10.5 parent: 1 - - uid: 731 + - uid: 732 components: - type: Transform pos: 10.5,-12.5 parent: 1 - - uid: 732 + - uid: 733 components: - type: Transform pos: 9.5,-10.5 parent: 1 - - uid: 733 + - uid: 734 components: - type: Transform pos: 9.5,-12.5 parent: 1 - - uid: 734 + - uid: 735 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 735 + - uid: 736 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 736 + - uid: 737 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 737 + - uid: 738 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 738 + - uid: 739 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 739 + - uid: 740 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 740 + - uid: 741 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 741 + - uid: 742 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 742 + - uid: 743 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 743 + - uid: 744 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 744 + - uid: 745 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 745 + - uid: 746 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 746 + - uid: 747 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 747 + - uid: 748 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 748 + - uid: 749 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 749 + - uid: 750 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 750 + - uid: 751 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 751 + - uid: 752 components: - type: Transform pos: -1.5,-13.5 parent: 1 - - uid: 752 + - uid: 753 components: - type: Transform pos: -0.5,-13.5 parent: 1 - - uid: 753 + - uid: 754 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 754 + - uid: 755 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 755 + - uid: 756 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 756 + - uid: 757 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 757 + - uid: 758 components: - type: Transform pos: 4.5,-13.5 parent: 1 - - uid: 758 + - uid: 759 components: - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 759 + - uid: 760 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 760 + - uid: 761 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 761 + - uid: 762 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 762 + - uid: 763 components: - type: Transform pos: 7.5,-7.5 parent: 1 - - uid: 763 + - uid: 764 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 764 + - uid: 765 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 765 + - uid: 766 components: - type: Transform pos: 6.5,-5.5 parent: 1 - - uid: 766 + - uid: 767 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 767 + - uid: 768 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 768 + - uid: 769 components: - type: Transform pos: 6.5,-2.5 parent: 1 - - uid: 769 + - uid: 770 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 770 + - uid: 771 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 771 + - uid: 772 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 772 + - uid: 773 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 773 + - uid: 774 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 774 + - uid: 775 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 775 + - uid: 776 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 776 + - uid: 777 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 777 + - uid: 778 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 778 + - uid: 779 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 779 + - uid: 780 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 780 + - uid: 781 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 781 + - uid: 782 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 782 + - uid: 783 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 783 + - uid: 784 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 784 + - uid: 785 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 785 + - uid: 786 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 786 + - uid: 787 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 787 + - uid: 788 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 788 + - uid: 789 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 789 + - uid: 790 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 790 + - uid: 791 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 791 + - uid: 792 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 792 + - uid: 793 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 793 + - uid: 794 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 794 + - uid: 795 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 795 + - uid: 796 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 796 + - uid: 797 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 797 + - uid: 798 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 798 + - uid: 799 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 799 + - uid: 800 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 800 + - uid: 801 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 801 + - uid: 802 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 802 + - uid: 803 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 803 + - uid: 804 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 804 + - uid: 805 components: - type: Transform pos: -4.5,5.5 parent: 1 - proto: CableMV entities: - - uid: 805 + - uid: 806 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 806 + - uid: 807 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 807 + - uid: 808 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 808 + - uid: 809 components: - type: Transform pos: 2.5,-15.5 parent: 1 - - uid: 809 + - uid: 810 components: - type: Transform pos: 3.5,-15.5 parent: 1 - - uid: 810 + - uid: 811 components: - type: Transform pos: 4.5,-15.5 parent: 1 - - uid: 811 + - uid: 812 components: - type: Transform pos: 5.5,-15.5 parent: 1 - - uid: 812 + - uid: 813 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 813 + - uid: 814 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 814 + - uid: 815 components: - type: Transform pos: 4.5,-13.5 parent: 1 - - uid: 815 + - uid: 816 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 816 + - uid: 817 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 817 + - uid: 818 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 818 + - uid: 819 components: - type: Transform pos: 0.5,-14.5 parent: 1 - - uid: 819 + - uid: 820 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 820 + - uid: 821 components: - type: Transform pos: -0.5,-13.5 parent: 1 - - uid: 821 + - uid: 822 components: - type: Transform pos: -1.5,-13.5 parent: 1 - - uid: 822 + - uid: 823 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 823 + - uid: 824 components: - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 824 + - uid: 825 components: - type: Transform pos: -3.5,-14.5 parent: 1 - - uid: 825 + - uid: 826 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 826 + - uid: 827 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 827 + - uid: 828 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 828 + - uid: 829 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 829 + - uid: 830 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 830 + - uid: 831 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 831 + - uid: 832 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 832 + - uid: 833 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 833 + - uid: 834 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 834 + - uid: 835 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 835 + - uid: 836 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 836 + - uid: 837 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 837 + - uid: 838 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 838 + - uid: 839 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 839 + - uid: 840 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 840 + - uid: 841 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 841 + - uid: 842 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 842 + - uid: 843 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 843 + - uid: 844 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 844 + - uid: 845 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 845 + - uid: 846 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 846 + - uid: 847 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 847 + - uid: 848 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 848 + - uid: 849 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 849 + - uid: 850 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 850 + - uid: 851 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 851 + - uid: 852 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 852 + - uid: 853 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 853 + - uid: 854 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 854 + - uid: 855 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 855 + - uid: 856 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 856 + - uid: 857 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 857 + - uid: 858 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 858 + - uid: 859 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 859 + - uid: 860 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 860 + - uid: 861 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 861 + - uid: 862 components: - type: Transform pos: 6.5,-2.5 parent: 1 - - uid: 862 + - uid: 863 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 863 + - uid: 864 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 864 + - uid: 865 components: - type: Transform pos: 6.5,-5.5 parent: 1 - - uid: 865 + - uid: 866 components: - type: Transform pos: 6.5,-6.5 parent: 1 - - uid: 866 + - uid: 867 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 867 + - uid: 868 components: - type: Transform pos: 7.5,-7.5 parent: 1 - - uid: 868 + - uid: 869 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 869 + - uid: 870 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 870 + - uid: 871 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 871 + - uid: 872 components: - type: Transform pos: 7.5,-11.5 parent: 1 - - uid: 872 + - uid: 873 components: - type: Transform pos: 7.5,-12.5 parent: 1 - - uid: 873 + - uid: 874 components: - type: Transform pos: 7.5,-13.5 parent: 1 - - uid: 874 + - uid: 875 components: - type: Transform pos: 6.5,-13.5 parent: 1 - - uid: 875 + - uid: 876 components: - type: Transform pos: -4.5,-3.5 parent: 1 - - uid: 876 + - uid: 877 components: - type: Transform pos: -3.5,-3.5 parent: 1 - - uid: 877 + - uid: 878 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 878 + - uid: 879 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 879 + - uid: 880 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 880 + - uid: 881 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 881 + - uid: 882 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 882 + - uid: 883 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 883 + - uid: 884 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 884 + - uid: 885 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 885 + - uid: 886 components: - type: Transform pos: 5.5,-3.5 parent: 1 - - uid: 886 + - uid: 887 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 887 + - uid: 888 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 888 + - uid: 889 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 889 + - uid: 890 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 890 + - uid: 891 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 891 + - uid: 892 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 892 + - uid: 893 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 893 + - uid: 894 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 894 + - uid: 895 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 895 + - uid: 896 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 896 + - uid: 897 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 897 + - uid: 898 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 898 + - uid: 899 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 899 + - uid: 900 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 900 + - uid: 901 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 901 + - uid: 902 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 902 + - uid: 903 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 903 + - uid: 904 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 904 + - uid: 905 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 905 + - uid: 906 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 906 + - uid: 907 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 907 + - uid: 908 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 908 + - uid: 909 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 909 + - uid: 910 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 910 + - uid: 911 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 911 + - uid: 912 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 912 + - uid: 913 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 913 + - uid: 914 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 914 + - uid: 915 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 915 + - uid: 916 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 916 + - uid: 917 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 917 + - uid: 918 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 918 + - uid: 919 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 919 + - uid: 920 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 920 + - uid: 921 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 921 + - uid: 922 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 922 + - uid: 923 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 923 + - uid: 924 components: - type: Transform pos: 0.5,13.5 parent: 1 - - uid: 924 + - uid: 925 components: - type: Transform pos: 0.5,14.5 parent: 1 - - uid: 925 + - uid: 926 components: - type: Transform pos: 0.5,15.5 parent: 1 - - uid: 926 + - uid: 927 components: - type: Transform pos: 0.5,16.5 parent: 1 - - uid: 927 + - uid: 928 components: - type: Transform pos: 0.5,17.5 parent: 1 - - uid: 928 + - uid: 929 components: - type: Transform pos: 0.5,18.5 parent: 1 - - uid: 929 + - uid: 930 components: - type: Transform pos: 0.5,19.5 parent: 1 - - uid: 930 + - uid: 931 components: - type: Transform pos: 0.5,20.5 parent: 1 - - uid: 931 + - uid: 932 components: - type: Transform pos: -0.5,19.5 parent: 1 - - uid: 932 + - uid: 933 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 933 + - uid: 934 components: - type: Transform pos: 2.5,20.5 parent: 1 - - uid: 934 + - uid: 935 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 935 + - uid: 936 components: - type: Transform pos: 1.5,22.5 parent: 1 - - uid: 936 + - uid: 937 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 937 + - uid: 938 components: - type: Transform pos: 1.5,24.5 parent: 1 - - uid: 938 + - uid: 939 components: - type: Transform pos: 1.5,25.5 parent: 1 - - uid: 939 + - uid: 940 components: - type: Transform pos: 1.5,26.5 parent: 1 - - uid: 940 + - uid: 941 components: - type: Transform pos: 1.5,27.5 parent: 1 - - uid: 941 + - uid: 942 components: - type: Transform pos: 1.5,28.5 parent: 1 - - uid: 942 + - uid: 943 components: - type: Transform pos: 1.5,29.5 parent: 1 - - uid: 943 + - uid: 944 components: - type: Transform pos: 1.5,30.5 parent: 1 - - uid: 944 + - uid: 945 components: - type: Transform pos: 1.5,31.5 parent: 1 - - uid: 945 + - uid: 946 components: - type: Transform pos: 1.5,32.5 parent: 1 - - uid: 946 + - uid: 947 components: - type: Transform pos: 2.5,32.5 parent: 1 - - uid: 947 + - uid: 948 components: - type: Transform pos: 3.5,32.5 parent: 1 - - uid: 948 + - uid: 949 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 949 + - uid: 950 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 950 + - uid: 951 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 951 + - uid: 952 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 952 + - uid: 953 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 953 + - uid: 954 components: - type: Transform pos: 3.5,-14.5 @@ -11118,643 +11366,643 @@ entities: angularDamping: 0 linearDamping: 0 canCollide: False - - uid: 954 + - uid: 955 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.9289885,30.44183 parent: 1 - - uid: 955 + - uid: 956 components: - type: Transform pos: 2.1747465,30.236162 parent: 1 - - uid: 956 + - uid: 957 components: - type: Transform pos: 2.2158842,30.428118 parent: 1 - - uid: 957 + - uid: 958 components: - type: Transform pos: 2.1747465,30.866877 parent: 1 - - uid: 958 + - uid: 959 components: - type: Transform pos: 2.2021704,30.688631 parent: 1 - proto: Catwalk entities: - - uid: 959 + - uid: 960 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,22.5 parent: 1 - - uid: 960 + - uid: 961 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 961 + - uid: 962 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 962 + - uid: 963 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-2.5 parent: 1 - - uid: 963 + - uid: 964 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-1.5 parent: 1 - - uid: 964 + - uid: 965 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 965 + - uid: 966 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 1 - - uid: 966 + - uid: 967 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 1 - - uid: 967 + - uid: 968 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 1 - - uid: 968 + - uid: 969 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-1.5 parent: 1 - - uid: 969 + - uid: 970 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 970 + - uid: 971 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-2.5 parent: 1 - - uid: 971 + - uid: 972 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,0.5 parent: 1 - - uid: 972 + - uid: 973 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-1.5 parent: 1 - - uid: 973 + - uid: 974 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,17.5 parent: 1 - - uid: 974 + - uid: 975 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,19.5 parent: 1 - - uid: 975 + - uid: 976 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,17.5 parent: 1 - - uid: 976 + - uid: 977 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,19.5 parent: 1 - - uid: 977 + - uid: 978 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,1.5 parent: 1 - - uid: 978 + - uid: 979 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 1 - - uid: 979 + - uid: 980 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 1 - - uid: 980 + - uid: 981 components: - type: Transform pos: -0.5,34.5 parent: 1 - - uid: 981 + - uid: 982 components: - type: Transform pos: -5.5,20.5 parent: 1 - - uid: 982 + - uid: 983 components: - type: Transform pos: -5.5,19.5 parent: 1 - - uid: 983 + - uid: 984 components: - type: Transform pos: -5.5,18.5 parent: 1 - - uid: 984 + - uid: 985 components: - type: Transform pos: -5.5,17.5 parent: 1 - - uid: 985 + - uid: 986 components: - type: Transform pos: -5.5,16.5 parent: 1 - - uid: 986 + - uid: 987 components: - type: Transform pos: 6.5,16.5 parent: 1 - - uid: 987 + - uid: 988 components: - type: Transform pos: 6.5,17.5 parent: 1 - - uid: 988 + - uid: 989 components: - type: Transform pos: 6.5,18.5 parent: 1 - - uid: 989 + - uid: 990 components: - type: Transform pos: 6.5,19.5 parent: 1 - - uid: 990 + - uid: 991 components: - type: Transform pos: 6.5,20.5 parent: 1 - - uid: 991 + - uid: 992 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 1 - - uid: 992 + - uid: 993 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - - uid: 993 + - uid: 994 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,16.5 parent: 1 - - uid: 994 + - uid: 995 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,14.5 parent: 1 - - uid: 995 + - uid: 996 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,15.5 parent: 1 - - uid: 996 + - uid: 997 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,18.5 parent: 1 - - uid: 997 + - uid: 998 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,17.5 parent: 1 - - uid: 998 + - uid: 999 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,12.5 parent: 1 - - uid: 999 + - uid: 1000 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 - - uid: 1000 + - uid: 1001 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,12.5 parent: 1 - - uid: 1001 + - uid: 1002 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,12.5 parent: 1 - - uid: 1002 + - uid: 1003 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,11.5 parent: 1 - - uid: 1003 + - uid: 1004 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,10.5 parent: 1 - - uid: 1004 + - uid: 1005 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,9.5 parent: 1 - - uid: 1005 + - uid: 1006 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,8.5 parent: 1 - - uid: 1006 + - uid: 1007 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,7.5 parent: 1 - - uid: 1007 + - uid: 1008 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,6.5 parent: 1 - - uid: 1008 + - uid: 1009 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 1 - - uid: 1009 + - uid: 1010 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 1 - - uid: 1010 + - uid: 1011 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 1 - - uid: 1011 + - uid: 1012 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,3.5 parent: 1 - - uid: 1012 + - uid: 1013 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 1 - - uid: 1013 + - uid: 1014 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,3.5 parent: 1 - - uid: 1014 + - uid: 1015 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,3.5 parent: 1 - - uid: 1015 + - uid: 1016 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,3.5 parent: 1 - - uid: 1016 + - uid: 1017 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 1 - - uid: 1017 + - uid: 1018 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 - - uid: 1018 + - uid: 1019 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 1 - - uid: 1019 + - uid: 1020 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 1020 + - uid: 1021 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,7.5 parent: 1 - - uid: 1021 + - uid: 1022 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,8.5 parent: 1 - - uid: 1022 + - uid: 1023 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,9.5 parent: 1 - - uid: 1023 + - uid: 1024 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 1 - - uid: 1024 + - uid: 1025 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 1 - - uid: 1025 + - uid: 1026 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,12.5 parent: 1 - - uid: 1026 + - uid: 1027 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,12.5 parent: 1 - - uid: 1027 + - uid: 1028 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 1 - - uid: 1028 + - uid: 1029 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-16.5 parent: 1 - - uid: 1029 + - uid: 1030 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-15.5 parent: 1 - - uid: 1030 + - uid: 1031 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-13.5 parent: 1 - - uid: 1031 + - uid: 1032 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-13.5 parent: 1 - - uid: 1032 + - uid: 1033 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-13.5 parent: 1 - - uid: 1033 + - uid: 1034 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-13.5 parent: 1 - - uid: 1034 + - uid: 1035 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-13.5 parent: 1 - - uid: 1035 + - uid: 1036 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-13.5 parent: 1 - - uid: 1036 + - uid: 1037 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-12.5 parent: 1 - - uid: 1037 + - uid: 1038 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-11.5 parent: 1 - - uid: 1038 + - uid: 1039 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-10.5 parent: 1 - - uid: 1039 + - uid: 1040 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-9.5 parent: 1 - - uid: 1040 + - uid: 1041 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-8.5 parent: 1 - - uid: 1041 + - uid: 1042 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,34.5 parent: 1 - - uid: 1042 + - uid: 1043 components: - type: Transform pos: 1.5,34.5 parent: 1 - - uid: 1043 + - uid: 1044 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,33.5 parent: 1 - - uid: 1044 + - uid: 1045 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,34.5 parent: 1 - - uid: 1045 + - uid: 1046 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,33.5 parent: 1 - - uid: 1046 + - uid: 1047 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,32.5 parent: 1 - - uid: 1047 + - uid: 1048 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,31.5 parent: 1 - - uid: 1048 + - uid: 1049 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,30.5 parent: 1 - - uid: 1049 + - uid: 1050 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,33.5 parent: 1 - - uid: 1050 + - uid: 1051 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,33.5 parent: 1 - - uid: 1051 + - uid: 1052 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,34.5 parent: 1 - - uid: 1052 + - uid: 1053 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,33.5 parent: 1 - - uid: 1053 + - uid: 1054 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,23.5 parent: 1 - - uid: 1054 + - uid: 1055 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,23.5 parent: 1 - - uid: 1055 + - uid: 1056 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,21.5 parent: 1 - - uid: 1056 + - uid: 1057 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,21.5 parent: 1 - - uid: 1057 + - uid: 1058 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,22.5 parent: 1 - - uid: 1058 + - uid: 1059 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,27.5 parent: 1 - - uid: 1059 + - uid: 1060 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,26.5 parent: 1 - - uid: 1060 + - uid: 1061 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,25.5 parent: 1 - - uid: 1061 + - uid: 1062 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,27.5 parent: 1 - - uid: 1062 + - uid: 1063 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,25.5 parent: 1 - - uid: 1063 + - uid: 1064 components: - type: Transform rot: 3.141592653589793 rad @@ -11762,13 +12010,13 @@ entities: parent: 1 - proto: ChairFolding entities: - - uid: 1064 + - uid: 1065 components: - type: Transform rot: 3.141592653589793 rad pos: 5.6385274,33.79165 parent: 1 - - uid: 1065 + - uid: 1066 components: - type: Transform rot: 3.141592653589793 rad @@ -11776,60 +12024,60 @@ entities: parent: 1 - proto: ChairOfficeDark entities: - - uid: 1066 + - uid: 1067 components: - type: Transform rot: 3.141592653589793 rad pos: 3.0168126,-2.2222314 parent: 1 - - uid: 1067 + - uid: 1068 components: - type: Transform rot: 3.141592653589793 rad pos: -2.008704,-2.1479003 parent: 1 - - uid: 1068 + - uid: 1069 components: - type: Transform rot: 3.141592653589793 rad pos: -2.011708,-5.226958 parent: 1 - - uid: 1069 + - uid: 1070 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5255032,-8.341822 parent: 1 - - uid: 1070 + - uid: 1071 components: - type: Transform rot: 3.141592653589793 rad pos: 3.0077765,-5.271557 parent: 1 - - uid: 1071 + - uid: 1072 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.4135564,-9.459794 parent: 1 - - uid: 1072 + - uid: 1073 components: - type: Transform rot: 3.141592653589793 rad pos: -4.0172853,-12.316838 parent: 1 - - uid: 1073 + - uid: 1074 components: - type: Transform pos: 2.9927013,-15.537149 parent: 1 - - uid: 1074 + - uid: 1075 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.6448607,-8.383146 parent: 1 - - uid: 1075 + - uid: 1076 components: - type: Transform rot: 1.5707963267948966 rad @@ -11837,7 +12085,7 @@ entities: parent: 1 - proto: ChairPilotSeat entities: - - uid: 1076 + - uid: 1077 components: - type: Transform rot: 3.141592653589793 rad @@ -11845,52 +12093,52 @@ entities: parent: 1 - proto: ChemDispenser entities: - - uid: 1077 + - uid: 1078 components: - type: Transform pos: -7.5,11.5 parent: 1 - proto: ChemistryHotplate entities: - - uid: 1078 + - uid: 1079 components: - type: Transform pos: -4.5,10.5 parent: 1 - proto: ChemMaster entities: - - uid: 1079 + - uid: 1080 components: - type: Transform pos: -6.5,11.5 parent: 1 - proto: CloningPod entities: - - uid: 1080 + - uid: 1081 components: - type: Transform pos: -5.5,7.5 parent: 1 - type: DeviceLinkSink links: - - 1117 + - 1118 - proto: ClosetEmergencyFilledRandom entities: - - uid: 1081 + - uid: 1082 components: - type: Transform pos: -6.5,-6.5 parent: 1 - proto: ClosetFireFilled entities: - - uid: 1082 + - uid: 1083 components: - type: Transform pos: -6.5,-5.5 parent: 1 - proto: ClosetWallOrange entities: - - uid: 1083 + - uid: 1084 components: - type: Transform rot: -1.5707963267948966 rad @@ -11902,14 +12150,14 @@ entities: showEnts: False occludes: True ents: - - 1087 - - 1084 - - 1085 - 1088 + - 1085 - 1086 - - 1090 - 1089 - - uid: 1091 + - 1087 + - 1091 + - 1090 + - uid: 1092 components: - type: Transform rot: 1.5707963267948966 rad @@ -11921,79 +12169,79 @@ entities: showEnts: False occludes: True ents: - - 1096 + - 1097 + - 1095 - 1094 + - 1096 + - 1098 - 1093 - - 1095 - - 1097 - - 1092 - proto: ClothingBackpackDuffelSurgeryAdvancedFilled entities: - - uid: 1098 + - uid: 1099 components: - type: Transform pos: -4.911055,11.182386 parent: 1 - - uid: 1099 + - uid: 1100 components: - type: Transform pos: -4.73918,11.088572 parent: 1 - - uid: 1100 + - uid: 1101 components: - type: Transform pos: -4.411055,10.963485 parent: 1 - proto: ClothingBeltHolsterFilled entities: - - uid: 1102 + - uid: 1103 components: - type: Transform - parent: 1101 + parent: 1102 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHandsGlovesColorYellow entities: - - uid: 1109 + - uid: 1110 components: - type: Transform pos: -3.4274457,17.92572 parent: 1 - - uid: 1110 + - uid: 1111 components: - type: Transform pos: -3.5072637,18.067436 parent: 1 - proto: ClothingHandsGlovesCombat entities: - - uid: 1103 + - uid: 1104 components: - type: Transform - parent: 1101 + parent: 1102 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatNCWLBeretAdmiral entities: - - uid: 1104 + - uid: 1105 components: - type: Transform - parent: 1101 + parent: 1102 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatNCWLKommissarHat entities: - - uid: 1112 + - uid: 1113 components: - type: Transform - parent: 1111 + parent: 1112 - type: Physics canCollide: False - proto: ClothingHeadHatWelding entities: - - uid: 1113 + - uid: 1114 components: - type: Transform rot: 1.5707963267948966 rad @@ -12125,10 +12373,10 @@ entities: - type: InsideEntityStorage - proto: ClothingNeckAdminCapelet entities: - - uid: 1105 + - uid: 1106 components: - type: Transform - parent: 1101 + parent: 1102 - type: Physics canCollide: False - type: InsideEntityStorage @@ -12196,13 +12444,13 @@ entities: - type: InsideEntityStorage - proto: ClothingShoesBootsCowboyBlack entities: - - uid: 1106 + - uid: 1107 components: - type: MetaData desc: Made from real Imperial leather. name: polished officer's longboots - type: Transform - parent: 1101 + parent: 1102 - type: Physics canCollide: False - type: InsideEntityStorage @@ -12270,78 +12518,78 @@ entities: - type: InsideEntityStorage - proto: ClothingShoesColorOrange entities: - - uid: 1084 + - uid: 1085 components: - type: Transform - parent: 1083 + parent: 1084 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1092 + - uid: 1093 components: - type: Transform - parent: 1091 + parent: 1092 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtPrisoner entities: - - uid: 1085 + - uid: 1086 components: - type: Transform - parent: 1083 + parent: 1084 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1093 + - uid: 1094 components: - type: Transform - parent: 1091 + parent: 1092 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitNCWLCommunications entities: - - uid: 1107 + - uid: 1108 components: - type: Transform - parent: 1101 + parent: 1102 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPrisoner entities: - - uid: 1086 + - uid: 1087 components: - type: Transform - parent: 1083 + parent: 1084 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1094 + - uid: 1095 components: - type: Transform - parent: 1091 + parent: 1092 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Cobweb1 entities: - - uid: 1114 + - uid: 1115 components: - type: Transform pos: 0.5,-12.5 parent: 1 - proto: Cobweb2 entities: - - uid: 1115 + - uid: 1116 components: - type: Transform pos: 7.5,-15.5 parent: 1 - proto: ComputerBankATM entities: - - uid: 1116 + - uid: 1117 components: - type: Transform rot: -1.5707963267948966 rad @@ -12359,38 +12607,38 @@ entities: ents: [] - proto: ComputerCloningConsole entities: - - uid: 1117 + - uid: 1118 components: - type: Transform pos: -4.5,7.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 1422: + 1424: - - CloningPodSender - MedicalScannerReceiver - - MedicalScannerSender - MedicalScannerReceiver - 1080: + 1081: - - CloningPodSender - CloningPodReceiver - - MedicalScannerSender - CloningPodReceiver - proto: ComputerRadar entities: - - uid: 1118 + - uid: 1119 components: - type: Transform pos: 2.5,28.5 parent: 1 - - uid: 1119 + - uid: 1120 components: - type: Transform pos: -1.5,18.5 parent: 1 - proto: ComputerShuttle entities: - - uid: 1120 + - uid: 1121 components: - type: Transform pos: 0.5,-0.5 @@ -12424,19 +12672,19 @@ entities: - Module E - proto: ComputerTabletopAdvancedRadar entities: - - uid: 1121 + - uid: 1122 components: - type: Transform pos: 3.5,-4.5 parent: 1 - proto: ComputerTabletopPowerMonitoring entities: - - uid: 1122 + - uid: 1123 components: - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 1123 + - uid: 1124 components: - type: Transform rot: 3.141592653589793 rad @@ -12444,38 +12692,38 @@ entities: parent: 1 - proto: ComputerTabletopStationRecords entities: - - uid: 1124 + - uid: 1125 components: - type: Transform pos: -2.5,-1.5 parent: 1 - proto: ComputerTabletopSurveillanceCameraMonitor entities: - - uid: 1125 + - uid: 1126 components: - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 1126 + - uid: 1127 components: - type: Transform pos: -4.5,-11.5 parent: 1 - proto: ComputerTabletopTargeting entities: - - uid: 1127 + - uid: 1128 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 1128 + - uid: 1129 components: - type: Transform pos: 2.5,-4.5 parent: 1 - proto: ComputerWallmountBankATM entities: - - uid: 1129 + - uid: 1130 components: - type: Transform rot: -1.5707963267948966 rad @@ -12493,7 +12741,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 1130 + - uid: 1131 components: - type: Transform rot: -1.5707963267948966 rad @@ -12511,7 +12759,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 1131 + - uid: 1132 components: - type: Transform rot: -1.5707963267948966 rad @@ -12529,7 +12777,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 1132 + - uid: 1133 components: - type: Transform rot: 1.5707963267948966 rad @@ -12547,7 +12795,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 1133 + - uid: 1134 components: - type: Transform pos: 3.5,29.5 @@ -12566,7 +12814,7 @@ entities: canCollide: False - proto: ConveyorBelt entities: - - uid: 1134 + - uid: 1135 components: - type: Transform rot: 1.5707963267948966 rad @@ -12574,8 +12822,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1765 - - uid: 1135 + - 1770 + - uid: 1136 components: - type: Transform rot: 1.5707963267948966 rad @@ -12583,8 +12831,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1765 - - uid: 1136 + - 1770 + - uid: 1137 components: - type: Transform rot: 1.5707963267948966 rad @@ -12592,8 +12840,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1765 - - uid: 1137 + - 1770 + - uid: 1138 components: - type: Transform rot: -1.5707963267948966 rad @@ -12601,8 +12849,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1766 - - uid: 1138 + - 1771 + - uid: 1139 components: - type: Transform rot: -1.5707963267948966 rad @@ -12610,8 +12858,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1766 - - uid: 1139 + - 1771 + - uid: 1140 components: - type: Transform rot: -1.5707963267948966 rad @@ -12619,29 +12867,29 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1766 + - 1771 - proto: CrateArtifactContainer entities: - - uid: 1140 + - uid: 1141 components: - type: Transform pos: 3.5,14.5 parent: 1 - proto: CrateArtilleryAmmo entities: - - uid: 1141 + - uid: 1142 components: - type: Transform pos: -2.5,26.5 parent: 1 - - uid: 1142 + - uid: 1143 components: - type: Transform pos: 3.5,26.5 parent: 1 - proto: CrateCoolant entities: - - uid: 1143 + - uid: 1144 components: - type: Transform pos: -1.5,30.5 @@ -12656,7 +12904,7 @@ entities: volume: -5 path: /Audio/Machines/door_lock_off.ogg locked: False - - uid: 1144 + - uid: 1145 components: - type: Transform pos: -5.5,34.5 @@ -12691,58 +12939,70 @@ entities: - 0 - proto: CrateMortarAmmo entities: - - uid: 1145 + - uid: 1146 components: - type: Transform pos: 3.5,27.5 parent: 1 - - uid: 1146 + - uid: 1147 components: - type: Transform pos: -2.5,27.5 parent: 1 - - uid: 1147 + - uid: 1148 components: - type: Transform pos: 3.5,21.5 parent: 1 - - uid: 1148 + - uid: 1149 components: - type: Transform pos: -2.5,21.5 parent: 1 +- proto: CrateSumitomoAmmoHighYield + entities: + - uid: 2179 + components: + - type: Transform + pos: -2.5,23.5 + parent: 1 + - uid: 2180 + components: + - type: Transform + pos: 3.5,23.5 + parent: 1 - proto: CrateVulcanAmmo entities: - - uid: 1149 + - uid: 1150 components: - type: Transform pos: -2.5,25.5 parent: 1 - - uid: 1150 + - uid: 1151 components: - type: Transform pos: 3.5,25.5 parent: 1 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 1151 + - uid: 1152 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 1152 + - uid: 1153 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 1153 + - uid: 1154 components: - type: Transform pos: 5.5,11.5 parent: 1 - proto: DefaultStationBeaconBridge entities: - - uid: 1154 + - uid: 1155 components: - type: Transform rot: 1.5707963267948966 rad @@ -12750,33 +13010,33 @@ entities: parent: 1 - proto: DiceBag entities: - - uid: 1095 + - uid: 1096 components: - type: Transform - parent: 1091 + parent: 1092 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DisposalBend entities: - - uid: 1155 + - uid: 1156 components: - type: Transform pos: 1.5,31.5 parent: 1 - - uid: 1156 + - uid: 1157 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-10.5 parent: 1 - - uid: 1157 + - uid: 1158 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-10.5 parent: 1 - - uid: 1158 + - uid: 1159 components: - type: Transform rot: -1.5707963267948966 rad @@ -12784,334 +13044,334 @@ entities: parent: 1 - proto: DisposalJunction entities: - - uid: 1159 + - uid: 1160 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 1160 + - uid: 1161 components: - type: Transform pos: 1.5,-6.5 parent: 1 - proto: DisposalPipe entities: - - uid: 1161 + - uid: 1162 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,31.5 parent: 1 - - uid: 1162 + - uid: 1163 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,31.5 parent: 1 - - uid: 1163 + - uid: 1164 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,31.5 parent: 1 - - uid: 1164 + - uid: 1165 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,31.5 parent: 1 - - uid: 1165 + - uid: 1166 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,31.5 parent: 1 - - uid: 1166 + - uid: 1167 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,31.5 parent: 1 - - uid: 1167 + - uid: 1168 components: - type: Transform pos: 1.5,30.5 parent: 1 - - uid: 1168 + - uid: 1169 components: - type: Transform pos: 1.5,29.5 parent: 1 - - uid: 1169 + - uid: 1170 components: - type: Transform pos: 1.5,28.5 parent: 1 - - uid: 1170 + - uid: 1171 components: - type: Transform pos: 1.5,27.5 parent: 1 - - uid: 1171 + - uid: 1172 components: - type: Transform pos: 1.5,26.5 parent: 1 - - uid: 1172 + - uid: 1173 components: - type: Transform pos: 1.5,25.5 parent: 1 - - uid: 1173 + - uid: 1174 components: - type: Transform pos: 1.5,24.5 parent: 1 - - uid: 1174 + - uid: 1175 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 1175 + - uid: 1176 components: - type: Transform pos: 1.5,22.5 parent: 1 - - uid: 1176 + - uid: 1177 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 1177 + - uid: 1178 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 1178 + - uid: 1179 components: - type: Transform pos: 1.5,19.5 parent: 1 - - uid: 1179 + - uid: 1180 components: - type: Transform pos: 1.5,18.5 parent: 1 - - uid: 1180 + - uid: 1181 components: - type: Transform pos: 1.5,17.5 parent: 1 - - uid: 1181 + - uid: 1182 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 1182 + - uid: 1183 components: - type: Transform pos: 1.5,15.5 parent: 1 - - uid: 1183 + - uid: 1184 components: - type: Transform pos: 1.5,14.5 parent: 1 - - uid: 1184 + - uid: 1185 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 1185 + - uid: 1186 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 1186 + - uid: 1187 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 1187 + - uid: 1188 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 1188 + - uid: 1189 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 1189 + - uid: 1190 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 1190 + - uid: 1191 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 1191 + - uid: 1192 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 1192 + - uid: 1193 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 1193 + - uid: 1194 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 1194 + - uid: 1195 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1195 + - uid: 1196 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 1196 + - uid: 1197 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 1197 + - uid: 1198 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 1198 + - uid: 1199 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 1199 + - uid: 1200 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 1200 + - uid: 1201 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 1201 + - uid: 1202 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 1202 + - uid: 1203 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 1203 + - uid: 1204 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 1 - - uid: 1204 + - uid: 1205 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-6.5 parent: 1 - - uid: 1205 + - uid: 1206 components: - type: Transform pos: 1.5,-7.5 parent: 1 - - uid: 1206 + - uid: 1207 components: - type: Transform pos: 1.5,-8.5 parent: 1 - - uid: 1207 + - uid: 1208 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 1208 + - uid: 1209 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-15.5 parent: 1 - - uid: 1209 + - uid: 1210 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-14.5 parent: 1 - - uid: 1210 + - uid: 1211 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-13.5 parent: 1 - - uid: 1211 + - uid: 1212 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-12.5 parent: 1 - - uid: 1212 + - uid: 1213 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-11.5 parent: 1 - - uid: 1213 + - uid: 1214 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-16.5 parent: 1 - - uid: 1214 + - uid: 1215 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 1 - - uid: 1215 + - uid: 1216 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-16.5 parent: 1 - - uid: 1216 + - uid: 1217 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-16.5 parent: 1 - - uid: 1217 + - uid: 1218 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-16.5 parent: 1 - - uid: 1218 + - uid: 1219 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-16.5 parent: 1 - - uid: 1219 + - uid: 1220 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-16.5 parent: 1 - - uid: 1220 + - uid: 1221 components: - type: Transform rot: 1.5707963267948966 rad @@ -13119,25 +13379,25 @@ entities: parent: 1 - proto: DisposalTrunk entities: - - uid: 1221 + - uid: 1222 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-16.5 parent: 1 - - uid: 1222 + - uid: 1223 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-6.5 parent: 1 - - uid: 1223 + - uid: 1224 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,5.5 parent: 1 - - uid: 1224 + - uid: 1225 components: - type: Transform rot: 1.5707963267948966 rad @@ -13145,26 +13405,26 @@ entities: parent: 1 - proto: DisposalUnit entities: - - uid: 1225 + - uid: 1226 components: - type: Transform pos: -1.5,-6.5 parent: 1 - - uid: 1226 + - uid: 1227 components: - type: Transform pos: -5.5,31.5 parent: 1 - proto: Dresser entities: - - uid: 1111 + - uid: 1112 components: - type: Transform pos: -3.5,-9.5 parent: 1 - type: Storage storedItems: - 1112: + 1113: position: 0,0 _rotation: East - type: ContainerContainer @@ -13173,63 +13433,63 @@ entities: showEnts: False occludes: True ents: - - 1112 + - 1113 - proto: DrinkFlaskOld entities: - - uid: 1108 + - uid: 1109 components: - type: Transform - parent: 1101 + parent: 1102 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DrinkMREFlask entities: - - uid: 1087 + - uid: 1088 components: - type: Transform - parent: 1083 + parent: 1084 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1096 + - uid: 1097 components: - type: Transform - parent: 1091 + parent: 1092 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DrinkVodkaBottleFull entities: - - uid: 1227 + - uid: 1228 components: - type: Transform pos: -0.59381837,-9.968295 parent: 1 - proto: DrinkVodkaGlass entities: - - uid: 1228 + - uid: 1229 components: - type: Transform pos: -0.3151583,-9.854951 parent: 1 - proto: EncryptionKeyNCWL entities: - - uid: 1230 + - uid: 1231 components: - type: Transform - parent: 1229 + parent: 1230 - type: Physics canCollide: False - proto: ExplosivesSignMed entities: - - uid: 1231 + - uid: 1232 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,32.5 parent: 1 - - uid: 1232 + - uid: 1233 components: - type: Transform rot: -1.5707963267948966 rad @@ -13237,28 +13497,28 @@ entities: parent: 1 - proto: FaxMachineShip entities: - - uid: 1618 + - uid: 1234 components: - type: Transform pos: 3.5,-1.5 parent: 1 - proto: filingCabinetDrawerRandom entities: - - uid: 1233 + - uid: 1235 components: - type: Transform pos: 3.5,-6.5 parent: 1 - proto: filingCabinetTallRandom entities: - - uid: 1234 + - uid: 1236 components: - type: Transform pos: -2.5,-6.5 parent: 1 - proto: FireAxeCabinetFilled entities: - - uid: 1235 + - uid: 1237 components: - type: Transform rot: 1.5707963267948966 rad @@ -13266,126 +13526,126 @@ entities: parent: 1 - proto: Firelock entities: - - uid: 1236 + - uid: 1238 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 1237 + - uid: 1239 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,3.5 parent: 1 - - uid: 1238 + - uid: 1240 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,3.5 parent: 1 - - uid: 1239 + - uid: 1241 components: - type: Transform pos: 0.5,13.5 parent: 1 - - uid: 1240 + - uid: 1242 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,27.5 parent: 1 - - uid: 1241 + - uid: 1243 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,26.5 parent: 1 - - uid: 1242 + - uid: 1244 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,25.5 parent: 1 - - uid: 1243 + - uid: 1245 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,27.5 parent: 1 - - uid: 1244 + - uid: 1246 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,25.5 parent: 1 - - uid: 1245 + - uid: 1247 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,26.5 parent: 1 - - uid: 1246 + - uid: 1248 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,19.5 parent: 1 - - uid: 1247 + - uid: 1249 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-7.5 parent: 1 - - uid: 1248 + - uid: 1250 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-7.5 parent: 1 - - uid: 1249 + - uid: 1251 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-4.5 parent: 1 - - uid: 1250 + - uid: 1252 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-4.5 parent: 1 - - uid: 1251 + - uid: 1253 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-4.5 parent: 1 - - uid: 1252 + - uid: 1254 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-4.5 parent: 1 - - uid: 1253 + - uid: 1255 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,31.5 parent: 1 - - uid: 1254 + - uid: 1256 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,31.5 parent: 1 - - uid: 1255 + - uid: 1257 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,19.5 parent: 1 - - uid: 1256 + - uid: 1258 components: - type: Transform rot: 1.5707963267948966 rad @@ -13393,7 +13653,7 @@ entities: parent: 1 - proto: FloorDrain entities: - - uid: 1257 + - uid: 1259 components: - type: Transform pos: 0.5,6.5 @@ -13402,23 +13662,23 @@ entities: fixtures: {} - proto: FoodSnackMREBrownie entities: - - uid: 1088 + - uid: 1089 components: - type: Transform - parent: 1083 + parent: 1084 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1097 + - uid: 1098 components: - type: Transform - parent: 1091 + parent: 1092 - type: Physics canCollide: False - type: InsideEntityStorage - proto: GasPassiveVent entities: - - uid: 1258 + - uid: 1260 components: - type: Transform rot: -1.5707963267948966 rad @@ -13426,580 +13686,580 @@ entities: parent: 1 - proto: GasPipeBend entities: - - uid: 1259 + - uid: 1261 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 1 - - uid: 1260 + - uid: 1262 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 1 - - uid: 1261 + - uid: 1263 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 1 - - uid: 1262 + - uid: 1264 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1263 + - uid: 1265 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-11.5 parent: 1 - - uid: 1264 + - uid: 1266 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 1265 + - uid: 1267 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-5.5 parent: 1 - - uid: 1266 + - uid: 1268 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 1 - - uid: 1267 + - uid: 1269 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-4.5 parent: 1 - - uid: 1268 + - uid: 1270 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-3.5 parent: 1 - - uid: 1269 + - uid: 1271 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 1270 + - uid: 1272 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,2.5 parent: 1 - - uid: 1271 + - uid: 1273 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 1272 + - uid: 1274 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 1 - - uid: 1273 + - uid: 1275 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,20.5 parent: 1 - - uid: 1274 + - uid: 1276 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 1275 + - uid: 1277 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,12.5 parent: 1 - - uid: 1276 + - uid: 1278 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 1277 + - uid: 1279 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-5.5 parent: 1 - - uid: 1278 + - uid: 1280 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-11.5 parent: 1 - - uid: 1279 + - uid: 1281 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-16.5 parent: 1 - - uid: 1280 + - uid: 1282 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 1281 + - uid: 1283 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-15.5 parent: 1 - - uid: 1282 + - uid: 1284 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 1283 + - uid: 1285 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 1 - - uid: 1284 + - uid: 1286 components: - type: Transform pos: 1.5,-11.5 parent: 1 - proto: GasPipeStraight entities: - - uid: 1285 + - uid: 1287 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-13.5 parent: 1 - - uid: 1286 + - uid: 1288 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-12.5 parent: 1 - - uid: 1287 + - uid: 1289 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-11.5 parent: 1 - - uid: 1288 + - uid: 1290 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 - - uid: 1289 + - uid: 1291 components: - type: Transform pos: 2.5,23.5 parent: 1 - - uid: 1290 + - uid: 1292 components: - type: Transform pos: 2.5,22.5 parent: 1 - - uid: 1291 + - uid: 1293 components: - type: Transform pos: 2.5,21.5 parent: 1 - - uid: 1292 + - uid: 1294 components: - type: Transform pos: 1.5,19.5 parent: 1 - - uid: 1293 + - uid: 1295 components: - type: Transform pos: 1.5,18.5 parent: 1 - - uid: 1294 + - uid: 1296 components: - type: Transform pos: 1.5,17.5 parent: 1 - - uid: 1295 + - uid: 1297 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 1296 + - uid: 1298 components: - type: Transform pos: 1.5,15.5 parent: 1 - - uid: 1297 + - uid: 1299 components: - type: Transform pos: 1.5,14.5 parent: 1 - - uid: 1298 + - uid: 1300 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 1299 + - uid: 1301 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,12.5 parent: 1 - - uid: 1300 + - uid: 1302 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 1 - - uid: 1301 + - uid: 1303 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 1 - - uid: 1302 + - uid: 1304 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,9.5 parent: 1 - - uid: 1303 + - uid: 1305 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,8.5 parent: 1 - - uid: 1304 + - uid: 1306 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 1305 + - uid: 1307 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 1 - - uid: 1306 + - uid: 1308 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,7.5 parent: 1 - - uid: 1307 + - uid: 1309 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-11.5 parent: 1 - - uid: 1308 + - uid: 1310 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 1309 + - uid: 1311 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 1310 + - uid: 1312 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 1311 + - uid: 1313 components: - type: Transform pos: 7.5,-7.5 parent: 1 - - uid: 1312 + - uid: 1314 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 1313 + - uid: 1315 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-3.5 parent: 1 - - uid: 1314 + - uid: 1316 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 1315 + - uid: 1317 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-3.5 parent: 1 - - uid: 1316 + - uid: 1318 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-4.5 parent: 1 - - uid: 1317 + - uid: 1319 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 1 - - uid: 1318 + - uid: 1320 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 1 - - uid: 1319 + - uid: 1321 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-0.5 parent: 1 - - uid: 1320 + - uid: 1322 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,0.5 parent: 1 - - uid: 1321 + - uid: 1323 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 1 - - uid: 1322 + - uid: 1324 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,3.5 parent: 1 - - uid: 1323 + - uid: 1325 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - - uid: 1324 + - uid: 1326 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,23.5 parent: 1 - - uid: 1325 + - uid: 1327 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,22.5 parent: 1 - - uid: 1326 + - uid: 1328 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,21.5 parent: 1 - - uid: 1327 + - uid: 1329 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,12.5 parent: 1 - - uid: 1328 + - uid: 1330 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 1329 + - uid: 1331 components: - type: Transform pos: -0.5,14.5 parent: 1 - - uid: 1330 + - uid: 1332 components: - type: Transform pos: -0.5,15.5 parent: 1 - - uid: 1331 + - uid: 1333 components: - type: Transform pos: -0.5,16.5 parent: 1 - - uid: 1332 + - uid: 1334 components: - type: Transform pos: -0.5,17.5 parent: 1 - - uid: 1333 + - uid: 1335 components: - type: Transform pos: -0.5,18.5 parent: 1 - - uid: 1334 + - uid: 1336 components: - type: Transform pos: -0.5,19.5 parent: 1 - - uid: 1335 + - uid: 1337 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 1336 + - uid: 1338 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 1337 + - uid: 1339 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 1338 + - uid: 1340 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 1339 + - uid: 1341 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 1340 + - uid: 1342 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 1341 + - uid: 1343 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 1342 + - uid: 1344 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 1343 + - uid: 1345 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 1344 + - uid: 1346 components: - type: Transform pos: -2.5,1.5 parent: 1 - - uid: 1345 + - uid: 1347 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 1346 + - uid: 1348 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 1347 + - uid: 1349 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 1348 + - uid: 1350 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 1349 + - uid: 1351 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 1350 + - uid: 1352 components: - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 1351 + - uid: 1353 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 1 - - uid: 1352 + - uid: 1354 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-5.5 parent: 1 - - uid: 1353 + - uid: 1355 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-6.5 parent: 1 - - uid: 1354 + - uid: 1356 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-7.5 parent: 1 - - uid: 1355 + - uid: 1357 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-8.5 parent: 1 - - uid: 1356 + - uid: 1358 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-9.5 parent: 1 - - uid: 1357 + - uid: 1359 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 1 - - uid: 1358 + - uid: 1360 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-13.5 parent: 1 - - uid: 1359 + - uid: 1361 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-13.5 parent: 1 - - uid: 1360 + - uid: 1362 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 1361 + - uid: 1363 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-15.5 parent: 1 - - uid: 1362 + - uid: 1364 components: - type: Transform rot: -1.5707963267948966 rad @@ -14007,25 +14267,25 @@ entities: parent: 1 - proto: GasPipeTJunction entities: - - uid: 1363 + - uid: 1365 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,7.5 parent: 1 - - uid: 1364 + - uid: 1366 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-3.5 parent: 1 - - uid: 1365 + - uid: 1367 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,7.5 parent: 1 - - uid: 1366 + - uid: 1368 components: - type: Transform rot: -1.5707963267948966 rad @@ -14033,7 +14293,7 @@ entities: parent: 1 - proto: GasPort entities: - - uid: 1367 + - uid: 1369 components: - type: Transform rot: -1.5707963267948966 rad @@ -14041,7 +14301,7 @@ entities: parent: 1 - proto: GasPressurePump entities: - - uid: 1368 + - uid: 1370 components: - type: Transform rot: -1.5707963267948966 rad @@ -14051,18 +14311,18 @@ entities: targetPressure: 90.325 - proto: GasVentPump entities: - - uid: 1369 + - uid: 1371 components: - type: Transform pos: 1.5,-3.5 parent: 1 - type: DeviceNetwork configurators: - - 1437 + - 1439 deviceLists: - 35 - 34 - - uid: 1370 + - uid: 1372 components: - type: Transform rot: 1.5707963267948966 rad @@ -14070,35 +14330,35 @@ entities: parent: 1 - type: DeviceNetwork configurators: - - 1437 + - 1439 deviceLists: - 35 - 34 - - uid: 1371 + - uid: 1373 components: - type: Transform pos: 2.5,24.5 parent: 1 - type: DeviceNetwork configurators: - - 1437 + - 1439 deviceLists: - 35 - 34 - proto: GasVentScrubber entities: - - uid: 1372 + - uid: 1374 components: - type: Transform pos: -0.5,-3.5 parent: 1 - type: DeviceNetwork configurators: - - 1437 + - 1439 deviceLists: - 35 - 34 - - uid: 1373 + - uid: 1375 components: - type: Transform rot: -1.5707963267948966 rad @@ -14106,143 +14366,143 @@ entities: parent: 1 - type: DeviceNetwork configurators: - - 1437 + - 1439 deviceLists: - 35 - 34 - - uid: 1374 + - uid: 1376 components: - type: Transform pos: -1.5,24.5 parent: 1 - type: DeviceNetwork configurators: - - 1437 + - 1439 deviceLists: - 35 - 34 - proto: GravityGeneratorMini entities: - - uid: 1375 + - uid: 1377 components: - type: Transform pos: 0.5,-12.5 parent: 1 - proto: Grille entities: - - uid: 1376 + - uid: 1378 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 1 - - uid: 1377 + - uid: 1379 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 - - uid: 1378 + - uid: 1380 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 1379 + - uid: 1381 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 1380 + - uid: 1382 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 1381 + - uid: 1383 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 1 - - uid: 1382 + - uid: 1384 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 1383 + - uid: 1385 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 1384 + - uid: 1386 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 1385 + - uid: 1387 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 1386 + - uid: 1388 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1387 + - uid: 1389 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 1 - - uid: 1388 + - uid: 1390 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 1 - - uid: 1389 + - uid: 1391 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 1 - - uid: 1390 + - uid: 1392 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 1 - - uid: 1391 + - uid: 1393 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-2.5 parent: 1 - - uid: 1392 + - uid: 1394 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 1 - - uid: 1393 + - uid: 1395 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - - uid: 1394 + - uid: 1396 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,11.5 parent: 1 - - uid: 1395 + - uid: 1397 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 1 - - uid: 1396 + - uid: 1398 components: - type: Transform rot: -1.5707963267948966 rad @@ -14250,46 +14510,46 @@ entities: parent: 1 - proto: GyroscopeNfsd entities: - - uid: 1397 + - uid: 1399 components: - type: Transform pos: 9.5,-13.5 parent: 1 - - uid: 1398 + - uid: 1400 components: - type: Transform pos: 9.5,-9.5 parent: 1 - - uid: 1399 + - uid: 1401 components: - type: Transform pos: 7.5,-16.5 parent: 1 - - uid: 1400 + - uid: 1402 components: - type: Transform pos: 5.5,36.5 parent: 1 - - uid: 1401 + - uid: 1403 components: - type: Transform pos: -4.5,36.5 parent: 1 - proto: HandHeldMassScannerEE entities: - - uid: 1402 + - uid: 1404 components: - type: Transform pos: 6.6539893,34.626114 parent: 1 - proto: JugBoriaticFuel entities: - - uid: 1403 + - uid: 1405 components: - type: Transform pos: 2.77085,-12.420227 parent: 1 - - uid: 1404 + - uid: 1406 components: - type: Transform rot: -1.5707963267948966 rad @@ -14297,14 +14557,14 @@ entities: parent: 1 - proto: KitchenReagentGrinder entities: - - uid: 1405 + - uid: 1407 components: - type: Transform pos: -4.5,9.5 parent: 1 - proto: LampGold entities: - - uid: 1406 + - uid: 1408 components: - type: Transform rot: 1.5707963267948966 rad @@ -14312,20 +14572,20 @@ entities: parent: 1 - proto: LightBulbBroken entities: - - uid: 1407 + - uid: 1409 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.6952374,22.684963 parent: 1 - - uid: 1408 + - uid: 1410 components: - type: Transform pos: 1.9922628,28.825588 parent: 1 - proto: LightStripInner entities: - - uid: 1409 + - uid: 1411 components: - type: Transform rot: 1.5707963267948966 rad @@ -14334,7 +14594,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1410 + - uid: 1412 components: - type: Transform rot: 3.141592653589793 rad @@ -14343,7 +14603,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1411 + - uid: 1413 components: - type: Transform rot: -1.5707963267948966 rad @@ -14352,7 +14612,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1412 + - uid: 1414 components: - type: Transform pos: -0.5,10.5 @@ -14360,7 +14620,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1413 + - uid: 1415 components: - type: Transform rot: 1.5707963267948966 rad @@ -14371,7 +14631,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 1414 + - uid: 1416 components: - type: Transform rot: -1.5707963267948966 rad @@ -14380,7 +14640,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1415 + - uid: 1417 components: - type: Transform rot: 3.141592653589793 rad @@ -14389,7 +14649,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1416 + - uid: 1418 components: - type: Transform rot: 1.5707963267948966 rad @@ -14398,7 +14658,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1417 + - uid: 1419 components: - type: Transform pos: 0.5,8.5 @@ -14408,7 +14668,7 @@ entities: - type: TurretIFF - proto: LockerBoozeFilled entities: - - uid: 1418 + - uid: 1420 components: - type: Transform pos: 7.5,7.5 @@ -14417,7 +14677,7 @@ entities: locked: False - proto: LockerWoodenGeneric entities: - - uid: 1101 + - uid: 1102 components: - type: Transform pos: 1.5,-10.5 @@ -14448,20 +14708,20 @@ entities: showEnts: False occludes: True ents: - - 1103 - - 1105 - - 1102 - 1104 - - 1108 - 1106 + - 1103 + - 1105 + - 1109 - 1107 + - 1108 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LuxuryPen entities: - - uid: 1419 + - uid: 1421 components: - type: Transform rot: -1.5707963267948966 rad @@ -14469,31 +14729,31 @@ entities: parent: 1 - proto: MaterialBiomass entities: - - uid: 1420 + - uid: 1422 components: - type: Transform pos: -5.5318866,7.5747604 parent: 1 - proto: MedalCase entities: - - uid: 1421 + - uid: 1423 components: - type: Transform pos: -3.4919944,-9.185922 parent: 1 - proto: MedicalScanner entities: - - uid: 1422 + - uid: 1424 components: - type: Transform pos: -6.5,7.5 parent: 1 - type: DeviceLinkSink links: - - 1117 + - 1118 - proto: MedkitAdvancedFilled entities: - - uid: 1423 + - uid: 1425 components: - type: Transform pos: -4.2157016,11.484386 @@ -14503,7 +14763,7 @@ entities: linearDamping: 0 - proto: MedkitBruteFilled entities: - - uid: 1424 + - uid: 1426 components: - type: Transform pos: -6.129805,8.493019 @@ -14513,7 +14773,7 @@ entities: linearDamping: 0 - proto: MedkitBurnFilled entities: - - uid: 1425 + - uid: 1427 components: - type: Transform pos: -6.11418,8.680649 @@ -14523,7 +14783,7 @@ entities: linearDamping: 0 - proto: MedkitCombatFilled entities: - - uid: 1426 + - uid: 1428 components: - type: Transform pos: -6.567305,8.743193 @@ -14533,7 +14793,7 @@ entities: linearDamping: 0 - proto: MedkitFilled entities: - - uid: 1427 + - uid: 1429 components: - type: Transform pos: -6.11418,8.821372 @@ -14543,7 +14803,7 @@ entities: linearDamping: 0 - proto: MedkitOxygenFilled entities: - - uid: 1428 + - uid: 1430 components: - type: Transform pos: -6.11418,8.2741165 @@ -14553,7 +14813,7 @@ entities: linearDamping: 0 - proto: MedkitToxinFilled entities: - - uid: 1429 + - uid: 1431 components: - type: Transform pos: -6.58293,8.383568 @@ -14563,13 +14823,13 @@ entities: linearDamping: 0 - proto: Multitool entities: - - uid: 1430 + - uid: 1432 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.4180918,17.145731 parent: 1 - - uid: 1431 + - uid: 1433 components: - type: Transform rot: 1.5707963267948966 rad @@ -14577,64 +14837,64 @@ entities: parent: 1 - proto: NCWLConscriptAmmoVendory entities: - - uid: 1432 + - uid: 1434 components: - type: Transform pos: -2.5,22.5 parent: 1 - proto: NCWLConscriptGearVendory entities: - - uid: 1433 + - uid: 1435 components: - type: Transform pos: 3.5,22.5 parent: 1 - proto: NCWLConscriptShipVendory entities: - - uid: 1434 + - uid: 1436 components: - type: Transform pos: -0.5,28.5 parent: 1 - proto: NCWLPoster3 entities: - - uid: 1435 + - uid: 1437 components: - type: Transform pos: -3.5,5.5 parent: 1 - proto: NCWLVolginPhoto entities: - - uid: 1436 + - uid: 1438 components: - type: Transform pos: 2.9100273,-1.380785 parent: 1 - proto: NetworkConfigurator entities: - - uid: 1437 + - uid: 1439 components: - type: Transform pos: -3.7073967,18.259022 parent: 1 - type: NetworkConfigurator devices: - 'UID: 58949': 1369 - 'UID: 58952': 1372 - 'UID: 58950': 1370 - 'UID: 58953': 1373 - 'UID: 58954': 1374 - 'UID: 58951': 1371 + 'UID: 58949': 1371 + 'UID: 58952': 1374 + 'UID: 58950': 1372 + 'UID: 58953': 1375 + 'UID: 58954': 1376 + 'UID: 58951': 1373 linkModeActive: False - proto: OreBox entities: - - uid: 1438 + - uid: 1440 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,15.5 parent: 1 - - uid: 1439 + - uid: 1441 components: - type: Transform rot: -1.5707963267948966 rad @@ -14642,33 +14902,33 @@ entities: parent: 1 - proto: OreProcessor entities: - - uid: 1440 + - uid: 1442 components: - type: Transform pos: 4.5,15.5 parent: 1 - proto: OxygenCanister entities: - - uid: 1441 + - uid: 1443 components: - type: Transform pos: -3.5,20.5 parent: 1 - - uid: 1442 + - uid: 1444 components: - type: Transform pos: 4.5,20.5 parent: 1 - proto: PaintingNCWLVolgin entities: - - uid: 1443 + - uid: 1445 components: - type: Transform pos: 1.5,29.5 parent: 1 - proto: Paper entities: - - uid: 1444 + - uid: 1446 components: - type: Transform pos: 0.5536933,-0.5458118 @@ -14688,7 +14948,7 @@ entities: Everything for the Cause. - - uid: 2174 + - uid: 1447 components: - type: Transform pos: 0.6101261,-10.405304 @@ -14710,7 +14970,7 @@ entities: 4. I forgot... - proto: PaperBin20 entities: - - uid: 1445 + - uid: 1448 components: - type: Transform rot: -1.5707963267948966 rad @@ -14718,7 +14978,7 @@ entities: parent: 1 - proto: PaperOffice entities: - - uid: 1446 + - uid: 1449 components: - type: Transform pos: 2.4212117,-1.4017487 @@ -14729,13 +14989,13 @@ entities: -Engineering - - uid: 1447 + - uid: 1450 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.3582358,-8.516942 parent: 1 - - uid: 1448 + - uid: 1451 components: - type: Transform rot: 1.5707963267948966 rad @@ -14743,7 +15003,7 @@ entities: parent: 1 - proto: Pen entities: - - uid: 1449 + - uid: 1452 components: - type: Transform rot: -1.5707963267948966 rad @@ -14751,22 +15011,22 @@ entities: parent: 1 - proto: PersonalAI entities: - - uid: 1089 + - uid: 1090 components: - type: Transform - parent: 1083 + parent: 1084 - type: Physics canCollide: False - type: InsideEntityStorage - proto: PlasticFlapsAirtightOpaque entities: - - uid: 1450 + - uid: 1453 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,26.5 parent: 1 - - uid: 1451 + - uid: 1454 components: - type: Transform rot: -1.5707963267948966 rad @@ -14774,119 +15034,119 @@ entities: parent: 1 - proto: PlastitaniumWindow entities: - - uid: 1452 + - uid: 1455 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 1453 + - uid: 1456 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 1454 + - uid: 1457 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 1455 + - uid: 1458 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 1 - - uid: 1456 + - uid: 1459 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 - - uid: 1457 + - uid: 1460 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 1 - - uid: 1458 + - uid: 1461 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 1459 + - uid: 1462 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 1460 + - uid: 1463 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 1461 + - uid: 1464 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1462 + - uid: 1465 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 1463 + - uid: 1466 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 1 - - uid: 1464 + - uid: 1467 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 1 - - uid: 1465 + - uid: 1468 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 1 - - uid: 1466 + - uid: 1469 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 1 - - uid: 1467 + - uid: 1470 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 1 - - uid: 1468 + - uid: 1471 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 1 - - uid: 1469 + - uid: 1472 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-2.5 parent: 1 - - uid: 1470 + - uid: 1473 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - - uid: 1471 + - uid: 1474 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 1 - - uid: 1472 + - uid: 1475 components: - type: Transform rot: -1.5707963267948966 rad @@ -14894,96 +15154,96 @@ entities: parent: 1 - proto: PosterContrabandCommunistState entities: - - uid: 1473 + - uid: 1476 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 1474 + - uid: 1477 components: - type: Transform pos: -2.5,2.5 parent: 1 - proto: PoweredLEDSmallLight entities: - - uid: 1475 + - uid: 1478 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,18.5 parent: 1 - - uid: 1476 + - uid: 1479 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,18.5 parent: 1 - - uid: 1477 + - uid: 1480 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,36.5 parent: 1 - - uid: 1478 + - uid: 1481 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,36.5 parent: 1 - - uid: 1479 + - uid: 1482 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,37.5 parent: 1 - - uid: 1480 + - uid: 1483 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,37.5 parent: 1 - - uid: 1481 + - uid: 1484 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,22.5 parent: 1 - - uid: 1482 + - uid: 1485 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,22.5 parent: 1 - - uid: 1483 + - uid: 1486 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,13.5 parent: 1 - - uid: 1484 + - uid: 1487 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,13.5 parent: 1 - - uid: 1485 + - uid: 1488 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-14.5 parent: 1 - - uid: 1486 + - uid: 1489 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-16.5 parent: 1 - - uid: 1487 + - uid: 1490 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 1488 + - uid: 1491 components: - type: Transform rot: -1.5707963267948966 rad @@ -14991,195 +15251,195 @@ entities: parent: 1 - proto: Poweredlight entities: - - uid: 1489 + - uid: 1492 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,10.5 parent: 1 - - uid: 1490 + - uid: 1493 components: - type: Transform pos: -7.5,27.5 parent: 1 - - uid: 1491 + - uid: 1494 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,32.5 parent: 1 - - uid: 1492 + - uid: 1495 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,32.5 parent: 1 - - uid: 1493 + - uid: 1496 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,20.5 parent: 1 - - uid: 1494 + - uid: 1497 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,6.5 parent: 1 - - uid: 1495 + - uid: 1498 components: - type: Transform pos: 8.5,27.5 parent: 1 - - uid: 1496 + - uid: 1499 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,16.5 parent: 1 - - uid: 1497 + - uid: 1500 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,16.5 parent: 1 - - uid: 1498 + - uid: 1501 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 1499 + - uid: 1502 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,17.5 parent: 1 - - uid: 1500 + - uid: 1503 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 1501 + - uid: 1504 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1502 + - uid: 1505 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,5.5 parent: 1 - - uid: 1503 + - uid: 1506 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,5.5 parent: 1 - - uid: 1504 + - uid: 1507 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 1505 + - uid: 1508 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 1506 + - uid: 1509 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 1507 + - uid: 1510 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,3.5 parent: 1 - - uid: 1508 + - uid: 1511 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-4.5 parent: 1 - - uid: 1509 + - uid: 1512 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-4.5 parent: 1 - - uid: 1510 + - uid: 1513 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-10.5 parent: 1 - - uid: 1511 + - uid: 1514 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-5.5 parent: 1 - - uid: 1512 + - uid: 1515 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-5.5 parent: 1 - - uid: 1513 + - uid: 1516 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 1 - - uid: 1514 + - uid: 1517 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-12.5 parent: 1 - - uid: 1515 + - uid: 1518 components: - type: Transform pos: -3.5,-11.5 parent: 1 - - uid: 1516 + - uid: 1519 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-8.5 parent: 1 - - uid: 1517 + - uid: 1520 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - uid: 1518 + - uid: 1521 components: - type: Transform pos: 2.5,-15.5 parent: 1 - - uid: 1519 + - uid: 1522 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-13.5 parent: 1 - - uid: 1520 + - uid: 1523 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,8.5 parent: 1 - - uid: 1521 + - uid: 1524 components: - type: Transform pos: -0.5,28.5 parent: 1 - - uid: 1522 + - uid: 1525 components: - type: Transform rot: 1.5707963267948966 rad @@ -15187,120 +15447,120 @@ entities: parent: 1 - proto: PoweredlightRed entities: - - uid: 1523 + - uid: 1526 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,36.5 parent: 1 - - uid: 1524 + - uid: 1527 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,36.5 parent: 1 - - uid: 1525 + - uid: 1528 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,38.5 parent: 1 - - uid: 1526 + - uid: 1529 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,38.5 parent: 1 - - uid: 1527 + - uid: 1530 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,36.5 parent: 1 - - uid: 1528 + - uid: 1531 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,34.5 parent: 1 - - uid: 1529 + - uid: 1532 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,13.5 parent: 1 - - uid: 1530 + - uid: 1533 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,36.5 parent: 1 - - uid: 1531 + - uid: 1534 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,13.5 parent: 1 - - uid: 1532 + - uid: 1535 components: - type: Transform pos: 8.5,-19.5 parent: 1 - - uid: 1533 + - uid: 1536 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,34.5 parent: 1 - - uid: 1534 + - uid: 1537 components: - type: Transform pos: -7.5,22.5 parent: 1 - - uid: 1535 + - uid: 1538 components: - type: Transform pos: 8.5,22.5 parent: 1 - - uid: 1536 + - uid: 1539 components: - type: Transform pos: 0.5,-20.5 parent: 1 - - uid: 1537 + - uid: 1540 components: - type: Transform pos: -7.5,-19.5 parent: 1 - - uid: 1538 + - uid: 1541 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 1539 + - uid: 1542 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-3.5 parent: 1 - - uid: 1540 + - uid: 1543 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-3.5 parent: 1 - - uid: 1541 + - uid: 1544 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 1542 + - uid: 1545 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 1 - - uid: 1543 + - uid: 1546 components: - type: Transform rot: -1.5707963267948966 rad @@ -15308,12 +15568,12 @@ entities: parent: 1 - proto: PoweredSmallLightEmpty entities: - - uid: 1544 + - uid: 1547 components: - type: Transform pos: 2.5,28.5 parent: 1 - - uid: 1545 + - uid: 1548 components: - type: Transform rot: 1.5707963267948966 rad @@ -15321,389 +15581,389 @@ entities: parent: 1 - proto: Rack entities: - - uid: 1546 + - uid: 1549 components: - type: Transform pos: 2.5,-12.5 parent: 1 - - uid: 1547 + - uid: 1550 components: - type: Transform pos: -9.5,-12.5 parent: 1 - - uid: 1548 + - uid: 1551 components: - type: Transform pos: 2.5,30.5 parent: 1 - - uid: 1549 + - uid: 1552 components: - type: Transform pos: -9.5,-10.5 parent: 1 - proto: RadioHandheld entities: - - uid: 1550 + - uid: 1553 components: - type: Transform pos: 5.370796,34.6056 parent: 1 - - uid: 1551 + - uid: 1554 components: - type: Transform pos: 5.4748306,34.67993 parent: 1 - - uid: 1552 + - uid: 1555 components: - type: Transform pos: 5.534279,34.560997 parent: 1 - - uid: 1553 + - uid: 1556 components: - type: Transform pos: 5.2964873,34.67993 parent: 1 - - uid: 1554 + - uid: 1557 components: - type: Transform pos: 5.564003,34.739395 parent: 1 - - uid: 1555 + - uid: 1558 components: - type: Transform pos: 5.682898,34.665062 parent: 1 - proto: Railing entities: - - uid: 1556 + - uid: 1559 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-1.5 parent: 1 - - uid: 1557 + - uid: 1560 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-1.5 parent: 1 - - uid: 1558 + - uid: 1561 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 1 - - uid: 1559 + - uid: 1562 components: - type: Transform pos: -0.5,35.5 parent: 1 - - uid: 1560 + - uid: 1563 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 1561 + - uid: 1564 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 1562 + - uid: 1565 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 1 - - uid: 1563 + - uid: 1566 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 1 - - uid: 1564 + - uid: 1567 components: - type: Transform pos: 1.5,35.5 parent: 1 - - uid: 1565 + - uid: 1568 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - - uid: 1566 + - uid: 1569 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 1 - - uid: 1567 + - uid: 1570 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 1568 + - uid: 1571 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,31.5 parent: 1 - - uid: 1569 + - uid: 1572 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,30.5 parent: 1 - - uid: 1570 + - uid: 1573 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 1571 + - uid: 1574 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,20.5 parent: 1 - - uid: 1572 + - uid: 1575 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,19.5 parent: 1 - - uid: 1573 + - uid: 1576 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,17.5 parent: 1 - - uid: 1574 + - uid: 1577 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,18.5 parent: 1 - - uid: 1575 + - uid: 1578 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,0.5 parent: 1 - - uid: 1576 + - uid: 1579 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,2.5 parent: 1 - - uid: 1577 + - uid: 1580 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,16.5 parent: 1 - - uid: 1578 + - uid: 1581 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 1 - - uid: 1579 + - uid: 1582 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-1.5 parent: 1 - - uid: 1580 + - uid: 1583 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-3.5 parent: 1 - - uid: 1581 + - uid: 1584 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-3.5 parent: 1 - - uid: 1582 + - uid: 1585 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-1.5 parent: 1 - - uid: 1583 + - uid: 1586 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 1 - - uid: 1584 + - uid: 1587 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,0.5 parent: 1 - - uid: 1585 + - uid: 1588 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,2.5 parent: 1 - - uid: 1586 + - uid: 1589 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,20.5 parent: 1 - - uid: 1587 + - uid: 1590 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,19.5 parent: 1 - - uid: 1588 + - uid: 1591 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,18.5 parent: 1 - - uid: 1589 + - uid: 1592 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,17.5 parent: 1 - - uid: 1590 + - uid: 1593 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,16.5 parent: 1 - - uid: 1591 + - uid: 1594 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,38.5 parent: 1 - - uid: 1592 + - uid: 1595 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,38.5 parent: 1 - - uid: 1593 + - uid: 1596 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,38.5 parent: 1 - - uid: 2178 + - uid: 1597 components: - type: Transform pos: 0.5,26.5 parent: 1 - proto: RailingCorner entities: - - uid: 1594 + - uid: 1598 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-2.5 parent: 1 - - uid: 1595 + - uid: 1599 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 1596 + - uid: 1600 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,33.5 parent: 1 - - uid: 1597 + - uid: 1601 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,8.5 parent: 1 - - uid: 1598 + - uid: 1602 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,32.5 parent: 1 - - uid: 1599 + - uid: 1603 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,33.5 parent: 1 - - uid: 1600 + - uid: 1604 components: - type: Transform pos: 8.5,22.5 parent: 1 - - uid: 1601 + - uid: 1605 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,13.5 parent: 1 - - uid: 1602 + - uid: 1606 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,22.5 parent: 1 - - uid: 1603 + - uid: 1607 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,13.5 parent: 1 - - uid: 1604 + - uid: 1608 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-8.5 parent: 1 - - uid: 1605 + - uid: 1609 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-8.5 parent: 1 - - uid: 1606 + - uid: 1610 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,34.5 parent: 1 - - uid: 1607 + - uid: 1611 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,34.5 parent: 1 - - uid: 1608 + - uid: 1612 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,36.5 parent: 1 - - uid: 1609 + - uid: 1613 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,36.5 parent: 1 - - uid: 2176 + - uid: 1614 components: - type: Transform pos: 1.5,26.5 parent: 1 - - uid: 2177 + - uid: 1615 components: - type: Transform rot: -1.5707963267948966 rad @@ -15711,13 +15971,13 @@ entities: parent: 1 - proto: RailingCornerSmall entities: - - uid: 1610 + - uid: 1616 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-0.5 parent: 1 - - uid: 1611 + - uid: 1617 components: - type: Transform rot: 1.5707963267948966 rad @@ -15725,7 +15985,7 @@ entities: parent: 1 - proto: RCD entities: - - uid: 1612 + - uid: 1618 components: - type: Transform rot: 1.5707963267948966 rad @@ -15733,13 +15993,13 @@ entities: parent: 1 - proto: RCDAmmo entities: - - uid: 1613 + - uid: 1619 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.646629,-16.607515 parent: 1 - - uid: 1614 + - uid: 1620 components: - type: Transform rot: 1.5707963267948966 rad @@ -15747,28 +16007,28 @@ entities: parent: 1 - proto: RubberStampApproved entities: - - uid: 1615 + - uid: 1621 components: - type: Transform pos: -0.015409172,-10.201724 parent: 1 - proto: RubberStampDenied entities: - - uid: 1616 + - uid: 1622 components: - type: Transform pos: -0.015409172,-10.380118 parent: 1 - proto: RubberStampNCWLCommand entities: - - uid: 1617 + - uid: 1623 components: - type: Transform pos: -0.0005475879,-10.5733795 parent: 1 - proto: SheetPlasma1 entities: - - uid: 1619 + - uid: 1624 components: - type: Transform pos: -4.402343,9.6974325 @@ -15776,7 +16036,7 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 1620 + - uid: 1625 components: - type: Transform pos: -4.79568,10.145023 @@ -15784,7 +16044,7 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 1621 + - uid: 1626 components: - type: Transform pos: -4.226019,10.185714 @@ -15794,7 +16054,7 @@ entities: linearDamping: 0 - proto: ShotGunCabinetFilled entities: - - uid: 1622 + - uid: 1627 components: - type: Transform rot: -1.5707963267948966 rad @@ -15802,7 +16062,7 @@ entities: parent: 1 - proto: ShuttersNormal entities: - - uid: 1623 + - uid: 1628 components: - type: Transform rot: 1.5707963267948966 rad @@ -15810,8 +16070,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1632 - - uid: 1624 + - 1637 + - uid: 1629 components: - type: Transform rot: 1.5707963267948966 rad @@ -15819,8 +16079,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1632 - - uid: 1625 + - 1637 + - uid: 1630 components: - type: Transform rot: 1.5707963267948966 rad @@ -15828,44 +16088,44 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1632 + - 1637 - proto: ShuttersNormalOpen entities: - - uid: 1626 + - uid: 1631 components: - type: Transform pos: 0.5,-7.5 parent: 1 - type: DeviceLinkSink links: - - 1630 - - uid: 1627 + - 1635 + - uid: 1632 components: - type: Transform pos: 1.5,-7.5 parent: 1 - type: DeviceLinkSink links: - - 1630 - - uid: 1628 + - 1635 + - uid: 1633 components: - type: Transform pos: 3.5,19.5 parent: 1 - type: DeviceLinkSink links: - - 1633 - - uid: 1629 + - 1638 + - uid: 1634 components: - type: Transform pos: 2.5,19.5 parent: 1 - type: DeviceLinkSink links: - - 1633 + - 1638 - proto: SignalButton entities: - - uid: 1630 + - uid: 1635 components: - type: Transform rot: -1.5707963267948966 rad @@ -15873,13 +16133,13 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1627: + 1632: - - Pressed - Toggle - 1626: + 1631: - - Pressed - Toggle - - uid: 1631 + - uid: 1636 components: - type: Transform rot: -1.5707963267948966 rad @@ -15929,7 +16189,7 @@ entities: 209: - - Pressed - Toggle - - uid: 1632 + - uid: 1637 components: - type: MetaData name: armory shutters @@ -15939,16 +16199,16 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1623: + 1628: - - Pressed - Toggle - 1624: + 1629: - - Pressed - Toggle - 1625: + 1630: - - Pressed - Toggle - - uid: 1633 + - uid: 1638 components: - type: Transform rot: 3.141592653589793 rad @@ -15956,13 +16216,13 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1629: + 1634: - - Pressed - Toggle - 1628: + 1633: - - Pressed - Toggle - - uid: 1634 + - uid: 1639 components: - type: Transform rot: 1.5707963267948966 rad @@ -15973,7 +16233,7 @@ entities: 198: - - Pressed - Toggle - - uid: 1635 + - uid: 1640 components: - type: Transform pos: 2.5,35.5 @@ -15989,7 +16249,7 @@ entities: 192: - - Pressed - Toggle - - uid: 1636 + - uid: 1641 components: - type: Transform rot: -1.5707963267948966 rad @@ -16000,7 +16260,7 @@ entities: 197: - - Pressed - Toggle - - uid: 1637 + - uid: 1642 components: - type: Transform rot: -1.5707963267948966 rad @@ -16011,7 +16271,7 @@ entities: 196: - - Pressed - Toggle - - uid: 1638 + - uid: 1643 components: - type: Transform rot: 1.5707963267948966 rad @@ -16022,7 +16282,7 @@ entities: 195: - - Pressed - Toggle - - uid: 1639 + - uid: 1644 components: - type: Transform rot: -1.5707963267948966 rad @@ -16033,7 +16293,7 @@ entities: 194: - - Pressed - Toggle - - uid: 1640 + - uid: 1645 components: - type: Transform rot: 1.5707963267948966 rad @@ -16046,60 +16306,60 @@ entities: - Toggle - proto: SignBridge entities: - - uid: 1641 + - uid: 1646 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 1642 + - uid: 1647 components: - type: Transform pos: 4.5,-4.5 parent: 1 - proto: SignChem entities: - - uid: 1643 + - uid: 1648 components: - type: Transform pos: -3.5,10.5 parent: 1 - proto: SignConference entities: - - uid: 1644 + - uid: 1649 components: - type: Transform pos: 1.5,13.5 parent: 1 - proto: SignCryo entities: - - uid: 1645 + - uid: 1650 components: - type: Transform pos: 4.5,7.5 parent: 1 - proto: SignEngineering entities: - - uid: 1646 + - uid: 1651 components: - type: Transform pos: 6.5,-7.5 parent: 1 - proto: SignLastIdiot entities: - - uid: 1647 + - uid: 1652 components: - type: Transform pos: -3.5,29.5 parent: 1 - proto: SignSpace entities: - - uid: 1648 + - uid: 1653 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-0.5 parent: 1 - - uid: 1649 + - uid: 1654 components: - type: Transform rot: 1.5707963267948966 rad @@ -16107,13 +16367,13 @@ entities: parent: 1 - proto: SinkWide entities: - - uid: 1650 + - uid: 1655 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-15.5 parent: 1 - - uid: 1651 + - uid: 1656 components: - type: Transform rot: 1.5707963267948966 rad @@ -16121,58 +16381,58 @@ entities: parent: 1 - proto: SMESBasic entities: - - uid: 1652 + - uid: 1657 components: - type: Transform pos: 10.5,-10.5 parent: 1 - - uid: 1653 + - uid: 1658 components: - type: Transform pos: 10.5,-12.5 parent: 1 - - uid: 1654 + - uid: 1659 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 1655 + - uid: 1660 components: - type: Transform pos: -7.5,4.5 parent: 1 - proto: SoapDeluxe entities: - - uid: 1090 + - uid: 1091 components: - type: Transform - parent: 1083 + parent: 1084 - type: Physics canCollide: False - type: InsideEntityStorage - proto: StairStageDark entities: - - uid: 1656 + - uid: 1661 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 1657 + - uid: 1662 components: - type: Transform pos: 2.5,32.5 parent: 1 - - uid: 1658 + - uid: 1663 components: - type: Transform pos: -1.5,32.5 parent: 1 - - uid: 1659 + - uid: 1664 components: - type: Transform pos: -7.5,8.5 parent: 1 - - uid: 1660 + - uid: 1665 components: - type: Transform rot: 3.141592653589793 rad @@ -16180,66 +16440,66 @@ entities: parent: 1 - proto: StationMap entities: - - uid: 1661 + - uid: 1666 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 1662 + - uid: 1667 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,18.5 parent: 1 - - uid: 1663 + - uid: 1668 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,33.5 parent: 1 - - uid: 1664 + - uid: 1669 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - - uid: 1665 + - uid: 1670 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-2.5 parent: 1 - - uid: 1666 + - uid: 1671 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,0.5 parent: 1 - - uid: 1667 + - uid: 1672 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,0.5 parent: 1 - - uid: 1668 + - uid: 1673 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-9.5 parent: 1 - - uid: 1669 + - uid: 1674 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 1 - - uid: 1670 + - uid: 1675 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,23.5 parent: 1 - - uid: 1671 + - uid: 1676 components: - type: Transform rot: -1.5707963267948966 rad @@ -16247,19 +16507,19 @@ entities: parent: 1 - proto: SteelBench entities: - - uid: 1672 + - uid: 1677 components: - type: Transform pos: 6.5,-6.5 parent: 1 - proto: SubstationBasic entities: - - uid: 1673 + - uid: 1678 components: - type: Transform pos: -4.5,5.5 parent: 1 - - uid: 1674 + - uid: 1679 components: - type: Transform pos: 0.5,-16.5 @@ -16540,145 +16800,145 @@ entities: - 126 - proto: SurveillanceCameraGeneral entities: - - uid: 1675 + - uid: 1680 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,1.5 parent: 1 - - uid: 1676 + - uid: 1681 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,1.5 parent: 1 - - uid: 1677 + - uid: 1682 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 - - uid: 1678 + - uid: 1683 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,3.5 parent: 1 - - uid: 1679 + - uid: 1684 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 1680 + - uid: 1685 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 1681 + - uid: 1686 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-9.5 parent: 1 - - uid: 1682 + - uid: 1687 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-9.5 parent: 1 - - uid: 1683 + - uid: 1688 components: - type: Transform pos: -5.5,-16.5 parent: 1 - - uid: 1684 + - uid: 1689 components: - type: Transform pos: -2.5,-16.5 parent: 1 - - uid: 1685 + - uid: 1690 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - uid: 1686 + - uid: 1691 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-11.5 parent: 1 - - uid: 1687 + - uid: 1692 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 1688 + - uid: 1693 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-8.5 parent: 1 - - uid: 1689 + - uid: 1694 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 - - uid: 1690 + - uid: 1695 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 1691 + - uid: 1696 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 1692 + - uid: 1697 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 1693 + - uid: 1698 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,18.5 parent: 1 - - uid: 1694 + - uid: 1699 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,18.5 parent: 1 - - uid: 1695 + - uid: 1700 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,28.5 parent: 1 - - uid: 1696 + - uid: 1701 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,34.5 parent: 1 - - uid: 1697 + - uid: 1702 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,34.5 parent: 1 - - uid: 1698 + - uid: 1703 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,37.5 parent: 1 - - uid: 1699 + - uid: 1704 components: - type: Transform rot: 1.5707963267948966 rad @@ -16686,142 +16946,142 @@ entities: parent: 1 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 1700 + - uid: 1705 components: - type: Transform pos: 5.5,13.5 parent: 1 - proto: Table entities: - - uid: 1701 + - uid: 1706 components: - type: Transform pos: 6.5,34.5 parent: 1 - - uid: 1702 + - uid: 1707 components: - type: Transform pos: 5.5,34.5 parent: 1 - proto: TableGlass entities: - - uid: 1703 + - uid: 1708 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 1704 + - uid: 1709 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 1705 + - uid: 1710 components: - type: Transform pos: -4.5,11.5 parent: 1 - proto: TableReinforced entities: - - uid: 1706 + - uid: 1711 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 1707 + - uid: 1712 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-4.5 parent: 1 - - uid: 1708 + - uid: 1713 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 1 - - uid: 1709 + - uid: 1714 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-4.5 parent: 1 - - uid: 1710 + - uid: 1715 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-4.5 parent: 1 - - uid: 1711 + - uid: 1716 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-1.5 parent: 1 - - uid: 1712 + - uid: 1717 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 - - uid: 1713 + - uid: 1718 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 1 - - uid: 1714 + - uid: 1719 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-4.5 parent: 1 - - uid: 1715 + - uid: 1720 components: - type: Transform pos: -3.5,-11.5 parent: 1 - - uid: 1716 + - uid: 1721 components: - type: Transform pos: -4.5,-11.5 parent: 1 - - uid: 1717 + - uid: 1722 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-16.5 parent: 1 - - uid: 1718 + - uid: 1723 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-16.5 parent: 1 - - uid: 1719 + - uid: 1724 components: - type: Transform pos: 4.5,16.5 parent: 1 - - uid: 1720 + - uid: 1725 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,17.5 parent: 1 - - uid: 1721 + - uid: 1726 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,18.5 parent: 1 - - uid: 1722 + - uid: 1727 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 1723 + - uid: 1728 components: - type: Transform rot: 1.5707963267948966 rad @@ -16829,25 +17089,25 @@ entities: parent: 1 - proto: TableWood entities: - - uid: 1724 + - uid: 1729 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-9.5 parent: 1 - - uid: 1725 + - uid: 1730 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-10.5 parent: 1 - - uid: 1726 + - uid: 1731 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 1 - - uid: 1727 + - uid: 1732 components: - type: Transform rot: 1.5707963267948966 rad @@ -16855,7 +17115,7 @@ entities: parent: 1 - proto: TelecomServer entities: - - uid: 1229 + - uid: 1230 components: - type: Transform pos: -4.5,13.5 @@ -16866,7 +17126,7 @@ entities: showEnts: False occludes: True ents: - - 1230 + - 1231 machine_board: !type:Container showEnts: False occludes: True @@ -16877,38 +17137,38 @@ entities: ents: [] - proto: TelecomServerFilledNovaBalreska entities: - - uid: 1728 + - uid: 1733 components: - type: Transform pos: 0.5,-5.5 parent: 1 - proto: ThrusterNCWLFighter entities: - - uid: 1729 + - uid: 1734 components: - type: Transform pos: -8.5,-7.5 parent: 1 - - uid: 1730 + - uid: 1735 components: - type: Transform pos: -9.5,-7.5 parent: 1 - proto: ThrusterNCWLWarship entities: - - uid: 1731 + - uid: 1736 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-10.5 parent: 1 - - uid: 1732 + - uid: 1737 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-18.5 parent: 1 - - uid: 1733 + - uid: 1738 components: - type: Transform rot: -1.5707963267948966 rad @@ -16916,85 +17176,85 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 1734 + - uid: 1739 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-18.5 parent: 1 - - uid: 1735 + - uid: 1740 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-12.5 parent: 1 - - uid: 1736 + - uid: 1741 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-11.5 parent: 1 - - uid: 1737 + - uid: 1742 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-18.5 parent: 1 - - uid: 1738 + - uid: 1743 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-18.5 parent: 1 - - uid: 1739 + - uid: 1744 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-19.5 parent: 1 - - uid: 1740 + - uid: 1745 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-18.5 parent: 1 - - uid: 1741 + - uid: 1746 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-18.5 parent: 1 - - uid: 1742 + - uid: 1747 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-18.5 parent: 1 - - uid: 1743 + - uid: 1748 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-18.5 parent: 1 - - uid: 1744 + - uid: 1749 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-11.5 parent: 1 - - uid: 1745 + - uid: 1750 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-12.5 parent: 1 - - uid: 1746 + - uid: 1751 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-14.5 parent: 1 - - uid: 1747 + - uid: 1752 components: - type: Transform rot: 3.141592653589793 rad @@ -17002,25 +17262,25 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 1748 + - uid: 1753 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-19.5 parent: 1 - - uid: 1749 + - uid: 1754 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 parent: 1 - - uid: 1750 + - uid: 1755 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-19.5 parent: 1 - - uid: 1751 + - uid: 1756 components: - type: Transform rot: -1.5707963267948966 rad @@ -17028,25 +17288,25 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 1752 + - uid: 1757 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,32.5 parent: 1 - - uid: 1753 + - uid: 1758 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,31.5 parent: 1 - - uid: 1754 + - uid: 1759 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,30.5 parent: 1 - - uid: 1755 + - uid: 1760 components: - type: Transform rot: -1.5707963267948966 rad @@ -17056,7 +17316,7 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 1 - - uid: 1756 + - uid: 1761 components: - type: Transform rot: -1.5707963267948966 rad @@ -17064,35 +17324,35 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 1757 + - uid: 1762 components: - type: Transform pos: 9.5,-7.5 parent: 1 - - uid: 1758 + - uid: 1763 components: - type: Transform pos: 10.5,-7.5 parent: 1 - - uid: 1759 + - uid: 1764 components: - type: Transform pos: 6.5,38.5 parent: 1 - - uid: 1760 + - uid: 1765 components: - type: Transform pos: -5.5,38.5 parent: 1 - proto: ToiletDirtyWater entities: - - uid: 1761 + - uid: 1766 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 1 - - uid: 1762 + - uid: 1767 components: - type: Transform rot: 1.5707963267948966 rad @@ -17100,70 +17360,70 @@ entities: parent: 1 - proto: ToolboxElectricalFilled entities: - - uid: 1763 + - uid: 1768 components: - type: Transform pos: -3.4924016,18.751282 parent: 1 - proto: ToolboxMechanicalFilled entities: - - uid: 1764 + - uid: 1769 components: - type: Transform pos: -3.4924016,18.498556 parent: 1 - proto: TwoWayLever entities: - - uid: 1765 + - uid: 1770 components: - type: Transform pos: -5.5,26.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 1136: + 1137: - - Left - Forward - - Right - Reverse - - Middle - Off - 1135: + 1136: - - Left - Forward - - Right - Reverse - - Middle - Off - 1134: + 1135: - - Left - Forward - - Right - Reverse - - Middle - Off - - uid: 1766 + - uid: 1771 components: - type: Transform pos: 6.5,26.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 1138: + 1139: - - Left - Forward - - Right - Reverse - - Middle - Off - 1137: + 1138: - - Left - Forward - - Right - Reverse - - Middle - Off - 1139: + 1140: - - Left - Forward - - Right @@ -17172,49 +17432,49 @@ entities: - Off - proto: UnionfallClementineMothershipComputer entities: - - uid: 1767 + - uid: 1772 components: - type: Transform pos: 1.5,28.5 parent: 1 - proto: UnionfallShipNodeNCWL entities: - - uid: 1768 + - uid: 1773 components: - type: Transform pos: 0.5,9.5 parent: 1 - proto: VendingMachineChemicals entities: - - uid: 1769 + - uid: 1774 components: - type: Transform pos: -4.5,8.5 parent: 1 - proto: VendingMachineColaBlack entities: - - uid: 1770 + - uid: 1775 components: - type: Transform pos: -4.5,-6.5 parent: 1 - proto: VendingMachineMedical entities: - - uid: 1771 + - uid: 1776 components: - type: Transform pos: -5.5,8.5 parent: 1 - proto: VendingMachineSalvage entities: - - uid: 1772 + - uid: 1777 components: - type: Transform pos: 4.5,18.5 parent: 1 - proto: VendingMachineSnack entities: - - uid: 1773 + - uid: 1778 components: - type: Transform rot: 3.141592653589793 rad @@ -17222,14 +17482,14 @@ entities: parent: 1 - proto: VendingMachineSnackOrange entities: - - uid: 1774 + - uid: 1779 components: - type: Transform pos: 5.5,-6.5 parent: 1 - proto: VendingMachineSoda entities: - - uid: 1775 + - uid: 1780 components: - type: Transform rot: 3.141592653589793 rad @@ -17237,14 +17497,14 @@ entities: parent: 1 - proto: VendingMachineSovietSoda entities: - - uid: 1776 + - uid: 1781 components: - type: Transform pos: -5.5,30.5 parent: 1 - proto: VendingMachineSustenance entities: - - uid: 1777 + - uid: 1782 components: - type: Transform rot: 3.141592653589793 rad @@ -17252,1820 +17512,1820 @@ entities: parent: 1 - proto: VendingMachineTankDispenserEVA entities: - - uid: 1778 + - uid: 1783 components: - type: Transform pos: 6.5,31.5 parent: 1 - - uid: 1779 + - uid: 1784 components: - type: Transform pos: 6.5,30.5 parent: 1 - - uid: 1780 + - uid: 1785 components: - type: Transform pos: -6.5,24.5 parent: 1 - - uid: 1781 + - uid: 1786 components: - type: Transform pos: 7.5,24.5 parent: 1 - proto: VendingMachineYouTool entities: - - uid: 1782 + - uid: 1787 components: - type: Transform pos: -3.5,15.5 parent: 1 - proto: WallPlastitanium entities: - - uid: 1783 + - uid: 1788 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-5.5 parent: 1 - - uid: 1784 + - uid: 1789 components: - type: Transform pos: 4.5,-4.5 parent: 1 - - uid: 1785 + - uid: 1790 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 1786 + - uid: 1791 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-8.5 parent: 1 - - uid: 1787 + - uid: 1792 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 1788 + - uid: 1793 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-9.5 parent: 1 - - uid: 1789 + - uid: 1794 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 1790 + - uid: 1795 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 1791 + - uid: 1796 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 1792 + - uid: 1797 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 1793 + - uid: 1798 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 1794 + - uid: 1799 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 1 - - uid: 1795 + - uid: 1800 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 1 - - uid: 1796 + - uid: 1801 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-5.5 parent: 1 - - uid: 1797 + - uid: 1802 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-6.5 parent: 1 - - uid: 1798 + - uid: 1803 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-7.5 parent: 1 - - uid: 1799 + - uid: 1804 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-7.5 parent: 1 - - uid: 1800 + - uid: 1805 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-7.5 parent: 1 - - uid: 1801 + - uid: 1806 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 1 - - uid: 1802 + - uid: 1807 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 1 - - uid: 1803 + - uid: 1808 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-7.5 parent: 1 - - uid: 1804 + - uid: 1809 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-6.5 parent: 1 - - uid: 1805 + - uid: 1810 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-10.5 parent: 1 - - uid: 1806 + - uid: 1811 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-11.5 parent: 1 - - uid: 1807 + - uid: 1812 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-11.5 parent: 1 - - uid: 1808 + - uid: 1813 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-10.5 parent: 1 - - uid: 1809 + - uid: 1814 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-9.5 parent: 1 - - uid: 1810 + - uid: 1815 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 1 - - uid: 1811 + - uid: 1816 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 1812 + - uid: 1817 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 1813 + - uid: 1818 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 1814 + - uid: 1819 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 1815 + - uid: 1820 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 1816 + - uid: 1821 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 1817 + - uid: 1822 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 1818 + - uid: 1823 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 1819 + - uid: 1824 components: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 1820 + - uid: 1825 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 1821 + - uid: 1826 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,30.5 parent: 1 - - uid: 1822 + - uid: 1827 components: - type: Transform pos: 1.5,-18.5 parent: 1 - - uid: 1823 + - uid: 1828 components: - type: Transform pos: -4.5,-7.5 parent: 1 - - uid: 1824 + - uid: 1829 components: - type: Transform pos: -4.5,-8.5 parent: 1 - - uid: 1825 + - uid: 1830 components: - type: Transform pos: -4.5,-9.5 parent: 1 - - uid: 1826 + - uid: 1831 components: - type: Transform pos: -4.5,-10.5 parent: 1 - - uid: 1827 + - uid: 1832 components: - type: Transform pos: -3.5,-10.5 parent: 1 - - uid: 1828 + - uid: 1833 components: - type: Transform pos: -10.5,-12.5 parent: 1 - - uid: 1829 + - uid: 1834 components: - type: Transform pos: -1.5,-17.5 parent: 1 - - uid: 1830 + - uid: 1835 components: - type: Transform pos: -0.5,-17.5 parent: 1 - - uid: 1831 + - uid: 1836 components: - type: Transform pos: -2.5,-18.5 parent: 1 - - uid: 1832 + - uid: 1837 components: - type: Transform pos: -3.5,-17.5 parent: 1 - - uid: 1833 + - uid: 1838 components: - type: Transform pos: -5.5,-17.5 parent: 1 - - uid: 1834 + - uid: 1839 components: - type: Transform pos: -7.5,-17.5 parent: 1 - - uid: 1835 + - uid: 1840 components: - type: Transform pos: 11.5,-12.5 parent: 1 - - uid: 1836 + - uid: 1841 components: - type: Transform pos: 11.5,-10.5 parent: 1 - - uid: 1837 + - uid: 1842 components: - type: Transform pos: 11.5,-9.5 parent: 1 - - uid: 1838 + - uid: 1843 components: - type: Transform pos: -10.5,-10.5 parent: 1 - - uid: 1839 + - uid: 1844 components: - type: Transform pos: -10.5,-13.5 parent: 1 - - uid: 1840 + - uid: 1845 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-6.5 parent: 1 - - uid: 1841 + - uid: 1846 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 1842 + - uid: 1847 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 1 - - uid: 1843 + - uid: 1848 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,13.5 parent: 1 - - uid: 1844 + - uid: 1849 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-0.5 parent: 1 - - uid: 1845 + - uid: 1850 components: - type: Transform pos: -11.5,-13.5 parent: 1 - - uid: 1846 + - uid: 1851 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-7.5 parent: 1 - - uid: 1847 + - uid: 1852 components: - type: Transform pos: 5.5,-7.5 parent: 1 - - uid: 1848 + - uid: 1853 components: - type: Transform pos: 8.5,-15.5 parent: 1 - - uid: 1849 + - uid: 1854 components: - type: Transform pos: 8.5,-17.5 parent: 1 - - uid: 1850 + - uid: 1855 components: - type: Transform pos: 5.5,-17.5 parent: 1 - - uid: 1851 + - uid: 1856 components: - type: Transform pos: -1.5,-18.5 parent: 1 - - uid: 1852 + - uid: 1857 components: - type: Transform pos: 1.5,-17.5 parent: 1 - - uid: 1853 + - uid: 1858 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-4.5 parent: 1 - - uid: 1854 + - uid: 1859 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-6.5 parent: 1 - - uid: 1855 + - uid: 1860 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-7.5 parent: 1 - - uid: 1856 + - uid: 1861 components: - type: Transform pos: 12.5,-13.5 parent: 1 - - uid: 1857 + - uid: 1862 components: - type: Transform pos: -7.5,-15.5 parent: 1 - - uid: 1858 + - uid: 1863 components: - type: Transform pos: -7.5,-16.5 parent: 1 - - uid: 1859 + - uid: 1864 components: - type: Transform pos: 9.5,-15.5 parent: 1 - - uid: 1860 + - uid: 1865 components: - type: Transform pos: 8.5,-18.5 parent: 1 - - uid: 1861 + - uid: 1866 components: - type: Transform pos: 6.5,-17.5 parent: 1 - - uid: 1862 + - uid: 1867 components: - type: Transform pos: 3.5,-17.5 parent: 1 - - uid: 1863 + - uid: 1868 components: - type: Transform pos: 3.5,-18.5 parent: 1 - - uid: 1864 + - uid: 1869 components: - type: Transform pos: 11.5,-13.5 parent: 1 - - uid: 1865 + - uid: 1870 components: - type: Transform pos: 4.5,-17.5 parent: 1 - - uid: 1866 + - uid: 1871 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 1867 + - uid: 1872 components: - type: Transform pos: 0.5,-17.5 parent: 1 - - uid: 1868 + - uid: 1873 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-4.5 parent: 1 - - uid: 1869 + - uid: 1874 components: - type: Transform pos: 7.5,-17.5 parent: 1 - - uid: 1870 + - uid: 1875 components: - type: Transform pos: 8.5,-16.5 parent: 1 - - uid: 1871 + - uid: 1876 components: - type: Transform pos: -2.5,-17.5 parent: 1 - - uid: 1872 + - uid: 1877 components: - type: Transform pos: -4.5,-17.5 parent: 1 - - uid: 1873 + - uid: 1878 components: - type: Transform pos: -6.5,-17.5 parent: 1 - - uid: 1874 + - uid: 1879 components: - type: Transform pos: -7.5,-18.5 parent: 1 - - uid: 1875 + - uid: 1880 components: - type: Transform pos: 11.5,-11.5 parent: 1 - - uid: 1876 + - uid: 1881 components: - type: Transform pos: -10.5,-11.5 parent: 1 - - uid: 1877 + - uid: 1882 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 1878 + - uid: 1883 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 1 - - uid: 1879 + - uid: 1884 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-5.5 parent: 1 - - uid: 1880 + - uid: 1885 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 1881 + - uid: 1886 components: - type: Transform pos: 10.5,-13.5 parent: 1 - - uid: 1882 + - uid: 1887 components: - type: Transform pos: 10.5,-14.5 parent: 1 - - uid: 1883 + - uid: 1888 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 1 - - uid: 1884 + - uid: 1889 components: - type: Transform pos: 2.5,-18.5 parent: 1 - - uid: 1885 + - uid: 1890 components: - type: Transform pos: 0.5,-18.5 parent: 1 - - uid: 1886 + - uid: 1891 components: - type: Transform pos: -0.5,-18.5 parent: 1 - - uid: 1887 + - uid: 1892 components: - type: Transform pos: 8.5,-8.5 parent: 1 - - uid: 1888 + - uid: 1893 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 1889 + - uid: 1894 components: - type: Transform pos: 12.5,-14.5 parent: 1 - - uid: 1890 + - uid: 1895 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-8.5 parent: 1 - - uid: 1891 + - uid: 1896 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-9.5 parent: 1 - - uid: 1892 + - uid: 1897 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-8.5 parent: 1 - - uid: 1893 + - uid: 1898 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-8.5 parent: 1 - - uid: 1894 + - uid: 1899 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-8.5 parent: 1 - - uid: 1895 + - uid: 1900 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-9.5 parent: 1 - - uid: 1896 + - uid: 1901 components: - type: Transform pos: 8.5,-12.5 parent: 1 - - uid: 1897 + - uid: 1902 components: - type: Transform pos: -6.5,-7.5 parent: 1 - - uid: 1898 + - uid: 1903 components: - type: Transform pos: -6.5,-8.5 parent: 1 - - uid: 1899 + - uid: 1904 components: - type: Transform pos: -6.5,-9.5 parent: 1 - - uid: 1900 + - uid: 1905 components: - type: Transform pos: -6.5,-13.5 parent: 1 - - uid: 1901 + - uid: 1906 components: - type: Transform pos: -6.5,-14.5 parent: 1 - - uid: 1902 + - uid: 1907 components: - type: Transform pos: -6.5,-15.5 parent: 1 - - uid: 1903 + - uid: 1908 components: - type: Transform pos: -0.5,-12.5 parent: 1 - - uid: 1904 + - uid: 1909 components: - type: Transform pos: -0.5,-14.5 parent: 1 - - uid: 1905 + - uid: 1910 components: - type: Transform pos: -0.5,-15.5 parent: 1 - - uid: 1906 + - uid: 1911 components: - type: Transform pos: -0.5,-16.5 parent: 1 - - uid: 1907 + - uid: 1912 components: - type: Transform pos: 1.5,-16.5 parent: 1 - - uid: 1908 + - uid: 1913 components: - type: Transform pos: 1.5,-14.5 parent: 1 - - uid: 1909 + - uid: 1914 components: - type: Transform pos: 1.5,-12.5 parent: 1 - - uid: 1910 + - uid: 1915 components: - type: Transform pos: -3.5,-14.5 parent: 1 - - uid: 1911 + - uid: 1916 components: - type: Transform pos: -3.5,-15.5 parent: 1 - - uid: 1912 + - uid: 1917 components: - type: Transform pos: -3.5,-16.5 parent: 1 - - uid: 1913 + - uid: 1918 components: - type: Transform pos: -6.5,-16.5 parent: 1 - - uid: 1914 + - uid: 1919 components: - type: Transform pos: 8.5,-9.5 parent: 1 - - uid: 1915 + - uid: 1920 components: - type: Transform pos: 8.5,-10.5 parent: 1 - - uid: 1916 + - uid: 1921 components: - type: Transform pos: 2.5,-14.5 parent: 1 - - uid: 1917 + - uid: 1922 components: - type: Transform pos: 8.5,-14.5 parent: 1 - - uid: 1918 + - uid: 1923 components: - type: Transform pos: 8.5,-13.5 parent: 1 - - uid: 1919 + - uid: 1924 components: - type: Transform pos: 9.5,-14.5 parent: 1 - - uid: 1920 + - uid: 1925 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 1921 + - uid: 1926 components: - type: Transform pos: 3.5,-14.5 parent: 1 - - uid: 1922 + - uid: 1927 components: - type: Transform pos: 6.5,-16.5 parent: 1 - - uid: 1923 + - uid: 1928 components: - type: Transform pos: 4.5,-14.5 parent: 1 - - uid: 1924 + - uid: 1929 components: - type: Transform pos: 6.5,-14.5 parent: 1 - - uid: 1925 + - uid: 1930 components: - type: Transform pos: 7.5,-14.5 parent: 1 - - uid: 1926 + - uid: 1931 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - uid: 1927 + - uid: 1932 components: - type: Transform pos: 4.5,-16.5 parent: 1 - - uid: 1928 + - uid: 1933 components: - type: Transform pos: 2.5,-17.5 parent: 1 - - uid: 1929 + - uid: 1934 components: - type: Transform pos: -4.5,37.5 parent: 1 - - uid: 1930 + - uid: 1935 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,4.5 parent: 1 - - uid: 1931 + - uid: 1936 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,3.5 parent: 1 - - uid: 1932 + - uid: 1937 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,5.5 parent: 1 - - uid: 1933 + - uid: 1938 components: - type: Transform pos: -8.5,7.5 parent: 1 - - uid: 1934 + - uid: 1939 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,3.5 parent: 1 - - uid: 1935 + - uid: 1940 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,4.5 parent: 1 - - uid: 1936 + - uid: 1941 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 1 - - uid: 1937 + - uid: 1942 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 1 - - uid: 1938 + - uid: 1943 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,4.5 parent: 1 - - uid: 1939 + - uid: 1944 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,4.5 parent: 1 - - uid: 1940 + - uid: 1945 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,4.5 parent: 1 - - uid: 1941 + - uid: 1946 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 1942 + - uid: 1947 components: - type: Transform pos: 9.5,11.5 parent: 1 - - uid: 1943 + - uid: 1948 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,12.5 parent: 1 - - uid: 1944 + - uid: 1949 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,6.5 parent: 1 - - uid: 1945 + - uid: 1950 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,7.5 parent: 1 - - uid: 1946 + - uid: 1951 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,8.5 parent: 1 - - uid: 1947 + - uid: 1952 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 1 - - uid: 1948 + - uid: 1953 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,10.5 parent: 1 - - uid: 1949 + - uid: 1954 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 1950 + - uid: 1955 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,11.5 parent: 1 - - uid: 1951 + - uid: 1956 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 1 - - uid: 1952 + - uid: 1957 components: - type: Transform pos: -6.5,12.5 parent: 1 - - uid: 1953 + - uid: 1958 components: - type: Transform pos: -6.5,14.5 parent: 1 - - uid: 1954 + - uid: 1959 components: - type: Transform pos: -6.5,15.5 parent: 1 - - uid: 1955 + - uid: 1960 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,23.5 parent: 1 - - uid: 1956 + - uid: 1961 components: - type: Transform pos: -6.5,21.5 parent: 1 - - uid: 1957 + - uid: 1962 components: - type: Transform pos: -6.5,23.5 parent: 1 - - uid: 1958 + - uid: 1963 components: - type: Transform pos: 7.5,12.5 parent: 1 - - uid: 1959 + - uid: 1964 components: - type: Transform pos: 7.5,14.5 parent: 1 - - uid: 1960 + - uid: 1965 components: - type: Transform pos: 7.5,15.5 parent: 1 - - uid: 1961 + - uid: 1966 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,23.5 parent: 1 - - uid: 1962 + - uid: 1967 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,24.5 parent: 1 - - uid: 1963 + - uid: 1968 components: - type: Transform pos: 7.5,21.5 parent: 1 - - uid: 1964 + - uid: 1969 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 1965 + - uid: 1970 components: - type: Transform pos: 7.5,23.5 parent: 1 - - uid: 1966 + - uid: 1971 components: - type: Transform pos: -7.5,33.5 parent: 1 - - uid: 1967 + - uid: 1972 components: - type: Transform pos: 8.5,33.5 parent: 1 - - uid: 1968 + - uid: 1973 components: - type: Transform pos: 5.5,37.5 parent: 1 - - uid: 1969 + - uid: 1974 components: - type: Transform pos: -7.5,29.5 parent: 1 - - uid: 1970 + - uid: 1975 components: - type: Transform pos: -1.5,37.5 parent: 1 - - uid: 1971 + - uid: 1976 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,34.5 parent: 1 - - uid: 1972 + - uid: 1977 components: - type: Transform pos: -2.5,33.5 parent: 1 - - uid: 1973 + - uid: 1978 components: - type: Transform pos: 8.5,29.5 parent: 1 - - uid: 1974 + - uid: 1979 components: - type: Transform pos: 6.5,-7.5 parent: 1 - - uid: 1975 + - uid: 1980 components: - type: Transform pos: -6.5,32.5 parent: 1 - - uid: 1976 + - uid: 1981 components: - type: Transform pos: -6.5,31.5 parent: 1 - - uid: 1977 + - uid: 1982 components: - type: Transform pos: 7.5,31.5 parent: 1 - - uid: 1978 + - uid: 1983 components: - type: Transform pos: 6.5,36.5 parent: 1 - - uid: 1979 + - uid: 1984 components: - type: Transform pos: 7.5,32.5 parent: 1 - - uid: 1980 + - uid: 1985 components: - type: Transform pos: -1.5,35.5 parent: 1 - - uid: 1981 + - uid: 1986 components: - type: Transform pos: -5.5,36.5 parent: 1 - - uid: 1982 + - uid: 1987 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,34.5 parent: 1 - - uid: 1983 + - uid: 1988 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,35.5 parent: 1 - - uid: 1984 + - uid: 1989 components: - type: Transform pos: -1.5,38.5 parent: 1 - - uid: 1985 + - uid: 1990 components: - type: Transform pos: -1.5,36.5 parent: 1 - - uid: 1986 + - uid: 1991 components: - type: Transform pos: -5.5,35.5 parent: 1 - - uid: 1987 + - uid: 1992 components: - type: Transform pos: 6.5,35.5 parent: 1 - - uid: 1988 + - uid: 1993 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,12.5 parent: 1 - - uid: 1989 + - uid: 1994 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,12.5 parent: 1 - - uid: 1990 + - uid: 1995 components: - type: Transform pos: 7.5,33.5 parent: 1 - - uid: 1991 + - uid: 1996 components: - type: Transform pos: -6.5,33.5 parent: 1 - - uid: 1992 + - uid: 1997 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,12.5 parent: 1 - - uid: 1993 + - uid: 1998 components: - type: Transform pos: -6.5,29.5 parent: 1 - - uid: 1994 + - uid: 1999 components: - type: Transform pos: -6.5,30.5 parent: 1 - - uid: 1995 + - uid: 2000 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,30.5 parent: 1 - - uid: 1996 + - uid: 2001 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 1 - - uid: 1997 + - uid: 2002 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 1 - - uid: 1998 + - uid: 2003 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,5.5 parent: 1 - - uid: 1999 + - uid: 2004 components: - type: Transform pos: 9.5,8.5 parent: 1 - - uid: 2000 + - uid: 2005 components: - type: Transform pos: 9.5,10.5 parent: 1 - - uid: 2001 + - uid: 2006 components: - type: Transform pos: 9.5,6.5 parent: 1 - - uid: 2002 + - uid: 2007 components: - type: Transform pos: 9.5,5.5 parent: 1 - - uid: 2003 + - uid: 2008 components: - type: Transform pos: 9.5,7.5 parent: 1 - - uid: 2004 + - uid: 2009 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,12.5 parent: 1 - - uid: 2005 + - uid: 2010 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,12.5 parent: 1 - - uid: 2006 + - uid: 2011 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 1 - - uid: 2007 + - uid: 2012 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 1 - - uid: 2008 + - uid: 2013 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,6.5 parent: 1 - - uid: 2009 + - uid: 2014 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,7.5 parent: 1 - - uid: 2010 + - uid: 2015 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - - uid: 2011 + - uid: 2016 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,10.5 parent: 1 - - uid: 2012 + - uid: 2017 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,11.5 parent: 1 - - uid: 2013 + - uid: 2018 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 1 - - uid: 2014 + - uid: 2019 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 2015 + - uid: 2020 components: - type: Transform pos: 4.5,13.5 parent: 1 - - uid: 2016 + - uid: 2021 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 2017 + - uid: 2022 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 2018 + - uid: 2023 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 2019 + - uid: 2024 components: - type: Transform pos: -2.5,13.5 parent: 1 - - uid: 2020 + - uid: 2025 components: - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 2021 + - uid: 2026 components: - type: Transform pos: 2.5,36.5 parent: 1 - - uid: 2022 + - uid: 2027 components: - type: Transform pos: 2.5,37.5 parent: 1 - - uid: 2023 + - uid: 2028 components: - type: Transform pos: 2.5,38.5 parent: 1 - - uid: 2024 + - uid: 2029 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,38.5 parent: 1 - - uid: 2025 + - uid: 2030 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,38.5 parent: 1 - - uid: 2026 + - uid: 2031 components: - type: Transform pos: 2.5,35.5 parent: 1 - - uid: 2027 + - uid: 2032 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 2028 + - uid: 2033 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,28.5 parent: 1 - - uid: 2029 + - uid: 2034 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,28.5 parent: 1 - - uid: 2030 + - uid: 2035 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,24.5 parent: 1 - - uid: 2031 + - uid: 2036 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,29.5 parent: 1 - - uid: 2032 + - uid: 2037 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,28.5 parent: 1 - - uid: 2033 + - uid: 2038 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,24.5 parent: 1 - - uid: 2034 + - uid: 2039 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,23.5 parent: 1 - - uid: 2035 + - uid: 2040 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,22.5 parent: 1 - - uid: 2036 + - uid: 2041 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,21.5 parent: 1 - - uid: 2037 + - uid: 2042 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,20.5 parent: 1 - - uid: 2038 + - uid: 2043 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,19.5 parent: 1 - - uid: 2039 + - uid: 2044 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,18.5 parent: 1 - - uid: 2040 + - uid: 2045 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,17.5 parent: 1 - - uid: 2041 + - uid: 2046 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,16.5 parent: 1 - - uid: 2042 + - uid: 2047 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,15.5 parent: 1 - - uid: 2043 + - uid: 2048 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,14.5 parent: 1 - - uid: 2044 + - uid: 2049 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,14.5 parent: 1 - - uid: 2045 + - uid: 2050 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,15.5 parent: 1 - - uid: 2046 + - uid: 2051 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,14.5 parent: 1 - - uid: 2047 + - uid: 2052 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,14.5 parent: 1 - - uid: 2048 + - uid: 2053 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,16.5 parent: 1 - - uid: 2049 + - uid: 2054 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,17.5 parent: 1 - - uid: 2050 + - uid: 2055 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,18.5 parent: 1 - - uid: 2051 + - uid: 2056 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,19.5 parent: 1 - - uid: 2052 + - uid: 2057 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,20.5 parent: 1 - - uid: 2053 + - uid: 2058 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,21.5 parent: 1 - - uid: 2054 + - uid: 2059 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,22.5 parent: 1 - - uid: 2055 + - uid: 2060 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,23.5 parent: 1 - - uid: 2056 + - uid: 2061 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,24.5 parent: 1 - - uid: 2057 + - uid: 2062 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,28.5 parent: 1 - - uid: 2058 + - uid: 2063 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,29.5 parent: 1 - - uid: 2059 + - uid: 2064 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,29.5 parent: 1 - - uid: 2060 + - uid: 2065 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,35.5 parent: 1 - - uid: 2061 + - uid: 2066 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,29.5 parent: 1 - - uid: 2062 + - uid: 2067 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,29.5 parent: 1 - - uid: 2063 + - uid: 2068 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,35.5 parent: 1 - - uid: 2064 + - uid: 2069 components: - type: Transform pos: 1.5,29.5 parent: 1 - - uid: 2065 + - uid: 2070 components: - type: Transform pos: -2.5,35.5 parent: 1 - - uid: 2066 + - uid: 2071 components: - type: Transform pos: -5.5,29.5 parent: 1 - - uid: 2067 + - uid: 2072 components: - type: Transform pos: 6.5,29.5 parent: 1 - - uid: 2068 + - uid: 2073 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,14.5 parent: 1 - - uid: 2069 + - uid: 2074 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,15.5 parent: 1 - - uid: 2070 + - uid: 2075 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,17.5 parent: 1 - - uid: 2071 + - uid: 2076 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,18.5 parent: 1 - - uid: 2072 + - uid: 2077 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,29.5 parent: 1 - - uid: 2073 + - uid: 2078 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,29.5 parent: 1 - - uid: 2074 + - uid: 2079 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,14.5 parent: 1 - - uid: 2075 + - uid: 2080 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,15.5 parent: 1 - - uid: 2076 + - uid: 2081 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,32.5 parent: 1 - - uid: 2077 + - uid: 2082 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,17.5 parent: 1 - - uid: 2078 + - uid: 2083 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,18.5 parent: 1 - - uid: 2079 + - uid: 2084 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,19.5 parent: 1 - - uid: 2080 + - uid: 2085 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,19.5 parent: 1 - - uid: 2081 + - uid: 2086 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,19.5 parent: 1 - - uid: 2082 + - uid: 2087 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,19.5 parent: 1 - - uid: 2083 + - uid: 2088 components: - type: Transform pos: 3.5,35.5 parent: 1 - - uid: 2084 + - uid: 2089 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,19.5 parent: 1 - - uid: 2085 + - uid: 2090 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,34.5 parent: 1 - - uid: 2086 + - uid: 2091 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 2087 + - uid: 2092 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 2088 + - uid: 2093 components: - type: Transform pos: -5.5,37.5 parent: 1 - - uid: 2089 + - uid: 2094 components: - type: Transform pos: -4.5,38.5 parent: 1 - - uid: 2090 + - uid: 2095 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,35.5 parent: 1 - - uid: 2091 + - uid: 2096 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-11.5 parent: 1 - - uid: 2092 + - uid: 2097 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,30.5 parent: 1 - - uid: 2093 + - uid: 2098 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,29.5 parent: 1 - - uid: 2094 + - uid: 2099 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,32.5 parent: 1 - - uid: 2095 + - uid: 2100 components: - type: Transform pos: -8.5,4.5 parent: 1 - - uid: 2096 + - uid: 2101 components: - type: Transform pos: -2.5,34.5 parent: 1 - - uid: 2097 + - uid: 2102 components: - type: Transform pos: 9.5,9.5 parent: 1 - - uid: 2098 + - uid: 2103 components: - type: Transform pos: -8.5,5.5 parent: 1 - - uid: 2099 + - uid: 2104 components: - type: Transform pos: 6.5,37.5 parent: 1 - - uid: 2100 + - uid: 2105 components: - type: Transform pos: 5.5,38.5 parent: 1 - - uid: 2101 + - uid: 2106 components: - type: Transform pos: -7.5,3.5 parent: 1 - - uid: 2102 + - uid: 2107 components: - type: Transform pos: -7.5,-4.5 parent: 1 - - uid: 2103 + - uid: 2108 components: - type: Transform pos: -8.5,10.5 parent: 1 - - uid: 2104 + - uid: 2109 components: - type: Transform pos: -8.5,9.5 parent: 1 - - uid: 2105 + - uid: 2110 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,29.5 parent: 1 - - uid: 2106 + - uid: 2111 components: - type: Transform pos: -8.5,11.5 parent: 1 - - uid: 2107 + - uid: 2112 components: - type: Transform pos: 8.5,-4.5 parent: 1 - - uid: 2108 + - uid: 2113 components: - type: Transform pos: -8.5,8.5 parent: 1 - - uid: 2109 + - uid: 2114 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-11.5 parent: 1 - - uid: 2110 + - uid: 2115 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-11.5 parent: 1 - - uid: 2111 + - uid: 2116 components: - type: Transform rot: -1.5707963267948966 rad @@ -19073,104 +19333,104 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 2112 + - uid: 2117 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 2113 + - uid: 2118 components: - type: Transform pos: -11.5,-9.5 parent: 1 - - uid: 2114 + - uid: 2119 components: - type: Transform pos: -8.5,28.5 parent: 1 - - uid: 2115 + - uid: 2120 components: - type: Transform pos: -8.5,12.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestCurved entities: - - uid: 2116 + - uid: 2121 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 2117 + - uid: 2122 components: - type: Transform pos: 12.5,-9.5 parent: 1 - - uid: 2118 + - uid: 2123 components: - type: Transform pos: 9.5,28.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestHollow entities: - - uid: 2119 + - uid: 2124 components: - type: Transform pos: 9.5,12.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastCurved entities: - - uid: 2120 + - uid: 2125 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 2121 + - uid: 2126 components: - type: Transform pos: -2.5,-19.5 parent: 1 - - uid: 2122 + - uid: 2127 components: - type: Transform pos: -8.5,3.5 parent: 1 - - uid: 2123 + - uid: 2128 components: - type: Transform pos: -8.5,24.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestCurved entities: - - uid: 2124 + - uid: 2129 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 2125 + - uid: 2130 components: - type: Transform pos: 3.5,-19.5 parent: 1 - - uid: 2126 + - uid: 2131 components: - type: Transform pos: 9.5,24.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestHollow entities: - - uid: 2127 + - uid: 2132 components: - type: Transform pos: 10.5,-15.5 parent: 1 - - uid: 2128 + - uid: 2133 components: - type: Transform pos: 9.5,4.5 parent: 1 - proto: WarpPointShip entities: - - uid: 2129 + - uid: 2134 components: - type: MetaData name: NCWL Dear Clementine @@ -19179,14 +19439,14 @@ entities: parent: 1 - proto: WaterCooler entities: - - uid: 2130 + - uid: 2135 components: - type: Transform pos: 2.5,-6.5 parent: 1 - proto: WeaponTurretMortar entities: - - uid: 2131 + - uid: 2136 components: - type: Transform rot: 1.5707963267948966 rad @@ -19219,8 +19479,8 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 1128 - - uid: 2132 + linkedConsoleId: 1129 + - uid: 2137 components: - type: Transform rot: -1.5707963267948966 rad @@ -19253,8 +19513,8 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 1128 - - uid: 2133 + linkedConsoleId: 1129 + - uid: 2138 components: - type: Transform rot: 1.5707963267948966 rad @@ -19287,15 +19547,15 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 1128 - - uid: 2134 + linkedConsoleId: 1129 + - uid: 2139 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-3.5 parent: 1 - type: PointCannon - linkedConsoleId: 1128 + linkedConsoleId: 1129 - type: ApcPowerReceiver powerLoad: 5 - type: Battery @@ -19322,7 +19582,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 2135 + - uid: 2140 components: - type: Transform rot: -1.5707963267948966 rad @@ -19355,15 +19615,15 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 1128 - - uid: 2136 + linkedConsoleId: 1129 + - uid: 2141 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,2.5 parent: 1 - type: PointCannon - linkedConsoleId: 1128 + linkedConsoleId: 1129 - type: ApcPowerReceiver powerLoad: 5 - type: Battery @@ -19390,14 +19650,14 @@ entities: showEnts: False occludes: True ents: [] - - uid: 2137 + - uid: 2142 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-3.5 parent: 1 - type: PointCannon - linkedConsoleId: 1128 + linkedConsoleId: 1129 - type: ApcPowerReceiver powerLoad: 5 - type: Battery @@ -19424,14 +19684,14 @@ entities: showEnts: False occludes: True ents: [] - - uid: 2138 + - uid: 2143 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,2.5 parent: 1 - type: PointCannon - linkedConsoleId: 1128 + linkedConsoleId: 1129 - type: ApcPowerReceiver powerLoad: 5 - type: Battery @@ -19460,7 +19720,7 @@ entities: ents: [] - proto: WeaponTurretPDT entities: - - uid: 2139 + - uid: 2144 components: - type: Transform rot: 3.141592653589793 rad @@ -19485,8 +19745,8 @@ entities: - type: Battery startingCharge: 0 - type: PointCannon - linkedConsoleId: 1128 - - uid: 2140 + linkedConsoleId: 1129 + - uid: 2145 components: - type: Transform rot: 3.141592653589793 rad @@ -19511,8 +19771,8 @@ entities: - type: Battery startingCharge: 0 - type: PointCannon - linkedConsoleId: 1128 - - uid: 2141 + linkedConsoleId: 1129 + - uid: 2146 components: - type: Transform rot: 3.141592653589793 rad @@ -19537,14 +19797,14 @@ entities: - type: Battery startingCharge: 0 - type: PointCannon - linkedConsoleId: 1128 - - uid: 2142 + linkedConsoleId: 1129 + - uid: 2147 components: - type: Transform pos: -7.5,-19.5 parent: 1 - type: PointCannon - linkedConsoleId: 1128 + linkedConsoleId: 1129 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -19563,14 +19823,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2143 + - uid: 2148 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-8.5 parent: 1 - type: PointCannon - linkedConsoleId: 1128 + linkedConsoleId: 1129 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -19589,14 +19849,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2144 + - uid: 2149 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-8.5 parent: 1 - type: PointCannon - linkedConsoleId: 1128 + linkedConsoleId: 1129 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -19615,14 +19875,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2145 + - uid: 2150 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 1 - type: PointCannon - linkedConsoleId: 1128 + linkedConsoleId: 1129 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -19641,14 +19901,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2146 + - uid: 2151 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 1 - type: PointCannon - linkedConsoleId: 1128 + linkedConsoleId: 1129 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -19667,14 +19927,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2147 + - uid: 2152 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,13.5 parent: 1 - type: PointCannon - linkedConsoleId: 1128 + linkedConsoleId: 1129 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -19693,14 +19953,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2148 + - uid: 2153 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,22.5 parent: 1 - type: PointCannon - linkedConsoleId: 1128 + linkedConsoleId: 1129 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -19719,14 +19979,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2149 + - uid: 2154 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,22.5 parent: 1 - type: PointCannon - linkedConsoleId: 1128 + linkedConsoleId: 1129 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -19745,14 +20005,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2150 + - uid: 2155 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,13.5 parent: 1 - type: PointCannon - linkedConsoleId: 1128 + linkedConsoleId: 1129 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -19771,14 +20031,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2151 + - uid: 2156 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,36.5 parent: 1 - type: PointCannon - linkedConsoleId: 1128 + linkedConsoleId: 1129 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -19797,14 +20057,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2152 + - uid: 2157 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,18.5 parent: 1 - type: PointCannon - linkedConsoleId: 1128 + linkedConsoleId: 1129 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -19823,14 +20083,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2153 + - uid: 2158 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,18.5 parent: 1 - type: PointCannon - linkedConsoleId: 1128 + linkedConsoleId: 1129 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -19849,7 +20109,7 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2154 + - uid: 2159 components: - type: Transform pos: 0.5,-20.5 @@ -19873,8 +20133,8 @@ entities: - type: Battery startingCharge: 0 - type: PointCannon - linkedConsoleId: 1128 - - uid: 2155 + linkedConsoleId: 1129 + - uid: 2160 components: - type: Transform pos: 8.5,-19.5 @@ -19898,51 +20158,51 @@ entities: - type: Battery startingCharge: 0 - type: PointCannon - linkedConsoleId: 1128 + linkedConsoleId: 1129 - proto: WindoorSecure entities: - - uid: 2156 + - uid: 2161 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 2157 + - uid: 2162 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,36.5 parent: 1 - - uid: 2158 + - uid: 2163 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,36.5 parent: 1 - - uid: 2159 + - uid: 2164 components: - type: Transform pos: 6.5,-12.5 parent: 1 - - uid: 2160 + - uid: 2165 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,13.5 parent: 1 - - uid: 2161 + - uid: 2166 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,13.5 parent: 1 - - uid: 2162 + - uid: 2167 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,4.5 parent: 1 - - uid: 2163 + - uid: 2168 components: - type: Transform rot: 3.141592653589793 rad @@ -19950,60 +20210,60 @@ entities: parent: 1 - proto: WindoorSecureNCWLCommand entities: - - uid: 2164 + - uid: 2169 components: - type: Transform pos: 1.5,-7.5 parent: 1 - proto: WindowReinforcedDirectional entities: - - uid: 2165 + - uid: 2170 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-8.5 parent: 1 - - uid: 2166 + - uid: 2171 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-12.5 parent: 1 - - uid: 2167 + - uid: 2172 components: - type: Transform pos: 3.5,-12.5 parent: 1 - - uid: 2168 + - uid: 2173 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-12.5 parent: 1 - - uid: 2169 + - uid: 2174 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-11.5 parent: 1 - - uid: 2170 + - uid: 2175 components: - type: Transform pos: 4.5,-12.5 parent: 1 - - uid: 2171 + - uid: 2176 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-9.5 parent: 1 - - uid: 2172 + - uid: 2177 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-10.5 parent: 1 - - uid: 2173 + - uid: 2178 components: - type: Transform pos: 5.5,-12.5 diff --git a/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml b/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml index b7175e921a2..37c08cf7ec1 100644 --- a/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml +++ b/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml @@ -4,8 +4,8 @@ meta: engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 03/10/2026 23:04:44 - entityCount: 1805 + time: 03/11/2026 00:24:26 + entityCount: 1837 maps: [] grids: - 1 @@ -120,7 +120,7 @@ entities: 32: 6,6 33: 5,6 34: 5,6 - 2593: 2,0 + 2523: 2,0 - node: angle: 3.141592653589793 rad color: '#D381C996' @@ -133,141 +133,141 @@ entities: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 2516: 5,4 - 2556: 0,-19 - 2637: 8,1 - 2646: 8,1 - 2648: 0,5 - 2649: 1,4 + 2446: 5,4 + 2486: 0,-19 + 2567: 8,1 + 2576: 8,1 + 2578: 0,5 + 2579: 1,4 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 2514: 3,4 - 2524: -2,0 - 2533: -3,-18 - 2647: 7,4 - 2661: 1,1 + 2444: 3,4 + 2454: -2,0 + 2463: -3,-18 + 2577: 7,4 + 2591: 1,1 - node: color: '#D381C996' id: BrickTileSteelCornerSe decals: - 2515: 5,3 - 2555: 0,-21 - 2650: 1,3 + 2445: 5,3 + 2485: 0,-21 + 2580: 1,3 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: - 2525: -7,-23 - 2654: -2,2 + 2455: -7,-23 + 2584: -2,2 - node: color: '#D381C996' id: BrickTileSteelInnerNe decals: - 2630: -1,-19 - 2645: 7,1 - 2658: 0,4 + 2560: -1,-19 + 2575: 7,1 + 2588: 0,4 - node: color: '#D381C996' id: BrickTileSteelInnerNw decals: - 2628: -3,-22 - 2631: -2,-18 - 2642: 7,1 - 2663: 1,0 + 2558: -3,-22 + 2561: -2,-18 + 2572: 7,1 + 2593: 1,0 - node: color: '#D381C996' id: BrickTileSteelInnerSe decals: - 2629: -2,-21 - 2657: -1,3 + 2559: -2,-21 + 2587: -1,3 - node: color: '#D381C996' id: BrickTileSteelLineE decals: - 2552: -2,-22 - 2557: -1,-18 - 2558: -1,-16 - 2559: -1,-17 - 2560: -1,-15 - 2561: -1,-14 - 2562: -1,-13 - 2563: -1,-10 - 2564: -1,-9 - 2565: -1,-8 - 2566: -1,-7 - 2567: -1,-6 - 2568: -1,-5 - 2633: 8,-3 - 2634: 8,-2 - 2635: 8,-1 - 2636: 8,0 - 2643: 7,3 - 2644: 7,2 - 2656: -1,2 + 2482: -2,-22 + 2487: -1,-18 + 2488: -1,-16 + 2489: -1,-17 + 2490: -1,-15 + 2491: -1,-14 + 2492: -1,-13 + 2493: -1,-10 + 2494: -1,-9 + 2495: -1,-8 + 2496: -1,-7 + 2497: -1,-6 + 2498: -1,-5 + 2563: 8,-3 + 2564: 8,-2 + 2565: 8,-1 + 2566: 8,0 + 2573: 7,3 + 2574: 7,2 + 2586: -1,2 - node: color: '#D381C996' id: BrickTileSteelLineN decals: - 2526: -7,-22 - 2527: -6,-22 - 2528: -5,-22 - 2529: -4,-22 - 2640: 6,1 - 2641: 5,1 - 2651: -2,5 - 2662: 0,0 - 2664: 2,1 + 2456: -7,-22 + 2457: -6,-22 + 2458: -5,-22 + 2459: -4,-22 + 2570: 6,1 + 2571: 5,1 + 2581: -2,5 + 2592: 0,0 + 2594: 2,1 - node: color: '#D381C996' id: BrickTileSteelLineS decals: - 2511: 5,3 - 2512: 4,3 - 2513: 5,3 - 2517: 8,-4 - 2518: 7,-4 - 2519: 6,-4 - 2547: -5,-23 - 2548: -4,-23 - 2549: -3,-23 - 2550: -2,-23 - 2551: -1,-23 - 2553: -1,-21 - 2554: 0,-21 - 2632: 5,-4 - 2655: 0,3 + 2441: 5,3 + 2442: 4,3 + 2443: 5,3 + 2447: 8,-4 + 2448: 7,-4 + 2449: 6,-4 + 2477: -5,-23 + 2478: -4,-23 + 2479: -3,-23 + 2480: -2,-23 + 2481: -1,-23 + 2483: -1,-21 + 2484: 0,-21 + 2562: 5,-4 + 2585: 0,3 - node: color: '#D381C996' id: BrickTileSteelLineW decals: - 2520: -2,-4 - 2521: -2,-2 - 2522: -2,-3 - 2523: -2,-1 - 2530: -3,-21 - 2531: -3,-20 - 2532: -3,-19 - 2534: -2,-17 - 2535: -2,-16 - 2536: -2,-15 - 2537: -2,-14 - 2538: -2,-13 - 2539: -2,-12 - 2540: -2,-11 - 2541: -2,-10 - 2542: -2,-9 - 2543: -2,-8 - 2544: -2,-7 - 2545: -2,-6 - 2546: -2,-5 - 2638: 7,3 - 2639: 7,2 - 2652: -2,4 - 2653: -2,3 - 2659: 3,3 - 2660: 3,2 + 2450: -2,-4 + 2451: -2,-2 + 2452: -2,-3 + 2453: -2,-1 + 2460: -3,-21 + 2461: -3,-20 + 2462: -3,-19 + 2464: -2,-17 + 2465: -2,-16 + 2466: -2,-15 + 2467: -2,-14 + 2468: -2,-13 + 2469: -2,-12 + 2470: -2,-11 + 2471: -2,-10 + 2472: -2,-9 + 2473: -2,-8 + 2474: -2,-7 + 2475: -2,-6 + 2476: -2,-5 + 2568: 7,3 + 2569: 7,2 + 2582: -2,4 + 2583: -2,3 + 2589: 3,3 + 2590: 3,2 - node: color: '#D381C996' id: ConcreteTrimCornerNe @@ -334,69 +334,69 @@ entities: color: '#D381C996' id: DirtHeavy decals: - 2473: -4,9 - 2474: -5,10 - 2475: -3,10 - 2476: -5,11 - 2477: -3,9 - 2478: -4,8 - 2695: 6,10 - 2696: 6,11 - 2697: 2,9 + 2403: -4,9 + 2404: -5,10 + 2405: -3,10 + 2406: -5,11 + 2407: -3,9 + 2408: -4,8 + 2625: 6,10 + 2626: 6,11 + 2627: 2,9 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 2594: -1,-4 - 2595: -2,-3 - 2596: 3,-3 - 2597: 7,-3 - 2598: 7,2 - 2599: 6,-1 - 2600: 8,-2 - 2601: 1,-1 - 2602: -5,4 - 2603: -3,7 - 2604: -5,9 - 2605: -5,8 - 2606: -4,8 - 2607: -1,7 - 2608: 4,7 - 2609: 2,9 - 2610: 6,11 - 2611: 6,7 - 2612: 2,7 - 2613: 4,3 - 2614: 4,4 - 2615: -6,-7 - 2616: -5,-9 - 2617: -5,-5 - 2618: -7,-5 - 2619: 2,11 - 2620: 2,-30 - 2621: -1,-30 - 2622: -1,-29 - 2623: -3,-31 - 2624: -5,-30 - 2665: 7,-21 - 2666: 2,-20 - 2667: -2,-20 - 2668: -3,-19 - 2669: -2,-12 - 2670: -1,-10 - 2671: -2,-16 - 2672: -5,-22 - 2673: -7,-23 - 2674: -6,-25 - 2675: -6,-27 - 2676: 8,-20 - 2677: 7,-22 - 2678: 11,-22 - 2679: 11,-23 - 2705: -2,4 - 2706: -1,5 - 2707: -4,9 - 2708: -4,10 + 2524: -1,-4 + 2525: -2,-3 + 2526: 3,-3 + 2527: 7,-3 + 2528: 7,2 + 2529: 6,-1 + 2530: 8,-2 + 2531: 1,-1 + 2532: -5,4 + 2533: -3,7 + 2534: -5,9 + 2535: -5,8 + 2536: -4,8 + 2537: -1,7 + 2538: 4,7 + 2539: 2,9 + 2540: 6,11 + 2541: 6,7 + 2542: 2,7 + 2543: 4,3 + 2544: 4,4 + 2545: -6,-7 + 2546: -5,-9 + 2547: -5,-5 + 2548: -7,-5 + 2549: 2,11 + 2550: 2,-30 + 2551: -1,-30 + 2552: -1,-29 + 2553: -3,-31 + 2554: -5,-30 + 2595: 7,-21 + 2596: 2,-20 + 2597: -2,-20 + 2598: -3,-19 + 2599: -2,-12 + 2600: -1,-10 + 2601: -2,-16 + 2602: -5,-22 + 2603: -7,-23 + 2604: -6,-25 + 2605: -6,-27 + 2606: 8,-20 + 2607: 7,-22 + 2608: 11,-22 + 2609: 11,-23 + 2635: -2,4 + 2636: -1,5 + 2637: -4,9 + 2638: -4,10 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' @@ -427,17 +427,17 @@ entities: color: '#D381C996' id: DirtHeavyMonotile decals: - 2698: -5,-22 + 2628: -5,-22 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2699: -6,-22 - 2700: -5,-22 - 2701: -1,-12 - 2702: -2,-10 - 2703: 2,-3 - 2704: 7,1 + 2629: -6,-22 + 2630: -5,-22 + 2631: -1,-12 + 2632: -2,-10 + 2633: 2,-3 + 2634: 7,1 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' @@ -500,162 +500,186 @@ entities: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalCorner decals: - 2827: -8,-12 - 3059: -8,-12 - 3291: -8,-12 - 3523: -8,-12 - 3755: -8,-12 + 2757: -8,-12 + 2984: -8,-12 + 3211: -8,-12 + 3438: -8,-12 + 3650: -8,-12 + 3888: -8,-12 - node: zIndex: 1 angle: -3.141592653589793 rad id: FloorTechMaintDirectionalCorner decals: - 2821: -8,-16 - 3053: -8,-16 - 3285: -8,-16 - 3517: -8,-16 - 3749: -8,-16 + 2751: -8,-16 + 2978: -8,-16 + 3205: -8,-16 + 3432: -8,-16 + 3644: -8,-16 + 3882: -8,-16 - node: zIndex: 1 angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalCorner decals: - 2836: -4,-16 - 3068: -4,-16 - 3300: -4,-16 - 3532: -4,-16 - 3764: -4,-16 + 2766: -4,-16 + 2993: -4,-16 + 3220: -4,-16 + 3447: -4,-16 + 3659: -4,-16 + 3897: -4,-16 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner decals: - 2842: -4,-12 - 3074: -4,-12 - 3306: -4,-12 - 3538: -4,-12 - 3770: -4,-12 + 2772: -4,-12 + 2999: -4,-12 + 3226: -4,-12 + 3453: -4,-12 + 3665: -4,-12 + 3903: -4,-12 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge decals: - 2820: -8,-16 - 2822: -8,-15 - 2823: -8,-14 - 2824: -8,-13 - 2826: -8,-12 - 3052: -8,-16 - 3054: -8,-15 - 3055: -8,-14 - 3056: -8,-13 - 3058: -8,-12 - 3284: -8,-16 - 3286: -8,-15 - 3287: -8,-14 - 3288: -8,-13 - 3290: -8,-12 - 3516: -8,-16 - 3518: -8,-15 - 3519: -8,-14 - 3520: -8,-13 - 3522: -8,-12 - 3748: -8,-16 - 3750: -8,-15 - 3751: -8,-14 - 3752: -8,-13 - 3754: -8,-12 + 2750: -8,-16 + 2752: -8,-15 + 2753: -8,-14 + 2754: -8,-13 + 2756: -8,-12 + 2977: -8,-16 + 2979: -8,-15 + 2980: -8,-14 + 2981: -8,-13 + 2983: -8,-12 + 3204: -8,-16 + 3206: -8,-15 + 3207: -8,-14 + 3208: -8,-13 + 3210: -8,-12 + 3431: -8,-16 + 3433: -8,-15 + 3434: -8,-14 + 3435: -8,-13 + 3437: -8,-12 + 3643: -8,-16 + 3645: -8,-15 + 3646: -8,-14 + 3647: -8,-13 + 3649: -8,-12 + 3881: -8,-16 + 3883: -8,-15 + 3884: -8,-14 + 3885: -8,-13 + 3887: -8,-12 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge decals: - 2819: -8,-16 - 2828: -7,-16 - 2830: -6,-16 - 2832: -5,-16 - 2834: -4,-16 - 3051: -8,-16 - 3060: -7,-16 - 3062: -6,-16 - 3064: -5,-16 - 3066: -4,-16 - 3283: -8,-16 - 3292: -7,-16 - 3294: -6,-16 - 3296: -5,-16 - 3298: -4,-16 - 3515: -8,-16 - 3524: -7,-16 - 3526: -6,-16 - 3528: -5,-16 - 3530: -4,-16 - 3747: -8,-16 - 3756: -7,-16 - 3758: -6,-16 - 3760: -5,-16 - 3762: -4,-16 + 2749: -8,-16 + 2758: -7,-16 + 2760: -6,-16 + 2762: -5,-16 + 2764: -4,-16 + 2976: -8,-16 + 2985: -7,-16 + 2987: -6,-16 + 2989: -5,-16 + 2991: -4,-16 + 3203: -8,-16 + 3212: -7,-16 + 3214: -6,-16 + 3216: -5,-16 + 3218: -4,-16 + 3430: -8,-16 + 3439: -7,-16 + 3441: -6,-16 + 3443: -5,-16 + 3445: -4,-16 + 3642: -8,-16 + 3651: -7,-16 + 3653: -6,-16 + 3655: -5,-16 + 3657: -4,-16 + 3880: -8,-16 + 3889: -7,-16 + 3891: -6,-16 + 3893: -5,-16 + 3895: -4,-16 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge decals: - 2835: -4,-16 - 2837: -4,-15 - 2838: -4,-14 - 2839: -4,-13 - 2840: -4,-12 - 3067: -4,-16 - 3069: -4,-15 - 3070: -4,-14 - 3071: -4,-13 - 3072: -4,-12 - 3299: -4,-16 - 3301: -4,-15 - 3302: -4,-14 - 3303: -4,-13 - 3304: -4,-12 - 3531: -4,-16 - 3533: -4,-15 - 3534: -4,-14 - 3535: -4,-13 - 3536: -4,-12 - 3763: -4,-16 - 3765: -4,-15 - 3766: -4,-14 - 3767: -4,-13 - 3768: -4,-12 + 2765: -4,-16 + 2767: -4,-15 + 2768: -4,-14 + 2769: -4,-13 + 2770: -4,-12 + 2992: -4,-16 + 2994: -4,-15 + 2995: -4,-14 + 2996: -4,-13 + 2997: -4,-12 + 3219: -4,-16 + 3221: -4,-15 + 3222: -4,-14 + 3223: -4,-13 + 3224: -4,-12 + 3446: -4,-16 + 3448: -4,-15 + 3449: -4,-14 + 3450: -4,-13 + 3451: -4,-12 + 3658: -4,-16 + 3660: -4,-15 + 3661: -4,-14 + 3662: -4,-13 + 3663: -4,-12 + 3896: -4,-16 + 3898: -4,-15 + 3899: -4,-14 + 3900: -4,-13 + 3901: -4,-12 - node: id: FloorTechMaintDirectionalEdge decals: - 2825: -8,-12 - 2829: -7,-12 - 2831: -6,-12 - 2833: -5,-12 - 2841: -4,-12 - 3057: -8,-12 - 3061: -7,-12 - 3063: -6,-12 - 3065: -5,-12 - 3073: -4,-12 - 3289: -8,-12 - 3293: -7,-12 - 3295: -6,-12 - 3297: -5,-12 - 3305: -4,-12 - 3521: -8,-12 - 3525: -7,-12 - 3527: -6,-12 - 3529: -5,-12 - 3537: -4,-12 - 3753: -8,-12 - 3757: -7,-12 - 3759: -6,-12 - 3761: -5,-12 - 3769: -4,-12 + 2755: -8,-12 + 2759: -7,-12 + 2761: -6,-12 + 2763: -5,-12 + 2771: -4,-12 + 2982: -8,-12 + 2986: -7,-12 + 2988: -6,-12 + 2990: -5,-12 + 2998: -4,-12 + 3209: -8,-12 + 3213: -7,-12 + 3215: -6,-12 + 3217: -5,-12 + 3225: -4,-12 + 3436: -8,-12 + 3440: -7,-12 + 3442: -6,-12 + 3444: -5,-12 + 3452: -4,-12 + 3648: -8,-12 + 3652: -7,-12 + 3654: -6,-12 + 3656: -5,-12 + 3664: -4,-12 + 3886: -8,-12 + 3890: -7,-12 + 3892: -6,-12 + 3894: -5,-12 + 3902: -4,-12 - node: color: '#D381C996' id: FloorTechMaintDirectionalEdge decals: - 2680: -7,-12 - 2681: -6,-12 - 2682: -5,-12 + 2610: -7,-12 + 2611: -6,-12 + 2612: -5,-12 - node: zIndex: 1 id: LatticeCornerNE @@ -667,327 +691,347 @@ entities: 215: 8,2 223: 8,3 261: -13,-22 - 271: -13,-20 - 274: -10,-28 - 279: -8,-32 - 284: 2,-27 - 295: 10,-27 - 303: 11,-26 - 321: 4,16 - 334: 4,12 - 342: 4,13 - 350: 4,14 - 358: 4,15 - 366: 8,2 - 374: 8,3 - 412: -13,-22 - 422: -13,-20 - 425: -10,-28 - 430: -8,-32 - 435: 2,-27 - 446: 10,-27 - 454: 11,-26 - 472: 4,16 - 485: 4,12 - 493: 4,13 - 501: 4,14 - 509: 4,15 - 517: 8,2 - 525: 8,3 - 563: -13,-22 - 573: -13,-20 - 576: -10,-28 - 581: -8,-32 - 586: 2,-27 - 597: 10,-27 - 605: 11,-26 - 623: 4,16 - 636: 4,12 - 644: 4,13 - 652: 4,14 - 660: 4,15 - 668: 8,2 - 676: 8,3 - 714: -13,-22 - 724: -13,-20 - 727: -10,-28 - 732: -8,-32 - 737: 2,-27 - 748: 10,-27 - 756: 11,-26 - 774: 4,16 - 787: 4,12 - 795: 4,13 - 803: 4,14 - 811: 4,15 - 819: 8,2 - 827: 8,3 - 865: -13,-22 - 875: -13,-20 - 878: -10,-28 - 883: -8,-32 - 888: 2,-27 - 899: 10,-27 - 907: 11,-26 - 925: 4,16 - 938: 4,12 - 946: 4,13 - 954: 4,14 - 962: 4,15 - 970: 8,2 - 978: 8,3 - 1016: -13,-22 - 1026: -13,-20 - 1029: -10,-28 - 1034: -8,-32 - 1039: 2,-27 - 1050: 10,-27 - 1058: 11,-26 - 1076: 4,16 - 1089: 4,12 - 1097: 4,13 - 1105: 4,14 - 1113: 4,15 - 1121: 8,2 - 1129: 8,3 - 1167: -13,-22 - 1177: -13,-20 - 1180: -10,-28 - 1185: -8,-32 - 1190: 2,-27 - 1201: 10,-27 - 1209: 11,-26 - 1227: 4,16 - 1240: 4,12 - 1248: 4,13 - 1256: 4,14 - 1264: 4,15 - 1272: 8,2 - 1280: 8,3 - 1318: -13,-22 - 1328: -13,-20 - 1331: -10,-28 - 1336: -8,-32 - 1341: 2,-27 - 1352: 10,-27 - 1360: 11,-26 - 1378: 4,16 - 1391: 4,12 - 1399: 4,13 - 1407: 4,14 - 1415: 4,15 - 1423: 8,2 - 1431: 8,3 - 1469: -13,-22 - 1479: -13,-20 - 1482: -10,-28 - 1487: -8,-32 - 1492: 2,-27 - 1503: 10,-27 - 1511: 11,-26 - 1529: 4,16 - 1542: 4,12 - 1550: 4,13 - 1558: 4,14 - 1566: 4,15 - 1574: 8,2 - 1582: 8,3 - 1620: -13,-22 - 1630: -13,-20 - 1633: -10,-28 - 1638: -8,-32 - 1643: 2,-27 - 1654: 10,-27 - 1662: 11,-26 - 1680: 4,16 - 1693: 4,12 - 1701: 4,13 - 1709: 4,14 - 1717: 4,15 - 1725: 8,2 - 1733: 8,3 - 1771: -13,-22 - 1781: -13,-20 - 1784: -10,-28 - 1791: 2,-27 - 1799: 10,-27 - 1807: 11,-26 - 1815: 4,16 - 1828: 11,-20 - 1845: -8,-32 - 1848: -9,-30 - 1861: -10,-5 - 1866: -10,-6 - 1874: -10,-8 - 1882: -10,-7 - 1887: -8,7 - 1895: 4,12 - 1903: 4,13 - 1911: 4,14 - 1919: 4,15 - 1927: 8,2 - 1935: 8,3 - 1976: -10,-8 - 1984: -10,-7 - 1989: -10,-6 - 1994: -10,-5 - 1999: -8,7 - 2007: -13,-22 - 2017: -13,-20 - 2020: -10,-28 - 2025: -9,-30 - 2028: -8,-32 - 2033: 2,-27 - 2047: 10,-27 - 2055: 11,-26 - 2063: 11,-20 - 2084: 4,16 - 2097: 4,12 - 2105: 4,13 - 2113: 4,14 - 2121: 4,15 - 2129: 8,2 - 2137: 8,3 - 2178: -10,-8 - 2186: -10,-7 - 2191: -10,-6 - 2196: -10,-5 - 2201: -8,7 - 2209: -13,-22 - 2219: -13,-20 - 2222: -10,-28 - 2227: -9,-30 - 2230: -8,-32 - 2235: 2,-27 - 2249: 10,-27 - 2257: 11,-26 - 2265: 11,-20 - 2286: 4,16 - 2299: 4,12 - 2307: 4,13 - 2315: 4,14 - 2323: 4,15 - 2354: -10,-8 - 2362: -10,-7 - 2367: -10,-6 - 2372: -10,-5 - 2377: -8,7 - 2385: -13,-22 - 2395: -13,-20 - 2398: -10,-28 - 2403: -9,-30 - 2408: 2,-27 - 2422: 10,-27 - 2430: 11,-26 - 2438: 11,-20 - 2459: 4,16 - 2499: 8,3 - 2507: 8,2 - 2627: -8,-32 - 2713: 4,12 - 2721: 4,13 - 2729: 4,14 - 2737: 4,15 - 2745: 8,2 - 2753: 8,3 - 2800: -10,-8 - 2808: -10,-7 - 2813: -10,-6 - 2818: -10,-5 - 2847: -8,7 - 2855: -13,-22 - 2865: -13,-20 - 2868: -10,-28 - 2873: -9,-30 - 2876: -8,-32 - 2881: 2,-27 - 2895: 10,-27 - 2903: 11,-26 - 2911: 11,-20 - 2932: 4,16 - 2945: 4,12 - 2953: 4,13 - 2961: 4,14 - 2969: 4,15 - 2977: 8,2 - 2985: 8,3 - 3032: -10,-8 - 3040: -10,-7 - 3045: -10,-6 - 3050: -10,-5 - 3079: -8,7 - 3087: -13,-22 - 3097: -13,-20 - 3100: -10,-28 - 3105: -9,-30 - 3108: -8,-32 - 3113: 2,-27 - 3127: 10,-27 - 3135: 11,-26 - 3143: 11,-20 - 3164: 4,16 - 3177: 4,12 - 3185: 4,13 - 3193: 4,14 - 3201: 4,15 - 3209: 8,2 - 3217: 8,3 - 3264: -10,-8 - 3272: -10,-7 - 3277: -10,-6 - 3282: -10,-5 - 3311: -8,7 - 3319: -13,-22 - 3329: -13,-20 - 3332: -10,-28 - 3337: -9,-30 - 3340: -8,-32 - 3345: 2,-27 - 3359: 10,-27 - 3367: 11,-26 - 3375: 11,-20 - 3396: 4,16 - 3409: 4,12 - 3417: 4,13 - 3425: 4,14 - 3433: 4,15 - 3441: 8,2 - 3449: 8,3 - 3496: -10,-8 - 3504: -10,-7 - 3509: -10,-6 - 3514: -10,-5 - 3543: -8,7 - 3551: -13,-22 - 3561: -13,-20 - 3564: -10,-28 - 3569: -9,-30 - 3572: -8,-32 - 3577: 2,-27 - 3591: 10,-27 - 3599: 11,-26 - 3607: 11,-20 - 3628: 4,16 - 3641: 4,12 - 3649: 4,13 - 3657: 4,14 - 3665: 4,15 - 3673: 8,2 - 3681: 8,3 - 3728: -10,-8 - 3775: -8,7 - 3796: -10,-28 - 3801: -9,-30 - 3804: -8,-32 - 3809: 2,-27 - 3823: 10,-27 - 3831: 11,-26 - 3839: 11,-20 - 3860: 4,16 - 3873: -10,-6 - 3878: -10,-7 - 3883: -10,-5 - 3892: -13,-20 + 266: -13,-20 + 269: -10,-28 + 274: -8,-32 + 279: 2,-27 + 290: 10,-27 + 298: 11,-26 + 316: 4,16 + 329: 4,12 + 337: 4,13 + 345: 4,14 + 353: 4,15 + 361: 8,2 + 369: 8,3 + 407: -13,-22 + 412: -13,-20 + 415: -10,-28 + 420: -8,-32 + 425: 2,-27 + 436: 10,-27 + 444: 11,-26 + 462: 4,16 + 475: 4,12 + 483: 4,13 + 491: 4,14 + 499: 4,15 + 507: 8,2 + 515: 8,3 + 553: -13,-22 + 558: -13,-20 + 561: -10,-28 + 566: -8,-32 + 571: 2,-27 + 582: 10,-27 + 590: 11,-26 + 608: 4,16 + 621: 4,12 + 629: 4,13 + 637: 4,14 + 645: 4,15 + 653: 8,2 + 661: 8,3 + 699: -13,-22 + 704: -13,-20 + 707: -10,-28 + 712: -8,-32 + 717: 2,-27 + 728: 10,-27 + 736: 11,-26 + 754: 4,16 + 767: 4,12 + 775: 4,13 + 783: 4,14 + 791: 4,15 + 799: 8,2 + 807: 8,3 + 845: -13,-22 + 850: -13,-20 + 853: -10,-28 + 858: -8,-32 + 863: 2,-27 + 874: 10,-27 + 882: 11,-26 + 900: 4,16 + 913: 4,12 + 921: 4,13 + 929: 4,14 + 937: 4,15 + 945: 8,2 + 953: 8,3 + 991: -13,-22 + 996: -13,-20 + 999: -10,-28 + 1004: -8,-32 + 1009: 2,-27 + 1020: 10,-27 + 1028: 11,-26 + 1046: 4,16 + 1059: 4,12 + 1067: 4,13 + 1075: 4,14 + 1083: 4,15 + 1091: 8,2 + 1099: 8,3 + 1137: -13,-22 + 1142: -13,-20 + 1145: -10,-28 + 1150: -8,-32 + 1155: 2,-27 + 1166: 10,-27 + 1174: 11,-26 + 1192: 4,16 + 1205: 4,12 + 1213: 4,13 + 1221: 4,14 + 1229: 4,15 + 1237: 8,2 + 1245: 8,3 + 1283: -13,-22 + 1288: -13,-20 + 1291: -10,-28 + 1296: -8,-32 + 1301: 2,-27 + 1312: 10,-27 + 1320: 11,-26 + 1338: 4,16 + 1351: 4,12 + 1359: 4,13 + 1367: 4,14 + 1375: 4,15 + 1383: 8,2 + 1391: 8,3 + 1429: -13,-22 + 1434: -13,-20 + 1437: -10,-28 + 1442: -8,-32 + 1447: 2,-27 + 1458: 10,-27 + 1466: 11,-26 + 1484: 4,16 + 1497: 4,12 + 1505: 4,13 + 1513: 4,14 + 1521: 4,15 + 1529: 8,2 + 1537: 8,3 + 1575: -13,-22 + 1580: -13,-20 + 1583: -10,-28 + 1588: -8,-32 + 1593: 2,-27 + 1604: 10,-27 + 1612: 11,-26 + 1630: 4,16 + 1643: 4,12 + 1651: 4,13 + 1659: 4,14 + 1667: 4,15 + 1675: 8,2 + 1683: 8,3 + 1721: -13,-22 + 1726: -13,-20 + 1729: -10,-28 + 1736: 2,-27 + 1744: 10,-27 + 1752: 11,-26 + 1760: 4,16 + 1773: 11,-20 + 1790: -8,-32 + 1793: -9,-30 + 1806: -10,-5 + 1811: -10,-6 + 1819: -10,-8 + 1827: -10,-7 + 1832: -8,7 + 1840: 4,12 + 1848: 4,13 + 1856: 4,14 + 1864: 4,15 + 1872: 8,2 + 1880: 8,3 + 1921: -10,-8 + 1929: -10,-7 + 1934: -10,-6 + 1939: -10,-5 + 1944: -8,7 + 1952: -13,-22 + 1957: -13,-20 + 1960: -10,-28 + 1965: -9,-30 + 1968: -8,-32 + 1973: 2,-27 + 1987: 10,-27 + 1995: 11,-26 + 2003: 11,-20 + 2024: 4,16 + 2037: 4,12 + 2045: 4,13 + 2053: 4,14 + 2061: 4,15 + 2069: 8,2 + 2077: 8,3 + 2118: -10,-8 + 2126: -10,-7 + 2131: -10,-6 + 2136: -10,-5 + 2141: -8,7 + 2149: -13,-22 + 2154: -13,-20 + 2157: -10,-28 + 2162: -9,-30 + 2165: -8,-32 + 2170: 2,-27 + 2184: 10,-27 + 2192: 11,-26 + 2200: 11,-20 + 2221: 4,16 + 2234: 4,12 + 2242: 4,13 + 2250: 4,14 + 2258: 4,15 + 2289: -10,-8 + 2297: -10,-7 + 2302: -10,-6 + 2307: -10,-5 + 2312: -8,7 + 2320: -13,-22 + 2325: -13,-20 + 2328: -10,-28 + 2333: -9,-30 + 2338: 2,-27 + 2352: 10,-27 + 2360: 11,-26 + 2368: 11,-20 + 2389: 4,16 + 2429: 8,3 + 2437: 8,2 + 2557: -8,-32 + 2643: 4,12 + 2651: 4,13 + 2659: 4,14 + 2667: 4,15 + 2675: 8,2 + 2683: 8,3 + 2730: -10,-8 + 2738: -10,-7 + 2743: -10,-6 + 2748: -10,-5 + 2777: -8,7 + 2785: -13,-22 + 2790: -13,-20 + 2793: -10,-28 + 2798: -9,-30 + 2801: -8,-32 + 2806: 2,-27 + 2820: 10,-27 + 2828: 11,-26 + 2836: 11,-20 + 2857: 4,16 + 2870: 4,12 + 2878: 4,13 + 2886: 4,14 + 2894: 4,15 + 2902: 8,2 + 2910: 8,3 + 2957: -10,-8 + 2965: -10,-7 + 2970: -10,-6 + 2975: -10,-5 + 3004: -8,7 + 3012: -13,-22 + 3017: -13,-20 + 3020: -10,-28 + 3025: -9,-30 + 3028: -8,-32 + 3033: 2,-27 + 3047: 10,-27 + 3055: 11,-26 + 3063: 11,-20 + 3084: 4,16 + 3097: 4,12 + 3105: 4,13 + 3113: 4,14 + 3121: 4,15 + 3129: 8,2 + 3137: 8,3 + 3184: -10,-8 + 3192: -10,-7 + 3197: -10,-6 + 3202: -10,-5 + 3231: -8,7 + 3239: -13,-22 + 3244: -13,-20 + 3247: -10,-28 + 3252: -9,-30 + 3255: -8,-32 + 3260: 2,-27 + 3274: 10,-27 + 3282: 11,-26 + 3290: 11,-20 + 3311: 4,16 + 3324: 4,12 + 3332: 4,13 + 3340: 4,14 + 3348: 4,15 + 3356: 8,2 + 3364: 8,3 + 3411: -10,-8 + 3419: -10,-7 + 3424: -10,-6 + 3429: -10,-5 + 3458: -8,7 + 3466: -13,-22 + 3471: -13,-20 + 3474: -10,-28 + 3479: -9,-30 + 3482: -8,-32 + 3487: 2,-27 + 3501: 10,-27 + 3509: 11,-26 + 3517: 11,-20 + 3538: 4,16 + 3551: 4,12 + 3559: 4,13 + 3567: 4,14 + 3575: 4,15 + 3583: 8,2 + 3591: 8,3 + 3638: -10,-8 + 3670: -8,7 + 3676: -10,-28 + 3681: -9,-30 + 3684: -8,-32 + 3689: 2,-27 + 3703: 10,-27 + 3711: 11,-26 + 3719: 11,-20 + 3740: 4,16 + 3753: -10,-6 + 3758: -10,-7 + 3763: -10,-5 + 3766: -13,-20 + 3774: 4,12 + 3782: 4,13 + 3790: 4,14 + 3798: 4,15 + 3806: 8,2 + 3814: 8,3 + 3861: -10,-8 + 3869: -10,-7 + 3874: -10,-6 + 3879: -10,-5 + 3908: -8,7 + 3917: -13,-20 + 3920: -10,-28 + 3925: -9,-30 + 3928: -8,-32 + 3933: 2,-27 + 3947: 10,-27 + 3955: 11,-26 + 3963: 11,-20 + 3984: 4,16 - node: zIndex: 1 id: LatticeCornerNW @@ -1004,398 +1048,421 @@ entities: 246: 2,-12 251: 2,-11 256: 2,-10 - 276: -10,-28 - 287: 2,-27 - 290: 8,-32 - 298: 10,-27 - 306: 11,-26 - 311: 11,-20 - 316: 11,-19 - 324: 4,16 - 337: 4,12 - 345: 4,13 - 353: 4,14 - 361: 4,15 - 369: 8,2 - 377: 8,3 - 382: 9,3 - 387: 9,4 - 392: 2,-13 - 397: 2,-12 - 402: 2,-11 - 407: 2,-10 - 427: -10,-28 - 438: 2,-27 - 441: 8,-32 - 449: 10,-27 - 457: 11,-26 - 462: 11,-20 - 467: 11,-19 - 475: 4,16 - 488: 4,12 - 496: 4,13 - 504: 4,14 - 512: 4,15 - 520: 8,2 - 528: 8,3 - 533: 9,3 - 538: 9,4 - 543: 2,-13 - 548: 2,-12 - 553: 2,-11 - 558: 2,-10 - 578: -10,-28 - 589: 2,-27 - 592: 8,-32 - 600: 10,-27 - 608: 11,-26 - 613: 11,-20 - 618: 11,-19 - 626: 4,16 - 639: 4,12 - 647: 4,13 - 655: 4,14 - 663: 4,15 - 671: 8,2 - 679: 8,3 - 684: 9,3 - 689: 9,4 - 694: 2,-13 - 699: 2,-12 - 704: 2,-11 - 709: 2,-10 - 729: -10,-28 - 740: 2,-27 - 743: 8,-32 - 751: 10,-27 - 759: 11,-26 - 764: 11,-20 - 769: 11,-19 - 777: 4,16 - 790: 4,12 - 798: 4,13 - 806: 4,14 - 814: 4,15 - 822: 8,2 - 830: 8,3 - 835: 9,3 - 840: 9,4 - 845: 2,-13 - 850: 2,-12 - 855: 2,-11 - 860: 2,-10 - 880: -10,-28 - 891: 2,-27 - 894: 8,-32 - 902: 10,-27 - 910: 11,-26 - 915: 11,-20 - 920: 11,-19 - 928: 4,16 - 941: 4,12 - 949: 4,13 - 957: 4,14 - 965: 4,15 - 973: 8,2 - 981: 8,3 - 986: 9,3 - 991: 9,4 - 996: 2,-13 - 1001: 2,-12 - 1006: 2,-11 - 1011: 2,-10 - 1031: -10,-28 - 1042: 2,-27 - 1045: 8,-32 - 1053: 10,-27 - 1061: 11,-26 - 1066: 11,-20 - 1071: 11,-19 - 1079: 4,16 - 1092: 4,12 - 1100: 4,13 - 1108: 4,14 - 1116: 4,15 - 1124: 8,2 - 1132: 8,3 - 1137: 9,3 - 1142: 9,4 - 1147: 2,-13 - 1152: 2,-12 - 1157: 2,-11 - 1162: 2,-10 - 1182: -10,-28 - 1193: 2,-27 - 1196: 8,-32 - 1204: 10,-27 - 1212: 11,-26 - 1217: 11,-20 - 1222: 11,-19 - 1230: 4,16 - 1243: 4,12 - 1251: 4,13 - 1259: 4,14 - 1267: 4,15 - 1275: 8,2 - 1283: 8,3 - 1288: 9,3 - 1293: 9,4 - 1298: 2,-13 - 1303: 2,-12 - 1308: 2,-11 - 1313: 2,-10 - 1333: -10,-28 - 1344: 2,-27 - 1347: 8,-32 - 1355: 10,-27 - 1363: 11,-26 - 1368: 11,-20 - 1373: 11,-19 - 1381: 4,16 - 1394: 4,12 - 1402: 4,13 - 1410: 4,14 - 1418: 4,15 - 1426: 8,2 - 1434: 8,3 - 1439: 9,3 - 1444: 9,4 - 1449: 2,-13 - 1454: 2,-12 - 1459: 2,-11 - 1464: 2,-10 - 1484: -10,-28 - 1495: 2,-27 - 1498: 8,-32 - 1506: 10,-27 - 1514: 11,-26 - 1519: 11,-20 - 1524: 11,-19 - 1532: 4,16 - 1545: 4,12 - 1553: 4,13 - 1561: 4,14 - 1569: 4,15 - 1577: 8,2 - 1585: 8,3 - 1590: 9,3 - 1595: 9,4 - 1600: 2,-13 - 1605: 2,-12 - 1610: 2,-11 - 1615: 2,-10 - 1635: -10,-28 - 1646: 2,-27 - 1649: 8,-32 - 1657: 10,-27 - 1665: 11,-26 - 1670: 11,-20 - 1675: 11,-19 - 1683: 4,16 - 1696: 4,12 - 1704: 4,13 - 1712: 4,14 - 1720: 4,15 - 1728: 8,2 - 1736: 8,3 - 1741: 9,3 - 1746: 9,4 - 1751: 2,-13 - 1756: 2,-12 - 1761: 2,-11 - 1766: 2,-10 - 1786: -10,-28 - 1794: 2,-27 - 1802: 10,-27 - 1810: 11,-26 - 1818: 4,16 - 1831: 11,-20 - 1836: 11,-19 - 1839: 8,-32 - 1842: 9,-30 - 1877: -10,-8 - 1898: 4,12 - 1906: 4,13 - 1914: 4,14 - 1922: 4,15 - 1930: 8,2 - 1938: 8,3 - 1943: 9,3 - 1948: 9,4 - 1953: 2,-13 - 1958: 2,-12 - 1963: 2,-11 - 1968: 2,-10 - 1979: -10,-8 - 2022: -10,-28 - 2036: 2,-27 - 2039: 8,-32 - 2042: 9,-30 - 2050: 10,-27 - 2058: 11,-26 - 2066: 11,-20 - 2071: 11,-19 - 2087: 4,16 - 2100: 4,12 - 2108: 4,13 - 2116: 4,14 - 2124: 4,15 - 2132: 8,2 - 2140: 8,3 - 2145: 9,3 - 2150: 9,4 - 2155: 2,-13 - 2160: 2,-12 - 2165: 2,-11 - 2170: 2,-10 - 2181: -10,-8 - 2224: -10,-28 - 2238: 2,-27 - 2241: 8,-32 - 2244: 9,-30 - 2252: 10,-27 - 2260: 11,-26 - 2268: 11,-20 - 2273: 11,-19 - 2289: 4,16 - 2302: 4,12 - 2310: 4,13 - 2318: 4,14 - 2326: 4,15 - 2331: 2,-13 - 2336: 2,-12 - 2341: 2,-11 - 2346: 2,-10 - 2357: -10,-8 - 2400: -10,-28 - 2411: 2,-27 - 2414: 8,-32 - 2417: 9,-30 - 2425: 10,-27 - 2433: 11,-26 - 2441: 11,-20 - 2446: 11,-19 - 2462: 4,16 - 2481: 10,-5 - 2489: 9,4 - 2494: 9,3 - 2502: 8,3 - 2510: 8,2 - 2716: 4,12 - 2724: 4,13 - 2732: 4,14 - 2740: 4,15 - 2748: 8,2 - 2756: 8,3 - 2761: 9,3 - 2766: 9,4 - 2771: 2,-13 - 2776: 2,-12 - 2781: 2,-11 - 2786: 2,-10 - 2789: 10,-5 - 2803: -10,-8 - 2870: -10,-28 - 2884: 2,-27 - 2887: 8,-32 - 2890: 9,-30 - 2898: 10,-27 - 2906: 11,-26 - 2914: 11,-20 - 2919: 11,-19 - 2935: 4,16 - 2948: 4,12 - 2956: 4,13 - 2964: 4,14 - 2972: 4,15 - 2980: 8,2 - 2988: 8,3 - 2993: 9,3 - 2998: 9,4 - 3003: 2,-13 - 3008: 2,-12 - 3013: 2,-11 - 3018: 2,-10 - 3021: 10,-5 - 3035: -10,-8 - 3102: -10,-28 - 3116: 2,-27 - 3119: 8,-32 - 3122: 9,-30 - 3130: 10,-27 - 3138: 11,-26 - 3146: 11,-20 - 3151: 11,-19 - 3167: 4,16 - 3180: 4,12 - 3188: 4,13 - 3196: 4,14 - 3204: 4,15 - 3212: 8,2 - 3220: 8,3 - 3225: 9,3 - 3230: 9,4 - 3235: 2,-13 - 3240: 2,-12 - 3245: 2,-11 - 3250: 2,-10 - 3253: 10,-5 - 3267: -10,-8 - 3334: -10,-28 - 3348: 2,-27 - 3351: 8,-32 - 3354: 9,-30 - 3362: 10,-27 - 3370: 11,-26 - 3378: 11,-20 - 3383: 11,-19 - 3399: 4,16 - 3412: 4,12 - 3420: 4,13 - 3428: 4,14 - 3436: 4,15 - 3444: 8,2 - 3452: 8,3 - 3457: 9,3 - 3462: 9,4 - 3467: 2,-13 - 3472: 2,-12 - 3477: 2,-11 - 3482: 2,-10 - 3485: 10,-5 - 3499: -10,-8 - 3566: -10,-28 - 3580: 2,-27 - 3583: 8,-32 - 3586: 9,-30 - 3594: 10,-27 - 3602: 11,-26 - 3610: 11,-20 - 3615: 11,-19 - 3631: 4,16 - 3644: 4,12 - 3652: 4,13 - 3660: 4,14 - 3668: 4,15 - 3676: 8,2 - 3684: 8,3 - 3689: 9,3 - 3694: 9,4 - 3699: 2,-13 - 3704: 2,-12 - 3709: 2,-11 - 3714: 2,-10 - 3717: 10,-5 - 3731: -10,-8 - 3798: -10,-28 - 3812: 2,-27 - 3815: 8,-32 - 3818: 9,-30 - 3826: 10,-27 - 3834: 11,-26 - 3842: 11,-20 - 3847: 11,-19 - 3863: 4,16 + 271: -10,-28 + 282: 2,-27 + 285: 8,-32 + 293: 10,-27 + 301: 11,-26 + 306: 11,-20 + 311: 11,-19 + 319: 4,16 + 332: 4,12 + 340: 4,13 + 348: 4,14 + 356: 4,15 + 364: 8,2 + 372: 8,3 + 377: 9,3 + 382: 9,4 + 387: 2,-13 + 392: 2,-12 + 397: 2,-11 + 402: 2,-10 + 417: -10,-28 + 428: 2,-27 + 431: 8,-32 + 439: 10,-27 + 447: 11,-26 + 452: 11,-20 + 457: 11,-19 + 465: 4,16 + 478: 4,12 + 486: 4,13 + 494: 4,14 + 502: 4,15 + 510: 8,2 + 518: 8,3 + 523: 9,3 + 528: 9,4 + 533: 2,-13 + 538: 2,-12 + 543: 2,-11 + 548: 2,-10 + 563: -10,-28 + 574: 2,-27 + 577: 8,-32 + 585: 10,-27 + 593: 11,-26 + 598: 11,-20 + 603: 11,-19 + 611: 4,16 + 624: 4,12 + 632: 4,13 + 640: 4,14 + 648: 4,15 + 656: 8,2 + 664: 8,3 + 669: 9,3 + 674: 9,4 + 679: 2,-13 + 684: 2,-12 + 689: 2,-11 + 694: 2,-10 + 709: -10,-28 + 720: 2,-27 + 723: 8,-32 + 731: 10,-27 + 739: 11,-26 + 744: 11,-20 + 749: 11,-19 + 757: 4,16 + 770: 4,12 + 778: 4,13 + 786: 4,14 + 794: 4,15 + 802: 8,2 + 810: 8,3 + 815: 9,3 + 820: 9,4 + 825: 2,-13 + 830: 2,-12 + 835: 2,-11 + 840: 2,-10 + 855: -10,-28 + 866: 2,-27 + 869: 8,-32 + 877: 10,-27 + 885: 11,-26 + 890: 11,-20 + 895: 11,-19 + 903: 4,16 + 916: 4,12 + 924: 4,13 + 932: 4,14 + 940: 4,15 + 948: 8,2 + 956: 8,3 + 961: 9,3 + 966: 9,4 + 971: 2,-13 + 976: 2,-12 + 981: 2,-11 + 986: 2,-10 + 1001: -10,-28 + 1012: 2,-27 + 1015: 8,-32 + 1023: 10,-27 + 1031: 11,-26 + 1036: 11,-20 + 1041: 11,-19 + 1049: 4,16 + 1062: 4,12 + 1070: 4,13 + 1078: 4,14 + 1086: 4,15 + 1094: 8,2 + 1102: 8,3 + 1107: 9,3 + 1112: 9,4 + 1117: 2,-13 + 1122: 2,-12 + 1127: 2,-11 + 1132: 2,-10 + 1147: -10,-28 + 1158: 2,-27 + 1161: 8,-32 + 1169: 10,-27 + 1177: 11,-26 + 1182: 11,-20 + 1187: 11,-19 + 1195: 4,16 + 1208: 4,12 + 1216: 4,13 + 1224: 4,14 + 1232: 4,15 + 1240: 8,2 + 1248: 8,3 + 1253: 9,3 + 1258: 9,4 + 1263: 2,-13 + 1268: 2,-12 + 1273: 2,-11 + 1278: 2,-10 + 1293: -10,-28 + 1304: 2,-27 + 1307: 8,-32 + 1315: 10,-27 + 1323: 11,-26 + 1328: 11,-20 + 1333: 11,-19 + 1341: 4,16 + 1354: 4,12 + 1362: 4,13 + 1370: 4,14 + 1378: 4,15 + 1386: 8,2 + 1394: 8,3 + 1399: 9,3 + 1404: 9,4 + 1409: 2,-13 + 1414: 2,-12 + 1419: 2,-11 + 1424: 2,-10 + 1439: -10,-28 + 1450: 2,-27 + 1453: 8,-32 + 1461: 10,-27 + 1469: 11,-26 + 1474: 11,-20 + 1479: 11,-19 + 1487: 4,16 + 1500: 4,12 + 1508: 4,13 + 1516: 4,14 + 1524: 4,15 + 1532: 8,2 + 1540: 8,3 + 1545: 9,3 + 1550: 9,4 + 1555: 2,-13 + 1560: 2,-12 + 1565: 2,-11 + 1570: 2,-10 + 1585: -10,-28 + 1596: 2,-27 + 1599: 8,-32 + 1607: 10,-27 + 1615: 11,-26 + 1620: 11,-20 + 1625: 11,-19 + 1633: 4,16 + 1646: 4,12 + 1654: 4,13 + 1662: 4,14 + 1670: 4,15 + 1678: 8,2 + 1686: 8,3 + 1691: 9,3 + 1696: 9,4 + 1701: 2,-13 + 1706: 2,-12 + 1711: 2,-11 + 1716: 2,-10 + 1731: -10,-28 + 1739: 2,-27 + 1747: 10,-27 + 1755: 11,-26 + 1763: 4,16 + 1776: 11,-20 + 1781: 11,-19 + 1784: 8,-32 + 1787: 9,-30 + 1822: -10,-8 + 1843: 4,12 + 1851: 4,13 + 1859: 4,14 + 1867: 4,15 + 1875: 8,2 + 1883: 8,3 + 1888: 9,3 + 1893: 9,4 + 1898: 2,-13 + 1903: 2,-12 + 1908: 2,-11 + 1913: 2,-10 + 1924: -10,-8 + 1962: -10,-28 + 1976: 2,-27 + 1979: 8,-32 + 1982: 9,-30 + 1990: 10,-27 + 1998: 11,-26 + 2006: 11,-20 + 2011: 11,-19 + 2027: 4,16 + 2040: 4,12 + 2048: 4,13 + 2056: 4,14 + 2064: 4,15 + 2072: 8,2 + 2080: 8,3 + 2085: 9,3 + 2090: 9,4 + 2095: 2,-13 + 2100: 2,-12 + 2105: 2,-11 + 2110: 2,-10 + 2121: -10,-8 + 2159: -10,-28 + 2173: 2,-27 + 2176: 8,-32 + 2179: 9,-30 + 2187: 10,-27 + 2195: 11,-26 + 2203: 11,-20 + 2208: 11,-19 + 2224: 4,16 + 2237: 4,12 + 2245: 4,13 + 2253: 4,14 + 2261: 4,15 + 2266: 2,-13 + 2271: 2,-12 + 2276: 2,-11 + 2281: 2,-10 + 2292: -10,-8 + 2330: -10,-28 + 2341: 2,-27 + 2344: 8,-32 + 2347: 9,-30 + 2355: 10,-27 + 2363: 11,-26 + 2371: 11,-20 + 2376: 11,-19 + 2392: 4,16 + 2411: 10,-5 + 2419: 9,4 + 2424: 9,3 + 2432: 8,3 + 2440: 8,2 + 2646: 4,12 + 2654: 4,13 + 2662: 4,14 + 2670: 4,15 + 2678: 8,2 + 2686: 8,3 + 2691: 9,3 + 2696: 9,4 + 2701: 2,-13 + 2706: 2,-12 + 2711: 2,-11 + 2716: 2,-10 + 2719: 10,-5 + 2733: -10,-8 + 2795: -10,-28 + 2809: 2,-27 + 2812: 8,-32 + 2815: 9,-30 + 2823: 10,-27 + 2831: 11,-26 + 2839: 11,-20 + 2844: 11,-19 + 2860: 4,16 + 2873: 4,12 + 2881: 4,13 + 2889: 4,14 + 2897: 4,15 + 2905: 8,2 + 2913: 8,3 + 2918: 9,3 + 2923: 9,4 + 2928: 2,-13 + 2933: 2,-12 + 2938: 2,-11 + 2943: 2,-10 + 2946: 10,-5 + 2960: -10,-8 + 3022: -10,-28 + 3036: 2,-27 + 3039: 8,-32 + 3042: 9,-30 + 3050: 10,-27 + 3058: 11,-26 + 3066: 11,-20 + 3071: 11,-19 + 3087: 4,16 + 3100: 4,12 + 3108: 4,13 + 3116: 4,14 + 3124: 4,15 + 3132: 8,2 + 3140: 8,3 + 3145: 9,3 + 3150: 9,4 + 3155: 2,-13 + 3160: 2,-12 + 3165: 2,-11 + 3170: 2,-10 + 3173: 10,-5 + 3187: -10,-8 + 3249: -10,-28 + 3263: 2,-27 + 3266: 8,-32 + 3269: 9,-30 + 3277: 10,-27 + 3285: 11,-26 + 3293: 11,-20 + 3298: 11,-19 + 3314: 4,16 + 3327: 4,12 + 3335: 4,13 + 3343: 4,14 + 3351: 4,15 + 3359: 8,2 + 3367: 8,3 + 3372: 9,3 + 3377: 9,4 + 3382: 2,-13 + 3387: 2,-12 + 3392: 2,-11 + 3397: 2,-10 + 3400: 10,-5 + 3414: -10,-8 + 3476: -10,-28 + 3490: 2,-27 + 3493: 8,-32 + 3496: 9,-30 + 3504: 10,-27 + 3512: 11,-26 + 3520: 11,-20 + 3525: 11,-19 + 3541: 4,16 + 3554: 4,12 + 3562: 4,13 + 3570: 4,14 + 3578: 4,15 + 3586: 8,2 + 3594: 8,3 + 3599: 9,3 + 3604: 9,4 + 3609: 2,-13 + 3614: 2,-12 + 3619: 2,-11 + 3624: 2,-10 + 3627: 10,-5 + 3641: -10,-8 + 3678: -10,-28 + 3692: 2,-27 + 3695: 8,-32 + 3698: 9,-30 + 3706: 10,-27 + 3714: 11,-26 + 3722: 11,-20 + 3727: 11,-19 + 3743: 4,16 + 3777: 4,12 + 3785: 4,13 + 3793: 4,14 + 3801: 4,15 + 3809: 8,2 + 3817: 8,3 + 3822: 9,3 + 3827: 9,4 + 3832: 2,-13 + 3837: 2,-12 + 3842: 2,-11 + 3847: 2,-10 + 3850: 10,-5 + 3864: -10,-8 + 3922: -10,-28 + 3936: 2,-27 + 3939: 8,-32 + 3942: 9,-30 + 3950: 10,-27 + 3958: 11,-26 + 3966: 11,-20 + 3971: 11,-19 + 3987: 4,16 - node: zIndex: 1 id: LatticeCornerSE @@ -1407,326 +1474,347 @@ entities: 213: 8,2 221: 8,3 259: -13,-22 - 269: -13,-20 - 282: 2,-27 - 293: 10,-27 - 301: 11,-26 - 319: 4,16 - 327: 4,17 - 332: 4,12 - 340: 4,13 - 348: 4,14 - 356: 4,15 - 364: 8,2 - 372: 8,3 - 410: -13,-22 - 420: -13,-20 - 433: 2,-27 - 444: 10,-27 - 452: 11,-26 - 470: 4,16 - 478: 4,17 - 483: 4,12 - 491: 4,13 - 499: 4,14 - 507: 4,15 - 515: 8,2 - 523: 8,3 - 561: -13,-22 - 571: -13,-20 - 584: 2,-27 - 595: 10,-27 - 603: 11,-26 - 621: 4,16 - 629: 4,17 - 634: 4,12 - 642: 4,13 - 650: 4,14 - 658: 4,15 - 666: 8,2 - 674: 8,3 - 712: -13,-22 - 722: -13,-20 - 735: 2,-27 - 746: 10,-27 - 754: 11,-26 - 772: 4,16 - 780: 4,17 - 785: 4,12 - 793: 4,13 - 801: 4,14 - 809: 4,15 - 817: 8,2 - 825: 8,3 - 863: -13,-22 - 873: -13,-20 - 886: 2,-27 - 897: 10,-27 - 905: 11,-26 - 923: 4,16 - 931: 4,17 - 936: 4,12 - 944: 4,13 - 952: 4,14 - 960: 4,15 - 968: 8,2 - 976: 8,3 - 1014: -13,-22 - 1024: -13,-20 - 1037: 2,-27 - 1048: 10,-27 - 1056: 11,-26 - 1074: 4,16 - 1082: 4,17 - 1087: 4,12 - 1095: 4,13 - 1103: 4,14 - 1111: 4,15 - 1119: 8,2 - 1127: 8,3 - 1165: -13,-22 - 1175: -13,-20 - 1188: 2,-27 - 1199: 10,-27 - 1207: 11,-26 - 1225: 4,16 - 1233: 4,17 - 1238: 4,12 - 1246: 4,13 - 1254: 4,14 - 1262: 4,15 - 1270: 8,2 - 1278: 8,3 - 1316: -13,-22 - 1326: -13,-20 - 1339: 2,-27 - 1350: 10,-27 - 1358: 11,-26 - 1376: 4,16 - 1384: 4,17 - 1389: 4,12 - 1397: 4,13 - 1405: 4,14 - 1413: 4,15 - 1421: 8,2 - 1429: 8,3 - 1467: -13,-22 - 1477: -13,-20 - 1490: 2,-27 - 1501: 10,-27 - 1509: 11,-26 - 1527: 4,16 - 1535: 4,17 - 1540: 4,12 - 1548: 4,13 - 1556: 4,14 - 1564: 4,15 - 1572: 8,2 - 1580: 8,3 - 1618: -13,-22 - 1628: -13,-20 - 1641: 2,-27 - 1652: 10,-27 - 1660: 11,-26 - 1678: 4,16 - 1686: 4,17 - 1691: 4,12 - 1699: 4,13 - 1707: 4,14 - 1715: 4,15 - 1723: 8,2 - 1731: 8,3 - 1769: -13,-22 - 1779: -13,-20 - 1789: 2,-27 - 1797: 10,-27 - 1805: 11,-26 - 1813: 4,16 - 1821: 4,17 - 1826: 11,-20 - 1854: 12,-20 - 1859: -10,-5 - 1864: -10,-6 - 1869: -11,-8 - 1872: -10,-8 - 1880: -10,-7 - 1885: -8,7 - 1890: -8,9 - 1893: 4,12 - 1901: 4,13 - 1909: 4,14 - 1917: 4,15 - 1925: 8,2 - 1933: 8,3 - 1971: -11,-8 - 1974: -10,-8 - 1982: -10,-7 - 1987: -10,-6 - 1992: -10,-5 - 1997: -8,7 - 2002: -8,9 - 2005: -13,-22 - 2015: -13,-20 - 2031: 2,-27 - 2045: 10,-27 - 2053: 11,-26 - 2061: 11,-20 - 2074: 12,-20 - 2082: 4,16 - 2090: 4,17 - 2095: 4,12 - 2103: 4,13 - 2111: 4,14 - 2119: 4,15 - 2127: 8,2 - 2135: 8,3 - 2173: -11,-8 - 2176: -10,-8 - 2184: -10,-7 - 2189: -10,-6 - 2194: -10,-5 - 2199: -8,7 - 2204: -8,9 - 2207: -13,-22 - 2217: -13,-20 - 2233: 2,-27 - 2247: 10,-27 - 2255: 11,-26 - 2263: 11,-20 - 2276: 12,-20 - 2284: 4,16 - 2292: 4,17 - 2297: 4,12 - 2305: 4,13 - 2313: 4,14 - 2321: 4,15 - 2349: -11,-8 - 2352: -10,-8 - 2360: -10,-7 - 2365: -10,-6 - 2370: -10,-5 - 2375: -8,7 - 2380: -8,9 - 2383: -13,-22 - 2393: -13,-20 - 2406: 2,-27 - 2420: 10,-27 - 2428: 11,-26 - 2436: 11,-20 - 2449: 12,-20 - 2457: 4,16 - 2465: 4,17 - 2497: 8,3 - 2505: 8,2 - 2711: 4,12 - 2719: 4,13 - 2727: 4,14 - 2735: 4,15 - 2743: 8,2 - 2751: 8,3 - 2795: -11,-8 - 2798: -10,-8 - 2806: -10,-7 - 2811: -10,-6 - 2816: -10,-5 - 2845: -8,7 - 2850: -8,9 - 2853: -13,-22 - 2863: -13,-20 - 2879: 2,-27 - 2893: 10,-27 - 2901: 11,-26 - 2909: 11,-20 - 2922: 12,-20 - 2930: 4,16 - 2938: 4,17 - 2943: 4,12 - 2951: 4,13 - 2959: 4,14 - 2967: 4,15 - 2975: 8,2 - 2983: 8,3 - 3027: -11,-8 - 3030: -10,-8 - 3038: -10,-7 - 3043: -10,-6 - 3048: -10,-5 - 3077: -8,7 - 3082: -8,9 - 3085: -13,-22 - 3095: -13,-20 - 3111: 2,-27 - 3125: 10,-27 - 3133: 11,-26 - 3141: 11,-20 - 3154: 12,-20 - 3162: 4,16 - 3170: 4,17 - 3175: 4,12 - 3183: 4,13 - 3191: 4,14 - 3199: 4,15 - 3207: 8,2 - 3215: 8,3 - 3259: -11,-8 - 3262: -10,-8 - 3270: -10,-7 - 3275: -10,-6 - 3280: -10,-5 - 3309: -8,7 - 3314: -8,9 - 3317: -13,-22 - 3327: -13,-20 - 3343: 2,-27 - 3357: 10,-27 - 3365: 11,-26 - 3373: 11,-20 - 3386: 12,-20 - 3394: 4,16 - 3402: 4,17 - 3407: 4,12 - 3415: 4,13 - 3423: 4,14 - 3431: 4,15 - 3439: 8,2 - 3447: 8,3 - 3491: -11,-8 - 3494: -10,-8 - 3502: -10,-7 - 3507: -10,-6 - 3512: -10,-5 - 3541: -8,7 - 3546: -8,9 - 3549: -13,-22 - 3559: -13,-20 - 3575: 2,-27 - 3589: 10,-27 - 3597: 11,-26 - 3605: 11,-20 - 3618: 12,-20 - 3626: 4,16 - 3634: 4,17 - 3639: 4,12 - 3647: 4,13 - 3655: 4,14 - 3663: 4,15 - 3671: 8,2 - 3679: 8,3 - 3723: -11,-8 - 3726: -10,-8 - 3773: -8,7 - 3778: -8,9 - 3807: 2,-27 - 3821: 10,-27 - 3829: 11,-26 - 3837: 11,-20 - 3850: 12,-20 - 3858: 4,16 - 3866: 4,17 - 3871: -10,-6 - 3876: -10,-7 - 3881: -10,-5 - 3895: -13,-22 + 264: -13,-20 + 277: 2,-27 + 288: 10,-27 + 296: 11,-26 + 314: 4,16 + 322: 4,17 + 327: 4,12 + 335: 4,13 + 343: 4,14 + 351: 4,15 + 359: 8,2 + 367: 8,3 + 405: -13,-22 + 410: -13,-20 + 423: 2,-27 + 434: 10,-27 + 442: 11,-26 + 460: 4,16 + 468: 4,17 + 473: 4,12 + 481: 4,13 + 489: 4,14 + 497: 4,15 + 505: 8,2 + 513: 8,3 + 551: -13,-22 + 556: -13,-20 + 569: 2,-27 + 580: 10,-27 + 588: 11,-26 + 606: 4,16 + 614: 4,17 + 619: 4,12 + 627: 4,13 + 635: 4,14 + 643: 4,15 + 651: 8,2 + 659: 8,3 + 697: -13,-22 + 702: -13,-20 + 715: 2,-27 + 726: 10,-27 + 734: 11,-26 + 752: 4,16 + 760: 4,17 + 765: 4,12 + 773: 4,13 + 781: 4,14 + 789: 4,15 + 797: 8,2 + 805: 8,3 + 843: -13,-22 + 848: -13,-20 + 861: 2,-27 + 872: 10,-27 + 880: 11,-26 + 898: 4,16 + 906: 4,17 + 911: 4,12 + 919: 4,13 + 927: 4,14 + 935: 4,15 + 943: 8,2 + 951: 8,3 + 989: -13,-22 + 994: -13,-20 + 1007: 2,-27 + 1018: 10,-27 + 1026: 11,-26 + 1044: 4,16 + 1052: 4,17 + 1057: 4,12 + 1065: 4,13 + 1073: 4,14 + 1081: 4,15 + 1089: 8,2 + 1097: 8,3 + 1135: -13,-22 + 1140: -13,-20 + 1153: 2,-27 + 1164: 10,-27 + 1172: 11,-26 + 1190: 4,16 + 1198: 4,17 + 1203: 4,12 + 1211: 4,13 + 1219: 4,14 + 1227: 4,15 + 1235: 8,2 + 1243: 8,3 + 1281: -13,-22 + 1286: -13,-20 + 1299: 2,-27 + 1310: 10,-27 + 1318: 11,-26 + 1336: 4,16 + 1344: 4,17 + 1349: 4,12 + 1357: 4,13 + 1365: 4,14 + 1373: 4,15 + 1381: 8,2 + 1389: 8,3 + 1427: -13,-22 + 1432: -13,-20 + 1445: 2,-27 + 1456: 10,-27 + 1464: 11,-26 + 1482: 4,16 + 1490: 4,17 + 1495: 4,12 + 1503: 4,13 + 1511: 4,14 + 1519: 4,15 + 1527: 8,2 + 1535: 8,3 + 1573: -13,-22 + 1578: -13,-20 + 1591: 2,-27 + 1602: 10,-27 + 1610: 11,-26 + 1628: 4,16 + 1636: 4,17 + 1641: 4,12 + 1649: 4,13 + 1657: 4,14 + 1665: 4,15 + 1673: 8,2 + 1681: 8,3 + 1719: -13,-22 + 1724: -13,-20 + 1734: 2,-27 + 1742: 10,-27 + 1750: 11,-26 + 1758: 4,16 + 1766: 4,17 + 1771: 11,-20 + 1799: 12,-20 + 1804: -10,-5 + 1809: -10,-6 + 1814: -11,-8 + 1817: -10,-8 + 1825: -10,-7 + 1830: -8,7 + 1835: -8,9 + 1838: 4,12 + 1846: 4,13 + 1854: 4,14 + 1862: 4,15 + 1870: 8,2 + 1878: 8,3 + 1916: -11,-8 + 1919: -10,-8 + 1927: -10,-7 + 1932: -10,-6 + 1937: -10,-5 + 1942: -8,7 + 1947: -8,9 + 1950: -13,-22 + 1955: -13,-20 + 1971: 2,-27 + 1985: 10,-27 + 1993: 11,-26 + 2001: 11,-20 + 2014: 12,-20 + 2022: 4,16 + 2030: 4,17 + 2035: 4,12 + 2043: 4,13 + 2051: 4,14 + 2059: 4,15 + 2067: 8,2 + 2075: 8,3 + 2113: -11,-8 + 2116: -10,-8 + 2124: -10,-7 + 2129: -10,-6 + 2134: -10,-5 + 2139: -8,7 + 2144: -8,9 + 2147: -13,-22 + 2152: -13,-20 + 2168: 2,-27 + 2182: 10,-27 + 2190: 11,-26 + 2198: 11,-20 + 2211: 12,-20 + 2219: 4,16 + 2227: 4,17 + 2232: 4,12 + 2240: 4,13 + 2248: 4,14 + 2256: 4,15 + 2284: -11,-8 + 2287: -10,-8 + 2295: -10,-7 + 2300: -10,-6 + 2305: -10,-5 + 2310: -8,7 + 2315: -8,9 + 2318: -13,-22 + 2323: -13,-20 + 2336: 2,-27 + 2350: 10,-27 + 2358: 11,-26 + 2366: 11,-20 + 2379: 12,-20 + 2387: 4,16 + 2395: 4,17 + 2427: 8,3 + 2435: 8,2 + 2641: 4,12 + 2649: 4,13 + 2657: 4,14 + 2665: 4,15 + 2673: 8,2 + 2681: 8,3 + 2725: -11,-8 + 2728: -10,-8 + 2736: -10,-7 + 2741: -10,-6 + 2746: -10,-5 + 2775: -8,7 + 2780: -8,9 + 2783: -13,-22 + 2788: -13,-20 + 2804: 2,-27 + 2818: 10,-27 + 2826: 11,-26 + 2834: 11,-20 + 2847: 12,-20 + 2855: 4,16 + 2863: 4,17 + 2868: 4,12 + 2876: 4,13 + 2884: 4,14 + 2892: 4,15 + 2900: 8,2 + 2908: 8,3 + 2952: -11,-8 + 2955: -10,-8 + 2963: -10,-7 + 2968: -10,-6 + 2973: -10,-5 + 3002: -8,7 + 3007: -8,9 + 3010: -13,-22 + 3015: -13,-20 + 3031: 2,-27 + 3045: 10,-27 + 3053: 11,-26 + 3061: 11,-20 + 3074: 12,-20 + 3082: 4,16 + 3090: 4,17 + 3095: 4,12 + 3103: 4,13 + 3111: 4,14 + 3119: 4,15 + 3127: 8,2 + 3135: 8,3 + 3179: -11,-8 + 3182: -10,-8 + 3190: -10,-7 + 3195: -10,-6 + 3200: -10,-5 + 3229: -8,7 + 3234: -8,9 + 3237: -13,-22 + 3242: -13,-20 + 3258: 2,-27 + 3272: 10,-27 + 3280: 11,-26 + 3288: 11,-20 + 3301: 12,-20 + 3309: 4,16 + 3317: 4,17 + 3322: 4,12 + 3330: 4,13 + 3338: 4,14 + 3346: 4,15 + 3354: 8,2 + 3362: 8,3 + 3406: -11,-8 + 3409: -10,-8 + 3417: -10,-7 + 3422: -10,-6 + 3427: -10,-5 + 3456: -8,7 + 3461: -8,9 + 3464: -13,-22 + 3469: -13,-20 + 3485: 2,-27 + 3499: 10,-27 + 3507: 11,-26 + 3515: 11,-20 + 3528: 12,-20 + 3536: 4,16 + 3544: 4,17 + 3549: 4,12 + 3557: 4,13 + 3565: 4,14 + 3573: 4,15 + 3581: 8,2 + 3589: 8,3 + 3633: -11,-8 + 3636: -10,-8 + 3668: -8,7 + 3673: -8,9 + 3687: 2,-27 + 3701: 10,-27 + 3709: 11,-26 + 3717: 11,-20 + 3730: 12,-20 + 3738: 4,16 + 3746: 4,17 + 3751: -10,-6 + 3756: -10,-7 + 3761: -10,-5 + 3769: -13,-22 + 3772: 4,12 + 3780: 4,13 + 3788: 4,14 + 3796: 4,15 + 3804: 8,2 + 3812: 8,3 + 3856: -11,-8 + 3859: -10,-8 + 3867: -10,-7 + 3872: -10,-6 + 3877: -10,-5 + 3906: -8,7 + 3911: -8,9 + 3914: -13,-22 + 3931: 2,-27 + 3945: 10,-27 + 3953: 11,-26 + 3961: 11,-20 + 3974: 12,-20 + 3982: 4,16 + 3990: 4,17 - node: zIndex: 1 id: LatticeCornerSW @@ -1743,766 +1831,814 @@ entities: 245: 2,-12 250: 2,-11 255: 2,-10 - 286: 2,-27 - 297: 10,-27 - 305: 11,-26 - 310: 11,-20 - 315: 11,-19 - 323: 4,16 - 329: 4,17 - 336: 4,12 - 344: 4,13 - 352: 4,14 - 360: 4,15 - 368: 8,2 - 376: 8,3 - 381: 9,3 - 386: 9,4 - 391: 2,-13 - 396: 2,-12 - 401: 2,-11 - 406: 2,-10 - 437: 2,-27 - 448: 10,-27 - 456: 11,-26 - 461: 11,-20 - 466: 11,-19 - 474: 4,16 - 480: 4,17 - 487: 4,12 - 495: 4,13 - 503: 4,14 - 511: 4,15 - 519: 8,2 - 527: 8,3 - 532: 9,3 - 537: 9,4 - 542: 2,-13 - 547: 2,-12 - 552: 2,-11 - 557: 2,-10 - 588: 2,-27 - 599: 10,-27 - 607: 11,-26 - 612: 11,-20 - 617: 11,-19 - 625: 4,16 - 631: 4,17 - 638: 4,12 - 646: 4,13 - 654: 4,14 - 662: 4,15 - 670: 8,2 - 678: 8,3 - 683: 9,3 - 688: 9,4 - 693: 2,-13 - 698: 2,-12 - 703: 2,-11 - 708: 2,-10 - 739: 2,-27 - 750: 10,-27 - 758: 11,-26 - 763: 11,-20 - 768: 11,-19 - 776: 4,16 - 782: 4,17 - 789: 4,12 - 797: 4,13 - 805: 4,14 - 813: 4,15 - 821: 8,2 - 829: 8,3 - 834: 9,3 - 839: 9,4 - 844: 2,-13 - 849: 2,-12 - 854: 2,-11 - 859: 2,-10 - 890: 2,-27 - 901: 10,-27 - 909: 11,-26 - 914: 11,-20 - 919: 11,-19 - 927: 4,16 - 933: 4,17 - 940: 4,12 - 948: 4,13 - 956: 4,14 - 964: 4,15 - 972: 8,2 - 980: 8,3 - 985: 9,3 - 990: 9,4 - 995: 2,-13 - 1000: 2,-12 - 1005: 2,-11 - 1010: 2,-10 - 1041: 2,-27 - 1052: 10,-27 - 1060: 11,-26 - 1065: 11,-20 - 1070: 11,-19 - 1078: 4,16 - 1084: 4,17 - 1091: 4,12 - 1099: 4,13 - 1107: 4,14 - 1115: 4,15 - 1123: 8,2 - 1131: 8,3 - 1136: 9,3 - 1141: 9,4 - 1146: 2,-13 - 1151: 2,-12 - 1156: 2,-11 - 1161: 2,-10 - 1192: 2,-27 - 1203: 10,-27 - 1211: 11,-26 - 1216: 11,-20 - 1221: 11,-19 - 1229: 4,16 - 1235: 4,17 - 1242: 4,12 - 1250: 4,13 - 1258: 4,14 - 1266: 4,15 - 1274: 8,2 - 1282: 8,3 - 1287: 9,3 - 1292: 9,4 - 1297: 2,-13 - 1302: 2,-12 - 1307: 2,-11 - 1312: 2,-10 - 1343: 2,-27 - 1354: 10,-27 - 1362: 11,-26 - 1367: 11,-20 - 1372: 11,-19 - 1380: 4,16 - 1386: 4,17 - 1393: 4,12 - 1401: 4,13 - 1409: 4,14 - 1417: 4,15 - 1425: 8,2 - 1433: 8,3 - 1438: 9,3 - 1443: 9,4 - 1448: 2,-13 - 1453: 2,-12 - 1458: 2,-11 - 1463: 2,-10 - 1494: 2,-27 - 1505: 10,-27 - 1513: 11,-26 - 1518: 11,-20 - 1523: 11,-19 - 1531: 4,16 - 1537: 4,17 - 1544: 4,12 - 1552: 4,13 - 1560: 4,14 - 1568: 4,15 - 1576: 8,2 - 1584: 8,3 - 1589: 9,3 - 1594: 9,4 - 1599: 2,-13 - 1604: 2,-12 - 1609: 2,-11 - 1614: 2,-10 - 1645: 2,-27 - 1656: 10,-27 - 1664: 11,-26 - 1669: 11,-20 - 1674: 11,-19 - 1682: 4,16 - 1688: 4,17 - 1695: 4,12 - 1703: 4,13 - 1711: 4,14 - 1719: 4,15 - 1727: 8,2 - 1735: 8,3 - 1740: 9,3 - 1745: 9,4 - 1750: 2,-13 - 1755: 2,-12 - 1760: 2,-11 - 1765: 2,-10 - 1793: 2,-27 - 1801: 10,-27 - 1809: 11,-26 - 1817: 4,16 - 1823: 4,17 - 1830: 11,-20 - 1835: 11,-19 - 1851: 13,-20 - 1856: 12,-20 - 1876: -10,-8 - 1897: 4,12 - 1905: 4,13 - 1913: 4,14 - 1921: 4,15 - 1929: 8,2 - 1937: 8,3 - 1942: 9,3 - 1947: 9,4 - 1952: 2,-13 - 1957: 2,-12 - 1962: 2,-11 - 1967: 2,-10 - 1978: -10,-8 - 2035: 2,-27 - 2049: 10,-27 - 2057: 11,-26 - 2065: 11,-20 - 2070: 11,-19 - 2076: 12,-20 - 2079: 13,-20 - 2086: 4,16 - 2092: 4,17 - 2099: 4,12 - 2107: 4,13 - 2115: 4,14 - 2123: 4,15 - 2131: 8,2 - 2139: 8,3 - 2144: 9,3 - 2149: 9,4 - 2154: 2,-13 - 2159: 2,-12 - 2164: 2,-11 - 2169: 2,-10 - 2180: -10,-8 - 2237: 2,-27 - 2251: 10,-27 - 2259: 11,-26 - 2267: 11,-20 - 2272: 11,-19 - 2278: 12,-20 - 2281: 13,-20 - 2288: 4,16 - 2294: 4,17 - 2301: 4,12 - 2309: 4,13 - 2317: 4,14 - 2325: 4,15 - 2330: 2,-13 - 2335: 2,-12 - 2340: 2,-11 - 2345: 2,-10 - 2356: -10,-8 - 2410: 2,-27 - 2424: 10,-27 - 2432: 11,-26 - 2440: 11,-20 - 2445: 11,-19 - 2451: 12,-20 - 2454: 13,-20 - 2461: 4,16 - 2467: 4,17 - 2484: 10,-3 - 2488: 9,4 - 2493: 9,3 - 2501: 8,3 - 2509: 8,2 - 2715: 4,12 - 2723: 4,13 - 2731: 4,14 - 2739: 4,15 - 2747: 8,2 - 2755: 8,3 - 2760: 9,3 - 2765: 9,4 - 2770: 2,-13 - 2775: 2,-12 - 2780: 2,-11 - 2785: 2,-10 - 2792: 10,-3 - 2802: -10,-8 - 2883: 2,-27 - 2897: 10,-27 - 2905: 11,-26 - 2913: 11,-20 - 2918: 11,-19 - 2924: 12,-20 - 2927: 13,-20 - 2934: 4,16 - 2940: 4,17 - 2947: 4,12 - 2955: 4,13 - 2963: 4,14 - 2971: 4,15 - 2979: 8,2 - 2987: 8,3 - 2992: 9,3 - 2997: 9,4 - 3002: 2,-13 - 3007: 2,-12 - 3012: 2,-11 - 3017: 2,-10 - 3024: 10,-3 - 3034: -10,-8 - 3115: 2,-27 - 3129: 10,-27 - 3137: 11,-26 - 3145: 11,-20 - 3150: 11,-19 - 3156: 12,-20 - 3159: 13,-20 - 3166: 4,16 - 3172: 4,17 - 3179: 4,12 - 3187: 4,13 - 3195: 4,14 - 3203: 4,15 - 3211: 8,2 - 3219: 8,3 - 3224: 9,3 - 3229: 9,4 - 3234: 2,-13 - 3239: 2,-12 - 3244: 2,-11 - 3249: 2,-10 - 3256: 10,-3 - 3266: -10,-8 - 3347: 2,-27 - 3361: 10,-27 - 3369: 11,-26 - 3377: 11,-20 - 3382: 11,-19 - 3388: 12,-20 - 3391: 13,-20 - 3398: 4,16 - 3404: 4,17 - 3411: 4,12 - 3419: 4,13 - 3427: 4,14 - 3435: 4,15 - 3443: 8,2 - 3451: 8,3 - 3456: 9,3 - 3461: 9,4 - 3466: 2,-13 - 3471: 2,-12 - 3476: 2,-11 - 3481: 2,-10 - 3488: 10,-3 - 3498: -10,-8 - 3579: 2,-27 - 3593: 10,-27 - 3601: 11,-26 - 3609: 11,-20 - 3614: 11,-19 - 3620: 12,-20 - 3623: 13,-20 - 3630: 4,16 - 3636: 4,17 - 3643: 4,12 - 3651: 4,13 - 3659: 4,14 - 3667: 4,15 - 3675: 8,2 - 3683: 8,3 - 3688: 9,3 - 3693: 9,4 - 3698: 2,-13 - 3703: 2,-12 - 3708: 2,-11 - 3713: 2,-10 - 3720: 10,-3 - 3730: -10,-8 - 3811: 2,-27 - 3825: 10,-27 - 3833: 11,-26 - 3841: 11,-20 - 3846: 11,-19 - 3852: 12,-20 - 3855: 13,-20 - 3862: 4,16 - 3868: 4,17 - - node: - id: LatticeEdgeE - decals: - 180: 4,12 - 188: 4,13 - 196: 4,14 - 204: 4,15 - 212: 8,2 - 220: 8,3 - 258: -13,-22 - 268: -13,-20 - 272: -10,-28 - 277: -8,-32 281: 2,-27 292: 10,-27 300: 11,-26 + 305: 11,-20 + 310: 11,-19 318: 4,16 - 326: 4,17 + 324: 4,17 331: 4,12 339: 4,13 347: 4,14 355: 4,15 363: 8,2 371: 8,3 - 409: -13,-22 - 419: -13,-20 - 423: -10,-28 - 428: -8,-32 - 432: 2,-27 - 443: 10,-27 - 451: 11,-26 - 469: 4,16 - 477: 4,17 - 482: 4,12 - 490: 4,13 - 498: 4,14 - 506: 4,15 - 514: 8,2 - 522: 8,3 - 560: -13,-22 - 570: -13,-20 - 574: -10,-28 - 579: -8,-32 - 583: 2,-27 - 594: 10,-27 - 602: 11,-26 - 620: 4,16 - 628: 4,17 - 633: 4,12 - 641: 4,13 - 649: 4,14 - 657: 4,15 - 665: 8,2 - 673: 8,3 - 711: -13,-22 - 721: -13,-20 - 725: -10,-28 - 730: -8,-32 - 734: 2,-27 - 745: 10,-27 - 753: 11,-26 - 771: 4,16 - 779: 4,17 - 784: 4,12 - 792: 4,13 - 800: 4,14 - 808: 4,15 - 816: 8,2 - 824: 8,3 - 862: -13,-22 - 872: -13,-20 - 876: -10,-28 - 881: -8,-32 - 885: 2,-27 - 896: 10,-27 - 904: 11,-26 - 922: 4,16 - 930: 4,17 - 935: 4,12 - 943: 4,13 - 951: 4,14 - 959: 4,15 - 967: 8,2 - 975: 8,3 - 1013: -13,-22 - 1023: -13,-20 - 1027: -10,-28 - 1032: -8,-32 - 1036: 2,-27 - 1047: 10,-27 - 1055: 11,-26 - 1073: 4,16 - 1081: 4,17 - 1086: 4,12 - 1094: 4,13 - 1102: 4,14 - 1110: 4,15 - 1118: 8,2 - 1126: 8,3 - 1164: -13,-22 - 1174: -13,-20 - 1178: -10,-28 - 1183: -8,-32 - 1187: 2,-27 - 1198: 10,-27 - 1206: 11,-26 - 1224: 4,16 - 1232: 4,17 - 1237: 4,12 - 1245: 4,13 - 1253: 4,14 - 1261: 4,15 - 1269: 8,2 - 1277: 8,3 - 1315: -13,-22 - 1325: -13,-20 - 1329: -10,-28 - 1334: -8,-32 - 1338: 2,-27 - 1349: 10,-27 - 1357: 11,-26 - 1375: 4,16 - 1383: 4,17 - 1388: 4,12 - 1396: 4,13 - 1404: 4,14 - 1412: 4,15 - 1420: 8,2 - 1428: 8,3 - 1466: -13,-22 - 1476: -13,-20 - 1480: -10,-28 - 1485: -8,-32 - 1489: 2,-27 - 1500: 10,-27 - 1508: 11,-26 - 1526: 4,16 - 1534: 4,17 - 1539: 4,12 - 1547: 4,13 - 1555: 4,14 - 1563: 4,15 - 1571: 8,2 - 1579: 8,3 - 1617: -13,-22 - 1627: -13,-20 - 1631: -10,-28 - 1636: -8,-32 - 1640: 2,-27 - 1651: 10,-27 - 1659: 11,-26 - 1677: 4,16 - 1685: 4,17 - 1690: 4,12 - 1698: 4,13 - 1706: 4,14 - 1714: 4,15 - 1722: 8,2 - 1730: 8,3 - 1768: -13,-22 - 1778: -13,-20 - 1782: -10,-28 - 1788: 2,-27 - 1796: 10,-27 - 1804: 11,-26 - 1812: 4,16 - 1820: 4,17 - 1825: 11,-20 - 1843: -8,-32 - 1846: -9,-30 - 1853: 12,-20 - 1858: -10,-5 - 1863: -10,-6 - 1868: -11,-8 - 1871: -10,-8 - 1879: -10,-7 - 1884: -8,7 - 1889: -8,9 - 1892: 4,12 - 1900: 4,13 - 1908: 4,14 - 1916: 4,15 - 1924: 8,2 - 1932: 8,3 - 1970: -11,-8 - 1973: -10,-8 - 1981: -10,-7 - 1986: -10,-6 - 1991: -10,-5 - 1996: -8,7 - 2001: -8,9 - 2004: -13,-22 - 2014: -13,-20 - 2018: -10,-28 - 2023: -9,-30 - 2026: -8,-32 - 2030: 2,-27 - 2044: 10,-27 - 2052: 11,-26 - 2060: 11,-20 - 2073: 12,-20 - 2081: 4,16 - 2089: 4,17 - 2094: 4,12 - 2102: 4,13 - 2110: 4,14 - 2118: 4,15 - 2126: 8,2 - 2134: 8,3 - 2172: -11,-8 - 2175: -10,-8 - 2183: -10,-7 - 2188: -10,-6 - 2193: -10,-5 - 2198: -8,7 - 2203: -8,9 - 2206: -13,-22 - 2216: -13,-20 - 2220: -10,-28 - 2225: -9,-30 - 2228: -8,-32 - 2232: 2,-27 - 2246: 10,-27 - 2254: 11,-26 - 2262: 11,-20 - 2275: 12,-20 - 2283: 4,16 - 2291: 4,17 - 2296: 4,12 - 2304: 4,13 - 2312: 4,14 - 2320: 4,15 - 2348: -11,-8 - 2351: -10,-8 - 2359: -10,-7 - 2364: -10,-6 - 2369: -10,-5 - 2374: -8,7 - 2379: -8,9 - 2382: -13,-22 - 2392: -13,-20 - 2396: -10,-28 - 2401: -9,-30 - 2405: 2,-27 - 2419: 10,-27 - 2427: 11,-26 - 2435: 11,-20 - 2448: 12,-20 - 2456: 4,16 - 2464: 4,17 - 2496: 8,3 - 2504: 8,2 - 2625: -8,-32 - 2710: 4,12 - 2718: 4,13 - 2726: 4,14 - 2734: 4,15 - 2742: 8,2 - 2750: 8,3 - 2794: -11,-8 - 2797: -10,-8 - 2805: -10,-7 - 2810: -10,-6 - 2815: -10,-5 - 2844: -8,7 - 2849: -8,9 - 2852: -13,-22 - 2862: -13,-20 - 2866: -10,-28 - 2871: -9,-30 - 2874: -8,-32 - 2878: 2,-27 - 2892: 10,-27 - 2900: 11,-26 - 2908: 11,-20 - 2921: 12,-20 - 2929: 4,16 - 2937: 4,17 - 2942: 4,12 - 2950: 4,13 - 2958: 4,14 - 2966: 4,15 - 2974: 8,2 - 2982: 8,3 - 3026: -11,-8 - 3029: -10,-8 - 3037: -10,-7 - 3042: -10,-6 - 3047: -10,-5 - 3076: -8,7 - 3081: -8,9 - 3084: -13,-22 - 3094: -13,-20 - 3098: -10,-28 - 3103: -9,-30 - 3106: -8,-32 - 3110: 2,-27 - 3124: 10,-27 - 3132: 11,-26 - 3140: 11,-20 - 3153: 12,-20 - 3161: 4,16 - 3169: 4,17 - 3174: 4,12 - 3182: 4,13 - 3190: 4,14 - 3198: 4,15 - 3206: 8,2 - 3214: 8,3 - 3258: -11,-8 - 3261: -10,-8 - 3269: -10,-7 - 3274: -10,-6 - 3279: -10,-5 - 3308: -8,7 - 3313: -8,9 - 3316: -13,-22 - 3326: -13,-20 - 3330: -10,-28 - 3335: -9,-30 - 3338: -8,-32 - 3342: 2,-27 - 3356: 10,-27 - 3364: 11,-26 - 3372: 11,-20 - 3385: 12,-20 - 3393: 4,16 - 3401: 4,17 - 3406: 4,12 - 3414: 4,13 - 3422: 4,14 - 3430: 4,15 - 3438: 8,2 - 3446: 8,3 - 3490: -11,-8 - 3493: -10,-8 - 3501: -10,-7 - 3506: -10,-6 - 3511: -10,-5 - 3540: -8,7 - 3545: -8,9 - 3548: -13,-22 - 3558: -13,-20 - 3562: -10,-28 - 3567: -9,-30 - 3570: -8,-32 - 3574: 2,-27 - 3588: 10,-27 - 3596: 11,-26 - 3604: 11,-20 - 3617: 12,-20 - 3625: 4,16 - 3633: 4,17 - 3638: 4,12 - 3646: 4,13 - 3654: 4,14 - 3662: 4,15 - 3670: 8,2 - 3678: 8,3 - 3722: -11,-8 - 3725: -10,-8 - 3772: -8,7 - 3777: -8,9 - 3794: -10,-28 - 3799: -9,-30 - 3802: -8,-32 - 3806: 2,-27 - 3820: 10,-27 - 3828: 11,-26 - 3836: 11,-20 - 3849: 12,-20 - 3857: 4,16 - 3865: 4,17 - 3870: -10,-6 - 3875: -10,-7 - 3880: -10,-5 - 3890: -13,-20 - 3894: -13,-22 + 376: 9,3 + 381: 9,4 + 386: 2,-13 + 391: 2,-12 + 396: 2,-11 + 401: 2,-10 + 427: 2,-27 + 438: 10,-27 + 446: 11,-26 + 451: 11,-20 + 456: 11,-19 + 464: 4,16 + 470: 4,17 + 477: 4,12 + 485: 4,13 + 493: 4,14 + 501: 4,15 + 509: 8,2 + 517: 8,3 + 522: 9,3 + 527: 9,4 + 532: 2,-13 + 537: 2,-12 + 542: 2,-11 + 547: 2,-10 + 573: 2,-27 + 584: 10,-27 + 592: 11,-26 + 597: 11,-20 + 602: 11,-19 + 610: 4,16 + 616: 4,17 + 623: 4,12 + 631: 4,13 + 639: 4,14 + 647: 4,15 + 655: 8,2 + 663: 8,3 + 668: 9,3 + 673: 9,4 + 678: 2,-13 + 683: 2,-12 + 688: 2,-11 + 693: 2,-10 + 719: 2,-27 + 730: 10,-27 + 738: 11,-26 + 743: 11,-20 + 748: 11,-19 + 756: 4,16 + 762: 4,17 + 769: 4,12 + 777: 4,13 + 785: 4,14 + 793: 4,15 + 801: 8,2 + 809: 8,3 + 814: 9,3 + 819: 9,4 + 824: 2,-13 + 829: 2,-12 + 834: 2,-11 + 839: 2,-10 + 865: 2,-27 + 876: 10,-27 + 884: 11,-26 + 889: 11,-20 + 894: 11,-19 + 902: 4,16 + 908: 4,17 + 915: 4,12 + 923: 4,13 + 931: 4,14 + 939: 4,15 + 947: 8,2 + 955: 8,3 + 960: 9,3 + 965: 9,4 + 970: 2,-13 + 975: 2,-12 + 980: 2,-11 + 985: 2,-10 + 1011: 2,-27 + 1022: 10,-27 + 1030: 11,-26 + 1035: 11,-20 + 1040: 11,-19 + 1048: 4,16 + 1054: 4,17 + 1061: 4,12 + 1069: 4,13 + 1077: 4,14 + 1085: 4,15 + 1093: 8,2 + 1101: 8,3 + 1106: 9,3 + 1111: 9,4 + 1116: 2,-13 + 1121: 2,-12 + 1126: 2,-11 + 1131: 2,-10 + 1157: 2,-27 + 1168: 10,-27 + 1176: 11,-26 + 1181: 11,-20 + 1186: 11,-19 + 1194: 4,16 + 1200: 4,17 + 1207: 4,12 + 1215: 4,13 + 1223: 4,14 + 1231: 4,15 + 1239: 8,2 + 1247: 8,3 + 1252: 9,3 + 1257: 9,4 + 1262: 2,-13 + 1267: 2,-12 + 1272: 2,-11 + 1277: 2,-10 + 1303: 2,-27 + 1314: 10,-27 + 1322: 11,-26 + 1327: 11,-20 + 1332: 11,-19 + 1340: 4,16 + 1346: 4,17 + 1353: 4,12 + 1361: 4,13 + 1369: 4,14 + 1377: 4,15 + 1385: 8,2 + 1393: 8,3 + 1398: 9,3 + 1403: 9,4 + 1408: 2,-13 + 1413: 2,-12 + 1418: 2,-11 + 1423: 2,-10 + 1449: 2,-27 + 1460: 10,-27 + 1468: 11,-26 + 1473: 11,-20 + 1478: 11,-19 + 1486: 4,16 + 1492: 4,17 + 1499: 4,12 + 1507: 4,13 + 1515: 4,14 + 1523: 4,15 + 1531: 8,2 + 1539: 8,3 + 1544: 9,3 + 1549: 9,4 + 1554: 2,-13 + 1559: 2,-12 + 1564: 2,-11 + 1569: 2,-10 + 1595: 2,-27 + 1606: 10,-27 + 1614: 11,-26 + 1619: 11,-20 + 1624: 11,-19 + 1632: 4,16 + 1638: 4,17 + 1645: 4,12 + 1653: 4,13 + 1661: 4,14 + 1669: 4,15 + 1677: 8,2 + 1685: 8,3 + 1690: 9,3 + 1695: 9,4 + 1700: 2,-13 + 1705: 2,-12 + 1710: 2,-11 + 1715: 2,-10 + 1738: 2,-27 + 1746: 10,-27 + 1754: 11,-26 + 1762: 4,16 + 1768: 4,17 + 1775: 11,-20 + 1780: 11,-19 + 1796: 13,-20 + 1801: 12,-20 + 1821: -10,-8 + 1842: 4,12 + 1850: 4,13 + 1858: 4,14 + 1866: 4,15 + 1874: 8,2 + 1882: 8,3 + 1887: 9,3 + 1892: 9,4 + 1897: 2,-13 + 1902: 2,-12 + 1907: 2,-11 + 1912: 2,-10 + 1923: -10,-8 + 1975: 2,-27 + 1989: 10,-27 + 1997: 11,-26 + 2005: 11,-20 + 2010: 11,-19 + 2016: 12,-20 + 2019: 13,-20 + 2026: 4,16 + 2032: 4,17 + 2039: 4,12 + 2047: 4,13 + 2055: 4,14 + 2063: 4,15 + 2071: 8,2 + 2079: 8,3 + 2084: 9,3 + 2089: 9,4 + 2094: 2,-13 + 2099: 2,-12 + 2104: 2,-11 + 2109: 2,-10 + 2120: -10,-8 + 2172: 2,-27 + 2186: 10,-27 + 2194: 11,-26 + 2202: 11,-20 + 2207: 11,-19 + 2213: 12,-20 + 2216: 13,-20 + 2223: 4,16 + 2229: 4,17 + 2236: 4,12 + 2244: 4,13 + 2252: 4,14 + 2260: 4,15 + 2265: 2,-13 + 2270: 2,-12 + 2275: 2,-11 + 2280: 2,-10 + 2291: -10,-8 + 2340: 2,-27 + 2354: 10,-27 + 2362: 11,-26 + 2370: 11,-20 + 2375: 11,-19 + 2381: 12,-20 + 2384: 13,-20 + 2391: 4,16 + 2397: 4,17 + 2414: 10,-3 + 2418: 9,4 + 2423: 9,3 + 2431: 8,3 + 2439: 8,2 + 2645: 4,12 + 2653: 4,13 + 2661: 4,14 + 2669: 4,15 + 2677: 8,2 + 2685: 8,3 + 2690: 9,3 + 2695: 9,4 + 2700: 2,-13 + 2705: 2,-12 + 2710: 2,-11 + 2715: 2,-10 + 2722: 10,-3 + 2732: -10,-8 + 2808: 2,-27 + 2822: 10,-27 + 2830: 11,-26 + 2838: 11,-20 + 2843: 11,-19 + 2849: 12,-20 + 2852: 13,-20 + 2859: 4,16 + 2865: 4,17 + 2872: 4,12 + 2880: 4,13 + 2888: 4,14 + 2896: 4,15 + 2904: 8,2 + 2912: 8,3 + 2917: 9,3 + 2922: 9,4 + 2927: 2,-13 + 2932: 2,-12 + 2937: 2,-11 + 2942: 2,-10 + 2949: 10,-3 + 2959: -10,-8 + 3035: 2,-27 + 3049: 10,-27 + 3057: 11,-26 + 3065: 11,-20 + 3070: 11,-19 + 3076: 12,-20 + 3079: 13,-20 + 3086: 4,16 + 3092: 4,17 + 3099: 4,12 + 3107: 4,13 + 3115: 4,14 + 3123: 4,15 + 3131: 8,2 + 3139: 8,3 + 3144: 9,3 + 3149: 9,4 + 3154: 2,-13 + 3159: 2,-12 + 3164: 2,-11 + 3169: 2,-10 + 3176: 10,-3 + 3186: -10,-8 + 3262: 2,-27 + 3276: 10,-27 + 3284: 11,-26 + 3292: 11,-20 + 3297: 11,-19 + 3303: 12,-20 + 3306: 13,-20 + 3313: 4,16 + 3319: 4,17 + 3326: 4,12 + 3334: 4,13 + 3342: 4,14 + 3350: 4,15 + 3358: 8,2 + 3366: 8,3 + 3371: 9,3 + 3376: 9,4 + 3381: 2,-13 + 3386: 2,-12 + 3391: 2,-11 + 3396: 2,-10 + 3403: 10,-3 + 3413: -10,-8 + 3489: 2,-27 + 3503: 10,-27 + 3511: 11,-26 + 3519: 11,-20 + 3524: 11,-19 + 3530: 12,-20 + 3533: 13,-20 + 3540: 4,16 + 3546: 4,17 + 3553: 4,12 + 3561: 4,13 + 3569: 4,14 + 3577: 4,15 + 3585: 8,2 + 3593: 8,3 + 3598: 9,3 + 3603: 9,4 + 3608: 2,-13 + 3613: 2,-12 + 3618: 2,-11 + 3623: 2,-10 + 3630: 10,-3 + 3640: -10,-8 + 3691: 2,-27 + 3705: 10,-27 + 3713: 11,-26 + 3721: 11,-20 + 3726: 11,-19 + 3732: 12,-20 + 3735: 13,-20 + 3742: 4,16 + 3748: 4,17 + 3776: 4,12 + 3784: 4,13 + 3792: 4,14 + 3800: 4,15 + 3808: 8,2 + 3816: 8,3 + 3821: 9,3 + 3826: 9,4 + 3831: 2,-13 + 3836: 2,-12 + 3841: 2,-11 + 3846: 2,-10 + 3853: 10,-3 + 3863: -10,-8 + 3935: 2,-27 + 3949: 10,-27 + 3957: 11,-26 + 3965: 11,-20 + 3970: 11,-19 + 3976: 12,-20 + 3979: 13,-20 + 3986: 4,16 + 3992: 4,17 + - node: + id: LatticeEdgeE + decals: + 180: 4,12 + 188: 4,13 + 196: 4,14 + 204: 4,15 + 212: 8,2 + 220: 8,3 + 258: -13,-22 + 263: -13,-20 + 267: -10,-28 + 272: -8,-32 + 276: 2,-27 + 287: 10,-27 + 295: 11,-26 + 313: 4,16 + 321: 4,17 + 326: 4,12 + 334: 4,13 + 342: 4,14 + 350: 4,15 + 358: 8,2 + 366: 8,3 + 404: -13,-22 + 409: -13,-20 + 413: -10,-28 + 418: -8,-32 + 422: 2,-27 + 433: 10,-27 + 441: 11,-26 + 459: 4,16 + 467: 4,17 + 472: 4,12 + 480: 4,13 + 488: 4,14 + 496: 4,15 + 504: 8,2 + 512: 8,3 + 550: -13,-22 + 555: -13,-20 + 559: -10,-28 + 564: -8,-32 + 568: 2,-27 + 579: 10,-27 + 587: 11,-26 + 605: 4,16 + 613: 4,17 + 618: 4,12 + 626: 4,13 + 634: 4,14 + 642: 4,15 + 650: 8,2 + 658: 8,3 + 696: -13,-22 + 701: -13,-20 + 705: -10,-28 + 710: -8,-32 + 714: 2,-27 + 725: 10,-27 + 733: 11,-26 + 751: 4,16 + 759: 4,17 + 764: 4,12 + 772: 4,13 + 780: 4,14 + 788: 4,15 + 796: 8,2 + 804: 8,3 + 842: -13,-22 + 847: -13,-20 + 851: -10,-28 + 856: -8,-32 + 860: 2,-27 + 871: 10,-27 + 879: 11,-26 + 897: 4,16 + 905: 4,17 + 910: 4,12 + 918: 4,13 + 926: 4,14 + 934: 4,15 + 942: 8,2 + 950: 8,3 + 988: -13,-22 + 993: -13,-20 + 997: -10,-28 + 1002: -8,-32 + 1006: 2,-27 + 1017: 10,-27 + 1025: 11,-26 + 1043: 4,16 + 1051: 4,17 + 1056: 4,12 + 1064: 4,13 + 1072: 4,14 + 1080: 4,15 + 1088: 8,2 + 1096: 8,3 + 1134: -13,-22 + 1139: -13,-20 + 1143: -10,-28 + 1148: -8,-32 + 1152: 2,-27 + 1163: 10,-27 + 1171: 11,-26 + 1189: 4,16 + 1197: 4,17 + 1202: 4,12 + 1210: 4,13 + 1218: 4,14 + 1226: 4,15 + 1234: 8,2 + 1242: 8,3 + 1280: -13,-22 + 1285: -13,-20 + 1289: -10,-28 + 1294: -8,-32 + 1298: 2,-27 + 1309: 10,-27 + 1317: 11,-26 + 1335: 4,16 + 1343: 4,17 + 1348: 4,12 + 1356: 4,13 + 1364: 4,14 + 1372: 4,15 + 1380: 8,2 + 1388: 8,3 + 1426: -13,-22 + 1431: -13,-20 + 1435: -10,-28 + 1440: -8,-32 + 1444: 2,-27 + 1455: 10,-27 + 1463: 11,-26 + 1481: 4,16 + 1489: 4,17 + 1494: 4,12 + 1502: 4,13 + 1510: 4,14 + 1518: 4,15 + 1526: 8,2 + 1534: 8,3 + 1572: -13,-22 + 1577: -13,-20 + 1581: -10,-28 + 1586: -8,-32 + 1590: 2,-27 + 1601: 10,-27 + 1609: 11,-26 + 1627: 4,16 + 1635: 4,17 + 1640: 4,12 + 1648: 4,13 + 1656: 4,14 + 1664: 4,15 + 1672: 8,2 + 1680: 8,3 + 1718: -13,-22 + 1723: -13,-20 + 1727: -10,-28 + 1733: 2,-27 + 1741: 10,-27 + 1749: 11,-26 + 1757: 4,16 + 1765: 4,17 + 1770: 11,-20 + 1788: -8,-32 + 1791: -9,-30 + 1798: 12,-20 + 1803: -10,-5 + 1808: -10,-6 + 1813: -11,-8 + 1816: -10,-8 + 1824: -10,-7 + 1829: -8,7 + 1834: -8,9 + 1837: 4,12 + 1845: 4,13 + 1853: 4,14 + 1861: 4,15 + 1869: 8,2 + 1877: 8,3 + 1915: -11,-8 + 1918: -10,-8 + 1926: -10,-7 + 1931: -10,-6 + 1936: -10,-5 + 1941: -8,7 + 1946: -8,9 + 1949: -13,-22 + 1954: -13,-20 + 1958: -10,-28 + 1963: -9,-30 + 1966: -8,-32 + 1970: 2,-27 + 1984: 10,-27 + 1992: 11,-26 + 2000: 11,-20 + 2013: 12,-20 + 2021: 4,16 + 2029: 4,17 + 2034: 4,12 + 2042: 4,13 + 2050: 4,14 + 2058: 4,15 + 2066: 8,2 + 2074: 8,3 + 2112: -11,-8 + 2115: -10,-8 + 2123: -10,-7 + 2128: -10,-6 + 2133: -10,-5 + 2138: -8,7 + 2143: -8,9 + 2146: -13,-22 + 2151: -13,-20 + 2155: -10,-28 + 2160: -9,-30 + 2163: -8,-32 + 2167: 2,-27 + 2181: 10,-27 + 2189: 11,-26 + 2197: 11,-20 + 2210: 12,-20 + 2218: 4,16 + 2226: 4,17 + 2231: 4,12 + 2239: 4,13 + 2247: 4,14 + 2255: 4,15 + 2283: -11,-8 + 2286: -10,-8 + 2294: -10,-7 + 2299: -10,-6 + 2304: -10,-5 + 2309: -8,7 + 2314: -8,9 + 2317: -13,-22 + 2322: -13,-20 + 2326: -10,-28 + 2331: -9,-30 + 2335: 2,-27 + 2349: 10,-27 + 2357: 11,-26 + 2365: 11,-20 + 2378: 12,-20 + 2386: 4,16 + 2394: 4,17 + 2426: 8,3 + 2434: 8,2 + 2555: -8,-32 + 2640: 4,12 + 2648: 4,13 + 2656: 4,14 + 2664: 4,15 + 2672: 8,2 + 2680: 8,3 + 2724: -11,-8 + 2727: -10,-8 + 2735: -10,-7 + 2740: -10,-6 + 2745: -10,-5 + 2774: -8,7 + 2779: -8,9 + 2782: -13,-22 + 2787: -13,-20 + 2791: -10,-28 + 2796: -9,-30 + 2799: -8,-32 + 2803: 2,-27 + 2817: 10,-27 + 2825: 11,-26 + 2833: 11,-20 + 2846: 12,-20 + 2854: 4,16 + 2862: 4,17 + 2867: 4,12 + 2875: 4,13 + 2883: 4,14 + 2891: 4,15 + 2899: 8,2 + 2907: 8,3 + 2951: -11,-8 + 2954: -10,-8 + 2962: -10,-7 + 2967: -10,-6 + 2972: -10,-5 + 3001: -8,7 + 3006: -8,9 + 3009: -13,-22 + 3014: -13,-20 + 3018: -10,-28 + 3023: -9,-30 + 3026: -8,-32 + 3030: 2,-27 + 3044: 10,-27 + 3052: 11,-26 + 3060: 11,-20 + 3073: 12,-20 + 3081: 4,16 + 3089: 4,17 + 3094: 4,12 + 3102: 4,13 + 3110: 4,14 + 3118: 4,15 + 3126: 8,2 + 3134: 8,3 + 3178: -11,-8 + 3181: -10,-8 + 3189: -10,-7 + 3194: -10,-6 + 3199: -10,-5 + 3228: -8,7 + 3233: -8,9 + 3236: -13,-22 + 3241: -13,-20 + 3245: -10,-28 + 3250: -9,-30 + 3253: -8,-32 + 3257: 2,-27 + 3271: 10,-27 + 3279: 11,-26 + 3287: 11,-20 + 3300: 12,-20 + 3308: 4,16 + 3316: 4,17 + 3321: 4,12 + 3329: 4,13 + 3337: 4,14 + 3345: 4,15 + 3353: 8,2 + 3361: 8,3 + 3405: -11,-8 + 3408: -10,-8 + 3416: -10,-7 + 3421: -10,-6 + 3426: -10,-5 + 3455: -8,7 + 3460: -8,9 + 3463: -13,-22 + 3468: -13,-20 + 3472: -10,-28 + 3477: -9,-30 + 3480: -8,-32 + 3484: 2,-27 + 3498: 10,-27 + 3506: 11,-26 + 3514: 11,-20 + 3527: 12,-20 + 3535: 4,16 + 3543: 4,17 + 3548: 4,12 + 3556: 4,13 + 3564: 4,14 + 3572: 4,15 + 3580: 8,2 + 3588: 8,3 + 3632: -11,-8 + 3635: -10,-8 + 3667: -8,7 + 3672: -8,9 + 3674: -10,-28 + 3679: -9,-30 + 3682: -8,-32 + 3686: 2,-27 + 3700: 10,-27 + 3708: 11,-26 + 3716: 11,-20 + 3729: 12,-20 + 3737: 4,16 + 3745: 4,17 + 3750: -10,-6 + 3755: -10,-7 + 3760: -10,-5 + 3764: -13,-20 + 3768: -13,-22 + 3771: 4,12 + 3779: 4,13 + 3787: 4,14 + 3795: 4,15 + 3803: 8,2 + 3811: 8,3 + 3855: -11,-8 + 3858: -10,-8 + 3866: -10,-7 + 3871: -10,-6 + 3876: -10,-5 + 3905: -8,7 + 3910: -8,9 + 3913: -13,-22 + 3915: -13,-20 + 3918: -10,-28 + 3923: -9,-30 + 3926: -8,-32 + 3930: 2,-27 + 3944: 10,-27 + 3952: 11,-26 + 3960: 11,-20 + 3973: 12,-20 + 3981: 4,16 + 3989: 4,17 - node: id: LatticeEdgeN decals: @@ -2519,498 +2655,528 @@ entities: 248: 2,-11 253: 2,-10 260: -13,-22 - 270: -13,-20 - 273: -10,-28 - 278: -8,-32 - 283: 2,-27 - 288: 8,-32 - 294: 10,-27 - 302: 11,-26 - 308: 11,-20 - 313: 11,-19 - 320: 4,16 - 333: 4,12 - 341: 4,13 - 349: 4,14 - 357: 4,15 - 365: 8,2 - 373: 8,3 - 379: 9,3 - 384: 9,4 - 389: 2,-13 - 394: 2,-12 - 399: 2,-11 - 404: 2,-10 - 411: -13,-22 - 421: -13,-20 - 424: -10,-28 - 429: -8,-32 - 434: 2,-27 - 439: 8,-32 - 445: 10,-27 - 453: 11,-26 - 459: 11,-20 - 464: 11,-19 - 471: 4,16 - 484: 4,12 - 492: 4,13 - 500: 4,14 - 508: 4,15 - 516: 8,2 - 524: 8,3 - 530: 9,3 - 535: 9,4 - 540: 2,-13 - 545: 2,-12 - 550: 2,-11 - 555: 2,-10 - 562: -13,-22 - 572: -13,-20 - 575: -10,-28 - 580: -8,-32 - 585: 2,-27 - 590: 8,-32 - 596: 10,-27 - 604: 11,-26 - 610: 11,-20 - 615: 11,-19 - 622: 4,16 - 635: 4,12 - 643: 4,13 - 651: 4,14 - 659: 4,15 - 667: 8,2 - 675: 8,3 - 681: 9,3 - 686: 9,4 - 691: 2,-13 - 696: 2,-12 - 701: 2,-11 - 706: 2,-10 - 713: -13,-22 - 723: -13,-20 - 726: -10,-28 - 731: -8,-32 - 736: 2,-27 - 741: 8,-32 - 747: 10,-27 - 755: 11,-26 - 761: 11,-20 - 766: 11,-19 - 773: 4,16 - 786: 4,12 - 794: 4,13 - 802: 4,14 - 810: 4,15 - 818: 8,2 - 826: 8,3 - 832: 9,3 - 837: 9,4 - 842: 2,-13 - 847: 2,-12 - 852: 2,-11 - 857: 2,-10 - 864: -13,-22 - 874: -13,-20 - 877: -10,-28 - 882: -8,-32 - 887: 2,-27 - 892: 8,-32 - 898: 10,-27 - 906: 11,-26 - 912: 11,-20 - 917: 11,-19 - 924: 4,16 - 937: 4,12 - 945: 4,13 - 953: 4,14 - 961: 4,15 - 969: 8,2 - 977: 8,3 - 983: 9,3 - 988: 9,4 - 993: 2,-13 - 998: 2,-12 - 1003: 2,-11 - 1008: 2,-10 - 1015: -13,-22 - 1025: -13,-20 - 1028: -10,-28 - 1033: -8,-32 - 1038: 2,-27 - 1043: 8,-32 - 1049: 10,-27 - 1057: 11,-26 - 1063: 11,-20 - 1068: 11,-19 - 1075: 4,16 - 1088: 4,12 - 1096: 4,13 - 1104: 4,14 - 1112: 4,15 - 1120: 8,2 - 1128: 8,3 - 1134: 9,3 - 1139: 9,4 - 1144: 2,-13 - 1149: 2,-12 - 1154: 2,-11 - 1159: 2,-10 - 1166: -13,-22 - 1176: -13,-20 - 1179: -10,-28 - 1184: -8,-32 - 1189: 2,-27 - 1194: 8,-32 - 1200: 10,-27 - 1208: 11,-26 - 1214: 11,-20 - 1219: 11,-19 - 1226: 4,16 - 1239: 4,12 - 1247: 4,13 - 1255: 4,14 - 1263: 4,15 - 1271: 8,2 - 1279: 8,3 - 1285: 9,3 - 1290: 9,4 - 1295: 2,-13 - 1300: 2,-12 - 1305: 2,-11 - 1310: 2,-10 - 1317: -13,-22 - 1327: -13,-20 - 1330: -10,-28 - 1335: -8,-32 - 1340: 2,-27 - 1345: 8,-32 - 1351: 10,-27 - 1359: 11,-26 - 1365: 11,-20 - 1370: 11,-19 - 1377: 4,16 - 1390: 4,12 - 1398: 4,13 - 1406: 4,14 - 1414: 4,15 - 1422: 8,2 - 1430: 8,3 - 1436: 9,3 - 1441: 9,4 - 1446: 2,-13 - 1451: 2,-12 - 1456: 2,-11 - 1461: 2,-10 - 1468: -13,-22 - 1478: -13,-20 - 1481: -10,-28 - 1486: -8,-32 - 1491: 2,-27 - 1496: 8,-32 - 1502: 10,-27 - 1510: 11,-26 - 1516: 11,-20 - 1521: 11,-19 - 1528: 4,16 - 1541: 4,12 - 1549: 4,13 - 1557: 4,14 - 1565: 4,15 - 1573: 8,2 - 1581: 8,3 - 1587: 9,3 - 1592: 9,4 - 1597: 2,-13 - 1602: 2,-12 - 1607: 2,-11 - 1612: 2,-10 - 1619: -13,-22 - 1629: -13,-20 - 1632: -10,-28 - 1637: -8,-32 - 1642: 2,-27 - 1647: 8,-32 - 1653: 10,-27 - 1661: 11,-26 - 1667: 11,-20 - 1672: 11,-19 - 1679: 4,16 - 1692: 4,12 - 1700: 4,13 - 1708: 4,14 - 1716: 4,15 - 1724: 8,2 - 1732: 8,3 - 1738: 9,3 - 1743: 9,4 - 1748: 2,-13 - 1753: 2,-12 - 1758: 2,-11 - 1763: 2,-10 - 1770: -13,-22 - 1780: -13,-20 - 1783: -10,-28 - 1790: 2,-27 - 1798: 10,-27 - 1806: 11,-26 - 1814: 4,16 - 1827: 11,-20 - 1833: 11,-19 - 1837: 8,-32 - 1840: 9,-30 - 1844: -8,-32 - 1847: -9,-30 - 1860: -10,-5 - 1865: -10,-6 - 1873: -10,-8 - 1881: -10,-7 - 1886: -8,7 - 1894: 4,12 - 1902: 4,13 - 1910: 4,14 - 1918: 4,15 - 1926: 8,2 - 1934: 8,3 - 1940: 9,3 - 1945: 9,4 - 1950: 2,-13 - 1955: 2,-12 - 1960: 2,-11 - 1965: 2,-10 - 1975: -10,-8 - 1983: -10,-7 - 1988: -10,-6 - 1993: -10,-5 - 1998: -8,7 - 2006: -13,-22 - 2016: -13,-20 - 2019: -10,-28 - 2024: -9,-30 - 2027: -8,-32 - 2032: 2,-27 - 2037: 8,-32 - 2040: 9,-30 - 2046: 10,-27 - 2054: 11,-26 - 2062: 11,-20 - 2068: 11,-19 - 2083: 4,16 - 2096: 4,12 - 2104: 4,13 - 2112: 4,14 - 2120: 4,15 - 2128: 8,2 - 2136: 8,3 - 2142: 9,3 - 2147: 9,4 - 2152: 2,-13 - 2157: 2,-12 - 2162: 2,-11 - 2167: 2,-10 - 2177: -10,-8 - 2185: -10,-7 - 2190: -10,-6 - 2195: -10,-5 - 2200: -8,7 - 2208: -13,-22 - 2218: -13,-20 - 2221: -10,-28 - 2226: -9,-30 - 2229: -8,-32 - 2234: 2,-27 - 2239: 8,-32 - 2242: 9,-30 - 2248: 10,-27 - 2256: 11,-26 - 2264: 11,-20 - 2270: 11,-19 - 2285: 4,16 - 2298: 4,12 - 2306: 4,13 - 2314: 4,14 - 2322: 4,15 - 2328: 2,-13 - 2333: 2,-12 - 2338: 2,-11 - 2343: 2,-10 - 2353: -10,-8 - 2361: -10,-7 - 2366: -10,-6 - 2371: -10,-5 - 2376: -8,7 - 2384: -13,-22 - 2394: -13,-20 - 2397: -10,-28 - 2402: -9,-30 - 2407: 2,-27 - 2412: 8,-32 - 2415: 9,-30 - 2421: 10,-27 - 2429: 11,-26 - 2437: 11,-20 - 2443: 11,-19 - 2458: 4,16 - 2479: 10,-5 - 2486: 9,4 - 2491: 9,3 - 2498: 8,3 - 2506: 8,2 - 2626: -8,-32 - 2712: 4,12 - 2720: 4,13 - 2728: 4,14 - 2736: 4,15 - 2744: 8,2 - 2752: 8,3 - 2758: 9,3 - 2763: 9,4 - 2768: 2,-13 - 2773: 2,-12 - 2778: 2,-11 - 2783: 2,-10 - 2787: 10,-5 - 2799: -10,-8 - 2807: -10,-7 - 2812: -10,-6 - 2817: -10,-5 - 2846: -8,7 - 2854: -13,-22 - 2864: -13,-20 - 2867: -10,-28 - 2872: -9,-30 - 2875: -8,-32 - 2880: 2,-27 - 2885: 8,-32 - 2888: 9,-30 - 2894: 10,-27 - 2902: 11,-26 - 2910: 11,-20 - 2916: 11,-19 - 2931: 4,16 - 2944: 4,12 - 2952: 4,13 - 2960: 4,14 - 2968: 4,15 - 2976: 8,2 - 2984: 8,3 - 2990: 9,3 - 2995: 9,4 - 3000: 2,-13 - 3005: 2,-12 - 3010: 2,-11 - 3015: 2,-10 - 3019: 10,-5 - 3031: -10,-8 - 3039: -10,-7 - 3044: -10,-6 - 3049: -10,-5 - 3078: -8,7 - 3086: -13,-22 - 3096: -13,-20 - 3099: -10,-28 - 3104: -9,-30 - 3107: -8,-32 - 3112: 2,-27 - 3117: 8,-32 - 3120: 9,-30 - 3126: 10,-27 - 3134: 11,-26 - 3142: 11,-20 - 3148: 11,-19 - 3163: 4,16 - 3176: 4,12 - 3184: 4,13 - 3192: 4,14 - 3200: 4,15 - 3208: 8,2 - 3216: 8,3 - 3222: 9,3 - 3227: 9,4 - 3232: 2,-13 - 3237: 2,-12 - 3242: 2,-11 - 3247: 2,-10 - 3251: 10,-5 - 3263: -10,-8 - 3271: -10,-7 - 3276: -10,-6 - 3281: -10,-5 - 3310: -8,7 - 3318: -13,-22 - 3328: -13,-20 - 3331: -10,-28 - 3336: -9,-30 - 3339: -8,-32 - 3344: 2,-27 - 3349: 8,-32 - 3352: 9,-30 - 3358: 10,-27 - 3366: 11,-26 - 3374: 11,-20 - 3380: 11,-19 - 3395: 4,16 - 3408: 4,12 - 3416: 4,13 - 3424: 4,14 - 3432: 4,15 - 3440: 8,2 - 3448: 8,3 - 3454: 9,3 - 3459: 9,4 - 3464: 2,-13 - 3469: 2,-12 - 3474: 2,-11 - 3479: 2,-10 - 3483: 10,-5 - 3495: -10,-8 - 3503: -10,-7 - 3508: -10,-6 - 3513: -10,-5 - 3542: -8,7 - 3550: -13,-22 - 3560: -13,-20 - 3563: -10,-28 - 3568: -9,-30 - 3571: -8,-32 - 3576: 2,-27 - 3581: 8,-32 - 3584: 9,-30 - 3590: 10,-27 - 3598: 11,-26 - 3606: 11,-20 - 3612: 11,-19 - 3627: 4,16 - 3640: 4,12 - 3648: 4,13 - 3656: 4,14 - 3664: 4,15 - 3672: 8,2 - 3680: 8,3 - 3686: 9,3 - 3691: 9,4 - 3696: 2,-13 - 3701: 2,-12 - 3706: 2,-11 - 3711: 2,-10 - 3715: 10,-5 - 3727: -10,-8 - 3774: -8,7 - 3795: -10,-28 - 3800: -9,-30 - 3803: -8,-32 - 3808: 2,-27 - 3813: 8,-32 - 3816: 9,-30 - 3822: 10,-27 - 3830: 11,-26 - 3838: 11,-20 - 3844: 11,-19 - 3859: 4,16 - 3872: -10,-6 - 3877: -10,-7 - 3882: -10,-5 - 3891: -13,-20 + 265: -13,-20 + 268: -10,-28 + 273: -8,-32 + 278: 2,-27 + 283: 8,-32 + 289: 10,-27 + 297: 11,-26 + 303: 11,-20 + 308: 11,-19 + 315: 4,16 + 328: 4,12 + 336: 4,13 + 344: 4,14 + 352: 4,15 + 360: 8,2 + 368: 8,3 + 374: 9,3 + 379: 9,4 + 384: 2,-13 + 389: 2,-12 + 394: 2,-11 + 399: 2,-10 + 406: -13,-22 + 411: -13,-20 + 414: -10,-28 + 419: -8,-32 + 424: 2,-27 + 429: 8,-32 + 435: 10,-27 + 443: 11,-26 + 449: 11,-20 + 454: 11,-19 + 461: 4,16 + 474: 4,12 + 482: 4,13 + 490: 4,14 + 498: 4,15 + 506: 8,2 + 514: 8,3 + 520: 9,3 + 525: 9,4 + 530: 2,-13 + 535: 2,-12 + 540: 2,-11 + 545: 2,-10 + 552: -13,-22 + 557: -13,-20 + 560: -10,-28 + 565: -8,-32 + 570: 2,-27 + 575: 8,-32 + 581: 10,-27 + 589: 11,-26 + 595: 11,-20 + 600: 11,-19 + 607: 4,16 + 620: 4,12 + 628: 4,13 + 636: 4,14 + 644: 4,15 + 652: 8,2 + 660: 8,3 + 666: 9,3 + 671: 9,4 + 676: 2,-13 + 681: 2,-12 + 686: 2,-11 + 691: 2,-10 + 698: -13,-22 + 703: -13,-20 + 706: -10,-28 + 711: -8,-32 + 716: 2,-27 + 721: 8,-32 + 727: 10,-27 + 735: 11,-26 + 741: 11,-20 + 746: 11,-19 + 753: 4,16 + 766: 4,12 + 774: 4,13 + 782: 4,14 + 790: 4,15 + 798: 8,2 + 806: 8,3 + 812: 9,3 + 817: 9,4 + 822: 2,-13 + 827: 2,-12 + 832: 2,-11 + 837: 2,-10 + 844: -13,-22 + 849: -13,-20 + 852: -10,-28 + 857: -8,-32 + 862: 2,-27 + 867: 8,-32 + 873: 10,-27 + 881: 11,-26 + 887: 11,-20 + 892: 11,-19 + 899: 4,16 + 912: 4,12 + 920: 4,13 + 928: 4,14 + 936: 4,15 + 944: 8,2 + 952: 8,3 + 958: 9,3 + 963: 9,4 + 968: 2,-13 + 973: 2,-12 + 978: 2,-11 + 983: 2,-10 + 990: -13,-22 + 995: -13,-20 + 998: -10,-28 + 1003: -8,-32 + 1008: 2,-27 + 1013: 8,-32 + 1019: 10,-27 + 1027: 11,-26 + 1033: 11,-20 + 1038: 11,-19 + 1045: 4,16 + 1058: 4,12 + 1066: 4,13 + 1074: 4,14 + 1082: 4,15 + 1090: 8,2 + 1098: 8,3 + 1104: 9,3 + 1109: 9,4 + 1114: 2,-13 + 1119: 2,-12 + 1124: 2,-11 + 1129: 2,-10 + 1136: -13,-22 + 1141: -13,-20 + 1144: -10,-28 + 1149: -8,-32 + 1154: 2,-27 + 1159: 8,-32 + 1165: 10,-27 + 1173: 11,-26 + 1179: 11,-20 + 1184: 11,-19 + 1191: 4,16 + 1204: 4,12 + 1212: 4,13 + 1220: 4,14 + 1228: 4,15 + 1236: 8,2 + 1244: 8,3 + 1250: 9,3 + 1255: 9,4 + 1260: 2,-13 + 1265: 2,-12 + 1270: 2,-11 + 1275: 2,-10 + 1282: -13,-22 + 1287: -13,-20 + 1290: -10,-28 + 1295: -8,-32 + 1300: 2,-27 + 1305: 8,-32 + 1311: 10,-27 + 1319: 11,-26 + 1325: 11,-20 + 1330: 11,-19 + 1337: 4,16 + 1350: 4,12 + 1358: 4,13 + 1366: 4,14 + 1374: 4,15 + 1382: 8,2 + 1390: 8,3 + 1396: 9,3 + 1401: 9,4 + 1406: 2,-13 + 1411: 2,-12 + 1416: 2,-11 + 1421: 2,-10 + 1428: -13,-22 + 1433: -13,-20 + 1436: -10,-28 + 1441: -8,-32 + 1446: 2,-27 + 1451: 8,-32 + 1457: 10,-27 + 1465: 11,-26 + 1471: 11,-20 + 1476: 11,-19 + 1483: 4,16 + 1496: 4,12 + 1504: 4,13 + 1512: 4,14 + 1520: 4,15 + 1528: 8,2 + 1536: 8,3 + 1542: 9,3 + 1547: 9,4 + 1552: 2,-13 + 1557: 2,-12 + 1562: 2,-11 + 1567: 2,-10 + 1574: -13,-22 + 1579: -13,-20 + 1582: -10,-28 + 1587: -8,-32 + 1592: 2,-27 + 1597: 8,-32 + 1603: 10,-27 + 1611: 11,-26 + 1617: 11,-20 + 1622: 11,-19 + 1629: 4,16 + 1642: 4,12 + 1650: 4,13 + 1658: 4,14 + 1666: 4,15 + 1674: 8,2 + 1682: 8,3 + 1688: 9,3 + 1693: 9,4 + 1698: 2,-13 + 1703: 2,-12 + 1708: 2,-11 + 1713: 2,-10 + 1720: -13,-22 + 1725: -13,-20 + 1728: -10,-28 + 1735: 2,-27 + 1743: 10,-27 + 1751: 11,-26 + 1759: 4,16 + 1772: 11,-20 + 1778: 11,-19 + 1782: 8,-32 + 1785: 9,-30 + 1789: -8,-32 + 1792: -9,-30 + 1805: -10,-5 + 1810: -10,-6 + 1818: -10,-8 + 1826: -10,-7 + 1831: -8,7 + 1839: 4,12 + 1847: 4,13 + 1855: 4,14 + 1863: 4,15 + 1871: 8,2 + 1879: 8,3 + 1885: 9,3 + 1890: 9,4 + 1895: 2,-13 + 1900: 2,-12 + 1905: 2,-11 + 1910: 2,-10 + 1920: -10,-8 + 1928: -10,-7 + 1933: -10,-6 + 1938: -10,-5 + 1943: -8,7 + 1951: -13,-22 + 1956: -13,-20 + 1959: -10,-28 + 1964: -9,-30 + 1967: -8,-32 + 1972: 2,-27 + 1977: 8,-32 + 1980: 9,-30 + 1986: 10,-27 + 1994: 11,-26 + 2002: 11,-20 + 2008: 11,-19 + 2023: 4,16 + 2036: 4,12 + 2044: 4,13 + 2052: 4,14 + 2060: 4,15 + 2068: 8,2 + 2076: 8,3 + 2082: 9,3 + 2087: 9,4 + 2092: 2,-13 + 2097: 2,-12 + 2102: 2,-11 + 2107: 2,-10 + 2117: -10,-8 + 2125: -10,-7 + 2130: -10,-6 + 2135: -10,-5 + 2140: -8,7 + 2148: -13,-22 + 2153: -13,-20 + 2156: -10,-28 + 2161: -9,-30 + 2164: -8,-32 + 2169: 2,-27 + 2174: 8,-32 + 2177: 9,-30 + 2183: 10,-27 + 2191: 11,-26 + 2199: 11,-20 + 2205: 11,-19 + 2220: 4,16 + 2233: 4,12 + 2241: 4,13 + 2249: 4,14 + 2257: 4,15 + 2263: 2,-13 + 2268: 2,-12 + 2273: 2,-11 + 2278: 2,-10 + 2288: -10,-8 + 2296: -10,-7 + 2301: -10,-6 + 2306: -10,-5 + 2311: -8,7 + 2319: -13,-22 + 2324: -13,-20 + 2327: -10,-28 + 2332: -9,-30 + 2337: 2,-27 + 2342: 8,-32 + 2345: 9,-30 + 2351: 10,-27 + 2359: 11,-26 + 2367: 11,-20 + 2373: 11,-19 + 2388: 4,16 + 2409: 10,-5 + 2416: 9,4 + 2421: 9,3 + 2428: 8,3 + 2436: 8,2 + 2556: -8,-32 + 2642: 4,12 + 2650: 4,13 + 2658: 4,14 + 2666: 4,15 + 2674: 8,2 + 2682: 8,3 + 2688: 9,3 + 2693: 9,4 + 2698: 2,-13 + 2703: 2,-12 + 2708: 2,-11 + 2713: 2,-10 + 2717: 10,-5 + 2729: -10,-8 + 2737: -10,-7 + 2742: -10,-6 + 2747: -10,-5 + 2776: -8,7 + 2784: -13,-22 + 2789: -13,-20 + 2792: -10,-28 + 2797: -9,-30 + 2800: -8,-32 + 2805: 2,-27 + 2810: 8,-32 + 2813: 9,-30 + 2819: 10,-27 + 2827: 11,-26 + 2835: 11,-20 + 2841: 11,-19 + 2856: 4,16 + 2869: 4,12 + 2877: 4,13 + 2885: 4,14 + 2893: 4,15 + 2901: 8,2 + 2909: 8,3 + 2915: 9,3 + 2920: 9,4 + 2925: 2,-13 + 2930: 2,-12 + 2935: 2,-11 + 2940: 2,-10 + 2944: 10,-5 + 2956: -10,-8 + 2964: -10,-7 + 2969: -10,-6 + 2974: -10,-5 + 3003: -8,7 + 3011: -13,-22 + 3016: -13,-20 + 3019: -10,-28 + 3024: -9,-30 + 3027: -8,-32 + 3032: 2,-27 + 3037: 8,-32 + 3040: 9,-30 + 3046: 10,-27 + 3054: 11,-26 + 3062: 11,-20 + 3068: 11,-19 + 3083: 4,16 + 3096: 4,12 + 3104: 4,13 + 3112: 4,14 + 3120: 4,15 + 3128: 8,2 + 3136: 8,3 + 3142: 9,3 + 3147: 9,4 + 3152: 2,-13 + 3157: 2,-12 + 3162: 2,-11 + 3167: 2,-10 + 3171: 10,-5 + 3183: -10,-8 + 3191: -10,-7 + 3196: -10,-6 + 3201: -10,-5 + 3230: -8,7 + 3238: -13,-22 + 3243: -13,-20 + 3246: -10,-28 + 3251: -9,-30 + 3254: -8,-32 + 3259: 2,-27 + 3264: 8,-32 + 3267: 9,-30 + 3273: 10,-27 + 3281: 11,-26 + 3289: 11,-20 + 3295: 11,-19 + 3310: 4,16 + 3323: 4,12 + 3331: 4,13 + 3339: 4,14 + 3347: 4,15 + 3355: 8,2 + 3363: 8,3 + 3369: 9,3 + 3374: 9,4 + 3379: 2,-13 + 3384: 2,-12 + 3389: 2,-11 + 3394: 2,-10 + 3398: 10,-5 + 3410: -10,-8 + 3418: -10,-7 + 3423: -10,-6 + 3428: -10,-5 + 3457: -8,7 + 3465: -13,-22 + 3470: -13,-20 + 3473: -10,-28 + 3478: -9,-30 + 3481: -8,-32 + 3486: 2,-27 + 3491: 8,-32 + 3494: 9,-30 + 3500: 10,-27 + 3508: 11,-26 + 3516: 11,-20 + 3522: 11,-19 + 3537: 4,16 + 3550: 4,12 + 3558: 4,13 + 3566: 4,14 + 3574: 4,15 + 3582: 8,2 + 3590: 8,3 + 3596: 9,3 + 3601: 9,4 + 3606: 2,-13 + 3611: 2,-12 + 3616: 2,-11 + 3621: 2,-10 + 3625: 10,-5 + 3637: -10,-8 + 3669: -8,7 + 3675: -10,-28 + 3680: -9,-30 + 3683: -8,-32 + 3688: 2,-27 + 3693: 8,-32 + 3696: 9,-30 + 3702: 10,-27 + 3710: 11,-26 + 3718: 11,-20 + 3724: 11,-19 + 3739: 4,16 + 3752: -10,-6 + 3757: -10,-7 + 3762: -10,-5 + 3765: -13,-20 + 3773: 4,12 + 3781: 4,13 + 3789: 4,14 + 3797: 4,15 + 3805: 8,2 + 3813: 8,3 + 3819: 9,3 + 3824: 9,4 + 3829: 2,-13 + 3834: 2,-12 + 3839: 2,-11 + 3844: 2,-10 + 3848: 10,-5 + 3860: -10,-8 + 3868: -10,-7 + 3873: -10,-6 + 3878: -10,-5 + 3907: -8,7 + 3916: -13,-20 + 3919: -10,-28 + 3924: -9,-30 + 3927: -8,-32 + 3932: 2,-27 + 3937: 8,-32 + 3940: 9,-30 + 3946: 10,-27 + 3954: 11,-26 + 3962: 11,-20 + 3968: 11,-19 + 3983: 4,16 - node: id: LatticeEdgeS decals: @@ -3027,478 +3193,508 @@ entities: 247: 2,-11 252: 2,-10 257: -13,-22 - 267: -13,-20 - 280: 2,-27 - 291: 10,-27 - 299: 11,-26 - 307: 11,-20 - 312: 11,-19 - 317: 4,16 - 325: 4,17 - 330: 4,12 - 338: 4,13 - 346: 4,14 - 354: 4,15 - 362: 8,2 - 370: 8,3 - 378: 9,3 - 383: 9,4 - 388: 2,-13 - 393: 2,-12 - 398: 2,-11 - 403: 2,-10 - 408: -13,-22 - 418: -13,-20 - 431: 2,-27 - 442: 10,-27 - 450: 11,-26 - 458: 11,-20 - 463: 11,-19 - 468: 4,16 - 476: 4,17 - 481: 4,12 - 489: 4,13 - 497: 4,14 - 505: 4,15 - 513: 8,2 - 521: 8,3 - 529: 9,3 - 534: 9,4 - 539: 2,-13 - 544: 2,-12 - 549: 2,-11 - 554: 2,-10 - 559: -13,-22 - 569: -13,-20 - 582: 2,-27 - 593: 10,-27 - 601: 11,-26 - 609: 11,-20 - 614: 11,-19 - 619: 4,16 - 627: 4,17 - 632: 4,12 - 640: 4,13 - 648: 4,14 - 656: 4,15 - 664: 8,2 - 672: 8,3 - 680: 9,3 - 685: 9,4 - 690: 2,-13 - 695: 2,-12 - 700: 2,-11 - 705: 2,-10 - 710: -13,-22 - 720: -13,-20 - 733: 2,-27 - 744: 10,-27 - 752: 11,-26 - 760: 11,-20 - 765: 11,-19 - 770: 4,16 - 778: 4,17 - 783: 4,12 - 791: 4,13 - 799: 4,14 - 807: 4,15 - 815: 8,2 - 823: 8,3 - 831: 9,3 - 836: 9,4 - 841: 2,-13 - 846: 2,-12 - 851: 2,-11 - 856: 2,-10 - 861: -13,-22 - 871: -13,-20 - 884: 2,-27 - 895: 10,-27 - 903: 11,-26 - 911: 11,-20 - 916: 11,-19 - 921: 4,16 - 929: 4,17 - 934: 4,12 - 942: 4,13 - 950: 4,14 - 958: 4,15 - 966: 8,2 - 974: 8,3 - 982: 9,3 - 987: 9,4 - 992: 2,-13 - 997: 2,-12 - 1002: 2,-11 - 1007: 2,-10 - 1012: -13,-22 - 1022: -13,-20 - 1035: 2,-27 - 1046: 10,-27 - 1054: 11,-26 - 1062: 11,-20 - 1067: 11,-19 - 1072: 4,16 - 1080: 4,17 - 1085: 4,12 - 1093: 4,13 - 1101: 4,14 - 1109: 4,15 - 1117: 8,2 - 1125: 8,3 - 1133: 9,3 - 1138: 9,4 - 1143: 2,-13 - 1148: 2,-12 - 1153: 2,-11 - 1158: 2,-10 - 1163: -13,-22 - 1173: -13,-20 - 1186: 2,-27 - 1197: 10,-27 - 1205: 11,-26 - 1213: 11,-20 - 1218: 11,-19 - 1223: 4,16 - 1231: 4,17 - 1236: 4,12 - 1244: 4,13 - 1252: 4,14 - 1260: 4,15 - 1268: 8,2 - 1276: 8,3 - 1284: 9,3 - 1289: 9,4 - 1294: 2,-13 - 1299: 2,-12 - 1304: 2,-11 - 1309: 2,-10 - 1314: -13,-22 - 1324: -13,-20 - 1337: 2,-27 - 1348: 10,-27 - 1356: 11,-26 - 1364: 11,-20 - 1369: 11,-19 - 1374: 4,16 - 1382: 4,17 - 1387: 4,12 - 1395: 4,13 - 1403: 4,14 - 1411: 4,15 - 1419: 8,2 - 1427: 8,3 - 1435: 9,3 - 1440: 9,4 - 1445: 2,-13 - 1450: 2,-12 - 1455: 2,-11 - 1460: 2,-10 - 1465: -13,-22 - 1475: -13,-20 - 1488: 2,-27 - 1499: 10,-27 - 1507: 11,-26 - 1515: 11,-20 - 1520: 11,-19 - 1525: 4,16 - 1533: 4,17 - 1538: 4,12 - 1546: 4,13 - 1554: 4,14 - 1562: 4,15 - 1570: 8,2 - 1578: 8,3 - 1586: 9,3 - 1591: 9,4 - 1596: 2,-13 - 1601: 2,-12 - 1606: 2,-11 - 1611: 2,-10 - 1616: -13,-22 - 1626: -13,-20 - 1639: 2,-27 - 1650: 10,-27 - 1658: 11,-26 - 1666: 11,-20 - 1671: 11,-19 - 1676: 4,16 - 1684: 4,17 - 1689: 4,12 - 1697: 4,13 - 1705: 4,14 - 1713: 4,15 - 1721: 8,2 - 1729: 8,3 - 1737: 9,3 - 1742: 9,4 - 1747: 2,-13 - 1752: 2,-12 - 1757: 2,-11 - 1762: 2,-10 - 1767: -13,-22 - 1777: -13,-20 - 1787: 2,-27 - 1795: 10,-27 - 1803: 11,-26 - 1811: 4,16 - 1819: 4,17 - 1824: 11,-20 - 1832: 11,-19 - 1849: 13,-20 - 1852: 12,-20 - 1857: -10,-5 - 1862: -10,-6 - 1867: -11,-8 - 1870: -10,-8 - 1878: -10,-7 - 1883: -8,7 - 1888: -8,9 - 1891: 4,12 - 1899: 4,13 - 1907: 4,14 - 1915: 4,15 - 1923: 8,2 - 1931: 8,3 - 1939: 9,3 - 1944: 9,4 - 1949: 2,-13 - 1954: 2,-12 - 1959: 2,-11 - 1964: 2,-10 - 1969: -11,-8 - 1972: -10,-8 - 1980: -10,-7 - 1985: -10,-6 - 1990: -10,-5 - 1995: -8,7 - 2000: -8,9 - 2003: -13,-22 - 2013: -13,-20 - 2029: 2,-27 - 2043: 10,-27 - 2051: 11,-26 - 2059: 11,-20 - 2067: 11,-19 - 2072: 12,-20 - 2077: 13,-20 - 2080: 4,16 - 2088: 4,17 - 2093: 4,12 - 2101: 4,13 - 2109: 4,14 - 2117: 4,15 - 2125: 8,2 - 2133: 8,3 - 2141: 9,3 - 2146: 9,4 - 2151: 2,-13 - 2156: 2,-12 - 2161: 2,-11 - 2166: 2,-10 - 2171: -11,-8 - 2174: -10,-8 - 2182: -10,-7 - 2187: -10,-6 - 2192: -10,-5 - 2197: -8,7 - 2202: -8,9 - 2205: -13,-22 - 2215: -13,-20 - 2231: 2,-27 - 2245: 10,-27 - 2253: 11,-26 - 2261: 11,-20 - 2269: 11,-19 - 2274: 12,-20 - 2279: 13,-20 - 2282: 4,16 - 2290: 4,17 - 2295: 4,12 - 2303: 4,13 - 2311: 4,14 - 2319: 4,15 - 2327: 2,-13 - 2332: 2,-12 - 2337: 2,-11 - 2342: 2,-10 - 2347: -11,-8 - 2350: -10,-8 - 2358: -10,-7 - 2363: -10,-6 - 2368: -10,-5 - 2373: -8,7 - 2378: -8,9 - 2381: -13,-22 - 2391: -13,-20 - 2404: 2,-27 - 2418: 10,-27 - 2426: 11,-26 - 2434: 11,-20 - 2442: 11,-19 - 2447: 12,-20 - 2452: 13,-20 - 2455: 4,16 - 2463: 4,17 - 2482: 10,-3 - 2485: 9,4 - 2490: 9,3 - 2495: 8,3 - 2503: 8,2 - 2709: 4,12 - 2717: 4,13 - 2725: 4,14 - 2733: 4,15 - 2741: 8,2 - 2749: 8,3 - 2757: 9,3 - 2762: 9,4 - 2767: 2,-13 - 2772: 2,-12 - 2777: 2,-11 - 2782: 2,-10 - 2790: 10,-3 - 2793: -11,-8 - 2796: -10,-8 - 2804: -10,-7 - 2809: -10,-6 - 2814: -10,-5 - 2843: -8,7 - 2848: -8,9 - 2851: -13,-22 - 2861: -13,-20 - 2877: 2,-27 - 2891: 10,-27 - 2899: 11,-26 - 2907: 11,-20 - 2915: 11,-19 - 2920: 12,-20 - 2925: 13,-20 - 2928: 4,16 - 2936: 4,17 - 2941: 4,12 - 2949: 4,13 - 2957: 4,14 - 2965: 4,15 - 2973: 8,2 - 2981: 8,3 - 2989: 9,3 - 2994: 9,4 - 2999: 2,-13 - 3004: 2,-12 - 3009: 2,-11 - 3014: 2,-10 - 3022: 10,-3 - 3025: -11,-8 - 3028: -10,-8 - 3036: -10,-7 - 3041: -10,-6 - 3046: -10,-5 - 3075: -8,7 - 3080: -8,9 - 3083: -13,-22 - 3093: -13,-20 - 3109: 2,-27 - 3123: 10,-27 - 3131: 11,-26 - 3139: 11,-20 - 3147: 11,-19 - 3152: 12,-20 - 3157: 13,-20 - 3160: 4,16 - 3168: 4,17 - 3173: 4,12 - 3181: 4,13 - 3189: 4,14 - 3197: 4,15 - 3205: 8,2 - 3213: 8,3 - 3221: 9,3 - 3226: 9,4 - 3231: 2,-13 - 3236: 2,-12 - 3241: 2,-11 - 3246: 2,-10 - 3254: 10,-3 - 3257: -11,-8 - 3260: -10,-8 - 3268: -10,-7 - 3273: -10,-6 - 3278: -10,-5 - 3307: -8,7 - 3312: -8,9 - 3315: -13,-22 - 3325: -13,-20 - 3341: 2,-27 - 3355: 10,-27 - 3363: 11,-26 - 3371: 11,-20 - 3379: 11,-19 - 3384: 12,-20 - 3389: 13,-20 - 3392: 4,16 - 3400: 4,17 - 3405: 4,12 - 3413: 4,13 - 3421: 4,14 - 3429: 4,15 - 3437: 8,2 - 3445: 8,3 - 3453: 9,3 - 3458: 9,4 - 3463: 2,-13 - 3468: 2,-12 - 3473: 2,-11 - 3478: 2,-10 - 3486: 10,-3 - 3489: -11,-8 - 3492: -10,-8 - 3500: -10,-7 - 3505: -10,-6 - 3510: -10,-5 - 3539: -8,7 - 3544: -8,9 - 3547: -13,-22 - 3557: -13,-20 - 3573: 2,-27 - 3587: 10,-27 - 3595: 11,-26 - 3603: 11,-20 - 3611: 11,-19 - 3616: 12,-20 - 3621: 13,-20 - 3624: 4,16 - 3632: 4,17 - 3637: 4,12 - 3645: 4,13 - 3653: 4,14 - 3661: 4,15 - 3669: 8,2 - 3677: 8,3 - 3685: 9,3 - 3690: 9,4 - 3695: 2,-13 - 3700: 2,-12 - 3705: 2,-11 - 3710: 2,-10 - 3718: 10,-3 - 3721: -11,-8 - 3724: -10,-8 - 3771: -8,7 - 3776: -8,9 - 3805: 2,-27 - 3819: 10,-27 - 3827: 11,-26 - 3835: 11,-20 - 3843: 11,-19 - 3848: 12,-20 - 3853: 13,-20 - 3856: 4,16 - 3864: 4,17 - 3869: -10,-6 - 3874: -10,-7 - 3879: -10,-5 - 3893: -13,-22 + 262: -13,-20 + 275: 2,-27 + 286: 10,-27 + 294: 11,-26 + 302: 11,-20 + 307: 11,-19 + 312: 4,16 + 320: 4,17 + 325: 4,12 + 333: 4,13 + 341: 4,14 + 349: 4,15 + 357: 8,2 + 365: 8,3 + 373: 9,3 + 378: 9,4 + 383: 2,-13 + 388: 2,-12 + 393: 2,-11 + 398: 2,-10 + 403: -13,-22 + 408: -13,-20 + 421: 2,-27 + 432: 10,-27 + 440: 11,-26 + 448: 11,-20 + 453: 11,-19 + 458: 4,16 + 466: 4,17 + 471: 4,12 + 479: 4,13 + 487: 4,14 + 495: 4,15 + 503: 8,2 + 511: 8,3 + 519: 9,3 + 524: 9,4 + 529: 2,-13 + 534: 2,-12 + 539: 2,-11 + 544: 2,-10 + 549: -13,-22 + 554: -13,-20 + 567: 2,-27 + 578: 10,-27 + 586: 11,-26 + 594: 11,-20 + 599: 11,-19 + 604: 4,16 + 612: 4,17 + 617: 4,12 + 625: 4,13 + 633: 4,14 + 641: 4,15 + 649: 8,2 + 657: 8,3 + 665: 9,3 + 670: 9,4 + 675: 2,-13 + 680: 2,-12 + 685: 2,-11 + 690: 2,-10 + 695: -13,-22 + 700: -13,-20 + 713: 2,-27 + 724: 10,-27 + 732: 11,-26 + 740: 11,-20 + 745: 11,-19 + 750: 4,16 + 758: 4,17 + 763: 4,12 + 771: 4,13 + 779: 4,14 + 787: 4,15 + 795: 8,2 + 803: 8,3 + 811: 9,3 + 816: 9,4 + 821: 2,-13 + 826: 2,-12 + 831: 2,-11 + 836: 2,-10 + 841: -13,-22 + 846: -13,-20 + 859: 2,-27 + 870: 10,-27 + 878: 11,-26 + 886: 11,-20 + 891: 11,-19 + 896: 4,16 + 904: 4,17 + 909: 4,12 + 917: 4,13 + 925: 4,14 + 933: 4,15 + 941: 8,2 + 949: 8,3 + 957: 9,3 + 962: 9,4 + 967: 2,-13 + 972: 2,-12 + 977: 2,-11 + 982: 2,-10 + 987: -13,-22 + 992: -13,-20 + 1005: 2,-27 + 1016: 10,-27 + 1024: 11,-26 + 1032: 11,-20 + 1037: 11,-19 + 1042: 4,16 + 1050: 4,17 + 1055: 4,12 + 1063: 4,13 + 1071: 4,14 + 1079: 4,15 + 1087: 8,2 + 1095: 8,3 + 1103: 9,3 + 1108: 9,4 + 1113: 2,-13 + 1118: 2,-12 + 1123: 2,-11 + 1128: 2,-10 + 1133: -13,-22 + 1138: -13,-20 + 1151: 2,-27 + 1162: 10,-27 + 1170: 11,-26 + 1178: 11,-20 + 1183: 11,-19 + 1188: 4,16 + 1196: 4,17 + 1201: 4,12 + 1209: 4,13 + 1217: 4,14 + 1225: 4,15 + 1233: 8,2 + 1241: 8,3 + 1249: 9,3 + 1254: 9,4 + 1259: 2,-13 + 1264: 2,-12 + 1269: 2,-11 + 1274: 2,-10 + 1279: -13,-22 + 1284: -13,-20 + 1297: 2,-27 + 1308: 10,-27 + 1316: 11,-26 + 1324: 11,-20 + 1329: 11,-19 + 1334: 4,16 + 1342: 4,17 + 1347: 4,12 + 1355: 4,13 + 1363: 4,14 + 1371: 4,15 + 1379: 8,2 + 1387: 8,3 + 1395: 9,3 + 1400: 9,4 + 1405: 2,-13 + 1410: 2,-12 + 1415: 2,-11 + 1420: 2,-10 + 1425: -13,-22 + 1430: -13,-20 + 1443: 2,-27 + 1454: 10,-27 + 1462: 11,-26 + 1470: 11,-20 + 1475: 11,-19 + 1480: 4,16 + 1488: 4,17 + 1493: 4,12 + 1501: 4,13 + 1509: 4,14 + 1517: 4,15 + 1525: 8,2 + 1533: 8,3 + 1541: 9,3 + 1546: 9,4 + 1551: 2,-13 + 1556: 2,-12 + 1561: 2,-11 + 1566: 2,-10 + 1571: -13,-22 + 1576: -13,-20 + 1589: 2,-27 + 1600: 10,-27 + 1608: 11,-26 + 1616: 11,-20 + 1621: 11,-19 + 1626: 4,16 + 1634: 4,17 + 1639: 4,12 + 1647: 4,13 + 1655: 4,14 + 1663: 4,15 + 1671: 8,2 + 1679: 8,3 + 1687: 9,3 + 1692: 9,4 + 1697: 2,-13 + 1702: 2,-12 + 1707: 2,-11 + 1712: 2,-10 + 1717: -13,-22 + 1722: -13,-20 + 1732: 2,-27 + 1740: 10,-27 + 1748: 11,-26 + 1756: 4,16 + 1764: 4,17 + 1769: 11,-20 + 1777: 11,-19 + 1794: 13,-20 + 1797: 12,-20 + 1802: -10,-5 + 1807: -10,-6 + 1812: -11,-8 + 1815: -10,-8 + 1823: -10,-7 + 1828: -8,7 + 1833: -8,9 + 1836: 4,12 + 1844: 4,13 + 1852: 4,14 + 1860: 4,15 + 1868: 8,2 + 1876: 8,3 + 1884: 9,3 + 1889: 9,4 + 1894: 2,-13 + 1899: 2,-12 + 1904: 2,-11 + 1909: 2,-10 + 1914: -11,-8 + 1917: -10,-8 + 1925: -10,-7 + 1930: -10,-6 + 1935: -10,-5 + 1940: -8,7 + 1945: -8,9 + 1948: -13,-22 + 1953: -13,-20 + 1969: 2,-27 + 1983: 10,-27 + 1991: 11,-26 + 1999: 11,-20 + 2007: 11,-19 + 2012: 12,-20 + 2017: 13,-20 + 2020: 4,16 + 2028: 4,17 + 2033: 4,12 + 2041: 4,13 + 2049: 4,14 + 2057: 4,15 + 2065: 8,2 + 2073: 8,3 + 2081: 9,3 + 2086: 9,4 + 2091: 2,-13 + 2096: 2,-12 + 2101: 2,-11 + 2106: 2,-10 + 2111: -11,-8 + 2114: -10,-8 + 2122: -10,-7 + 2127: -10,-6 + 2132: -10,-5 + 2137: -8,7 + 2142: -8,9 + 2145: -13,-22 + 2150: -13,-20 + 2166: 2,-27 + 2180: 10,-27 + 2188: 11,-26 + 2196: 11,-20 + 2204: 11,-19 + 2209: 12,-20 + 2214: 13,-20 + 2217: 4,16 + 2225: 4,17 + 2230: 4,12 + 2238: 4,13 + 2246: 4,14 + 2254: 4,15 + 2262: 2,-13 + 2267: 2,-12 + 2272: 2,-11 + 2277: 2,-10 + 2282: -11,-8 + 2285: -10,-8 + 2293: -10,-7 + 2298: -10,-6 + 2303: -10,-5 + 2308: -8,7 + 2313: -8,9 + 2316: -13,-22 + 2321: -13,-20 + 2334: 2,-27 + 2348: 10,-27 + 2356: 11,-26 + 2364: 11,-20 + 2372: 11,-19 + 2377: 12,-20 + 2382: 13,-20 + 2385: 4,16 + 2393: 4,17 + 2412: 10,-3 + 2415: 9,4 + 2420: 9,3 + 2425: 8,3 + 2433: 8,2 + 2639: 4,12 + 2647: 4,13 + 2655: 4,14 + 2663: 4,15 + 2671: 8,2 + 2679: 8,3 + 2687: 9,3 + 2692: 9,4 + 2697: 2,-13 + 2702: 2,-12 + 2707: 2,-11 + 2712: 2,-10 + 2720: 10,-3 + 2723: -11,-8 + 2726: -10,-8 + 2734: -10,-7 + 2739: -10,-6 + 2744: -10,-5 + 2773: -8,7 + 2778: -8,9 + 2781: -13,-22 + 2786: -13,-20 + 2802: 2,-27 + 2816: 10,-27 + 2824: 11,-26 + 2832: 11,-20 + 2840: 11,-19 + 2845: 12,-20 + 2850: 13,-20 + 2853: 4,16 + 2861: 4,17 + 2866: 4,12 + 2874: 4,13 + 2882: 4,14 + 2890: 4,15 + 2898: 8,2 + 2906: 8,3 + 2914: 9,3 + 2919: 9,4 + 2924: 2,-13 + 2929: 2,-12 + 2934: 2,-11 + 2939: 2,-10 + 2947: 10,-3 + 2950: -11,-8 + 2953: -10,-8 + 2961: -10,-7 + 2966: -10,-6 + 2971: -10,-5 + 3000: -8,7 + 3005: -8,9 + 3008: -13,-22 + 3013: -13,-20 + 3029: 2,-27 + 3043: 10,-27 + 3051: 11,-26 + 3059: 11,-20 + 3067: 11,-19 + 3072: 12,-20 + 3077: 13,-20 + 3080: 4,16 + 3088: 4,17 + 3093: 4,12 + 3101: 4,13 + 3109: 4,14 + 3117: 4,15 + 3125: 8,2 + 3133: 8,3 + 3141: 9,3 + 3146: 9,4 + 3151: 2,-13 + 3156: 2,-12 + 3161: 2,-11 + 3166: 2,-10 + 3174: 10,-3 + 3177: -11,-8 + 3180: -10,-8 + 3188: -10,-7 + 3193: -10,-6 + 3198: -10,-5 + 3227: -8,7 + 3232: -8,9 + 3235: -13,-22 + 3240: -13,-20 + 3256: 2,-27 + 3270: 10,-27 + 3278: 11,-26 + 3286: 11,-20 + 3294: 11,-19 + 3299: 12,-20 + 3304: 13,-20 + 3307: 4,16 + 3315: 4,17 + 3320: 4,12 + 3328: 4,13 + 3336: 4,14 + 3344: 4,15 + 3352: 8,2 + 3360: 8,3 + 3368: 9,3 + 3373: 9,4 + 3378: 2,-13 + 3383: 2,-12 + 3388: 2,-11 + 3393: 2,-10 + 3401: 10,-3 + 3404: -11,-8 + 3407: -10,-8 + 3415: -10,-7 + 3420: -10,-6 + 3425: -10,-5 + 3454: -8,7 + 3459: -8,9 + 3462: -13,-22 + 3467: -13,-20 + 3483: 2,-27 + 3497: 10,-27 + 3505: 11,-26 + 3513: 11,-20 + 3521: 11,-19 + 3526: 12,-20 + 3531: 13,-20 + 3534: 4,16 + 3542: 4,17 + 3547: 4,12 + 3555: 4,13 + 3563: 4,14 + 3571: 4,15 + 3579: 8,2 + 3587: 8,3 + 3595: 9,3 + 3600: 9,4 + 3605: 2,-13 + 3610: 2,-12 + 3615: 2,-11 + 3620: 2,-10 + 3628: 10,-3 + 3631: -11,-8 + 3634: -10,-8 + 3666: -8,7 + 3671: -8,9 + 3685: 2,-27 + 3699: 10,-27 + 3707: 11,-26 + 3715: 11,-20 + 3723: 11,-19 + 3728: 12,-20 + 3733: 13,-20 + 3736: 4,16 + 3744: 4,17 + 3749: -10,-6 + 3754: -10,-7 + 3759: -10,-5 + 3767: -13,-22 + 3770: 4,12 + 3778: 4,13 + 3786: 4,14 + 3794: 4,15 + 3802: 8,2 + 3810: 8,3 + 3818: 9,3 + 3823: 9,4 + 3828: 2,-13 + 3833: 2,-12 + 3838: 2,-11 + 3843: 2,-10 + 3851: 10,-3 + 3854: -11,-8 + 3857: -10,-8 + 3865: -10,-7 + 3870: -10,-6 + 3875: -10,-5 + 3904: -8,7 + 3909: -8,9 + 3912: -13,-22 + 3929: 2,-27 + 3943: 10,-27 + 3951: 11,-26 + 3959: 11,-20 + 3967: 11,-19 + 3972: 12,-20 + 3977: 13,-20 + 3980: 4,16 + 3988: 4,17 - node: id: LatticeEdgeW decals: @@ -3514,441 +3710,468 @@ entities: 244: 2,-12 249: 2,-11 254: 2,-10 - 275: -10,-28 - 285: 2,-27 - 289: 8,-32 - 296: 10,-27 - 304: 11,-26 - 309: 11,-20 - 314: 11,-19 - 322: 4,16 - 328: 4,17 - 335: 4,12 - 343: 4,13 - 351: 4,14 - 359: 4,15 - 367: 8,2 - 375: 8,3 - 380: 9,3 - 385: 9,4 - 390: 2,-13 - 395: 2,-12 - 400: 2,-11 - 405: 2,-10 - 426: -10,-28 - 436: 2,-27 - 440: 8,-32 - 447: 10,-27 - 455: 11,-26 - 460: 11,-20 - 465: 11,-19 - 473: 4,16 - 479: 4,17 - 486: 4,12 - 494: 4,13 - 502: 4,14 - 510: 4,15 - 518: 8,2 - 526: 8,3 - 531: 9,3 - 536: 9,4 - 541: 2,-13 - 546: 2,-12 - 551: 2,-11 - 556: 2,-10 - 577: -10,-28 - 587: 2,-27 - 591: 8,-32 - 598: 10,-27 - 606: 11,-26 - 611: 11,-20 - 616: 11,-19 - 624: 4,16 - 630: 4,17 - 637: 4,12 - 645: 4,13 - 653: 4,14 - 661: 4,15 - 669: 8,2 - 677: 8,3 - 682: 9,3 - 687: 9,4 - 692: 2,-13 - 697: 2,-12 - 702: 2,-11 - 707: 2,-10 - 728: -10,-28 - 738: 2,-27 - 742: 8,-32 - 749: 10,-27 - 757: 11,-26 - 762: 11,-20 - 767: 11,-19 - 775: 4,16 - 781: 4,17 - 788: 4,12 - 796: 4,13 - 804: 4,14 - 812: 4,15 - 820: 8,2 - 828: 8,3 - 833: 9,3 - 838: 9,4 - 843: 2,-13 - 848: 2,-12 - 853: 2,-11 - 858: 2,-10 - 879: -10,-28 - 889: 2,-27 - 893: 8,-32 - 900: 10,-27 - 908: 11,-26 - 913: 11,-20 - 918: 11,-19 - 926: 4,16 - 932: 4,17 - 939: 4,12 - 947: 4,13 - 955: 4,14 - 963: 4,15 - 971: 8,2 - 979: 8,3 - 984: 9,3 - 989: 9,4 - 994: 2,-13 - 999: 2,-12 - 1004: 2,-11 - 1009: 2,-10 - 1030: -10,-28 - 1040: 2,-27 - 1044: 8,-32 - 1051: 10,-27 - 1059: 11,-26 - 1064: 11,-20 - 1069: 11,-19 - 1077: 4,16 - 1083: 4,17 - 1090: 4,12 - 1098: 4,13 - 1106: 4,14 - 1114: 4,15 - 1122: 8,2 - 1130: 8,3 - 1135: 9,3 - 1140: 9,4 - 1145: 2,-13 - 1150: 2,-12 - 1155: 2,-11 - 1160: 2,-10 - 1181: -10,-28 - 1191: 2,-27 - 1195: 8,-32 - 1202: 10,-27 - 1210: 11,-26 - 1215: 11,-20 - 1220: 11,-19 - 1228: 4,16 - 1234: 4,17 - 1241: 4,12 - 1249: 4,13 - 1257: 4,14 - 1265: 4,15 - 1273: 8,2 - 1281: 8,3 - 1286: 9,3 - 1291: 9,4 - 1296: 2,-13 - 1301: 2,-12 - 1306: 2,-11 - 1311: 2,-10 - 1332: -10,-28 - 1342: 2,-27 - 1346: 8,-32 - 1353: 10,-27 - 1361: 11,-26 - 1366: 11,-20 - 1371: 11,-19 - 1379: 4,16 - 1385: 4,17 - 1392: 4,12 - 1400: 4,13 - 1408: 4,14 - 1416: 4,15 - 1424: 8,2 - 1432: 8,3 - 1437: 9,3 - 1442: 9,4 - 1447: 2,-13 - 1452: 2,-12 - 1457: 2,-11 - 1462: 2,-10 - 1483: -10,-28 - 1493: 2,-27 - 1497: 8,-32 - 1504: 10,-27 - 1512: 11,-26 - 1517: 11,-20 - 1522: 11,-19 - 1530: 4,16 - 1536: 4,17 - 1543: 4,12 - 1551: 4,13 - 1559: 4,14 - 1567: 4,15 - 1575: 8,2 - 1583: 8,3 - 1588: 9,3 - 1593: 9,4 - 1598: 2,-13 - 1603: 2,-12 - 1608: 2,-11 - 1613: 2,-10 - 1634: -10,-28 - 1644: 2,-27 - 1648: 8,-32 - 1655: 10,-27 - 1663: 11,-26 - 1668: 11,-20 - 1673: 11,-19 - 1681: 4,16 - 1687: 4,17 - 1694: 4,12 - 1702: 4,13 - 1710: 4,14 - 1718: 4,15 - 1726: 8,2 - 1734: 8,3 - 1739: 9,3 - 1744: 9,4 - 1749: 2,-13 - 1754: 2,-12 - 1759: 2,-11 - 1764: 2,-10 - 1785: -10,-28 - 1792: 2,-27 - 1800: 10,-27 - 1808: 11,-26 - 1816: 4,16 - 1822: 4,17 - 1829: 11,-20 - 1834: 11,-19 - 1838: 8,-32 - 1841: 9,-30 - 1850: 13,-20 - 1855: 12,-20 - 1875: -10,-8 - 1896: 4,12 - 1904: 4,13 - 1912: 4,14 - 1920: 4,15 - 1928: 8,2 - 1936: 8,3 - 1941: 9,3 - 1946: 9,4 - 1951: 2,-13 - 1956: 2,-12 - 1961: 2,-11 - 1966: 2,-10 - 1977: -10,-8 - 2021: -10,-28 - 2034: 2,-27 - 2038: 8,-32 - 2041: 9,-30 - 2048: 10,-27 - 2056: 11,-26 - 2064: 11,-20 - 2069: 11,-19 - 2075: 12,-20 - 2078: 13,-20 - 2085: 4,16 - 2091: 4,17 - 2098: 4,12 - 2106: 4,13 - 2114: 4,14 - 2122: 4,15 - 2130: 8,2 - 2138: 8,3 - 2143: 9,3 - 2148: 9,4 - 2153: 2,-13 - 2158: 2,-12 - 2163: 2,-11 - 2168: 2,-10 - 2179: -10,-8 - 2223: -10,-28 - 2236: 2,-27 - 2240: 8,-32 - 2243: 9,-30 - 2250: 10,-27 - 2258: 11,-26 - 2266: 11,-20 - 2271: 11,-19 - 2277: 12,-20 - 2280: 13,-20 - 2287: 4,16 - 2293: 4,17 - 2300: 4,12 - 2308: 4,13 - 2316: 4,14 - 2324: 4,15 - 2329: 2,-13 - 2334: 2,-12 - 2339: 2,-11 - 2344: 2,-10 - 2355: -10,-8 - 2399: -10,-28 - 2409: 2,-27 - 2413: 8,-32 - 2416: 9,-30 - 2423: 10,-27 - 2431: 11,-26 - 2439: 11,-20 - 2444: 11,-19 - 2450: 12,-20 - 2453: 13,-20 - 2460: 4,16 - 2466: 4,17 - 2480: 10,-5 - 2483: 10,-3 - 2487: 9,4 - 2492: 9,3 - 2500: 8,3 - 2508: 8,2 - 2714: 4,12 - 2722: 4,13 - 2730: 4,14 - 2738: 4,15 - 2746: 8,2 - 2754: 8,3 - 2759: 9,3 - 2764: 9,4 - 2769: 2,-13 - 2774: 2,-12 - 2779: 2,-11 - 2784: 2,-10 - 2788: 10,-5 - 2791: 10,-3 - 2801: -10,-8 - 2869: -10,-28 - 2882: 2,-27 - 2886: 8,-32 - 2889: 9,-30 - 2896: 10,-27 - 2904: 11,-26 - 2912: 11,-20 - 2917: 11,-19 - 2923: 12,-20 - 2926: 13,-20 - 2933: 4,16 - 2939: 4,17 - 2946: 4,12 - 2954: 4,13 - 2962: 4,14 - 2970: 4,15 - 2978: 8,2 - 2986: 8,3 - 2991: 9,3 - 2996: 9,4 - 3001: 2,-13 - 3006: 2,-12 - 3011: 2,-11 - 3016: 2,-10 - 3020: 10,-5 - 3023: 10,-3 - 3033: -10,-8 - 3101: -10,-28 - 3114: 2,-27 - 3118: 8,-32 - 3121: 9,-30 - 3128: 10,-27 - 3136: 11,-26 - 3144: 11,-20 - 3149: 11,-19 - 3155: 12,-20 - 3158: 13,-20 - 3165: 4,16 - 3171: 4,17 - 3178: 4,12 - 3186: 4,13 - 3194: 4,14 - 3202: 4,15 - 3210: 8,2 - 3218: 8,3 - 3223: 9,3 - 3228: 9,4 - 3233: 2,-13 - 3238: 2,-12 - 3243: 2,-11 - 3248: 2,-10 - 3252: 10,-5 - 3255: 10,-3 - 3265: -10,-8 - 3333: -10,-28 - 3346: 2,-27 - 3350: 8,-32 - 3353: 9,-30 - 3360: 10,-27 - 3368: 11,-26 - 3376: 11,-20 - 3381: 11,-19 - 3387: 12,-20 - 3390: 13,-20 - 3397: 4,16 - 3403: 4,17 - 3410: 4,12 - 3418: 4,13 - 3426: 4,14 - 3434: 4,15 - 3442: 8,2 - 3450: 8,3 - 3455: 9,3 - 3460: 9,4 - 3465: 2,-13 - 3470: 2,-12 - 3475: 2,-11 - 3480: 2,-10 - 3484: 10,-5 - 3487: 10,-3 - 3497: -10,-8 - 3565: -10,-28 - 3578: 2,-27 - 3582: 8,-32 - 3585: 9,-30 - 3592: 10,-27 - 3600: 11,-26 - 3608: 11,-20 - 3613: 11,-19 - 3619: 12,-20 - 3622: 13,-20 - 3629: 4,16 - 3635: 4,17 - 3642: 4,12 - 3650: 4,13 - 3658: 4,14 - 3666: 4,15 - 3674: 8,2 - 3682: 8,3 - 3687: 9,3 - 3692: 9,4 - 3697: 2,-13 - 3702: 2,-12 - 3707: 2,-11 - 3712: 2,-10 - 3716: 10,-5 - 3719: 10,-3 - 3729: -10,-8 - 3797: -10,-28 - 3810: 2,-27 - 3814: 8,-32 - 3817: 9,-30 - 3824: 10,-27 - 3832: 11,-26 - 3840: 11,-20 - 3845: 11,-19 - 3851: 12,-20 - 3854: 13,-20 - 3861: 4,16 - 3867: 4,17 + 270: -10,-28 + 280: 2,-27 + 284: 8,-32 + 291: 10,-27 + 299: 11,-26 + 304: 11,-20 + 309: 11,-19 + 317: 4,16 + 323: 4,17 + 330: 4,12 + 338: 4,13 + 346: 4,14 + 354: 4,15 + 362: 8,2 + 370: 8,3 + 375: 9,3 + 380: 9,4 + 385: 2,-13 + 390: 2,-12 + 395: 2,-11 + 400: 2,-10 + 416: -10,-28 + 426: 2,-27 + 430: 8,-32 + 437: 10,-27 + 445: 11,-26 + 450: 11,-20 + 455: 11,-19 + 463: 4,16 + 469: 4,17 + 476: 4,12 + 484: 4,13 + 492: 4,14 + 500: 4,15 + 508: 8,2 + 516: 8,3 + 521: 9,3 + 526: 9,4 + 531: 2,-13 + 536: 2,-12 + 541: 2,-11 + 546: 2,-10 + 562: -10,-28 + 572: 2,-27 + 576: 8,-32 + 583: 10,-27 + 591: 11,-26 + 596: 11,-20 + 601: 11,-19 + 609: 4,16 + 615: 4,17 + 622: 4,12 + 630: 4,13 + 638: 4,14 + 646: 4,15 + 654: 8,2 + 662: 8,3 + 667: 9,3 + 672: 9,4 + 677: 2,-13 + 682: 2,-12 + 687: 2,-11 + 692: 2,-10 + 708: -10,-28 + 718: 2,-27 + 722: 8,-32 + 729: 10,-27 + 737: 11,-26 + 742: 11,-20 + 747: 11,-19 + 755: 4,16 + 761: 4,17 + 768: 4,12 + 776: 4,13 + 784: 4,14 + 792: 4,15 + 800: 8,2 + 808: 8,3 + 813: 9,3 + 818: 9,4 + 823: 2,-13 + 828: 2,-12 + 833: 2,-11 + 838: 2,-10 + 854: -10,-28 + 864: 2,-27 + 868: 8,-32 + 875: 10,-27 + 883: 11,-26 + 888: 11,-20 + 893: 11,-19 + 901: 4,16 + 907: 4,17 + 914: 4,12 + 922: 4,13 + 930: 4,14 + 938: 4,15 + 946: 8,2 + 954: 8,3 + 959: 9,3 + 964: 9,4 + 969: 2,-13 + 974: 2,-12 + 979: 2,-11 + 984: 2,-10 + 1000: -10,-28 + 1010: 2,-27 + 1014: 8,-32 + 1021: 10,-27 + 1029: 11,-26 + 1034: 11,-20 + 1039: 11,-19 + 1047: 4,16 + 1053: 4,17 + 1060: 4,12 + 1068: 4,13 + 1076: 4,14 + 1084: 4,15 + 1092: 8,2 + 1100: 8,3 + 1105: 9,3 + 1110: 9,4 + 1115: 2,-13 + 1120: 2,-12 + 1125: 2,-11 + 1130: 2,-10 + 1146: -10,-28 + 1156: 2,-27 + 1160: 8,-32 + 1167: 10,-27 + 1175: 11,-26 + 1180: 11,-20 + 1185: 11,-19 + 1193: 4,16 + 1199: 4,17 + 1206: 4,12 + 1214: 4,13 + 1222: 4,14 + 1230: 4,15 + 1238: 8,2 + 1246: 8,3 + 1251: 9,3 + 1256: 9,4 + 1261: 2,-13 + 1266: 2,-12 + 1271: 2,-11 + 1276: 2,-10 + 1292: -10,-28 + 1302: 2,-27 + 1306: 8,-32 + 1313: 10,-27 + 1321: 11,-26 + 1326: 11,-20 + 1331: 11,-19 + 1339: 4,16 + 1345: 4,17 + 1352: 4,12 + 1360: 4,13 + 1368: 4,14 + 1376: 4,15 + 1384: 8,2 + 1392: 8,3 + 1397: 9,3 + 1402: 9,4 + 1407: 2,-13 + 1412: 2,-12 + 1417: 2,-11 + 1422: 2,-10 + 1438: -10,-28 + 1448: 2,-27 + 1452: 8,-32 + 1459: 10,-27 + 1467: 11,-26 + 1472: 11,-20 + 1477: 11,-19 + 1485: 4,16 + 1491: 4,17 + 1498: 4,12 + 1506: 4,13 + 1514: 4,14 + 1522: 4,15 + 1530: 8,2 + 1538: 8,3 + 1543: 9,3 + 1548: 9,4 + 1553: 2,-13 + 1558: 2,-12 + 1563: 2,-11 + 1568: 2,-10 + 1584: -10,-28 + 1594: 2,-27 + 1598: 8,-32 + 1605: 10,-27 + 1613: 11,-26 + 1618: 11,-20 + 1623: 11,-19 + 1631: 4,16 + 1637: 4,17 + 1644: 4,12 + 1652: 4,13 + 1660: 4,14 + 1668: 4,15 + 1676: 8,2 + 1684: 8,3 + 1689: 9,3 + 1694: 9,4 + 1699: 2,-13 + 1704: 2,-12 + 1709: 2,-11 + 1714: 2,-10 + 1730: -10,-28 + 1737: 2,-27 + 1745: 10,-27 + 1753: 11,-26 + 1761: 4,16 + 1767: 4,17 + 1774: 11,-20 + 1779: 11,-19 + 1783: 8,-32 + 1786: 9,-30 + 1795: 13,-20 + 1800: 12,-20 + 1820: -10,-8 + 1841: 4,12 + 1849: 4,13 + 1857: 4,14 + 1865: 4,15 + 1873: 8,2 + 1881: 8,3 + 1886: 9,3 + 1891: 9,4 + 1896: 2,-13 + 1901: 2,-12 + 1906: 2,-11 + 1911: 2,-10 + 1922: -10,-8 + 1961: -10,-28 + 1974: 2,-27 + 1978: 8,-32 + 1981: 9,-30 + 1988: 10,-27 + 1996: 11,-26 + 2004: 11,-20 + 2009: 11,-19 + 2015: 12,-20 + 2018: 13,-20 + 2025: 4,16 + 2031: 4,17 + 2038: 4,12 + 2046: 4,13 + 2054: 4,14 + 2062: 4,15 + 2070: 8,2 + 2078: 8,3 + 2083: 9,3 + 2088: 9,4 + 2093: 2,-13 + 2098: 2,-12 + 2103: 2,-11 + 2108: 2,-10 + 2119: -10,-8 + 2158: -10,-28 + 2171: 2,-27 + 2175: 8,-32 + 2178: 9,-30 + 2185: 10,-27 + 2193: 11,-26 + 2201: 11,-20 + 2206: 11,-19 + 2212: 12,-20 + 2215: 13,-20 + 2222: 4,16 + 2228: 4,17 + 2235: 4,12 + 2243: 4,13 + 2251: 4,14 + 2259: 4,15 + 2264: 2,-13 + 2269: 2,-12 + 2274: 2,-11 + 2279: 2,-10 + 2290: -10,-8 + 2329: -10,-28 + 2339: 2,-27 + 2343: 8,-32 + 2346: 9,-30 + 2353: 10,-27 + 2361: 11,-26 + 2369: 11,-20 + 2374: 11,-19 + 2380: 12,-20 + 2383: 13,-20 + 2390: 4,16 + 2396: 4,17 + 2410: 10,-5 + 2413: 10,-3 + 2417: 9,4 + 2422: 9,3 + 2430: 8,3 + 2438: 8,2 + 2644: 4,12 + 2652: 4,13 + 2660: 4,14 + 2668: 4,15 + 2676: 8,2 + 2684: 8,3 + 2689: 9,3 + 2694: 9,4 + 2699: 2,-13 + 2704: 2,-12 + 2709: 2,-11 + 2714: 2,-10 + 2718: 10,-5 + 2721: 10,-3 + 2731: -10,-8 + 2794: -10,-28 + 2807: 2,-27 + 2811: 8,-32 + 2814: 9,-30 + 2821: 10,-27 + 2829: 11,-26 + 2837: 11,-20 + 2842: 11,-19 + 2848: 12,-20 + 2851: 13,-20 + 2858: 4,16 + 2864: 4,17 + 2871: 4,12 + 2879: 4,13 + 2887: 4,14 + 2895: 4,15 + 2903: 8,2 + 2911: 8,3 + 2916: 9,3 + 2921: 9,4 + 2926: 2,-13 + 2931: 2,-12 + 2936: 2,-11 + 2941: 2,-10 + 2945: 10,-5 + 2948: 10,-3 + 2958: -10,-8 + 3021: -10,-28 + 3034: 2,-27 + 3038: 8,-32 + 3041: 9,-30 + 3048: 10,-27 + 3056: 11,-26 + 3064: 11,-20 + 3069: 11,-19 + 3075: 12,-20 + 3078: 13,-20 + 3085: 4,16 + 3091: 4,17 + 3098: 4,12 + 3106: 4,13 + 3114: 4,14 + 3122: 4,15 + 3130: 8,2 + 3138: 8,3 + 3143: 9,3 + 3148: 9,4 + 3153: 2,-13 + 3158: 2,-12 + 3163: 2,-11 + 3168: 2,-10 + 3172: 10,-5 + 3175: 10,-3 + 3185: -10,-8 + 3248: -10,-28 + 3261: 2,-27 + 3265: 8,-32 + 3268: 9,-30 + 3275: 10,-27 + 3283: 11,-26 + 3291: 11,-20 + 3296: 11,-19 + 3302: 12,-20 + 3305: 13,-20 + 3312: 4,16 + 3318: 4,17 + 3325: 4,12 + 3333: 4,13 + 3341: 4,14 + 3349: 4,15 + 3357: 8,2 + 3365: 8,3 + 3370: 9,3 + 3375: 9,4 + 3380: 2,-13 + 3385: 2,-12 + 3390: 2,-11 + 3395: 2,-10 + 3399: 10,-5 + 3402: 10,-3 + 3412: -10,-8 + 3475: -10,-28 + 3488: 2,-27 + 3492: 8,-32 + 3495: 9,-30 + 3502: 10,-27 + 3510: 11,-26 + 3518: 11,-20 + 3523: 11,-19 + 3529: 12,-20 + 3532: 13,-20 + 3539: 4,16 + 3545: 4,17 + 3552: 4,12 + 3560: 4,13 + 3568: 4,14 + 3576: 4,15 + 3584: 8,2 + 3592: 8,3 + 3597: 9,3 + 3602: 9,4 + 3607: 2,-13 + 3612: 2,-12 + 3617: 2,-11 + 3622: 2,-10 + 3626: 10,-5 + 3629: 10,-3 + 3639: -10,-8 + 3677: -10,-28 + 3690: 2,-27 + 3694: 8,-32 + 3697: 9,-30 + 3704: 10,-27 + 3712: 11,-26 + 3720: 11,-20 + 3725: 11,-19 + 3731: 12,-20 + 3734: 13,-20 + 3741: 4,16 + 3747: 4,17 + 3775: 4,12 + 3783: 4,13 + 3791: 4,14 + 3799: 4,15 + 3807: 8,2 + 3815: 8,3 + 3820: 9,3 + 3825: 9,4 + 3830: 2,-13 + 3835: 2,-12 + 3840: 2,-11 + 3845: 2,-10 + 3849: 10,-5 + 3852: 10,-3 + 3862: -10,-8 + 3921: -10,-28 + 3934: 2,-27 + 3938: 8,-32 + 3941: 9,-30 + 3948: 10,-27 + 3956: 11,-26 + 3964: 11,-20 + 3969: 11,-19 + 3975: 12,-20 + 3978: 13,-20 + 3985: 4,16 + 3991: 4,17 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -3968,11 +4191,11 @@ entities: color: '#D381C996' id: Rust decals: - 2468: -5,9 - 2469: -6,8 - 2470: -4,10 - 2471: -3,11 - 2472: -3,7 + 2398: -5,9 + 2399: -6,8 + 2400: -4,10 + 2401: -3,11 + 2402: -3,7 - node: color: '#FFFFFFFF' id: TechCornerE @@ -3982,8 +4205,8 @@ entities: color: '#D381C996' id: TechE decals: - 2687: -4,-15 - 2688: -4,-13 + 2617: -4,-15 + 2618: -4,-13 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -4002,7 +4225,7 @@ entities: color: '#D381C996' id: TechNE decals: - 2683: -4,-12 + 2613: -4,-12 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -4025,24 +4248,24 @@ entities: color: '#D381C996' id: TechNW decals: - 2684: -8,-12 + 2614: -8,-12 - node: color: '#D381C996' id: TechS decals: - 2692: -7,-16 - 2693: -6,-16 - 2694: -5,-16 + 2622: -7,-16 + 2623: -6,-16 + 2624: -5,-16 - node: color: '#D381C996' id: TechSE decals: - 2686: -4,-16 + 2616: -4,-16 - node: color: '#D381C996' id: TechSW decals: - 2685: -8,-16 + 2615: -8,-16 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -4053,65 +4276,65 @@ entities: color: '#D381C996' id: TechW decals: - 2689: -8,-13 - 2690: -8,-14 - 2691: -8,-15 + 2619: -8,-13 + 2620: -8,-14 + 2621: -8,-15 - node: color: '#D381C996' id: TrimWarnNorth decals: - 2571: 1,-1 - 2572: 2,-1 - 2573: 3,-1 - 2581: 1,-3 - 2582: 2,-3 - 2583: 3,-3 + 2501: 1,-1 + 2502: 2,-1 + 2503: 3,-1 + 2511: 1,-3 + 2512: 2,-3 + 2513: 3,-3 - node: color: '#D381C996' id: TrimWarnNorthEast decals: - 2570: 4,-1 - 2579: 4,-3 + 2500: 4,-1 + 2509: 4,-3 - node: color: '#D381C996' id: TrimWarnNorthWest decals: - 2569: 0,-1 - 2580: 0,-3 + 2499: 0,-1 + 2510: 0,-3 - node: color: '#D381C996' id: TrimWarnSouth decals: - 2576: 1,-2 - 2577: 2,-2 - 2578: 3,-2 - 2586: 1,-4 - 2587: 2,-4 - 2588: 3,-4 + 2506: 1,-2 + 2507: 2,-2 + 2508: 3,-2 + 2516: 1,-4 + 2517: 2,-4 + 2518: 3,-4 - node: color: '#D381C996' id: TrimWarnSouthEast decals: - 2574: 4,-2 - 2584: 4,-4 + 2504: 4,-2 + 2514: 4,-4 - node: color: '#D381C996' id: TrimWarnSouthWest decals: - 2575: 0,-2 - 2585: 0,-4 + 2505: 0,-2 + 2515: 0,-4 - node: color: '#D381C996' id: TrimlineNorthEnd decals: - 2590: 5,-2 - 2591: -1,-2 + 2520: 5,-2 + 2521: -1,-2 - node: color: '#D381C996' id: TrimlineSouthEnd decals: - 2589: 5,-3 - 2592: -1,-3 + 2519: 5,-3 + 2522: -1,-3 - node: color: '#D381C996' id: WarnCornerGreyscaleNE @@ -4465,6 +4688,7 @@ entities: - type: ShuttleDeed shuttleName: Shuttle KXZ-684 shuttleUid: 1 + - type: SelfDeleteGrid - proto: AAAardpointMediumMissile entities: - uid: 2 @@ -4508,7 +4732,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 914 + - 916 - type: Physics canCollide: False - proto: AAAHardpointMediumBallistic @@ -4643,7 +4867,7 @@ entities: occludes: True ents: [] - type: Battery - startingCharge: 55240.066 + startingCharge: 54550.723 - type: ApcPowerReceiverBattery enabled: True - type: ItemSlots @@ -4657,21 +4881,21 @@ entities: parent: 1 - type: DeviceList devices: - - 1105 - - 1113 - - 1106 - - 1114 - - 1112 - - 1109 - - 1117 + - 1107 + - 1115 - 1108 - 1116 + - 1114 - 1111 - - 1104 + - 1119 - 1110 - 1118 - - 1107 - - 1115 + - 1113 + - 1106 + - 1112 + - 1120 + - 1109 + - 1117 - uid: 22 components: - type: Transform @@ -4680,21 +4904,21 @@ entities: parent: 1 - type: DeviceList devices: - - 1105 - - 1113 - - 1106 - - 1114 - - 1112 - - 1109 - - 1117 + - 1107 + - 1115 - 1108 - 1116 + - 1114 - 1111 - - 1104 + - 1119 - 1110 - 1118 - - 1107 - - 1115 + - 1113 + - 1106 + - 1112 + - 1120 + - 1109 + - 1117 - uid: 23 components: - type: Transform @@ -4707,21 +4931,21 @@ entities: parent: 1 - type: DeviceList devices: - - 1105 - - 1113 - - 1106 - - 1114 - - 1112 - - 1109 - - 1117 + - 1107 + - 1115 - 1108 - 1116 + - 1114 - 1111 - - 1104 + - 1119 - 1110 - 1118 - - 1107 - - 1115 + - 1113 + - 1106 + - 1112 + - 1120 + - 1109 + - 1117 - uid: 25 components: - type: Transform @@ -4730,21 +4954,21 @@ entities: parent: 1 - type: DeviceList devices: - - 1105 - - 1113 - - 1106 - - 1114 - - 1112 - - 1109 - - 1117 + - 1107 + - 1115 - 1108 - 1116 + - 1114 - 1111 - - 1104 + - 1119 - 1110 - 1118 - - 1107 - - 1115 + - 1113 + - 1106 + - 1112 + - 1120 + - 1109 + - 1117 - proto: AirCanister entities: - uid: 26 @@ -4829,7 +5053,7 @@ entities: pos: 0.5,-10.5 parent: 1 - type: Door - secondsUntilStateChange: -23390.371 + secondsUntilStateChange: -23527.172 state: Opening - type: DeviceLinkSource lastSignals: @@ -4938,7 +5162,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -30629.084 + secondsUntilStateChange: -30765.885 state: Opening - uid: 55 components: @@ -5279,8 +5503,8 @@ entities: ents: [] - type: PointCannon linkedConsoleIds: - - 922 - linkedConsoleId: 922 + - 924 + linkedConsoleId: 924 - uid: 115 components: - type: Transform @@ -5311,8 +5535,8 @@ entities: ents: [] - type: PointCannon linkedConsoleIds: - - 922 - linkedConsoleId: 922 + - 924 + linkedConsoleId: 924 - uid: 116 components: - type: Transform @@ -5343,8 +5567,8 @@ entities: ents: [] - type: PointCannon linkedConsoleIds: - - 922 - linkedConsoleId: 922 + - 924 + linkedConsoleId: 924 - uid: 117 components: - type: Transform @@ -5373,13 +5597,13 @@ entities: powerLoad: 5 - type: PointCannon linkedConsoleIds: - - 922 - linkedConsoleId: 922 + - 924 + linkedConsoleId: 924 - type: Battery startingCharge: 0 - proto: BedsheetBrown entities: - - uid: 125 + - uid: 118 components: - type: Transform rot: 3.141592653589793 rad @@ -5387,7 +5611,7 @@ entities: parent: 1 - proto: BedsheetCaptain entities: - - uid: 124 + - uid: 119 components: - type: Transform rot: 3.141592653589793 rad @@ -5395,7 +5619,7 @@ entities: parent: 1 - proto: BedsheetGreen entities: - - uid: 122 + - uid: 120 components: - type: Transform rot: 3.141592653589793 rad @@ -5403,7 +5627,7 @@ entities: parent: 1 - proto: BedsheetGrey entities: - - uid: 120 + - uid: 121 components: - type: Transform rot: 3.141592653589793 rad @@ -5411,7 +5635,7 @@ entities: parent: 1 - proto: BedsheetMedical entities: - - uid: 118 + - uid: 122 components: - type: Transform pos: -3.4646935,-7.445119 @@ -5421,17 +5645,17 @@ entities: linearDamping: 0 - proto: BedsheetRD entities: - - uid: 119 + - uid: 123 components: - type: Transform pos: -11.5,-23.5 parent: 1 - - uid: 121 + - uid: 124 components: - type: Transform pos: -8.5,-23.5 parent: 1 - - uid: 123 + - uid: 125 components: - type: Transform pos: -10.5,-25.5 @@ -5453,7 +5677,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1362 + - 1370 - uid: 128 components: - type: Transform @@ -5462,7 +5686,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1360 + - 1368 - uid: 129 components: - type: Transform @@ -5471,7 +5695,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1364 + - 1372 - uid: 130 components: - type: Transform @@ -5498,7 +5722,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1365 + - 1373 - uid: 134 components: - type: Transform @@ -5506,7 +5730,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1366 + - 1374 - uid: 135 components: - type: Transform @@ -5515,7 +5739,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1363 + - 1371 - uid: 136 components: - type: Transform @@ -5524,7 +5748,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1360 + - 1368 - uid: 137 components: - type: Transform @@ -5533,7 +5757,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1361 + - 1369 - proto: BoozeDispenser entities: - uid: 138 @@ -9383,7 +9607,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 912 + - 914 - proto: ClosetEmergencyFilledRandom entities: - uid: 885 @@ -9403,12 +9627,12 @@ entities: parent: 1 - proto: ClosetToolFilled entities: - - uid: 1803 + - uid: 888 components: - type: Transform pos: -0.5,-26.5 parent: 1 - - uid: 1804 + - uid: 889 components: - type: Transform anchored: True @@ -9419,17 +9643,17 @@ entities: bodyType: Static - proto: ClothingBackpackDuffelSurgeryAdvancedFilled entities: - - uid: 888 + - uid: 890 components: - type: Transform pos: -3.3814595,-5.8999166 parent: 1 - - uid: 889 + - uid: 891 components: - type: Transform pos: -3.4363146,-5.5297155 parent: 1 - - uid: 890 + - uid: 892 components: - type: Transform pos: -3.4363146,-5.337759 @@ -9454,17 +9678,17 @@ entities: - type: InsideEntityStorage - proto: ClothingHeadsetEmpire entities: - - uid: 891 + - uid: 893 components: - type: Transform pos: -6.560283,-25.952425 parent: 1 - - uid: 892 + - uid: 894 components: - type: Transform pos: -6.560283,-25.952425 parent: 1 - - uid: 893 + - uid: 895 components: - type: Transform pos: -6.372783,-25.9993 @@ -9489,7 +9713,7 @@ entities: - type: InsideEntityStorage - proto: ClothingNeckCrucifixGold entities: - - uid: 894 + - uid: 896 components: - type: Transform pos: 6.3914356,-18.430052 @@ -9514,79 +9738,79 @@ entities: - type: InsideEntityStorage - proto: Cobweb1 entities: - - uid: 895 + - uid: 897 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 896 + - uid: 898 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,7.5 parent: 1 - - uid: 897 + - uid: 899 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 898 + - uid: 900 components: - type: Transform pos: -5.5,9.5 parent: 1 - - uid: 899 + - uid: 901 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 900 + - uid: 902 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,11.5 parent: 1 - - uid: 901 + - uid: 903 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,4.5 parent: 1 - - uid: 902 + - uid: 904 components: - type: Transform pos: -1.5,0.5 parent: 1 - proto: Cobweb2 entities: - - uid: 903 + - uid: 905 components: - type: Transform pos: 9.5,-24.5 parent: 1 - - uid: 904 + - uid: 906 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-17.5 parent: 1 - - uid: 905 + - uid: 907 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 906 + - uid: 908 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,2.5 parent: 1 - - uid: 907 + - uid: 909 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 908 + - uid: 910 components: - type: Transform rot: -1.5707963267948966 rad @@ -9594,21 +9818,21 @@ entities: parent: 1 - proto: ColonyShellComplete entities: - - uid: 909 + - uid: 911 components: - type: Transform pos: 3.3598633,6.378355 parent: 1 - proto: ComputerAdvancedRadar entities: - - uid: 910 + - uid: 912 components: - type: Transform pos: 6.5,-23.5 parent: 1 - proto: ComputerBroken entities: - - uid: 911 + - uid: 913 components: - type: Transform rot: -1.5707963267948966 rad @@ -9616,7 +9840,7 @@ entities: parent: 1 - proto: ComputerCloningConsole entities: - - uid: 912 + - uid: 914 components: - type: Transform pos: -4.5,-3.5 @@ -9628,14 +9852,14 @@ entities: - CloningPodReceiver - - MedicalScannerSender - CloningPodReceiver - 1164: + 1168: - - MedicalScannerSender - MedicalScannerReceiver - - CloningPodSender - MedicalScannerReceiver - proto: ComputerRadar entities: - - uid: 913 + - uid: 915 components: - type: Transform rot: 3.141592653589793 rad @@ -9643,7 +9867,7 @@ entities: parent: 1 - proto: ComputerShuttle entities: - - uid: 914 + - uid: 916 components: - type: Transform pos: 7.5,-23.5 @@ -9676,13 +9900,13 @@ entities: - Module E - proto: ComputerTabletopAlert entities: - - uid: 915 + - uid: 917 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-28.5 parent: 1 - - uid: 916 + - uid: 918 components: - type: Transform rot: -1.5707963267948966 rad @@ -9690,7 +9914,7 @@ entities: parent: 1 - proto: ComputerTabletopCommsShip entities: - - uid: 917 + - uid: 919 components: - type: Transform rot: 3.141592653589793 rad @@ -9698,7 +9922,7 @@ entities: parent: 1 - proto: ComputerTabletopCrewMonitoring entities: - - uid: 918 + - uid: 920 components: - type: Transform rot: 3.141592653589793 rad @@ -9706,19 +9930,19 @@ entities: parent: 1 - proto: ComputerTabletopPowerMonitoring entities: - - uid: 919 + - uid: 921 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-29.5 parent: 1 - - uid: 920 + - uid: 922 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-23.5 parent: 1 - - uid: 921 + - uid: 923 components: - type: Transform rot: -1.5707963267948966 rad @@ -9726,7 +9950,7 @@ entities: parent: 1 - proto: ComputerTargeting entities: - - uid: 922 + - uid: 924 components: - type: Transform pos: 8.5,-23.5 @@ -9738,43 +9962,14 @@ entities: - 115 - 116 - 117 - - 1782 - - 1783 - - 1784 - - 1785 - - 1786 - - 1787 - - 1788 - - 1789 - - 1790 - - 1791 - - 1792 - - 1793 - - 1794 70mm "Jeong" swarmrocket platform: - 114 - 115 - 116 - 117 - 60mm PTA 'Needler' heavy precision autogun: - - 1782 - - 1783 - - 1784 - - 1785 - SHI MG-213 light dual machinegun 20x135mm: - - 1786 - - 1787 - - 1788 - - 1789 - - 1790 - - 1791 - - 1792 - 20mm PTA "Operator" gatling turret: - - 1793 - - 1794 - proto: ComputerWallmountBankATM entities: - - uid: 923 + - uid: 925 components: - type: Transform pos: 5.5,2.5 @@ -9793,28 +9988,28 @@ entities: canCollide: False - proto: CoolantCartridge entities: - - uid: 925 + - uid: 927 components: - type: Transform - parent: 924 + parent: 926 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 926 + - uid: 928 components: - type: Transform - parent: 924 + parent: 926 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 927 + - uid: 929 components: - type: Transform - parent: 924 + parent: 926 - type: Physics angularDamping: 0 linearDamping: 0 @@ -9822,19 +10017,19 @@ entities: - type: InsideEntityStorage - proto: CoolantCartridge30 entities: - - uid: 928 + - uid: 930 components: - type: Transform - parent: 924 + parent: 926 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 929 + - uid: 931 components: - type: Transform - parent: 924 + parent: 926 - type: Physics angularDamping: 0 linearDamping: 0 @@ -9842,19 +10037,19 @@ entities: - type: InsideEntityStorage - proto: CrateAutogunAmmo entities: - - uid: 930 + - uid: 932 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 931 + - uid: 933 components: - type: Transform pos: -1.5,3.5 parent: 1 - proto: CrateCoolant entities: - - uid: 924 + - uid: 926 components: - type: Transform pos: 2.5,6.5 @@ -9893,109 +10088,109 @@ entities: showEnts: False occludes: True ents: + - 931 + - 930 - 929 - 928 - 927 - - 926 - - 925 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateFoodMRE entities: - - uid: 932 + - uid: 934 components: - type: Transform pos: -5.5,5.5 parent: 1 - proto: CrateJeongAmmo entities: - - uid: 933 + - uid: 935 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 934 + - uid: 936 components: - type: Transform pos: 0.5,3.5 parent: 1 - proto: CrateVulcanAmmo entities: - - uid: 935 + - uid: 937 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 936 + - uid: 938 components: - type: Transform pos: 1.5,3.5 parent: 1 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 937 + - uid: 939 components: - type: Transform pos: -3.5,-24.5 parent: 1 - - uid: 938 + - uid: 940 components: - type: Transform pos: -3.5,-26.5 parent: 1 - proto: CurtainsBlackOpen entities: - - uid: 939 + - uid: 941 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-25.5 parent: 1 - - uid: 940 + - uid: 942 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-24.5 parent: 1 - - uid: 941 + - uid: 943 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-24.5 parent: 1 - - uid: 942 + - uid: 944 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-23.5 parent: 1 - - uid: 943 + - uid: 945 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-22.5 parent: 1 - - uid: 944 + - uid: 946 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-23.5 parent: 1 - - uid: 945 + - uid: 947 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-1.5 parent: 1 - - uid: 946 + - uid: 948 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,0.5 parent: 1 - - uid: 947 + - uid: 949 components: - type: Transform rot: 3.141592653589793 rad @@ -10003,7 +10198,7 @@ entities: parent: 1 - proto: CurtainsPurpleOpen entities: - - uid: 948 + - uid: 950 components: - type: Transform rot: -1.5707963267948966 rad @@ -10011,146 +10206,146 @@ entities: parent: 1 - proto: Dresser entities: - - uid: 949 + - uid: 951 components: - type: Transform pos: -8.5,-22.5 parent: 1 - proto: DrinkBeerCan entities: - - uid: 950 + - uid: 952 components: - type: Transform pos: -10.738575,-22.1497 parent: 1 - - uid: 951 + - uid: 953 components: - type: Transform pos: -3.50918,3.8372777 parent: 1 - - uid: 952 + - uid: 954 components: - type: Transform pos: -10.195317,-22.079603 parent: 1 - - uid: 953 + - uid: 955 components: - type: Transform pos: -3.3586764,3.483025 parent: 1 - proto: DrinkGlass entities: - - uid: 954 + - uid: 956 components: - type: Transform pos: -5.3006854,4.105737 parent: 1 - - uid: 955 + - uid: 957 components: - type: Transform pos: -5.7225714,4.6838393 parent: 1 - - uid: 956 + - uid: 958 components: - type: Transform pos: -5.788966,4.1871176 parent: 1 - proto: DrinkRootBeerCan entities: - - uid: 957 + - uid: 959 components: - type: Transform pos: -5.30653,-19.372026 parent: 1 - proto: DrinkWineBottleFull entities: - - uid: 958 + - uid: 960 components: - type: Transform pos: -3.5655012,11.610062 parent: 1 - - uid: 959 + - uid: 961 components: - type: Transform pos: -0.33184934,8.71591 parent: 1 - proto: DrinkWineGlass entities: - - uid: 960 + - uid: 962 components: - type: Transform pos: -1.0328281,8.575714 parent: 1 - - uid: 961 + - uid: 963 components: - type: Transform pos: -3.845893,11.68016 parent: 1 - - uid: 962 + - uid: 964 components: - type: Transform pos: -3.179963,11.575012 parent: 1 - - uid: 963 + - uid: 965 components: - type: Transform pos: -1.3833175,8.663337 parent: 1 - proto: Dropper entities: - - uid: 964 + - uid: 966 components: - type: Transform pos: -4.53538,-9.439533 parent: 1 - proto: DSMConscriptAmmoVendory entities: - - uid: 965 + - uid: 967 components: - type: Transform pos: 8.5,1.5 parent: 1 - proto: DSMConscriptGearVendory entities: - - uid: 966 + - uid: 968 components: - type: Transform pos: 8.5,-0.5 parent: 1 - proto: DSMConscriptShipVendory entities: - - uid: 967 + - uid: 969 components: - type: Transform pos: 1.5,1.5 parent: 1 - proto: ExtinguisherCabinetFilled entities: - - uid: 968 + - uid: 970 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 1 - - uid: 969 + - uid: 971 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-14.5 parent: 1 - - uid: 970 + - uid: 972 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-20.5 parent: 1 - - uid: 971 + - uid: 973 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-21.5 parent: 1 - - uid: 972 + - uid: 974 components: - type: Transform rot: 1.5707963267948966 rad @@ -10158,7 +10353,7 @@ entities: parent: 1 - proto: FireAxeCabinetFilled entities: - - uid: 973 + - uid: 975 components: - type: Transform rot: 1.5707963267948966 rad @@ -10166,105 +10361,105 @@ entities: parent: 1 - proto: Firelock entities: - - uid: 974 + - uid: 976 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 975 + - uid: 977 components: - type: Transform pos: -2.5,-6.5 parent: 1 - - uid: 976 + - uid: 978 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 977 + - uid: 979 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 978 + - uid: 980 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 979 + - uid: 981 components: - type: Transform pos: -2.5,-5.5 parent: 1 - - uid: 980 + - uid: 982 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 981 + - uid: 983 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 982 + - uid: 984 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 983 + - uid: 985 components: - type: Transform pos: 1.5,-19.5 parent: 1 - - uid: 984 + - uid: 986 components: - type: Transform pos: 9.5,-21.5 parent: 1 - - uid: 985 + - uid: 987 components: - type: Transform pos: -3.5,-18.5 parent: 1 - - uid: 986 + - uid: 988 components: - type: Transform pos: -7.5,-18.5 parent: 1 - - uid: 987 + - uid: 989 components: - type: Transform pos: -7.5,-21.5 parent: 1 - - uid: 988 + - uid: 990 components: - type: Transform pos: -5.5,-23.5 parent: 1 - - uid: 989 + - uid: 991 components: - type: Transform pos: -0.5,-22.5 parent: 1 - - uid: 990 + - uid: 992 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-16.5 parent: 1 - - uid: 991 + - uid: 993 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-16.5 parent: 1 - - uid: 992 + - uid: 994 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-21.5 parent: 1 - - uid: 993 + - uid: 995 components: - type: Transform rot: 1.5707963267948966 rad @@ -10272,14 +10467,14 @@ entities: parent: 1 - proto: FloodlightBroken entities: - - uid: 994 + - uid: 996 components: - type: Transform pos: 6.3343687,1.5250366 parent: 1 - proto: FloorDrain entities: - - uid: 995 + - uid: 997 components: - type: Transform rot: 3.141592653589793 rad @@ -10287,7 +10482,7 @@ entities: parent: 1 - type: Fixtures fixtures: {} - - uid: 996 + - uid: 998 components: - type: Transform pos: -3.5,-1.5 @@ -10296,121 +10491,121 @@ entities: fixtures: {} - proto: FoodBowlBigTrash entities: - - uid: 997 + - uid: 999 components: - type: Transform pos: 0.077132344,8.544015 parent: 1 - proto: FoodPacketPistachioTrash entities: - - uid: 998 + - uid: 1000 components: - type: Transform pos: -4.536465,4.209358 parent: 1 - proto: FoodPacketPopcornTrash entities: - - uid: 999 + - uid: 1001 components: - type: Transform pos: -9.646851,-22.937117 parent: 1 - - uid: 1000 + - uid: 1002 components: - type: Transform pos: 7.078408,-0.70122194 parent: 1 - - uid: 1001 + - uid: 1003 components: - type: Transform pos: -3.706387,9.840868 parent: 1 - proto: FoodPacketRedalertnutsTrash entities: - - uid: 1002 + - uid: 1004 components: - type: Transform pos: -0.43736482,-24.51416 parent: 1 - proto: FoodPacketSaturnosTrash entities: - - uid: 1003 + - uid: 1005 components: - type: Transform pos: -4.9963512,-26.496159 parent: 1 - proto: FoodPacketSemkiTrash entities: - - uid: 1004 + - uid: 1006 components: - type: Transform pos: -0.7350528,5.5156784 parent: 1 - proto: FoodPacketStickTrash entities: - - uid: 1005 + - uid: 1007 components: - type: Transform pos: -0.5434767,-28.729654 parent: 1 - proto: FoodPacketSusTrash entities: - - uid: 1006 + - uid: 1008 components: - type: Transform pos: -5.447663,-28.58317 parent: 1 - - uid: 1007 + - uid: 1009 components: - type: Transform pos: 0.57957006,-28.33903 parent: 1 - proto: FoodPlateSmallTrash entities: - - uid: 1008 + - uid: 1010 components: - type: Transform pos: -4.5162544,8.455652 parent: 1 - - uid: 1009 + - uid: 1011 components: - type: Transform pos: 0.5346668,-2.3862953 parent: 1 - proto: FoodPSBTrash entities: - - uid: 1010 + - uid: 1012 components: - type: Transform pos: -1.2760562,-11.846495 parent: 1 - - uid: 1011 + - uid: 1013 components: - type: Transform pos: 2.1904192,-3.1112895 parent: 1 - - uid: 1012 + - uid: 1014 components: - type: Transform pos: -0.60484445,7.4808426 parent: 1 - proto: FoodSnackNutribrick entities: - - uid: 1013 + - uid: 1015 components: - type: Transform pos: -6.497783,-26.421175 parent: 1 - proto: FoodTinBeansTrash entities: - - uid: 1014 + - uid: 1016 components: - type: Transform pos: -10.533169,-24.56472 parent: 1 - proto: GasPassiveVent entities: - - uid: 1015 + - uid: 1017 components: - type: Transform rot: -1.5707963267948966 rad @@ -10418,81 +10613,81 @@ entities: parent: 1 - proto: GasPipeBend entities: - - uid: 1016 + - uid: 1018 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 1017 + - uid: 1019 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,7.5 parent: 1 - - uid: 1018 + - uid: 1020 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 1019 + - uid: 1021 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 1 - - uid: 1020 + - uid: 1022 components: - type: Transform pos: -4.5,-12.5 parent: 1 - - uid: 1021 + - uid: 1023 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-14.5 parent: 1 - - uid: 1022 + - uid: 1024 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-22.5 parent: 1 - - uid: 1023 + - uid: 1025 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 1 - - uid: 1024 + - uid: 1026 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-22.5 parent: 1 - - uid: 1025 + - uid: 1027 components: - type: Transform pos: 0.5,-22.5 parent: 1 - - uid: 1026 + - uid: 1028 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-7.5 parent: 1 - - uid: 1027 + - uid: 1029 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-7.5 parent: 1 - - uid: 1028 + - uid: 1030 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-30.5 parent: 1 - - uid: 1029 + - uid: 1031 components: - type: Transform rot: -1.5707963267948966 rad @@ -10500,415 +10695,415 @@ entities: parent: 1 - proto: GasPipeFourway entities: - - uid: 1030 + - uid: 1032 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 1031 + - uid: 1033 components: - type: Transform pos: -1.5,-19.5 parent: 1 - proto: GasPipeStraight entities: - - uid: 1032 + - uid: 1034 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-2.5 parent: 1 - - uid: 1033 + - uid: 1035 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 1 - - uid: 1034 + - uid: 1036 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-2.5 parent: 1 - - uid: 1035 + - uid: 1037 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-2.5 parent: 1 - - uid: 1036 + - uid: 1038 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - - uid: 1037 + - uid: 1039 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,5.5 parent: 1 - - uid: 1038 + - uid: 1040 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 1 - - uid: 1039 + - uid: 1041 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 1 - - uid: 1040 + - uid: 1042 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,1.5 parent: 1 - - uid: 1041 + - uid: 1043 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 parent: 1 - - uid: 1042 + - uid: 1044 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-0.5 parent: 1 - - uid: 1043 + - uid: 1045 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 1 - - uid: 1044 + - uid: 1046 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 1 - - uid: 1045 + - uid: 1047 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-5.5 parent: 1 - - uid: 1046 + - uid: 1048 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-5.5 parent: 1 - - uid: 1047 + - uid: 1049 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-18.5 parent: 1 - - uid: 1048 + - uid: 1050 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-6.5 parent: 1 - - uid: 1049 + - uid: 1051 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 - - uid: 1050 + - uid: 1052 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-6.5 parent: 1 - - uid: 1051 + - uid: 1053 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-21.5 parent: 1 - - uid: 1052 + - uid: 1054 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 1 - - uid: 1053 + - uid: 1055 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-21.5 parent: 1 - - uid: 1054 + - uid: 1056 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-21.5 parent: 1 - - uid: 1055 + - uid: 1057 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-21.5 parent: 1 - - uid: 1056 + - uid: 1058 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-21.5 parent: 1 - - uid: 1057 + - uid: 1059 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-26.5 parent: 1 - - uid: 1058 + - uid: 1060 components: - type: Transform pos: 0.5,-25.5 parent: 1 - - uid: 1059 + - uid: 1061 components: - type: Transform pos: 0.5,-24.5 parent: 1 - - uid: 1060 + - uid: 1062 components: - type: Transform pos: 0.5,-23.5 parent: 1 - - uid: 1061 + - uid: 1063 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-22.5 parent: 1 - - uid: 1062 + - uid: 1064 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-17.5 parent: 1 - - uid: 1063 + - uid: 1065 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-16.5 parent: 1 - - uid: 1064 + - uid: 1066 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-15.5 parent: 1 - - uid: 1065 + - uid: 1067 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 1 - - uid: 1066 + - uid: 1068 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-13.5 parent: 1 - - uid: 1067 + - uid: 1069 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-12.5 parent: 1 - - uid: 1068 + - uid: 1070 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-11.5 parent: 1 - - uid: 1069 + - uid: 1071 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-10.5 parent: 1 - - uid: 1070 + - uid: 1072 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-9.5 parent: 1 - - uid: 1071 + - uid: 1073 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-8.5 parent: 1 - - uid: 1072 + - uid: 1074 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-13.5 parent: 1 - - uid: 1073 + - uid: 1075 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-20.5 parent: 1 - - uid: 1074 + - uid: 1076 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-20.5 parent: 1 - - uid: 1075 + - uid: 1077 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-20.5 parent: 1 - - uid: 1076 + - uid: 1078 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-20.5 parent: 1 - - uid: 1077 + - uid: 1079 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-20.5 parent: 1 - - uid: 1078 + - uid: 1080 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-20.5 parent: 1 - - uid: 1079 + - uid: 1081 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-30.5 parent: 1 - - uid: 1080 + - uid: 1082 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-30.5 parent: 1 - - uid: 1081 + - uid: 1083 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-30.5 parent: 1 - - uid: 1082 + - uid: 1084 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-30.5 parent: 1 - - uid: 1083 + - uid: 1085 components: - type: Transform pos: 0.5,-29.5 parent: 1 - - uid: 1084 + - uid: 1086 components: - type: Transform pos: 0.5,-28.5 parent: 1 - - uid: 1085 + - uid: 1087 components: - type: Transform pos: 0.5,-27.5 parent: 1 - proto: GasPipeTJunction entities: - - uid: 1086 + - uid: 1088 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 1 - - uid: 1087 + - uid: 1089 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 1088 + - uid: 1090 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - - uid: 1089 + - uid: 1091 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 1 - - uid: 1090 + - uid: 1092 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-2.5 parent: 1 - - uid: 1091 + - uid: 1093 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 1 - - uid: 1092 + - uid: 1094 components: - type: Transform pos: -4.5,-5.5 parent: 1 - - uid: 1093 + - uid: 1095 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-13.5 parent: 1 - - uid: 1094 + - uid: 1096 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-20.5 parent: 1 - - uid: 1095 + - uid: 1097 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-22.5 parent: 1 - - uid: 1096 + - uid: 1098 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-21.5 parent: 1 - - uid: 1097 + - uid: 1099 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-26.5 parent: 1 - - uid: 1098 + - uid: 1100 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-20.5 parent: 1 - - uid: 1099 + - uid: 1101 components: - type: Transform rot: -1.5707963267948966 rad @@ -10916,33 +11111,33 @@ entities: parent: 1 - proto: GasPort entities: - - uid: 1100 + - uid: 1102 components: - type: Transform pos: -4.5,-28.5 parent: 1 - proto: GasValve entities: - - uid: 1101 + - uid: 1103 components: - type: Transform pos: -4.5,-29.5 parent: 1 - proto: GasVentPump entities: - - uid: 1102 + - uid: 1104 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 1103 + - uid: 1105 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-3.5 parent: 1 - - uid: 1104 + - uid: 1106 components: - type: Transform rot: -1.5707963267948966 rad @@ -10954,7 +11149,7 @@ entities: - 25 - 22 - 21 - - uid: 1105 + - uid: 1107 components: - type: Transform pos: 0.5,4.5 @@ -10965,7 +11160,7 @@ entities: - 25 - 22 - 21 - - uid: 1106 + - uid: 1108 components: - type: Transform rot: -1.5707963267948966 rad @@ -10977,7 +11172,7 @@ entities: - 25 - 22 - 21 - - uid: 1107 + - uid: 1109 components: - type: Transform pos: -9.5,-21.5 @@ -10988,7 +11183,7 @@ entities: - 25 - 22 - 21 - - uid: 1108 + - uid: 1110 components: - type: Transform rot: 1.5707963267948966 rad @@ -11000,7 +11195,7 @@ entities: - 25 - 22 - 21 - - uid: 1109 + - uid: 1111 components: - type: Transform rot: 1.5707963267948966 rad @@ -11012,7 +11207,7 @@ entities: - 25 - 22 - 21 - - uid: 1110 + - uid: 1112 components: - type: Transform rot: 3.141592653589793 rad @@ -11026,7 +11221,7 @@ entities: - 21 - proto: GasVentScrubber entities: - - uid: 1111 + - uid: 1113 components: - type: Transform rot: 1.5707963267948966 rad @@ -11038,7 +11233,7 @@ entities: - 25 - 22 - 21 - - uid: 1112 + - uid: 1114 components: - type: Transform rot: 1.5707963267948966 rad @@ -11050,7 +11245,7 @@ entities: - 25 - 22 - 21 - - uid: 1113 + - uid: 1115 components: - type: Transform rot: 3.141592653589793 rad @@ -11062,7 +11257,7 @@ entities: - 25 - 22 - 21 - - uid: 1114 + - uid: 1116 components: - type: Transform rot: 1.5707963267948966 rad @@ -11074,7 +11269,7 @@ entities: - 25 - 22 - 21 - - uid: 1115 + - uid: 1117 components: - type: Transform rot: 1.5707963267948966 rad @@ -11086,7 +11281,7 @@ entities: - 25 - 22 - 21 - - uid: 1116 + - uid: 1118 components: - type: Transform rot: 1.5707963267948966 rad @@ -11098,7 +11293,7 @@ entities: - 25 - 22 - 21 - - uid: 1117 + - uid: 1119 components: - type: Transform rot: -1.5707963267948966 rad @@ -11110,7 +11305,7 @@ entities: - 25 - 22 - 21 - - uid: 1118 + - uid: 1120 components: - type: Transform pos: 5.5,-19.5 @@ -11123,128 +11318,128 @@ entities: - 21 - proto: Girder entities: - - uid: 1119 + - uid: 1121 components: - type: Transform pos: 2.5,-9.5 parent: 1 - - uid: 1120 + - uid: 1122 components: - type: Transform pos: 2.5,-12.5 parent: 1 - proto: GravityGeneratorMini entities: - - uid: 1121 + - uid: 1123 components: - type: Transform pos: -1.5,-26.5 parent: 1 - proto: Grille entities: - - uid: 1122 + - uid: 1124 components: - type: Transform pos: -2.5,-9.5 parent: 1 - - uid: 1123 + - uid: 1125 components: - type: Transform pos: -2.5,-8.5 parent: 1 - - uid: 1124 + - uid: 1126 components: - type: Transform pos: -2.5,-7.5 parent: 1 - - uid: 1125 + - uid: 1127 components: - type: Transform pos: -2.5,-15.5 parent: 1 - - uid: 1126 + - uid: 1128 components: - type: Transform pos: -2.5,-11.5 parent: 1 - - uid: 1127 + - uid: 1129 components: - type: Transform pos: 5.5,-4.5 parent: 1 - - uid: 1128 + - uid: 1130 components: - type: Transform pos: 4.5,-4.5 parent: 1 - - uid: 1129 + - uid: 1131 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 1130 + - uid: 1132 components: - type: Transform pos: 3.5,-4.5 parent: 1 - - uid: 1131 + - uid: 1133 components: - type: Transform pos: -12.5,-22.5 parent: 1 - - uid: 1132 + - uid: 1134 components: - type: Transform pos: -12.5,-23.5 parent: 1 - - uid: 1133 + - uid: 1135 components: - type: Transform pos: -12.5,-24.5 parent: 1 - - uid: 1134 + - uid: 1136 components: - type: Transform pos: 2.5,-25.5 parent: 1 - - uid: 1135 + - uid: 1137 components: - type: Transform pos: 1.5,-25.5 parent: 1 - - uid: 1136 + - uid: 1138 components: - type: Transform pos: 1.5,-26.5 parent: 1 - - uid: 1137 + - uid: 1139 components: - type: Transform pos: 4.5,-17.5 parent: 1 - - uid: 1138 + - uid: 1140 components: - type: Transform pos: 5.5,-17.5 parent: 1 - - uid: 1139 + - uid: 1141 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 1140 + - uid: 1142 components: - type: Transform pos: 6.5,-17.5 parent: 1 - - uid: 1141 + - uid: 1143 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 1142 + - uid: 1144 components: - type: Transform rot: 1.5707963267948966 rad @@ -11252,79 +11447,263 @@ entities: parent: 1 - proto: Gyroscope entities: - - uid: 1143 + - uid: 1145 components: - type: Transform pos: -0.5,-27.5 parent: 1 - - uid: 1144 + - uid: 1146 components: - type: Transform pos: -1.5,-24.5 parent: 1 - - uid: 1145 + - uid: 1147 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 1146 + - uid: 1148 components: - type: Transform pos: -5.5,-30.5 parent: 1 - proto: HeadHuman entities: - - uid: 1798 + - uid: 1149 components: - type: Transform pos: -3.462973,10.391843 parent: 1 +- proto: IdnaTorpedo + entities: + - uid: 1812 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1813 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1814 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1815 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1816 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1817 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1818 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1819 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1820 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1821 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1822 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1823 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1824 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1825 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1826 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1827 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1828 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1829 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1830 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1831 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1832 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1833 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1834 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1835 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1836 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1837 + components: + - type: Transform + parent: 1811 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: JugBoriaticFuel entities: - - uid: 1147 + - uid: 1150 components: - type: Transform pos: -2.9984322,-28.354212 parent: 1 - - uid: 1148 + - uid: 1151 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5525718,-28.844797 parent: 1 - - uid: 1149 + - uid: 1152 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5674338,-28.94886 parent: 1 - - uid: 1150 + - uid: 1153 components: - type: Transform pos: -9.432028,-17.3254 parent: 1 - - uid: 1151 + - uid: 1154 components: - type: Transform pos: -9.607809,-17.247274 parent: 1 - proto: Jukebox entities: - - uid: 1152 + - uid: 1155 components: - type: Transform pos: -2.5,8.5 parent: 1 - proto: KitchenReagentGrinder entities: - - uid: 1153 + - uid: 1156 components: - type: Transform pos: -6.5,-9.5 parent: 1 - proto: LightStripInner entities: - - uid: 1154 + - uid: 1157 components: - type: Transform rot: 1.5707963267948966 rad @@ -11333,7 +11712,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1155 + - uid: 1158 components: - type: Transform pos: -6.5,-12.5 @@ -11341,7 +11720,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1156 + - uid: 1159 components: - type: Transform rot: -1.5707963267948966 rad @@ -11350,7 +11729,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1157 + - uid: 1160 components: - type: Transform rot: 3.141592653589793 rad @@ -11359,7 +11738,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1158 + - uid: 1161 components: - type: Transform rot: 1.5707963267948966 rad @@ -11370,7 +11749,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 1159 + - uid: 1162 components: - type: Transform pos: -5.5,-14.5 @@ -11378,7 +11757,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1160 + - uid: 1163 components: - type: Transform rot: -1.5707963267948966 rad @@ -11387,7 +11766,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1161 + - uid: 1164 components: - type: Transform rot: 3.141592653589793 rad @@ -11396,7 +11775,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1162 + - uid: 1165 components: - type: Transform rot: 1.5707963267948966 rad @@ -11405,54 +11784,92 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF +- proto: MagazineLightRifleBoxSlugHE + entities: + - uid: 1806 + components: + - type: Transform + pos: -1.793534,4.6197577 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1807 + components: + - type: Transform + pos: -1.4951398,4.6061945 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1808 + components: + - type: Transform + pos: -1.8206606,4.3078003 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + - uid: 1809 + components: + - type: Transform + pos: -1.5222666,4.3213634 + parent: 1 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] - proto: MaterialBiomass entities: - - uid: 1797 + - uid: 1166 components: - type: Transform pos: -5.541295,-3.6153278 parent: 1 - proto: MedicalBed entities: - - uid: 1163 + - uid: 1167 components: - type: Transform pos: -3.5,-7.5 parent: 1 - proto: MedicalScanner entities: - - uid: 1164 + - uid: 1168 components: - type: Transform pos: -6.5,-3.5 parent: 1 - type: DeviceLinkSink links: - - 912 + - 914 - proto: MedkitAdvancedFilled entities: - - uid: 1165 + - uid: 1169 components: - type: Transform pos: -3.2042627,-9.149912 parent: 1 - proto: MedkitBruteFilled entities: - - uid: 1166 + - uid: 1170 components: - type: Transform pos: -3.6261377,-9.165537 parent: 1 - proto: MedkitBurnFilled entities: - - uid: 1167 + - uid: 1171 components: - type: Transform pos: -3.6261377,-9.399912 parent: 1 - proto: MedkitCombatFilled entities: - - uid: 1168 + - uid: 1172 components: - type: Transform pos: -3.6678185,-8.195641 @@ -11460,137 +11877,172 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 1169 + - uid: 1173 components: - type: Transform pos: -3.2355127,-8.177672 parent: 1 - proto: MedkitOxygenFilled entities: - - uid: 1170 + - uid: 1174 components: - type: Transform pos: -3.6573877,-8.443297 parent: 1 - proto: MedkitRadiationFilled entities: - - uid: 1171 + - uid: 1175 components: - type: Transform pos: -3.1730127,-9.446787 parent: 1 - proto: MedkitToxinFilled entities: - - uid: 1172 + - uid: 1176 components: - type: Transform pos: -3.2042627,-8.412047 parent: 1 - proto: MiningDrill entities: - - uid: 1173 + - uid: 1177 components: - type: Transform pos: -5.622288,-17.293901 parent: 1 - - uid: 1174 + - uid: 1178 components: - type: Transform pos: -5.316179,-17.278828 parent: 1 - proto: N14BedWood entities: - - uid: 1175 + - uid: 1179 components: - type: Transform pos: -8.5,-25.5 parent: 1 - - uid: 1176 + - uid: 1180 components: - type: Transform pos: -8.5,-23.5 parent: 1 - - uid: 1177 + - uid: 1181 components: - type: Transform pos: -8.5,-24.5 parent: 1 - - uid: 1178 + - uid: 1182 components: - type: Transform pos: -11.5,-24.5 parent: 1 - - uid: 1179 + - uid: 1183 components: - type: Transform pos: -10.5,-25.5 parent: 1 - - uid: 1180 + - uid: 1184 components: - type: Transform pos: -11.5,-23.5 parent: 1 - - uid: 1181 + - uid: 1185 components: - type: Transform pos: -11.5,-22.5 parent: 1 - proto: N14BedWoodBunk entities: - - uid: 1182 + - uid: 1186 components: - type: Transform pos: -8.5,-23.5 parent: 1 - - uid: 1183 + - uid: 1187 components: - type: Transform pos: -8.5,-24.5 parent: 1 - - uid: 1184 + - uid: 1188 components: - type: Transform pos: -8.5,-25.5 parent: 1 - - uid: 1185 + - uid: 1189 components: - type: Transform pos: -11.5,-22.5 parent: 1 - - uid: 1186 + - uid: 1190 components: - type: Transform pos: -10.5,-25.5 parent: 1 - - uid: 1187 + - uid: 1191 components: - type: Transform pos: -11.5,-24.5 parent: 1 - - uid: 1188 + - uid: 1192 components: - type: Transform pos: -11.5,-23.5 parent: 1 - proto: N14ChairOfficeGreenBroken entities: - - uid: 1189 + - uid: 1193 components: - type: Transform rot: 3.141592653589793 rad pos: -2.4491975,11.5481 parent: 1 -- proto: N14JunkArcade +- proto: N14CrateAluminium entities: - - uid: 1190 + - uid: 1811 components: - type: Transform - rot: 3.141592653589793 rad pos: 0.5,5.5 parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1812 + - 1813 + - 1814 + - 1815 + - 1816 + - 1817 + - 1818 + - 1819 + - 1820 + - 1821 + - 1822 + - 1823 + - 1824 + - 1825 + - 1826 + - 1827 + - 1828 + - 1829 + - 1830 + - 1831 + - 1832 + - 1833 + - 1834 + - 1835 + - 1836 + - 1837 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: N14JunkMirror entities: - - uid: 1191 + - uid: 1194 components: - type: Transform rot: 3.141592653589793 rad @@ -11598,7 +12050,7 @@ entities: parent: 1 - proto: N14JunkUrinal entities: - - uid: 1192 + - uid: 1195 components: - type: Transform pos: -3.5,0.5 @@ -11607,19 +12059,19 @@ entities: fixtures: {} - proto: N14TableCounterBar entities: - - uid: 1193 + - uid: 1196 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,8.5 parent: 1 - - uid: 1194 + - uid: 1197 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,8.5 parent: 1 - - uid: 1195 + - uid: 1198 components: - type: Transform rot: 1.5707963267948966 rad @@ -11627,18 +12079,18 @@ entities: parent: 1 - proto: N14TableMetalGrate entities: - - uid: 1196 + - uid: 1199 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-1.5 parent: 1 - - uid: 1197 + - uid: 1200 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 1198 + - uid: 1201 components: - type: Transform rot: 3.141592653589793 rad @@ -11646,13 +12098,13 @@ entities: parent: 1 - proto: N14ToiletDirty entities: - - uid: 1199 + - uid: 1202 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 1 - - uid: 1200 + - uid: 1203 components: - type: Transform rot: 1.5707963267948966 rad @@ -11660,35 +12112,33 @@ entities: parent: 1 - proto: OreBag entities: - - uid: 1201 + - uid: 1204 components: - type: Transform pos: -5.700413,-17.450151 parent: 1 - - uid: 1202 + - uid: 1205 components: - type: Transform pos: -5.363054,-17.435078 parent: 1 - proto: OreBox entities: - - uid: 1203 + - uid: 1206 components: - type: Transform pos: -8.304914,-19.716951 parent: 1 - - type: Physics - sleepTime: 0.116666555 - proto: OreProcessor entities: - - uid: 1204 + - uid: 1207 components: - type: Transform pos: -6.5,-17.5 parent: 1 - proto: Paper entities: - - uid: 1205 + - uid: 1208 components: - type: Transform pos: 7.535639,-23.352873 @@ -11711,14 +12161,14 @@ entities: For the Kaiser! - - uid: 1799 + - uid: 1209 components: - type: Transform pos: -3.462973,10.194015 parent: 1 - type: Paper content: He who paid for this with his life - - uid: 1800 + - uid: 1210 components: - type: Transform pos: 8.1924,-1.2578125 @@ -11732,9 +12182,20 @@ entities: -Engineering + - uid: 1810 + components: + - type: Transform + pos: -1.181829,4.4976873 + parent: 1 + - type: Paper + content: > + Explosive Slugthrower ammo. + + + Use it wisely. These are the last. - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 1206 + - uid: 1211 components: - type: Transform rot: -1.5707963267948966 rad @@ -11742,12 +12203,12 @@ entities: parent: 1 - proto: PlasmaWindowDirectional entities: - - uid: 1207 + - uid: 1212 components: - type: Transform pos: -6.5,-0.5 parent: 1 - - uid: 1208 + - uid: 1213 components: - type: Transform rot: 3.141592653589793 rad @@ -11755,19 +12216,19 @@ entities: parent: 1 - proto: PlastitaniumWindow entities: - - uid: 1209 + - uid: 1214 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 1210 + - uid: 1215 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 1211 + - uid: 1216 components: - type: Transform rot: 3.141592653589793 rad @@ -11775,24 +12236,24 @@ entities: parent: 1 - proto: PlushiePearCat entities: - - uid: 1212 + - uid: 1217 components: - type: Transform pos: -2.4731965,11.600811 parent: 1 - - uid: 1213 + - uid: 1218 components: - type: Transform pos: 11.401751,-23.386135 parent: 1 - - uid: 1214 + - uid: 1219 components: - type: Transform pos: -11.523069,-23.564976 parent: 1 - proto: PlushieSharkBlue entities: - - uid: 1215 + - uid: 1220 components: - type: Transform pos: -3.3709435,-7.382575 @@ -11802,7 +12263,7 @@ entities: linearDamping: 0 - proto: PosterLegitBarDrinks entities: - - uid: 1216 + - uid: 1221 components: - type: Transform rot: 1.5707963267948966 rad @@ -11810,245 +12271,245 @@ entities: parent: 1 - proto: PosterLegitSafetyEyeProtection entities: - - uid: 1217 + - uid: 1222 components: - type: Transform pos: -2.5,-12.5 parent: 1 - proto: Poweredlight entities: - - uid: 1218 + - uid: 1223 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-8.5 parent: 1 - - uid: 1219 + - uid: 1224 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 1 - - uid: 1220 + - uid: 1225 components: - type: Transform pos: 1.5,-22.5 parent: 1 - - uid: 1221 + - uid: 1226 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-29.5 parent: 1 - - uid: 1222 + - uid: 1227 components: - type: Transform pos: -6.5,-21.5 parent: 1 - - uid: 1223 + - uid: 1228 components: - type: Transform pos: -4.5,-24.5 parent: 1 - - uid: 1224 + - uid: 1229 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-25.5 parent: 1 - - uid: 1225 + - uid: 1230 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-26.5 parent: 1 - - uid: 1226 + - uid: 1231 components: - type: Transform pos: -11.5,-22.5 parent: 1 - - uid: 1227 + - uid: 1232 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-20.5 parent: 1 - - uid: 1228 + - uid: 1233 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-15.5 parent: 1 - - uid: 1229 + - uid: 1234 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,2.5 parent: 1 - - uid: 1230 + - uid: 1235 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-11.5 parent: 1 - - uid: 1231 + - uid: 1236 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-19.5 parent: 1 - - uid: 1232 + - uid: 1237 components: - type: Transform pos: -10.5,-17.5 parent: 1 - - uid: 1233 + - uid: 1238 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-21.5 parent: 1 - - uid: 1234 + - uid: 1239 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 1 - - uid: 1235 + - uid: 1240 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-25.5 parent: 1 - - uid: 1236 + - uid: 1241 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 1237 + - uid: 1242 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-0.5 parent: 1 - - uid: 1238 + - uid: 1243 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-16.5 parent: 1 - - uid: 1239 + - uid: 1244 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-9.5 parent: 1 - - uid: 1240 + - uid: 1245 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 1241 + - uid: 1246 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,0.5 parent: 1 - - uid: 1242 + - uid: 1247 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,7.5 parent: 1 - - uid: 1243 + - uid: 1248 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 1244 + - uid: 1249 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,4.5 parent: 1 - - uid: 1245 + - uid: 1250 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-10.5 parent: 1 - - uid: 1246 + - uid: 1251 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-2.5 parent: 1 - - uid: 1247 + - uid: 1252 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 1 - - uid: 1248 + - uid: 1253 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 1249 + - uid: 1254 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-3.5 parent: 1 - - uid: 1250 + - uid: 1255 components: - type: Transform pos: -5.5,-17.5 parent: 1 - - uid: 1805 + - uid: 1256 components: - type: Transform pos: -3.5,-21.5 parent: 1 - proto: PoweredlightRed entities: - - uid: 1251 + - uid: 1257 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,5.5 parent: 1 - - uid: 1252 + - uid: 1258 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,10.5 parent: 1 - - uid: 1253 + - uid: 1259 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,10.5 parent: 1 - - uid: 1254 + - uid: 1260 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-18.5 parent: 1 - - uid: 1255 + - uid: 1261 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,7.5 parent: 1 - - uid: 1256 + - uid: 1262 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-6.5 parent: 1 - - uid: 1257 + - uid: 1263 components: - type: Transform rot: 1.5707963267948966 rad @@ -12056,43 +12517,43 @@ entities: parent: 1 - proto: PoweredSmallLight entities: - - uid: 1258 + - uid: 1264 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-30.5 parent: 1 - - uid: 1259 + - uid: 1265 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-28.5 parent: 1 - - uid: 1260 + - uid: 1266 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 1261 + - uid: 1267 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,6.5 parent: 1 - - uid: 1262 + - uid: 1268 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-23.5 parent: 1 - - uid: 1263 + - uid: 1269 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-29.5 parent: 1 - - uid: 1264 + - uid: 1270 components: - type: Transform rot: -1.5707963267948966 rad @@ -12100,7 +12561,7 @@ entities: parent: 1 - proto: PoweredSmallLightMaintenanceRed entities: - - uid: 1265 + - uid: 1271 components: - type: Transform rot: 1.5707963267948966 rad @@ -12108,225 +12569,230 @@ entities: parent: 1 - proto: Rack entities: - - uid: 1266 + - uid: 1272 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-17.5 parent: 1 - - uid: 1267 + - uid: 1273 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-28.5 parent: 1 - - uid: 1268 + - uid: 1274 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-28.5 parent: 1 - - uid: 1269 + - uid: 1275 components: - type: Transform pos: -3.5,-9.5 parent: 1 - - uid: 1270 + - uid: 1276 components: - type: Transform pos: -3.5,-8.5 parent: 1 - - uid: 1271 + - uid: 1277 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,9.5 parent: 1 - - uid: 1272 + - uid: 1278 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,6.5 parent: 1 - - uid: 1273 + - uid: 1279 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 1274 + - uid: 1280 components: - type: Transform pos: 11.5,-23.5 parent: 1 + - uid: 1805 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 - proto: Railing entities: - - uid: 1275 + - uid: 1281 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,7.5 parent: 1 - - uid: 1276 + - uid: 1282 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-6.5 parent: 1 - - uid: 1277 + - uid: 1283 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-7.5 parent: 1 - - uid: 1278 + - uid: 1284 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-26.5 parent: 1 - - uid: 1279 + - uid: 1285 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-24.5 parent: 1 - - uid: 1280 + - uid: 1286 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-17.5 parent: 1 - - uid: 1281 + - uid: 1287 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-26.5 parent: 1 - - uid: 1282 + - uid: 1288 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-24.5 parent: 1 - - uid: 1283 + - uid: 1289 components: - type: Transform pos: -6.5,-4.5 parent: 1 - - uid: 1284 + - uid: 1290 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-5.5 parent: 1 - - uid: 1285 + - uid: 1291 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-5.5 parent: 1 - - uid: 1286 + - uid: 1292 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,1.5 parent: 1 - - uid: 1287 + - uid: 1293 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 1288 + - uid: 1294 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 1289 + - uid: 1295 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-8.5 parent: 1 - - uid: 1290 + - uid: 1296 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-19.5 parent: 1 - - uid: 1291 + - uid: 1297 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-18.5 parent: 1 - - uid: 1292 + - uid: 1298 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-8.5 parent: 1 - - uid: 1293 + - uid: 1299 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-4.5 parent: 1 - - uid: 1294 + - uid: 1300 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-5.5 parent: 1 - - uid: 1295 + - uid: 1301 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-6.5 parent: 1 - - uid: 1296 + - uid: 1302 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,4.5 parent: 1 - - uid: 1297 + - uid: 1303 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,3.5 parent: 1 - - uid: 1298 + - uid: 1304 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-3.5 parent: 1 - - uid: 1299 + - uid: 1305 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-13.5 parent: 1 - - uid: 1300 + - uid: 1306 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-15.5 parent: 1 - - uid: 1301 + - uid: 1307 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-14.5 parent: 1 - - uid: 1801 + - uid: 1308 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,17.5 parent: 1 - - uid: 1802 + - uid: 1309 components: - type: Transform rot: 3.141592653589793 rad @@ -12334,147 +12800,147 @@ entities: parent: 1 - proto: RailingCorner entities: - - uid: 1302 + - uid: 1310 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,16.5 parent: 1 - - uid: 1303 + - uid: 1311 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-17.5 parent: 1 - - uid: 1304 + - uid: 1312 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-19.5 parent: 1 - - uid: 1305 + - uid: 1313 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,9.5 parent: 1 - - uid: 1306 + - uid: 1314 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,11.5 parent: 1 - - uid: 1307 + - uid: 1315 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,16.5 parent: 1 - - uid: 1308 + - uid: 1316 components: - type: Transform pos: 2.5,-5.5 parent: 1 - - uid: 1309 + - uid: 1317 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-16.5 parent: 1 - - uid: 1310 + - uid: 1318 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 1311 + - uid: 1319 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,0.5 parent: 1 - - uid: 1312 + - uid: 1320 components: - type: Transform pos: 13.5,-20.5 parent: 1 - - uid: 1313 + - uid: 1321 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-15.5 parent: 1 - - uid: 1314 + - uid: 1322 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-7.5 parent: 1 - - uid: 1315 + - uid: 1323 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,0.5 parent: 1 - - uid: 1316 + - uid: 1324 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-3.5 parent: 1 - - uid: 1317 + - uid: 1325 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,5.5 parent: 1 - - uid: 1318 + - uid: 1326 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-2.5 parent: 1 - - uid: 1319 + - uid: 1327 components: - type: Transform pos: 10.5,-4.5 parent: 1 - proto: RailingCornerSmall entities: - - uid: 1320 + - uid: 1328 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-12.5 parent: 1 - - uid: 1321 + - uid: 1329 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 1 - - uid: 1322 + - uid: 1330 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-16.5 parent: 1 - - uid: 1323 + - uid: 1331 components: - type: Transform pos: -0.5,-27.5 parent: 1 - - uid: 1324 + - uid: 1332 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-19.5 parent: 1 - - uid: 1325 + - uid: 1333 components: - type: Transform pos: -9.5,-7.5 parent: 1 - - uid: 1326 + - uid: 1334 components: - type: Transform rot: -1.5707963267948966 rad @@ -12482,163 +12948,163 @@ entities: parent: 1 - proto: RCD entities: - - uid: 1327 + - uid: 1335 components: - type: Transform pos: 2.4895868,-28.36768 parent: 1 - proto: RCDAmmo entities: - - uid: 1328 + - uid: 1336 components: - type: Transform pos: 2.2552118,-28.539555 parent: 1 - - uid: 1329 + - uid: 1337 components: - type: Transform pos: 2.4114618,-28.539555 parent: 1 - proto: ReinforcedPlasmaWindow entities: - - uid: 1330 + - uid: 1338 components: - type: Transform pos: -12.5,-22.5 parent: 1 - - uid: 1331 + - uid: 1339 components: - type: Transform pos: -12.5,-23.5 parent: 1 - - uid: 1332 + - uid: 1340 components: - type: Transform pos: -12.5,-24.5 parent: 1 - - uid: 1333 + - uid: 1341 components: - type: Transform pos: 4.5,-17.5 parent: 1 - - uid: 1334 + - uid: 1342 components: - type: Transform pos: 5.5,-17.5 parent: 1 - - uid: 1335 + - uid: 1343 components: - type: Transform pos: 6.5,-17.5 parent: 1 - - uid: 1336 + - uid: 1344 components: - type: Transform pos: 5.5,-4.5 parent: 1 - - uid: 1337 + - uid: 1345 components: - type: Transform pos: 3.5,-4.5 parent: 1 - - uid: 1338 + - uid: 1346 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 1339 + - uid: 1347 components: - type: Transform pos: 4.5,-4.5 parent: 1 - proto: ReinforcedWindow entities: - - uid: 1340 + - uid: 1348 components: - type: Transform pos: -2.5,-8.5 parent: 1 - - uid: 1341 + - uid: 1349 components: - type: Transform pos: -2.5,-7.5 parent: 1 - - uid: 1342 + - uid: 1350 components: - type: Transform pos: -2.5,-9.5 parent: 1 - - uid: 1343 + - uid: 1351 components: - type: Transform pos: 2.5,-25.5 parent: 1 - - uid: 1344 + - uid: 1352 components: - type: Transform pos: 1.5,-25.5 parent: 1 - - uid: 1345 + - uid: 1353 components: - type: Transform pos: 1.5,-26.5 parent: 1 - - uid: 1346 + - uid: 1354 components: - type: Transform pos: -2.5,-11.5 parent: 1 - - uid: 1347 + - uid: 1355 components: - type: Transform pos: -2.5,-15.5 parent: 1 - proto: RomaineBible entities: - - uid: 1348 + - uid: 1356 components: - type: Transform pos: 0.68456995,8.628288 parent: 1 - - uid: 1349 + - uid: 1357 components: - type: Transform pos: 4.667796,-18.42695 parent: 1 - proto: ScrapFaxMachine entities: - - uid: 1350 + - uid: 1358 components: - type: Transform pos: 5.4670944,-25.431835 parent: 1 - proto: ShardGlass entities: - - uid: 1351 + - uid: 1359 components: - type: Transform pos: -5.0402684,2.5269613 parent: 1 - proto: SheetPlasma1 entities: - - uid: 1352 + - uid: 1360 components: - type: Transform pos: -6.2016025,-9.712741 parent: 1 - - uid: 1353 + - uid: 1361 components: - type: Transform pos: -6.4895864,-9.781297 parent: 1 - - uid: 1354 + - uid: 1362 components: - type: Transform pos: -6.722717,-9.753875 parent: 1 - proto: Shower entities: - - uid: 1355 + - uid: 1363 components: - type: Transform rot: 1.5707963267948966 rad @@ -12648,7 +13114,7 @@ entities: fixtures: {} - proto: ShuttersNormalOpen entities: - - uid: 1356 + - uid: 1364 components: - type: Transform rot: 3.141592653589793 rad @@ -12656,8 +13122,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1359 - - uid: 1357 + - 1367 + - uid: 1365 components: - type: Transform rot: 3.141592653589793 rad @@ -12665,8 +13131,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1359 - - uid: 1358 + - 1367 + - uid: 1366 components: - type: Transform rot: 3.141592653589793 rad @@ -12674,10 +13140,10 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1359 + - 1367 - proto: SignalButton entities: - - uid: 1359 + - uid: 1367 components: - type: Transform rot: -1.5707963267948966 rad @@ -12685,16 +13151,16 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1356: + 1364: - - Pressed - Toggle - 1358: + 1366: - - Pressed - Toggle - 1357: + 1365: - - Pressed - Toggle - - uid: 1360 + - uid: 1368 components: - type: Transform pos: 4.5,8.5 @@ -12707,7 +13173,7 @@ entities: 136: - - Pressed - Toggle - - uid: 1361 + - uid: 1369 components: - type: Transform rot: -1.5707963267948966 rad @@ -12718,7 +13184,7 @@ entities: 137: - - Pressed - Toggle - - uid: 1362 + - uid: 1370 components: - type: Transform rot: -1.5707963267948966 rad @@ -12731,7 +13197,7 @@ entities: - Toggle - proto: SignalButtonDirectional entities: - - uid: 1363 + - uid: 1371 components: - type: Transform rot: 1.5707963267948966 rad @@ -12742,7 +13208,7 @@ entities: 135: - - Pressed - Toggle - - uid: 1364 + - uid: 1372 components: - type: Transform rot: 1.5707963267948966 rad @@ -12753,7 +13219,7 @@ entities: 129: - - Pressed - Toggle - - uid: 1365 + - uid: 1373 components: - type: Transform pos: -7.5,-4.5 @@ -12763,7 +13229,7 @@ entities: 133: - - Pressed - Toggle - - uid: 1366 + - uid: 1374 components: - type: Transform pos: 10.5,-20.5 @@ -12775,79 +13241,79 @@ entities: - Toggle - proto: SignArmory entities: - - uid: 1367 + - uid: 1375 components: - type: Transform pos: 0.5,1.5 parent: 1 - proto: SignBridge entities: - - uid: 1368 + - uid: 1376 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-20.5 parent: 1 - - uid: 1369 + - uid: 1377 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-22.5 parent: 1 - - uid: 1370 + - uid: 1378 components: - type: Transform pos: 3.5,-23.5 parent: 1 - proto: SignConference entities: - - uid: 1371 + - uid: 1379 components: - type: Transform pos: 0.5,-5.5 parent: 1 - proto: SignDirectionalDorms entities: - - uid: 1372 + - uid: 1380 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-22.5 parent: 1 - - uid: 1373 + - uid: 1381 components: - type: Transform pos: -8.5,-20.5 parent: 1 - proto: SignEngineering entities: - - uid: 1374 + - uid: 1382 components: - type: Transform pos: -1.5,-23.5 parent: 1 - proto: SignEVA entities: - - uid: 1375 + - uid: 1383 components: - type: Transform pos: 0.5,-12.5 parent: 1 - - uid: 1376 + - uid: 1384 components: - type: Transform pos: 0.5,-9.5 parent: 1 - proto: Sink entities: - - uid: 1377 + - uid: 1385 components: - type: Transform pos: -4.5,0.5 parent: 1 - proto: SinkWide entities: - - uid: 1378 + - uid: 1386 components: - type: Transform rot: 3.141592653589793 rad @@ -12855,21 +13321,21 @@ entities: parent: 1 - proto: SMESBasic entities: - - uid: 1379 + - uid: 1387 components: - type: Transform pos: -6.5,-28.5 parent: 1 - proto: SoapSyndie entities: - - uid: 1380 + - uid: 1388 components: - type: Transform pos: -6.4883375,-0.45261037 parent: 1 - proto: SodaDispenser entities: - - uid: 1381 + - uid: 1389 components: - type: Transform rot: 1.5707963267948966 rad @@ -12877,31 +13343,31 @@ entities: parent: 1 - proto: SpaceCash entities: - - uid: 1382 + - uid: 1390 components: - type: Transform pos: -2.3738375,9.803488 parent: 1 - - uid: 1383 + - uid: 1391 components: - type: Transform pos: -2.724327,9.426944 parent: 1 - proto: StairDark entities: - - uid: 1384 + - uid: 1392 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 1385 + - uid: 1393 components: - type: Transform pos: -4.5,-5.5 parent: 1 - proto: StairStage entities: - - uid: 1386 + - uid: 1394 components: - type: Transform rot: 1.5707963267948966 rad @@ -12909,13 +13375,13 @@ entities: parent: 1 - proto: StairStageDark entities: - - uid: 1387 + - uid: 1395 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-25.5 parent: 1 - - uid: 1388 + - uid: 1396 components: - type: Transform rot: 1.5707963267948966 rad @@ -12923,20 +13389,20 @@ entities: parent: 1 - proto: StoolBar entities: - - uid: 1389 + - uid: 1397 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,7.5 parent: 1 - - uid: 1390 + - uid: 1398 components: - type: Transform pos: -2.5,10.5 parent: 1 - proto: SubstationBasic entities: - - uid: 1391 + - uid: 1399 components: - type: Transform pos: -6.5,-29.5 @@ -13013,14 +13479,14 @@ entities: - 63 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 1392 + - uid: 1400 components: - type: Transform pos: -4.5,-30.5 parent: 1 - proto: Table entities: - - uid: 1393 + - uid: 1401 components: - type: Transform rot: 3.141592653589793 rad @@ -13028,154 +13494,154 @@ entities: parent: 1 - proto: TableCarpet entities: - - uid: 1394 + - uid: 1402 components: - type: Transform pos: -2.5,9.5 parent: 1 - proto: TableFancyPurple entities: - - uid: 1395 + - uid: 1403 components: - type: Transform pos: 3.5,-18.5 parent: 1 - - uid: 1396 + - uid: 1404 components: - type: Transform pos: 7.5,-18.5 parent: 1 - - uid: 1397 + - uid: 1405 components: - type: Transform pos: 8.5,-18.5 parent: 1 - - uid: 1398 + - uid: 1406 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-24.5 parent: 1 - - uid: 1399 + - uid: 1407 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 1 - - uid: 1400 + - uid: 1408 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-26.5 parent: 1 - - uid: 1401 + - uid: 1409 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-26.5 parent: 1 - - uid: 1402 + - uid: 1410 components: - type: Transform pos: 2.5,-18.5 parent: 1 - proto: TableGlass entities: - - uid: 1403 + - uid: 1411 components: - type: Transform pos: -6.5,-8.5 parent: 1 - - uid: 1404 + - uid: 1412 components: - type: Transform pos: -6.5,-9.5 parent: 1 - - uid: 1405 + - uid: 1413 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 1406 + - uid: 1414 components: - type: Transform pos: -4.5,-9.5 parent: 1 - proto: TableReinforced entities: - - uid: 1407 + - uid: 1415 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-22.5 parent: 1 - - uid: 1408 + - uid: 1416 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-23.5 parent: 1 - - uid: 1409 + - uid: 1417 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 - - uid: 1410 + - uid: 1418 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-28.5 parent: 1 - - uid: 1411 + - uid: 1419 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-29.5 parent: 1 - - uid: 1412 + - uid: 1420 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-28.5 parent: 1 - - uid: 1413 + - uid: 1421 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-26.5 parent: 1 - - uid: 1414 + - uid: 1422 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-25.5 parent: 1 - - uid: 1415 + - uid: 1423 components: - type: Transform pos: 5.5,-25.5 parent: 1 - proto: TableWood entities: - - uid: 1416 + - uid: 1424 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 1417 + - uid: 1425 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,3.5 parent: 1 - - uid: 1418 + - uid: 1426 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,2.5 parent: 1 - - uid: 1419 + - uid: 1427 components: - type: Transform rot: -1.5707963267948966 rad @@ -13183,108 +13649,108 @@ entities: parent: 1 - proto: TelecomServer entities: - - uid: 1420 + - uid: 1428 components: - type: Transform pos: -1.5,-25.5 parent: 1 - proto: ThrusterDSMWarship entities: - - uid: 1421 + - uid: 1429 components: - type: Transform pos: 0.5,10.5 parent: 1 - - uid: 1422 + - uid: 1430 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-32.5 parent: 1 - - uid: 1423 + - uid: 1431 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-32.5 parent: 1 - - uid: 1424 + - uid: 1432 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-32.5 parent: 1 - - uid: 1425 + - uid: 1433 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-32.5 parent: 1 - - uid: 1426 + - uid: 1434 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-32.5 parent: 1 - - uid: 1427 + - uid: 1435 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-32.5 parent: 1 - - uid: 1428 + - uid: 1436 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-32.5 parent: 1 - - uid: 1429 + - uid: 1437 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-32.5 parent: 1 - - uid: 1430 + - uid: 1438 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,2.5 parent: 1 - - uid: 1431 + - uid: 1439 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,3.5 parent: 1 - - uid: 1432 + - uid: 1440 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,4.5 parent: 1 - - uid: 1433 + - uid: 1441 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,5.5 parent: 1 - - uid: 1434 + - uid: 1442 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-18.5 parent: 1 - - uid: 1435 + - uid: 1443 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-32.5 parent: 1 - - uid: 1436 + - uid: 1444 components: - type: Transform pos: -0.5,10.5 parent: 1 - - uid: 1437 + - uid: 1445 components: - type: Transform rot: 1.5707963267948966 rad @@ -13292,47 +13758,47 @@ entities: parent: 1 - proto: ToolboxElectricalFilled entities: - - uid: 1438 + - uid: 1446 components: - type: Transform pos: -3.4456987,-28.261448 parent: 1 - proto: ToolboxEmergencyFilled entities: - - uid: 1439 + - uid: 1447 components: - type: Transform pos: -6.497783,-25.358675 parent: 1 - proto: ToolboxMechanicalFilled entities: - - uid: 1440 + - uid: 1448 components: - type: Transform pos: -3.4456987,-28.464573 parent: 1 - proto: TradeGoodWine entities: - - uid: 1441 + - uid: 1449 components: - type: Transform pos: -5.5,7.5 parent: 1 - proto: TrashBag entities: - - uid: 1442 + - uid: 1450 components: - type: Transform pos: 8.414298,-1.3230925 parent: 1 - - uid: 1443 + - uid: 1451 components: - type: Transform pos: 8.646911,-1.12778 parent: 1 - proto: UnionfallNemesisMothershipComputer entities: - - uid: 1444 + - uid: 1452 components: - type: Transform rot: 3.141592653589793 rad @@ -13340,49 +13806,49 @@ entities: parent: 1 - proto: UnionfallShipNodeDSM entities: - - uid: 1445 + - uid: 1453 components: - type: Transform pos: -5.5,-13.5 parent: 1 - proto: VendingMachineCoffee entities: - - uid: 1446 + - uid: 1454 components: - type: Transform pos: 0.5,-18.5 parent: 1 - proto: VendingMachineSalvage entities: - - uid: 1447 + - uid: 1455 components: - type: Transform pos: -4.5,-17.5 parent: 1 - proto: VendingMachineStarkist entities: - - uid: 1448 + - uid: 1456 components: - type: Transform pos: 0.5,-20.5 parent: 1 - proto: VendingMachineSustenance entities: - - uid: 1449 + - uid: 1457 components: - type: Transform pos: -1.5,0.5 parent: 1 - proto: VendingMachineTankDispenserEVA entities: - - uid: 1450 + - uid: 1458 components: - type: Transform pos: 3.5,4.5 parent: 1 - proto: VendingMachineYouTool entities: - - uid: 1451 + - uid: 1459 components: - type: Transform rot: -1.5707963267948966 rad @@ -13390,1266 +13856,1266 @@ entities: parent: 1 - proto: WallPlastitanium entities: - - uid: 1452 + - uid: 1460 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,6.5 parent: 1 - - uid: 1453 + - uid: 1461 components: - type: Transform pos: 3.5,-17.5 parent: 1 - - uid: 1454 + - uid: 1462 components: - type: Transform pos: 12.5,-21.5 parent: 1 - - uid: 1455 + - uid: 1463 components: - type: Transform pos: 12.5,-22.5 parent: 1 - - uid: 1456 + - uid: 1464 components: - type: Transform pos: 12.5,-23.5 parent: 1 - - uid: 1457 + - uid: 1465 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,12.5 parent: 1 - - uid: 1458 + - uid: 1466 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,12.5 parent: 1 - - uid: 1459 + - uid: 1467 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,0.5 parent: 1 - - uid: 1460 + - uid: 1468 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-1.5 parent: 1 - - uid: 1461 + - uid: 1469 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,11.5 parent: 1 - - uid: 1462 + - uid: 1470 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,2.5 parent: 1 - - uid: 1463 + - uid: 1471 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,2.5 parent: 1 - - uid: 1464 + - uid: 1472 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,3.5 parent: 1 - - uid: 1465 + - uid: 1473 components: - type: Transform pos: -10.5,-26.5 parent: 1 - - uid: 1466 + - uid: 1474 components: - type: Transform pos: -12.5,-25.5 parent: 1 - - uid: 1467 + - uid: 1475 components: - type: Transform pos: -11.5,-25.5 parent: 1 - - uid: 1468 + - uid: 1476 components: - type: Transform pos: -11.5,-26.5 parent: 1 - - uid: 1469 + - uid: 1477 components: - type: Transform pos: -10.5,-27.5 parent: 1 - - uid: 1470 + - uid: 1478 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 1471 + - uid: 1479 components: - type: Transform pos: 0.5,-17.5 parent: 1 - - uid: 1472 + - uid: 1480 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 1473 + - uid: 1481 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 1474 + - uid: 1482 components: - type: Transform pos: 0.5,-14.5 parent: 1 - - uid: 1475 + - uid: 1483 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 1476 + - uid: 1484 components: - type: Transform pos: 0.5,-12.5 parent: 1 - - uid: 1477 + - uid: 1485 components: - type: Transform pos: 0.5,-9.5 parent: 1 - - uid: 1478 + - uid: 1486 components: - type: Transform pos: 0.5,-8.5 parent: 1 - - uid: 1479 + - uid: 1487 components: - type: Transform pos: 0.5,-7.5 parent: 1 - - uid: 1480 + - uid: 1488 components: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 1481 + - uid: 1489 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 1482 + - uid: 1490 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 1483 + - uid: 1491 components: - type: Transform pos: -10.5,-16.5 parent: 1 - - uid: 1484 + - uid: 1492 components: - type: Transform pos: 11.5,-27.5 parent: 1 - - uid: 1485 + - uid: 1493 components: - type: Transform pos: -1.5,1.5 parent: 1 - - uid: 1486 + - uid: 1494 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 1487 + - uid: 1495 components: - type: Transform pos: -2.5,1.5 parent: 1 - - uid: 1488 + - uid: 1496 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 1489 + - uid: 1497 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 1490 + - uid: 1498 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 1491 + - uid: 1499 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 1492 + - uid: 1500 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 1 - - uid: 1493 + - uid: 1501 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,6.5 parent: 1 - - uid: 1494 + - uid: 1502 components: - type: Transform pos: -2.5,-10.5 parent: 1 - - uid: 1495 + - uid: 1503 components: - type: Transform pos: -10.5,-15.5 parent: 1 - - uid: 1496 + - uid: 1504 components: - type: Transform pos: -2.5,-12.5 parent: 1 - - uid: 1497 + - uid: 1505 components: - type: Transform pos: -2.5,-14.5 parent: 1 - - uid: 1498 + - uid: 1506 components: - type: Transform pos: -2.5,-16.5 parent: 1 - - uid: 1499 + - uid: 1507 components: - type: Transform pos: 1.5,-17.5 parent: 1 - - uid: 1500 + - uid: 1508 components: - type: Transform pos: 1.5,-18.5 parent: 1 - - uid: 1501 + - uid: 1509 components: - type: Transform pos: 1.5,-20.5 parent: 1 - - uid: 1502 + - uid: 1510 components: - type: Transform pos: 1.5,-21.5 parent: 1 - - uid: 1503 + - uid: 1511 components: - type: Transform pos: 0.5,-21.5 parent: 1 - - uid: 1504 + - uid: 1512 components: - type: Transform pos: -0.5,-21.5 parent: 1 - - uid: 1505 + - uid: 1513 components: - type: Transform pos: -0.5,-23.5 parent: 1 - - uid: 1506 + - uid: 1514 components: - type: Transform pos: -1.5,-23.5 parent: 1 - - uid: 1507 + - uid: 1515 components: - type: Transform pos: -2.5,-23.5 parent: 1 - - uid: 1508 + - uid: 1516 components: - type: Transform pos: -3.5,-23.5 parent: 1 - - uid: 1509 + - uid: 1517 components: - type: Transform pos: -4.5,-23.5 parent: 1 - - uid: 1510 + - uid: 1518 components: - type: Transform pos: -6.5,-23.5 parent: 1 - - uid: 1511 + - uid: 1519 components: - type: Transform pos: -3.5,-16.5 parent: 1 - - uid: 1512 + - uid: 1520 components: - type: Transform pos: -3.5,-17.5 parent: 1 - - uid: 1513 + - uid: 1521 components: - type: Transform pos: -3.5,-19.5 parent: 1 - - uid: 1514 + - uid: 1522 components: - type: Transform pos: -3.5,-20.5 parent: 1 - - uid: 1515 + - uid: 1523 components: - type: Transform pos: -4.5,-16.5 parent: 1 - - uid: 1516 + - uid: 1524 components: - type: Transform pos: -5.5,-16.5 parent: 1 - - uid: 1517 + - uid: 1525 components: - type: Transform pos: -6.5,-16.5 parent: 1 - - uid: 1518 + - uid: 1526 components: - type: Transform pos: -7.5,-16.5 parent: 1 - - uid: 1519 + - uid: 1527 components: - type: Transform pos: -8.5,-16.5 parent: 1 - - uid: 1520 + - uid: 1528 components: - type: Transform pos: -7.5,-19.5 parent: 1 - - uid: 1521 + - uid: 1529 components: - type: Transform pos: -7.5,-17.5 parent: 1 - - uid: 1522 + - uid: 1530 components: - type: Transform pos: -7.5,-20.5 parent: 1 - - uid: 1523 + - uid: 1531 components: - type: Transform pos: -6.5,-20.5 parent: 1 - - uid: 1524 + - uid: 1532 components: - type: Transform pos: -5.5,-20.5 parent: 1 - - uid: 1525 + - uid: 1533 components: - type: Transform pos: -4.5,-20.5 parent: 1 - - uid: 1526 + - uid: 1534 components: - type: Transform pos: -7.5,-22.5 parent: 1 - - uid: 1527 + - uid: 1535 components: - type: Transform pos: -7.5,-23.5 parent: 1 - - uid: 1528 + - uid: 1536 components: - type: Transform pos: -3.5,-10.5 parent: 1 - - uid: 1529 + - uid: 1537 components: - type: Transform pos: -4.5,-10.5 parent: 1 - - uid: 1530 + - uid: 1538 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 1531 + - uid: 1539 components: - type: Transform pos: -6.5,-10.5 parent: 1 - - uid: 1532 + - uid: 1540 components: - type: Transform pos: -7.5,-10.5 parent: 1 - - uid: 1533 + - uid: 1541 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 1534 + - uid: 1542 components: - type: Transform pos: -8.5,-14.5 parent: 1 - - uid: 1535 + - uid: 1543 components: - type: Transform pos: -8.5,-15.5 parent: 1 - - uid: 1536 + - uid: 1544 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 1537 + - uid: 1545 components: - type: Transform pos: -4.5,-2.5 parent: 1 - - uid: 1538 + - uid: 1546 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 1539 + - uid: 1547 components: - type: Transform pos: -6.5,-2.5 parent: 1 - - uid: 1540 + - uid: 1548 components: - type: Transform pos: -7.5,-4.5 parent: 1 - - uid: 1541 + - uid: 1549 components: - type: Transform pos: -7.5,-3.5 parent: 1 - - uid: 1542 + - uid: 1550 components: - type: Transform pos: -9.5,-16.5 parent: 1 - - uid: 1543 + - uid: 1551 components: - type: Transform pos: -7.5,-6.5 parent: 1 - - uid: 1544 + - uid: 1552 components: - type: Transform pos: -7.5,-8.5 parent: 1 - - uid: 1545 + - uid: 1553 components: - type: Transform pos: -7.5,-9.5 parent: 1 - - uid: 1546 + - uid: 1554 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 1547 + - uid: 1555 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 1548 + - uid: 1556 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 1549 + - uid: 1557 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 1550 + - uid: 1558 components: - type: Transform pos: -7.5,1.5 parent: 1 - - uid: 1551 + - uid: 1559 components: - type: Transform pos: -11.5,-12.5 parent: 1 - - uid: 1552 + - uid: 1560 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 1553 + - uid: 1561 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 1554 + - uid: 1562 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 1555 + - uid: 1563 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 1556 + - uid: 1564 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 1557 + - uid: 1565 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 1558 + - uid: 1566 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 1559 + - uid: 1567 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 1560 + - uid: 1568 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 1561 + - uid: 1569 components: - type: Transform pos: -1.5,6.5 parent: 1 - - uid: 1562 + - uid: 1570 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 1563 + - uid: 1571 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 1564 + - uid: 1572 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 1565 + - uid: 1573 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 1566 + - uid: 1574 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 1567 + - uid: 1575 components: - type: Transform pos: 11.5,-26.5 parent: 1 - - uid: 1568 + - uid: 1576 components: - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 1569 + - uid: 1577 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 1570 + - uid: 1578 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 1571 + - uid: 1579 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 1572 + - uid: 1580 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 1573 + - uid: 1581 components: - type: Transform pos: -11.5,-10.5 parent: 1 - - uid: 1574 + - uid: 1582 components: - type: Transform pos: -11.5,-13.5 parent: 1 - - uid: 1575 + - uid: 1583 components: - type: Transform pos: -9.5,-11.5 parent: 1 - - uid: 1576 + - uid: 1584 components: - type: Transform pos: 12.5,-25.5 parent: 1 - - uid: 1577 + - uid: 1585 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 1578 + - uid: 1586 components: - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 1579 + - uid: 1587 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-23.5 parent: 1 - - uid: 1580 + - uid: 1588 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 1581 + - uid: 1589 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 1582 + - uid: 1590 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 1583 + - uid: 1591 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 1584 + - uid: 1592 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 1585 + - uid: 1593 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 1586 + - uid: 1594 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 1587 + - uid: 1595 components: - type: Transform pos: -11.5,-11.5 parent: 1 - - uid: 1588 + - uid: 1596 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 1589 + - uid: 1597 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 1590 + - uid: 1598 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 1591 + - uid: 1599 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 1592 + - uid: 1600 components: - type: Transform pos: 7.5,5.5 parent: 1 - - uid: 1593 + - uid: 1601 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 1594 + - uid: 1602 components: - type: Transform pos: 7.5,12.5 parent: 1 - - uid: 1595 + - uid: 1603 components: - type: Transform pos: -9.5,-10.5 parent: 1 - - uid: 1596 + - uid: 1604 components: - type: Transform pos: 5.5,8.5 parent: 1 - - uid: 1597 + - uid: 1605 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 1598 + - uid: 1606 components: - type: Transform pos: 2.5,-17.5 parent: 1 - - uid: 1599 + - uid: 1607 components: - type: Transform pos: 4.5,-26.5 parent: 1 - - uid: 1600 + - uid: 1608 components: - type: Transform pos: 10.5,-23.5 parent: 1 - - uid: 1601 + - uid: 1609 components: - type: Transform pos: 10.5,-20.5 parent: 1 - - uid: 1602 + - uid: 1610 components: - type: Transform pos: 9.5,-22.5 parent: 1 - - uid: 1603 + - uid: 1611 components: - type: Transform pos: 9.5,-18.5 parent: 1 - - uid: 1604 + - uid: 1612 components: - type: Transform pos: 9.5,-19.5 parent: 1 - - uid: 1605 + - uid: 1613 components: - type: Transform pos: 9.5,-20.5 parent: 1 - - uid: 1606 + - uid: 1614 components: - type: Transform pos: 5.5,-26.5 parent: 1 - - uid: 1607 + - uid: 1615 components: - type: Transform pos: 10.5,-24.5 parent: 1 - - uid: 1608 + - uid: 1616 components: - type: Transform pos: 11.5,-24.5 parent: 1 - - uid: 1609 + - uid: 1617 components: - type: Transform pos: 10.5,-25.5 parent: 1 - - uid: 1610 + - uid: 1618 components: - type: Transform pos: 9.5,-26.5 parent: 1 - - uid: 1611 + - uid: 1619 components: - type: Transform pos: 2.5,-21.5 parent: 1 - - uid: 1612 + - uid: 1620 components: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 1613 + - uid: 1621 components: - type: Transform pos: 3.5,-22.5 parent: 1 - - uid: 1614 + - uid: 1622 components: - type: Transform pos: 6.5,-22.5 parent: 1 - - uid: 1615 + - uid: 1623 components: - type: Transform pos: 8.5,-22.5 parent: 1 - - uid: 1616 + - uid: 1624 components: - type: Transform pos: 3.5,-23.5 parent: 1 - - uid: 1617 + - uid: 1625 components: - type: Transform pos: 3.5,-25.5 parent: 1 - - uid: 1618 + - uid: 1626 components: - type: Transform pos: 3.5,-26.5 parent: 1 - - uid: 1619 + - uid: 1627 components: - type: Transform pos: 3.5,-27.5 parent: 1 - - uid: 1620 + - uid: 1628 components: - type: Transform pos: 4.5,-27.5 parent: 1 - - uid: 1621 + - uid: 1629 components: - type: Transform pos: 5.5,-27.5 parent: 1 - - uid: 1622 + - uid: 1630 components: - type: Transform pos: 6.5,-27.5 parent: 1 - - uid: 1623 + - uid: 1631 components: - type: Transform pos: 7.5,-27.5 parent: 1 - - uid: 1624 + - uid: 1632 components: - type: Transform pos: 8.5,-27.5 parent: 1 - - uid: 1625 + - uid: 1633 components: - type: Transform pos: -8.5,-20.5 parent: 1 - - uid: 1626 + - uid: 1634 components: - type: Transform pos: -10.5,-20.5 parent: 1 - - uid: 1627 + - uid: 1635 components: - type: Transform pos: -10.5,-21.5 parent: 1 - - uid: 1628 + - uid: 1636 components: - type: Transform pos: -11.5,-21.5 parent: 1 - - uid: 1629 + - uid: 1637 components: - type: Transform pos: -9.5,-26.5 parent: 1 - - uid: 1630 + - uid: 1638 components: - type: Transform pos: -8.5,-26.5 parent: 1 - - uid: 1631 + - uid: 1639 components: - type: Transform pos: -7.5,-29.5 parent: 1 - - uid: 1632 + - uid: 1640 components: - type: Transform pos: -7.5,-28.5 parent: 1 - - uid: 1633 + - uid: 1641 components: - type: Transform pos: -7.5,-24.5 parent: 1 - - uid: 1634 + - uid: 1642 components: - type: Transform pos: -7.5,-25.5 parent: 1 - - uid: 1635 + - uid: 1643 components: - type: Transform pos: -7.5,-26.5 parent: 1 - - uid: 1636 + - uid: 1644 components: - type: Transform pos: -7.5,-27.5 parent: 1 - - uid: 1637 + - uid: 1645 components: - type: Transform pos: -2.5,-24.5 parent: 1 - - uid: 1638 + - uid: 1646 components: - type: Transform pos: -2.5,-25.5 parent: 1 - - uid: 1639 + - uid: 1647 components: - type: Transform pos: -2.5,-26.5 parent: 1 - - uid: 1640 + - uid: 1648 components: - type: Transform pos: -2.5,-27.5 parent: 1 - - uid: 1641 + - uid: 1649 components: - type: Transform pos: -3.5,-27.5 parent: 1 - - uid: 1642 + - uid: 1650 components: - type: Transform pos: -4.5,-27.5 parent: 1 - - uid: 1643 + - uid: 1651 components: - type: Transform pos: -5.5,-27.5 parent: 1 - - uid: 1644 + - uid: 1652 components: - type: Transform pos: -6.5,-27.5 parent: 1 - - uid: 1645 + - uid: 1653 components: - type: Transform pos: 8.5,-28.5 parent: 1 - - uid: 1646 + - uid: 1654 components: - type: Transform pos: 8.5,-29.5 parent: 1 - - uid: 1647 + - uid: 1655 components: - type: Transform pos: -7.5,-30.5 parent: 1 - - uid: 1648 + - uid: 1656 components: - type: Transform pos: 8.5,-30.5 parent: 1 - - uid: 1649 + - uid: 1657 components: - type: Transform pos: 6.5,-31.5 parent: 1 - - uid: 1650 + - uid: 1658 components: - type: Transform pos: 2.5,-31.5 parent: 1 - - uid: 1651 + - uid: 1659 components: - type: Transform pos: -5.5,-31.5 parent: 1 - - uid: 1652 + - uid: 1660 components: - type: Transform pos: -1.5,-31.5 parent: 1 - - uid: 1653 + - uid: 1661 components: - type: Transform pos: 5.5,-31.5 parent: 1 - - uid: 1654 + - uid: 1662 components: - type: Transform pos: 4.5,-31.5 parent: 1 - - uid: 1655 + - uid: 1663 components: - type: Transform pos: 3.5,-31.5 parent: 1 - - uid: 1656 + - uid: 1664 components: - type: Transform pos: 1.5,-31.5 parent: 1 - - uid: 1657 + - uid: 1665 components: - type: Transform pos: 0.5,-31.5 parent: 1 - - uid: 1658 + - uid: 1666 components: - type: Transform pos: -0.5,-31.5 parent: 1 - - uid: 1659 + - uid: 1667 components: - type: Transform pos: -2.5,-31.5 parent: 1 - - uid: 1660 + - uid: 1668 components: - type: Transform pos: -3.5,-31.5 parent: 1 - - uid: 1661 + - uid: 1669 components: - type: Transform pos: -4.5,-31.5 parent: 1 - - uid: 1662 + - uid: 1670 components: - type: Transform pos: 2.5,-27.5 parent: 1 - - uid: 1663 + - uid: 1671 components: - type: Transform pos: 1.5,-28.5 parent: 1 - - uid: 1664 + - uid: 1672 components: - type: Transform pos: 1.5,-27.5 parent: 1 - - uid: 1665 + - uid: 1673 components: - type: Transform pos: 1.5,-29.5 parent: 1 - - uid: 1666 + - uid: 1674 components: - type: Transform pos: -1.5,-27.5 parent: 1 - - uid: 1667 + - uid: 1675 components: - type: Transform pos: -1.5,-28.5 parent: 1 - - uid: 1668 + - uid: 1676 components: - type: Transform pos: -1.5,-29.5 parent: 1 - - uid: 1669 + - uid: 1677 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 1670 + - uid: 1678 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,9.5 parent: 1 - - uid: 1671 + - uid: 1679 components: - type: Transform pos: -11.5,-19.5 parent: 1 - - uid: 1672 + - uid: 1680 components: - type: Transform pos: -10.5,-19.5 parent: 1 - - uid: 1673 + - uid: 1681 components: - type: Transform pos: -11.5,-15.5 parent: 1 - - uid: 1674 + - uid: 1682 components: - type: Transform pos: -11.5,-16.5 parent: 1 - - uid: 1675 + - uid: 1683 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,10.5 parent: 1 - - uid: 1676 + - uid: 1684 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,9.5 parent: 1 - - uid: 1677 + - uid: 1685 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-22.5 parent: 1 - - uid: 1678 + - uid: 1686 components: - type: Transform pos: -9.5,-12.5 parent: 1 - - uid: 1679 + - uid: 1687 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 1680 + - uid: 1688 components: - type: Transform pos: 10.5,-27.5 parent: 1 - - uid: 1681 + - uid: 1689 components: - type: Transform pos: 10.5,-28.5 parent: 1 - - uid: 1682 + - uid: 1690 components: - type: Transform pos: -10.5,-14.5 parent: 1 - - uid: 1683 + - uid: 1691 components: - type: Transform pos: -10.5,-13.5 parent: 1 - - uid: 1684 + - uid: 1692 components: - type: Transform pos: -10.5,-10.5 parent: 1 - - uid: 1685 + - uid: 1693 components: - type: Transform pos: -10.5,-11.5 parent: 1 - - uid: 1686 + - uid: 1694 components: - type: Transform pos: 6.5,-26.5 parent: 1 - - uid: 1687 + - uid: 1695 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 1688 + - uid: 1696 components: - type: Transform pos: 10.5,-26.5 parent: 1 - - uid: 1689 + - uid: 1697 components: - type: Transform pos: 12.5,-24.5 parent: 1 - - uid: 1690 + - uid: 1698 components: - type: Transform pos: 11.5,-25.5 parent: 1 - - uid: 1691 + - uid: 1699 components: - type: Transform pos: -10.5,-12.5 parent: 1 - - uid: 1692 + - uid: 1700 components: - type: Transform pos: -9.5,-14.5 parent: 1 - - uid: 1693 + - uid: 1701 components: - type: Transform pos: -9.5,-15.5 parent: 1 - - uid: 1694 + - uid: 1702 components: - type: Transform pos: -9.5,-13.5 parent: 1 - - uid: 1695 + - uid: 1703 components: - type: Transform pos: -9.5,-8.5 parent: 1 - - uid: 1696 + - uid: 1704 components: - type: Transform pos: -8.5,-2.5 parent: 1 - - uid: 1697 + - uid: 1705 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-2.5 parent: 1 - - uid: 1698 + - uid: 1706 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 1 - - uid: 1699 + - uid: 1707 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,1.5 parent: 1 - - uid: 1700 + - uid: 1708 components: - type: Transform rot: 1.5707963267948966 rad @@ -14657,49 +15123,49 @@ entities: parent: 1 - proto: WallPlastitaniumCMM entities: - - uid: 1701 + - uid: 1709 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-4.5 parent: 1 - - uid: 1702 + - uid: 1710 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-7.5 parent: 1 - - uid: 1703 + - uid: 1711 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-3.5 parent: 1 - - uid: 1704 + - uid: 1712 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-1.5 parent: 1 - - uid: 1705 + - uid: 1713 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-0.5 parent: 1 - - uid: 1706 + - uid: 1714 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-8.5 parent: 1 - - uid: 1707 + - uid: 1715 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-9.5 parent: 1 - - uid: 1708 + - uid: 1716 components: - type: Transform rot: -1.5707963267948966 rad @@ -14707,410 +15173,410 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 1709 + - uid: 1717 components: - type: Transform pos: -12.5,-21.5 parent: 1 - - uid: 1710 + - uid: 1718 components: - type: Transform pos: -12.5,-16.5 parent: 1 - - uid: 1711 + - uid: 1719 components: - type: Transform pos: -7.5,6.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestCurved entities: - - uid: 1712 + - uid: 1720 components: - type: Transform pos: 12.5,-20.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestHollow entities: - - uid: 1713 + - uid: 1721 components: - type: Transform pos: 10.5,-19.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastCurved entities: - - uid: 1714 + - uid: 1722 components: - type: Transform pos: -12.5,-19.5 parent: 1 - - uid: 1715 + - uid: 1723 components: - type: Transform pos: -7.5,-31.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastHollow entities: - - uid: 1716 + - uid: 1724 components: - type: Transform pos: -8.5,-29.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestCurved entities: - - uid: 1717 + - uid: 1725 components: - type: Transform pos: 10.5,-17.5 parent: 1 - - uid: 1718 + - uid: 1726 components: - type: Transform pos: 8.5,-31.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestHollow entities: - - uid: 1719 + - uid: 1727 components: - type: Transform pos: 9.5,-29.5 parent: 1 - proto: WallPlastitaniumDSM entities: - - uid: 1720 + - uid: 1728 components: - type: Transform pos: 5.5,15.5 parent: 1 - - uid: 1721 + - uid: 1729 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 1722 + - uid: 1730 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1723 + - uid: 1731 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 1724 + - uid: 1732 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-27.5 parent: 1 - - uid: 1725 + - uid: 1733 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-27.5 parent: 1 - - uid: 1726 + - uid: 1734 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-31.5 parent: 1 - - uid: 1727 + - uid: 1735 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-4.5 parent: 1 - - uid: 1728 + - uid: 1736 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 1729 + - uid: 1737 components: - type: Transform pos: 5.5,17.5 parent: 1 - - uid: 1730 + - uid: 1738 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 1731 + - uid: 1739 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-28.5 parent: 1 - - uid: 1732 + - uid: 1740 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-32.5 parent: 1 - - uid: 1733 + - uid: 1741 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-32.5 parent: 1 - - uid: 1734 + - uid: 1742 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-32.5 parent: 1 - - uid: 1735 + - uid: 1743 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,10.5 parent: 1 - - uid: 1736 + - uid: 1744 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 1737 + - uid: 1745 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,9.5 parent: 1 - - uid: 1738 + - uid: 1746 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-17.5 parent: 1 - - uid: 1739 + - uid: 1747 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,7.5 parent: 1 - - uid: 1740 + - uid: 1748 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,6.5 parent: 1 - - uid: 1741 + - uid: 1749 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 1742 + - uid: 1750 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 1743 + - uid: 1751 components: - type: Transform pos: 2.5,15.5 parent: 1 - - uid: 1744 + - uid: 1752 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 1 - - uid: 1745 + - uid: 1753 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-4.5 parent: 1 - - uid: 1746 + - uid: 1754 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-4.5 parent: 1 - - uid: 1747 + - uid: 1755 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-17.5 parent: 1 - - uid: 1748 + - uid: 1756 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-17.5 parent: 1 - - uid: 1749 + - uid: 1757 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-27.5 parent: 1 - - uid: 1750 + - uid: 1758 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 1 - - uid: 1751 + - uid: 1759 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,10.5 parent: 1 - - uid: 1752 + - uid: 1760 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-32.5 parent: 1 - - uid: 1753 + - uid: 1761 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,2.5 parent: 1 - - uid: 1754 + - uid: 1762 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,2.5 parent: 1 - - uid: 1755 + - uid: 1763 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 1 - - uid: 1756 + - uid: 1764 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-28.5 parent: 1 - - uid: 1757 + - uid: 1765 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-31.5 parent: 1 - - uid: 1758 + - uid: 1766 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-0.5 parent: 1 - - uid: 1759 + - uid: 1767 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 1 - - uid: 1760 + - uid: 1768 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-13.5 parent: 1 - - uid: 1761 + - uid: 1769 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-12.5 parent: 1 - - uid: 1762 + - uid: 1770 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-2.5 parent: 1 - - uid: 1763 + - uid: 1771 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,12.5 parent: 1 - - uid: 1764 + - uid: 1772 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 1 - - uid: 1765 + - uid: 1773 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - uid: 1766 + - uid: 1774 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,9.5 parent: 1 - - uid: 1767 + - uid: 1775 components: - type: Transform pos: 5.5,16.5 parent: 1 - - uid: 1768 + - uid: 1776 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 1769 + - uid: 1777 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 1770 + - uid: 1778 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 1771 + - uid: 1779 components: - type: Transform pos: 3.5,18.5 parent: 1 - - uid: 1772 + - uid: 1780 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 1773 + - uid: 1781 components: - type: Transform pos: 6.5,15.5 parent: 1 - - uid: 1774 + - uid: 1782 components: - type: Transform pos: 5.5,18.5 parent: 1 - - uid: 1775 + - uid: 1783 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 1776 + - uid: 1784 components: - type: Transform pos: 5.5,14.5 parent: 1 - - uid: 1777 + - uid: 1785 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 1778 + - uid: 1786 components: - type: Transform pos: 3.5,17.5 parent: 1 - proto: WarpPointShip entities: - - uid: 1779 + - uid: 1787 components: - type: MetaData name: DSM Nemesis @@ -15120,7 +15586,7 @@ entities: parent: 1 - proto: WeaponCapacitorRecharger entities: - - uid: 1780 + - uid: 1788 components: - type: Transform rot: -1.5707963267948966 rad @@ -15128,14 +15594,14 @@ entities: parent: 1 - proto: WeaponFlareGun entities: - - uid: 1781 + - uid: 1789 components: - type: Transform pos: -5.634655,-19.159256 parent: 1 - proto: WeaponTurretNeedler entities: - - uid: 1782 + - uid: 1790 components: - type: Transform rot: 1.5707963267948966 rad @@ -15166,12 +15632,10 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleIds: - - 922 - linkedConsoleId: 922 + linkedConsoleId: 924 - type: Battery startingCharge: 0 - - uid: 1783 + - uid: 1791 components: - type: Transform rot: -1.5707963267948966 rad @@ -15204,10 +15668,8 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleIds: - - 922 - linkedConsoleId: 922 - - uid: 1784 + linkedConsoleId: 924 + - uid: 1792 components: - type: Transform rot: -1.5707963267948966 rad @@ -15240,10 +15702,8 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleIds: - - 922 - linkedConsoleId: 922 - - uid: 1785 + linkedConsoleId: 924 + - uid: 1793 components: - type: Transform rot: 1.5707963267948966 rad @@ -15276,12 +15736,10 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleIds: - - 922 - linkedConsoleId: 922 + linkedConsoleId: 924 - proto: WeaponTurretPDT entities: - - uid: 1786 + - uid: 1794 components: - type: Transform rot: 3.141592653589793 rad @@ -15304,12 +15762,10 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleIds: - - 922 - linkedConsoleId: 922 + linkedConsoleId: 924 - type: Battery startingCharge: 0 - - uid: 1787 + - uid: 1795 components: - type: Transform pos: 13.5,-25.5 @@ -15331,12 +15787,10 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleIds: - - 922 - linkedConsoleId: 922 + linkedConsoleId: 924 - type: Battery startingCharge: 0 - - uid: 1788 + - uid: 1796 components: - type: Transform rot: -1.5707963267948966 rad @@ -15359,12 +15813,10 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleIds: - - 922 - linkedConsoleId: 922 + linkedConsoleId: 924 - type: Battery startingCharge: 0 - - uid: 1789 + - uid: 1797 components: - type: Transform pos: 7.5,-32.5 @@ -15386,12 +15838,10 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleIds: - - 922 - linkedConsoleId: 922 + linkedConsoleId: 924 - type: Battery startingCharge: 0 - - uid: 1790 + - uid: 1798 components: - type: Transform pos: -6.5,-32.5 @@ -15413,12 +15863,10 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleIds: - - 922 - linkedConsoleId: 922 + linkedConsoleId: 924 - type: Battery startingCharge: 0 - - uid: 1791 + - uid: 1799 components: - type: Transform rot: 3.141592653589793 rad @@ -15441,12 +15889,10 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleIds: - - 922 - linkedConsoleId: 922 + linkedConsoleId: 924 - type: Battery startingCharge: 0 - - uid: 1792 + - uid: 1800 components: - type: Transform rot: -1.5707963267948966 rad @@ -15469,14 +15915,12 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleIds: - - 922 - linkedConsoleId: 922 + linkedConsoleId: 924 - type: Battery startingCharge: 0 - proto: WeaponTurretVulcan entities: - - uid: 1793 + - uid: 1801 components: - type: Transform rot: 1.5707963267948966 rad @@ -15507,12 +15951,10 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleIds: - - 922 - linkedConsoleId: 922 + linkedConsoleId: 924 - type: Battery startingCharge: 0 - - uid: 1794 + - uid: 1802 components: - type: Transform rot: 1.5707963267948966 rad @@ -15543,20 +15985,18 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleIds: - - 922 - linkedConsoleId: 922 + linkedConsoleId: 924 - type: Battery startingCharge: 0 - proto: WindoorSecure entities: - - uid: 1795 + - uid: 1803 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 - - uid: 1796 + - uid: 1804 components: - type: Transform rot: 1.5707963267948966 rad From 4b80e61527feb8368ff2ffa94f2bbd9479e15536 Mon Sep 17 00:00:00 2001 From: Emre D Date: Wed, 11 Mar 2026 01:40:27 +0100 Subject: [PATCH 5/6] Unionfallupdate1 --- .../Unionfall/unionfall_clementine.yml | 2966 ++++++++++------- 1 file changed, 1670 insertions(+), 1296 deletions(-) diff --git a/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml b/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml index ddeeb87d189..b61cfaa7096 100644 --- a/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml +++ b/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml @@ -4,8 +4,8 @@ meta: engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 03/11/2026 00:21:53 - entityCount: 2180 + time: 03/11/2026 00:39:47 + entityCount: 2196 maps: [] grids: - 1 @@ -49,11 +49,11 @@ entities: chunks: 0,0: ind: 0,0 - tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAIQAAAAAAAAUAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAUAAAAAAAAhAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAIAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACAAAAAAAAIIAAAAAAAALAAAAAAAABQAAAAAAAAsAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAgAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAIAAAAAAAAAQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAACAAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAgAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAIAAAAAAAAggAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABAAAAAAAAAsAAAAAAAAFAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAALAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAIQAAAAAAAAUAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAUAAAAAAAAhAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAIAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACAAAAAAAAIIAAAAAAAALAAAAAAAABQAAAAAAAAsAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAgAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAIAAAAAAAAAQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAACAAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAgAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAIAAAAAAAAggAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABAAAAAAAAAsAAAAAAAAFAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAALAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAABQAAAAAAACEAAAAAAACCAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAIIAAAAAAAAhAAAAAAAAggAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAABQAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAABAAAAAAAAAQAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAIAAAAAAAACwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAACAAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAQAAAAAAAAgAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAAIAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAsAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACCAAAAAAAACAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAggAAAAAAAAgAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAIIAAAAAAAAIAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACCAAAAAAAACAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAUAAAAAAAALAAAAAAAABAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAUAAAAAAACCAAAAAAAACwAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAABQAAAAAAACEAAAAAAACCAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAIIAAAAAAAAhAAAAAAAAggAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAABQAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAABAAAAAAAAAQAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAIAAAAAAAACwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAACAAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAQAAAAAAAAgAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAAIAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAsAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACCAAAAAAAACAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAggAAAAAAAAgAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAIIAAAAAAAAIAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAACCAAAAAAAACAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAUAAAAAAAALAAAAAAAABAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAUAAAAAAACCAAAAAAAACwAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAA== version: 7 -1,-1: ind: -1,-1 @@ -73,11 +73,11 @@ entities: version: 7 0,1: ind: 0,1 - tiles: ggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAgQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIEAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACBAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAIAAAAAAAAggAAAAAAAIEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAOAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAADgAAAAAAACEAAAAAAACCAAAAAAAACAAAAAAAAAUAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAA4AAAAAAAAhAAAAAAAAggAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAAIAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAADgAAAAAAACEAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAA4AAAAAAAAhAAAAAAAACwAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAOAAAAAAAAIQAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAABAAAAAAAAggAAAAAAACEAAAAAAAAFAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAQAAAAAAAIIAAAAAAAAhAAAAAAAABQAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ggAAAAAAACEAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAgQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAhAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIEAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACBAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAIAAAAAAAAggAAAAAAAIEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAOAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAADgAAAAAAACEAAAAAAACCAAAAAAAACAAAAAAAAAUAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAA4AAAAAAAAhAAAAAAAAggAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAAAIAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAADgAAAAAAACEAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAA4AAAAAAAAhAAAAAAAACwAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAOAAAAAAAAIQAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAABAAAAAAAAggAAAAAAACEAAAAAAAAFAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAQAAAAAAAIIAAAAAAAAhAAAAAAAABQAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAoAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAACgAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAoAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAKAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAADgAAAAAAACEAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAABQAAAAAAAAgAAAAAAACCAAAAAAAAIQAAAAAAAA4AAAAAAAAhAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAIAAAAAAAAggAAAAAAACEAAAAAAAAOAAAAAAAAIQAAAAAAACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAAIAAAAAAAABwAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAIQAAAAAAAA4AAAAAAAAhAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAACwAAAAAAACEAAAAAAAAOAAAAAAAAIQAAAAAAACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAhAAAAAAAADgAAAAAAACEAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAACAAAAAAAAAgAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAAIQAAAAAAAAEAAAAAAAALAAAAAAAACwAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAoAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAKAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAACgAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAoAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAAhAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAKAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAhAAAAAAAADgAAAAAAACEAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAABQAAAAAAAAgAAAAAAACCAAAAAAAAIQAAAAAAAA4AAAAAAAAhAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAIAAAAAAAAggAAAAAAACEAAAAAAAAOAAAAAAAAIQAAAAAAACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIIAAAAAAAAIAAAAAAAABwAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAIQAAAAAAAA4AAAAAAAAhAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAACwAAAAAAACEAAAAAAAAOAAAAAAAAIQAAAAAAACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAhAAAAAAAADgAAAAAAACEAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACCAAAAAAAACAAAAAAAAAgAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAAIQAAAAAAAAEAAAAAAAALAAAAAAAACwAAAAAAAA== version: 7 0,2: ind: 0,2 @@ -394,13 +394,11 @@ entities: 660: 1,20 661: -1,19 662: -3,17 - 663: -2,18 664: -3,16 665: -3,18 666: -2,14 667: -3,15 668: -3,17 - 669: -2,17 670: -1,15 671: 3,18 672: 1,17 @@ -595,7 +593,6 @@ entities: 878: -5,33 879: -5,34 880: -5,32 - 881: -2,17 882: -3,17 883: -3,17 884: -3,16 @@ -669,6 +666,7 @@ entities: 5063: -2,11 5311: -2,11 5581: -2,11 + 5829: -2,11 - node: zIndex: 1 angle: -3.141592653589793 rad @@ -684,6 +682,7 @@ entities: 5057: -2,7 5305: -2,7 5575: -2,7 + 5823: -2,7 - node: zIndex: 1 angle: -1.5707963267948966 rad @@ -699,6 +698,7 @@ entities: 4948: 2,7 5196: 2,7 5466: 2,7 + 5714: 2,7 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner @@ -713,6 +713,7 @@ entities: 4954: 2,11 5202: 2,11 5472: 2,11 + 5720: 2,11 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge @@ -767,6 +768,11 @@ entities: 5577: -2,9 5578: -2,10 5580: -2,11 + 5822: -2,7 + 5824: -2,8 + 5825: -2,9 + 5826: -2,10 + 5828: -2,11 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge @@ -821,6 +827,11 @@ entities: 5464: 2,7 5573: -2,7 5590: -1,7 + 5692: 0,7 + 5702: 1,7 + 5712: 2,7 + 5821: -2,7 + 5838: -1,7 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge @@ -875,6 +886,11 @@ entities: 5468: 2,9 5469: 2,10 5470: 2,11 + 5713: 2,7 + 5715: 2,8 + 5716: 2,9 + 5717: 2,10 + 5718: 2,11 - node: id: FloorTechMaintDirectionalEdge decals: @@ -928,6 +944,11 @@ entities: 5471: 2,11 5579: -2,11 5591: -1,11 + 5693: 0,11 + 5703: 1,11 + 5719: 2,11 + 5827: -2,11 + 5839: -1,11 - node: zIndex: 1 id: LatticeCornerNE @@ -1472,6 +1493,33 @@ entities: 5660: 6,19 5668: 6,20 5680: -9,24 + 5688: 0,1 + 5698: 1,1 + 5708: 2,1 + 5725: 3,0 + 5733: 3,1 + 5741: 4,0 + 5749: 4,1 + 5757: 8,12 + 5769: -9,3 + 5777: -8,12 + 5785: -4,0 + 5793: -4,1 + 5801: -3,0 + 5809: -3,1 + 5817: -2,1 + 5834: -1,1 + 5845: -10,-16 + 5850: -4,-1 + 5858: 4,-1 + 5876: -9,-17 + 5879: -3,-20 + 5884: 6,16 + 5892: 6,17 + 5900: 6,18 + 5908: 6,19 + 5916: 6,20 + 5928: -9,24 - node: zIndex: 1 id: LatticeCornerNW @@ -2016,6 +2064,33 @@ entities: 5663: 6,19 5671: 6,20 5674: 9,24 + 5691: 0,1 + 5701: 1,1 + 5711: 2,1 + 5728: 3,0 + 5736: 3,1 + 5744: 4,0 + 5752: 4,1 + 5760: 8,12 + 5763: 9,4 + 5780: -8,12 + 5788: -4,0 + 5796: -4,1 + 5804: -3,0 + 5812: -3,1 + 5820: -2,1 + 5837: -1,1 + 5853: -4,-1 + 5861: 4,-1 + 5864: 10,-16 + 5870: 3,-20 + 5873: 9,-17 + 5887: 6,16 + 5895: 6,17 + 5903: 6,18 + 5911: 6,19 + 5919: 6,20 + 5922: 9,24 - node: zIndex: 1 id: LatticeCornerSE @@ -2520,6 +2595,31 @@ entities: 5658: 6,19 5666: 6,20 5683: -9,28 + 5686: 0,1 + 5696: 1,1 + 5706: 2,1 + 5723: 3,0 + 5731: 3,1 + 5739: 4,0 + 5747: 4,1 + 5755: 8,12 + 5772: -9,12 + 5775: -8,12 + 5783: -4,0 + 5791: -4,1 + 5799: -3,0 + 5807: -3,1 + 5815: -2,1 + 5832: -1,1 + 5842: -12,-10 + 5848: -4,-1 + 5856: 4,-1 + 5882: 6,16 + 5890: 6,17 + 5898: 6,18 + 5906: 6,19 + 5914: 6,20 + 5931: -9,28 - node: zIndex: 1 id: LatticeCornerSW @@ -3024,6 +3124,31 @@ entities: 5662: 6,19 5670: 6,20 5677: 9,28 + 5690: 0,1 + 5700: 1,1 + 5710: 2,1 + 5727: 3,0 + 5735: 3,1 + 5743: 4,0 + 5751: 4,1 + 5759: 8,12 + 5766: 9,12 + 5779: -8,12 + 5787: -4,0 + 5795: -4,1 + 5803: -3,0 + 5811: -3,1 + 5819: -2,1 + 5836: -1,1 + 5852: -4,-1 + 5860: 4,-1 + 5867: 12,-10 + 5886: 6,16 + 5894: 6,17 + 5902: 6,18 + 5910: 6,19 + 5918: 6,20 + 5925: 9,28 - node: id: LatticeEdgeE decals: @@ -3627,6 +3752,36 @@ entities: 5665: 6,20 5678: -9,24 5682: -9,28 + 5685: 0,1 + 5695: 1,1 + 5705: 2,1 + 5722: 3,0 + 5730: 3,1 + 5738: 4,0 + 5746: 4,1 + 5754: 8,12 + 5767: -9,3 + 5771: -9,12 + 5774: -8,12 + 5782: -4,0 + 5790: -4,1 + 5798: -3,0 + 5806: -3,1 + 5814: -2,1 + 5831: -1,1 + 5841: -12,-10 + 5843: -10,-16 + 5847: -4,-1 + 5855: 4,-1 + 5874: -9,-17 + 5877: -3,-20 + 5881: 6,16 + 5889: 6,17 + 5897: 6,18 + 5905: 6,19 + 5913: 6,20 + 5926: -9,24 + 5930: -9,28 - node: id: LatticeEdgeN decals: @@ -4270,6 +4425,38 @@ entities: 5667: 6,20 5672: 9,24 5679: -9,24 + 5687: 0,1 + 5697: 1,1 + 5707: 2,1 + 5724: 3,0 + 5732: 3,1 + 5740: 4,0 + 5748: 4,1 + 5756: 8,12 + 5761: 9,4 + 5768: -9,3 + 5776: -8,12 + 5784: -4,0 + 5792: -4,1 + 5800: -3,0 + 5808: -3,1 + 5816: -2,1 + 5833: -1,1 + 5844: -10,-16 + 5849: -4,-1 + 5857: 4,-1 + 5862: 10,-16 + 5868: 3,-20 + 5871: 9,-17 + 5875: -9,-17 + 5878: -3,-20 + 5883: 6,16 + 5891: 6,17 + 5899: 6,18 + 5907: 6,19 + 5915: 6,20 + 5920: 9,24 + 5927: -9,24 - node: id: LatticeEdgeS decals: @@ -4833,6 +5020,34 @@ entities: 5664: 6,20 5675: 9,28 5681: -9,28 + 5684: 0,1 + 5694: 1,1 + 5704: 2,1 + 5721: 3,0 + 5729: 3,1 + 5737: 4,0 + 5745: 4,1 + 5753: 8,12 + 5764: 9,12 + 5770: -9,12 + 5773: -8,12 + 5781: -4,0 + 5789: -4,1 + 5797: -3,0 + 5805: -3,1 + 5813: -2,1 + 5830: -1,1 + 5840: -12,-10 + 5846: -4,-1 + 5854: 4,-1 + 5865: 12,-10 + 5880: 6,16 + 5888: 6,17 + 5896: 6,18 + 5904: 6,19 + 5912: 6,20 + 5923: 9,28 + 5929: -9,28 - node: id: LatticeEdgeW decals: @@ -5436,6 +5651,36 @@ entities: 5669: 6,20 5673: 9,24 5676: 9,28 + 5689: 0,1 + 5699: 1,1 + 5709: 2,1 + 5726: 3,0 + 5734: 3,1 + 5742: 4,0 + 5750: 4,1 + 5758: 8,12 + 5762: 9,4 + 5765: 9,12 + 5778: -8,12 + 5786: -4,0 + 5794: -4,1 + 5802: -3,0 + 5810: -3,1 + 5818: -2,1 + 5835: -1,1 + 5851: -4,-1 + 5859: 4,-1 + 5863: 10,-16 + 5866: 12,-10 + 5869: 3,-20 + 5872: 9,-17 + 5885: 6,16 + 5893: 6,17 + 5901: 6,18 + 5909: 6,19 + 5917: 6,20 + 5921: 9,24 + 5924: 9,28 - node: color: '#FFFFFFFF' id: Rust @@ -5752,7 +5997,6 @@ entities: 404: -4,16 405: -4,17 406: -4,18 - 407: -2,18 - node: color: '#EFB34196' id: WarnFullGreyscale @@ -5882,6 +6126,10 @@ entities: 535: -8,-12 536: -8,-11 5432: 2,23 + 5934: 1,17 + 5935: 1,15 + 5936: -1,15 + 5937: -1,17 - node: angle: 3.141592653589793 rad color: '#EFB34196' @@ -5951,6 +6199,7 @@ entities: 474: 6,-5 540: -5,-14 541: -3,-14 + 5932: -2,19 - node: color: '#EFB34196' id: WarnLineS @@ -6038,6 +6287,8 @@ entities: 538: -6,-12 539: -6,-11 5428: -2,23 + 5938: -1,17 + 5939: -1,15 - node: color: '#EFB34196' id: WarnLineW @@ -6091,6 +6342,7 @@ entities: 528: 6,-13 542: -3,-16 543: -5,-16 + 5933: -2,19 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -6589,7 +6841,7 @@ entities: - type: ApcPowerReceiver powerLoad: 25000 - type: Battery - startingCharge: 83091.88 + startingCharge: 80352.86 - type: ApcPowerReceiverBattery enabled: True - type: BallisticAmmoProvider @@ -6635,12 +6887,12 @@ entities: parent: 1 - type: DeviceList devices: - - 1371 + - 1373 + - 1376 - 1374 - - 1372 + - 1377 + - 1378 - 1375 - - 1376 - - 1373 - uid: 35 components: - type: Transform @@ -6649,14 +6901,14 @@ entities: parent: 1 - type: DeviceList configurators: - - 1439 + - 1441 devices: - - 1371 + - 1373 + - 1376 - 1374 - - 1372 + - 1377 + - 1378 - 1375 - - 1376 - - 1373 - proto: AirCanister entities: - uid: 36 @@ -6664,6 +6916,11 @@ entities: - type: Transform pos: 10.5,-11.5 parent: 1 + - uid: 2191 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 - proto: AirlockCommand entities: - uid: 37 @@ -6692,12 +6949,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-7.5 parent: 1 - - uid: 41 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,19.5 - parent: 1 - uid: 42 components: - type: Transform @@ -6755,18 +7006,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,6.5 parent: 1 - - uid: 51 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,16.5 - parent: 1 - - uid: 52 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,16.5 - parent: 1 - uid: 53 components: - type: Transform @@ -7141,13 +7380,6 @@ entities: - type: Transform pos: 6.5,-9.5 parent: 1 -- proto: AmmoTechFab - entities: - - uid: 151 - components: - - type: Transform - pos: -2.5,14.5 - parent: 1 - proto: APCBasic entities: - uid: 152 @@ -7335,13 +7567,6 @@ entities: - type: Transform pos: -6.5,-12.5 parent: 1 -- proto: Autolathe - entities: - - uid: 184 - components: - - type: Transform - pos: 4.5,17.5 - parent: 1 - proto: Bed entities: - uid: 185 @@ -7384,7 +7609,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1640 + - 1642 - uid: 191 components: - type: Transform @@ -7392,7 +7617,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1640 + - 1642 - uid: 192 components: - type: Transform @@ -7400,7 +7625,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1640 + - 1642 - uid: 193 components: - type: Transform @@ -7409,7 +7634,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1645 + - 1647 - uid: 194 components: - type: Transform @@ -7418,7 +7643,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1644 + - 1646 - uid: 195 components: - type: Transform @@ -7427,7 +7652,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1643 + - 1645 - uid: 196 components: - type: Transform @@ -7436,7 +7661,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1642 + - 1644 - uid: 197 components: - type: Transform @@ -7445,7 +7670,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1641 + - 1643 - uid: 198 components: - type: Transform @@ -7454,9 +7679,26 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1639 + - 1641 - proto: BlastDoorOpen entities: + - uid: 41 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2195 + - uid: 51 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2194 - uid: 199 components: - type: Transform @@ -7464,7 +7706,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1636 + - 1638 - uid: 200 components: - type: Transform @@ -7472,7 +7714,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1636 + - 1638 - uid: 201 components: - type: Transform @@ -7480,7 +7722,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1636 + - 1638 - uid: 202 components: - type: Transform @@ -7488,7 +7730,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1636 + - 1638 - uid: 203 components: - type: Transform @@ -7496,7 +7738,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1636 + - 1638 - uid: 204 components: - type: Transform @@ -7504,7 +7746,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1636 + - 1638 - uid: 205 components: - type: Transform @@ -7512,7 +7754,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1636 + - 1638 - uid: 206 components: - type: Transform @@ -7520,7 +7762,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1636 + - 1638 - uid: 207 components: - type: Transform @@ -7528,7 +7770,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1636 + - 1638 - uid: 208 components: - type: Transform @@ -7536,7 +7778,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1636 + - 1638 - uid: 209 components: - type: Transform @@ -7545,7 +7787,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1636 + - 1638 - uid: 210 components: - type: Transform @@ -7554,7 +7796,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1636 + - 1638 - uid: 211 components: - type: Transform @@ -7563,7 +7805,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1636 + - 1638 - uid: 212 components: - type: Transform @@ -7572,7 +7814,84 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1636 + - 1638 + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2193 + - uid: 1259 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2195 + - uid: 1260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2193 + - uid: 1635 + components: + - type: Transform + pos: -2.5,19.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2195 + - uid: 1636 + components: + - type: Transform + pos: -1.5,19.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2195 + - uid: 2076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,17.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2194 + - uid: 2077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2194 + - uid: 2084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,17.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2193 +- proto: BoozeDispenser + entities: + - uid: 221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 1 - proto: BoriaticGeneratorHerculesShuttle entities: - uid: 213 @@ -7609,6 +7928,13 @@ entities: - type: Transform pos: -0.6409803,-9.360698 parent: 1 +- proto: BoxMRE + entities: + - uid: 1442 + components: + - type: Transform + pos: 4.6842628,17.118946 + parent: 1 - proto: BoxSyringe entities: - uid: 217 @@ -7639,12 +7965,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-8.5 parent: 1 - - uid: 221 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,19.5 - parent: 1 - uid: 222 components: - type: Transform @@ -7681,6 +8001,24 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,14.5 parent: 1 + - uid: 1130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1 + - uid: 2192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 + - uid: 2196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,19.5 + parent: 1 - proto: ButtonFrameCautionSecurity entities: - uid: 228 @@ -8215,11 +8553,6 @@ entities: - type: Transform pos: 0.5,16.5 parent: 1 - - uid: 334 - components: - - type: Transform - pos: 1.5,16.5 - parent: 1 - uid: 335 components: - type: Transform @@ -9990,6 +10323,11 @@ entities: - type: Transform pos: 4.5,-14.5 parent: 1 + - uid: 2082 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 - proto: CableHV entities: - uid: 689 @@ -12008,6 +12346,28 @@ entities: rot: 3.141592653589793 rad pos: -2.5,26.5 parent: 1 +- proto: Chair + entities: + - uid: 1120 + components: + - type: Transform + pos: -2.5,28.5 + parent: 1 + - uid: 2087 + components: + - type: Transform + pos: -3.5,28.5 + parent: 1 + - uid: 2182 + components: + - type: Transform + pos: 4.5,28.5 + parent: 1 + - uid: 2183 + components: + - type: Transform + pos: 3.5,28.5 + parent: 1 - proto: ChairFolding entities: - uid: 1065 @@ -12022,6 +12382,12 @@ entities: rot: 3.141592653589793 rad pos: 6.455937,33.79165 parent: 1 + - uid: 2184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.530381,16.808573 + parent: 1 - proto: ChairOfficeDark entities: - uid: 1067 @@ -12136,6 +12502,13 @@ entities: - type: Transform pos: -6.5,-5.5 parent: 1 +- proto: ClosetToolFilled + entities: + - uid: 2190 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 - proto: ClosetWallOrange entities: - uid: 1084 @@ -12614,7 +12987,7 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1424: + 1426: - - CloningPodSender - MedicalScannerReceiver - - MedicalScannerSender @@ -12631,11 +13004,6 @@ entities: - type: Transform pos: 2.5,28.5 parent: 1 - - uid: 1120 - components: - - type: Transform - pos: -1.5,18.5 - parent: 1 - proto: ComputerShuttle entities: - uid: 1121 @@ -12723,24 +13091,6 @@ entities: parent: 1 - proto: ComputerWallmountBankATM entities: - - uid: 1130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,17.5 - parent: 1 - - type: ContainerContainer - containers: - bank-ATM-cashSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - board: !type:Container - showEnts: False - occludes: True - ents: [] - - type: Physics - canCollide: False - uid: 1131 components: - type: Transform @@ -12759,11 +13109,11 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 1132 + - uid: 1133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,15.5 + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 parent: 1 - type: ContainerContainer containers: @@ -12777,11 +13127,10 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 1133 + - uid: 1134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-1.5 + pos: 3.5,29.5 parent: 1 - type: ContainerContainer containers: @@ -12795,26 +13144,9 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 1134 - components: - - type: Transform - pos: 3.5,29.5 - parent: 1 - - type: ContainerContainer - containers: - bank-ATM-cashSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - board: !type:Container - showEnts: False - occludes: True - ents: [] - - type: Physics - canCollide: False -- proto: ConveyorBelt - entities: - - uid: 1135 +- proto: ConveyorBelt + entities: + - uid: 1135 components: - type: Transform rot: 1.5707963267948966 rad @@ -12822,7 +13154,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1770 + - 1772 - uid: 1136 components: - type: Transform @@ -12831,7 +13163,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1770 + - 1772 - uid: 1137 components: - type: Transform @@ -12840,7 +13172,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1770 + - 1772 - uid: 1138 components: - type: Transform @@ -12849,7 +13181,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1771 + - 1773 - uid: 1139 components: - type: Transform @@ -12858,7 +13190,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1771 + - 1773 - uid: 1140 components: - type: Transform @@ -12867,14 +13199,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1771 -- proto: CrateArtifactContainer - entities: - - uid: 1141 - components: - - type: Transform - pos: 3.5,14.5 - parent: 1 + - 1773 - proto: CrateArtilleryAmmo entities: - uid: 1142 @@ -12937,6 +13262,18 @@ entities: - 0 - 0 - 0 +- proto: CrateFoodMRE + entities: + - uid: 151 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 2181 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 - proto: CrateMortarAmmo entities: - uid: 1146 @@ -12961,48 +13298,48 @@ entities: parent: 1 - proto: CrateSumitomoAmmoHighYield entities: - - uid: 2179 + - uid: 1150 components: - type: Transform pos: -2.5,23.5 parent: 1 - - uid: 2180 + - uid: 1151 components: - type: Transform pos: 3.5,23.5 parent: 1 - proto: CrateVulcanAmmo entities: - - uid: 1150 + - uid: 1152 components: - type: Transform pos: -2.5,25.5 parent: 1 - - uid: 1151 + - uid: 1153 components: - type: Transform pos: 3.5,25.5 parent: 1 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 1152 + - uid: 1154 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 1153 + - uid: 1155 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 1154 + - uid: 1156 components: - type: Transform pos: 5.5,11.5 parent: 1 - proto: DefaultStationBeaconBridge entities: - - uid: 1155 + - uid: 1157 components: - type: Transform rot: 1.5707963267948966 rad @@ -13019,24 +13356,24 @@ entities: - type: InsideEntityStorage - proto: DisposalBend entities: - - uid: 1156 + - uid: 1158 components: - type: Transform pos: 1.5,31.5 parent: 1 - - uid: 1157 + - uid: 1159 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-10.5 parent: 1 - - uid: 1158 + - uid: 1160 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-10.5 parent: 1 - - uid: 1159 + - uid: 1161 components: - type: Transform rot: -1.5707963267948966 rad @@ -13044,334 +13381,334 @@ entities: parent: 1 - proto: DisposalJunction entities: - - uid: 1160 + - uid: 1162 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 1161 + - uid: 1163 components: - type: Transform pos: 1.5,-6.5 parent: 1 - proto: DisposalPipe entities: - - uid: 1162 + - uid: 1164 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,31.5 parent: 1 - - uid: 1163 + - uid: 1165 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,31.5 parent: 1 - - uid: 1164 + - uid: 1166 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,31.5 parent: 1 - - uid: 1165 + - uid: 1167 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,31.5 parent: 1 - - uid: 1166 + - uid: 1168 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,31.5 parent: 1 - - uid: 1167 + - uid: 1169 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,31.5 parent: 1 - - uid: 1168 + - uid: 1170 components: - type: Transform pos: 1.5,30.5 parent: 1 - - uid: 1169 + - uid: 1171 components: - type: Transform pos: 1.5,29.5 parent: 1 - - uid: 1170 + - uid: 1172 components: - type: Transform pos: 1.5,28.5 parent: 1 - - uid: 1171 + - uid: 1173 components: - type: Transform pos: 1.5,27.5 parent: 1 - - uid: 1172 + - uid: 1174 components: - type: Transform pos: 1.5,26.5 parent: 1 - - uid: 1173 + - uid: 1175 components: - type: Transform pos: 1.5,25.5 parent: 1 - - uid: 1174 + - uid: 1176 components: - type: Transform pos: 1.5,24.5 parent: 1 - - uid: 1175 + - uid: 1177 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 1176 + - uid: 1178 components: - type: Transform pos: 1.5,22.5 parent: 1 - - uid: 1177 + - uid: 1179 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 1178 + - uid: 1180 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 1179 + - uid: 1181 components: - type: Transform pos: 1.5,19.5 parent: 1 - - uid: 1180 + - uid: 1182 components: - type: Transform pos: 1.5,18.5 parent: 1 - - uid: 1181 + - uid: 1183 components: - type: Transform pos: 1.5,17.5 parent: 1 - - uid: 1182 + - uid: 1184 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 1183 + - uid: 1185 components: - type: Transform pos: 1.5,15.5 parent: 1 - - uid: 1184 + - uid: 1186 components: - type: Transform pos: 1.5,14.5 parent: 1 - - uid: 1185 + - uid: 1187 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 1186 + - uid: 1188 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 1187 + - uid: 1189 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 1188 + - uid: 1190 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 1189 + - uid: 1191 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 1190 + - uid: 1192 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 1191 + - uid: 1193 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 1192 + - uid: 1194 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 1193 + - uid: 1195 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 1194 + - uid: 1196 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 1195 + - uid: 1197 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1196 + - uid: 1198 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 1197 + - uid: 1199 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 1198 + - uid: 1200 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 1199 + - uid: 1201 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 1200 + - uid: 1202 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 1201 + - uid: 1203 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 1202 + - uid: 1204 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 1203 + - uid: 1205 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 1204 + - uid: 1206 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 1 - - uid: 1205 + - uid: 1207 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-6.5 parent: 1 - - uid: 1206 + - uid: 1208 components: - type: Transform pos: 1.5,-7.5 parent: 1 - - uid: 1207 + - uid: 1209 components: - type: Transform pos: 1.5,-8.5 parent: 1 - - uid: 1208 + - uid: 1210 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 1209 + - uid: 1211 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-15.5 parent: 1 - - uid: 1210 + - uid: 1212 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-14.5 parent: 1 - - uid: 1211 + - uid: 1213 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-13.5 parent: 1 - - uid: 1212 + - uid: 1214 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-12.5 parent: 1 - - uid: 1213 + - uid: 1215 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-11.5 parent: 1 - - uid: 1214 + - uid: 1216 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-16.5 parent: 1 - - uid: 1215 + - uid: 1217 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 1 - - uid: 1216 + - uid: 1218 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-16.5 parent: 1 - - uid: 1217 + - uid: 1219 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-16.5 parent: 1 - - uid: 1218 + - uid: 1220 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-16.5 parent: 1 - - uid: 1219 + - uid: 1221 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-16.5 parent: 1 - - uid: 1220 + - uid: 1222 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-16.5 parent: 1 - - uid: 1221 + - uid: 1223 components: - type: Transform rot: 1.5707963267948966 rad @@ -13379,25 +13716,25 @@ entities: parent: 1 - proto: DisposalTrunk entities: - - uid: 1222 + - uid: 1224 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-16.5 parent: 1 - - uid: 1223 + - uid: 1225 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-6.5 parent: 1 - - uid: 1224 + - uid: 1226 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,5.5 parent: 1 - - uid: 1225 + - uid: 1227 components: - type: Transform rot: 1.5707963267948966 rad @@ -13405,12 +13742,12 @@ entities: parent: 1 - proto: DisposalUnit entities: - - uid: 1226 + - uid: 1228 components: - type: Transform pos: -1.5,-6.5 parent: 1 - - uid: 1227 + - uid: 1229 components: - type: Transform pos: -5.5,31.5 @@ -13443,6 +13780,32 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: DrinkGlass + entities: + - uid: 52 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.211298,16.269606 + parent: 1 + - uid: 1132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.509692,16.337423 + parent: 1 + - uid: 1141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.3062415,16.676508 + parent: 1 + - uid: 1444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.591072,16.662943 + parent: 1 - proto: DrinkMREFlask entities: - uid: 1088 @@ -13461,35 +13824,40 @@ entities: - type: InsideEntityStorage - proto: DrinkVodkaBottleFull entities: - - uid: 1228 + - uid: 1230 components: - type: Transform pos: -0.59381837,-9.968295 parent: 1 + - uid: 1443 + components: + - type: Transform + pos: 4.618585,15.914518 + parent: 1 - proto: DrinkVodkaGlass entities: - - uid: 1229 + - uid: 1231 components: - type: Transform pos: -0.3151583,-9.854951 parent: 1 - proto: EncryptionKeyNCWL entities: - - uid: 1231 + - uid: 1233 components: - type: Transform - parent: 1230 + parent: 1232 - type: Physics canCollide: False - proto: ExplosivesSignMed entities: - - uid: 1232 + - uid: 1234 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,32.5 parent: 1 - - uid: 1233 + - uid: 1235 components: - type: Transform rot: -1.5707963267948966 rad @@ -13497,28 +13865,28 @@ entities: parent: 1 - proto: FaxMachineShip entities: - - uid: 1234 + - uid: 1236 components: - type: Transform pos: 3.5,-1.5 parent: 1 - proto: filingCabinetDrawerRandom entities: - - uid: 1235 + - uid: 1237 components: - type: Transform pos: 3.5,-6.5 parent: 1 - proto: filingCabinetTallRandom entities: - - uid: 1236 + - uid: 1238 components: - type: Transform pos: -2.5,-6.5 parent: 1 - proto: FireAxeCabinetFilled entities: - - uid: 1237 + - uid: 1239 components: - type: Transform rot: 1.5707963267948966 rad @@ -13526,134 +13894,122 @@ entities: parent: 1 - proto: Firelock entities: - - uid: 1238 + - uid: 1240 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 1239 + - uid: 1241 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,3.5 parent: 1 - - uid: 1240 + - uid: 1242 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,3.5 parent: 1 - - uid: 1241 + - uid: 1243 components: - type: Transform pos: 0.5,13.5 parent: 1 - - uid: 1242 + - uid: 1244 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,27.5 parent: 1 - - uid: 1243 + - uid: 1245 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,26.5 parent: 1 - - uid: 1244 + - uid: 1246 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,25.5 parent: 1 - - uid: 1245 + - uid: 1247 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,27.5 parent: 1 - - uid: 1246 + - uid: 1248 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,25.5 parent: 1 - - uid: 1247 + - uid: 1249 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,26.5 parent: 1 - - uid: 1248 + - uid: 1250 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,19.5 parent: 1 - - uid: 1249 + - uid: 1251 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-7.5 parent: 1 - - uid: 1250 + - uid: 1252 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-7.5 parent: 1 - - uid: 1251 + - uid: 1253 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-4.5 parent: 1 - - uid: 1252 + - uid: 1254 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-4.5 parent: 1 - - uid: 1253 + - uid: 1255 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-4.5 parent: 1 - - uid: 1254 + - uid: 1256 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-4.5 parent: 1 - - uid: 1255 + - uid: 1257 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,31.5 parent: 1 - - uid: 1256 + - uid: 1258 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,31.5 parent: 1 - - uid: 1257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,19.5 - parent: 1 - - uid: 1258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,16.5 - parent: 1 - proto: FloorDrain entities: - - uid: 1259 + - uid: 1261 components: - type: Transform pos: 0.5,6.5 @@ -13678,7 +14034,7 @@ entities: - type: InsideEntityStorage - proto: GasPassiveVent entities: - - uid: 1260 + - uid: 1262 components: - type: Transform rot: -1.5707963267948966 rad @@ -13686,580 +14042,580 @@ entities: parent: 1 - proto: GasPipeBend entities: - - uid: 1261 + - uid: 1263 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 1 - - uid: 1262 + - uid: 1264 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 1 - - uid: 1263 + - uid: 1265 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 1 - - uid: 1264 + - uid: 1266 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1265 + - uid: 1267 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-11.5 parent: 1 - - uid: 1266 + - uid: 1268 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 1267 + - uid: 1269 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-5.5 parent: 1 - - uid: 1268 + - uid: 1270 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 1 - - uid: 1269 + - uid: 1271 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-4.5 parent: 1 - - uid: 1270 + - uid: 1272 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-3.5 parent: 1 - - uid: 1271 + - uid: 1273 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 1272 + - uid: 1274 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,2.5 parent: 1 - - uid: 1273 + - uid: 1275 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 1274 + - uid: 1276 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 1 - - uid: 1275 + - uid: 1277 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,20.5 parent: 1 - - uid: 1276 + - uid: 1278 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 1277 + - uid: 1279 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,12.5 parent: 1 - - uid: 1278 + - uid: 1280 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 1279 + - uid: 1281 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-5.5 parent: 1 - - uid: 1280 + - uid: 1282 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-11.5 parent: 1 - - uid: 1281 + - uid: 1283 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-16.5 parent: 1 - - uid: 1282 + - uid: 1284 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 1283 + - uid: 1285 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-15.5 parent: 1 - - uid: 1284 + - uid: 1286 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 1285 + - uid: 1287 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 1 - - uid: 1286 + - uid: 1288 components: - type: Transform pos: 1.5,-11.5 parent: 1 - proto: GasPipeStraight entities: - - uid: 1287 + - uid: 1289 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-13.5 parent: 1 - - uid: 1288 + - uid: 1290 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-12.5 parent: 1 - - uid: 1289 + - uid: 1291 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-11.5 parent: 1 - - uid: 1290 + - uid: 1292 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 - - uid: 1291 + - uid: 1293 components: - type: Transform pos: 2.5,23.5 parent: 1 - - uid: 1292 + - uid: 1294 components: - type: Transform pos: 2.5,22.5 parent: 1 - - uid: 1293 + - uid: 1295 components: - type: Transform pos: 2.5,21.5 parent: 1 - - uid: 1294 + - uid: 1296 components: - type: Transform pos: 1.5,19.5 parent: 1 - - uid: 1295 + - uid: 1297 components: - type: Transform pos: 1.5,18.5 parent: 1 - - uid: 1296 + - uid: 1298 components: - type: Transform pos: 1.5,17.5 parent: 1 - - uid: 1297 + - uid: 1299 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 1298 + - uid: 1300 components: - type: Transform pos: 1.5,15.5 parent: 1 - - uid: 1299 + - uid: 1301 components: - type: Transform pos: 1.5,14.5 parent: 1 - - uid: 1300 + - uid: 1302 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 1301 + - uid: 1303 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,12.5 parent: 1 - - uid: 1302 + - uid: 1304 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 1 - - uid: 1303 + - uid: 1305 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 1 - - uid: 1304 + - uid: 1306 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,9.5 parent: 1 - - uid: 1305 + - uid: 1307 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,8.5 parent: 1 - - uid: 1306 + - uid: 1308 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 1307 + - uid: 1309 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 1 - - uid: 1308 + - uid: 1310 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,7.5 parent: 1 - - uid: 1309 + - uid: 1311 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-11.5 parent: 1 - - uid: 1310 + - uid: 1312 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 1311 + - uid: 1313 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 1312 + - uid: 1314 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 1313 + - uid: 1315 components: - type: Transform pos: 7.5,-7.5 parent: 1 - - uid: 1314 + - uid: 1316 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 1315 + - uid: 1317 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-3.5 parent: 1 - - uid: 1316 + - uid: 1318 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 1317 + - uid: 1319 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-3.5 parent: 1 - - uid: 1318 + - uid: 1320 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-4.5 parent: 1 - - uid: 1319 + - uid: 1321 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 1 - - uid: 1320 + - uid: 1322 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 1 - - uid: 1321 + - uid: 1323 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-0.5 parent: 1 - - uid: 1322 + - uid: 1324 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,0.5 parent: 1 - - uid: 1323 + - uid: 1325 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 1 - - uid: 1324 + - uid: 1326 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,3.5 parent: 1 - - uid: 1325 + - uid: 1327 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - - uid: 1326 + - uid: 1328 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,23.5 parent: 1 - - uid: 1327 + - uid: 1329 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,22.5 parent: 1 - - uid: 1328 + - uid: 1330 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,21.5 parent: 1 - - uid: 1329 + - uid: 1331 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,12.5 parent: 1 - - uid: 1330 + - uid: 1332 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 1331 + - uid: 1333 components: - type: Transform pos: -0.5,14.5 parent: 1 - - uid: 1332 + - uid: 1334 components: - type: Transform pos: -0.5,15.5 parent: 1 - - uid: 1333 + - uid: 1335 components: - type: Transform pos: -0.5,16.5 parent: 1 - - uid: 1334 + - uid: 1336 components: - type: Transform pos: -0.5,17.5 parent: 1 - - uid: 1335 + - uid: 1337 components: - type: Transform pos: -0.5,18.5 parent: 1 - - uid: 1336 + - uid: 1338 components: - type: Transform pos: -0.5,19.5 parent: 1 - - uid: 1337 + - uid: 1339 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 1338 + - uid: 1340 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 1339 + - uid: 1341 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 1340 + - uid: 1342 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 1341 + - uid: 1343 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 1342 + - uid: 1344 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 1343 + - uid: 1345 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 1344 + - uid: 1346 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 1345 + - uid: 1347 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 1346 + - uid: 1348 components: - type: Transform pos: -2.5,1.5 parent: 1 - - uid: 1347 + - uid: 1349 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 1348 + - uid: 1350 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 1349 + - uid: 1351 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 1350 + - uid: 1352 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 1351 + - uid: 1353 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 1352 + - uid: 1354 components: - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 1353 + - uid: 1355 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 1 - - uid: 1354 + - uid: 1356 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-5.5 parent: 1 - - uid: 1355 + - uid: 1357 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-6.5 parent: 1 - - uid: 1356 + - uid: 1358 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-7.5 parent: 1 - - uid: 1357 + - uid: 1359 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-8.5 parent: 1 - - uid: 1358 + - uid: 1360 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-9.5 parent: 1 - - uid: 1359 + - uid: 1361 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 1 - - uid: 1360 + - uid: 1362 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-13.5 parent: 1 - - uid: 1361 + - uid: 1363 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-13.5 parent: 1 - - uid: 1362 + - uid: 1364 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 1363 + - uid: 1365 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-15.5 parent: 1 - - uid: 1364 + - uid: 1366 components: - type: Transform rot: -1.5707963267948966 rad @@ -14267,25 +14623,25 @@ entities: parent: 1 - proto: GasPipeTJunction entities: - - uid: 1365 + - uid: 1367 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,7.5 parent: 1 - - uid: 1366 + - uid: 1368 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-3.5 parent: 1 - - uid: 1367 + - uid: 1369 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,7.5 parent: 1 - - uid: 1368 + - uid: 1370 components: - type: Transform rot: -1.5707963267948966 rad @@ -14293,7 +14649,7 @@ entities: parent: 1 - proto: GasPort entities: - - uid: 1369 + - uid: 1371 components: - type: Transform rot: -1.5707963267948966 rad @@ -14301,7 +14657,7 @@ entities: parent: 1 - proto: GasPressurePump entities: - - uid: 1370 + - uid: 1372 components: - type: Transform rot: -1.5707963267948966 rad @@ -14311,18 +14667,18 @@ entities: targetPressure: 90.325 - proto: GasVentPump entities: - - uid: 1371 + - uid: 1373 components: - type: Transform pos: 1.5,-3.5 parent: 1 - type: DeviceNetwork configurators: - - 1439 + - 1441 deviceLists: - 35 - 34 - - uid: 1372 + - uid: 1374 components: - type: Transform rot: 1.5707963267948966 rad @@ -14330,35 +14686,35 @@ entities: parent: 1 - type: DeviceNetwork configurators: - - 1439 + - 1441 deviceLists: - 35 - 34 - - uid: 1373 + - uid: 1375 components: - type: Transform pos: 2.5,24.5 parent: 1 - type: DeviceNetwork configurators: - - 1439 + - 1441 deviceLists: - 35 - 34 - proto: GasVentScrubber entities: - - uid: 1374 + - uid: 1376 components: - type: Transform pos: -0.5,-3.5 parent: 1 - type: DeviceNetwork configurators: - - 1439 + - 1441 deviceLists: - 35 - 34 - - uid: 1375 + - uid: 1377 components: - type: Transform rot: -1.5707963267948966 rad @@ -14366,143 +14722,143 @@ entities: parent: 1 - type: DeviceNetwork configurators: - - 1439 + - 1441 deviceLists: - 35 - 34 - - uid: 1376 + - uid: 1378 components: - type: Transform pos: -1.5,24.5 parent: 1 - type: DeviceNetwork configurators: - - 1439 + - 1441 deviceLists: - 35 - 34 - proto: GravityGeneratorMini entities: - - uid: 1377 + - uid: 1379 components: - type: Transform pos: 0.5,-12.5 parent: 1 - proto: Grille entities: - - uid: 1378 + - uid: 1380 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 1 - - uid: 1379 + - uid: 1381 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 - - uid: 1380 + - uid: 1382 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 1381 + - uid: 1383 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 1382 + - uid: 1384 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 1383 + - uid: 1385 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 1 - - uid: 1384 + - uid: 1386 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 1385 + - uid: 1387 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 1386 + - uid: 1388 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 1387 + - uid: 1389 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 1388 + - uid: 1390 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1389 + - uid: 1391 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 1 - - uid: 1390 + - uid: 1392 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 1 - - uid: 1391 + - uid: 1393 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 1 - - uid: 1392 + - uid: 1394 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 1 - - uid: 1393 + - uid: 1395 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-2.5 parent: 1 - - uid: 1394 + - uid: 1396 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 1 - - uid: 1395 + - uid: 1397 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - - uid: 1396 + - uid: 1398 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,11.5 parent: 1 - - uid: 1397 + - uid: 1399 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 1 - - uid: 1398 + - uid: 1400 components: - type: Transform rot: -1.5707963267948966 rad @@ -14510,46 +14866,46 @@ entities: parent: 1 - proto: GyroscopeNfsd entities: - - uid: 1399 + - uid: 1401 components: - type: Transform pos: 9.5,-13.5 parent: 1 - - uid: 1400 + - uid: 1402 components: - type: Transform pos: 9.5,-9.5 parent: 1 - - uid: 1401 + - uid: 1403 components: - type: Transform pos: 7.5,-16.5 parent: 1 - - uid: 1402 + - uid: 1404 components: - type: Transform pos: 5.5,36.5 parent: 1 - - uid: 1403 + - uid: 1405 components: - type: Transform pos: -4.5,36.5 parent: 1 - proto: HandHeldMassScannerEE entities: - - uid: 1404 + - uid: 1406 components: - type: Transform pos: 6.6539893,34.626114 parent: 1 - proto: JugBoriaticFuel entities: - - uid: 1405 + - uid: 1407 components: - type: Transform pos: 2.77085,-12.420227 parent: 1 - - uid: 1406 + - uid: 1408 components: - type: Transform rot: -1.5707963267948966 rad @@ -14557,14 +14913,14 @@ entities: parent: 1 - proto: KitchenReagentGrinder entities: - - uid: 1407 + - uid: 1409 components: - type: Transform pos: -4.5,9.5 parent: 1 - proto: LampGold entities: - - uid: 1408 + - uid: 1410 components: - type: Transform rot: 1.5707963267948966 rad @@ -14572,20 +14928,20 @@ entities: parent: 1 - proto: LightBulbBroken entities: - - uid: 1409 + - uid: 1411 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.6952374,22.684963 parent: 1 - - uid: 1410 + - uid: 1412 components: - type: Transform pos: 1.9922628,28.825588 parent: 1 - proto: LightStripInner entities: - - uid: 1411 + - uid: 1413 components: - type: Transform rot: 1.5707963267948966 rad @@ -14594,7 +14950,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1412 + - uid: 1414 components: - type: Transform rot: 3.141592653589793 rad @@ -14603,7 +14959,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1413 + - uid: 1415 components: - type: Transform rot: -1.5707963267948966 rad @@ -14612,7 +14968,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1414 + - uid: 1416 components: - type: Transform pos: -0.5,10.5 @@ -14620,7 +14976,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1415 + - uid: 1417 components: - type: Transform rot: 1.5707963267948966 rad @@ -14631,7 +14987,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 1416 + - uid: 1418 components: - type: Transform rot: -1.5707963267948966 rad @@ -14640,7 +14996,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1417 + - uid: 1419 components: - type: Transform rot: 3.141592653589793 rad @@ -14649,7 +15005,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1418 + - uid: 1420 components: - type: Transform rot: 1.5707963267948966 rad @@ -14658,7 +15014,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1419 + - uid: 1421 components: - type: Transform pos: 0.5,8.5 @@ -14668,7 +15024,7 @@ entities: - type: TurretIFF - proto: LockerBoozeFilled entities: - - uid: 1420 + - uid: 1422 components: - type: Transform pos: 7.5,7.5 @@ -14721,7 +15077,7 @@ entities: ent: null - proto: LuxuryPen entities: - - uid: 1421 + - uid: 1423 components: - type: Transform rot: -1.5707963267948966 rad @@ -14729,21 +15085,21 @@ entities: parent: 1 - proto: MaterialBiomass entities: - - uid: 1422 + - uid: 1424 components: - type: Transform pos: -5.5318866,7.5747604 parent: 1 - proto: MedalCase entities: - - uid: 1423 + - uid: 1425 components: - type: Transform pos: -3.4919944,-9.185922 parent: 1 - proto: MedicalScanner entities: - - uid: 1424 + - uid: 1426 components: - type: Transform pos: -6.5,7.5 @@ -14753,7 +15109,7 @@ entities: - 1118 - proto: MedkitAdvancedFilled entities: - - uid: 1425 + - uid: 1427 components: - type: Transform pos: -4.2157016,11.484386 @@ -14763,7 +15119,7 @@ entities: linearDamping: 0 - proto: MedkitBruteFilled entities: - - uid: 1426 + - uid: 1428 components: - type: Transform pos: -6.129805,8.493019 @@ -14773,7 +15129,7 @@ entities: linearDamping: 0 - proto: MedkitBurnFilled entities: - - uid: 1427 + - uid: 1429 components: - type: Transform pos: -6.11418,8.680649 @@ -14783,7 +15139,7 @@ entities: linearDamping: 0 - proto: MedkitCombatFilled entities: - - uid: 1428 + - uid: 1430 components: - type: Transform pos: -6.567305,8.743193 @@ -14793,7 +15149,7 @@ entities: linearDamping: 0 - proto: MedkitFilled entities: - - uid: 1429 + - uid: 1431 components: - type: Transform pos: -6.11418,8.821372 @@ -14803,7 +15159,7 @@ entities: linearDamping: 0 - proto: MedkitOxygenFilled entities: - - uid: 1430 + - uid: 1432 components: - type: Transform pos: -6.11418,8.2741165 @@ -14813,7 +15169,7 @@ entities: linearDamping: 0 - proto: MedkitToxinFilled entities: - - uid: 1431 + - uid: 1433 components: - type: Transform pos: -6.58293,8.383568 @@ -14823,112 +15179,113 @@ entities: linearDamping: 0 - proto: Multitool entities: - - uid: 1432 + - uid: 1434 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.4180918,17.145731 parent: 1 - - uid: 1433 + - uid: 1435 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.566712,17.294394 parent: 1 +- proto: N14TableCounterBar + entities: + - uid: 1726 + components: + - type: Transform + pos: 4.5,17.5 + parent: 1 + - uid: 2185 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1 + - uid: 2187 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1 + - uid: 2188 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 - proto: NCWLConscriptAmmoVendory entities: - - uid: 1434 + - uid: 1436 components: - type: Transform pos: -2.5,22.5 parent: 1 - proto: NCWLConscriptGearVendory entities: - - uid: 1435 + - uid: 1437 components: - type: Transform pos: 3.5,22.5 parent: 1 - proto: NCWLConscriptShipVendory entities: - - uid: 1436 + - uid: 1438 components: - type: Transform pos: -0.5,28.5 parent: 1 - proto: NCWLPoster3 entities: - - uid: 1437 + - uid: 1439 components: - type: Transform pos: -3.5,5.5 parent: 1 - proto: NCWLVolginPhoto entities: - - uid: 1438 + - uid: 1440 components: - type: Transform pos: 2.9100273,-1.380785 parent: 1 - proto: NetworkConfigurator entities: - - uid: 1439 + - uid: 1441 components: - type: Transform pos: -3.7073967,18.259022 parent: 1 - type: NetworkConfigurator devices: - 'UID: 58949': 1371 - 'UID: 58952': 1374 - 'UID: 58950': 1372 - 'UID: 58953': 1375 - 'UID: 58954': 1376 - 'UID: 58951': 1373 + 'UID: 58949': 1373 + 'UID: 58952': 1376 + 'UID: 58950': 1374 + 'UID: 58953': 1377 + 'UID: 58954': 1378 + 'UID: 58951': 1375 linkModeActive: False -- proto: OreBox - entities: - - uid: 1440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1 - - uid: 1441 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,14.5 - parent: 1 -- proto: OreProcessor - entities: - - uid: 1442 - components: - - type: Transform - pos: 4.5,15.5 - parent: 1 - proto: OxygenCanister entities: - - uid: 1443 + - uid: 1445 components: - type: Transform pos: -3.5,20.5 parent: 1 - - uid: 1444 + - uid: 1446 components: - type: Transform pos: 4.5,20.5 parent: 1 - proto: PaintingNCWLVolgin entities: - - uid: 1445 + - uid: 1447 components: - type: Transform pos: 1.5,29.5 parent: 1 - proto: Paper entities: - - uid: 1446 + - uid: 1448 components: - type: Transform pos: 0.5536933,-0.5458118 @@ -14948,7 +15305,7 @@ entities: Everything for the Cause. - - uid: 1447 + - uid: 1449 components: - type: Transform pos: 0.6101261,-10.405304 @@ -14970,7 +15327,7 @@ entities: 4. I forgot... - proto: PaperBin20 entities: - - uid: 1448 + - uid: 1450 components: - type: Transform rot: -1.5707963267948966 rad @@ -14978,7 +15335,7 @@ entities: parent: 1 - proto: PaperOffice entities: - - uid: 1449 + - uid: 1451 components: - type: Transform pos: 2.4212117,-1.4017487 @@ -14989,13 +15346,13 @@ entities: -Engineering - - uid: 1450 + - uid: 1452 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.3582358,-8.516942 parent: 1 - - uid: 1451 + - uid: 1453 components: - type: Transform rot: 1.5707963267948966 rad @@ -15003,7 +15360,7 @@ entities: parent: 1 - proto: Pen entities: - - uid: 1452 + - uid: 1454 components: - type: Transform rot: -1.5707963267948966 rad @@ -15020,13 +15377,13 @@ entities: - type: InsideEntityStorage - proto: PlasticFlapsAirtightOpaque entities: - - uid: 1453 + - uid: 1455 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,26.5 parent: 1 - - uid: 1454 + - uid: 1456 components: - type: Transform rot: -1.5707963267948966 rad @@ -15034,119 +15391,119 @@ entities: parent: 1 - proto: PlastitaniumWindow entities: - - uid: 1455 + - uid: 1457 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 1456 + - uid: 1458 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 1457 + - uid: 1459 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 1458 + - uid: 1460 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 1 - - uid: 1459 + - uid: 1461 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 - - uid: 1460 + - uid: 1462 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 1 - - uid: 1461 + - uid: 1463 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 1462 + - uid: 1464 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 1463 + - uid: 1465 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 1464 + - uid: 1466 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1465 + - uid: 1467 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 1466 + - uid: 1468 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 1 - - uid: 1467 + - uid: 1469 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 1 - - uid: 1468 + - uid: 1470 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 1 - - uid: 1469 + - uid: 1471 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 1 - - uid: 1470 + - uid: 1472 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 1 - - uid: 1471 + - uid: 1473 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 1 - - uid: 1472 + - uid: 1474 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-2.5 parent: 1 - - uid: 1473 + - uid: 1475 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - - uid: 1474 + - uid: 1476 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 1 - - uid: 1475 + - uid: 1477 components: - type: Transform rot: -1.5707963267948966 rad @@ -15154,96 +15511,103 @@ entities: parent: 1 - proto: PosterContrabandCommunistState entities: - - uid: 1476 + - uid: 1478 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 1477 + - uid: 1479 components: - type: Transform pos: -2.5,2.5 parent: 1 +- proto: PosterLegitBarDrinks + entities: + - uid: 2189 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1 - proto: PoweredLEDSmallLight entities: - - uid: 1478 + - uid: 1480 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,18.5 parent: 1 - - uid: 1479 + - uid: 1481 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,18.5 parent: 1 - - uid: 1480 + - uid: 1482 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,36.5 parent: 1 - - uid: 1481 + - uid: 1483 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,36.5 parent: 1 - - uid: 1482 + - uid: 1484 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,37.5 parent: 1 - - uid: 1483 + - uid: 1485 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,37.5 parent: 1 - - uid: 1484 + - uid: 1486 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,22.5 parent: 1 - - uid: 1485 + - uid: 1487 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,22.5 parent: 1 - - uid: 1486 + - uid: 1488 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,13.5 parent: 1 - - uid: 1487 + - uid: 1489 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,13.5 parent: 1 - - uid: 1488 + - uid: 1490 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-14.5 parent: 1 - - uid: 1489 + - uid: 1491 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-16.5 parent: 1 - - uid: 1490 + - uid: 1492 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 1491 + - uid: 1493 components: - type: Transform rot: -1.5707963267948966 rad @@ -15251,195 +15615,195 @@ entities: parent: 1 - proto: Poweredlight entities: - - uid: 1492 + - uid: 1494 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,10.5 parent: 1 - - uid: 1493 + - uid: 1495 components: - type: Transform pos: -7.5,27.5 parent: 1 - - uid: 1494 + - uid: 1496 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,32.5 parent: 1 - - uid: 1495 + - uid: 1497 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,32.5 parent: 1 - - uid: 1496 + - uid: 1498 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,20.5 parent: 1 - - uid: 1497 + - uid: 1499 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,6.5 parent: 1 - - uid: 1498 + - uid: 1500 components: - type: Transform pos: 8.5,27.5 parent: 1 - - uid: 1499 + - uid: 1501 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,16.5 parent: 1 - - uid: 1500 + - uid: 1502 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,16.5 parent: 1 - - uid: 1501 + - uid: 1503 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 1502 + - uid: 1504 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,17.5 parent: 1 - - uid: 1503 + - uid: 1505 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 1504 + - uid: 1506 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1505 + - uid: 1507 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,5.5 parent: 1 - - uid: 1506 + - uid: 1508 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,5.5 parent: 1 - - uid: 1507 + - uid: 1509 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 1508 + - uid: 1510 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 1509 + - uid: 1511 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 1510 + - uid: 1512 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,3.5 parent: 1 - - uid: 1511 + - uid: 1513 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-4.5 parent: 1 - - uid: 1512 + - uid: 1514 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-4.5 parent: 1 - - uid: 1513 + - uid: 1515 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-10.5 parent: 1 - - uid: 1514 + - uid: 1516 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-5.5 parent: 1 - - uid: 1515 + - uid: 1517 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-5.5 parent: 1 - - uid: 1516 + - uid: 1518 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 1 - - uid: 1517 + - uid: 1519 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-12.5 parent: 1 - - uid: 1518 + - uid: 1520 components: - type: Transform pos: -3.5,-11.5 parent: 1 - - uid: 1519 + - uid: 1521 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-8.5 parent: 1 - - uid: 1520 + - uid: 1522 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - uid: 1521 + - uid: 1523 components: - type: Transform pos: 2.5,-15.5 parent: 1 - - uid: 1522 + - uid: 1524 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-13.5 parent: 1 - - uid: 1523 + - uid: 1525 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,8.5 parent: 1 - - uid: 1524 + - uid: 1526 components: - type: Transform pos: -0.5,28.5 parent: 1 - - uid: 1525 + - uid: 1527 components: - type: Transform rot: 1.5707963267948966 rad @@ -15447,120 +15811,120 @@ entities: parent: 1 - proto: PoweredlightRed entities: - - uid: 1526 + - uid: 1528 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,36.5 parent: 1 - - uid: 1527 + - uid: 1529 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,36.5 parent: 1 - - uid: 1528 + - uid: 1530 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,38.5 parent: 1 - - uid: 1529 + - uid: 1531 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,38.5 parent: 1 - - uid: 1530 + - uid: 1532 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,36.5 parent: 1 - - uid: 1531 + - uid: 1533 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,34.5 parent: 1 - - uid: 1532 + - uid: 1534 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,13.5 parent: 1 - - uid: 1533 + - uid: 1535 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,36.5 parent: 1 - - uid: 1534 + - uid: 1536 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,13.5 parent: 1 - - uid: 1535 + - uid: 1537 components: - type: Transform pos: 8.5,-19.5 parent: 1 - - uid: 1536 + - uid: 1538 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,34.5 parent: 1 - - uid: 1537 + - uid: 1539 components: - type: Transform pos: -7.5,22.5 parent: 1 - - uid: 1538 + - uid: 1540 components: - type: Transform pos: 8.5,22.5 parent: 1 - - uid: 1539 + - uid: 1541 components: - type: Transform pos: 0.5,-20.5 parent: 1 - - uid: 1540 + - uid: 1542 components: - type: Transform pos: -7.5,-19.5 parent: 1 - - uid: 1541 + - uid: 1543 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 1542 + - uid: 1544 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-3.5 parent: 1 - - uid: 1543 + - uid: 1545 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-3.5 parent: 1 - - uid: 1544 + - uid: 1546 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 1545 + - uid: 1547 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 1 - - uid: 1546 + - uid: 1548 components: - type: Transform rot: -1.5707963267948966 rad @@ -15568,12 +15932,12 @@ entities: parent: 1 - proto: PoweredSmallLightEmpty entities: - - uid: 1547 + - uid: 1549 components: - type: Transform pos: 2.5,28.5 parent: 1 - - uid: 1548 + - uid: 1550 components: - type: Transform rot: 1.5707963267948966 rad @@ -15581,389 +15945,389 @@ entities: parent: 1 - proto: Rack entities: - - uid: 1549 + - uid: 1551 components: - type: Transform pos: 2.5,-12.5 parent: 1 - - uid: 1550 + - uid: 1552 components: - type: Transform pos: -9.5,-12.5 parent: 1 - - uid: 1551 + - uid: 1553 components: - type: Transform pos: 2.5,30.5 parent: 1 - - uid: 1552 + - uid: 1554 components: - type: Transform pos: -9.5,-10.5 parent: 1 - proto: RadioHandheld entities: - - uid: 1553 + - uid: 1555 components: - type: Transform pos: 5.370796,34.6056 parent: 1 - - uid: 1554 + - uid: 1556 components: - type: Transform pos: 5.4748306,34.67993 parent: 1 - - uid: 1555 + - uid: 1557 components: - type: Transform pos: 5.534279,34.560997 parent: 1 - - uid: 1556 + - uid: 1558 components: - type: Transform pos: 5.2964873,34.67993 parent: 1 - - uid: 1557 + - uid: 1559 components: - type: Transform pos: 5.564003,34.739395 parent: 1 - - uid: 1558 + - uid: 1560 components: - type: Transform pos: 5.682898,34.665062 parent: 1 - proto: Railing entities: - - uid: 1559 + - uid: 1561 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-1.5 parent: 1 - - uid: 1560 + - uid: 1562 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-1.5 parent: 1 - - uid: 1561 + - uid: 1563 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 1 - - uid: 1562 + - uid: 1564 components: - type: Transform pos: -0.5,35.5 parent: 1 - - uid: 1563 + - uid: 1565 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 1564 + - uid: 1566 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 1565 + - uid: 1567 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 1 - - uid: 1566 + - uid: 1568 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 1 - - uid: 1567 + - uid: 1569 components: - type: Transform pos: 1.5,35.5 parent: 1 - - uid: 1568 + - uid: 1570 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - - uid: 1569 + - uid: 1571 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 1 - - uid: 1570 + - uid: 1572 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 1571 + - uid: 1573 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,31.5 parent: 1 - - uid: 1572 + - uid: 1574 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,30.5 parent: 1 - - uid: 1573 + - uid: 1575 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 1574 + - uid: 1576 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,20.5 parent: 1 - - uid: 1575 + - uid: 1577 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,19.5 parent: 1 - - uid: 1576 + - uid: 1578 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,17.5 parent: 1 - - uid: 1577 + - uid: 1579 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,18.5 parent: 1 - - uid: 1578 + - uid: 1580 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,0.5 parent: 1 - - uid: 1579 + - uid: 1581 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,2.5 parent: 1 - - uid: 1580 + - uid: 1582 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,16.5 parent: 1 - - uid: 1581 + - uid: 1583 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 1 - - uid: 1582 + - uid: 1584 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-1.5 parent: 1 - - uid: 1583 + - uid: 1585 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-3.5 parent: 1 - - uid: 1584 + - uid: 1586 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-3.5 parent: 1 - - uid: 1585 + - uid: 1587 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-1.5 parent: 1 - - uid: 1586 + - uid: 1588 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 1 - - uid: 1587 + - uid: 1589 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,0.5 parent: 1 - - uid: 1588 + - uid: 1590 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,2.5 parent: 1 - - uid: 1589 + - uid: 1591 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,20.5 parent: 1 - - uid: 1590 + - uid: 1592 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,19.5 parent: 1 - - uid: 1591 + - uid: 1593 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,18.5 parent: 1 - - uid: 1592 + - uid: 1594 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,17.5 parent: 1 - - uid: 1593 + - uid: 1595 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,16.5 parent: 1 - - uid: 1594 + - uid: 1596 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,38.5 parent: 1 - - uid: 1595 + - uid: 1597 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,38.5 parent: 1 - - uid: 1596 + - uid: 1598 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,38.5 parent: 1 - - uid: 1597 + - uid: 1599 components: - type: Transform pos: 0.5,26.5 parent: 1 - proto: RailingCorner entities: - - uid: 1598 + - uid: 1600 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-2.5 parent: 1 - - uid: 1599 + - uid: 1601 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 1600 + - uid: 1602 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,33.5 parent: 1 - - uid: 1601 + - uid: 1603 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,8.5 parent: 1 - - uid: 1602 + - uid: 1604 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,32.5 parent: 1 - - uid: 1603 + - uid: 1605 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,33.5 parent: 1 - - uid: 1604 + - uid: 1606 components: - type: Transform pos: 8.5,22.5 parent: 1 - - uid: 1605 + - uid: 1607 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,13.5 parent: 1 - - uid: 1606 + - uid: 1608 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,22.5 parent: 1 - - uid: 1607 + - uid: 1609 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,13.5 parent: 1 - - uid: 1608 + - uid: 1610 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-8.5 parent: 1 - - uid: 1609 + - uid: 1611 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-8.5 parent: 1 - - uid: 1610 + - uid: 1612 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,34.5 parent: 1 - - uid: 1611 + - uid: 1613 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,34.5 parent: 1 - - uid: 1612 + - uid: 1614 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,36.5 parent: 1 - - uid: 1613 + - uid: 1615 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,36.5 parent: 1 - - uid: 1614 + - uid: 1616 components: - type: Transform pos: 1.5,26.5 parent: 1 - - uid: 1615 + - uid: 1617 components: - type: Transform rot: -1.5707963267948966 rad @@ -15971,13 +16335,13 @@ entities: parent: 1 - proto: RailingCornerSmall entities: - - uid: 1616 + - uid: 1618 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-0.5 parent: 1 - - uid: 1617 + - uid: 1619 components: - type: Transform rot: 1.5707963267948966 rad @@ -15985,7 +16349,7 @@ entities: parent: 1 - proto: RCD entities: - - uid: 1618 + - uid: 1620 components: - type: Transform rot: 1.5707963267948966 rad @@ -15993,13 +16357,13 @@ entities: parent: 1 - proto: RCDAmmo entities: - - uid: 1619 + - uid: 1621 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.646629,-16.607515 parent: 1 - - uid: 1620 + - uid: 1622 components: - type: Transform rot: 1.5707963267948966 rad @@ -16007,28 +16371,28 @@ entities: parent: 1 - proto: RubberStampApproved entities: - - uid: 1621 + - uid: 1623 components: - type: Transform pos: -0.015409172,-10.201724 parent: 1 - proto: RubberStampDenied entities: - - uid: 1622 + - uid: 1624 components: - type: Transform pos: -0.015409172,-10.380118 parent: 1 - proto: RubberStampNCWLCommand entities: - - uid: 1623 + - uid: 1625 components: - type: Transform pos: -0.0005475879,-10.5733795 parent: 1 - proto: SheetPlasma1 entities: - - uid: 1624 + - uid: 1626 components: - type: Transform pos: -4.402343,9.6974325 @@ -16036,7 +16400,7 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 1625 + - uid: 1627 components: - type: Transform pos: -4.79568,10.145023 @@ -16044,7 +16408,7 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 1626 + - uid: 1628 components: - type: Transform pos: -4.226019,10.185714 @@ -16054,7 +16418,7 @@ entities: linearDamping: 0 - proto: ShotGunCabinetFilled entities: - - uid: 1627 + - uid: 1629 components: - type: Transform rot: -1.5707963267948966 rad @@ -16062,7 +16426,7 @@ entities: parent: 1 - proto: ShuttersNormal entities: - - uid: 1628 + - uid: 1630 components: - type: Transform rot: 1.5707963267948966 rad @@ -16070,8 +16434,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1637 - - uid: 1629 + - 1639 + - uid: 1631 components: - type: Transform rot: 1.5707963267948966 rad @@ -16079,8 +16443,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1637 - - uid: 1630 + - 1639 + - uid: 1632 components: - type: Transform rot: 1.5707963267948966 rad @@ -16088,44 +16452,28 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1637 + - 1639 - proto: ShuttersNormalOpen entities: - - uid: 1631 - components: - - type: Transform - pos: 0.5,-7.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1635 - - uid: 1632 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1635 - uid: 1633 components: - type: Transform - pos: 3.5,19.5 + pos: 0.5,-7.5 parent: 1 - type: DeviceLinkSink links: - - 1638 + - 1637 - uid: 1634 components: - type: Transform - pos: 2.5,19.5 + pos: 1.5,-7.5 parent: 1 - type: DeviceLinkSink links: - - 1638 + - 1637 - proto: SignalButton entities: - - uid: 1635 + - uid: 1637 components: - type: Transform rot: -1.5707963267948966 rad @@ -16133,13 +16481,13 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1632: + 1634: - - Pressed - Toggle - 1631: + 1633: - - Pressed - Toggle - - uid: 1636 + - uid: 1638 components: - type: Transform rot: -1.5707963267948966 rad @@ -16189,7 +16537,7 @@ entities: 209: - - Pressed - Toggle - - uid: 1637 + - uid: 1639 components: - type: MetaData name: armory shutters @@ -16199,30 +16547,16 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1628: - - - Pressed - - Toggle - 1629: - - - Pressed - - Toggle 1630: - - Pressed - Toggle - - uid: 1638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,19.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1634: + 1631: - - Pressed - Toggle - 1633: + 1632: - - Pressed - Toggle - - uid: 1639 + - uid: 1641 components: - type: Transform rot: 1.5707963267948966 rad @@ -16233,7 +16567,7 @@ entities: 198: - - Pressed - Toggle - - uid: 1640 + - uid: 1642 components: - type: Transform pos: 2.5,35.5 @@ -16249,7 +16583,7 @@ entities: 192: - - Pressed - Toggle - - uid: 1641 + - uid: 1643 components: - type: Transform rot: -1.5707963267948966 rad @@ -16260,7 +16594,7 @@ entities: 197: - - Pressed - Toggle - - uid: 1642 + - uid: 1644 components: - type: Transform rot: -1.5707963267948966 rad @@ -16271,7 +16605,7 @@ entities: 196: - - Pressed - Toggle - - uid: 1643 + - uid: 1645 components: - type: Transform rot: 1.5707963267948966 rad @@ -16282,7 +16616,7 @@ entities: 195: - - Pressed - Toggle - - uid: 1644 + - uid: 1646 components: - type: Transform rot: -1.5707963267948966 rad @@ -16293,7 +16627,7 @@ entities: 194: - - Pressed - Toggle - - uid: 1645 + - uid: 1647 components: - type: Transform rot: 1.5707963267948966 rad @@ -16304,62 +16638,116 @@ entities: 193: - - Pressed - Toggle + - uid: 2193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1260: + - - Pressed + - Toggle + 334: + - - Pressed + - Toggle + 2084: + - - Pressed + - Toggle + - uid: 2194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 51: + - - Pressed + - Toggle + 2077: + - - Pressed + - Toggle + 2076: + - - Pressed + - Toggle + - uid: 2195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,19.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1259: + - - Pressed + - Toggle + 41: + - - Pressed + - Toggle + 1636: + - - Pressed + - Toggle + 1635: + - - Pressed + - Toggle - proto: SignBridge entities: - - uid: 1646 + - uid: 1648 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 1647 + - uid: 1649 components: - type: Transform pos: 4.5,-4.5 parent: 1 - proto: SignChem entities: - - uid: 1648 + - uid: 1650 components: - type: Transform pos: -3.5,10.5 parent: 1 - proto: SignConference entities: - - uid: 1649 + - uid: 1651 components: - type: Transform pos: 1.5,13.5 parent: 1 - proto: SignCryo entities: - - uid: 1650 + - uid: 1652 components: - type: Transform pos: 4.5,7.5 parent: 1 - proto: SignEngineering entities: - - uid: 1651 + - uid: 1653 components: - type: Transform pos: 6.5,-7.5 parent: 1 - proto: SignLastIdiot entities: - - uid: 1652 + - uid: 1654 components: - type: Transform pos: -3.5,29.5 parent: 1 - proto: SignSpace entities: - - uid: 1653 + - uid: 1655 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-0.5 parent: 1 - - uid: 1654 + - uid: 1656 components: - type: Transform rot: 1.5707963267948966 rad @@ -16367,13 +16755,13 @@ entities: parent: 1 - proto: SinkWide entities: - - uid: 1655 + - uid: 1657 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-15.5 parent: 1 - - uid: 1656 + - uid: 1658 components: - type: Transform rot: 1.5707963267948966 rad @@ -16381,22 +16769,22 @@ entities: parent: 1 - proto: SMESBasic entities: - - uid: 1657 + - uid: 1659 components: - type: Transform pos: 10.5,-10.5 parent: 1 - - uid: 1658 + - uid: 1660 components: - type: Transform pos: 10.5,-12.5 parent: 1 - - uid: 1659 + - uid: 1661 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 1660 + - uid: 1662 components: - type: Transform pos: -7.5,4.5 @@ -16410,29 +16798,37 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: SodaDispenser + entities: + - uid: 1640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,18.5 + parent: 1 - proto: StairStageDark entities: - - uid: 1661 + - uid: 1663 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 1662 + - uid: 1664 components: - type: Transform pos: 2.5,32.5 parent: 1 - - uid: 1663 + - uid: 1665 components: - type: Transform pos: -1.5,32.5 parent: 1 - - uid: 1664 + - uid: 1666 components: - type: Transform pos: -7.5,8.5 parent: 1 - - uid: 1665 + - uid: 1667 components: - type: Transform rot: 3.141592653589793 rad @@ -16440,66 +16836,66 @@ entities: parent: 1 - proto: StationMap entities: - - uid: 1666 + - uid: 1668 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 1667 + - uid: 1669 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,18.5 parent: 1 - - uid: 1668 + - uid: 1670 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,33.5 parent: 1 - - uid: 1669 + - uid: 1671 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - - uid: 1670 + - uid: 1672 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-2.5 parent: 1 - - uid: 1671 + - uid: 1673 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,0.5 parent: 1 - - uid: 1672 + - uid: 1674 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,0.5 parent: 1 - - uid: 1673 + - uid: 1675 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-9.5 parent: 1 - - uid: 1674 + - uid: 1676 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 1 - - uid: 1675 + - uid: 1677 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,23.5 parent: 1 - - uid: 1676 + - uid: 1678 components: - type: Transform rot: -1.5707963267948966 rad @@ -16507,19 +16903,39 @@ entities: parent: 1 - proto: SteelBench entities: - - uid: 1677 + - uid: 1679 components: - type: Transform pos: 6.5,-6.5 parent: 1 +- proto: StoolBar + entities: + - uid: 184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,18.5 + parent: 1 + - uid: 1779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,17.5 + parent: 1 + - uid: 2186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 1 - proto: SubstationBasic entities: - - uid: 1678 + - uid: 1680 components: - type: Transform pos: -4.5,5.5 parent: 1 - - uid: 1679 + - uid: 1681 components: - type: Transform pos: 0.5,-16.5 @@ -16800,145 +17216,145 @@ entities: - 126 - proto: SurveillanceCameraGeneral entities: - - uid: 1680 + - uid: 1682 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,1.5 parent: 1 - - uid: 1681 + - uid: 1683 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,1.5 parent: 1 - - uid: 1682 + - uid: 1684 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 - - uid: 1683 + - uid: 1685 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,3.5 parent: 1 - - uid: 1684 + - uid: 1686 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 1685 + - uid: 1687 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 1686 + - uid: 1688 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-9.5 parent: 1 - - uid: 1687 + - uid: 1689 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-9.5 parent: 1 - - uid: 1688 + - uid: 1690 components: - type: Transform pos: -5.5,-16.5 parent: 1 - - uid: 1689 + - uid: 1691 components: - type: Transform pos: -2.5,-16.5 parent: 1 - - uid: 1690 + - uid: 1692 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - uid: 1691 + - uid: 1693 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-11.5 parent: 1 - - uid: 1692 + - uid: 1694 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 1693 + - uid: 1695 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-8.5 parent: 1 - - uid: 1694 + - uid: 1696 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 - - uid: 1695 + - uid: 1697 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 1696 + - uid: 1698 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 1697 + - uid: 1699 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 1698 + - uid: 1700 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,18.5 parent: 1 - - uid: 1699 + - uid: 1701 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,18.5 parent: 1 - - uid: 1700 + - uid: 1702 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,28.5 parent: 1 - - uid: 1701 + - uid: 1703 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,34.5 parent: 1 - - uid: 1702 + - uid: 1704 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,34.5 parent: 1 - - uid: 1703 + - uid: 1705 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,37.5 parent: 1 - - uid: 1704 + - uid: 1706 components: - type: Transform rot: 1.5707963267948966 rad @@ -16946,142 +17362,137 @@ entities: parent: 1 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 1705 + - uid: 1707 components: - type: Transform pos: 5.5,13.5 parent: 1 - proto: Table entities: - - uid: 1706 + - uid: 1708 components: - type: Transform pos: 6.5,34.5 parent: 1 - - uid: 1707 + - uid: 1709 components: - type: Transform pos: 5.5,34.5 parent: 1 - proto: TableGlass entities: - - uid: 1708 + - uid: 1710 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 1709 + - uid: 1711 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 1710 + - uid: 1712 components: - type: Transform pos: -4.5,11.5 parent: 1 - proto: TableReinforced entities: - - uid: 1711 + - uid: 1713 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 1712 + - uid: 1714 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-4.5 parent: 1 - - uid: 1713 + - uid: 1715 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 1 - - uid: 1714 + - uid: 1716 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-4.5 parent: 1 - - uid: 1715 + - uid: 1717 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-4.5 parent: 1 - - uid: 1716 + - uid: 1718 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-1.5 parent: 1 - - uid: 1717 + - uid: 1719 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 - - uid: 1718 + - uid: 1720 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 1 - - uid: 1719 + - uid: 1721 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-4.5 parent: 1 - - uid: 1720 + - uid: 1722 components: - type: Transform pos: -3.5,-11.5 parent: 1 - - uid: 1721 + - uid: 1723 components: - type: Transform pos: -4.5,-11.5 parent: 1 - - uid: 1722 + - uid: 1724 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-16.5 parent: 1 - - uid: 1723 + - uid: 1725 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-16.5 parent: 1 - - uid: 1724 - components: - - type: Transform - pos: 4.5,16.5 - parent: 1 - - uid: 1725 + - uid: 1727 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,17.5 parent: 1 - - uid: 1726 + - uid: 1728 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,18.5 parent: 1 - - uid: 1727 + - uid: 1729 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 1728 + - uid: 1730 components: - type: Transform rot: 1.5707963267948966 rad @@ -17089,25 +17500,25 @@ entities: parent: 1 - proto: TableWood entities: - - uid: 1729 + - uid: 1731 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-9.5 parent: 1 - - uid: 1730 + - uid: 1732 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-10.5 parent: 1 - - uid: 1731 + - uid: 1733 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 1 - - uid: 1732 + - uid: 1734 components: - type: Transform rot: 1.5707963267948966 rad @@ -17115,7 +17526,7 @@ entities: parent: 1 - proto: TelecomServer entities: - - uid: 1230 + - uid: 1232 components: - type: Transform pos: -4.5,13.5 @@ -17126,7 +17537,7 @@ entities: showEnts: False occludes: True ents: - - 1231 + - 1233 machine_board: !type:Container showEnts: False occludes: True @@ -17137,38 +17548,38 @@ entities: ents: [] - proto: TelecomServerFilledNovaBalreska entities: - - uid: 1733 + - uid: 1735 components: - type: Transform pos: 0.5,-5.5 parent: 1 - proto: ThrusterNCWLFighter entities: - - uid: 1734 + - uid: 1736 components: - type: Transform pos: -8.5,-7.5 parent: 1 - - uid: 1735 + - uid: 1737 components: - type: Transform pos: -9.5,-7.5 parent: 1 - proto: ThrusterNCWLWarship entities: - - uid: 1736 + - uid: 1738 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-10.5 parent: 1 - - uid: 1737 + - uid: 1739 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-18.5 parent: 1 - - uid: 1738 + - uid: 1740 components: - type: Transform rot: -1.5707963267948966 rad @@ -17176,85 +17587,85 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 1739 + - uid: 1741 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-18.5 parent: 1 - - uid: 1740 + - uid: 1742 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-12.5 parent: 1 - - uid: 1741 + - uid: 1743 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-11.5 parent: 1 - - uid: 1742 + - uid: 1744 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-18.5 parent: 1 - - uid: 1743 + - uid: 1745 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-18.5 parent: 1 - - uid: 1744 + - uid: 1746 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-19.5 parent: 1 - - uid: 1745 + - uid: 1747 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-18.5 parent: 1 - - uid: 1746 + - uid: 1748 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-18.5 parent: 1 - - uid: 1747 + - uid: 1749 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-18.5 parent: 1 - - uid: 1748 + - uid: 1750 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-18.5 parent: 1 - - uid: 1749 + - uid: 1751 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-11.5 parent: 1 - - uid: 1750 + - uid: 1752 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-12.5 parent: 1 - - uid: 1751 + - uid: 1753 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-14.5 parent: 1 - - uid: 1752 + - uid: 1754 components: - type: Transform rot: 3.141592653589793 rad @@ -17262,25 +17673,25 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 1753 + - uid: 1755 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-19.5 parent: 1 - - uid: 1754 + - uid: 1756 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 parent: 1 - - uid: 1755 + - uid: 1757 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-19.5 parent: 1 - - uid: 1756 + - uid: 1758 components: - type: Transform rot: -1.5707963267948966 rad @@ -17288,25 +17699,25 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 1757 + - uid: 1759 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,32.5 parent: 1 - - uid: 1758 + - uid: 1760 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,31.5 parent: 1 - - uid: 1759 + - uid: 1761 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,30.5 parent: 1 - - uid: 1760 + - uid: 1762 components: - type: Transform rot: -1.5707963267948966 rad @@ -17316,7 +17727,7 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 1 - - uid: 1761 + - uid: 1763 components: - type: Transform rot: -1.5707963267948966 rad @@ -17324,35 +17735,35 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 1762 + - uid: 1764 components: - type: Transform pos: 9.5,-7.5 parent: 1 - - uid: 1763 + - uid: 1765 components: - type: Transform pos: 10.5,-7.5 parent: 1 - - uid: 1764 + - uid: 1766 components: - type: Transform pos: 6.5,38.5 parent: 1 - - uid: 1765 + - uid: 1767 components: - type: Transform pos: -5.5,38.5 parent: 1 - proto: ToiletDirtyWater entities: - - uid: 1766 + - uid: 1768 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 1 - - uid: 1767 + - uid: 1769 components: - type: Transform rot: 1.5707963267948966 rad @@ -17360,21 +17771,21 @@ entities: parent: 1 - proto: ToolboxElectricalFilled entities: - - uid: 1768 + - uid: 1770 components: - type: Transform pos: -3.4924016,18.751282 parent: 1 - proto: ToolboxMechanicalFilled entities: - - uid: 1769 + - uid: 1771 components: - type: Transform pos: -3.4924016,18.498556 parent: 1 - proto: TwoWayLever entities: - - uid: 1770 + - uid: 1772 components: - type: Transform pos: -5.5,26.5 @@ -17402,7 +17813,7 @@ entities: - Reverse - - Middle - Off - - uid: 1771 + - uid: 1773 components: - type: Transform pos: 6.5,26.5 @@ -17432,49 +17843,42 @@ entities: - Off - proto: UnionfallClementineMothershipComputer entities: - - uid: 1772 + - uid: 1774 components: - type: Transform pos: 1.5,28.5 parent: 1 - proto: UnionfallShipNodeNCWL entities: - - uid: 1773 + - uid: 1775 components: - type: Transform pos: 0.5,9.5 parent: 1 - proto: VendingMachineChemicals entities: - - uid: 1774 + - uid: 1776 components: - type: Transform pos: -4.5,8.5 parent: 1 - proto: VendingMachineColaBlack entities: - - uid: 1775 + - uid: 1777 components: - type: Transform pos: -4.5,-6.5 parent: 1 - proto: VendingMachineMedical entities: - - uid: 1776 + - uid: 1778 components: - type: Transform pos: -5.5,8.5 parent: 1 -- proto: VendingMachineSalvage - entities: - - uid: 1777 - components: - - type: Transform - pos: 4.5,18.5 - parent: 1 - proto: VendingMachineSnack entities: - - uid: 1778 + - uid: 1780 components: - type: Transform rot: 3.141592653589793 rad @@ -17482,14 +17886,14 @@ entities: parent: 1 - proto: VendingMachineSnackOrange entities: - - uid: 1779 + - uid: 1781 components: - type: Transform pos: 5.5,-6.5 parent: 1 - proto: VendingMachineSoda entities: - - uid: 1780 + - uid: 1782 components: - type: Transform rot: 3.141592653589793 rad @@ -17497,14 +17901,14 @@ entities: parent: 1 - proto: VendingMachineSovietSoda entities: - - uid: 1781 + - uid: 1783 components: - type: Transform pos: -5.5,30.5 parent: 1 - proto: VendingMachineSustenance entities: - - uid: 1782 + - uid: 1784 components: - type: Transform rot: 3.141592653589793 rad @@ -17512,1820 +17916,1790 @@ entities: parent: 1 - proto: VendingMachineTankDispenserEVA entities: - - uid: 1783 + - uid: 1785 components: - type: Transform pos: 6.5,31.5 parent: 1 - - uid: 1784 + - uid: 1786 components: - type: Transform pos: 6.5,30.5 parent: 1 - - uid: 1785 + - uid: 1787 components: - type: Transform pos: -6.5,24.5 parent: 1 - - uid: 1786 + - uid: 1788 components: - type: Transform pos: 7.5,24.5 parent: 1 - proto: VendingMachineYouTool entities: - - uid: 1787 + - uid: 1789 components: - type: Transform pos: -3.5,15.5 parent: 1 - proto: WallPlastitanium entities: - - uid: 1788 + - uid: 1790 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-5.5 parent: 1 - - uid: 1789 + - uid: 1791 components: - type: Transform pos: 4.5,-4.5 parent: 1 - - uid: 1790 + - uid: 1792 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 1791 + - uid: 1793 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-8.5 parent: 1 - - uid: 1792 + - uid: 1794 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 1793 + - uid: 1795 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-9.5 parent: 1 - - uid: 1794 + - uid: 1796 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 1795 + - uid: 1797 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 1796 + - uid: 1798 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 1797 + - uid: 1799 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 1798 + - uid: 1800 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 1799 + - uid: 1801 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 1 - - uid: 1800 + - uid: 1802 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 1 - - uid: 1801 + - uid: 1803 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-5.5 parent: 1 - - uid: 1802 + - uid: 1804 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-6.5 parent: 1 - - uid: 1803 + - uid: 1805 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-7.5 parent: 1 - - uid: 1804 + - uid: 1806 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-7.5 parent: 1 - - uid: 1805 + - uid: 1807 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-7.5 parent: 1 - - uid: 1806 + - uid: 1808 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 1 - - uid: 1807 + - uid: 1809 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 1 - - uid: 1808 + - uid: 1810 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-7.5 parent: 1 - - uid: 1809 + - uid: 1811 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-6.5 parent: 1 - - uid: 1810 + - uid: 1812 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-10.5 parent: 1 - - uid: 1811 + - uid: 1813 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-11.5 parent: 1 - - uid: 1812 + - uid: 1814 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-11.5 parent: 1 - - uid: 1813 + - uid: 1815 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-10.5 parent: 1 - - uid: 1814 + - uid: 1816 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-9.5 parent: 1 - - uid: 1815 + - uid: 1817 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 1 - - uid: 1816 + - uid: 1818 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 1817 + - uid: 1819 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 1818 + - uid: 1820 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 1819 + - uid: 1821 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 1820 + - uid: 1822 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 1821 + - uid: 1823 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 1822 + - uid: 1824 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 1823 + - uid: 1825 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 1824 + - uid: 1826 components: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 1825 + - uid: 1827 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 1826 + - uid: 1828 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,30.5 parent: 1 - - uid: 1827 + - uid: 1829 components: - type: Transform pos: 1.5,-18.5 parent: 1 - - uid: 1828 + - uid: 1830 components: - type: Transform pos: -4.5,-7.5 parent: 1 - - uid: 1829 + - uid: 1831 components: - type: Transform pos: -4.5,-8.5 parent: 1 - - uid: 1830 + - uid: 1832 components: - type: Transform pos: -4.5,-9.5 parent: 1 - - uid: 1831 + - uid: 1833 components: - type: Transform pos: -4.5,-10.5 parent: 1 - - uid: 1832 + - uid: 1834 components: - type: Transform pos: -3.5,-10.5 parent: 1 - - uid: 1833 + - uid: 1835 components: - type: Transform pos: -10.5,-12.5 parent: 1 - - uid: 1834 + - uid: 1836 components: - type: Transform pos: -1.5,-17.5 parent: 1 - - uid: 1835 + - uid: 1837 components: - type: Transform pos: -0.5,-17.5 parent: 1 - - uid: 1836 + - uid: 1838 components: - type: Transform pos: -2.5,-18.5 parent: 1 - - uid: 1837 + - uid: 1839 components: - type: Transform pos: -3.5,-17.5 parent: 1 - - uid: 1838 + - uid: 1840 components: - type: Transform pos: -5.5,-17.5 parent: 1 - - uid: 1839 + - uid: 1841 components: - type: Transform pos: -7.5,-17.5 parent: 1 - - uid: 1840 + - uid: 1842 components: - type: Transform pos: 11.5,-12.5 parent: 1 - - uid: 1841 + - uid: 1843 components: - type: Transform pos: 11.5,-10.5 parent: 1 - - uid: 1842 + - uid: 1844 components: - type: Transform pos: 11.5,-9.5 parent: 1 - - uid: 1843 + - uid: 1845 components: - type: Transform pos: -10.5,-10.5 parent: 1 - - uid: 1844 + - uid: 1846 components: - type: Transform pos: -10.5,-13.5 parent: 1 - - uid: 1845 + - uid: 1847 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-6.5 parent: 1 - - uid: 1846 + - uid: 1848 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 1847 + - uid: 1849 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 1 - - uid: 1848 + - uid: 1850 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,13.5 parent: 1 - - uid: 1849 + - uid: 1851 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-0.5 parent: 1 - - uid: 1850 + - uid: 1852 components: - type: Transform pos: -11.5,-13.5 parent: 1 - - uid: 1851 + - uid: 1853 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-7.5 parent: 1 - - uid: 1852 + - uid: 1854 components: - type: Transform pos: 5.5,-7.5 parent: 1 - - uid: 1853 + - uid: 1855 components: - type: Transform pos: 8.5,-15.5 parent: 1 - - uid: 1854 + - uid: 1856 components: - type: Transform pos: 8.5,-17.5 parent: 1 - - uid: 1855 + - uid: 1857 components: - type: Transform pos: 5.5,-17.5 parent: 1 - - uid: 1856 + - uid: 1858 components: - type: Transform pos: -1.5,-18.5 parent: 1 - - uid: 1857 + - uid: 1859 components: - type: Transform pos: 1.5,-17.5 parent: 1 - - uid: 1858 + - uid: 1860 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-4.5 parent: 1 - - uid: 1859 + - uid: 1861 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-6.5 parent: 1 - - uid: 1860 + - uid: 1862 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-7.5 parent: 1 - - uid: 1861 + - uid: 1863 components: - type: Transform pos: 12.5,-13.5 parent: 1 - - uid: 1862 + - uid: 1864 components: - type: Transform pos: -7.5,-15.5 parent: 1 - - uid: 1863 + - uid: 1865 components: - type: Transform pos: -7.5,-16.5 parent: 1 - - uid: 1864 + - uid: 1866 components: - type: Transform pos: 9.5,-15.5 parent: 1 - - uid: 1865 + - uid: 1867 components: - type: Transform pos: 8.5,-18.5 parent: 1 - - uid: 1866 + - uid: 1868 components: - type: Transform pos: 6.5,-17.5 parent: 1 - - uid: 1867 + - uid: 1869 components: - type: Transform pos: 3.5,-17.5 parent: 1 - - uid: 1868 + - uid: 1870 components: - type: Transform pos: 3.5,-18.5 parent: 1 - - uid: 1869 + - uid: 1871 components: - type: Transform pos: 11.5,-13.5 parent: 1 - - uid: 1870 + - uid: 1872 components: - type: Transform pos: 4.5,-17.5 parent: 1 - - uid: 1871 + - uid: 1873 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 1872 + - uid: 1874 components: - type: Transform pos: 0.5,-17.5 parent: 1 - - uid: 1873 + - uid: 1875 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-4.5 parent: 1 - - uid: 1874 + - uid: 1876 components: - type: Transform pos: 7.5,-17.5 parent: 1 - - uid: 1875 + - uid: 1877 components: - type: Transform pos: 8.5,-16.5 parent: 1 - - uid: 1876 + - uid: 1878 components: - type: Transform pos: -2.5,-17.5 parent: 1 - - uid: 1877 + - uid: 1879 components: - type: Transform pos: -4.5,-17.5 parent: 1 - - uid: 1878 + - uid: 1880 components: - type: Transform pos: -6.5,-17.5 parent: 1 - - uid: 1879 + - uid: 1881 components: - type: Transform pos: -7.5,-18.5 parent: 1 - - uid: 1880 + - uid: 1882 components: - type: Transform pos: 11.5,-11.5 parent: 1 - - uid: 1881 + - uid: 1883 components: - type: Transform pos: -10.5,-11.5 parent: 1 - - uid: 1882 + - uid: 1884 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 1883 + - uid: 1885 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 1 - - uid: 1884 + - uid: 1886 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-5.5 parent: 1 - - uid: 1885 + - uid: 1887 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 1886 + - uid: 1888 components: - type: Transform pos: 10.5,-13.5 parent: 1 - - uid: 1887 + - uid: 1889 components: - type: Transform pos: 10.5,-14.5 parent: 1 - - uid: 1888 + - uid: 1890 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 1 - - uid: 1889 + - uid: 1891 components: - type: Transform pos: 2.5,-18.5 parent: 1 - - uid: 1890 + - uid: 1892 components: - type: Transform pos: 0.5,-18.5 parent: 1 - - uid: 1891 + - uid: 1893 components: - type: Transform pos: -0.5,-18.5 parent: 1 - - uid: 1892 + - uid: 1894 components: - type: Transform pos: 8.5,-8.5 parent: 1 - - uid: 1893 + - uid: 1895 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 1894 + - uid: 1896 components: - type: Transform pos: 12.5,-14.5 parent: 1 - - uid: 1895 + - uid: 1897 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-8.5 parent: 1 - - uid: 1896 + - uid: 1898 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-9.5 parent: 1 - - uid: 1897 + - uid: 1899 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-8.5 parent: 1 - - uid: 1898 + - uid: 1900 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-8.5 parent: 1 - - uid: 1899 + - uid: 1901 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-8.5 parent: 1 - - uid: 1900 + - uid: 1902 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-9.5 parent: 1 - - uid: 1901 + - uid: 1903 components: - type: Transform pos: 8.5,-12.5 parent: 1 - - uid: 1902 + - uid: 1904 components: - type: Transform pos: -6.5,-7.5 parent: 1 - - uid: 1903 + - uid: 1905 components: - type: Transform pos: -6.5,-8.5 parent: 1 - - uid: 1904 + - uid: 1906 components: - type: Transform pos: -6.5,-9.5 parent: 1 - - uid: 1905 + - uid: 1907 components: - type: Transform pos: -6.5,-13.5 parent: 1 - - uid: 1906 + - uid: 1908 components: - type: Transform pos: -6.5,-14.5 parent: 1 - - uid: 1907 + - uid: 1909 components: - type: Transform pos: -6.5,-15.5 parent: 1 - - uid: 1908 + - uid: 1910 components: - type: Transform pos: -0.5,-12.5 parent: 1 - - uid: 1909 + - uid: 1911 components: - type: Transform pos: -0.5,-14.5 parent: 1 - - uid: 1910 + - uid: 1912 components: - type: Transform pos: -0.5,-15.5 parent: 1 - - uid: 1911 + - uid: 1913 components: - type: Transform pos: -0.5,-16.5 parent: 1 - - uid: 1912 + - uid: 1914 components: - type: Transform pos: 1.5,-16.5 parent: 1 - - uid: 1913 + - uid: 1915 components: - type: Transform pos: 1.5,-14.5 parent: 1 - - uid: 1914 + - uid: 1916 components: - type: Transform pos: 1.5,-12.5 parent: 1 - - uid: 1915 + - uid: 1917 components: - type: Transform pos: -3.5,-14.5 parent: 1 - - uid: 1916 + - uid: 1918 components: - type: Transform pos: -3.5,-15.5 parent: 1 - - uid: 1917 + - uid: 1919 components: - type: Transform pos: -3.5,-16.5 parent: 1 - - uid: 1918 + - uid: 1920 components: - type: Transform pos: -6.5,-16.5 parent: 1 - - uid: 1919 + - uid: 1921 components: - type: Transform pos: 8.5,-9.5 parent: 1 - - uid: 1920 + - uid: 1922 components: - type: Transform pos: 8.5,-10.5 parent: 1 - - uid: 1921 + - uid: 1923 components: - type: Transform pos: 2.5,-14.5 parent: 1 - - uid: 1922 + - uid: 1924 components: - type: Transform pos: 8.5,-14.5 parent: 1 - - uid: 1923 + - uid: 1925 components: - type: Transform pos: 8.5,-13.5 parent: 1 - - uid: 1924 + - uid: 1926 components: - type: Transform pos: 9.5,-14.5 parent: 1 - - uid: 1925 + - uid: 1927 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 1926 + - uid: 1928 components: - type: Transform pos: 3.5,-14.5 parent: 1 - - uid: 1927 + - uid: 1929 components: - type: Transform pos: 6.5,-16.5 parent: 1 - - uid: 1928 + - uid: 1930 components: - type: Transform pos: 4.5,-14.5 parent: 1 - - uid: 1929 + - uid: 1931 components: - type: Transform pos: 6.5,-14.5 parent: 1 - - uid: 1930 + - uid: 1932 components: - type: Transform pos: 7.5,-14.5 parent: 1 - - uid: 1931 + - uid: 1933 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - uid: 1932 + - uid: 1934 components: - type: Transform pos: 4.5,-16.5 parent: 1 - - uid: 1933 + - uid: 1935 components: - type: Transform pos: 2.5,-17.5 parent: 1 - - uid: 1934 + - uid: 1936 components: - type: Transform pos: -4.5,37.5 parent: 1 - - uid: 1935 + - uid: 1937 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,4.5 parent: 1 - - uid: 1936 + - uid: 1938 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,3.5 parent: 1 - - uid: 1937 + - uid: 1939 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,5.5 parent: 1 - - uid: 1938 + - uid: 1940 components: - type: Transform pos: -8.5,7.5 parent: 1 - - uid: 1939 + - uid: 1941 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,3.5 parent: 1 - - uid: 1940 + - uid: 1942 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,4.5 parent: 1 - - uid: 1941 + - uid: 1943 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 1 - - uid: 1942 + - uid: 1944 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 1 - - uid: 1943 + - uid: 1945 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,4.5 parent: 1 - - uid: 1944 + - uid: 1946 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,4.5 parent: 1 - - uid: 1945 + - uid: 1947 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,4.5 parent: 1 - - uid: 1946 + - uid: 1948 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 1947 + - uid: 1949 components: - type: Transform pos: 9.5,11.5 parent: 1 - - uid: 1948 + - uid: 1950 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,12.5 parent: 1 - - uid: 1949 + - uid: 1951 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,6.5 parent: 1 - - uid: 1950 + - uid: 1952 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,7.5 parent: 1 - - uid: 1951 + - uid: 1953 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,8.5 parent: 1 - - uid: 1952 + - uid: 1954 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 1 - - uid: 1953 + - uid: 1955 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,10.5 parent: 1 - - uid: 1954 + - uid: 1956 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 1955 + - uid: 1957 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,11.5 parent: 1 - - uid: 1956 + - uid: 1958 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 1 - - uid: 1957 + - uid: 1959 components: - type: Transform pos: -6.5,12.5 parent: 1 - - uid: 1958 + - uid: 1960 components: - type: Transform pos: -6.5,14.5 parent: 1 - - uid: 1959 + - uid: 1961 components: - type: Transform pos: -6.5,15.5 parent: 1 - - uid: 1960 + - uid: 1962 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,23.5 parent: 1 - - uid: 1961 + - uid: 1963 components: - type: Transform pos: -6.5,21.5 parent: 1 - - uid: 1962 + - uid: 1964 components: - type: Transform pos: -6.5,23.5 parent: 1 - - uid: 1963 + - uid: 1965 components: - type: Transform pos: 7.5,12.5 parent: 1 - - uid: 1964 + - uid: 1966 components: - type: Transform pos: 7.5,14.5 parent: 1 - - uid: 1965 + - uid: 1967 components: - type: Transform pos: 7.5,15.5 parent: 1 - - uid: 1966 + - uid: 1968 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,23.5 parent: 1 - - uid: 1967 + - uid: 1969 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,24.5 parent: 1 - - uid: 1968 + - uid: 1970 components: - type: Transform pos: 7.5,21.5 parent: 1 - - uid: 1969 + - uid: 1971 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 1970 + - uid: 1972 components: - type: Transform pos: 7.5,23.5 parent: 1 - - uid: 1971 + - uid: 1973 components: - type: Transform pos: -7.5,33.5 parent: 1 - - uid: 1972 + - uid: 1974 components: - type: Transform pos: 8.5,33.5 parent: 1 - - uid: 1973 + - uid: 1975 components: - type: Transform pos: 5.5,37.5 parent: 1 - - uid: 1974 + - uid: 1976 components: - type: Transform pos: -7.5,29.5 parent: 1 - - uid: 1975 + - uid: 1977 components: - type: Transform pos: -1.5,37.5 parent: 1 - - uid: 1976 + - uid: 1978 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,34.5 parent: 1 - - uid: 1977 + - uid: 1979 components: - type: Transform pos: -2.5,33.5 parent: 1 - - uid: 1978 + - uid: 1980 components: - type: Transform pos: 8.5,29.5 parent: 1 - - uid: 1979 + - uid: 1981 components: - type: Transform pos: 6.5,-7.5 parent: 1 - - uid: 1980 + - uid: 1982 components: - type: Transform pos: -6.5,32.5 parent: 1 - - uid: 1981 + - uid: 1983 components: - type: Transform pos: -6.5,31.5 parent: 1 - - uid: 1982 + - uid: 1984 components: - type: Transform pos: 7.5,31.5 parent: 1 - - uid: 1983 + - uid: 1985 components: - type: Transform pos: 6.5,36.5 parent: 1 - - uid: 1984 + - uid: 1986 components: - type: Transform pos: 7.5,32.5 parent: 1 - - uid: 1985 + - uid: 1987 components: - type: Transform pos: -1.5,35.5 parent: 1 - - uid: 1986 + - uid: 1988 components: - type: Transform pos: -5.5,36.5 parent: 1 - - uid: 1987 + - uid: 1989 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,34.5 parent: 1 - - uid: 1988 + - uid: 1990 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,35.5 parent: 1 - - uid: 1989 + - uid: 1991 components: - type: Transform pos: -1.5,38.5 parent: 1 - - uid: 1990 + - uid: 1992 components: - type: Transform pos: -1.5,36.5 parent: 1 - - uid: 1991 + - uid: 1993 components: - type: Transform pos: -5.5,35.5 parent: 1 - - uid: 1992 + - uid: 1994 components: - type: Transform pos: 6.5,35.5 parent: 1 - - uid: 1993 + - uid: 1995 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,12.5 parent: 1 - - uid: 1994 + - uid: 1996 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,12.5 parent: 1 - - uid: 1995 + - uid: 1997 components: - type: Transform pos: 7.5,33.5 parent: 1 - - uid: 1996 + - uid: 1998 components: - type: Transform pos: -6.5,33.5 parent: 1 - - uid: 1997 + - uid: 1999 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,12.5 parent: 1 - - uid: 1998 + - uid: 2000 components: - type: Transform pos: -6.5,29.5 parent: 1 - - uid: 1999 + - uid: 2001 components: - type: Transform pos: -6.5,30.5 parent: 1 - - uid: 2000 + - uid: 2002 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,30.5 parent: 1 - - uid: 2001 + - uid: 2003 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 1 - - uid: 2002 + - uid: 2004 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 1 - - uid: 2003 + - uid: 2005 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,5.5 parent: 1 - - uid: 2004 + - uid: 2006 components: - type: Transform pos: 9.5,8.5 parent: 1 - - uid: 2005 + - uid: 2007 components: - type: Transform pos: 9.5,10.5 parent: 1 - - uid: 2006 + - uid: 2008 components: - type: Transform pos: 9.5,6.5 parent: 1 - - uid: 2007 + - uid: 2009 components: - type: Transform pos: 9.5,5.5 parent: 1 - - uid: 2008 + - uid: 2010 components: - type: Transform pos: 9.5,7.5 parent: 1 - - uid: 2009 + - uid: 2011 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,12.5 parent: 1 - - uid: 2010 + - uid: 2012 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,12.5 parent: 1 - - uid: 2011 + - uid: 2013 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 1 - - uid: 2012 + - uid: 2014 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 1 - - uid: 2013 + - uid: 2015 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,6.5 parent: 1 - - uid: 2014 + - uid: 2016 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,7.5 parent: 1 - - uid: 2015 + - uid: 2017 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - - uid: 2016 + - uid: 2018 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,10.5 parent: 1 - - uid: 2017 + - uid: 2019 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,11.5 parent: 1 - - uid: 2018 + - uid: 2020 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 1 - - uid: 2019 + - uid: 2021 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 2020 + - uid: 2022 components: - type: Transform pos: 4.5,13.5 parent: 1 - - uid: 2021 + - uid: 2023 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 2022 + - uid: 2024 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 2023 + - uid: 2025 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 2024 + - uid: 2026 components: - type: Transform pos: -2.5,13.5 parent: 1 - - uid: 2025 + - uid: 2027 components: - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 2026 + - uid: 2028 components: - type: Transform pos: 2.5,36.5 parent: 1 - - uid: 2027 + - uid: 2029 components: - type: Transform pos: 2.5,37.5 parent: 1 - - uid: 2028 + - uid: 2030 components: - type: Transform pos: 2.5,38.5 parent: 1 - - uid: 2029 + - uid: 2031 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,38.5 parent: 1 - - uid: 2030 + - uid: 2032 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,38.5 parent: 1 - - uid: 2031 - components: - - type: Transform - pos: 2.5,35.5 - parent: 1 - - uid: 2032 - components: - - type: Transform - pos: 3.5,33.5 - parent: 1 - uid: 2033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,28.5 + pos: 2.5,35.5 parent: 1 - uid: 2034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,28.5 + pos: 3.5,33.5 parent: 1 - uid: 2035 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,24.5 + pos: -7.5,28.5 parent: 1 - uid: 2036 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,29.5 + pos: 8.5,28.5 parent: 1 - uid: 2037 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,28.5 + pos: 8.5,24.5 parent: 1 - uid: 2038 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,24.5 + pos: -4.5,29.5 parent: 1 - uid: 2039 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,23.5 + pos: -4.5,28.5 parent: 1 - uid: 2040 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,22.5 + pos: -4.5,24.5 parent: 1 - uid: 2041 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,21.5 + pos: -4.5,23.5 parent: 1 - uid: 2042 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,20.5 + pos: -4.5,22.5 parent: 1 - uid: 2043 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,19.5 + pos: -4.5,21.5 parent: 1 - uid: 2044 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,18.5 + pos: -4.5,20.5 parent: 1 - uid: 2045 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,17.5 + pos: -4.5,19.5 parent: 1 - uid: 2046 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,16.5 + pos: -4.5,18.5 parent: 1 - uid: 2047 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,15.5 + pos: -4.5,17.5 parent: 1 - uid: 2048 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,14.5 + pos: -4.5,16.5 parent: 1 - uid: 2049 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,14.5 + pos: -4.5,15.5 parent: 1 - uid: 2050 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,15.5 + pos: -3.5,14.5 parent: 1 - uid: 2051 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,14.5 + pos: -4.5,14.5 parent: 1 - uid: 2052 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,14.5 + pos: 5.5,15.5 parent: 1 - uid: 2053 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,16.5 + pos: 4.5,14.5 parent: 1 - uid: 2054 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,17.5 + pos: 5.5,14.5 parent: 1 - uid: 2055 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,18.5 + pos: 5.5,16.5 parent: 1 - uid: 2056 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,19.5 + pos: 5.5,17.5 parent: 1 - uid: 2057 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,20.5 + pos: 5.5,18.5 parent: 1 - uid: 2058 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,21.5 + pos: 5.5,19.5 parent: 1 - uid: 2059 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,22.5 + pos: 5.5,20.5 parent: 1 - uid: 2060 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,23.5 + pos: 5.5,21.5 parent: 1 - uid: 2061 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,24.5 + pos: 5.5,22.5 parent: 1 - uid: 2062 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,28.5 + pos: 5.5,23.5 parent: 1 - uid: 2063 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,29.5 + pos: 5.5,24.5 parent: 1 - uid: 2064 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,29.5 + pos: 5.5,28.5 parent: 1 - uid: 2065 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,35.5 + pos: 5.5,29.5 parent: 1 - uid: 2066 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,29.5 + rot: 1.5707963267948966 rad + pos: 2.5,29.5 parent: 1 - uid: 2067 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,29.5 + pos: 5.5,35.5 parent: 1 - uid: 2068 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,35.5 + pos: -3.5,29.5 parent: 1 - uid: 2069 components: - type: Transform - pos: 1.5,29.5 + rot: 1.5707963267948966 rad + pos: 3.5,29.5 parent: 1 - uid: 2070 components: - type: Transform - pos: -2.5,35.5 + rot: 3.141592653589793 rad + pos: -6.5,35.5 parent: 1 - uid: 2071 components: - type: Transform - pos: -5.5,29.5 + pos: 1.5,29.5 parent: 1 - uid: 2072 components: - type: Transform - pos: 6.5,29.5 + pos: -2.5,35.5 parent: 1 - uid: 2073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,14.5 + pos: -5.5,29.5 parent: 1 - uid: 2074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,15.5 + pos: 6.5,29.5 parent: 1 - uid: 2075 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,17.5 + pos: 1.5,14.5 parent: 1 - - uid: 2076 + - uid: 2078 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,18.5 parent: 1 - - uid: 2077 + - uid: 2079 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,29.5 parent: 1 - - uid: 2078 + - uid: 2080 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,29.5 parent: 1 - - uid: 2079 + - uid: 2081 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,14.5 parent: 1 - - uid: 2080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,15.5 - parent: 1 - - uid: 2081 + - uid: 2083 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,32.5 parent: 1 - - uid: 2082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,17.5 - parent: 1 - - uid: 2083 + - uid: 2085 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,18.5 parent: 1 - - uid: 2084 + - uid: 2086 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,19.5 parent: 1 - - uid: 2085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,19.5 - parent: 1 - - uid: 2086 + - uid: 2088 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,19.5 parent: 1 - - uid: 2087 + - uid: 2089 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,19.5 parent: 1 - - uid: 2088 + - uid: 2090 components: - type: Transform pos: 3.5,35.5 parent: 1 - - uid: 2089 + - uid: 2091 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,19.5 parent: 1 - - uid: 2090 + - uid: 2092 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,34.5 parent: 1 - - uid: 2091 + - uid: 2093 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 2092 + - uid: 2094 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 2093 + - uid: 2095 components: - type: Transform pos: -5.5,37.5 parent: 1 - - uid: 2094 + - uid: 2096 components: - type: Transform pos: -4.5,38.5 parent: 1 - - uid: 2095 + - uid: 2097 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,35.5 parent: 1 - - uid: 2096 + - uid: 2098 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-11.5 parent: 1 - - uid: 2097 + - uid: 2099 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,30.5 parent: 1 - - uid: 2098 + - uid: 2100 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,29.5 parent: 1 - - uid: 2099 + - uid: 2101 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,32.5 parent: 1 - - uid: 2100 + - uid: 2102 components: - type: Transform pos: -8.5,4.5 parent: 1 - - uid: 2101 + - uid: 2103 components: - type: Transform pos: -2.5,34.5 parent: 1 - - uid: 2102 + - uid: 2104 components: - type: Transform pos: 9.5,9.5 parent: 1 - - uid: 2103 + - uid: 2105 components: - type: Transform pos: -8.5,5.5 parent: 1 - - uid: 2104 + - uid: 2106 components: - type: Transform pos: 6.5,37.5 parent: 1 - - uid: 2105 + - uid: 2107 components: - type: Transform pos: 5.5,38.5 parent: 1 - - uid: 2106 + - uid: 2108 components: - type: Transform pos: -7.5,3.5 parent: 1 - - uid: 2107 + - uid: 2109 components: - type: Transform pos: -7.5,-4.5 parent: 1 - - uid: 2108 + - uid: 2110 components: - type: Transform pos: -8.5,10.5 parent: 1 - - uid: 2109 + - uid: 2111 components: - type: Transform pos: -8.5,9.5 parent: 1 - - uid: 2110 + - uid: 2112 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,29.5 parent: 1 - - uid: 2111 + - uid: 2113 components: - type: Transform pos: -8.5,11.5 parent: 1 - - uid: 2112 + - uid: 2114 components: - type: Transform pos: 8.5,-4.5 parent: 1 - - uid: 2113 + - uid: 2115 components: - type: Transform pos: -8.5,8.5 parent: 1 - - uid: 2114 + - uid: 2116 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-11.5 parent: 1 - - uid: 2115 + - uid: 2117 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-11.5 parent: 1 - - uid: 2116 + - uid: 2118 components: - type: Transform rot: -1.5707963267948966 rad @@ -19333,104 +19707,104 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 2117 + - uid: 2119 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 2118 + - uid: 2120 components: - type: Transform pos: -11.5,-9.5 parent: 1 - - uid: 2119 + - uid: 2121 components: - type: Transform pos: -8.5,28.5 parent: 1 - - uid: 2120 + - uid: 2122 components: - type: Transform pos: -8.5,12.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestCurved entities: - - uid: 2121 + - uid: 2123 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 2122 + - uid: 2124 components: - type: Transform pos: 12.5,-9.5 parent: 1 - - uid: 2123 + - uid: 2125 components: - type: Transform pos: 9.5,28.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestHollow entities: - - uid: 2124 + - uid: 2126 components: - type: Transform pos: 9.5,12.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastCurved entities: - - uid: 2125 + - uid: 2127 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 2126 + - uid: 2128 components: - type: Transform pos: -2.5,-19.5 parent: 1 - - uid: 2127 + - uid: 2129 components: - type: Transform pos: -8.5,3.5 parent: 1 - - uid: 2128 + - uid: 2130 components: - type: Transform pos: -8.5,24.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestCurved entities: - - uid: 2129 + - uid: 2131 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 2130 + - uid: 2132 components: - type: Transform pos: 3.5,-19.5 parent: 1 - - uid: 2131 + - uid: 2133 components: - type: Transform pos: 9.5,24.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestHollow entities: - - uid: 2132 + - uid: 2134 components: - type: Transform pos: 10.5,-15.5 parent: 1 - - uid: 2133 + - uid: 2135 components: - type: Transform pos: 9.5,4.5 parent: 1 - proto: WarpPointShip entities: - - uid: 2134 + - uid: 2136 components: - type: MetaData name: NCWL Dear Clementine @@ -19439,14 +19813,14 @@ entities: parent: 1 - proto: WaterCooler entities: - - uid: 2135 + - uid: 2137 components: - type: Transform pos: 2.5,-6.5 parent: 1 - proto: WeaponTurretMortar entities: - - uid: 2136 + - uid: 2138 components: - type: Transform rot: 1.5707963267948966 rad @@ -19480,7 +19854,7 @@ entities: ents: [] - type: PointCannon linkedConsoleId: 1129 - - uid: 2137 + - uid: 2139 components: - type: Transform rot: -1.5707963267948966 rad @@ -19514,7 +19888,7 @@ entities: ents: [] - type: PointCannon linkedConsoleId: 1129 - - uid: 2138 + - uid: 2140 components: - type: Transform rot: 1.5707963267948966 rad @@ -19548,7 +19922,7 @@ entities: ents: [] - type: PointCannon linkedConsoleId: 1129 - - uid: 2139 + - uid: 2141 components: - type: Transform rot: 1.5707963267948966 rad @@ -19582,7 +19956,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 2140 + - uid: 2142 components: - type: Transform rot: -1.5707963267948966 rad @@ -19616,7 +19990,7 @@ entities: ents: [] - type: PointCannon linkedConsoleId: 1129 - - uid: 2141 + - uid: 2143 components: - type: Transform rot: 1.5707963267948966 rad @@ -19650,7 +20024,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 2142 + - uid: 2144 components: - type: Transform rot: -1.5707963267948966 rad @@ -19684,7 +20058,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 2143 + - uid: 2145 components: - type: Transform rot: -1.5707963267948966 rad @@ -19720,7 +20094,7 @@ entities: ents: [] - proto: WeaponTurretPDT entities: - - uid: 2144 + - uid: 2146 components: - type: Transform rot: 3.141592653589793 rad @@ -19746,7 +20120,7 @@ entities: startingCharge: 0 - type: PointCannon linkedConsoleId: 1129 - - uid: 2145 + - uid: 2147 components: - type: Transform rot: 3.141592653589793 rad @@ -19772,7 +20146,7 @@ entities: startingCharge: 0 - type: PointCannon linkedConsoleId: 1129 - - uid: 2146 + - uid: 2148 components: - type: Transform rot: 3.141592653589793 rad @@ -19798,7 +20172,7 @@ entities: startingCharge: 0 - type: PointCannon linkedConsoleId: 1129 - - uid: 2147 + - uid: 2149 components: - type: Transform pos: -7.5,-19.5 @@ -19823,7 +20197,7 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2148 + - uid: 2150 components: - type: Transform rot: 3.141592653589793 rad @@ -19849,7 +20223,7 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2149 + - uid: 2151 components: - type: Transform rot: 3.141592653589793 rad @@ -19875,7 +20249,7 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2150 + - uid: 2152 components: - type: Transform rot: 1.5707963267948966 rad @@ -19901,7 +20275,7 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2151 + - uid: 2153 components: - type: Transform rot: -1.5707963267948966 rad @@ -19927,7 +20301,7 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2152 + - uid: 2154 components: - type: Transform rot: -1.5707963267948966 rad @@ -19953,7 +20327,7 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2153 + - uid: 2155 components: - type: Transform rot: -1.5707963267948966 rad @@ -19979,7 +20353,7 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2154 + - uid: 2156 components: - type: Transform rot: 1.5707963267948966 rad @@ -20005,7 +20379,7 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2155 + - uid: 2157 components: - type: Transform rot: 1.5707963267948966 rad @@ -20031,7 +20405,7 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2156 + - uid: 2158 components: - type: Transform rot: 3.141592653589793 rad @@ -20057,7 +20431,7 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2157 + - uid: 2159 components: - type: Transform rot: -1.5707963267948966 rad @@ -20083,7 +20457,7 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2158 + - uid: 2160 components: - type: Transform rot: 1.5707963267948966 rad @@ -20109,7 +20483,7 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2159 + - uid: 2161 components: - type: Transform pos: 0.5,-20.5 @@ -20134,7 +20508,7 @@ entities: startingCharge: 0 - type: PointCannon linkedConsoleId: 1129 - - uid: 2160 + - uid: 2162 components: - type: Transform pos: 8.5,-19.5 @@ -20161,48 +20535,48 @@ entities: linkedConsoleId: 1129 - proto: WindoorSecure entities: - - uid: 2161 + - uid: 2163 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 2162 + - uid: 2164 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,36.5 parent: 1 - - uid: 2163 + - uid: 2165 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,36.5 parent: 1 - - uid: 2164 + - uid: 2166 components: - type: Transform pos: 6.5,-12.5 parent: 1 - - uid: 2165 + - uid: 2167 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,13.5 parent: 1 - - uid: 2166 + - uid: 2168 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,13.5 parent: 1 - - uid: 2167 + - uid: 2169 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,4.5 parent: 1 - - uid: 2168 + - uid: 2170 components: - type: Transform rot: 3.141592653589793 rad @@ -20210,60 +20584,60 @@ entities: parent: 1 - proto: WindoorSecureNCWLCommand entities: - - uid: 2169 + - uid: 2171 components: - type: Transform pos: 1.5,-7.5 parent: 1 - proto: WindowReinforcedDirectional entities: - - uid: 2170 + - uid: 2172 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-8.5 parent: 1 - - uid: 2171 + - uid: 2173 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-12.5 parent: 1 - - uid: 2172 + - uid: 2174 components: - type: Transform pos: 3.5,-12.5 parent: 1 - - uid: 2173 + - uid: 2175 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-12.5 parent: 1 - - uid: 2174 + - uid: 2176 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-11.5 parent: 1 - - uid: 2175 + - uid: 2177 components: - type: Transform pos: 4.5,-12.5 parent: 1 - - uid: 2176 + - uid: 2178 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-9.5 parent: 1 - - uid: 2177 + - uid: 2179 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-10.5 parent: 1 - - uid: 2178 + - uid: 2180 components: - type: Transform pos: 5.5,-12.5 From 62e88ed625cd28f59c9f300761ed3f6c3a5e9a63 Mon Sep 17 00:00:00 2001 From: Emre D Date: Wed, 11 Mar 2026 13:04:57 +0100 Subject: [PATCH 6/6] Unionfallupdate1 --- .../Unionfall/DSM/unionfall_laelaps.yml | 206 +- .../Unionfall/unionfall_clementine.yml | 17833 ++++++++-------- .../_Crescent/Unionfall/unionfall_nemesis.yml | 13524 ++++++------ .../Misc/UnionfallDSMShipCaptainNote.yml | 65 + .../Misc/UnionfallNCWLShipCaptainNote.yml | 54 + .../Roles/Jobs/UnionfallDSM/dsm_cadet.yml | 4 +- .../Roles/Jobs/UnionfallDSM/dsm_leader.yml | 2 +- .../Roles/Jobs/UnionfallDSM/dsm_officer.yml | 2 +- .../Jobs/UnionfallDSM/dsm_ship_captain.yml | 11 +- .../Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml | 5 +- .../Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml | 4 +- .../Roles/Jobs/UnionfallNCWL/ncwl_leader.yml | 2 +- .../Roles/Jobs/UnionfallNCWL/ncwl_officer.yml | 2 +- .../Jobs/UnionfallNCWL/ncwl_ship_captain.yml | 1 + .../Jobs/UnionfallNCWL/ncwl_ship_crew.yml | 13 +- 15 files changed, 17003 insertions(+), 14725 deletions(-) create mode 100644 Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMShipCaptainNote.yml create mode 100644 Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLShipCaptainNote.yml diff --git a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_laelaps.yml b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_laelaps.yml index 03a903b0671..866c8bd5cf3 100644 --- a/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_laelaps.yml +++ b/Resources/Maps/_Crescent/Unionfall/DSM/unionfall_laelaps.yml @@ -4,8 +4,8 @@ meta: engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 03/10/2026 22:15:54 - entityCount: 1027 + time: 03/11/2026 10:43:52 + entityCount: 1033 maps: [] grids: - 1 @@ -442,6 +442,7 @@ entities: 2767: -2,19 2898: -2,19 3029: -2,19 + 3160: -2,19 - node: zIndex: 1 angle: -3.141592653589793 rad @@ -458,6 +459,7 @@ entities: 2748: -2,15 2879: -2,15 3010: -2,15 + 3141: -2,15 - node: zIndex: 1 angle: -1.5707963267948966 rad @@ -474,6 +476,7 @@ entities: 2733: 2,15 2864: 2,15 2995: 2,15 + 3126: 2,15 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner @@ -489,6 +492,7 @@ entities: 2859: 2,19 2990: 2,19 3121: 2,19 + 3252: 2,19 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge @@ -548,6 +552,11 @@ entities: 3025: -2,17 3026: -2,18 3028: -2,19 + 3140: -2,15 + 3155: -2,16 + 3156: -2,17 + 3157: -2,18 + 3159: -2,19 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge @@ -607,6 +616,11 @@ entities: 2993: 2,15 3008: -2,15 3011: -1,15 + 3122: 0,15 + 3123: 1,15 + 3124: 2,15 + 3139: -2,15 + 3142: -1,15 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge @@ -666,6 +680,11 @@ entities: 3117: 2,17 3118: 2,18 3119: 2,19 + 3125: 2,15 + 3247: 2,16 + 3248: 2,17 + 3249: 2,18 + 3250: 2,19 - node: id: FloorTechMaintDirectionalEdge decals: @@ -724,6 +743,11 @@ entities: 3057: 0,19 3089: 1,19 3120: 2,19 + 3158: -2,19 + 3161: -1,19 + 3188: 0,19 + 3220: 1,19 + 3251: 2,19 - node: zIndex: 1 id: LatticeCornerNE @@ -967,6 +991,18 @@ entities: 3094: 1,24 3102: 1,25 3110: 1,26 + 3138: -8,0 + 3145: -5,-1 + 3148: -2,-2 + 3166: -1,24 + 3174: -1,25 + 3182: -1,26 + 3193: 0,24 + 3201: 0,25 + 3209: 0,26 + 3225: 1,24 + 3233: 1,25 + 3241: 1,26 - node: zIndex: 1 id: LatticeCornerNW @@ -1210,6 +1246,18 @@ entities: 3097: 1,24 3105: 1,25 3113: 1,26 + 3129: 8,0 + 3151: 2,-2 + 3154: 5,-1 + 3169: -1,24 + 3177: -1,25 + 3185: -1,26 + 3196: 0,24 + 3204: 0,25 + 3212: 0,26 + 3228: 1,24 + 3236: 1,25 + 3244: 1,26 - node: zIndex: 1 id: LatticeCornerSE @@ -1440,6 +1488,17 @@ entities: 3092: 1,24 3100: 1,25 3108: 1,26 + 3135: -9,7 + 3164: -1,24 + 3172: -1,25 + 3180: -1,26 + 3191: 0,24 + 3199: 0,25 + 3207: 0,26 + 3215: 0,27 + 3223: 1,24 + 3231: 1,25 + 3239: 1,26 - node: zIndex: 1 id: LatticeCornerSW @@ -1670,6 +1729,17 @@ entities: 3096: 1,24 3104: 1,25 3112: 1,26 + 3132: 9,7 + 3168: -1,24 + 3176: -1,25 + 3184: -1,26 + 3195: 0,24 + 3203: 0,25 + 3211: 0,26 + 3217: 0,27 + 3227: 1,24 + 3235: 1,25 + 3243: 1,26 - node: id: LatticeEdgeE decals: @@ -2036,6 +2106,23 @@ entities: 3099: 1,25 3107: 1,26 3114: 1,31 + 3134: -9,7 + 3136: -8,0 + 3143: -5,-1 + 3146: -2,-2 + 3163: -1,24 + 3171: -1,25 + 3179: -1,26 + 3186: -1,31 + 3190: 0,24 + 3198: 0,25 + 3206: 0,26 + 3214: 0,27 + 3218: 0,31 + 3222: 1,24 + 3230: 1,25 + 3238: 1,26 + 3245: 1,31 - node: id: LatticeEdgeN decals: @@ -2351,6 +2438,21 @@ entities: 3093: 1,24 3101: 1,25 3109: 1,26 + 3127: 8,0 + 3137: -8,0 + 3144: -5,-1 + 3147: -2,-2 + 3149: 2,-2 + 3152: 5,-1 + 3165: -1,24 + 3173: -1,25 + 3181: -1,26 + 3192: 0,24 + 3200: 0,25 + 3208: 0,26 + 3224: 1,24 + 3232: 1,25 + 3240: 1,26 - node: id: LatticeEdgeS decals: @@ -2618,6 +2720,18 @@ entities: 3090: 1,24 3098: 1,25 3106: 1,26 + 3130: 9,7 + 3133: -9,7 + 3162: -1,24 + 3170: -1,25 + 3178: -1,26 + 3189: 0,24 + 3197: 0,25 + 3205: 0,26 + 3213: 0,27 + 3221: 1,24 + 3229: 1,25 + 3237: 1,26 - node: id: LatticeEdgeW decals: @@ -2984,6 +3098,23 @@ entities: 3103: 1,25 3111: 1,26 3115: 1,31 + 3128: 8,0 + 3131: 9,7 + 3150: 2,-2 + 3153: 5,-1 + 3167: -1,24 + 3175: -1,25 + 3183: -1,26 + 3187: -1,31 + 3194: 0,24 + 3202: 0,25 + 3210: 0,26 + 3216: 0,27 + 3219: 0,31 + 3226: 1,24 + 3234: 1,25 + 3242: 1,26 + 3246: 1,31 - node: angle: 1.5707963267948966 rad color: '#D381C996' @@ -6616,6 +6747,24 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,3.5 parent: 1 +- proto: ClothingBeltSheathDSMSabreFilled + entities: + - uid: 1033 + components: + - type: Transform + parent: 1028 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesImperialGovernorGloves + entities: + - uid: 1030 + components: + - type: Transform + parent: 1028 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHeadHelmetImperialEVA entities: - uid: 43 @@ -6645,6 +6794,24 @@ entities: linearDamping: 0 canCollide: False - type: InsideEntityStorage +- proto: ClothingNeckCloakImperialGovernor + entities: + - uid: 1029 + components: + - type: Transform + parent: 1028 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatImperialGovernor + entities: + - uid: 1031 + components: + - type: Transform + parent: 1028 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterCoatImperialSoftsuit entities: - uid: 44 @@ -6674,6 +6841,15 @@ entities: linearDamping: 0 canCollide: False - type: InsideEntityStorage +- proto: ClothingShoesBootsImperialGovernorBoots + entities: + - uid: 1032 + components: + - type: Transform + parent: 1028 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingShoesBootsMagCombat entities: - uid: 45 @@ -8273,7 +8449,7 @@ entities: - type: ApcPowerReceiver powerLoad: 1000 - type: Battery - startingCharge: 19005.566 + startingCharge: 18519.805 - type: ApcPowerReceiverBattery enabled: True - uid: 734 @@ -8285,7 +8461,7 @@ entities: - type: ApcPowerReceiver powerLoad: 1000 - type: Battery - startingCharge: 19009.219 + startingCharge: 18523.457 - type: ApcPowerReceiverBattery enabled: True - uid: 735 @@ -9990,6 +10166,28 @@ entities: - type: Transform pos: -1.5,6.5 parent: 1 +- proto: WardrobeBlack + entities: + - uid: 1028 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1029 + - 1030 + - 1031 + - 1032 + - 1033 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: WarpPointShip entities: - uid: 1010 diff --git a/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml b/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml index b61cfaa7096..cae645bed7f 100644 --- a/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml +++ b/Resources/Maps/_Crescent/Unionfall/unionfall_clementine.yml @@ -4,8 +4,8 @@ meta: engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 03/11/2026 00:39:47 - entityCount: 2196 + time: 03/11/2026 12:01:09 + entityCount: 2203 maps: [] grids: - 1 @@ -49,7 +49,7 @@ entities: chunks: 0,0: ind: 0,0 - tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAIQAAAAAAAAUAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAUAAAAAAAAhAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAIAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACAAAAAAAAIIAAAAAAAALAAAAAAAABQAAAAAAAAsAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAgAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAIAAAAAAAAAQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAACAAAAAAAAIIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAgAAAAAAACCAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAIAAAAAAAAggAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABAAAAAAAAAsAAAAAAAAFAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAALAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAgQAAAAAAAIEAAAAAAACCAAAAAAAAIQAAAAAAAAUAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAggAAAAAAACEAAAAAAACCAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAUAAAAAAAAhAAAAAAAAggAAAAAAAIIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAgAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAIAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACAAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAgAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAIAAAAAAAAAQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAACAAAAAAAAIIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAgAAAAAAACCAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAIAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABAAAAAAAAAsAAAAAAAAFAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAsAAAAAAAALAAAAAAAAggAAAAAAAIIAAAAAAAALAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAsAAAAAAACCAAAAAAAABQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,0: ind: -1,0 @@ -112,5891 +112,6904 @@ entities: color: '#FFFFFF6D' id: Arrows decals: - 925: 2,26 + 876: 2,26 - node: angle: 4.71238898038469 rad color: '#FFFFFF6D' id: Arrows decals: - 926: -2,26 + 877: -2,26 - node: color: '#EFB34196' id: BotLeftGreyscale decals: - 63: 3,26 + 55: 3,26 - node: color: '#EFB34196' id: BoxGreyscale decals: - 5435: 0,26 + 5386: 0,26 + - node: + angle: 6.283185307179586 rad + color: '#EFB34196' + id: BoxGreyscale + decals: + 6656: 6,8 - node: color: '#EFB34196' id: BrickTileSteelCornerNe decals: - 229: -5,7 - 349: 4,28 - 478: -5,-2 - 507: 7,-6 - 510: -5,-6 - 550: -2,-13 - 551: -3,-12 - 558: -2,-16 + 220: -5,7 + 318: 4,28 + 446: -5,-2 + 475: 7,-6 + 478: -5,-6 + 518: -2,-13 + 519: -3,-12 + 526: -2,-16 - node: color: '#EFB34196' id: BrickTileSteelCornerNw decals: - 230: -8,7 - 350: -4,28 - 477: 5,-2 - 509: -7,-6 - 511: 5,-6 - 557: -6,-16 + 221: -8,7 + 319: -4,28 + 445: 5,-2 + 477: -7,-6 + 479: 5,-6 + 525: -6,-16 - node: color: '#EFB34196' id: BrickTileSteelCornerSe decals: - 228: -5,5 - 237: 1,5 - 502: -5,2 - 513: -5,-7 - 514: 7,-7 - 549: -2,-14 - 559: -2,-17 - 560: -5,-17 + 219: -5,5 + 228: 1,5 + 470: -5,2 + 481: -5,-7 + 482: 7,-7 + 517: -2,-14 + 527: -2,-17 + 528: -5,-17 - node: color: '#EFB34196' id: BrickTileSteelCornerSw decals: - 234: -8,5 - 236: -1,5 - 351: -4,20 - 501: 5,2 - 508: -7,-7 - 512: 5,-7 - 547: -6,-14 - 561: -3,-17 - 562: -6,-17 + 225: -8,5 + 227: -1,5 + 320: -4,20 + 469: 5,2 + 476: -7,-7 + 480: 5,-7 + 515: -6,-14 + 529: -3,-17 + 530: -6,-17 - node: color: '#EFB34196' id: BrickTileSteelEndN decals: - 544: -6,-9 + 512: -6,-9 - node: color: '#EFB34196' id: BrickTileSteelInnerNe decals: - 464: -1,-7 - 496: -6,-2 - 555: -6,-12 - 556: -3,-13 + 432: -1,-7 + 464: -6,-2 + 523: -6,-12 + 524: -3,-13 - node: color: '#EFB34196' id: BrickTileSteelInnerNw decals: - 463: 1,-7 - 497: 6,-2 + 431: 1,-7 + 465: 6,-2 - node: color: '#EFB34196' id: BrickTileSteelInnerSe decals: - 462: -1,-4 - 503: -6,2 + 430: -1,-4 + 471: -6,2 - node: color: '#EFB34196' id: BrickTileSteelInnerSw decals: - 461: 1,-4 - 504: 6,2 + 429: 1,-4 + 472: 6,2 - node: color: '#EFB34196' id: BrickTileSteelLineE decals: - 233: -5,6 - 240: 1,6 - 345: 4,21 - 346: 4,22 - 347: 4,23 - 348: 4,24 - 454: -1,-6 - 455: -1,-5 - 460: -2,-4 - 475: -5,-3 - 479: -6,-1 - 480: -6,0 - 481: -6,1 - 545: -6,-10 - 554: -6,-11 + 224: -5,6 + 231: 1,6 + 314: 4,21 + 315: 4,22 + 316: 4,23 + 317: 4,24 + 422: -1,-6 + 423: -1,-5 + 428: -2,-4 + 443: -5,-3 + 447: -6,-1 + 448: -6,0 + 449: -6,1 + 513: -6,-10 + 522: -6,-11 - node: color: '#EFB34196' id: BrickTileSteelLineN decals: - 226: -7,7 - 227: -6,7 - 357: 3,28 - 358: 2,28 - 359: 1,28 - 360: -3,28 - 361: -2,28 - 362: -1,28 - 453: 0,-7 - 516: 6,-6 - 518: -6,-6 - 552: -4,-12 - 553: -5,-12 + 217: -7,7 + 218: -6,7 + 326: 3,28 + 327: 2,28 + 328: 1,28 + 329: -3,28 + 330: -2,28 + 331: -1,28 + 421: 0,-7 + 484: 6,-6 + 486: -6,-6 + 520: -4,-12 + 521: -5,-12 - node: color: '#EFB34196' id: BrickTileSteelLineS decals: - 231: -6,5 - 235: -7,5 - 239: 0,5 - 334: -3,20 - 335: -2,20 - 336: -1,20 - 337: 1,20 - 338: 2,20 - 339: 3,20 - 456: 0,-4 - 515: 6,-7 - 517: -6,-7 - 548: -4,-14 + 222: -6,5 + 226: -7,5 + 230: 0,5 + 303: -3,20 + 304: -2,20 + 305: -1,20 + 306: 1,20 + 307: 2,20 + 308: 3,20 + 424: 0,-4 + 483: 6,-7 + 485: -6,-7 + 516: -4,-14 - node: color: '#EFB34196' id: BrickTileSteelLineW decals: - 232: -8,6 - 238: -1,6 - 341: -4,21 - 342: -4,22 - 343: -4,23 - 344: -4,24 - 457: 1,-6 - 458: 1,-5 - 459: 2,-4 - 476: 5,-3 - 498: 6,-1 - 499: 6,0 - 500: 6,1 - 546: -6,-10 + 223: -8,6 + 229: -1,6 + 310: -4,21 + 311: -4,22 + 312: -4,23 + 313: -4,24 + 425: 1,-6 + 426: 1,-5 + 427: 2,-4 + 444: 5,-3 + 466: 6,-1 + 467: 6,0 + 468: 6,1 + 514: -6,-10 - node: color: '#FFFFFFFF' id: Damaged decals: - 837: -6,10 + 793: -6,10 - node: color: '#EFB34196' id: DeliveryGreyscale decals: - 5420: 1,23 - 5421: 0,23 - 5434: -1,23 + 5371: 1,23 + 5372: 0,23 + 5385: -1,23 - node: color: '#FFFFFFFF' id: Dirt decals: - 835: 0,6 - 836: 0,9 + 791: 0,6 + 792: 0,9 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 537: -8,25 + 538: -7,27 + 539: -6,27 + 540: -7,26 + 541: -7,26 + 542: -5,26 + 543: -2,27 + 544: -3,28 + 545: -4,26 + 546: -5,25 + 547: -2,25 + 548: -3,23 + 549: -4,22 + 550: 2,26 + 551: 4,27 + 552: -3,22 + 553: -4,20 + 554: -3,21 + 555: 4,27 + 556: -4,20 + 557: -4,20 + 558: -3,21 + 559: 3,26 + 560: 4,26 + 561: 3,24 + 562: -1,20 + 563: 3,24 + 564: 4,25 + 565: 5,26 + 566: 5,25 + 567: 4,23 + 568: 0,20 + 569: 0,20 + 570: 2,20 + 571: 4,21 + 572: 4,22 + 573: 1,20 + 574: 1,29 + 575: 2,30 + 576: 0,31 + 577: -1,31 + 578: -2,31 + 579: 0,31 + 580: 2,32 + 581: 2,32 + 582: 0,30 + 583: 0,30 + 584: -5,30 + 585: -5,30 + 586: -4,31 + 587: -4,32 + 588: -4,34 + 589: -5,34 + 590: -5,32 + 591: -6,31 + 592: -6,30 + 593: -4,30 + 594: -5,32 + 595: -5,34 + 596: -6,33 + 597: -7,32 + 598: -5,34 + 599: -4,37 + 600: -4,36 + 601: -4,36 + 602: 5,33 + 603: 5,33 + 604: 5,34 + 605: 4,31 + 606: 6,31 + 607: 5,31 + 608: 6,30 + 609: 5,32 + 610: 3,31 + 611: 3,31 + 612: 0,32 + 613: 0,33 + 614: 7,26 + 615: 7,27 + 616: 5,27 + 617: 7,26 + 618: 6,27 + 619: 7,25 + 620: 8,25 + 621: 6,25 + 622: 6,26 + 623: 6,25 + 624: 7,24 + 625: 6,26 + 626: 2,25 + 627: 3,21 + 628: 1,20 + 629: -1,19 + 630: -3,17 + 631: -3,16 + 632: -3,18 + 633: -2,14 + 634: -3,15 + 635: -3,17 + 636: -1,15 + 637: 3,18 + 638: 1,17 + 639: 3,18 + 640: 1,17 + 641: 3,15 + 642: 3,17 + 643: 2,16 + 644: 3,16 + 645: 2,16 + 646: -5,16 + 647: -7,20 + 648: -6,14 + 649: -6,12 + 650: -6,14 + 651: -6,13 + 652: -4,12 + 653: -4,9 + 654: -6,10 + 655: -8,11 + 656: -8,8 + 657: -7,6 + 658: -7,5 + 659: -8,6 + 660: -7,7 + 661: -7,5 + 662: -5,5 + 663: -4,6 + 664: -6,6 + 665: -1,6 + 666: -2,6 + 667: -1,6 + 668: 2,6 + 669: 5,8 + 670: 7,4 + 671: 8,10 + 672: 3,9 + 673: -2,12 + 674: 1,12 + 675: -2,13 + 676: 1,12 + 677: 0,15 + 678: 0,16 + 679: 3,18 + 680: 3,16 + 681: 3,14 + 682: 3,9 + 683: 3,6 + 684: 3,5 + 685: -5,2 + 686: -6,1 + 687: -6,0 + 688: -5,-4 + 689: -5,-4 + 690: -6,-2 + 691: -6,-1 + 692: -6,-4 + 693: -6,-4 + 694: -5,-4 + 695: -6,-2 + 696: -6,0 + 697: -6,2 + 698: -5,3 + 699: -6,3 + 700: -6,-4 + 701: -5,-6 + 702: -6,-7 + 703: -6,-7 + 704: -7,-7 + 705: -6,-6 + 706: -7,-7 + 707: -1,-5 + 708: -1,-4 + 709: -1,-3 + 710: 1,-4 + 711: 4,-3 + 712: 2,-6 + 713: -4,-7 + 714: -3,-5 + 715: -3,-4 + 716: -3,-8 + 717: -1,-7 + 718: 2,-7 + 719: 5,-7 + 720: -1,-7 + 721: -3,-7 + 722: -3,-6 + 723: -2,-4 + 724: -1,-3 + 725: 2,-3 + 726: 1,-6 + 727: 2,-6 + 728: 2,-5 + 729: 3,-5 + 730: 2,-7 + 731: -1,-5 + 732: -1,-2 + 733: -2,-4 + 734: 0,-10 + 735: -1,-10 + 736: 0,-9 + 737: -1,-11 + 738: 0,-11 + 739: -1,-10 + 740: -1,-9 + 741: 6,-7 + 742: 7,-7 + 743: 5,-6 + 744: 7,-6 + 745: 5,-6 + 746: 5,-4 + 747: 5,-3 + 748: 6,-2 + 749: 5,-4 + 750: 6,-4 + 751: 6,-1 + 752: 6,1 + 753: 4,3 + 754: 5,3 + 755: 5,2 + 756: 5,2 + 757: 7,-9 + 758: 7,-10 + 759: 4,-13 + 760: 2,-13 + 761: 5,-13 + 762: 5,-13 + 763: 6,-13 + 764: 1,-14 + 765: -2,-14 + 766: -2,-14 + 767: -2,-13 + 768: -3,-13 + 769: -4,-14 + 770: -3,-13 + 771: -4,-13 + 772: -6,-14 + 773: -4,-13 + 774: -3,-12 + 775: -6,-14 + 776: -6,-14 + 777: -6,-11 + 778: -6,-10 + 779: -6,-9 + 780: -6,-11 + 781: -6,-13 + 782: -7,-13 + 783: -8,-12 + 784: -8,-11 + 785: -9,-13 + 786: -8,-14 + 787: -10,-13 + 788: -10,-11 + 789: -9,-11 + 790: -8,-14 + 808: -3,25 + 809: -4,25 + 810: -4,25 + 811: -3,24 + 812: -3,24 + 813: -1,20 + 814: 0,20 + 815: 0,20 + 816: 1,20 + 817: 1,20 + 818: -2,20 + 819: -3,20 + 820: 2,28 + 821: 2,28 + 822: 2,26 + 823: 2,26 + 824: 0,30 + 825: -1,30 + 826: -2,30 + 827: -1,31 + 828: 0,30 + 829: -4,30 + 830: -5,30 + 831: -5,30 + 832: -4,32 + 833: -4,32 + 834: -5,33 + 835: -5,34 + 836: -5,32 + 837: -3,17 + 838: -3,17 + 839: -3,16 + 840: -2,15 + 841: -2,15 + 842: 5,15 + 843: 3,16 + 844: 2,15 + 845: 3,15 + 846: 2,16 + 847: 2,17 + 848: 3,18 + 849: 3,18 + 850: 3,18 + 851: 0,12 + 852: -2,12 + 853: 5,8 + 854: 5,8 + 855: -1,-6 + 856: -1,-5 + 857: -1,-5 + 858: -3,-4 + 859: -3,-4 + 860: -3,-6 + 861: -2,-6 + 862: -1,-6 + 863: -1,-7 + 864: -1,-7 + 865: 1,-7 + 866: 2,-6 + 867: 2,-6 + 868: 1,-6 + 869: 1,-4 + 870: -5,-4 + 871: -5,-3 + 872: -5,-3 + 873: -5,-2 + 874: -6,-2 + 875: -6,0 - node: + angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 569: -8,25 - 570: -7,27 - 571: -6,27 - 572: -7,26 - 573: -7,26 - 574: -5,26 - 575: -2,27 - 576: -3,28 - 577: -4,26 - 578: -5,25 - 579: -2,25 - 580: -3,23 - 581: -4,22 - 582: 2,26 - 583: 4,27 - 584: -3,22 - 585: -4,20 - 586: -3,21 - 587: 4,27 - 588: -4,20 - 589: -4,20 - 590: -3,21 - 591: 3,26 - 592: 4,26 - 593: 3,24 - 594: -1,20 - 595: 3,24 - 596: 4,25 - 597: 5,26 - 598: 5,25 - 599: 4,23 - 600: 0,20 - 601: 0,20 - 602: 2,20 - 603: 4,21 - 604: 4,22 - 605: 1,20 - 606: 1,29 - 607: 2,30 - 608: 0,31 - 609: -1,31 - 610: -2,31 - 611: 0,31 - 612: 2,32 - 613: 2,32 - 614: 0,30 - 615: 0,30 - 616: -5,30 - 617: -5,30 - 618: -4,31 - 619: -4,32 - 620: -4,34 - 621: -5,34 - 622: -5,32 - 623: -6,31 - 624: -6,30 - 625: -4,30 - 626: -5,32 - 627: -5,34 - 628: -6,33 - 629: -7,32 - 630: -5,34 - 631: -4,37 - 632: -4,36 - 633: -4,36 - 634: 5,33 - 635: 5,33 - 636: 5,34 - 637: 4,31 - 638: 6,31 - 639: 5,31 - 640: 6,30 - 641: 5,32 - 642: 3,31 - 643: 3,31 - 644: 0,32 - 645: 0,33 - 646: 7,26 - 647: 7,27 - 648: 5,27 - 649: 7,26 - 650: 6,27 - 651: 7,25 - 652: 8,25 - 653: 6,25 - 654: 6,26 - 655: 6,25 - 656: 7,24 - 657: 6,26 - 658: 2,25 - 659: 3,21 - 660: 1,20 - 661: -1,19 - 662: -3,17 - 664: -3,16 - 665: -3,18 - 666: -2,14 - 667: -3,15 - 668: -3,17 - 670: -1,15 - 671: 3,18 - 672: 1,17 - 673: 3,18 - 674: 1,17 - 675: 3,15 - 676: 3,17 - 677: 2,16 - 678: 3,16 - 679: 2,16 - 680: -5,16 - 681: -7,20 - 682: -6,14 - 683: -6,12 - 684: -6,14 - 685: -6,13 - 686: -4,12 - 687: -4,9 - 688: -6,10 - 689: -8,11 - 690: -8,8 - 691: -7,6 - 692: -7,5 - 693: -8,6 - 694: -7,7 - 695: -7,5 - 696: -5,5 - 697: -4,6 - 698: -6,6 - 699: -1,6 - 700: -2,6 - 701: -1,6 - 702: 2,6 - 703: 6,7 - 704: 7,8 - 705: 5,5 - 706: 5,5 - 707: 6,5 - 708: 5,6 - 709: 5,8 - 710: 7,6 - 711: 7,4 - 712: 7,8 - 713: 6,9 - 714: 6,10 - 715: 8,10 - 716: 3,9 - 717: -2,12 - 718: 1,12 - 719: -2,13 - 720: 1,12 - 721: 0,15 - 722: 0,16 - 723: 3,18 - 724: 3,16 - 725: 3,14 - 726: 3,9 - 727: 3,6 - 728: 3,5 - 729: -5,2 - 730: -6,1 - 731: -6,0 - 732: -5,-4 - 733: -5,-4 - 734: -6,-2 - 735: -6,-1 - 736: -6,-4 - 737: -6,-4 - 738: -5,-4 - 739: -6,-2 - 740: -6,0 - 741: -6,2 - 742: -5,3 - 743: -6,3 - 744: -6,-4 - 745: -5,-6 - 746: -6,-7 - 747: -6,-7 - 748: -7,-7 - 749: -6,-6 - 750: -7,-7 - 751: -1,-5 - 752: -1,-4 - 753: -1,-3 - 754: 1,-4 - 755: 4,-3 - 756: 2,-6 - 757: -4,-7 - 758: -3,-5 - 759: -3,-4 - 760: -3,-8 - 761: -1,-7 - 762: 2,-7 - 763: 5,-7 - 764: -1,-7 - 765: -3,-7 - 766: -3,-6 - 767: -2,-4 - 768: -1,-3 - 769: 2,-3 - 770: 1,-6 - 771: 2,-6 - 772: 2,-5 - 773: 3,-5 - 774: 2,-7 - 775: -1,-5 - 776: -1,-2 - 777: -2,-4 - 778: 0,-10 - 779: -1,-10 - 780: 0,-9 - 781: -1,-11 - 782: 0,-11 - 783: -1,-10 - 784: -1,-9 - 785: 6,-7 - 786: 7,-7 - 787: 5,-6 - 788: 7,-6 - 789: 5,-6 - 790: 5,-4 - 791: 5,-3 - 792: 6,-2 - 793: 5,-4 - 794: 6,-4 - 795: 6,-1 - 796: 6,1 - 797: 4,3 - 798: 5,3 - 799: 5,2 - 800: 5,2 - 801: 7,-9 - 802: 7,-10 - 803: 4,-13 - 804: 2,-13 - 805: 5,-13 - 806: 5,-13 - 807: 6,-13 - 808: 1,-14 - 809: -2,-14 - 810: -2,-14 - 811: -2,-13 - 812: -3,-13 - 813: -4,-14 - 814: -3,-13 - 815: -4,-13 - 816: -6,-14 - 817: -4,-13 - 818: -3,-12 - 819: -6,-14 - 820: -6,-14 - 821: -6,-11 - 822: -6,-10 - 823: -6,-9 - 824: -6,-11 - 825: -6,-13 - 826: -7,-13 - 827: -8,-12 - 828: -8,-11 - 829: -9,-13 - 830: -8,-14 - 831: -10,-13 - 832: -10,-11 - 833: -9,-11 - 834: -8,-14 - 852: -3,25 - 853: -4,25 - 854: -4,25 - 855: -3,24 - 856: -3,24 - 857: -1,20 - 858: 0,20 - 859: 0,20 - 860: 1,20 - 861: 1,20 - 862: -2,20 - 863: -3,20 - 864: 2,28 - 865: 2,28 - 866: 2,26 - 867: 2,26 - 868: 0,30 - 869: -1,30 - 870: -2,30 - 871: -1,31 - 872: 0,30 - 873: -4,30 - 874: -5,30 - 875: -5,30 - 876: -4,32 - 877: -4,32 - 878: -5,33 - 879: -5,34 - 880: -5,32 - 882: -3,17 - 883: -3,17 - 884: -3,16 - 885: -2,15 - 886: -2,15 - 887: 5,15 - 888: 3,16 - 889: 2,15 - 890: 3,15 - 891: 2,16 - 892: 2,17 - 893: 3,18 - 894: 3,18 - 895: 3,18 - 896: 0,12 - 897: -2,12 - 898: 6,7 - 899: 5,8 - 900: 5,8 - 901: 6,8 - 902: 6,10 - 903: 6,10 - 904: -1,-6 - 905: -1,-5 - 906: -1,-5 - 907: -3,-4 - 908: -3,-4 - 909: -3,-6 - 910: -2,-6 - 911: -1,-6 - 912: -1,-7 - 913: -1,-7 - 914: 1,-7 - 915: 2,-6 - 916: 2,-6 - 917: 1,-6 - 918: 1,-4 - 919: -5,-4 - 920: -5,-3 - 921: -5,-3 - 922: -5,-2 - 923: -6,-2 - 924: -6,0 + 6647: 5,7 + 6648: 7,7 + 6649: 6,6 + 6650: 6,10 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 838: -7,8 - 839: -7,8 - 840: -7,9 - 841: -6,8 - 842: -5,8 - 843: -5,10 - 844: -5,10 - 845: -6,10 - 846: -7,10 - 847: -8,9 - 848: -7,11 + 794: -7,8 + 795: -7,8 + 796: -7,9 + 797: -6,8 + 798: -5,8 + 799: -5,10 + 800: -5,10 + 801: -6,10 + 802: -7,10 + 803: -8,9 + 804: -7,11 - node: zIndex: 1 angle: -4.71238898038469 rad id: FloorTechMaintDirectionalCorner decals: - 3393: -2,11 - 3552: -2,11 - 3808: -2,11 - 4056: -2,11 - 4304: -2,11 - 4552: -2,11 - 4800: -2,11 - 5063: -2,11 - 5311: -2,11 - 5581: -2,11 - 5829: -2,11 + 3344: -2,11 + 3503: -2,11 + 3759: -2,11 + 4007: -2,11 + 4255: -2,11 + 4503: -2,11 + 4751: -2,11 + 5014: -2,11 + 5262: -2,11 + 5532: -2,11 + 5780: -2,11 + 6036: -2,11 + 6284: -2,11 + 6524: -2,11 + 6802: -2,11 - node: zIndex: 1 angle: -3.141592653589793 rad id: FloorTechMaintDirectionalCorner decals: - 3398: -2,7 - 3656: -2,7 - 3802: -2,7 - 4050: -2,7 - 4298: -2,7 - 4546: -2,7 - 4794: -2,7 - 5057: -2,7 - 5305: -2,7 - 5575: -2,7 - 5823: -2,7 + 3349: -2,7 + 3607: -2,7 + 3753: -2,7 + 4001: -2,7 + 4249: -2,7 + 4497: -2,7 + 4745: -2,7 + 5008: -2,7 + 5256: -2,7 + 5526: -2,7 + 5774: -2,7 + 6030: -2,7 + 6278: -2,7 + 6518: -2,7 + 6796: -2,7 - node: zIndex: 1 angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalCorner decals: - 3412: 2,7 - 3661: 2,7 - 3693: 2,7 - 3941: 2,7 - 4189: 2,7 - 4437: 2,7 - 4685: 2,7 - 4948: 2,7 - 5196: 2,7 - 5466: 2,7 - 5714: 2,7 + 3363: 2,7 + 3612: 2,7 + 3644: 2,7 + 3892: 2,7 + 4140: 2,7 + 4388: 2,7 + 4636: 2,7 + 4899: 2,7 + 5147: 2,7 + 5417: 2,7 + 5665: 2,7 + 5921: 2,7 + 6169: 2,7 + 6417: 2,7 + 6687: 2,7 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner decals: - 3406: 2,11 - 3446: 2,11 - 3699: 2,11 - 3947: 2,11 - 4195: 2,11 - 4443: 2,11 - 4691: 2,11 - 4954: 2,11 - 5202: 2,11 - 5472: 2,11 - 5720: 2,11 + 3357: 2,11 + 3397: 2,11 + 3650: 2,11 + 3898: 2,11 + 4146: 2,11 + 4394: 2,11 + 4642: 2,11 + 4905: 2,11 + 5153: 2,11 + 5423: 2,11 + 5671: 2,11 + 5927: 2,11 + 6175: 2,11 + 6423: 2,11 + 6693: 2,11 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge decals: - 3392: -2,11 - 3394: -2,10 - 3395: -2,9 - 3397: -2,7 - 3399: -2,8 - 3547: -2,8 - 3548: -2,9 - 3549: -2,10 - 3551: -2,11 - 3655: -2,7 - 3801: -2,7 - 3803: -2,8 - 3804: -2,9 - 3805: -2,10 - 3807: -2,11 - 4049: -2,7 - 4051: -2,8 - 4052: -2,9 - 4053: -2,10 - 4055: -2,11 - 4297: -2,7 - 4299: -2,8 - 4300: -2,9 - 4301: -2,10 - 4303: -2,11 - 4545: -2,7 - 4547: -2,8 - 4548: -2,9 - 4549: -2,10 - 4551: -2,11 - 4793: -2,7 - 4795: -2,8 - 4796: -2,9 - 4797: -2,10 - 4799: -2,11 - 5056: -2,7 - 5058: -2,8 - 5059: -2,9 - 5060: -2,10 - 5062: -2,11 - 5304: -2,7 - 5306: -2,8 - 5307: -2,9 - 5308: -2,10 - 5310: -2,11 - 5574: -2,7 - 5576: -2,8 - 5577: -2,9 - 5578: -2,10 - 5580: -2,11 - 5822: -2,7 - 5824: -2,8 - 5825: -2,9 - 5826: -2,10 - 5828: -2,11 + 3343: -2,11 + 3345: -2,10 + 3346: -2,9 + 3348: -2,7 + 3350: -2,8 + 3498: -2,8 + 3499: -2,9 + 3500: -2,10 + 3502: -2,11 + 3606: -2,7 + 3752: -2,7 + 3754: -2,8 + 3755: -2,9 + 3756: -2,10 + 3758: -2,11 + 4000: -2,7 + 4002: -2,8 + 4003: -2,9 + 4004: -2,10 + 4006: -2,11 + 4248: -2,7 + 4250: -2,8 + 4251: -2,9 + 4252: -2,10 + 4254: -2,11 + 4496: -2,7 + 4498: -2,8 + 4499: -2,9 + 4500: -2,10 + 4502: -2,11 + 4744: -2,7 + 4746: -2,8 + 4747: -2,9 + 4748: -2,10 + 4750: -2,11 + 5007: -2,7 + 5009: -2,8 + 5010: -2,9 + 5011: -2,10 + 5013: -2,11 + 5255: -2,7 + 5257: -2,8 + 5258: -2,9 + 5259: -2,10 + 5261: -2,11 + 5525: -2,7 + 5527: -2,8 + 5528: -2,9 + 5529: -2,10 + 5531: -2,11 + 5773: -2,7 + 5775: -2,8 + 5776: -2,9 + 5777: -2,10 + 5779: -2,11 + 6029: -2,7 + 6031: -2,8 + 6032: -2,9 + 6033: -2,10 + 6035: -2,11 + 6277: -2,7 + 6279: -2,8 + 6280: -2,9 + 6281: -2,10 + 6283: -2,11 + 6517: -2,7 + 6519: -2,8 + 6520: -2,9 + 6521: -2,10 + 6523: -2,11 + 6795: -2,7 + 6797: -2,8 + 6798: -2,9 + 6799: -2,10 + 6801: -2,11 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge decals: - 3396: -2,7 - 3401: -1,7 - 3403: 0,7 - 3410: 2,7 - 3414: 1,7 - 3654: -2,7 - 3657: -1,7 - 3658: 0,7 - 3659: 2,7 - 3662: 1,7 - 3671: 0,7 - 3681: 1,7 - 3691: 2,7 - 3800: -2,7 - 3817: -1,7 - 3919: 0,7 - 3929: 1,7 - 3939: 2,7 - 4048: -2,7 - 4065: -1,7 - 4167: 0,7 - 4177: 1,7 - 4187: 2,7 - 4296: -2,7 - 4313: -1,7 - 4415: 0,7 - 4425: 1,7 - 4435: 2,7 - 4544: -2,7 - 4561: -1,7 - 4663: 0,7 - 4673: 1,7 - 4683: 2,7 - 4792: -2,7 - 4809: -1,7 - 4926: 0,7 - 4936: 1,7 - 4946: 2,7 - 5055: -2,7 - 5072: -1,7 - 5174: 0,7 - 5184: 1,7 - 5194: 2,7 - 5303: -2,7 - 5320: -1,7 - 5444: 0,7 - 5454: 1,7 - 5464: 2,7 - 5573: -2,7 - 5590: -1,7 - 5692: 0,7 - 5702: 1,7 - 5712: 2,7 - 5821: -2,7 - 5838: -1,7 + 3347: -2,7 + 3352: -1,7 + 3354: 0,7 + 3361: 2,7 + 3365: 1,7 + 3605: -2,7 + 3608: -1,7 + 3609: 0,7 + 3610: 2,7 + 3613: 1,7 + 3622: 0,7 + 3632: 1,7 + 3642: 2,7 + 3751: -2,7 + 3768: -1,7 + 3870: 0,7 + 3880: 1,7 + 3890: 2,7 + 3999: -2,7 + 4016: -1,7 + 4118: 0,7 + 4128: 1,7 + 4138: 2,7 + 4247: -2,7 + 4264: -1,7 + 4366: 0,7 + 4376: 1,7 + 4386: 2,7 + 4495: -2,7 + 4512: -1,7 + 4614: 0,7 + 4624: 1,7 + 4634: 2,7 + 4743: -2,7 + 4760: -1,7 + 4877: 0,7 + 4887: 1,7 + 4897: 2,7 + 5006: -2,7 + 5023: -1,7 + 5125: 0,7 + 5135: 1,7 + 5145: 2,7 + 5254: -2,7 + 5271: -1,7 + 5395: 0,7 + 5405: 1,7 + 5415: 2,7 + 5524: -2,7 + 5541: -1,7 + 5643: 0,7 + 5653: 1,7 + 5663: 2,7 + 5772: -2,7 + 5789: -1,7 + 5899: 0,7 + 5909: 1,7 + 5919: 2,7 + 6028: -2,7 + 6045: -1,7 + 6147: 0,7 + 6157: 1,7 + 6167: 2,7 + 6276: -2,7 + 6293: -1,7 + 6395: 0,7 + 6405: 1,7 + 6415: 2,7 + 6516: -2,7 + 6533: -1,7 + 6665: 0,7 + 6675: 1,7 + 6685: 2,7 + 6794: -2,7 + 6811: -1,7 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge decals: - 3404: 2,11 - 3408: 2,10 - 3409: 2,9 - 3411: 2,7 - 3413: 2,8 - 3441: 2,8 - 3442: 2,9 - 3443: 2,10 - 3444: 2,11 - 3660: 2,7 - 3692: 2,7 - 3694: 2,8 - 3695: 2,9 - 3696: 2,10 - 3697: 2,11 - 3940: 2,7 - 3942: 2,8 - 3943: 2,9 - 3944: 2,10 - 3945: 2,11 - 4188: 2,7 - 4190: 2,8 - 4191: 2,9 - 4192: 2,10 - 4193: 2,11 - 4436: 2,7 - 4438: 2,8 - 4439: 2,9 - 4440: 2,10 - 4441: 2,11 - 4684: 2,7 - 4686: 2,8 - 4687: 2,9 - 4688: 2,10 - 4689: 2,11 - 4947: 2,7 - 4949: 2,8 - 4950: 2,9 - 4951: 2,10 - 4952: 2,11 - 5195: 2,7 - 5197: 2,8 - 5198: 2,9 - 5199: 2,10 - 5200: 2,11 - 5465: 2,7 - 5467: 2,8 - 5468: 2,9 - 5469: 2,10 - 5470: 2,11 - 5713: 2,7 - 5715: 2,8 - 5716: 2,9 - 5717: 2,10 - 5718: 2,11 + 3355: 2,11 + 3359: 2,10 + 3360: 2,9 + 3362: 2,7 + 3364: 2,8 + 3392: 2,8 + 3393: 2,9 + 3394: 2,10 + 3395: 2,11 + 3611: 2,7 + 3643: 2,7 + 3645: 2,8 + 3646: 2,9 + 3647: 2,10 + 3648: 2,11 + 3891: 2,7 + 3893: 2,8 + 3894: 2,9 + 3895: 2,10 + 3896: 2,11 + 4139: 2,7 + 4141: 2,8 + 4142: 2,9 + 4143: 2,10 + 4144: 2,11 + 4387: 2,7 + 4389: 2,8 + 4390: 2,9 + 4391: 2,10 + 4392: 2,11 + 4635: 2,7 + 4637: 2,8 + 4638: 2,9 + 4639: 2,10 + 4640: 2,11 + 4898: 2,7 + 4900: 2,8 + 4901: 2,9 + 4902: 2,10 + 4903: 2,11 + 5146: 2,7 + 5148: 2,8 + 5149: 2,9 + 5150: 2,10 + 5151: 2,11 + 5416: 2,7 + 5418: 2,8 + 5419: 2,9 + 5420: 2,10 + 5421: 2,11 + 5664: 2,7 + 5666: 2,8 + 5667: 2,9 + 5668: 2,10 + 5669: 2,11 + 5920: 2,7 + 5922: 2,8 + 5923: 2,9 + 5924: 2,10 + 5925: 2,11 + 6168: 2,7 + 6170: 2,8 + 6171: 2,9 + 6172: 2,10 + 6173: 2,11 + 6416: 2,7 + 6418: 2,8 + 6419: 2,9 + 6420: 2,10 + 6421: 2,11 + 6686: 2,7 + 6688: 2,8 + 6689: 2,9 + 6690: 2,10 + 6691: 2,11 - node: id: FloorTechMaintDirectionalEdge decals: - 3391: -2,11 - 3400: -1,11 - 3402: 0,11 - 3405: 2,11 - 3407: 1,11 - 3423: 0,11 - 3432: 1,11 - 3445: 2,11 - 3550: -2,11 - 3561: -1,11 - 3672: 0,11 - 3682: 1,11 - 3698: 2,11 - 3806: -2,11 - 3818: -1,11 - 3920: 0,11 - 3930: 1,11 - 3946: 2,11 - 4054: -2,11 - 4066: -1,11 - 4168: 0,11 - 4178: 1,11 - 4194: 2,11 - 4302: -2,11 - 4314: -1,11 - 4416: 0,11 - 4426: 1,11 - 4442: 2,11 - 4550: -2,11 - 4562: -1,11 - 4664: 0,11 - 4674: 1,11 - 4690: 2,11 - 4798: -2,11 - 4810: -1,11 - 4927: 0,11 - 4937: 1,11 - 4953: 2,11 - 5061: -2,11 - 5073: -1,11 - 5175: 0,11 - 5185: 1,11 - 5201: 2,11 - 5309: -2,11 - 5321: -1,11 - 5445: 0,11 - 5455: 1,11 - 5471: 2,11 - 5579: -2,11 - 5591: -1,11 - 5693: 0,11 - 5703: 1,11 - 5719: 2,11 - 5827: -2,11 - 5839: -1,11 + 3342: -2,11 + 3351: -1,11 + 3353: 0,11 + 3356: 2,11 + 3358: 1,11 + 3374: 0,11 + 3383: 1,11 + 3396: 2,11 + 3501: -2,11 + 3512: -1,11 + 3623: 0,11 + 3633: 1,11 + 3649: 2,11 + 3757: -2,11 + 3769: -1,11 + 3871: 0,11 + 3881: 1,11 + 3897: 2,11 + 4005: -2,11 + 4017: -1,11 + 4119: 0,11 + 4129: 1,11 + 4145: 2,11 + 4253: -2,11 + 4265: -1,11 + 4367: 0,11 + 4377: 1,11 + 4393: 2,11 + 4501: -2,11 + 4513: -1,11 + 4615: 0,11 + 4625: 1,11 + 4641: 2,11 + 4749: -2,11 + 4761: -1,11 + 4878: 0,11 + 4888: 1,11 + 4904: 2,11 + 5012: -2,11 + 5024: -1,11 + 5126: 0,11 + 5136: 1,11 + 5152: 2,11 + 5260: -2,11 + 5272: -1,11 + 5396: 0,11 + 5406: 1,11 + 5422: 2,11 + 5530: -2,11 + 5542: -1,11 + 5644: 0,11 + 5654: 1,11 + 5670: 2,11 + 5778: -2,11 + 5790: -1,11 + 5900: 0,11 + 5910: 1,11 + 5926: 2,11 + 6034: -2,11 + 6046: -1,11 + 6148: 0,11 + 6158: 1,11 + 6174: 2,11 + 6282: -2,11 + 6294: -1,11 + 6396: 0,11 + 6406: 1,11 + 6422: 2,11 + 6522: -2,11 + 6534: -1,11 + 6666: 0,11 + 6676: 1,11 + 6692: 2,11 + 6800: -2,11 + 6812: -1,11 - node: zIndex: 1 id: LatticeCornerNE decals: - 931: 0,1 - 939: 1,1 - 947: 2,1 - 955: 3,0 - 963: 3,1 - 971: 4,0 - 979: 4,1 - 987: 8,12 - 999: -9,3 - 1007: -8,12 - 1015: -4,0 - 1023: -4,1 - 1031: -3,0 - 1039: -3,1 - 1047: -2,1 - 1055: -1,1 - 1064: -10,-16 - 1069: -4,-1 - 1077: 4,-1 - 1095: -9,-17 - 1098: -3,-20 - 1103: 6,16 - 1111: 6,17 - 1119: 6,18 - 1127: 6,19 - 1135: 6,20 - 1147: -9,24 - 1155: 0,1 - 1163: 1,1 - 1171: 2,1 - 1179: 3,0 - 1187: 3,1 - 1195: 4,0 - 1203: 4,1 - 1211: 8,12 - 1223: -9,3 - 1231: -8,12 - 1239: -4,0 - 1247: -4,1 - 1255: -3,0 - 1263: -3,1 - 1271: -2,1 - 1279: -1,1 - 1288: -10,-16 - 1293: -4,-1 - 1301: 4,-1 - 1319: -9,-17 - 1322: -3,-20 - 1327: 6,16 - 1335: 6,17 - 1343: 6,18 - 1351: 6,19 - 1359: 6,20 - 1371: -9,24 - 1379: 0,1 - 1387: 1,1 - 1395: 2,1 - 1403: 3,0 - 1411: 3,1 - 1419: 4,0 - 1427: 4,1 - 1435: 8,12 - 1447: -9,3 - 1455: -8,12 - 1463: -4,0 - 1471: -4,1 - 1479: -3,0 - 1487: -3,1 - 1495: -2,1 - 1503: -1,1 - 1512: -10,-16 - 1517: -4,-1 - 1525: 4,-1 - 1543: -9,-17 - 1546: -3,-20 - 1551: 6,16 - 1559: 6,17 - 1567: 6,18 - 1575: 6,19 - 1583: 6,20 - 1595: -9,24 - 1603: 0,1 - 1611: 1,1 - 1619: 2,1 - 1627: 3,0 - 1635: 3,1 - 1643: 4,0 - 1651: 4,1 - 1659: 8,12 - 1671: -9,3 - 1679: -8,12 - 1687: -4,0 - 1695: -4,1 - 1703: -3,0 - 1711: -3,1 - 1719: -2,1 - 1727: -1,1 - 1736: -10,-16 - 1741: -4,-1 - 1749: 4,-1 - 1767: -9,-17 - 1770: -3,-20 - 1775: 6,16 - 1783: 6,17 - 1791: 6,18 - 1799: 6,19 - 1807: 6,20 - 1819: -9,24 - 1827: 0,1 - 1835: 1,1 - 1843: 2,1 - 1851: 3,0 - 1859: 3,1 - 1867: 4,0 - 1875: 4,1 - 1883: 8,12 - 1895: -9,3 - 1900: -4,0 - 1908: -4,1 - 1916: -3,0 - 1924: -3,1 - 1932: -2,1 - 1940: -1,1 - 1949: -10,-16 - 1954: -4,-1 - 1962: 4,-1 - 1980: -9,-17 - 1983: -3,-20 - 1988: 6,16 - 1996: 6,17 - 2004: 6,18 - 2012: 6,19 - 2020: 6,20 - 2032: -9,24 - 2040: -8,12 - 2051: 0,1 - 2059: 1,1 - 2067: 2,1 - 2075: 3,0 - 2083: 3,1 - 2091: 4,0 - 2099: 4,1 - 2107: 8,12 - 2119: -9,3 - 2127: -8,12 - 2135: -4,0 - 2143: -4,1 - 2151: -3,0 - 2159: -3,1 - 2167: -2,1 - 2175: -1,1 - 2184: -10,-16 - 2189: -4,-1 - 2197: 4,-1 - 2215: -9,-17 - 2218: -3,-20 - 2223: 6,16 - 2231: 6,17 - 2239: 6,18 - 2247: 6,19 - 2255: 6,20 - 2267: -9,24 - 2275: 0,1 - 2283: 1,1 - 2291: 2,1 - 2299: 3,0 - 2307: 3,1 - 2315: 4,0 - 2323: 4,1 - 2331: 8,12 - 2343: -9,3 - 2351: -8,12 - 2359: -4,0 - 2367: -4,1 - 2375: -3,0 - 2383: -3,1 - 2391: -2,1 - 2399: -1,1 - 2408: -10,-16 - 2413: -4,-1 - 2421: 4,-1 - 2439: -9,-17 - 2442: -3,-20 - 2447: 6,16 - 2455: 6,17 - 2463: 6,18 - 2471: 6,19 - 2479: 6,20 - 2491: -9,24 - 2499: 0,1 - 2507: 1,1 - 2515: 2,1 - 2523: 3,0 - 2531: 3,1 - 2539: 4,0 - 2547: 4,1 - 2555: 8,12 - 2567: -9,3 - 2575: -8,12 - 2583: -4,0 - 2591: -4,1 - 2599: -3,0 - 2607: -3,1 - 2615: -2,1 - 2623: -1,1 - 2632: -10,-16 - 2637: -4,-1 - 2645: 4,-1 - 2663: -9,-17 - 2666: -3,-20 - 2671: 6,16 - 2679: 6,17 - 2687: 6,18 - 2695: 6,19 - 2703: 6,20 - 2715: -9,24 - 2723: 0,1 - 2731: 1,1 - 2739: 2,1 - 2747: 3,0 - 2755: 3,1 - 2763: 4,0 - 2771: 4,1 - 2779: 8,12 - 2791: -9,3 - 2799: -8,12 - 2807: -4,0 - 2815: -4,1 - 2823: -3,0 - 2831: -3,1 - 2839: -2,1 - 2847: -1,1 - 2856: -10,-16 - 2861: -4,-1 - 2869: 4,-1 - 2887: -9,-17 - 2890: -3,-20 - 2895: 6,16 - 2903: 6,17 - 2911: 6,18 - 2919: 6,19 - 2927: 6,20 - 2939: -9,24 - 2947: 0,1 - 2955: 1,1 - 2963: 2,1 - 2971: 3,0 - 2979: 3,1 - 2987: 4,0 - 2995: 4,1 - 3003: 8,12 - 3015: -9,3 - 3023: -8,12 - 3031: -4,0 - 3039: -4,1 - 3047: -3,0 - 3055: -3,1 - 3063: -2,1 - 3071: -1,1 - 3080: -10,-16 - 3085: -4,-1 - 3093: 4,-1 - 3111: -9,-17 - 3114: -3,-20 - 3119: 6,16 - 3127: 6,17 - 3135: 6,18 - 3143: 6,19 - 3151: 6,20 - 3163: -9,24 - 3171: 0,1 - 3179: 1,1 - 3187: 2,1 - 3195: 3,0 - 3203: 3,1 - 3211: 4,0 - 3219: 4,1 - 3227: 8,12 - 3239: -9,3 - 3247: -8,12 - 3255: -4,0 - 3263: -4,1 - 3271: -3,0 - 3279: -3,1 - 3287: -2,1 - 3295: -1,1 - 3304: -10,-16 - 3309: -4,-1 - 3317: 4,-1 - 3335: -9,-17 - 3338: -3,-20 - 3343: 6,16 - 3351: 6,17 - 3359: 6,18 - 3367: 6,19 - 3375: 6,20 - 3387: -9,24 - 3419: 0,1 - 3428: 1,1 - 3437: 2,1 - 3451: 3,0 - 3459: 3,1 - 3467: 4,0 - 3475: 4,1 - 3483: 8,12 - 3495: -9,3 - 3503: -8,12 - 3511: -4,0 - 3519: -4,1 - 3527: -3,0 - 3535: -3,1 - 3543: -2,1 - 3557: -1,1 - 3567: -10,-16 - 3572: -4,-1 - 3580: 4,-1 - 3598: -9,-17 - 3601: -3,-20 - 3606: 6,16 - 3614: 6,17 - 3622: 6,18 - 3630: 6,19 - 3638: 6,20 - 3650: -9,24 - 3667: 0,1 - 3677: 1,1 - 3687: 2,1 - 3704: 3,0 - 3712: 3,1 - 3720: 4,0 - 3728: 4,1 - 3736: 8,12 - 3748: -9,3 - 3756: -8,12 - 3764: -4,0 - 3772: -4,1 - 3780: -3,0 - 3788: -3,1 - 3796: -2,1 - 3813: -1,1 - 3824: -10,-16 - 3829: -4,-1 - 3837: 4,-1 - 3855: -9,-17 - 3858: -3,-20 - 3863: 6,16 - 3871: 6,17 - 3879: 6,18 - 3887: 6,19 - 3895: 6,20 - 3907: -9,24 - 3915: 0,1 - 3925: 1,1 - 3935: 2,1 - 3952: 3,0 - 3960: 3,1 - 3968: 4,0 - 3976: 4,1 - 3984: 8,12 - 3996: -9,3 - 4004: -8,12 - 4012: -4,0 - 4020: -4,1 - 4028: -3,0 - 4036: -3,1 - 4044: -2,1 - 4061: -1,1 - 4069: -10,-16 - 4074: -4,-1 - 4082: 4,-1 - 4097: -9,-17 - 4100: -3,-20 - 4105: 6,16 - 4113: 6,17 - 4121: 6,18 - 4129: 6,19 - 4137: 6,20 - 4149: -9,24 - 4163: 0,1 - 4173: 1,1 - 4183: 2,1 - 4200: 3,0 - 4208: 3,1 - 4216: 4,0 - 4224: 4,1 - 4232: 8,12 - 4244: -9,3 - 4252: -8,12 - 4260: -4,0 - 4268: -4,1 - 4276: -3,0 - 4284: -3,1 - 4292: -2,1 - 4309: -1,1 - 4320: -10,-16 - 4325: -4,-1 - 4333: 4,-1 - 4351: -9,-17 - 4354: -3,-20 - 4359: 6,16 - 4367: 6,17 - 4375: 6,18 - 4383: 6,19 - 4391: 6,20 - 4403: -9,24 - 4411: 0,1 - 4421: 1,1 - 4431: 2,1 - 4448: 3,0 - 4456: 3,1 - 4464: 4,0 - 4472: 4,1 - 4480: 8,12 - 4492: -9,3 - 4500: -8,12 - 4508: -4,0 - 4516: -4,1 - 4524: -3,0 - 4532: -3,1 - 4540: -2,1 - 4557: -1,1 - 4568: -10,-16 - 4573: -4,-1 - 4581: 4,-1 - 4599: -9,-17 - 4602: -3,-20 - 4607: 6,16 - 4615: 6,17 - 4623: 6,18 - 4631: 6,19 - 4639: 6,20 - 4651: -9,24 - 4659: 0,1 - 4669: 1,1 - 4679: 2,1 - 4696: 3,0 - 4704: 3,1 - 4712: 4,0 - 4720: 4,1 - 4728: 8,12 - 4740: -9,3 - 4748: -8,12 - 4756: -4,0 - 4764: -4,1 - 4772: -3,0 - 4780: -3,1 - 4788: -2,1 - 4805: -1,1 - 4816: -10,-16 - 4821: -4,-1 - 4829: 4,-1 - 4847: -9,-17 - 4850: -3,-20 - 4855: 6,16 - 4863: 6,17 - 4871: 6,18 - 4879: 6,19 - 4887: 6,20 - 4899: -9,24 - 4922: 0,1 - 4932: 1,1 - 4942: 2,1 - 4959: 3,0 - 4967: 3,1 - 4975: 4,0 - 4983: 4,1 - 4991: 8,12 - 5003: -9,3 - 5011: -8,12 - 5019: -4,0 - 5027: -4,1 - 5035: -3,0 - 5043: -3,1 - 5051: -2,1 - 5068: -1,1 - 5079: -10,-16 - 5084: -4,-1 - 5092: 4,-1 - 5110: -9,-17 - 5113: -3,-20 - 5118: 6,16 - 5126: 6,17 - 5134: 6,18 - 5142: 6,19 - 5150: 6,20 - 5162: -9,24 - 5170: 0,1 - 5180: 1,1 - 5190: 2,1 - 5207: 3,0 - 5215: 3,1 - 5223: 4,0 - 5231: 4,1 - 5239: 8,12 - 5251: -9,3 - 5259: -8,12 - 5267: -4,0 - 5275: -4,1 - 5283: -3,0 - 5291: -3,1 - 5299: -2,1 - 5316: -1,1 - 5327: -10,-16 - 5332: -4,-1 - 5340: 4,-1 - 5358: -9,-17 - 5361: -3,-20 - 5366: 6,16 - 5374: 6,17 - 5382: 6,18 - 5390: 6,19 - 5398: 6,20 - 5410: -9,24 - 5440: 0,1 - 5450: 1,1 - 5460: 2,1 - 5477: 3,0 - 5485: 3,1 - 5493: 4,0 - 5501: 4,1 - 5509: 8,12 - 5521: -9,3 - 5529: -8,12 - 5537: -4,0 - 5545: -4,1 - 5553: -3,0 - 5561: -3,1 - 5569: -2,1 - 5586: -1,1 - 5597: -10,-16 - 5602: -4,-1 - 5610: 4,-1 - 5628: -9,-17 - 5631: -3,-20 - 5636: 6,16 - 5644: 6,17 - 5652: 6,18 - 5660: 6,19 - 5668: 6,20 - 5680: -9,24 - 5688: 0,1 - 5698: 1,1 - 5708: 2,1 - 5725: 3,0 - 5733: 3,1 - 5741: 4,0 - 5749: 4,1 - 5757: 8,12 - 5769: -9,3 - 5777: -8,12 - 5785: -4,0 - 5793: -4,1 - 5801: -3,0 - 5809: -3,1 - 5817: -2,1 - 5834: -1,1 - 5845: -10,-16 - 5850: -4,-1 - 5858: 4,-1 - 5876: -9,-17 - 5879: -3,-20 - 5884: 6,16 - 5892: 6,17 - 5900: 6,18 - 5908: 6,19 - 5916: 6,20 - 5928: -9,24 + 882: 0,1 + 890: 1,1 + 898: 2,1 + 906: 3,0 + 914: 3,1 + 922: 4,0 + 930: 4,1 + 938: 8,12 + 950: -9,3 + 958: -8,12 + 966: -4,0 + 974: -4,1 + 982: -3,0 + 990: -3,1 + 998: -2,1 + 1006: -1,1 + 1015: -10,-16 + 1020: -4,-1 + 1028: 4,-1 + 1046: -9,-17 + 1049: -3,-20 + 1054: 6,16 + 1062: 6,17 + 1070: 6,18 + 1078: 6,19 + 1086: 6,20 + 1098: -9,24 + 1106: 0,1 + 1114: 1,1 + 1122: 2,1 + 1130: 3,0 + 1138: 3,1 + 1146: 4,0 + 1154: 4,1 + 1162: 8,12 + 1174: -9,3 + 1182: -8,12 + 1190: -4,0 + 1198: -4,1 + 1206: -3,0 + 1214: -3,1 + 1222: -2,1 + 1230: -1,1 + 1239: -10,-16 + 1244: -4,-1 + 1252: 4,-1 + 1270: -9,-17 + 1273: -3,-20 + 1278: 6,16 + 1286: 6,17 + 1294: 6,18 + 1302: 6,19 + 1310: 6,20 + 1322: -9,24 + 1330: 0,1 + 1338: 1,1 + 1346: 2,1 + 1354: 3,0 + 1362: 3,1 + 1370: 4,0 + 1378: 4,1 + 1386: 8,12 + 1398: -9,3 + 1406: -8,12 + 1414: -4,0 + 1422: -4,1 + 1430: -3,0 + 1438: -3,1 + 1446: -2,1 + 1454: -1,1 + 1463: -10,-16 + 1468: -4,-1 + 1476: 4,-1 + 1494: -9,-17 + 1497: -3,-20 + 1502: 6,16 + 1510: 6,17 + 1518: 6,18 + 1526: 6,19 + 1534: 6,20 + 1546: -9,24 + 1554: 0,1 + 1562: 1,1 + 1570: 2,1 + 1578: 3,0 + 1586: 3,1 + 1594: 4,0 + 1602: 4,1 + 1610: 8,12 + 1622: -9,3 + 1630: -8,12 + 1638: -4,0 + 1646: -4,1 + 1654: -3,0 + 1662: -3,1 + 1670: -2,1 + 1678: -1,1 + 1687: -10,-16 + 1692: -4,-1 + 1700: 4,-1 + 1718: -9,-17 + 1721: -3,-20 + 1726: 6,16 + 1734: 6,17 + 1742: 6,18 + 1750: 6,19 + 1758: 6,20 + 1770: -9,24 + 1778: 0,1 + 1786: 1,1 + 1794: 2,1 + 1802: 3,0 + 1810: 3,1 + 1818: 4,0 + 1826: 4,1 + 1834: 8,12 + 1846: -9,3 + 1851: -4,0 + 1859: -4,1 + 1867: -3,0 + 1875: -3,1 + 1883: -2,1 + 1891: -1,1 + 1900: -10,-16 + 1905: -4,-1 + 1913: 4,-1 + 1931: -9,-17 + 1934: -3,-20 + 1939: 6,16 + 1947: 6,17 + 1955: 6,18 + 1963: 6,19 + 1971: 6,20 + 1983: -9,24 + 1991: -8,12 + 2002: 0,1 + 2010: 1,1 + 2018: 2,1 + 2026: 3,0 + 2034: 3,1 + 2042: 4,0 + 2050: 4,1 + 2058: 8,12 + 2070: -9,3 + 2078: -8,12 + 2086: -4,0 + 2094: -4,1 + 2102: -3,0 + 2110: -3,1 + 2118: -2,1 + 2126: -1,1 + 2135: -10,-16 + 2140: -4,-1 + 2148: 4,-1 + 2166: -9,-17 + 2169: -3,-20 + 2174: 6,16 + 2182: 6,17 + 2190: 6,18 + 2198: 6,19 + 2206: 6,20 + 2218: -9,24 + 2226: 0,1 + 2234: 1,1 + 2242: 2,1 + 2250: 3,0 + 2258: 3,1 + 2266: 4,0 + 2274: 4,1 + 2282: 8,12 + 2294: -9,3 + 2302: -8,12 + 2310: -4,0 + 2318: -4,1 + 2326: -3,0 + 2334: -3,1 + 2342: -2,1 + 2350: -1,1 + 2359: -10,-16 + 2364: -4,-1 + 2372: 4,-1 + 2390: -9,-17 + 2393: -3,-20 + 2398: 6,16 + 2406: 6,17 + 2414: 6,18 + 2422: 6,19 + 2430: 6,20 + 2442: -9,24 + 2450: 0,1 + 2458: 1,1 + 2466: 2,1 + 2474: 3,0 + 2482: 3,1 + 2490: 4,0 + 2498: 4,1 + 2506: 8,12 + 2518: -9,3 + 2526: -8,12 + 2534: -4,0 + 2542: -4,1 + 2550: -3,0 + 2558: -3,1 + 2566: -2,1 + 2574: -1,1 + 2583: -10,-16 + 2588: -4,-1 + 2596: 4,-1 + 2614: -9,-17 + 2617: -3,-20 + 2622: 6,16 + 2630: 6,17 + 2638: 6,18 + 2646: 6,19 + 2654: 6,20 + 2666: -9,24 + 2674: 0,1 + 2682: 1,1 + 2690: 2,1 + 2698: 3,0 + 2706: 3,1 + 2714: 4,0 + 2722: 4,1 + 2730: 8,12 + 2742: -9,3 + 2750: -8,12 + 2758: -4,0 + 2766: -4,1 + 2774: -3,0 + 2782: -3,1 + 2790: -2,1 + 2798: -1,1 + 2807: -10,-16 + 2812: -4,-1 + 2820: 4,-1 + 2838: -9,-17 + 2841: -3,-20 + 2846: 6,16 + 2854: 6,17 + 2862: 6,18 + 2870: 6,19 + 2878: 6,20 + 2890: -9,24 + 2898: 0,1 + 2906: 1,1 + 2914: 2,1 + 2922: 3,0 + 2930: 3,1 + 2938: 4,0 + 2946: 4,1 + 2954: 8,12 + 2966: -9,3 + 2974: -8,12 + 2982: -4,0 + 2990: -4,1 + 2998: -3,0 + 3006: -3,1 + 3014: -2,1 + 3022: -1,1 + 3031: -10,-16 + 3036: -4,-1 + 3044: 4,-1 + 3062: -9,-17 + 3065: -3,-20 + 3070: 6,16 + 3078: 6,17 + 3086: 6,18 + 3094: 6,19 + 3102: 6,20 + 3114: -9,24 + 3122: 0,1 + 3130: 1,1 + 3138: 2,1 + 3146: 3,0 + 3154: 3,1 + 3162: 4,0 + 3170: 4,1 + 3178: 8,12 + 3190: -9,3 + 3198: -8,12 + 3206: -4,0 + 3214: -4,1 + 3222: -3,0 + 3230: -3,1 + 3238: -2,1 + 3246: -1,1 + 3255: -10,-16 + 3260: -4,-1 + 3268: 4,-1 + 3286: -9,-17 + 3289: -3,-20 + 3294: 6,16 + 3302: 6,17 + 3310: 6,18 + 3318: 6,19 + 3326: 6,20 + 3338: -9,24 + 3370: 0,1 + 3379: 1,1 + 3388: 2,1 + 3402: 3,0 + 3410: 3,1 + 3418: 4,0 + 3426: 4,1 + 3434: 8,12 + 3446: -9,3 + 3454: -8,12 + 3462: -4,0 + 3470: -4,1 + 3478: -3,0 + 3486: -3,1 + 3494: -2,1 + 3508: -1,1 + 3518: -10,-16 + 3523: -4,-1 + 3531: 4,-1 + 3549: -9,-17 + 3552: -3,-20 + 3557: 6,16 + 3565: 6,17 + 3573: 6,18 + 3581: 6,19 + 3589: 6,20 + 3601: -9,24 + 3618: 0,1 + 3628: 1,1 + 3638: 2,1 + 3655: 3,0 + 3663: 3,1 + 3671: 4,0 + 3679: 4,1 + 3687: 8,12 + 3699: -9,3 + 3707: -8,12 + 3715: -4,0 + 3723: -4,1 + 3731: -3,0 + 3739: -3,1 + 3747: -2,1 + 3764: -1,1 + 3775: -10,-16 + 3780: -4,-1 + 3788: 4,-1 + 3806: -9,-17 + 3809: -3,-20 + 3814: 6,16 + 3822: 6,17 + 3830: 6,18 + 3838: 6,19 + 3846: 6,20 + 3858: -9,24 + 3866: 0,1 + 3876: 1,1 + 3886: 2,1 + 3903: 3,0 + 3911: 3,1 + 3919: 4,0 + 3927: 4,1 + 3935: 8,12 + 3947: -9,3 + 3955: -8,12 + 3963: -4,0 + 3971: -4,1 + 3979: -3,0 + 3987: -3,1 + 3995: -2,1 + 4012: -1,1 + 4020: -10,-16 + 4025: -4,-1 + 4033: 4,-1 + 4048: -9,-17 + 4051: -3,-20 + 4056: 6,16 + 4064: 6,17 + 4072: 6,18 + 4080: 6,19 + 4088: 6,20 + 4100: -9,24 + 4114: 0,1 + 4124: 1,1 + 4134: 2,1 + 4151: 3,0 + 4159: 3,1 + 4167: 4,0 + 4175: 4,1 + 4183: 8,12 + 4195: -9,3 + 4203: -8,12 + 4211: -4,0 + 4219: -4,1 + 4227: -3,0 + 4235: -3,1 + 4243: -2,1 + 4260: -1,1 + 4271: -10,-16 + 4276: -4,-1 + 4284: 4,-1 + 4302: -9,-17 + 4305: -3,-20 + 4310: 6,16 + 4318: 6,17 + 4326: 6,18 + 4334: 6,19 + 4342: 6,20 + 4354: -9,24 + 4362: 0,1 + 4372: 1,1 + 4382: 2,1 + 4399: 3,0 + 4407: 3,1 + 4415: 4,0 + 4423: 4,1 + 4431: 8,12 + 4443: -9,3 + 4451: -8,12 + 4459: -4,0 + 4467: -4,1 + 4475: -3,0 + 4483: -3,1 + 4491: -2,1 + 4508: -1,1 + 4519: -10,-16 + 4524: -4,-1 + 4532: 4,-1 + 4550: -9,-17 + 4553: -3,-20 + 4558: 6,16 + 4566: 6,17 + 4574: 6,18 + 4582: 6,19 + 4590: 6,20 + 4602: -9,24 + 4610: 0,1 + 4620: 1,1 + 4630: 2,1 + 4647: 3,0 + 4655: 3,1 + 4663: 4,0 + 4671: 4,1 + 4679: 8,12 + 4691: -9,3 + 4699: -8,12 + 4707: -4,0 + 4715: -4,1 + 4723: -3,0 + 4731: -3,1 + 4739: -2,1 + 4756: -1,1 + 4767: -10,-16 + 4772: -4,-1 + 4780: 4,-1 + 4798: -9,-17 + 4801: -3,-20 + 4806: 6,16 + 4814: 6,17 + 4822: 6,18 + 4830: 6,19 + 4838: 6,20 + 4850: -9,24 + 4873: 0,1 + 4883: 1,1 + 4893: 2,1 + 4910: 3,0 + 4918: 3,1 + 4926: 4,0 + 4934: 4,1 + 4942: 8,12 + 4954: -9,3 + 4962: -8,12 + 4970: -4,0 + 4978: -4,1 + 4986: -3,0 + 4994: -3,1 + 5002: -2,1 + 5019: -1,1 + 5030: -10,-16 + 5035: -4,-1 + 5043: 4,-1 + 5061: -9,-17 + 5064: -3,-20 + 5069: 6,16 + 5077: 6,17 + 5085: 6,18 + 5093: 6,19 + 5101: 6,20 + 5113: -9,24 + 5121: 0,1 + 5131: 1,1 + 5141: 2,1 + 5158: 3,0 + 5166: 3,1 + 5174: 4,0 + 5182: 4,1 + 5190: 8,12 + 5202: -9,3 + 5210: -8,12 + 5218: -4,0 + 5226: -4,1 + 5234: -3,0 + 5242: -3,1 + 5250: -2,1 + 5267: -1,1 + 5278: -10,-16 + 5283: -4,-1 + 5291: 4,-1 + 5309: -9,-17 + 5312: -3,-20 + 5317: 6,16 + 5325: 6,17 + 5333: 6,18 + 5341: 6,19 + 5349: 6,20 + 5361: -9,24 + 5391: 0,1 + 5401: 1,1 + 5411: 2,1 + 5428: 3,0 + 5436: 3,1 + 5444: 4,0 + 5452: 4,1 + 5460: 8,12 + 5472: -9,3 + 5480: -8,12 + 5488: -4,0 + 5496: -4,1 + 5504: -3,0 + 5512: -3,1 + 5520: -2,1 + 5537: -1,1 + 5548: -10,-16 + 5553: -4,-1 + 5561: 4,-1 + 5579: -9,-17 + 5582: -3,-20 + 5587: 6,16 + 5595: 6,17 + 5603: 6,18 + 5611: 6,19 + 5619: 6,20 + 5631: -9,24 + 5639: 0,1 + 5649: 1,1 + 5659: 2,1 + 5676: 3,0 + 5684: 3,1 + 5692: 4,0 + 5700: 4,1 + 5708: 8,12 + 5720: -9,3 + 5728: -8,12 + 5736: -4,0 + 5744: -4,1 + 5752: -3,0 + 5760: -3,1 + 5768: -2,1 + 5785: -1,1 + 5796: -10,-16 + 5801: -4,-1 + 5809: 4,-1 + 5827: -9,-17 + 5830: -3,-20 + 5835: 6,16 + 5843: 6,17 + 5851: 6,18 + 5859: 6,19 + 5867: 6,20 + 5879: -9,24 + 5895: 0,1 + 5905: 1,1 + 5915: 2,1 + 5932: 3,0 + 5940: 3,1 + 5948: 4,0 + 5956: 4,1 + 5964: 8,12 + 5976: -9,3 + 5984: -8,12 + 5992: -4,0 + 6000: -4,1 + 6008: -3,0 + 6016: -3,1 + 6024: -2,1 + 6041: -1,1 + 6052: -10,-16 + 6057: -4,-1 + 6065: 4,-1 + 6083: -9,-17 + 6086: -3,-20 + 6091: 6,16 + 6099: 6,17 + 6107: 6,18 + 6115: 6,19 + 6123: 6,20 + 6135: -9,24 + 6143: 0,1 + 6153: 1,1 + 6163: 2,1 + 6180: 3,0 + 6188: 3,1 + 6196: 4,0 + 6204: 4,1 + 6212: 8,12 + 6224: -9,3 + 6232: -8,12 + 6240: -4,0 + 6248: -4,1 + 6256: -3,0 + 6264: -3,1 + 6272: -2,1 + 6289: -1,1 + 6300: -10,-16 + 6305: -4,-1 + 6313: 4,-1 + 6331: -9,-17 + 6334: -3,-20 + 6339: 6,16 + 6347: 6,17 + 6355: 6,18 + 6363: 6,19 + 6371: 6,20 + 6383: -9,24 + 6391: 0,1 + 6401: 1,1 + 6411: 2,1 + 6428: 3,0 + 6436: 3,1 + 6444: 4,0 + 6452: 4,1 + 6464: -9,3 + 6472: -8,12 + 6480: -4,0 + 6488: -4,1 + 6496: -3,0 + 6504: -3,1 + 6512: -2,1 + 6529: -1,1 + 6540: -10,-16 + 6545: -4,-1 + 6553: 4,-1 + 6571: -9,-17 + 6574: -3,-20 + 6579: 6,16 + 6587: 6,17 + 6595: 6,18 + 6603: 6,19 + 6611: 6,20 + 6623: -9,24 + 6633: 8,12 + 6661: 0,1 + 6671: 1,1 + 6681: 2,1 + 6698: 3,0 + 6706: 3,1 + 6714: 4,0 + 6722: 4,1 + 6730: 8,12 + 6742: -9,3 + 6750: -8,12 + 6758: -4,0 + 6766: -4,1 + 6774: -3,0 + 6782: -3,1 + 6790: -2,1 + 6807: -1,1 + 6818: -10,-16 + 6823: -4,-1 + 6831: 4,-1 + 6849: -9,-17 + 6852: -3,-20 + 6857: 6,16 + 6865: 6,17 + 6873: 6,18 + 6881: 6,19 + 6889: 6,20 + 6901: -9,24 - node: zIndex: 1 id: LatticeCornerNW decals: - 934: 0,1 - 942: 1,1 - 950: 2,1 - 958: 3,0 - 966: 3,1 - 974: 4,0 - 982: 4,1 - 990: 8,12 - 993: 9,4 - 1010: -8,12 - 1018: -4,0 - 1026: -4,1 - 1034: -3,0 - 1042: -3,1 - 1050: -2,1 - 1058: -1,1 - 1072: -4,-1 - 1080: 4,-1 - 1083: 10,-16 - 1089: 3,-20 - 1092: 9,-17 - 1106: 6,16 - 1114: 6,17 - 1122: 6,18 - 1130: 6,19 - 1138: 6,20 - 1141: 9,24 - 1158: 0,1 - 1166: 1,1 - 1174: 2,1 - 1182: 3,0 - 1190: 3,1 - 1198: 4,0 - 1206: 4,1 - 1214: 8,12 - 1217: 9,4 - 1234: -8,12 - 1242: -4,0 - 1250: -4,1 - 1258: -3,0 - 1266: -3,1 - 1274: -2,1 - 1282: -1,1 - 1296: -4,-1 - 1304: 4,-1 - 1307: 10,-16 - 1313: 3,-20 - 1316: 9,-17 - 1330: 6,16 - 1338: 6,17 - 1346: 6,18 - 1354: 6,19 - 1362: 6,20 - 1365: 9,24 - 1382: 0,1 - 1390: 1,1 - 1398: 2,1 - 1406: 3,0 - 1414: 3,1 - 1422: 4,0 - 1430: 4,1 - 1438: 8,12 - 1441: 9,4 - 1458: -8,12 - 1466: -4,0 - 1474: -4,1 - 1482: -3,0 - 1490: -3,1 - 1498: -2,1 - 1506: -1,1 - 1520: -4,-1 - 1528: 4,-1 - 1531: 10,-16 - 1537: 3,-20 - 1540: 9,-17 - 1554: 6,16 - 1562: 6,17 - 1570: 6,18 - 1578: 6,19 - 1586: 6,20 - 1589: 9,24 - 1606: 0,1 - 1614: 1,1 - 1622: 2,1 - 1630: 3,0 - 1638: 3,1 - 1646: 4,0 - 1654: 4,1 - 1662: 8,12 - 1665: 9,4 - 1682: -8,12 - 1690: -4,0 - 1698: -4,1 - 1706: -3,0 - 1714: -3,1 - 1722: -2,1 - 1730: -1,1 - 1744: -4,-1 - 1752: 4,-1 - 1755: 10,-16 - 1761: 3,-20 - 1764: 9,-17 - 1778: 6,16 - 1786: 6,17 - 1794: 6,18 - 1802: 6,19 - 1810: 6,20 - 1813: 9,24 - 1830: 0,1 - 1838: 1,1 - 1846: 2,1 - 1854: 3,0 - 1862: 3,1 - 1870: 4,0 - 1878: 4,1 - 1886: 8,12 - 1889: 9,4 - 1903: -4,0 - 1911: -4,1 - 1919: -3,0 - 1927: -3,1 - 1935: -2,1 - 1943: -1,1 - 1957: -4,-1 - 1965: 4,-1 - 1968: 10,-16 - 1974: 3,-20 - 1977: 9,-17 - 1991: 6,16 - 1999: 6,17 - 2007: 6,18 - 2015: 6,19 - 2023: 6,20 - 2026: 9,24 - 2043: -8,12 - 2054: 0,1 - 2062: 1,1 - 2070: 2,1 - 2078: 3,0 - 2086: 3,1 - 2094: 4,0 - 2102: 4,1 - 2110: 8,12 - 2113: 9,4 - 2130: -8,12 - 2138: -4,0 - 2146: -4,1 - 2154: -3,0 - 2162: -3,1 - 2170: -2,1 - 2178: -1,1 - 2192: -4,-1 - 2200: 4,-1 - 2203: 10,-16 - 2209: 3,-20 - 2212: 9,-17 - 2226: 6,16 - 2234: 6,17 - 2242: 6,18 - 2250: 6,19 - 2258: 6,20 - 2261: 9,24 - 2278: 0,1 - 2286: 1,1 - 2294: 2,1 - 2302: 3,0 - 2310: 3,1 - 2318: 4,0 - 2326: 4,1 - 2334: 8,12 - 2337: 9,4 - 2354: -8,12 - 2362: -4,0 - 2370: -4,1 - 2378: -3,0 - 2386: -3,1 - 2394: -2,1 - 2402: -1,1 - 2416: -4,-1 - 2424: 4,-1 - 2427: 10,-16 - 2433: 3,-20 - 2436: 9,-17 - 2450: 6,16 - 2458: 6,17 - 2466: 6,18 - 2474: 6,19 - 2482: 6,20 - 2485: 9,24 - 2502: 0,1 - 2510: 1,1 - 2518: 2,1 - 2526: 3,0 - 2534: 3,1 - 2542: 4,0 - 2550: 4,1 - 2558: 8,12 - 2561: 9,4 - 2578: -8,12 - 2586: -4,0 - 2594: -4,1 - 2602: -3,0 - 2610: -3,1 - 2618: -2,1 - 2626: -1,1 - 2640: -4,-1 - 2648: 4,-1 - 2651: 10,-16 - 2657: 3,-20 - 2660: 9,-17 - 2674: 6,16 - 2682: 6,17 - 2690: 6,18 - 2698: 6,19 - 2706: 6,20 - 2709: 9,24 - 2726: 0,1 - 2734: 1,1 - 2742: 2,1 - 2750: 3,0 - 2758: 3,1 - 2766: 4,0 - 2774: 4,1 - 2782: 8,12 - 2785: 9,4 - 2802: -8,12 - 2810: -4,0 - 2818: -4,1 - 2826: -3,0 - 2834: -3,1 - 2842: -2,1 - 2850: -1,1 - 2864: -4,-1 - 2872: 4,-1 - 2875: 10,-16 - 2881: 3,-20 - 2884: 9,-17 - 2898: 6,16 - 2906: 6,17 - 2914: 6,18 - 2922: 6,19 - 2930: 6,20 - 2933: 9,24 - 2950: 0,1 - 2958: 1,1 - 2966: 2,1 - 2974: 3,0 - 2982: 3,1 - 2990: 4,0 - 2998: 4,1 - 3006: 8,12 - 3009: 9,4 - 3026: -8,12 - 3034: -4,0 - 3042: -4,1 - 3050: -3,0 - 3058: -3,1 - 3066: -2,1 - 3074: -1,1 - 3088: -4,-1 - 3096: 4,-1 - 3099: 10,-16 - 3105: 3,-20 - 3108: 9,-17 - 3122: 6,16 - 3130: 6,17 - 3138: 6,18 - 3146: 6,19 - 3154: 6,20 - 3157: 9,24 - 3174: 0,1 - 3182: 1,1 - 3190: 2,1 - 3198: 3,0 - 3206: 3,1 - 3214: 4,0 - 3222: 4,1 - 3230: 8,12 - 3233: 9,4 - 3250: -8,12 - 3258: -4,0 - 3266: -4,1 - 3274: -3,0 - 3282: -3,1 - 3290: -2,1 - 3298: -1,1 - 3312: -4,-1 - 3320: 4,-1 - 3323: 10,-16 - 3329: 3,-20 - 3332: 9,-17 - 3346: 6,16 - 3354: 6,17 - 3362: 6,18 - 3370: 6,19 - 3378: 6,20 - 3381: 9,24 - 3422: 0,1 - 3431: 1,1 - 3440: 2,1 - 3454: 3,0 - 3462: 3,1 - 3470: 4,0 - 3478: 4,1 - 3486: 8,12 - 3489: 9,4 - 3506: -8,12 - 3514: -4,0 - 3522: -4,1 - 3530: -3,0 - 3538: -3,1 - 3546: -2,1 - 3560: -1,1 - 3575: -4,-1 - 3583: 4,-1 - 3586: 10,-16 - 3592: 3,-20 - 3595: 9,-17 - 3609: 6,16 - 3617: 6,17 - 3625: 6,18 - 3633: 6,19 - 3641: 6,20 - 3644: 9,24 - 3670: 0,1 - 3680: 1,1 - 3690: 2,1 - 3707: 3,0 - 3715: 3,1 - 3723: 4,0 - 3731: 4,1 - 3739: 8,12 - 3742: 9,4 - 3759: -8,12 - 3767: -4,0 - 3775: -4,1 - 3783: -3,0 - 3791: -3,1 - 3799: -2,1 - 3816: -1,1 - 3832: -4,-1 - 3840: 4,-1 - 3843: 10,-16 - 3849: 3,-20 - 3852: 9,-17 - 3866: 6,16 - 3874: 6,17 - 3882: 6,18 - 3890: 6,19 - 3898: 6,20 - 3901: 9,24 - 3918: 0,1 - 3928: 1,1 - 3938: 2,1 - 3955: 3,0 - 3963: 3,1 - 3971: 4,0 - 3979: 4,1 - 3987: 8,12 - 3990: 9,4 - 4007: -8,12 - 4015: -4,0 - 4023: -4,1 - 4031: -3,0 - 4039: -3,1 - 4047: -2,1 - 4064: -1,1 - 4077: -4,-1 - 4085: 4,-1 - 4088: 10,-16 - 4091: 3,-20 - 4094: 9,-17 - 4108: 6,16 - 4116: 6,17 - 4124: 6,18 - 4132: 6,19 - 4140: 6,20 - 4143: 9,24 - 4166: 0,1 - 4176: 1,1 - 4186: 2,1 - 4203: 3,0 - 4211: 3,1 - 4219: 4,0 - 4227: 4,1 - 4235: 8,12 - 4238: 9,4 - 4255: -8,12 - 4263: -4,0 - 4271: -4,1 - 4279: -3,0 - 4287: -3,1 - 4295: -2,1 - 4312: -1,1 - 4328: -4,-1 - 4336: 4,-1 - 4339: 10,-16 - 4345: 3,-20 - 4348: 9,-17 - 4362: 6,16 - 4370: 6,17 - 4378: 6,18 - 4386: 6,19 - 4394: 6,20 - 4397: 9,24 - 4414: 0,1 - 4424: 1,1 - 4434: 2,1 - 4451: 3,0 - 4459: 3,1 - 4467: 4,0 - 4475: 4,1 - 4483: 8,12 - 4486: 9,4 - 4503: -8,12 - 4511: -4,0 - 4519: -4,1 - 4527: -3,0 - 4535: -3,1 - 4543: -2,1 - 4560: -1,1 - 4576: -4,-1 - 4584: 4,-1 - 4587: 10,-16 - 4593: 3,-20 - 4596: 9,-17 - 4610: 6,16 - 4618: 6,17 - 4626: 6,18 - 4634: 6,19 - 4642: 6,20 - 4645: 9,24 - 4662: 0,1 - 4672: 1,1 - 4682: 2,1 - 4699: 3,0 - 4707: 3,1 - 4715: 4,0 - 4723: 4,1 - 4731: 8,12 - 4734: 9,4 - 4751: -8,12 - 4759: -4,0 - 4767: -4,1 - 4775: -3,0 - 4783: -3,1 - 4791: -2,1 - 4808: -1,1 - 4824: -4,-1 - 4832: 4,-1 - 4835: 10,-16 - 4841: 3,-20 - 4844: 9,-17 - 4858: 6,16 - 4866: 6,17 - 4874: 6,18 - 4882: 6,19 - 4890: 6,20 - 4893: 9,24 - 4925: 0,1 - 4935: 1,1 - 4945: 2,1 - 4962: 3,0 - 4970: 3,1 - 4978: 4,0 - 4986: 4,1 - 4994: 8,12 - 4997: 9,4 - 5014: -8,12 - 5022: -4,0 - 5030: -4,1 - 5038: -3,0 - 5046: -3,1 - 5054: -2,1 - 5071: -1,1 - 5087: -4,-1 - 5095: 4,-1 - 5098: 10,-16 - 5104: 3,-20 - 5107: 9,-17 - 5121: 6,16 - 5129: 6,17 - 5137: 6,18 - 5145: 6,19 - 5153: 6,20 - 5156: 9,24 - 5173: 0,1 - 5183: 1,1 - 5193: 2,1 - 5210: 3,0 - 5218: 3,1 - 5226: 4,0 - 5234: 4,1 - 5242: 8,12 - 5245: 9,4 - 5262: -8,12 - 5270: -4,0 - 5278: -4,1 - 5286: -3,0 - 5294: -3,1 - 5302: -2,1 - 5319: -1,1 - 5335: -4,-1 - 5343: 4,-1 - 5346: 10,-16 - 5352: 3,-20 - 5355: 9,-17 - 5369: 6,16 - 5377: 6,17 - 5385: 6,18 - 5393: 6,19 - 5401: 6,20 - 5404: 9,24 - 5443: 0,1 - 5453: 1,1 - 5463: 2,1 - 5480: 3,0 - 5488: 3,1 - 5496: 4,0 - 5504: 4,1 - 5512: 8,12 - 5515: 9,4 - 5532: -8,12 - 5540: -4,0 - 5548: -4,1 - 5556: -3,0 - 5564: -3,1 - 5572: -2,1 - 5589: -1,1 - 5605: -4,-1 - 5613: 4,-1 - 5616: 10,-16 - 5622: 3,-20 - 5625: 9,-17 - 5639: 6,16 - 5647: 6,17 - 5655: 6,18 - 5663: 6,19 - 5671: 6,20 - 5674: 9,24 - 5691: 0,1 - 5701: 1,1 - 5711: 2,1 - 5728: 3,0 - 5736: 3,1 - 5744: 4,0 - 5752: 4,1 - 5760: 8,12 - 5763: 9,4 - 5780: -8,12 - 5788: -4,0 - 5796: -4,1 - 5804: -3,0 - 5812: -3,1 - 5820: -2,1 - 5837: -1,1 - 5853: -4,-1 - 5861: 4,-1 - 5864: 10,-16 - 5870: 3,-20 - 5873: 9,-17 - 5887: 6,16 - 5895: 6,17 - 5903: 6,18 - 5911: 6,19 - 5919: 6,20 - 5922: 9,24 + 885: 0,1 + 893: 1,1 + 901: 2,1 + 909: 3,0 + 917: 3,1 + 925: 4,0 + 933: 4,1 + 941: 8,12 + 944: 9,4 + 961: -8,12 + 969: -4,0 + 977: -4,1 + 985: -3,0 + 993: -3,1 + 1001: -2,1 + 1009: -1,1 + 1023: -4,-1 + 1031: 4,-1 + 1034: 10,-16 + 1040: 3,-20 + 1043: 9,-17 + 1057: 6,16 + 1065: 6,17 + 1073: 6,18 + 1081: 6,19 + 1089: 6,20 + 1092: 9,24 + 1109: 0,1 + 1117: 1,1 + 1125: 2,1 + 1133: 3,0 + 1141: 3,1 + 1149: 4,0 + 1157: 4,1 + 1165: 8,12 + 1168: 9,4 + 1185: -8,12 + 1193: -4,0 + 1201: -4,1 + 1209: -3,0 + 1217: -3,1 + 1225: -2,1 + 1233: -1,1 + 1247: -4,-1 + 1255: 4,-1 + 1258: 10,-16 + 1264: 3,-20 + 1267: 9,-17 + 1281: 6,16 + 1289: 6,17 + 1297: 6,18 + 1305: 6,19 + 1313: 6,20 + 1316: 9,24 + 1333: 0,1 + 1341: 1,1 + 1349: 2,1 + 1357: 3,0 + 1365: 3,1 + 1373: 4,0 + 1381: 4,1 + 1389: 8,12 + 1392: 9,4 + 1409: -8,12 + 1417: -4,0 + 1425: -4,1 + 1433: -3,0 + 1441: -3,1 + 1449: -2,1 + 1457: -1,1 + 1471: -4,-1 + 1479: 4,-1 + 1482: 10,-16 + 1488: 3,-20 + 1491: 9,-17 + 1505: 6,16 + 1513: 6,17 + 1521: 6,18 + 1529: 6,19 + 1537: 6,20 + 1540: 9,24 + 1557: 0,1 + 1565: 1,1 + 1573: 2,1 + 1581: 3,0 + 1589: 3,1 + 1597: 4,0 + 1605: 4,1 + 1613: 8,12 + 1616: 9,4 + 1633: -8,12 + 1641: -4,0 + 1649: -4,1 + 1657: -3,0 + 1665: -3,1 + 1673: -2,1 + 1681: -1,1 + 1695: -4,-1 + 1703: 4,-1 + 1706: 10,-16 + 1712: 3,-20 + 1715: 9,-17 + 1729: 6,16 + 1737: 6,17 + 1745: 6,18 + 1753: 6,19 + 1761: 6,20 + 1764: 9,24 + 1781: 0,1 + 1789: 1,1 + 1797: 2,1 + 1805: 3,0 + 1813: 3,1 + 1821: 4,0 + 1829: 4,1 + 1837: 8,12 + 1840: 9,4 + 1854: -4,0 + 1862: -4,1 + 1870: -3,0 + 1878: -3,1 + 1886: -2,1 + 1894: -1,1 + 1908: -4,-1 + 1916: 4,-1 + 1919: 10,-16 + 1925: 3,-20 + 1928: 9,-17 + 1942: 6,16 + 1950: 6,17 + 1958: 6,18 + 1966: 6,19 + 1974: 6,20 + 1977: 9,24 + 1994: -8,12 + 2005: 0,1 + 2013: 1,1 + 2021: 2,1 + 2029: 3,0 + 2037: 3,1 + 2045: 4,0 + 2053: 4,1 + 2061: 8,12 + 2064: 9,4 + 2081: -8,12 + 2089: -4,0 + 2097: -4,1 + 2105: -3,0 + 2113: -3,1 + 2121: -2,1 + 2129: -1,1 + 2143: -4,-1 + 2151: 4,-1 + 2154: 10,-16 + 2160: 3,-20 + 2163: 9,-17 + 2177: 6,16 + 2185: 6,17 + 2193: 6,18 + 2201: 6,19 + 2209: 6,20 + 2212: 9,24 + 2229: 0,1 + 2237: 1,1 + 2245: 2,1 + 2253: 3,0 + 2261: 3,1 + 2269: 4,0 + 2277: 4,1 + 2285: 8,12 + 2288: 9,4 + 2305: -8,12 + 2313: -4,0 + 2321: -4,1 + 2329: -3,0 + 2337: -3,1 + 2345: -2,1 + 2353: -1,1 + 2367: -4,-1 + 2375: 4,-1 + 2378: 10,-16 + 2384: 3,-20 + 2387: 9,-17 + 2401: 6,16 + 2409: 6,17 + 2417: 6,18 + 2425: 6,19 + 2433: 6,20 + 2436: 9,24 + 2453: 0,1 + 2461: 1,1 + 2469: 2,1 + 2477: 3,0 + 2485: 3,1 + 2493: 4,0 + 2501: 4,1 + 2509: 8,12 + 2512: 9,4 + 2529: -8,12 + 2537: -4,0 + 2545: -4,1 + 2553: -3,0 + 2561: -3,1 + 2569: -2,1 + 2577: -1,1 + 2591: -4,-1 + 2599: 4,-1 + 2602: 10,-16 + 2608: 3,-20 + 2611: 9,-17 + 2625: 6,16 + 2633: 6,17 + 2641: 6,18 + 2649: 6,19 + 2657: 6,20 + 2660: 9,24 + 2677: 0,1 + 2685: 1,1 + 2693: 2,1 + 2701: 3,0 + 2709: 3,1 + 2717: 4,0 + 2725: 4,1 + 2733: 8,12 + 2736: 9,4 + 2753: -8,12 + 2761: -4,0 + 2769: -4,1 + 2777: -3,0 + 2785: -3,1 + 2793: -2,1 + 2801: -1,1 + 2815: -4,-1 + 2823: 4,-1 + 2826: 10,-16 + 2832: 3,-20 + 2835: 9,-17 + 2849: 6,16 + 2857: 6,17 + 2865: 6,18 + 2873: 6,19 + 2881: 6,20 + 2884: 9,24 + 2901: 0,1 + 2909: 1,1 + 2917: 2,1 + 2925: 3,0 + 2933: 3,1 + 2941: 4,0 + 2949: 4,1 + 2957: 8,12 + 2960: 9,4 + 2977: -8,12 + 2985: -4,0 + 2993: -4,1 + 3001: -3,0 + 3009: -3,1 + 3017: -2,1 + 3025: -1,1 + 3039: -4,-1 + 3047: 4,-1 + 3050: 10,-16 + 3056: 3,-20 + 3059: 9,-17 + 3073: 6,16 + 3081: 6,17 + 3089: 6,18 + 3097: 6,19 + 3105: 6,20 + 3108: 9,24 + 3125: 0,1 + 3133: 1,1 + 3141: 2,1 + 3149: 3,0 + 3157: 3,1 + 3165: 4,0 + 3173: 4,1 + 3181: 8,12 + 3184: 9,4 + 3201: -8,12 + 3209: -4,0 + 3217: -4,1 + 3225: -3,0 + 3233: -3,1 + 3241: -2,1 + 3249: -1,1 + 3263: -4,-1 + 3271: 4,-1 + 3274: 10,-16 + 3280: 3,-20 + 3283: 9,-17 + 3297: 6,16 + 3305: 6,17 + 3313: 6,18 + 3321: 6,19 + 3329: 6,20 + 3332: 9,24 + 3373: 0,1 + 3382: 1,1 + 3391: 2,1 + 3405: 3,0 + 3413: 3,1 + 3421: 4,0 + 3429: 4,1 + 3437: 8,12 + 3440: 9,4 + 3457: -8,12 + 3465: -4,0 + 3473: -4,1 + 3481: -3,0 + 3489: -3,1 + 3497: -2,1 + 3511: -1,1 + 3526: -4,-1 + 3534: 4,-1 + 3537: 10,-16 + 3543: 3,-20 + 3546: 9,-17 + 3560: 6,16 + 3568: 6,17 + 3576: 6,18 + 3584: 6,19 + 3592: 6,20 + 3595: 9,24 + 3621: 0,1 + 3631: 1,1 + 3641: 2,1 + 3658: 3,0 + 3666: 3,1 + 3674: 4,0 + 3682: 4,1 + 3690: 8,12 + 3693: 9,4 + 3710: -8,12 + 3718: -4,0 + 3726: -4,1 + 3734: -3,0 + 3742: -3,1 + 3750: -2,1 + 3767: -1,1 + 3783: -4,-1 + 3791: 4,-1 + 3794: 10,-16 + 3800: 3,-20 + 3803: 9,-17 + 3817: 6,16 + 3825: 6,17 + 3833: 6,18 + 3841: 6,19 + 3849: 6,20 + 3852: 9,24 + 3869: 0,1 + 3879: 1,1 + 3889: 2,1 + 3906: 3,0 + 3914: 3,1 + 3922: 4,0 + 3930: 4,1 + 3938: 8,12 + 3941: 9,4 + 3958: -8,12 + 3966: -4,0 + 3974: -4,1 + 3982: -3,0 + 3990: -3,1 + 3998: -2,1 + 4015: -1,1 + 4028: -4,-1 + 4036: 4,-1 + 4039: 10,-16 + 4042: 3,-20 + 4045: 9,-17 + 4059: 6,16 + 4067: 6,17 + 4075: 6,18 + 4083: 6,19 + 4091: 6,20 + 4094: 9,24 + 4117: 0,1 + 4127: 1,1 + 4137: 2,1 + 4154: 3,0 + 4162: 3,1 + 4170: 4,0 + 4178: 4,1 + 4186: 8,12 + 4189: 9,4 + 4206: -8,12 + 4214: -4,0 + 4222: -4,1 + 4230: -3,0 + 4238: -3,1 + 4246: -2,1 + 4263: -1,1 + 4279: -4,-1 + 4287: 4,-1 + 4290: 10,-16 + 4296: 3,-20 + 4299: 9,-17 + 4313: 6,16 + 4321: 6,17 + 4329: 6,18 + 4337: 6,19 + 4345: 6,20 + 4348: 9,24 + 4365: 0,1 + 4375: 1,1 + 4385: 2,1 + 4402: 3,0 + 4410: 3,1 + 4418: 4,0 + 4426: 4,1 + 4434: 8,12 + 4437: 9,4 + 4454: -8,12 + 4462: -4,0 + 4470: -4,1 + 4478: -3,0 + 4486: -3,1 + 4494: -2,1 + 4511: -1,1 + 4527: -4,-1 + 4535: 4,-1 + 4538: 10,-16 + 4544: 3,-20 + 4547: 9,-17 + 4561: 6,16 + 4569: 6,17 + 4577: 6,18 + 4585: 6,19 + 4593: 6,20 + 4596: 9,24 + 4613: 0,1 + 4623: 1,1 + 4633: 2,1 + 4650: 3,0 + 4658: 3,1 + 4666: 4,0 + 4674: 4,1 + 4682: 8,12 + 4685: 9,4 + 4702: -8,12 + 4710: -4,0 + 4718: -4,1 + 4726: -3,0 + 4734: -3,1 + 4742: -2,1 + 4759: -1,1 + 4775: -4,-1 + 4783: 4,-1 + 4786: 10,-16 + 4792: 3,-20 + 4795: 9,-17 + 4809: 6,16 + 4817: 6,17 + 4825: 6,18 + 4833: 6,19 + 4841: 6,20 + 4844: 9,24 + 4876: 0,1 + 4886: 1,1 + 4896: 2,1 + 4913: 3,0 + 4921: 3,1 + 4929: 4,0 + 4937: 4,1 + 4945: 8,12 + 4948: 9,4 + 4965: -8,12 + 4973: -4,0 + 4981: -4,1 + 4989: -3,0 + 4997: -3,1 + 5005: -2,1 + 5022: -1,1 + 5038: -4,-1 + 5046: 4,-1 + 5049: 10,-16 + 5055: 3,-20 + 5058: 9,-17 + 5072: 6,16 + 5080: 6,17 + 5088: 6,18 + 5096: 6,19 + 5104: 6,20 + 5107: 9,24 + 5124: 0,1 + 5134: 1,1 + 5144: 2,1 + 5161: 3,0 + 5169: 3,1 + 5177: 4,0 + 5185: 4,1 + 5193: 8,12 + 5196: 9,4 + 5213: -8,12 + 5221: -4,0 + 5229: -4,1 + 5237: -3,0 + 5245: -3,1 + 5253: -2,1 + 5270: -1,1 + 5286: -4,-1 + 5294: 4,-1 + 5297: 10,-16 + 5303: 3,-20 + 5306: 9,-17 + 5320: 6,16 + 5328: 6,17 + 5336: 6,18 + 5344: 6,19 + 5352: 6,20 + 5355: 9,24 + 5394: 0,1 + 5404: 1,1 + 5414: 2,1 + 5431: 3,0 + 5439: 3,1 + 5447: 4,0 + 5455: 4,1 + 5463: 8,12 + 5466: 9,4 + 5483: -8,12 + 5491: -4,0 + 5499: -4,1 + 5507: -3,0 + 5515: -3,1 + 5523: -2,1 + 5540: -1,1 + 5556: -4,-1 + 5564: 4,-1 + 5567: 10,-16 + 5573: 3,-20 + 5576: 9,-17 + 5590: 6,16 + 5598: 6,17 + 5606: 6,18 + 5614: 6,19 + 5622: 6,20 + 5625: 9,24 + 5642: 0,1 + 5652: 1,1 + 5662: 2,1 + 5679: 3,0 + 5687: 3,1 + 5695: 4,0 + 5703: 4,1 + 5711: 8,12 + 5714: 9,4 + 5731: -8,12 + 5739: -4,0 + 5747: -4,1 + 5755: -3,0 + 5763: -3,1 + 5771: -2,1 + 5788: -1,1 + 5804: -4,-1 + 5812: 4,-1 + 5815: 10,-16 + 5821: 3,-20 + 5824: 9,-17 + 5838: 6,16 + 5846: 6,17 + 5854: 6,18 + 5862: 6,19 + 5870: 6,20 + 5873: 9,24 + 5898: 0,1 + 5908: 1,1 + 5918: 2,1 + 5935: 3,0 + 5943: 3,1 + 5951: 4,0 + 5959: 4,1 + 5967: 8,12 + 5970: 9,4 + 5987: -8,12 + 5995: -4,0 + 6003: -4,1 + 6011: -3,0 + 6019: -3,1 + 6027: -2,1 + 6044: -1,1 + 6060: -4,-1 + 6068: 4,-1 + 6071: 10,-16 + 6077: 3,-20 + 6080: 9,-17 + 6094: 6,16 + 6102: 6,17 + 6110: 6,18 + 6118: 6,19 + 6126: 6,20 + 6129: 9,24 + 6146: 0,1 + 6156: 1,1 + 6166: 2,1 + 6183: 3,0 + 6191: 3,1 + 6199: 4,0 + 6207: 4,1 + 6215: 8,12 + 6218: 9,4 + 6235: -8,12 + 6243: -4,0 + 6251: -4,1 + 6259: -3,0 + 6267: -3,1 + 6275: -2,1 + 6292: -1,1 + 6308: -4,-1 + 6316: 4,-1 + 6319: 10,-16 + 6325: 3,-20 + 6328: 9,-17 + 6342: 6,16 + 6350: 6,17 + 6358: 6,18 + 6366: 6,19 + 6374: 6,20 + 6377: 9,24 + 6394: 0,1 + 6404: 1,1 + 6414: 2,1 + 6431: 3,0 + 6439: 3,1 + 6447: 4,0 + 6455: 4,1 + 6458: 9,4 + 6475: -8,12 + 6483: -4,0 + 6491: -4,1 + 6499: -3,0 + 6507: -3,1 + 6515: -2,1 + 6532: -1,1 + 6548: -4,-1 + 6556: 4,-1 + 6559: 10,-16 + 6565: 3,-20 + 6568: 9,-17 + 6582: 6,16 + 6590: 6,17 + 6598: 6,18 + 6606: 6,19 + 6614: 6,20 + 6617: 9,24 + 6636: 8,12 + 6664: 0,1 + 6674: 1,1 + 6684: 2,1 + 6701: 3,0 + 6709: 3,1 + 6717: 4,0 + 6725: 4,1 + 6733: 8,12 + 6736: 9,4 + 6753: -8,12 + 6761: -4,0 + 6769: -4,1 + 6777: -3,0 + 6785: -3,1 + 6793: -2,1 + 6810: -1,1 + 6826: -4,-1 + 6834: 4,-1 + 6837: 10,-16 + 6843: 3,-20 + 6846: 9,-17 + 6860: 6,16 + 6868: 6,17 + 6876: 6,18 + 6884: 6,19 + 6892: 6,20 + 6895: 9,24 - node: zIndex: 1 id: LatticeCornerSE decals: - 929: 0,1 - 937: 1,1 - 945: 2,1 - 953: 3,0 - 961: 3,1 - 969: 4,0 - 977: 4,1 - 985: 8,12 - 1002: -9,12 - 1005: -8,12 - 1013: -4,0 - 1021: -4,1 - 1029: -3,0 - 1037: -3,1 - 1045: -2,1 - 1053: -1,1 - 1061: -12,-10 - 1067: -4,-1 - 1075: 4,-1 - 1101: 6,16 - 1109: 6,17 - 1117: 6,18 - 1125: 6,19 - 1133: 6,20 - 1150: -9,28 - 1153: 0,1 - 1161: 1,1 - 1169: 2,1 - 1177: 3,0 - 1185: 3,1 - 1193: 4,0 - 1201: 4,1 - 1209: 8,12 - 1226: -9,12 - 1229: -8,12 - 1237: -4,0 - 1245: -4,1 - 1253: -3,0 - 1261: -3,1 - 1269: -2,1 - 1277: -1,1 - 1285: -12,-10 - 1291: -4,-1 - 1299: 4,-1 - 1325: 6,16 - 1333: 6,17 - 1341: 6,18 - 1349: 6,19 - 1357: 6,20 - 1374: -9,28 - 1377: 0,1 - 1385: 1,1 - 1393: 2,1 - 1401: 3,0 - 1409: 3,1 - 1417: 4,0 - 1425: 4,1 - 1433: 8,12 - 1450: -9,12 - 1453: -8,12 - 1461: -4,0 - 1469: -4,1 - 1477: -3,0 - 1485: -3,1 - 1493: -2,1 - 1501: -1,1 - 1509: -12,-10 - 1515: -4,-1 - 1523: 4,-1 - 1549: 6,16 - 1557: 6,17 - 1565: 6,18 - 1573: 6,19 - 1581: 6,20 - 1598: -9,28 - 1601: 0,1 - 1609: 1,1 - 1617: 2,1 - 1625: 3,0 - 1633: 3,1 - 1641: 4,0 - 1649: 4,1 - 1657: 8,12 - 1674: -9,12 - 1677: -8,12 - 1685: -4,0 - 1693: -4,1 - 1701: -3,0 - 1709: -3,1 - 1717: -2,1 - 1725: -1,1 - 1733: -12,-10 - 1739: -4,-1 - 1747: 4,-1 - 1773: 6,16 - 1781: 6,17 - 1789: 6,18 - 1797: 6,19 - 1805: 6,20 - 1822: -9,28 - 1825: 0,1 - 1833: 1,1 - 1841: 2,1 - 1849: 3,0 - 1857: 3,1 - 1865: 4,0 - 1873: 4,1 - 1881: 8,12 - 1898: -4,0 - 1906: -4,1 - 1914: -3,0 - 1922: -3,1 - 1930: -2,1 - 1938: -1,1 - 1946: -12,-10 - 1952: -4,-1 - 1960: 4,-1 - 1986: 6,16 - 1994: 6,17 - 2002: 6,18 - 2010: 6,19 - 2018: 6,20 - 2035: -9,28 - 2038: -8,12 - 2046: -9,12 - 2049: 0,1 - 2057: 1,1 - 2065: 2,1 - 2073: 3,0 - 2081: 3,1 - 2089: 4,0 - 2097: 4,1 - 2105: 8,12 - 2122: -9,12 - 2125: -8,12 - 2133: -4,0 - 2141: -4,1 - 2149: -3,0 - 2157: -3,1 - 2165: -2,1 - 2173: -1,1 - 2181: -12,-10 - 2187: -4,-1 - 2195: 4,-1 - 2221: 6,16 - 2229: 6,17 - 2237: 6,18 - 2245: 6,19 - 2253: 6,20 - 2270: -9,28 - 2273: 0,1 - 2281: 1,1 - 2289: 2,1 - 2297: 3,0 - 2305: 3,1 - 2313: 4,0 - 2321: 4,1 - 2329: 8,12 - 2346: -9,12 - 2349: -8,12 - 2357: -4,0 - 2365: -4,1 - 2373: -3,0 - 2381: -3,1 - 2389: -2,1 - 2397: -1,1 - 2405: -12,-10 - 2411: -4,-1 - 2419: 4,-1 - 2445: 6,16 - 2453: 6,17 - 2461: 6,18 - 2469: 6,19 - 2477: 6,20 - 2494: -9,28 - 2497: 0,1 - 2505: 1,1 - 2513: 2,1 - 2521: 3,0 - 2529: 3,1 - 2537: 4,0 - 2545: 4,1 - 2553: 8,12 - 2570: -9,12 - 2573: -8,12 - 2581: -4,0 - 2589: -4,1 - 2597: -3,0 - 2605: -3,1 - 2613: -2,1 - 2621: -1,1 - 2629: -12,-10 - 2635: -4,-1 - 2643: 4,-1 - 2669: 6,16 - 2677: 6,17 - 2685: 6,18 - 2693: 6,19 - 2701: 6,20 - 2718: -9,28 - 2721: 0,1 - 2729: 1,1 - 2737: 2,1 - 2745: 3,0 - 2753: 3,1 - 2761: 4,0 - 2769: 4,1 - 2777: 8,12 - 2794: -9,12 - 2797: -8,12 - 2805: -4,0 - 2813: -4,1 - 2821: -3,0 - 2829: -3,1 - 2837: -2,1 - 2845: -1,1 - 2853: -12,-10 - 2859: -4,-1 - 2867: 4,-1 - 2893: 6,16 - 2901: 6,17 - 2909: 6,18 - 2917: 6,19 - 2925: 6,20 - 2942: -9,28 - 2945: 0,1 - 2953: 1,1 - 2961: 2,1 - 2969: 3,0 - 2977: 3,1 - 2985: 4,0 - 2993: 4,1 - 3001: 8,12 - 3018: -9,12 - 3021: -8,12 - 3029: -4,0 - 3037: -4,1 - 3045: -3,0 - 3053: -3,1 - 3061: -2,1 - 3069: -1,1 - 3077: -12,-10 - 3083: -4,-1 - 3091: 4,-1 - 3117: 6,16 - 3125: 6,17 - 3133: 6,18 - 3141: 6,19 - 3149: 6,20 - 3166: -9,28 - 3169: 0,1 - 3177: 1,1 - 3185: 2,1 - 3193: 3,0 - 3201: 3,1 - 3209: 4,0 - 3217: 4,1 - 3225: 8,12 - 3242: -9,12 - 3245: -8,12 - 3253: -4,0 - 3261: -4,1 - 3269: -3,0 - 3277: -3,1 - 3285: -2,1 - 3293: -1,1 - 3301: -12,-10 - 3307: -4,-1 - 3315: 4,-1 - 3341: 6,16 - 3349: 6,17 - 3357: 6,18 - 3365: 6,19 - 3373: 6,20 - 3390: -9,28 - 3417: 0,1 - 3426: 1,1 - 3435: 2,1 - 3449: 3,0 - 3457: 3,1 - 3465: 4,0 - 3473: 4,1 - 3481: 8,12 - 3498: -9,12 - 3501: -8,12 - 3509: -4,0 - 3517: -4,1 - 3525: -3,0 - 3533: -3,1 - 3541: -2,1 - 3555: -1,1 - 3564: -12,-10 - 3570: -4,-1 - 3578: 4,-1 - 3604: 6,16 - 3612: 6,17 - 3620: 6,18 - 3628: 6,19 - 3636: 6,20 - 3653: -9,28 - 3665: 0,1 - 3675: 1,1 - 3685: 2,1 - 3702: 3,0 - 3710: 3,1 - 3718: 4,0 - 3726: 4,1 - 3734: 8,12 - 3751: -9,12 - 3754: -8,12 - 3762: -4,0 - 3770: -4,1 - 3778: -3,0 - 3786: -3,1 - 3794: -2,1 - 3811: -1,1 - 3821: -12,-10 - 3827: -4,-1 - 3835: 4,-1 - 3861: 6,16 - 3869: 6,17 - 3877: 6,18 - 3885: 6,19 - 3893: 6,20 - 3910: -9,28 - 3913: 0,1 - 3923: 1,1 - 3933: 2,1 - 3950: 3,0 - 3958: 3,1 - 3966: 4,0 - 3974: 4,1 - 3982: 8,12 - 3999: -9,12 - 4002: -8,12 - 4010: -4,0 - 4018: -4,1 - 4026: -3,0 - 4034: -3,1 - 4042: -2,1 - 4059: -1,1 - 4072: -4,-1 - 4080: 4,-1 - 4103: 6,16 - 4111: 6,17 - 4119: 6,18 - 4127: 6,19 - 4135: 6,20 - 4152: -9,28 - 4155: -12,-10 - 4161: 0,1 - 4171: 1,1 - 4181: 2,1 - 4198: 3,0 - 4206: 3,1 - 4214: 4,0 - 4222: 4,1 - 4230: 8,12 - 4247: -9,12 - 4250: -8,12 - 4258: -4,0 - 4266: -4,1 - 4274: -3,0 - 4282: -3,1 - 4290: -2,1 - 4307: -1,1 - 4317: -12,-10 - 4323: -4,-1 - 4331: 4,-1 - 4357: 6,16 - 4365: 6,17 - 4373: 6,18 - 4381: 6,19 - 4389: 6,20 - 4406: -9,28 - 4409: 0,1 - 4419: 1,1 - 4429: 2,1 - 4446: 3,0 - 4454: 3,1 - 4462: 4,0 - 4470: 4,1 - 4478: 8,12 - 4495: -9,12 - 4498: -8,12 - 4506: -4,0 - 4514: -4,1 - 4522: -3,0 - 4530: -3,1 - 4538: -2,1 - 4555: -1,1 - 4565: -12,-10 - 4571: -4,-1 - 4579: 4,-1 - 4605: 6,16 - 4613: 6,17 - 4621: 6,18 - 4629: 6,19 - 4637: 6,20 - 4654: -9,28 - 4657: 0,1 - 4667: 1,1 - 4677: 2,1 - 4694: 3,0 - 4702: 3,1 - 4710: 4,0 - 4718: 4,1 - 4726: 8,12 - 4743: -9,12 - 4746: -8,12 - 4754: -4,0 - 4762: -4,1 - 4770: -3,0 - 4778: -3,1 - 4786: -2,1 - 4803: -1,1 - 4813: -12,-10 - 4819: -4,-1 - 4827: 4,-1 - 4853: 6,16 - 4861: 6,17 - 4869: 6,18 - 4877: 6,19 - 4885: 6,20 - 4902: -9,28 - 4920: 0,1 - 4930: 1,1 - 4940: 2,1 - 4957: 3,0 - 4965: 3,1 - 4973: 4,0 - 4981: 4,1 - 4989: 8,12 - 5006: -9,12 - 5009: -8,12 - 5017: -4,0 - 5025: -4,1 - 5033: -3,0 - 5041: -3,1 - 5049: -2,1 - 5066: -1,1 - 5076: -12,-10 - 5082: -4,-1 - 5090: 4,-1 - 5116: 6,16 - 5124: 6,17 - 5132: 6,18 - 5140: 6,19 - 5148: 6,20 - 5165: -9,28 - 5168: 0,1 - 5178: 1,1 - 5188: 2,1 - 5205: 3,0 - 5213: 3,1 - 5221: 4,0 - 5229: 4,1 - 5237: 8,12 - 5254: -9,12 - 5257: -8,12 - 5265: -4,0 - 5273: -4,1 - 5281: -3,0 - 5289: -3,1 - 5297: -2,1 - 5314: -1,1 - 5324: -12,-10 - 5330: -4,-1 - 5338: 4,-1 - 5364: 6,16 - 5372: 6,17 - 5380: 6,18 - 5388: 6,19 - 5396: 6,20 - 5413: -9,28 - 5438: 0,1 - 5448: 1,1 - 5458: 2,1 - 5475: 3,0 - 5483: 3,1 - 5491: 4,0 - 5499: 4,1 - 5507: 8,12 - 5524: -9,12 - 5527: -8,12 - 5535: -4,0 - 5543: -4,1 - 5551: -3,0 - 5559: -3,1 - 5567: -2,1 - 5584: -1,1 - 5594: -12,-10 - 5600: -4,-1 - 5608: 4,-1 - 5634: 6,16 - 5642: 6,17 - 5650: 6,18 - 5658: 6,19 - 5666: 6,20 - 5683: -9,28 - 5686: 0,1 - 5696: 1,1 - 5706: 2,1 - 5723: 3,0 - 5731: 3,1 - 5739: 4,0 - 5747: 4,1 - 5755: 8,12 - 5772: -9,12 - 5775: -8,12 - 5783: -4,0 - 5791: -4,1 - 5799: -3,0 - 5807: -3,1 - 5815: -2,1 - 5832: -1,1 - 5842: -12,-10 - 5848: -4,-1 - 5856: 4,-1 - 5882: 6,16 - 5890: 6,17 - 5898: 6,18 - 5906: 6,19 - 5914: 6,20 - 5931: -9,28 + 880: 0,1 + 888: 1,1 + 896: 2,1 + 904: 3,0 + 912: 3,1 + 920: 4,0 + 928: 4,1 + 936: 8,12 + 953: -9,12 + 956: -8,12 + 964: -4,0 + 972: -4,1 + 980: -3,0 + 988: -3,1 + 996: -2,1 + 1004: -1,1 + 1012: -12,-10 + 1018: -4,-1 + 1026: 4,-1 + 1052: 6,16 + 1060: 6,17 + 1068: 6,18 + 1076: 6,19 + 1084: 6,20 + 1101: -9,28 + 1104: 0,1 + 1112: 1,1 + 1120: 2,1 + 1128: 3,0 + 1136: 3,1 + 1144: 4,0 + 1152: 4,1 + 1160: 8,12 + 1177: -9,12 + 1180: -8,12 + 1188: -4,0 + 1196: -4,1 + 1204: -3,0 + 1212: -3,1 + 1220: -2,1 + 1228: -1,1 + 1236: -12,-10 + 1242: -4,-1 + 1250: 4,-1 + 1276: 6,16 + 1284: 6,17 + 1292: 6,18 + 1300: 6,19 + 1308: 6,20 + 1325: -9,28 + 1328: 0,1 + 1336: 1,1 + 1344: 2,1 + 1352: 3,0 + 1360: 3,1 + 1368: 4,0 + 1376: 4,1 + 1384: 8,12 + 1401: -9,12 + 1404: -8,12 + 1412: -4,0 + 1420: -4,1 + 1428: -3,0 + 1436: -3,1 + 1444: -2,1 + 1452: -1,1 + 1460: -12,-10 + 1466: -4,-1 + 1474: 4,-1 + 1500: 6,16 + 1508: 6,17 + 1516: 6,18 + 1524: 6,19 + 1532: 6,20 + 1549: -9,28 + 1552: 0,1 + 1560: 1,1 + 1568: 2,1 + 1576: 3,0 + 1584: 3,1 + 1592: 4,0 + 1600: 4,1 + 1608: 8,12 + 1625: -9,12 + 1628: -8,12 + 1636: -4,0 + 1644: -4,1 + 1652: -3,0 + 1660: -3,1 + 1668: -2,1 + 1676: -1,1 + 1684: -12,-10 + 1690: -4,-1 + 1698: 4,-1 + 1724: 6,16 + 1732: 6,17 + 1740: 6,18 + 1748: 6,19 + 1756: 6,20 + 1773: -9,28 + 1776: 0,1 + 1784: 1,1 + 1792: 2,1 + 1800: 3,0 + 1808: 3,1 + 1816: 4,0 + 1824: 4,1 + 1832: 8,12 + 1849: -4,0 + 1857: -4,1 + 1865: -3,0 + 1873: -3,1 + 1881: -2,1 + 1889: -1,1 + 1897: -12,-10 + 1903: -4,-1 + 1911: 4,-1 + 1937: 6,16 + 1945: 6,17 + 1953: 6,18 + 1961: 6,19 + 1969: 6,20 + 1986: -9,28 + 1989: -8,12 + 1997: -9,12 + 2000: 0,1 + 2008: 1,1 + 2016: 2,1 + 2024: 3,0 + 2032: 3,1 + 2040: 4,0 + 2048: 4,1 + 2056: 8,12 + 2073: -9,12 + 2076: -8,12 + 2084: -4,0 + 2092: -4,1 + 2100: -3,0 + 2108: -3,1 + 2116: -2,1 + 2124: -1,1 + 2132: -12,-10 + 2138: -4,-1 + 2146: 4,-1 + 2172: 6,16 + 2180: 6,17 + 2188: 6,18 + 2196: 6,19 + 2204: 6,20 + 2221: -9,28 + 2224: 0,1 + 2232: 1,1 + 2240: 2,1 + 2248: 3,0 + 2256: 3,1 + 2264: 4,0 + 2272: 4,1 + 2280: 8,12 + 2297: -9,12 + 2300: -8,12 + 2308: -4,0 + 2316: -4,1 + 2324: -3,0 + 2332: -3,1 + 2340: -2,1 + 2348: -1,1 + 2356: -12,-10 + 2362: -4,-1 + 2370: 4,-1 + 2396: 6,16 + 2404: 6,17 + 2412: 6,18 + 2420: 6,19 + 2428: 6,20 + 2445: -9,28 + 2448: 0,1 + 2456: 1,1 + 2464: 2,1 + 2472: 3,0 + 2480: 3,1 + 2488: 4,0 + 2496: 4,1 + 2504: 8,12 + 2521: -9,12 + 2524: -8,12 + 2532: -4,0 + 2540: -4,1 + 2548: -3,0 + 2556: -3,1 + 2564: -2,1 + 2572: -1,1 + 2580: -12,-10 + 2586: -4,-1 + 2594: 4,-1 + 2620: 6,16 + 2628: 6,17 + 2636: 6,18 + 2644: 6,19 + 2652: 6,20 + 2669: -9,28 + 2672: 0,1 + 2680: 1,1 + 2688: 2,1 + 2696: 3,0 + 2704: 3,1 + 2712: 4,0 + 2720: 4,1 + 2728: 8,12 + 2745: -9,12 + 2748: -8,12 + 2756: -4,0 + 2764: -4,1 + 2772: -3,0 + 2780: -3,1 + 2788: -2,1 + 2796: -1,1 + 2804: -12,-10 + 2810: -4,-1 + 2818: 4,-1 + 2844: 6,16 + 2852: 6,17 + 2860: 6,18 + 2868: 6,19 + 2876: 6,20 + 2893: -9,28 + 2896: 0,1 + 2904: 1,1 + 2912: 2,1 + 2920: 3,0 + 2928: 3,1 + 2936: 4,0 + 2944: 4,1 + 2952: 8,12 + 2969: -9,12 + 2972: -8,12 + 2980: -4,0 + 2988: -4,1 + 2996: -3,0 + 3004: -3,1 + 3012: -2,1 + 3020: -1,1 + 3028: -12,-10 + 3034: -4,-1 + 3042: 4,-1 + 3068: 6,16 + 3076: 6,17 + 3084: 6,18 + 3092: 6,19 + 3100: 6,20 + 3117: -9,28 + 3120: 0,1 + 3128: 1,1 + 3136: 2,1 + 3144: 3,0 + 3152: 3,1 + 3160: 4,0 + 3168: 4,1 + 3176: 8,12 + 3193: -9,12 + 3196: -8,12 + 3204: -4,0 + 3212: -4,1 + 3220: -3,0 + 3228: -3,1 + 3236: -2,1 + 3244: -1,1 + 3252: -12,-10 + 3258: -4,-1 + 3266: 4,-1 + 3292: 6,16 + 3300: 6,17 + 3308: 6,18 + 3316: 6,19 + 3324: 6,20 + 3341: -9,28 + 3368: 0,1 + 3377: 1,1 + 3386: 2,1 + 3400: 3,0 + 3408: 3,1 + 3416: 4,0 + 3424: 4,1 + 3432: 8,12 + 3449: -9,12 + 3452: -8,12 + 3460: -4,0 + 3468: -4,1 + 3476: -3,0 + 3484: -3,1 + 3492: -2,1 + 3506: -1,1 + 3515: -12,-10 + 3521: -4,-1 + 3529: 4,-1 + 3555: 6,16 + 3563: 6,17 + 3571: 6,18 + 3579: 6,19 + 3587: 6,20 + 3604: -9,28 + 3616: 0,1 + 3626: 1,1 + 3636: 2,1 + 3653: 3,0 + 3661: 3,1 + 3669: 4,0 + 3677: 4,1 + 3685: 8,12 + 3702: -9,12 + 3705: -8,12 + 3713: -4,0 + 3721: -4,1 + 3729: -3,0 + 3737: -3,1 + 3745: -2,1 + 3762: -1,1 + 3772: -12,-10 + 3778: -4,-1 + 3786: 4,-1 + 3812: 6,16 + 3820: 6,17 + 3828: 6,18 + 3836: 6,19 + 3844: 6,20 + 3861: -9,28 + 3864: 0,1 + 3874: 1,1 + 3884: 2,1 + 3901: 3,0 + 3909: 3,1 + 3917: 4,0 + 3925: 4,1 + 3933: 8,12 + 3950: -9,12 + 3953: -8,12 + 3961: -4,0 + 3969: -4,1 + 3977: -3,0 + 3985: -3,1 + 3993: -2,1 + 4010: -1,1 + 4023: -4,-1 + 4031: 4,-1 + 4054: 6,16 + 4062: 6,17 + 4070: 6,18 + 4078: 6,19 + 4086: 6,20 + 4103: -9,28 + 4106: -12,-10 + 4112: 0,1 + 4122: 1,1 + 4132: 2,1 + 4149: 3,0 + 4157: 3,1 + 4165: 4,0 + 4173: 4,1 + 4181: 8,12 + 4198: -9,12 + 4201: -8,12 + 4209: -4,0 + 4217: -4,1 + 4225: -3,0 + 4233: -3,1 + 4241: -2,1 + 4258: -1,1 + 4268: -12,-10 + 4274: -4,-1 + 4282: 4,-1 + 4308: 6,16 + 4316: 6,17 + 4324: 6,18 + 4332: 6,19 + 4340: 6,20 + 4357: -9,28 + 4360: 0,1 + 4370: 1,1 + 4380: 2,1 + 4397: 3,0 + 4405: 3,1 + 4413: 4,0 + 4421: 4,1 + 4429: 8,12 + 4446: -9,12 + 4449: -8,12 + 4457: -4,0 + 4465: -4,1 + 4473: -3,0 + 4481: -3,1 + 4489: -2,1 + 4506: -1,1 + 4516: -12,-10 + 4522: -4,-1 + 4530: 4,-1 + 4556: 6,16 + 4564: 6,17 + 4572: 6,18 + 4580: 6,19 + 4588: 6,20 + 4605: -9,28 + 4608: 0,1 + 4618: 1,1 + 4628: 2,1 + 4645: 3,0 + 4653: 3,1 + 4661: 4,0 + 4669: 4,1 + 4677: 8,12 + 4694: -9,12 + 4697: -8,12 + 4705: -4,0 + 4713: -4,1 + 4721: -3,0 + 4729: -3,1 + 4737: -2,1 + 4754: -1,1 + 4764: -12,-10 + 4770: -4,-1 + 4778: 4,-1 + 4804: 6,16 + 4812: 6,17 + 4820: 6,18 + 4828: 6,19 + 4836: 6,20 + 4853: -9,28 + 4871: 0,1 + 4881: 1,1 + 4891: 2,1 + 4908: 3,0 + 4916: 3,1 + 4924: 4,0 + 4932: 4,1 + 4940: 8,12 + 4957: -9,12 + 4960: -8,12 + 4968: -4,0 + 4976: -4,1 + 4984: -3,0 + 4992: -3,1 + 5000: -2,1 + 5017: -1,1 + 5027: -12,-10 + 5033: -4,-1 + 5041: 4,-1 + 5067: 6,16 + 5075: 6,17 + 5083: 6,18 + 5091: 6,19 + 5099: 6,20 + 5116: -9,28 + 5119: 0,1 + 5129: 1,1 + 5139: 2,1 + 5156: 3,0 + 5164: 3,1 + 5172: 4,0 + 5180: 4,1 + 5188: 8,12 + 5205: -9,12 + 5208: -8,12 + 5216: -4,0 + 5224: -4,1 + 5232: -3,0 + 5240: -3,1 + 5248: -2,1 + 5265: -1,1 + 5275: -12,-10 + 5281: -4,-1 + 5289: 4,-1 + 5315: 6,16 + 5323: 6,17 + 5331: 6,18 + 5339: 6,19 + 5347: 6,20 + 5364: -9,28 + 5389: 0,1 + 5399: 1,1 + 5409: 2,1 + 5426: 3,0 + 5434: 3,1 + 5442: 4,0 + 5450: 4,1 + 5458: 8,12 + 5475: -9,12 + 5478: -8,12 + 5486: -4,0 + 5494: -4,1 + 5502: -3,0 + 5510: -3,1 + 5518: -2,1 + 5535: -1,1 + 5545: -12,-10 + 5551: -4,-1 + 5559: 4,-1 + 5585: 6,16 + 5593: 6,17 + 5601: 6,18 + 5609: 6,19 + 5617: 6,20 + 5634: -9,28 + 5637: 0,1 + 5647: 1,1 + 5657: 2,1 + 5674: 3,0 + 5682: 3,1 + 5690: 4,0 + 5698: 4,1 + 5706: 8,12 + 5723: -9,12 + 5726: -8,12 + 5734: -4,0 + 5742: -4,1 + 5750: -3,0 + 5758: -3,1 + 5766: -2,1 + 5783: -1,1 + 5793: -12,-10 + 5799: -4,-1 + 5807: 4,-1 + 5833: 6,16 + 5841: 6,17 + 5849: 6,18 + 5857: 6,19 + 5865: 6,20 + 5882: -9,28 + 5893: 0,1 + 5903: 1,1 + 5913: 2,1 + 5930: 3,0 + 5938: 3,1 + 5946: 4,0 + 5954: 4,1 + 5962: 8,12 + 5979: -9,12 + 5982: -8,12 + 5990: -4,0 + 5998: -4,1 + 6006: -3,0 + 6014: -3,1 + 6022: -2,1 + 6039: -1,1 + 6049: -12,-10 + 6055: -4,-1 + 6063: 4,-1 + 6089: 6,16 + 6097: 6,17 + 6105: 6,18 + 6113: 6,19 + 6121: 6,20 + 6138: -9,28 + 6141: 0,1 + 6151: 1,1 + 6161: 2,1 + 6178: 3,0 + 6186: 3,1 + 6194: 4,0 + 6202: 4,1 + 6210: 8,12 + 6227: -9,12 + 6230: -8,12 + 6238: -4,0 + 6246: -4,1 + 6254: -3,0 + 6262: -3,1 + 6270: -2,1 + 6287: -1,1 + 6297: -12,-10 + 6303: -4,-1 + 6311: 4,-1 + 6337: 6,16 + 6345: 6,17 + 6353: 6,18 + 6361: 6,19 + 6369: 6,20 + 6386: -9,28 + 6389: 0,1 + 6399: 1,1 + 6409: 2,1 + 6426: 3,0 + 6434: 3,1 + 6442: 4,0 + 6450: 4,1 + 6467: -9,12 + 6470: -8,12 + 6478: -4,0 + 6486: -4,1 + 6494: -3,0 + 6502: -3,1 + 6510: -2,1 + 6527: -1,1 + 6537: -12,-10 + 6543: -4,-1 + 6551: 4,-1 + 6577: 6,16 + 6585: 6,17 + 6593: 6,18 + 6601: 6,19 + 6609: 6,20 + 6626: -9,28 + 6631: 8,12 + 6659: 0,1 + 6669: 1,1 + 6679: 2,1 + 6696: 3,0 + 6704: 3,1 + 6712: 4,0 + 6720: 4,1 + 6728: 8,12 + 6745: -9,12 + 6748: -8,12 + 6756: -4,0 + 6764: -4,1 + 6772: -3,0 + 6780: -3,1 + 6788: -2,1 + 6805: -1,1 + 6815: -12,-10 + 6821: -4,-1 + 6829: 4,-1 + 6855: 6,16 + 6863: 6,17 + 6871: 6,18 + 6879: 6,19 + 6887: 6,20 + 6904: -9,28 - node: zIndex: 1 id: LatticeCornerSW decals: - 933: 0,1 - 941: 1,1 - 949: 2,1 - 957: 3,0 - 965: 3,1 - 973: 4,0 - 981: 4,1 - 989: 8,12 - 996: 9,12 - 1009: -8,12 - 1017: -4,0 - 1025: -4,1 - 1033: -3,0 - 1041: -3,1 - 1049: -2,1 - 1057: -1,1 - 1071: -4,-1 - 1079: 4,-1 - 1086: 12,-10 - 1105: 6,16 - 1113: 6,17 - 1121: 6,18 - 1129: 6,19 - 1137: 6,20 - 1144: 9,28 - 1157: 0,1 - 1165: 1,1 - 1173: 2,1 - 1181: 3,0 - 1189: 3,1 - 1197: 4,0 - 1205: 4,1 - 1213: 8,12 - 1220: 9,12 - 1233: -8,12 - 1241: -4,0 - 1249: -4,1 - 1257: -3,0 - 1265: -3,1 - 1273: -2,1 - 1281: -1,1 - 1295: -4,-1 - 1303: 4,-1 - 1310: 12,-10 - 1329: 6,16 - 1337: 6,17 - 1345: 6,18 - 1353: 6,19 - 1361: 6,20 - 1368: 9,28 - 1381: 0,1 - 1389: 1,1 - 1397: 2,1 - 1405: 3,0 - 1413: 3,1 - 1421: 4,0 - 1429: 4,1 - 1437: 8,12 - 1444: 9,12 - 1457: -8,12 - 1465: -4,0 - 1473: -4,1 - 1481: -3,0 - 1489: -3,1 - 1497: -2,1 - 1505: -1,1 - 1519: -4,-1 - 1527: 4,-1 - 1534: 12,-10 - 1553: 6,16 - 1561: 6,17 - 1569: 6,18 - 1577: 6,19 - 1585: 6,20 - 1592: 9,28 - 1605: 0,1 - 1613: 1,1 - 1621: 2,1 - 1629: 3,0 - 1637: 3,1 - 1645: 4,0 - 1653: 4,1 - 1661: 8,12 - 1668: 9,12 - 1681: -8,12 - 1689: -4,0 - 1697: -4,1 - 1705: -3,0 - 1713: -3,1 - 1721: -2,1 - 1729: -1,1 - 1743: -4,-1 - 1751: 4,-1 - 1758: 12,-10 - 1777: 6,16 - 1785: 6,17 - 1793: 6,18 - 1801: 6,19 - 1809: 6,20 - 1816: 9,28 - 1829: 0,1 - 1837: 1,1 - 1845: 2,1 - 1853: 3,0 - 1861: 3,1 - 1869: 4,0 - 1877: 4,1 - 1885: 8,12 - 1892: 9,12 - 1902: -4,0 - 1910: -4,1 - 1918: -3,0 - 1926: -3,1 - 1934: -2,1 - 1942: -1,1 - 1956: -4,-1 - 1964: 4,-1 - 1971: 12,-10 - 1990: 6,16 - 1998: 6,17 - 2006: 6,18 - 2014: 6,19 - 2022: 6,20 - 2029: 9,28 - 2042: -8,12 - 2053: 0,1 - 2061: 1,1 - 2069: 2,1 - 2077: 3,0 - 2085: 3,1 - 2093: 4,0 - 2101: 4,1 - 2109: 8,12 - 2116: 9,12 - 2129: -8,12 - 2137: -4,0 - 2145: -4,1 - 2153: -3,0 - 2161: -3,1 - 2169: -2,1 - 2177: -1,1 - 2191: -4,-1 - 2199: 4,-1 - 2206: 12,-10 - 2225: 6,16 - 2233: 6,17 - 2241: 6,18 - 2249: 6,19 - 2257: 6,20 - 2264: 9,28 - 2277: 0,1 - 2285: 1,1 - 2293: 2,1 - 2301: 3,0 - 2309: 3,1 - 2317: 4,0 - 2325: 4,1 - 2333: 8,12 - 2340: 9,12 - 2353: -8,12 - 2361: -4,0 - 2369: -4,1 - 2377: -3,0 - 2385: -3,1 - 2393: -2,1 - 2401: -1,1 - 2415: -4,-1 - 2423: 4,-1 - 2430: 12,-10 - 2449: 6,16 - 2457: 6,17 - 2465: 6,18 - 2473: 6,19 - 2481: 6,20 - 2488: 9,28 - 2501: 0,1 - 2509: 1,1 - 2517: 2,1 - 2525: 3,0 - 2533: 3,1 - 2541: 4,0 - 2549: 4,1 - 2557: 8,12 - 2564: 9,12 - 2577: -8,12 - 2585: -4,0 - 2593: -4,1 - 2601: -3,0 - 2609: -3,1 - 2617: -2,1 - 2625: -1,1 - 2639: -4,-1 - 2647: 4,-1 - 2654: 12,-10 - 2673: 6,16 - 2681: 6,17 - 2689: 6,18 - 2697: 6,19 - 2705: 6,20 - 2712: 9,28 - 2725: 0,1 - 2733: 1,1 - 2741: 2,1 - 2749: 3,0 - 2757: 3,1 - 2765: 4,0 - 2773: 4,1 - 2781: 8,12 - 2788: 9,12 - 2801: -8,12 - 2809: -4,0 - 2817: -4,1 - 2825: -3,0 - 2833: -3,1 - 2841: -2,1 - 2849: -1,1 - 2863: -4,-1 - 2871: 4,-1 - 2878: 12,-10 - 2897: 6,16 - 2905: 6,17 - 2913: 6,18 - 2921: 6,19 - 2929: 6,20 - 2936: 9,28 - 2949: 0,1 - 2957: 1,1 - 2965: 2,1 - 2973: 3,0 - 2981: 3,1 - 2989: 4,0 - 2997: 4,1 - 3005: 8,12 - 3012: 9,12 - 3025: -8,12 - 3033: -4,0 - 3041: -4,1 - 3049: -3,0 - 3057: -3,1 - 3065: -2,1 - 3073: -1,1 - 3087: -4,-1 - 3095: 4,-1 - 3102: 12,-10 - 3121: 6,16 - 3129: 6,17 - 3137: 6,18 - 3145: 6,19 - 3153: 6,20 - 3160: 9,28 - 3173: 0,1 - 3181: 1,1 - 3189: 2,1 - 3197: 3,0 - 3205: 3,1 - 3213: 4,0 - 3221: 4,1 - 3229: 8,12 - 3236: 9,12 - 3249: -8,12 - 3257: -4,0 - 3265: -4,1 - 3273: -3,0 - 3281: -3,1 - 3289: -2,1 - 3297: -1,1 - 3311: -4,-1 - 3319: 4,-1 - 3326: 12,-10 - 3345: 6,16 - 3353: 6,17 - 3361: 6,18 - 3369: 6,19 - 3377: 6,20 - 3384: 9,28 - 3421: 0,1 - 3430: 1,1 - 3439: 2,1 - 3453: 3,0 - 3461: 3,1 - 3469: 4,0 - 3477: 4,1 - 3485: 8,12 - 3492: 9,12 - 3505: -8,12 - 3513: -4,0 - 3521: -4,1 - 3529: -3,0 - 3537: -3,1 - 3545: -2,1 - 3559: -1,1 - 3574: -4,-1 - 3582: 4,-1 - 3589: 12,-10 - 3608: 6,16 - 3616: 6,17 - 3624: 6,18 - 3632: 6,19 - 3640: 6,20 - 3647: 9,28 - 3669: 0,1 - 3679: 1,1 - 3689: 2,1 - 3706: 3,0 - 3714: 3,1 - 3722: 4,0 - 3730: 4,1 - 3738: 8,12 - 3745: 9,12 - 3758: -8,12 - 3766: -4,0 - 3774: -4,1 - 3782: -3,0 - 3790: -3,1 - 3798: -2,1 - 3815: -1,1 - 3831: -4,-1 - 3839: 4,-1 - 3846: 12,-10 - 3865: 6,16 - 3873: 6,17 - 3881: 6,18 - 3889: 6,19 - 3897: 6,20 - 3904: 9,28 - 3917: 0,1 - 3927: 1,1 - 3937: 2,1 - 3954: 3,0 - 3962: 3,1 - 3970: 4,0 - 3978: 4,1 - 3986: 8,12 - 3993: 9,12 - 4006: -8,12 - 4014: -4,0 - 4022: -4,1 - 4030: -3,0 - 4038: -3,1 - 4046: -2,1 - 4063: -1,1 - 4076: -4,-1 - 4084: 4,-1 - 4107: 6,16 - 4115: 6,17 - 4123: 6,18 - 4131: 6,19 - 4139: 6,20 - 4146: 9,28 - 4158: 12,-10 - 4165: 0,1 - 4175: 1,1 - 4185: 2,1 - 4202: 3,0 - 4210: 3,1 - 4218: 4,0 - 4226: 4,1 - 4234: 8,12 - 4241: 9,12 - 4254: -8,12 - 4262: -4,0 - 4270: -4,1 - 4278: -3,0 - 4286: -3,1 - 4294: -2,1 - 4311: -1,1 - 4327: -4,-1 - 4335: 4,-1 - 4342: 12,-10 - 4361: 6,16 - 4369: 6,17 - 4377: 6,18 - 4385: 6,19 - 4393: 6,20 - 4400: 9,28 - 4413: 0,1 - 4423: 1,1 - 4433: 2,1 - 4450: 3,0 - 4458: 3,1 - 4466: 4,0 - 4474: 4,1 - 4482: 8,12 - 4489: 9,12 - 4502: -8,12 - 4510: -4,0 - 4518: -4,1 - 4526: -3,0 - 4534: -3,1 - 4542: -2,1 - 4559: -1,1 - 4575: -4,-1 - 4583: 4,-1 - 4590: 12,-10 - 4609: 6,16 - 4617: 6,17 - 4625: 6,18 - 4633: 6,19 - 4641: 6,20 - 4648: 9,28 - 4661: 0,1 - 4671: 1,1 - 4681: 2,1 - 4698: 3,0 - 4706: 3,1 - 4714: 4,0 - 4722: 4,1 - 4730: 8,12 - 4737: 9,12 - 4750: -8,12 - 4758: -4,0 - 4766: -4,1 - 4774: -3,0 - 4782: -3,1 - 4790: -2,1 - 4807: -1,1 - 4823: -4,-1 - 4831: 4,-1 - 4838: 12,-10 - 4857: 6,16 - 4865: 6,17 - 4873: 6,18 - 4881: 6,19 - 4889: 6,20 - 4896: 9,28 - 4924: 0,1 - 4934: 1,1 - 4944: 2,1 - 4961: 3,0 - 4969: 3,1 - 4977: 4,0 - 4985: 4,1 - 4993: 8,12 - 5000: 9,12 - 5013: -8,12 - 5021: -4,0 - 5029: -4,1 - 5037: -3,0 - 5045: -3,1 - 5053: -2,1 - 5070: -1,1 - 5086: -4,-1 - 5094: 4,-1 - 5101: 12,-10 - 5120: 6,16 - 5128: 6,17 - 5136: 6,18 - 5144: 6,19 - 5152: 6,20 - 5159: 9,28 - 5172: 0,1 - 5182: 1,1 - 5192: 2,1 - 5209: 3,0 - 5217: 3,1 - 5225: 4,0 - 5233: 4,1 - 5241: 8,12 - 5248: 9,12 - 5261: -8,12 - 5269: -4,0 - 5277: -4,1 - 5285: -3,0 - 5293: -3,1 - 5301: -2,1 - 5318: -1,1 - 5334: -4,-1 - 5342: 4,-1 - 5349: 12,-10 - 5368: 6,16 - 5376: 6,17 - 5384: 6,18 - 5392: 6,19 - 5400: 6,20 - 5407: 9,28 - 5442: 0,1 - 5452: 1,1 - 5462: 2,1 - 5479: 3,0 - 5487: 3,1 - 5495: 4,0 - 5503: 4,1 - 5511: 8,12 - 5518: 9,12 - 5531: -8,12 - 5539: -4,0 - 5547: -4,1 - 5555: -3,0 - 5563: -3,1 - 5571: -2,1 - 5588: -1,1 - 5604: -4,-1 - 5612: 4,-1 - 5619: 12,-10 - 5638: 6,16 - 5646: 6,17 - 5654: 6,18 - 5662: 6,19 - 5670: 6,20 - 5677: 9,28 - 5690: 0,1 - 5700: 1,1 - 5710: 2,1 - 5727: 3,0 - 5735: 3,1 - 5743: 4,0 - 5751: 4,1 - 5759: 8,12 - 5766: 9,12 - 5779: -8,12 - 5787: -4,0 - 5795: -4,1 - 5803: -3,0 - 5811: -3,1 - 5819: -2,1 - 5836: -1,1 - 5852: -4,-1 - 5860: 4,-1 - 5867: 12,-10 - 5886: 6,16 - 5894: 6,17 - 5902: 6,18 - 5910: 6,19 - 5918: 6,20 - 5925: 9,28 + 884: 0,1 + 892: 1,1 + 900: 2,1 + 908: 3,0 + 916: 3,1 + 924: 4,0 + 932: 4,1 + 940: 8,12 + 947: 9,12 + 960: -8,12 + 968: -4,0 + 976: -4,1 + 984: -3,0 + 992: -3,1 + 1000: -2,1 + 1008: -1,1 + 1022: -4,-1 + 1030: 4,-1 + 1037: 12,-10 + 1056: 6,16 + 1064: 6,17 + 1072: 6,18 + 1080: 6,19 + 1088: 6,20 + 1095: 9,28 + 1108: 0,1 + 1116: 1,1 + 1124: 2,1 + 1132: 3,0 + 1140: 3,1 + 1148: 4,0 + 1156: 4,1 + 1164: 8,12 + 1171: 9,12 + 1184: -8,12 + 1192: -4,0 + 1200: -4,1 + 1208: -3,0 + 1216: -3,1 + 1224: -2,1 + 1232: -1,1 + 1246: -4,-1 + 1254: 4,-1 + 1261: 12,-10 + 1280: 6,16 + 1288: 6,17 + 1296: 6,18 + 1304: 6,19 + 1312: 6,20 + 1319: 9,28 + 1332: 0,1 + 1340: 1,1 + 1348: 2,1 + 1356: 3,0 + 1364: 3,1 + 1372: 4,0 + 1380: 4,1 + 1388: 8,12 + 1395: 9,12 + 1408: -8,12 + 1416: -4,0 + 1424: -4,1 + 1432: -3,0 + 1440: -3,1 + 1448: -2,1 + 1456: -1,1 + 1470: -4,-1 + 1478: 4,-1 + 1485: 12,-10 + 1504: 6,16 + 1512: 6,17 + 1520: 6,18 + 1528: 6,19 + 1536: 6,20 + 1543: 9,28 + 1556: 0,1 + 1564: 1,1 + 1572: 2,1 + 1580: 3,0 + 1588: 3,1 + 1596: 4,0 + 1604: 4,1 + 1612: 8,12 + 1619: 9,12 + 1632: -8,12 + 1640: -4,0 + 1648: -4,1 + 1656: -3,0 + 1664: -3,1 + 1672: -2,1 + 1680: -1,1 + 1694: -4,-1 + 1702: 4,-1 + 1709: 12,-10 + 1728: 6,16 + 1736: 6,17 + 1744: 6,18 + 1752: 6,19 + 1760: 6,20 + 1767: 9,28 + 1780: 0,1 + 1788: 1,1 + 1796: 2,1 + 1804: 3,0 + 1812: 3,1 + 1820: 4,0 + 1828: 4,1 + 1836: 8,12 + 1843: 9,12 + 1853: -4,0 + 1861: -4,1 + 1869: -3,0 + 1877: -3,1 + 1885: -2,1 + 1893: -1,1 + 1907: -4,-1 + 1915: 4,-1 + 1922: 12,-10 + 1941: 6,16 + 1949: 6,17 + 1957: 6,18 + 1965: 6,19 + 1973: 6,20 + 1980: 9,28 + 1993: -8,12 + 2004: 0,1 + 2012: 1,1 + 2020: 2,1 + 2028: 3,0 + 2036: 3,1 + 2044: 4,0 + 2052: 4,1 + 2060: 8,12 + 2067: 9,12 + 2080: -8,12 + 2088: -4,0 + 2096: -4,1 + 2104: -3,0 + 2112: -3,1 + 2120: -2,1 + 2128: -1,1 + 2142: -4,-1 + 2150: 4,-1 + 2157: 12,-10 + 2176: 6,16 + 2184: 6,17 + 2192: 6,18 + 2200: 6,19 + 2208: 6,20 + 2215: 9,28 + 2228: 0,1 + 2236: 1,1 + 2244: 2,1 + 2252: 3,0 + 2260: 3,1 + 2268: 4,0 + 2276: 4,1 + 2284: 8,12 + 2291: 9,12 + 2304: -8,12 + 2312: -4,0 + 2320: -4,1 + 2328: -3,0 + 2336: -3,1 + 2344: -2,1 + 2352: -1,1 + 2366: -4,-1 + 2374: 4,-1 + 2381: 12,-10 + 2400: 6,16 + 2408: 6,17 + 2416: 6,18 + 2424: 6,19 + 2432: 6,20 + 2439: 9,28 + 2452: 0,1 + 2460: 1,1 + 2468: 2,1 + 2476: 3,0 + 2484: 3,1 + 2492: 4,0 + 2500: 4,1 + 2508: 8,12 + 2515: 9,12 + 2528: -8,12 + 2536: -4,0 + 2544: -4,1 + 2552: -3,0 + 2560: -3,1 + 2568: -2,1 + 2576: -1,1 + 2590: -4,-1 + 2598: 4,-1 + 2605: 12,-10 + 2624: 6,16 + 2632: 6,17 + 2640: 6,18 + 2648: 6,19 + 2656: 6,20 + 2663: 9,28 + 2676: 0,1 + 2684: 1,1 + 2692: 2,1 + 2700: 3,0 + 2708: 3,1 + 2716: 4,0 + 2724: 4,1 + 2732: 8,12 + 2739: 9,12 + 2752: -8,12 + 2760: -4,0 + 2768: -4,1 + 2776: -3,0 + 2784: -3,1 + 2792: -2,1 + 2800: -1,1 + 2814: -4,-1 + 2822: 4,-1 + 2829: 12,-10 + 2848: 6,16 + 2856: 6,17 + 2864: 6,18 + 2872: 6,19 + 2880: 6,20 + 2887: 9,28 + 2900: 0,1 + 2908: 1,1 + 2916: 2,1 + 2924: 3,0 + 2932: 3,1 + 2940: 4,0 + 2948: 4,1 + 2956: 8,12 + 2963: 9,12 + 2976: -8,12 + 2984: -4,0 + 2992: -4,1 + 3000: -3,0 + 3008: -3,1 + 3016: -2,1 + 3024: -1,1 + 3038: -4,-1 + 3046: 4,-1 + 3053: 12,-10 + 3072: 6,16 + 3080: 6,17 + 3088: 6,18 + 3096: 6,19 + 3104: 6,20 + 3111: 9,28 + 3124: 0,1 + 3132: 1,1 + 3140: 2,1 + 3148: 3,0 + 3156: 3,1 + 3164: 4,0 + 3172: 4,1 + 3180: 8,12 + 3187: 9,12 + 3200: -8,12 + 3208: -4,0 + 3216: -4,1 + 3224: -3,0 + 3232: -3,1 + 3240: -2,1 + 3248: -1,1 + 3262: -4,-1 + 3270: 4,-1 + 3277: 12,-10 + 3296: 6,16 + 3304: 6,17 + 3312: 6,18 + 3320: 6,19 + 3328: 6,20 + 3335: 9,28 + 3372: 0,1 + 3381: 1,1 + 3390: 2,1 + 3404: 3,0 + 3412: 3,1 + 3420: 4,0 + 3428: 4,1 + 3436: 8,12 + 3443: 9,12 + 3456: -8,12 + 3464: -4,0 + 3472: -4,1 + 3480: -3,0 + 3488: -3,1 + 3496: -2,1 + 3510: -1,1 + 3525: -4,-1 + 3533: 4,-1 + 3540: 12,-10 + 3559: 6,16 + 3567: 6,17 + 3575: 6,18 + 3583: 6,19 + 3591: 6,20 + 3598: 9,28 + 3620: 0,1 + 3630: 1,1 + 3640: 2,1 + 3657: 3,0 + 3665: 3,1 + 3673: 4,0 + 3681: 4,1 + 3689: 8,12 + 3696: 9,12 + 3709: -8,12 + 3717: -4,0 + 3725: -4,1 + 3733: -3,0 + 3741: -3,1 + 3749: -2,1 + 3766: -1,1 + 3782: -4,-1 + 3790: 4,-1 + 3797: 12,-10 + 3816: 6,16 + 3824: 6,17 + 3832: 6,18 + 3840: 6,19 + 3848: 6,20 + 3855: 9,28 + 3868: 0,1 + 3878: 1,1 + 3888: 2,1 + 3905: 3,0 + 3913: 3,1 + 3921: 4,0 + 3929: 4,1 + 3937: 8,12 + 3944: 9,12 + 3957: -8,12 + 3965: -4,0 + 3973: -4,1 + 3981: -3,0 + 3989: -3,1 + 3997: -2,1 + 4014: -1,1 + 4027: -4,-1 + 4035: 4,-1 + 4058: 6,16 + 4066: 6,17 + 4074: 6,18 + 4082: 6,19 + 4090: 6,20 + 4097: 9,28 + 4109: 12,-10 + 4116: 0,1 + 4126: 1,1 + 4136: 2,1 + 4153: 3,0 + 4161: 3,1 + 4169: 4,0 + 4177: 4,1 + 4185: 8,12 + 4192: 9,12 + 4205: -8,12 + 4213: -4,0 + 4221: -4,1 + 4229: -3,0 + 4237: -3,1 + 4245: -2,1 + 4262: -1,1 + 4278: -4,-1 + 4286: 4,-1 + 4293: 12,-10 + 4312: 6,16 + 4320: 6,17 + 4328: 6,18 + 4336: 6,19 + 4344: 6,20 + 4351: 9,28 + 4364: 0,1 + 4374: 1,1 + 4384: 2,1 + 4401: 3,0 + 4409: 3,1 + 4417: 4,0 + 4425: 4,1 + 4433: 8,12 + 4440: 9,12 + 4453: -8,12 + 4461: -4,0 + 4469: -4,1 + 4477: -3,0 + 4485: -3,1 + 4493: -2,1 + 4510: -1,1 + 4526: -4,-1 + 4534: 4,-1 + 4541: 12,-10 + 4560: 6,16 + 4568: 6,17 + 4576: 6,18 + 4584: 6,19 + 4592: 6,20 + 4599: 9,28 + 4612: 0,1 + 4622: 1,1 + 4632: 2,1 + 4649: 3,0 + 4657: 3,1 + 4665: 4,0 + 4673: 4,1 + 4681: 8,12 + 4688: 9,12 + 4701: -8,12 + 4709: -4,0 + 4717: -4,1 + 4725: -3,0 + 4733: -3,1 + 4741: -2,1 + 4758: -1,1 + 4774: -4,-1 + 4782: 4,-1 + 4789: 12,-10 + 4808: 6,16 + 4816: 6,17 + 4824: 6,18 + 4832: 6,19 + 4840: 6,20 + 4847: 9,28 + 4875: 0,1 + 4885: 1,1 + 4895: 2,1 + 4912: 3,0 + 4920: 3,1 + 4928: 4,0 + 4936: 4,1 + 4944: 8,12 + 4951: 9,12 + 4964: -8,12 + 4972: -4,0 + 4980: -4,1 + 4988: -3,0 + 4996: -3,1 + 5004: -2,1 + 5021: -1,1 + 5037: -4,-1 + 5045: 4,-1 + 5052: 12,-10 + 5071: 6,16 + 5079: 6,17 + 5087: 6,18 + 5095: 6,19 + 5103: 6,20 + 5110: 9,28 + 5123: 0,1 + 5133: 1,1 + 5143: 2,1 + 5160: 3,0 + 5168: 3,1 + 5176: 4,0 + 5184: 4,1 + 5192: 8,12 + 5199: 9,12 + 5212: -8,12 + 5220: -4,0 + 5228: -4,1 + 5236: -3,0 + 5244: -3,1 + 5252: -2,1 + 5269: -1,1 + 5285: -4,-1 + 5293: 4,-1 + 5300: 12,-10 + 5319: 6,16 + 5327: 6,17 + 5335: 6,18 + 5343: 6,19 + 5351: 6,20 + 5358: 9,28 + 5393: 0,1 + 5403: 1,1 + 5413: 2,1 + 5430: 3,0 + 5438: 3,1 + 5446: 4,0 + 5454: 4,1 + 5462: 8,12 + 5469: 9,12 + 5482: -8,12 + 5490: -4,0 + 5498: -4,1 + 5506: -3,0 + 5514: -3,1 + 5522: -2,1 + 5539: -1,1 + 5555: -4,-1 + 5563: 4,-1 + 5570: 12,-10 + 5589: 6,16 + 5597: 6,17 + 5605: 6,18 + 5613: 6,19 + 5621: 6,20 + 5628: 9,28 + 5641: 0,1 + 5651: 1,1 + 5661: 2,1 + 5678: 3,0 + 5686: 3,1 + 5694: 4,0 + 5702: 4,1 + 5710: 8,12 + 5717: 9,12 + 5730: -8,12 + 5738: -4,0 + 5746: -4,1 + 5754: -3,0 + 5762: -3,1 + 5770: -2,1 + 5787: -1,1 + 5803: -4,-1 + 5811: 4,-1 + 5818: 12,-10 + 5837: 6,16 + 5845: 6,17 + 5853: 6,18 + 5861: 6,19 + 5869: 6,20 + 5876: 9,28 + 5897: 0,1 + 5907: 1,1 + 5917: 2,1 + 5934: 3,0 + 5942: 3,1 + 5950: 4,0 + 5958: 4,1 + 5966: 8,12 + 5973: 9,12 + 5986: -8,12 + 5994: -4,0 + 6002: -4,1 + 6010: -3,0 + 6018: -3,1 + 6026: -2,1 + 6043: -1,1 + 6059: -4,-1 + 6067: 4,-1 + 6074: 12,-10 + 6093: 6,16 + 6101: 6,17 + 6109: 6,18 + 6117: 6,19 + 6125: 6,20 + 6132: 9,28 + 6145: 0,1 + 6155: 1,1 + 6165: 2,1 + 6182: 3,0 + 6190: 3,1 + 6198: 4,0 + 6206: 4,1 + 6214: 8,12 + 6221: 9,12 + 6234: -8,12 + 6242: -4,0 + 6250: -4,1 + 6258: -3,0 + 6266: -3,1 + 6274: -2,1 + 6291: -1,1 + 6307: -4,-1 + 6315: 4,-1 + 6322: 12,-10 + 6341: 6,16 + 6349: 6,17 + 6357: 6,18 + 6365: 6,19 + 6373: 6,20 + 6380: 9,28 + 6393: 0,1 + 6403: 1,1 + 6413: 2,1 + 6430: 3,0 + 6438: 3,1 + 6446: 4,0 + 6454: 4,1 + 6461: 9,12 + 6474: -8,12 + 6482: -4,0 + 6490: -4,1 + 6498: -3,0 + 6506: -3,1 + 6514: -2,1 + 6531: -1,1 + 6547: -4,-1 + 6555: 4,-1 + 6562: 12,-10 + 6581: 6,16 + 6589: 6,17 + 6597: 6,18 + 6605: 6,19 + 6613: 6,20 + 6620: 9,28 + 6635: 8,12 + 6663: 0,1 + 6673: 1,1 + 6683: 2,1 + 6700: 3,0 + 6708: 3,1 + 6716: 4,0 + 6724: 4,1 + 6732: 8,12 + 6739: 9,12 + 6752: -8,12 + 6760: -4,0 + 6768: -4,1 + 6776: -3,0 + 6784: -3,1 + 6792: -2,1 + 6809: -1,1 + 6825: -4,-1 + 6833: 4,-1 + 6840: 12,-10 + 6859: 6,16 + 6867: 6,17 + 6875: 6,18 + 6883: 6,19 + 6891: 6,20 + 6898: 9,28 - node: id: LatticeEdgeE decals: - 928: 0,1 - 936: 1,1 - 944: 2,1 - 952: 3,0 - 960: 3,1 - 968: 4,0 - 976: 4,1 - 984: 8,12 - 997: -9,3 - 1001: -9,12 - 1004: -8,12 - 1012: -4,0 - 1020: -4,1 - 1028: -3,0 - 1036: -3,1 - 1044: -2,1 - 1052: -1,1 - 1060: -12,-10 - 1062: -10,-16 - 1066: -4,-1 - 1074: 4,-1 - 1093: -9,-17 - 1096: -3,-20 - 1100: 6,16 - 1108: 6,17 - 1116: 6,18 - 1124: 6,19 - 1132: 6,20 - 1145: -9,24 - 1149: -9,28 - 1152: 0,1 - 1160: 1,1 - 1168: 2,1 - 1176: 3,0 - 1184: 3,1 - 1192: 4,0 - 1200: 4,1 - 1208: 8,12 - 1221: -9,3 - 1225: -9,12 - 1228: -8,12 - 1236: -4,0 - 1244: -4,1 - 1252: -3,0 - 1260: -3,1 - 1268: -2,1 - 1276: -1,1 - 1284: -12,-10 - 1286: -10,-16 - 1290: -4,-1 - 1298: 4,-1 - 1317: -9,-17 - 1320: -3,-20 - 1324: 6,16 - 1332: 6,17 - 1340: 6,18 - 1348: 6,19 - 1356: 6,20 - 1369: -9,24 - 1373: -9,28 - 1376: 0,1 - 1384: 1,1 - 1392: 2,1 - 1400: 3,0 - 1408: 3,1 - 1416: 4,0 - 1424: 4,1 - 1432: 8,12 - 1445: -9,3 - 1449: -9,12 - 1452: -8,12 - 1460: -4,0 - 1468: -4,1 - 1476: -3,0 - 1484: -3,1 - 1492: -2,1 - 1500: -1,1 - 1508: -12,-10 - 1510: -10,-16 - 1514: -4,-1 - 1522: 4,-1 - 1541: -9,-17 - 1544: -3,-20 - 1548: 6,16 - 1556: 6,17 - 1564: 6,18 - 1572: 6,19 - 1580: 6,20 - 1593: -9,24 - 1597: -9,28 - 1600: 0,1 - 1608: 1,1 - 1616: 2,1 - 1624: 3,0 - 1632: 3,1 - 1640: 4,0 - 1648: 4,1 - 1656: 8,12 - 1669: -9,3 - 1673: -9,12 - 1676: -8,12 - 1684: -4,0 - 1692: -4,1 - 1700: -3,0 - 1708: -3,1 - 1716: -2,1 - 1724: -1,1 - 1732: -12,-10 - 1734: -10,-16 - 1738: -4,-1 - 1746: 4,-1 - 1765: -9,-17 - 1768: -3,-20 - 1772: 6,16 - 1780: 6,17 - 1788: 6,18 - 1796: 6,19 - 1804: 6,20 - 1817: -9,24 - 1821: -9,28 - 1824: 0,1 - 1832: 1,1 - 1840: 2,1 - 1848: 3,0 - 1856: 3,1 - 1864: 4,0 - 1872: 4,1 - 1880: 8,12 - 1893: -9,3 - 1897: -4,0 - 1905: -4,1 - 1913: -3,0 - 1921: -3,1 - 1929: -2,1 - 1937: -1,1 - 1945: -12,-10 - 1947: -10,-16 - 1951: -4,-1 - 1959: 4,-1 - 1978: -9,-17 - 1981: -3,-20 - 1985: 6,16 - 1993: 6,17 - 2001: 6,18 - 2009: 6,19 - 2017: 6,20 - 2030: -9,24 - 2034: -9,28 - 2037: -8,12 - 2045: -9,12 - 2048: 0,1 - 2056: 1,1 - 2064: 2,1 - 2072: 3,0 - 2080: 3,1 - 2088: 4,0 - 2096: 4,1 - 2104: 8,12 - 2117: -9,3 - 2121: -9,12 - 2124: -8,12 - 2132: -4,0 - 2140: -4,1 - 2148: -3,0 - 2156: -3,1 - 2164: -2,1 - 2172: -1,1 - 2180: -12,-10 - 2182: -10,-16 - 2186: -4,-1 - 2194: 4,-1 - 2213: -9,-17 - 2216: -3,-20 - 2220: 6,16 - 2228: 6,17 - 2236: 6,18 - 2244: 6,19 - 2252: 6,20 - 2265: -9,24 - 2269: -9,28 - 2272: 0,1 - 2280: 1,1 - 2288: 2,1 - 2296: 3,0 - 2304: 3,1 - 2312: 4,0 - 2320: 4,1 - 2328: 8,12 - 2341: -9,3 - 2345: -9,12 - 2348: -8,12 - 2356: -4,0 - 2364: -4,1 - 2372: -3,0 - 2380: -3,1 - 2388: -2,1 - 2396: -1,1 - 2404: -12,-10 - 2406: -10,-16 - 2410: -4,-1 - 2418: 4,-1 - 2437: -9,-17 - 2440: -3,-20 - 2444: 6,16 - 2452: 6,17 - 2460: 6,18 - 2468: 6,19 - 2476: 6,20 - 2489: -9,24 - 2493: -9,28 - 2496: 0,1 - 2504: 1,1 - 2512: 2,1 - 2520: 3,0 - 2528: 3,1 - 2536: 4,0 - 2544: 4,1 - 2552: 8,12 - 2565: -9,3 - 2569: -9,12 - 2572: -8,12 - 2580: -4,0 - 2588: -4,1 - 2596: -3,0 - 2604: -3,1 - 2612: -2,1 - 2620: -1,1 - 2628: -12,-10 - 2630: -10,-16 - 2634: -4,-1 - 2642: 4,-1 - 2661: -9,-17 - 2664: -3,-20 - 2668: 6,16 - 2676: 6,17 - 2684: 6,18 - 2692: 6,19 - 2700: 6,20 - 2713: -9,24 - 2717: -9,28 - 2720: 0,1 - 2728: 1,1 - 2736: 2,1 - 2744: 3,0 - 2752: 3,1 - 2760: 4,0 - 2768: 4,1 - 2776: 8,12 - 2789: -9,3 - 2793: -9,12 - 2796: -8,12 - 2804: -4,0 - 2812: -4,1 - 2820: -3,0 - 2828: -3,1 - 2836: -2,1 - 2844: -1,1 - 2852: -12,-10 - 2854: -10,-16 - 2858: -4,-1 - 2866: 4,-1 - 2885: -9,-17 - 2888: -3,-20 - 2892: 6,16 - 2900: 6,17 - 2908: 6,18 - 2916: 6,19 - 2924: 6,20 - 2937: -9,24 - 2941: -9,28 - 2944: 0,1 - 2952: 1,1 - 2960: 2,1 - 2968: 3,0 - 2976: 3,1 - 2984: 4,0 - 2992: 4,1 - 3000: 8,12 - 3013: -9,3 - 3017: -9,12 - 3020: -8,12 - 3028: -4,0 - 3036: -4,1 - 3044: -3,0 - 3052: -3,1 - 3060: -2,1 - 3068: -1,1 - 3076: -12,-10 - 3078: -10,-16 - 3082: -4,-1 - 3090: 4,-1 - 3109: -9,-17 - 3112: -3,-20 - 3116: 6,16 - 3124: 6,17 - 3132: 6,18 - 3140: 6,19 - 3148: 6,20 - 3161: -9,24 - 3165: -9,28 - 3168: 0,1 - 3176: 1,1 - 3184: 2,1 - 3192: 3,0 - 3200: 3,1 - 3208: 4,0 - 3216: 4,1 - 3224: 8,12 - 3237: -9,3 - 3241: -9,12 - 3244: -8,12 - 3252: -4,0 - 3260: -4,1 - 3268: -3,0 - 3276: -3,1 - 3284: -2,1 - 3292: -1,1 - 3300: -12,-10 - 3302: -10,-16 - 3306: -4,-1 - 3314: 4,-1 - 3333: -9,-17 - 3336: -3,-20 - 3340: 6,16 - 3348: 6,17 - 3356: 6,18 - 3364: 6,19 - 3372: 6,20 - 3385: -9,24 - 3389: -9,28 - 3416: 0,1 - 3425: 1,1 - 3434: 2,1 - 3448: 3,0 - 3456: 3,1 - 3464: 4,0 - 3472: 4,1 - 3480: 8,12 - 3493: -9,3 - 3497: -9,12 - 3500: -8,12 - 3508: -4,0 - 3516: -4,1 - 3524: -3,0 - 3532: -3,1 - 3540: -2,1 - 3554: -1,1 - 3563: -12,-10 - 3565: -10,-16 - 3569: -4,-1 - 3577: 4,-1 - 3596: -9,-17 - 3599: -3,-20 - 3603: 6,16 - 3611: 6,17 - 3619: 6,18 - 3627: 6,19 - 3635: 6,20 - 3648: -9,24 - 3652: -9,28 - 3664: 0,1 - 3674: 1,1 - 3684: 2,1 - 3701: 3,0 - 3709: 3,1 - 3717: 4,0 - 3725: 4,1 - 3733: 8,12 - 3746: -9,3 - 3750: -9,12 - 3753: -8,12 - 3761: -4,0 - 3769: -4,1 - 3777: -3,0 - 3785: -3,1 - 3793: -2,1 - 3810: -1,1 - 3820: -12,-10 - 3822: -10,-16 - 3826: -4,-1 - 3834: 4,-1 - 3853: -9,-17 - 3856: -3,-20 - 3860: 6,16 - 3868: 6,17 - 3876: 6,18 - 3884: 6,19 - 3892: 6,20 - 3905: -9,24 - 3909: -9,28 - 3912: 0,1 - 3922: 1,1 - 3932: 2,1 - 3949: 3,0 - 3957: 3,1 - 3965: 4,0 - 3973: 4,1 - 3981: 8,12 - 3994: -9,3 - 3998: -9,12 - 4001: -8,12 - 4009: -4,0 - 4017: -4,1 - 4025: -3,0 - 4033: -3,1 - 4041: -2,1 - 4058: -1,1 - 4067: -10,-16 - 4071: -4,-1 - 4079: 4,-1 - 4095: -9,-17 - 4098: -3,-20 - 4102: 6,16 - 4110: 6,17 - 4118: 6,18 - 4126: 6,19 - 4134: 6,20 - 4147: -9,24 - 4151: -9,28 - 4154: -12,-10 - 4160: 0,1 - 4170: 1,1 - 4180: 2,1 - 4197: 3,0 - 4205: 3,1 - 4213: 4,0 - 4221: 4,1 - 4229: 8,12 - 4242: -9,3 - 4246: -9,12 - 4249: -8,12 - 4257: -4,0 - 4265: -4,1 - 4273: -3,0 - 4281: -3,1 - 4289: -2,1 - 4306: -1,1 - 4316: -12,-10 - 4318: -10,-16 - 4322: -4,-1 - 4330: 4,-1 - 4349: -9,-17 - 4352: -3,-20 - 4356: 6,16 - 4364: 6,17 - 4372: 6,18 - 4380: 6,19 - 4388: 6,20 - 4401: -9,24 - 4405: -9,28 - 4408: 0,1 - 4418: 1,1 - 4428: 2,1 - 4445: 3,0 - 4453: 3,1 - 4461: 4,0 - 4469: 4,1 - 4477: 8,12 - 4490: -9,3 - 4494: -9,12 - 4497: -8,12 - 4505: -4,0 - 4513: -4,1 - 4521: -3,0 - 4529: -3,1 - 4537: -2,1 - 4554: -1,1 - 4564: -12,-10 - 4566: -10,-16 - 4570: -4,-1 - 4578: 4,-1 - 4597: -9,-17 - 4600: -3,-20 - 4604: 6,16 - 4612: 6,17 - 4620: 6,18 - 4628: 6,19 - 4636: 6,20 - 4649: -9,24 - 4653: -9,28 - 4656: 0,1 - 4666: 1,1 - 4676: 2,1 - 4693: 3,0 - 4701: 3,1 - 4709: 4,0 - 4717: 4,1 - 4725: 8,12 - 4738: -9,3 - 4742: -9,12 - 4745: -8,12 - 4753: -4,0 - 4761: -4,1 - 4769: -3,0 - 4777: -3,1 - 4785: -2,1 - 4802: -1,1 - 4812: -12,-10 - 4814: -10,-16 - 4818: -4,-1 - 4826: 4,-1 - 4845: -9,-17 - 4848: -3,-20 - 4852: 6,16 - 4860: 6,17 - 4868: 6,18 - 4876: 6,19 - 4884: 6,20 - 4897: -9,24 - 4901: -9,28 - 4919: 0,1 - 4929: 1,1 - 4939: 2,1 - 4956: 3,0 - 4964: 3,1 - 4972: 4,0 - 4980: 4,1 - 4988: 8,12 - 5001: -9,3 - 5005: -9,12 - 5008: -8,12 - 5016: -4,0 - 5024: -4,1 - 5032: -3,0 - 5040: -3,1 - 5048: -2,1 - 5065: -1,1 - 5075: -12,-10 - 5077: -10,-16 - 5081: -4,-1 - 5089: 4,-1 - 5108: -9,-17 - 5111: -3,-20 - 5115: 6,16 - 5123: 6,17 - 5131: 6,18 - 5139: 6,19 - 5147: 6,20 - 5160: -9,24 - 5164: -9,28 - 5167: 0,1 - 5177: 1,1 - 5187: 2,1 - 5204: 3,0 - 5212: 3,1 - 5220: 4,0 - 5228: 4,1 - 5236: 8,12 - 5249: -9,3 - 5253: -9,12 - 5256: -8,12 - 5264: -4,0 - 5272: -4,1 - 5280: -3,0 - 5288: -3,1 - 5296: -2,1 - 5313: -1,1 - 5323: -12,-10 - 5325: -10,-16 - 5329: -4,-1 - 5337: 4,-1 - 5356: -9,-17 - 5359: -3,-20 - 5363: 6,16 - 5371: 6,17 - 5379: 6,18 - 5387: 6,19 - 5395: 6,20 - 5408: -9,24 - 5412: -9,28 - 5437: 0,1 - 5447: 1,1 - 5457: 2,1 - 5474: 3,0 - 5482: 3,1 - 5490: 4,0 - 5498: 4,1 - 5506: 8,12 - 5519: -9,3 - 5523: -9,12 - 5526: -8,12 - 5534: -4,0 - 5542: -4,1 - 5550: -3,0 - 5558: -3,1 - 5566: -2,1 - 5583: -1,1 - 5593: -12,-10 - 5595: -10,-16 - 5599: -4,-1 - 5607: 4,-1 - 5626: -9,-17 - 5629: -3,-20 - 5633: 6,16 - 5641: 6,17 - 5649: 6,18 - 5657: 6,19 - 5665: 6,20 - 5678: -9,24 - 5682: -9,28 - 5685: 0,1 - 5695: 1,1 - 5705: 2,1 - 5722: 3,0 - 5730: 3,1 - 5738: 4,0 - 5746: 4,1 - 5754: 8,12 - 5767: -9,3 - 5771: -9,12 - 5774: -8,12 - 5782: -4,0 - 5790: -4,1 - 5798: -3,0 - 5806: -3,1 - 5814: -2,1 - 5831: -1,1 - 5841: -12,-10 - 5843: -10,-16 - 5847: -4,-1 - 5855: 4,-1 - 5874: -9,-17 - 5877: -3,-20 - 5881: 6,16 - 5889: 6,17 - 5897: 6,18 - 5905: 6,19 - 5913: 6,20 - 5926: -9,24 - 5930: -9,28 + 879: 0,1 + 887: 1,1 + 895: 2,1 + 903: 3,0 + 911: 3,1 + 919: 4,0 + 927: 4,1 + 935: 8,12 + 948: -9,3 + 952: -9,12 + 955: -8,12 + 963: -4,0 + 971: -4,1 + 979: -3,0 + 987: -3,1 + 995: -2,1 + 1003: -1,1 + 1011: -12,-10 + 1013: -10,-16 + 1017: -4,-1 + 1025: 4,-1 + 1044: -9,-17 + 1047: -3,-20 + 1051: 6,16 + 1059: 6,17 + 1067: 6,18 + 1075: 6,19 + 1083: 6,20 + 1096: -9,24 + 1100: -9,28 + 1103: 0,1 + 1111: 1,1 + 1119: 2,1 + 1127: 3,0 + 1135: 3,1 + 1143: 4,0 + 1151: 4,1 + 1159: 8,12 + 1172: -9,3 + 1176: -9,12 + 1179: -8,12 + 1187: -4,0 + 1195: -4,1 + 1203: -3,0 + 1211: -3,1 + 1219: -2,1 + 1227: -1,1 + 1235: -12,-10 + 1237: -10,-16 + 1241: -4,-1 + 1249: 4,-1 + 1268: -9,-17 + 1271: -3,-20 + 1275: 6,16 + 1283: 6,17 + 1291: 6,18 + 1299: 6,19 + 1307: 6,20 + 1320: -9,24 + 1324: -9,28 + 1327: 0,1 + 1335: 1,1 + 1343: 2,1 + 1351: 3,0 + 1359: 3,1 + 1367: 4,0 + 1375: 4,1 + 1383: 8,12 + 1396: -9,3 + 1400: -9,12 + 1403: -8,12 + 1411: -4,0 + 1419: -4,1 + 1427: -3,0 + 1435: -3,1 + 1443: -2,1 + 1451: -1,1 + 1459: -12,-10 + 1461: -10,-16 + 1465: -4,-1 + 1473: 4,-1 + 1492: -9,-17 + 1495: -3,-20 + 1499: 6,16 + 1507: 6,17 + 1515: 6,18 + 1523: 6,19 + 1531: 6,20 + 1544: -9,24 + 1548: -9,28 + 1551: 0,1 + 1559: 1,1 + 1567: 2,1 + 1575: 3,0 + 1583: 3,1 + 1591: 4,0 + 1599: 4,1 + 1607: 8,12 + 1620: -9,3 + 1624: -9,12 + 1627: -8,12 + 1635: -4,0 + 1643: -4,1 + 1651: -3,0 + 1659: -3,1 + 1667: -2,1 + 1675: -1,1 + 1683: -12,-10 + 1685: -10,-16 + 1689: -4,-1 + 1697: 4,-1 + 1716: -9,-17 + 1719: -3,-20 + 1723: 6,16 + 1731: 6,17 + 1739: 6,18 + 1747: 6,19 + 1755: 6,20 + 1768: -9,24 + 1772: -9,28 + 1775: 0,1 + 1783: 1,1 + 1791: 2,1 + 1799: 3,0 + 1807: 3,1 + 1815: 4,0 + 1823: 4,1 + 1831: 8,12 + 1844: -9,3 + 1848: -4,0 + 1856: -4,1 + 1864: -3,0 + 1872: -3,1 + 1880: -2,1 + 1888: -1,1 + 1896: -12,-10 + 1898: -10,-16 + 1902: -4,-1 + 1910: 4,-1 + 1929: -9,-17 + 1932: -3,-20 + 1936: 6,16 + 1944: 6,17 + 1952: 6,18 + 1960: 6,19 + 1968: 6,20 + 1981: -9,24 + 1985: -9,28 + 1988: -8,12 + 1996: -9,12 + 1999: 0,1 + 2007: 1,1 + 2015: 2,1 + 2023: 3,0 + 2031: 3,1 + 2039: 4,0 + 2047: 4,1 + 2055: 8,12 + 2068: -9,3 + 2072: -9,12 + 2075: -8,12 + 2083: -4,0 + 2091: -4,1 + 2099: -3,0 + 2107: -3,1 + 2115: -2,1 + 2123: -1,1 + 2131: -12,-10 + 2133: -10,-16 + 2137: -4,-1 + 2145: 4,-1 + 2164: -9,-17 + 2167: -3,-20 + 2171: 6,16 + 2179: 6,17 + 2187: 6,18 + 2195: 6,19 + 2203: 6,20 + 2216: -9,24 + 2220: -9,28 + 2223: 0,1 + 2231: 1,1 + 2239: 2,1 + 2247: 3,0 + 2255: 3,1 + 2263: 4,0 + 2271: 4,1 + 2279: 8,12 + 2292: -9,3 + 2296: -9,12 + 2299: -8,12 + 2307: -4,0 + 2315: -4,1 + 2323: -3,0 + 2331: -3,1 + 2339: -2,1 + 2347: -1,1 + 2355: -12,-10 + 2357: -10,-16 + 2361: -4,-1 + 2369: 4,-1 + 2388: -9,-17 + 2391: -3,-20 + 2395: 6,16 + 2403: 6,17 + 2411: 6,18 + 2419: 6,19 + 2427: 6,20 + 2440: -9,24 + 2444: -9,28 + 2447: 0,1 + 2455: 1,1 + 2463: 2,1 + 2471: 3,0 + 2479: 3,1 + 2487: 4,0 + 2495: 4,1 + 2503: 8,12 + 2516: -9,3 + 2520: -9,12 + 2523: -8,12 + 2531: -4,0 + 2539: -4,1 + 2547: -3,0 + 2555: -3,1 + 2563: -2,1 + 2571: -1,1 + 2579: -12,-10 + 2581: -10,-16 + 2585: -4,-1 + 2593: 4,-1 + 2612: -9,-17 + 2615: -3,-20 + 2619: 6,16 + 2627: 6,17 + 2635: 6,18 + 2643: 6,19 + 2651: 6,20 + 2664: -9,24 + 2668: -9,28 + 2671: 0,1 + 2679: 1,1 + 2687: 2,1 + 2695: 3,0 + 2703: 3,1 + 2711: 4,0 + 2719: 4,1 + 2727: 8,12 + 2740: -9,3 + 2744: -9,12 + 2747: -8,12 + 2755: -4,0 + 2763: -4,1 + 2771: -3,0 + 2779: -3,1 + 2787: -2,1 + 2795: -1,1 + 2803: -12,-10 + 2805: -10,-16 + 2809: -4,-1 + 2817: 4,-1 + 2836: -9,-17 + 2839: -3,-20 + 2843: 6,16 + 2851: 6,17 + 2859: 6,18 + 2867: 6,19 + 2875: 6,20 + 2888: -9,24 + 2892: -9,28 + 2895: 0,1 + 2903: 1,1 + 2911: 2,1 + 2919: 3,0 + 2927: 3,1 + 2935: 4,0 + 2943: 4,1 + 2951: 8,12 + 2964: -9,3 + 2968: -9,12 + 2971: -8,12 + 2979: -4,0 + 2987: -4,1 + 2995: -3,0 + 3003: -3,1 + 3011: -2,1 + 3019: -1,1 + 3027: -12,-10 + 3029: -10,-16 + 3033: -4,-1 + 3041: 4,-1 + 3060: -9,-17 + 3063: -3,-20 + 3067: 6,16 + 3075: 6,17 + 3083: 6,18 + 3091: 6,19 + 3099: 6,20 + 3112: -9,24 + 3116: -9,28 + 3119: 0,1 + 3127: 1,1 + 3135: 2,1 + 3143: 3,0 + 3151: 3,1 + 3159: 4,0 + 3167: 4,1 + 3175: 8,12 + 3188: -9,3 + 3192: -9,12 + 3195: -8,12 + 3203: -4,0 + 3211: -4,1 + 3219: -3,0 + 3227: -3,1 + 3235: -2,1 + 3243: -1,1 + 3251: -12,-10 + 3253: -10,-16 + 3257: -4,-1 + 3265: 4,-1 + 3284: -9,-17 + 3287: -3,-20 + 3291: 6,16 + 3299: 6,17 + 3307: 6,18 + 3315: 6,19 + 3323: 6,20 + 3336: -9,24 + 3340: -9,28 + 3367: 0,1 + 3376: 1,1 + 3385: 2,1 + 3399: 3,0 + 3407: 3,1 + 3415: 4,0 + 3423: 4,1 + 3431: 8,12 + 3444: -9,3 + 3448: -9,12 + 3451: -8,12 + 3459: -4,0 + 3467: -4,1 + 3475: -3,0 + 3483: -3,1 + 3491: -2,1 + 3505: -1,1 + 3514: -12,-10 + 3516: -10,-16 + 3520: -4,-1 + 3528: 4,-1 + 3547: -9,-17 + 3550: -3,-20 + 3554: 6,16 + 3562: 6,17 + 3570: 6,18 + 3578: 6,19 + 3586: 6,20 + 3599: -9,24 + 3603: -9,28 + 3615: 0,1 + 3625: 1,1 + 3635: 2,1 + 3652: 3,0 + 3660: 3,1 + 3668: 4,0 + 3676: 4,1 + 3684: 8,12 + 3697: -9,3 + 3701: -9,12 + 3704: -8,12 + 3712: -4,0 + 3720: -4,1 + 3728: -3,0 + 3736: -3,1 + 3744: -2,1 + 3761: -1,1 + 3771: -12,-10 + 3773: -10,-16 + 3777: -4,-1 + 3785: 4,-1 + 3804: -9,-17 + 3807: -3,-20 + 3811: 6,16 + 3819: 6,17 + 3827: 6,18 + 3835: 6,19 + 3843: 6,20 + 3856: -9,24 + 3860: -9,28 + 3863: 0,1 + 3873: 1,1 + 3883: 2,1 + 3900: 3,0 + 3908: 3,1 + 3916: 4,0 + 3924: 4,1 + 3932: 8,12 + 3945: -9,3 + 3949: -9,12 + 3952: -8,12 + 3960: -4,0 + 3968: -4,1 + 3976: -3,0 + 3984: -3,1 + 3992: -2,1 + 4009: -1,1 + 4018: -10,-16 + 4022: -4,-1 + 4030: 4,-1 + 4046: -9,-17 + 4049: -3,-20 + 4053: 6,16 + 4061: 6,17 + 4069: 6,18 + 4077: 6,19 + 4085: 6,20 + 4098: -9,24 + 4102: -9,28 + 4105: -12,-10 + 4111: 0,1 + 4121: 1,1 + 4131: 2,1 + 4148: 3,0 + 4156: 3,1 + 4164: 4,0 + 4172: 4,1 + 4180: 8,12 + 4193: -9,3 + 4197: -9,12 + 4200: -8,12 + 4208: -4,0 + 4216: -4,1 + 4224: -3,0 + 4232: -3,1 + 4240: -2,1 + 4257: -1,1 + 4267: -12,-10 + 4269: -10,-16 + 4273: -4,-1 + 4281: 4,-1 + 4300: -9,-17 + 4303: -3,-20 + 4307: 6,16 + 4315: 6,17 + 4323: 6,18 + 4331: 6,19 + 4339: 6,20 + 4352: -9,24 + 4356: -9,28 + 4359: 0,1 + 4369: 1,1 + 4379: 2,1 + 4396: 3,0 + 4404: 3,1 + 4412: 4,0 + 4420: 4,1 + 4428: 8,12 + 4441: -9,3 + 4445: -9,12 + 4448: -8,12 + 4456: -4,0 + 4464: -4,1 + 4472: -3,0 + 4480: -3,1 + 4488: -2,1 + 4505: -1,1 + 4515: -12,-10 + 4517: -10,-16 + 4521: -4,-1 + 4529: 4,-1 + 4548: -9,-17 + 4551: -3,-20 + 4555: 6,16 + 4563: 6,17 + 4571: 6,18 + 4579: 6,19 + 4587: 6,20 + 4600: -9,24 + 4604: -9,28 + 4607: 0,1 + 4617: 1,1 + 4627: 2,1 + 4644: 3,0 + 4652: 3,1 + 4660: 4,0 + 4668: 4,1 + 4676: 8,12 + 4689: -9,3 + 4693: -9,12 + 4696: -8,12 + 4704: -4,0 + 4712: -4,1 + 4720: -3,0 + 4728: -3,1 + 4736: -2,1 + 4753: -1,1 + 4763: -12,-10 + 4765: -10,-16 + 4769: -4,-1 + 4777: 4,-1 + 4796: -9,-17 + 4799: -3,-20 + 4803: 6,16 + 4811: 6,17 + 4819: 6,18 + 4827: 6,19 + 4835: 6,20 + 4848: -9,24 + 4852: -9,28 + 4870: 0,1 + 4880: 1,1 + 4890: 2,1 + 4907: 3,0 + 4915: 3,1 + 4923: 4,0 + 4931: 4,1 + 4939: 8,12 + 4952: -9,3 + 4956: -9,12 + 4959: -8,12 + 4967: -4,0 + 4975: -4,1 + 4983: -3,0 + 4991: -3,1 + 4999: -2,1 + 5016: -1,1 + 5026: -12,-10 + 5028: -10,-16 + 5032: -4,-1 + 5040: 4,-1 + 5059: -9,-17 + 5062: -3,-20 + 5066: 6,16 + 5074: 6,17 + 5082: 6,18 + 5090: 6,19 + 5098: 6,20 + 5111: -9,24 + 5115: -9,28 + 5118: 0,1 + 5128: 1,1 + 5138: 2,1 + 5155: 3,0 + 5163: 3,1 + 5171: 4,0 + 5179: 4,1 + 5187: 8,12 + 5200: -9,3 + 5204: -9,12 + 5207: -8,12 + 5215: -4,0 + 5223: -4,1 + 5231: -3,0 + 5239: -3,1 + 5247: -2,1 + 5264: -1,1 + 5274: -12,-10 + 5276: -10,-16 + 5280: -4,-1 + 5288: 4,-1 + 5307: -9,-17 + 5310: -3,-20 + 5314: 6,16 + 5322: 6,17 + 5330: 6,18 + 5338: 6,19 + 5346: 6,20 + 5359: -9,24 + 5363: -9,28 + 5388: 0,1 + 5398: 1,1 + 5408: 2,1 + 5425: 3,0 + 5433: 3,1 + 5441: 4,0 + 5449: 4,1 + 5457: 8,12 + 5470: -9,3 + 5474: -9,12 + 5477: -8,12 + 5485: -4,0 + 5493: -4,1 + 5501: -3,0 + 5509: -3,1 + 5517: -2,1 + 5534: -1,1 + 5544: -12,-10 + 5546: -10,-16 + 5550: -4,-1 + 5558: 4,-1 + 5577: -9,-17 + 5580: -3,-20 + 5584: 6,16 + 5592: 6,17 + 5600: 6,18 + 5608: 6,19 + 5616: 6,20 + 5629: -9,24 + 5633: -9,28 + 5636: 0,1 + 5646: 1,1 + 5656: 2,1 + 5673: 3,0 + 5681: 3,1 + 5689: 4,0 + 5697: 4,1 + 5705: 8,12 + 5718: -9,3 + 5722: -9,12 + 5725: -8,12 + 5733: -4,0 + 5741: -4,1 + 5749: -3,0 + 5757: -3,1 + 5765: -2,1 + 5782: -1,1 + 5792: -12,-10 + 5794: -10,-16 + 5798: -4,-1 + 5806: 4,-1 + 5825: -9,-17 + 5828: -3,-20 + 5832: 6,16 + 5840: 6,17 + 5848: 6,18 + 5856: 6,19 + 5864: 6,20 + 5877: -9,24 + 5881: -9,28 + 5892: 0,1 + 5902: 1,1 + 5912: 2,1 + 5929: 3,0 + 5937: 3,1 + 5945: 4,0 + 5953: 4,1 + 5961: 8,12 + 5974: -9,3 + 5978: -9,12 + 5981: -8,12 + 5989: -4,0 + 5997: -4,1 + 6005: -3,0 + 6013: -3,1 + 6021: -2,1 + 6038: -1,1 + 6048: -12,-10 + 6050: -10,-16 + 6054: -4,-1 + 6062: 4,-1 + 6081: -9,-17 + 6084: -3,-20 + 6088: 6,16 + 6096: 6,17 + 6104: 6,18 + 6112: 6,19 + 6120: 6,20 + 6133: -9,24 + 6137: -9,28 + 6140: 0,1 + 6150: 1,1 + 6160: 2,1 + 6177: 3,0 + 6185: 3,1 + 6193: 4,0 + 6201: 4,1 + 6209: 8,12 + 6222: -9,3 + 6226: -9,12 + 6229: -8,12 + 6237: -4,0 + 6245: -4,1 + 6253: -3,0 + 6261: -3,1 + 6269: -2,1 + 6286: -1,1 + 6296: -12,-10 + 6298: -10,-16 + 6302: -4,-1 + 6310: 4,-1 + 6329: -9,-17 + 6332: -3,-20 + 6336: 6,16 + 6344: 6,17 + 6352: 6,18 + 6360: 6,19 + 6368: 6,20 + 6381: -9,24 + 6385: -9,28 + 6388: 0,1 + 6398: 1,1 + 6408: 2,1 + 6425: 3,0 + 6433: 3,1 + 6441: 4,0 + 6449: 4,1 + 6462: -9,3 + 6466: -9,12 + 6469: -8,12 + 6477: -4,0 + 6485: -4,1 + 6493: -3,0 + 6501: -3,1 + 6509: -2,1 + 6526: -1,1 + 6536: -12,-10 + 6538: -10,-16 + 6542: -4,-1 + 6550: 4,-1 + 6569: -9,-17 + 6572: -3,-20 + 6576: 6,16 + 6584: 6,17 + 6592: 6,18 + 6600: 6,19 + 6608: 6,20 + 6621: -9,24 + 6625: -9,28 + 6630: 8,12 + 6658: 0,1 + 6668: 1,1 + 6678: 2,1 + 6695: 3,0 + 6703: 3,1 + 6711: 4,0 + 6719: 4,1 + 6727: 8,12 + 6740: -9,3 + 6744: -9,12 + 6747: -8,12 + 6755: -4,0 + 6763: -4,1 + 6771: -3,0 + 6779: -3,1 + 6787: -2,1 + 6804: -1,1 + 6814: -12,-10 + 6816: -10,-16 + 6820: -4,-1 + 6828: 4,-1 + 6847: -9,-17 + 6850: -3,-20 + 6854: 6,16 + 6862: 6,17 + 6870: 6,18 + 6878: 6,19 + 6886: 6,20 + 6899: -9,24 + 6903: -9,28 - node: id: LatticeEdgeN decals: - 930: 0,1 - 938: 1,1 - 946: 2,1 - 954: 3,0 - 962: 3,1 - 970: 4,0 - 978: 4,1 - 986: 8,12 - 991: 9,4 - 998: -9,3 - 1006: -8,12 - 1014: -4,0 - 1022: -4,1 - 1030: -3,0 - 1038: -3,1 - 1046: -2,1 - 1054: -1,1 - 1063: -10,-16 - 1068: -4,-1 - 1076: 4,-1 - 1081: 10,-16 - 1087: 3,-20 - 1090: 9,-17 - 1094: -9,-17 - 1097: -3,-20 - 1102: 6,16 - 1110: 6,17 - 1118: 6,18 - 1126: 6,19 - 1134: 6,20 - 1139: 9,24 - 1146: -9,24 - 1154: 0,1 - 1162: 1,1 - 1170: 2,1 - 1178: 3,0 - 1186: 3,1 - 1194: 4,0 - 1202: 4,1 - 1210: 8,12 - 1215: 9,4 - 1222: -9,3 - 1230: -8,12 - 1238: -4,0 - 1246: -4,1 - 1254: -3,0 - 1262: -3,1 - 1270: -2,1 - 1278: -1,1 - 1287: -10,-16 - 1292: -4,-1 - 1300: 4,-1 - 1305: 10,-16 - 1311: 3,-20 - 1314: 9,-17 - 1318: -9,-17 - 1321: -3,-20 - 1326: 6,16 - 1334: 6,17 - 1342: 6,18 - 1350: 6,19 - 1358: 6,20 - 1363: 9,24 - 1370: -9,24 - 1378: 0,1 - 1386: 1,1 - 1394: 2,1 - 1402: 3,0 - 1410: 3,1 - 1418: 4,0 - 1426: 4,1 - 1434: 8,12 - 1439: 9,4 - 1446: -9,3 - 1454: -8,12 - 1462: -4,0 - 1470: -4,1 - 1478: -3,0 - 1486: -3,1 - 1494: -2,1 - 1502: -1,1 - 1511: -10,-16 - 1516: -4,-1 - 1524: 4,-1 - 1529: 10,-16 - 1535: 3,-20 - 1538: 9,-17 - 1542: -9,-17 - 1545: -3,-20 - 1550: 6,16 - 1558: 6,17 - 1566: 6,18 - 1574: 6,19 - 1582: 6,20 - 1587: 9,24 - 1594: -9,24 - 1602: 0,1 - 1610: 1,1 - 1618: 2,1 - 1626: 3,0 - 1634: 3,1 - 1642: 4,0 - 1650: 4,1 - 1658: 8,12 - 1663: 9,4 - 1670: -9,3 - 1678: -8,12 - 1686: -4,0 - 1694: -4,1 - 1702: -3,0 - 1710: -3,1 - 1718: -2,1 - 1726: -1,1 - 1735: -10,-16 - 1740: -4,-1 - 1748: 4,-1 - 1753: 10,-16 - 1759: 3,-20 - 1762: 9,-17 - 1766: -9,-17 - 1769: -3,-20 - 1774: 6,16 - 1782: 6,17 - 1790: 6,18 - 1798: 6,19 - 1806: 6,20 - 1811: 9,24 - 1818: -9,24 - 1826: 0,1 - 1834: 1,1 - 1842: 2,1 - 1850: 3,0 - 1858: 3,1 - 1866: 4,0 - 1874: 4,1 - 1882: 8,12 - 1887: 9,4 - 1894: -9,3 - 1899: -4,0 - 1907: -4,1 - 1915: -3,0 - 1923: -3,1 - 1931: -2,1 - 1939: -1,1 - 1948: -10,-16 - 1953: -4,-1 - 1961: 4,-1 - 1966: 10,-16 - 1972: 3,-20 - 1975: 9,-17 - 1979: -9,-17 - 1982: -3,-20 - 1987: 6,16 - 1995: 6,17 - 2003: 6,18 - 2011: 6,19 - 2019: 6,20 - 2024: 9,24 - 2031: -9,24 - 2039: -8,12 - 2050: 0,1 - 2058: 1,1 - 2066: 2,1 - 2074: 3,0 - 2082: 3,1 - 2090: 4,0 - 2098: 4,1 - 2106: 8,12 - 2111: 9,4 - 2118: -9,3 - 2126: -8,12 - 2134: -4,0 - 2142: -4,1 - 2150: -3,0 - 2158: -3,1 - 2166: -2,1 - 2174: -1,1 - 2183: -10,-16 - 2188: -4,-1 - 2196: 4,-1 - 2201: 10,-16 - 2207: 3,-20 - 2210: 9,-17 - 2214: -9,-17 - 2217: -3,-20 - 2222: 6,16 - 2230: 6,17 - 2238: 6,18 - 2246: 6,19 - 2254: 6,20 - 2259: 9,24 - 2266: -9,24 - 2274: 0,1 - 2282: 1,1 - 2290: 2,1 - 2298: 3,0 - 2306: 3,1 - 2314: 4,0 - 2322: 4,1 - 2330: 8,12 - 2335: 9,4 - 2342: -9,3 - 2350: -8,12 - 2358: -4,0 - 2366: -4,1 - 2374: -3,0 - 2382: -3,1 - 2390: -2,1 - 2398: -1,1 - 2407: -10,-16 - 2412: -4,-1 - 2420: 4,-1 - 2425: 10,-16 - 2431: 3,-20 - 2434: 9,-17 - 2438: -9,-17 - 2441: -3,-20 - 2446: 6,16 - 2454: 6,17 - 2462: 6,18 - 2470: 6,19 - 2478: 6,20 - 2483: 9,24 - 2490: -9,24 - 2498: 0,1 - 2506: 1,1 - 2514: 2,1 - 2522: 3,0 - 2530: 3,1 - 2538: 4,0 - 2546: 4,1 - 2554: 8,12 - 2559: 9,4 - 2566: -9,3 - 2574: -8,12 - 2582: -4,0 - 2590: -4,1 - 2598: -3,0 - 2606: -3,1 - 2614: -2,1 - 2622: -1,1 - 2631: -10,-16 - 2636: -4,-1 - 2644: 4,-1 - 2649: 10,-16 - 2655: 3,-20 - 2658: 9,-17 - 2662: -9,-17 - 2665: -3,-20 - 2670: 6,16 - 2678: 6,17 - 2686: 6,18 - 2694: 6,19 - 2702: 6,20 - 2707: 9,24 - 2714: -9,24 - 2722: 0,1 - 2730: 1,1 - 2738: 2,1 - 2746: 3,0 - 2754: 3,1 - 2762: 4,0 - 2770: 4,1 - 2778: 8,12 - 2783: 9,4 - 2790: -9,3 - 2798: -8,12 - 2806: -4,0 - 2814: -4,1 - 2822: -3,0 - 2830: -3,1 - 2838: -2,1 - 2846: -1,1 - 2855: -10,-16 - 2860: -4,-1 - 2868: 4,-1 - 2873: 10,-16 - 2879: 3,-20 - 2882: 9,-17 - 2886: -9,-17 - 2889: -3,-20 - 2894: 6,16 - 2902: 6,17 - 2910: 6,18 - 2918: 6,19 - 2926: 6,20 - 2931: 9,24 - 2938: -9,24 - 2946: 0,1 - 2954: 1,1 - 2962: 2,1 - 2970: 3,0 - 2978: 3,1 - 2986: 4,0 - 2994: 4,1 - 3002: 8,12 - 3007: 9,4 - 3014: -9,3 - 3022: -8,12 - 3030: -4,0 - 3038: -4,1 - 3046: -3,0 - 3054: -3,1 - 3062: -2,1 - 3070: -1,1 - 3079: -10,-16 - 3084: -4,-1 - 3092: 4,-1 - 3097: 10,-16 - 3103: 3,-20 - 3106: 9,-17 - 3110: -9,-17 - 3113: -3,-20 - 3118: 6,16 - 3126: 6,17 - 3134: 6,18 - 3142: 6,19 - 3150: 6,20 - 3155: 9,24 - 3162: -9,24 - 3170: 0,1 - 3178: 1,1 - 3186: 2,1 - 3194: 3,0 - 3202: 3,1 - 3210: 4,0 - 3218: 4,1 - 3226: 8,12 - 3231: 9,4 - 3238: -9,3 - 3246: -8,12 - 3254: -4,0 - 3262: -4,1 - 3270: -3,0 - 3278: -3,1 - 3286: -2,1 - 3294: -1,1 - 3303: -10,-16 - 3308: -4,-1 - 3316: 4,-1 - 3321: 10,-16 - 3327: 3,-20 - 3330: 9,-17 - 3334: -9,-17 - 3337: -3,-20 - 3342: 6,16 - 3350: 6,17 - 3358: 6,18 - 3366: 6,19 - 3374: 6,20 - 3379: 9,24 - 3386: -9,24 - 3418: 0,1 - 3427: 1,1 - 3436: 2,1 - 3450: 3,0 - 3458: 3,1 - 3466: 4,0 - 3474: 4,1 - 3482: 8,12 - 3487: 9,4 - 3494: -9,3 - 3502: -8,12 - 3510: -4,0 - 3518: -4,1 - 3526: -3,0 - 3534: -3,1 - 3542: -2,1 - 3556: -1,1 - 3566: -10,-16 - 3571: -4,-1 - 3579: 4,-1 - 3584: 10,-16 - 3590: 3,-20 - 3593: 9,-17 - 3597: -9,-17 - 3600: -3,-20 - 3605: 6,16 - 3613: 6,17 - 3621: 6,18 - 3629: 6,19 - 3637: 6,20 - 3642: 9,24 - 3649: -9,24 - 3666: 0,1 - 3676: 1,1 - 3686: 2,1 - 3703: 3,0 - 3711: 3,1 - 3719: 4,0 - 3727: 4,1 - 3735: 8,12 - 3740: 9,4 - 3747: -9,3 - 3755: -8,12 - 3763: -4,0 - 3771: -4,1 - 3779: -3,0 - 3787: -3,1 - 3795: -2,1 - 3812: -1,1 - 3823: -10,-16 - 3828: -4,-1 - 3836: 4,-1 - 3841: 10,-16 - 3847: 3,-20 - 3850: 9,-17 - 3854: -9,-17 - 3857: -3,-20 - 3862: 6,16 - 3870: 6,17 - 3878: 6,18 - 3886: 6,19 - 3894: 6,20 - 3899: 9,24 - 3906: -9,24 - 3914: 0,1 - 3924: 1,1 - 3934: 2,1 - 3951: 3,0 - 3959: 3,1 - 3967: 4,0 - 3975: 4,1 - 3983: 8,12 - 3988: 9,4 - 3995: -9,3 - 4003: -8,12 - 4011: -4,0 - 4019: -4,1 - 4027: -3,0 - 4035: -3,1 - 4043: -2,1 - 4060: -1,1 - 4068: -10,-16 - 4073: -4,-1 - 4081: 4,-1 - 4086: 10,-16 - 4089: 3,-20 - 4092: 9,-17 - 4096: -9,-17 - 4099: -3,-20 - 4104: 6,16 - 4112: 6,17 - 4120: 6,18 - 4128: 6,19 - 4136: 6,20 - 4141: 9,24 - 4148: -9,24 - 4162: 0,1 - 4172: 1,1 - 4182: 2,1 - 4199: 3,0 - 4207: 3,1 - 4215: 4,0 - 4223: 4,1 - 4231: 8,12 - 4236: 9,4 - 4243: -9,3 - 4251: -8,12 - 4259: -4,0 - 4267: -4,1 - 4275: -3,0 - 4283: -3,1 - 4291: -2,1 - 4308: -1,1 - 4319: -10,-16 - 4324: -4,-1 - 4332: 4,-1 - 4337: 10,-16 - 4343: 3,-20 - 4346: 9,-17 - 4350: -9,-17 - 4353: -3,-20 - 4358: 6,16 - 4366: 6,17 - 4374: 6,18 - 4382: 6,19 - 4390: 6,20 - 4395: 9,24 - 4402: -9,24 - 4410: 0,1 - 4420: 1,1 - 4430: 2,1 - 4447: 3,0 - 4455: 3,1 - 4463: 4,0 - 4471: 4,1 - 4479: 8,12 - 4484: 9,4 - 4491: -9,3 - 4499: -8,12 - 4507: -4,0 - 4515: -4,1 - 4523: -3,0 - 4531: -3,1 - 4539: -2,1 - 4556: -1,1 - 4567: -10,-16 - 4572: -4,-1 - 4580: 4,-1 - 4585: 10,-16 - 4591: 3,-20 - 4594: 9,-17 - 4598: -9,-17 - 4601: -3,-20 - 4606: 6,16 - 4614: 6,17 - 4622: 6,18 - 4630: 6,19 - 4638: 6,20 - 4643: 9,24 - 4650: -9,24 - 4658: 0,1 - 4668: 1,1 - 4678: 2,1 - 4695: 3,0 - 4703: 3,1 - 4711: 4,0 - 4719: 4,1 - 4727: 8,12 - 4732: 9,4 - 4739: -9,3 - 4747: -8,12 - 4755: -4,0 - 4763: -4,1 - 4771: -3,0 - 4779: -3,1 - 4787: -2,1 - 4804: -1,1 - 4815: -10,-16 - 4820: -4,-1 - 4828: 4,-1 - 4833: 10,-16 - 4839: 3,-20 - 4842: 9,-17 - 4846: -9,-17 - 4849: -3,-20 - 4854: 6,16 - 4862: 6,17 - 4870: 6,18 - 4878: 6,19 - 4886: 6,20 - 4891: 9,24 - 4898: -9,24 - 4921: 0,1 - 4931: 1,1 - 4941: 2,1 - 4958: 3,0 - 4966: 3,1 - 4974: 4,0 - 4982: 4,1 - 4990: 8,12 - 4995: 9,4 - 5002: -9,3 - 5010: -8,12 - 5018: -4,0 - 5026: -4,1 - 5034: -3,0 - 5042: -3,1 - 5050: -2,1 - 5067: -1,1 - 5078: -10,-16 - 5083: -4,-1 - 5091: 4,-1 - 5096: 10,-16 - 5102: 3,-20 - 5105: 9,-17 - 5109: -9,-17 - 5112: -3,-20 - 5117: 6,16 - 5125: 6,17 - 5133: 6,18 - 5141: 6,19 - 5149: 6,20 - 5154: 9,24 - 5161: -9,24 - 5169: 0,1 - 5179: 1,1 - 5189: 2,1 - 5206: 3,0 - 5214: 3,1 - 5222: 4,0 - 5230: 4,1 - 5238: 8,12 - 5243: 9,4 - 5250: -9,3 - 5258: -8,12 - 5266: -4,0 - 5274: -4,1 - 5282: -3,0 - 5290: -3,1 - 5298: -2,1 - 5315: -1,1 - 5326: -10,-16 - 5331: -4,-1 - 5339: 4,-1 - 5344: 10,-16 - 5350: 3,-20 - 5353: 9,-17 - 5357: -9,-17 - 5360: -3,-20 - 5365: 6,16 - 5373: 6,17 - 5381: 6,18 - 5389: 6,19 - 5397: 6,20 - 5402: 9,24 - 5409: -9,24 - 5439: 0,1 - 5449: 1,1 - 5459: 2,1 - 5476: 3,0 - 5484: 3,1 - 5492: 4,0 - 5500: 4,1 - 5508: 8,12 - 5513: 9,4 - 5520: -9,3 - 5528: -8,12 - 5536: -4,0 - 5544: -4,1 - 5552: -3,0 - 5560: -3,1 - 5568: -2,1 - 5585: -1,1 - 5596: -10,-16 - 5601: -4,-1 - 5609: 4,-1 - 5614: 10,-16 - 5620: 3,-20 - 5623: 9,-17 - 5627: -9,-17 - 5630: -3,-20 - 5635: 6,16 - 5643: 6,17 - 5651: 6,18 - 5659: 6,19 - 5667: 6,20 - 5672: 9,24 - 5679: -9,24 - 5687: 0,1 - 5697: 1,1 - 5707: 2,1 - 5724: 3,0 - 5732: 3,1 - 5740: 4,0 - 5748: 4,1 - 5756: 8,12 - 5761: 9,4 - 5768: -9,3 - 5776: -8,12 - 5784: -4,0 - 5792: -4,1 - 5800: -3,0 - 5808: -3,1 - 5816: -2,1 - 5833: -1,1 - 5844: -10,-16 - 5849: -4,-1 - 5857: 4,-1 - 5862: 10,-16 - 5868: 3,-20 - 5871: 9,-17 - 5875: -9,-17 - 5878: -3,-20 - 5883: 6,16 - 5891: 6,17 - 5899: 6,18 - 5907: 6,19 - 5915: 6,20 - 5920: 9,24 - 5927: -9,24 + 881: 0,1 + 889: 1,1 + 897: 2,1 + 905: 3,0 + 913: 3,1 + 921: 4,0 + 929: 4,1 + 937: 8,12 + 942: 9,4 + 949: -9,3 + 957: -8,12 + 965: -4,0 + 973: -4,1 + 981: -3,0 + 989: -3,1 + 997: -2,1 + 1005: -1,1 + 1014: -10,-16 + 1019: -4,-1 + 1027: 4,-1 + 1032: 10,-16 + 1038: 3,-20 + 1041: 9,-17 + 1045: -9,-17 + 1048: -3,-20 + 1053: 6,16 + 1061: 6,17 + 1069: 6,18 + 1077: 6,19 + 1085: 6,20 + 1090: 9,24 + 1097: -9,24 + 1105: 0,1 + 1113: 1,1 + 1121: 2,1 + 1129: 3,0 + 1137: 3,1 + 1145: 4,0 + 1153: 4,1 + 1161: 8,12 + 1166: 9,4 + 1173: -9,3 + 1181: -8,12 + 1189: -4,0 + 1197: -4,1 + 1205: -3,0 + 1213: -3,1 + 1221: -2,1 + 1229: -1,1 + 1238: -10,-16 + 1243: -4,-1 + 1251: 4,-1 + 1256: 10,-16 + 1262: 3,-20 + 1265: 9,-17 + 1269: -9,-17 + 1272: -3,-20 + 1277: 6,16 + 1285: 6,17 + 1293: 6,18 + 1301: 6,19 + 1309: 6,20 + 1314: 9,24 + 1321: -9,24 + 1329: 0,1 + 1337: 1,1 + 1345: 2,1 + 1353: 3,0 + 1361: 3,1 + 1369: 4,0 + 1377: 4,1 + 1385: 8,12 + 1390: 9,4 + 1397: -9,3 + 1405: -8,12 + 1413: -4,0 + 1421: -4,1 + 1429: -3,0 + 1437: -3,1 + 1445: -2,1 + 1453: -1,1 + 1462: -10,-16 + 1467: -4,-1 + 1475: 4,-1 + 1480: 10,-16 + 1486: 3,-20 + 1489: 9,-17 + 1493: -9,-17 + 1496: -3,-20 + 1501: 6,16 + 1509: 6,17 + 1517: 6,18 + 1525: 6,19 + 1533: 6,20 + 1538: 9,24 + 1545: -9,24 + 1553: 0,1 + 1561: 1,1 + 1569: 2,1 + 1577: 3,0 + 1585: 3,1 + 1593: 4,0 + 1601: 4,1 + 1609: 8,12 + 1614: 9,4 + 1621: -9,3 + 1629: -8,12 + 1637: -4,0 + 1645: -4,1 + 1653: -3,0 + 1661: -3,1 + 1669: -2,1 + 1677: -1,1 + 1686: -10,-16 + 1691: -4,-1 + 1699: 4,-1 + 1704: 10,-16 + 1710: 3,-20 + 1713: 9,-17 + 1717: -9,-17 + 1720: -3,-20 + 1725: 6,16 + 1733: 6,17 + 1741: 6,18 + 1749: 6,19 + 1757: 6,20 + 1762: 9,24 + 1769: -9,24 + 1777: 0,1 + 1785: 1,1 + 1793: 2,1 + 1801: 3,0 + 1809: 3,1 + 1817: 4,0 + 1825: 4,1 + 1833: 8,12 + 1838: 9,4 + 1845: -9,3 + 1850: -4,0 + 1858: -4,1 + 1866: -3,0 + 1874: -3,1 + 1882: -2,1 + 1890: -1,1 + 1899: -10,-16 + 1904: -4,-1 + 1912: 4,-1 + 1917: 10,-16 + 1923: 3,-20 + 1926: 9,-17 + 1930: -9,-17 + 1933: -3,-20 + 1938: 6,16 + 1946: 6,17 + 1954: 6,18 + 1962: 6,19 + 1970: 6,20 + 1975: 9,24 + 1982: -9,24 + 1990: -8,12 + 2001: 0,1 + 2009: 1,1 + 2017: 2,1 + 2025: 3,0 + 2033: 3,1 + 2041: 4,0 + 2049: 4,1 + 2057: 8,12 + 2062: 9,4 + 2069: -9,3 + 2077: -8,12 + 2085: -4,0 + 2093: -4,1 + 2101: -3,0 + 2109: -3,1 + 2117: -2,1 + 2125: -1,1 + 2134: -10,-16 + 2139: -4,-1 + 2147: 4,-1 + 2152: 10,-16 + 2158: 3,-20 + 2161: 9,-17 + 2165: -9,-17 + 2168: -3,-20 + 2173: 6,16 + 2181: 6,17 + 2189: 6,18 + 2197: 6,19 + 2205: 6,20 + 2210: 9,24 + 2217: -9,24 + 2225: 0,1 + 2233: 1,1 + 2241: 2,1 + 2249: 3,0 + 2257: 3,1 + 2265: 4,0 + 2273: 4,1 + 2281: 8,12 + 2286: 9,4 + 2293: -9,3 + 2301: -8,12 + 2309: -4,0 + 2317: -4,1 + 2325: -3,0 + 2333: -3,1 + 2341: -2,1 + 2349: -1,1 + 2358: -10,-16 + 2363: -4,-1 + 2371: 4,-1 + 2376: 10,-16 + 2382: 3,-20 + 2385: 9,-17 + 2389: -9,-17 + 2392: -3,-20 + 2397: 6,16 + 2405: 6,17 + 2413: 6,18 + 2421: 6,19 + 2429: 6,20 + 2434: 9,24 + 2441: -9,24 + 2449: 0,1 + 2457: 1,1 + 2465: 2,1 + 2473: 3,0 + 2481: 3,1 + 2489: 4,0 + 2497: 4,1 + 2505: 8,12 + 2510: 9,4 + 2517: -9,3 + 2525: -8,12 + 2533: -4,0 + 2541: -4,1 + 2549: -3,0 + 2557: -3,1 + 2565: -2,1 + 2573: -1,1 + 2582: -10,-16 + 2587: -4,-1 + 2595: 4,-1 + 2600: 10,-16 + 2606: 3,-20 + 2609: 9,-17 + 2613: -9,-17 + 2616: -3,-20 + 2621: 6,16 + 2629: 6,17 + 2637: 6,18 + 2645: 6,19 + 2653: 6,20 + 2658: 9,24 + 2665: -9,24 + 2673: 0,1 + 2681: 1,1 + 2689: 2,1 + 2697: 3,0 + 2705: 3,1 + 2713: 4,0 + 2721: 4,1 + 2729: 8,12 + 2734: 9,4 + 2741: -9,3 + 2749: -8,12 + 2757: -4,0 + 2765: -4,1 + 2773: -3,0 + 2781: -3,1 + 2789: -2,1 + 2797: -1,1 + 2806: -10,-16 + 2811: -4,-1 + 2819: 4,-1 + 2824: 10,-16 + 2830: 3,-20 + 2833: 9,-17 + 2837: -9,-17 + 2840: -3,-20 + 2845: 6,16 + 2853: 6,17 + 2861: 6,18 + 2869: 6,19 + 2877: 6,20 + 2882: 9,24 + 2889: -9,24 + 2897: 0,1 + 2905: 1,1 + 2913: 2,1 + 2921: 3,0 + 2929: 3,1 + 2937: 4,0 + 2945: 4,1 + 2953: 8,12 + 2958: 9,4 + 2965: -9,3 + 2973: -8,12 + 2981: -4,0 + 2989: -4,1 + 2997: -3,0 + 3005: -3,1 + 3013: -2,1 + 3021: -1,1 + 3030: -10,-16 + 3035: -4,-1 + 3043: 4,-1 + 3048: 10,-16 + 3054: 3,-20 + 3057: 9,-17 + 3061: -9,-17 + 3064: -3,-20 + 3069: 6,16 + 3077: 6,17 + 3085: 6,18 + 3093: 6,19 + 3101: 6,20 + 3106: 9,24 + 3113: -9,24 + 3121: 0,1 + 3129: 1,1 + 3137: 2,1 + 3145: 3,0 + 3153: 3,1 + 3161: 4,0 + 3169: 4,1 + 3177: 8,12 + 3182: 9,4 + 3189: -9,3 + 3197: -8,12 + 3205: -4,0 + 3213: -4,1 + 3221: -3,0 + 3229: -3,1 + 3237: -2,1 + 3245: -1,1 + 3254: -10,-16 + 3259: -4,-1 + 3267: 4,-1 + 3272: 10,-16 + 3278: 3,-20 + 3281: 9,-17 + 3285: -9,-17 + 3288: -3,-20 + 3293: 6,16 + 3301: 6,17 + 3309: 6,18 + 3317: 6,19 + 3325: 6,20 + 3330: 9,24 + 3337: -9,24 + 3369: 0,1 + 3378: 1,1 + 3387: 2,1 + 3401: 3,0 + 3409: 3,1 + 3417: 4,0 + 3425: 4,1 + 3433: 8,12 + 3438: 9,4 + 3445: -9,3 + 3453: -8,12 + 3461: -4,0 + 3469: -4,1 + 3477: -3,0 + 3485: -3,1 + 3493: -2,1 + 3507: -1,1 + 3517: -10,-16 + 3522: -4,-1 + 3530: 4,-1 + 3535: 10,-16 + 3541: 3,-20 + 3544: 9,-17 + 3548: -9,-17 + 3551: -3,-20 + 3556: 6,16 + 3564: 6,17 + 3572: 6,18 + 3580: 6,19 + 3588: 6,20 + 3593: 9,24 + 3600: -9,24 + 3617: 0,1 + 3627: 1,1 + 3637: 2,1 + 3654: 3,0 + 3662: 3,1 + 3670: 4,0 + 3678: 4,1 + 3686: 8,12 + 3691: 9,4 + 3698: -9,3 + 3706: -8,12 + 3714: -4,0 + 3722: -4,1 + 3730: -3,0 + 3738: -3,1 + 3746: -2,1 + 3763: -1,1 + 3774: -10,-16 + 3779: -4,-1 + 3787: 4,-1 + 3792: 10,-16 + 3798: 3,-20 + 3801: 9,-17 + 3805: -9,-17 + 3808: -3,-20 + 3813: 6,16 + 3821: 6,17 + 3829: 6,18 + 3837: 6,19 + 3845: 6,20 + 3850: 9,24 + 3857: -9,24 + 3865: 0,1 + 3875: 1,1 + 3885: 2,1 + 3902: 3,0 + 3910: 3,1 + 3918: 4,0 + 3926: 4,1 + 3934: 8,12 + 3939: 9,4 + 3946: -9,3 + 3954: -8,12 + 3962: -4,0 + 3970: -4,1 + 3978: -3,0 + 3986: -3,1 + 3994: -2,1 + 4011: -1,1 + 4019: -10,-16 + 4024: -4,-1 + 4032: 4,-1 + 4037: 10,-16 + 4040: 3,-20 + 4043: 9,-17 + 4047: -9,-17 + 4050: -3,-20 + 4055: 6,16 + 4063: 6,17 + 4071: 6,18 + 4079: 6,19 + 4087: 6,20 + 4092: 9,24 + 4099: -9,24 + 4113: 0,1 + 4123: 1,1 + 4133: 2,1 + 4150: 3,0 + 4158: 3,1 + 4166: 4,0 + 4174: 4,1 + 4182: 8,12 + 4187: 9,4 + 4194: -9,3 + 4202: -8,12 + 4210: -4,0 + 4218: -4,1 + 4226: -3,0 + 4234: -3,1 + 4242: -2,1 + 4259: -1,1 + 4270: -10,-16 + 4275: -4,-1 + 4283: 4,-1 + 4288: 10,-16 + 4294: 3,-20 + 4297: 9,-17 + 4301: -9,-17 + 4304: -3,-20 + 4309: 6,16 + 4317: 6,17 + 4325: 6,18 + 4333: 6,19 + 4341: 6,20 + 4346: 9,24 + 4353: -9,24 + 4361: 0,1 + 4371: 1,1 + 4381: 2,1 + 4398: 3,0 + 4406: 3,1 + 4414: 4,0 + 4422: 4,1 + 4430: 8,12 + 4435: 9,4 + 4442: -9,3 + 4450: -8,12 + 4458: -4,0 + 4466: -4,1 + 4474: -3,0 + 4482: -3,1 + 4490: -2,1 + 4507: -1,1 + 4518: -10,-16 + 4523: -4,-1 + 4531: 4,-1 + 4536: 10,-16 + 4542: 3,-20 + 4545: 9,-17 + 4549: -9,-17 + 4552: -3,-20 + 4557: 6,16 + 4565: 6,17 + 4573: 6,18 + 4581: 6,19 + 4589: 6,20 + 4594: 9,24 + 4601: -9,24 + 4609: 0,1 + 4619: 1,1 + 4629: 2,1 + 4646: 3,0 + 4654: 3,1 + 4662: 4,0 + 4670: 4,1 + 4678: 8,12 + 4683: 9,4 + 4690: -9,3 + 4698: -8,12 + 4706: -4,0 + 4714: -4,1 + 4722: -3,0 + 4730: -3,1 + 4738: -2,1 + 4755: -1,1 + 4766: -10,-16 + 4771: -4,-1 + 4779: 4,-1 + 4784: 10,-16 + 4790: 3,-20 + 4793: 9,-17 + 4797: -9,-17 + 4800: -3,-20 + 4805: 6,16 + 4813: 6,17 + 4821: 6,18 + 4829: 6,19 + 4837: 6,20 + 4842: 9,24 + 4849: -9,24 + 4872: 0,1 + 4882: 1,1 + 4892: 2,1 + 4909: 3,0 + 4917: 3,1 + 4925: 4,0 + 4933: 4,1 + 4941: 8,12 + 4946: 9,4 + 4953: -9,3 + 4961: -8,12 + 4969: -4,0 + 4977: -4,1 + 4985: -3,0 + 4993: -3,1 + 5001: -2,1 + 5018: -1,1 + 5029: -10,-16 + 5034: -4,-1 + 5042: 4,-1 + 5047: 10,-16 + 5053: 3,-20 + 5056: 9,-17 + 5060: -9,-17 + 5063: -3,-20 + 5068: 6,16 + 5076: 6,17 + 5084: 6,18 + 5092: 6,19 + 5100: 6,20 + 5105: 9,24 + 5112: -9,24 + 5120: 0,1 + 5130: 1,1 + 5140: 2,1 + 5157: 3,0 + 5165: 3,1 + 5173: 4,0 + 5181: 4,1 + 5189: 8,12 + 5194: 9,4 + 5201: -9,3 + 5209: -8,12 + 5217: -4,0 + 5225: -4,1 + 5233: -3,0 + 5241: -3,1 + 5249: -2,1 + 5266: -1,1 + 5277: -10,-16 + 5282: -4,-1 + 5290: 4,-1 + 5295: 10,-16 + 5301: 3,-20 + 5304: 9,-17 + 5308: -9,-17 + 5311: -3,-20 + 5316: 6,16 + 5324: 6,17 + 5332: 6,18 + 5340: 6,19 + 5348: 6,20 + 5353: 9,24 + 5360: -9,24 + 5390: 0,1 + 5400: 1,1 + 5410: 2,1 + 5427: 3,0 + 5435: 3,1 + 5443: 4,0 + 5451: 4,1 + 5459: 8,12 + 5464: 9,4 + 5471: -9,3 + 5479: -8,12 + 5487: -4,0 + 5495: -4,1 + 5503: -3,0 + 5511: -3,1 + 5519: -2,1 + 5536: -1,1 + 5547: -10,-16 + 5552: -4,-1 + 5560: 4,-1 + 5565: 10,-16 + 5571: 3,-20 + 5574: 9,-17 + 5578: -9,-17 + 5581: -3,-20 + 5586: 6,16 + 5594: 6,17 + 5602: 6,18 + 5610: 6,19 + 5618: 6,20 + 5623: 9,24 + 5630: -9,24 + 5638: 0,1 + 5648: 1,1 + 5658: 2,1 + 5675: 3,0 + 5683: 3,1 + 5691: 4,0 + 5699: 4,1 + 5707: 8,12 + 5712: 9,4 + 5719: -9,3 + 5727: -8,12 + 5735: -4,0 + 5743: -4,1 + 5751: -3,0 + 5759: -3,1 + 5767: -2,1 + 5784: -1,1 + 5795: -10,-16 + 5800: -4,-1 + 5808: 4,-1 + 5813: 10,-16 + 5819: 3,-20 + 5822: 9,-17 + 5826: -9,-17 + 5829: -3,-20 + 5834: 6,16 + 5842: 6,17 + 5850: 6,18 + 5858: 6,19 + 5866: 6,20 + 5871: 9,24 + 5878: -9,24 + 5894: 0,1 + 5904: 1,1 + 5914: 2,1 + 5931: 3,0 + 5939: 3,1 + 5947: 4,0 + 5955: 4,1 + 5963: 8,12 + 5968: 9,4 + 5975: -9,3 + 5983: -8,12 + 5991: -4,0 + 5999: -4,1 + 6007: -3,0 + 6015: -3,1 + 6023: -2,1 + 6040: -1,1 + 6051: -10,-16 + 6056: -4,-1 + 6064: 4,-1 + 6069: 10,-16 + 6075: 3,-20 + 6078: 9,-17 + 6082: -9,-17 + 6085: -3,-20 + 6090: 6,16 + 6098: 6,17 + 6106: 6,18 + 6114: 6,19 + 6122: 6,20 + 6127: 9,24 + 6134: -9,24 + 6142: 0,1 + 6152: 1,1 + 6162: 2,1 + 6179: 3,0 + 6187: 3,1 + 6195: 4,0 + 6203: 4,1 + 6211: 8,12 + 6216: 9,4 + 6223: -9,3 + 6231: -8,12 + 6239: -4,0 + 6247: -4,1 + 6255: -3,0 + 6263: -3,1 + 6271: -2,1 + 6288: -1,1 + 6299: -10,-16 + 6304: -4,-1 + 6312: 4,-1 + 6317: 10,-16 + 6323: 3,-20 + 6326: 9,-17 + 6330: -9,-17 + 6333: -3,-20 + 6338: 6,16 + 6346: 6,17 + 6354: 6,18 + 6362: 6,19 + 6370: 6,20 + 6375: 9,24 + 6382: -9,24 + 6390: 0,1 + 6400: 1,1 + 6410: 2,1 + 6427: 3,0 + 6435: 3,1 + 6443: 4,0 + 6451: 4,1 + 6456: 9,4 + 6463: -9,3 + 6471: -8,12 + 6479: -4,0 + 6487: -4,1 + 6495: -3,0 + 6503: -3,1 + 6511: -2,1 + 6528: -1,1 + 6539: -10,-16 + 6544: -4,-1 + 6552: 4,-1 + 6557: 10,-16 + 6563: 3,-20 + 6566: 9,-17 + 6570: -9,-17 + 6573: -3,-20 + 6578: 6,16 + 6586: 6,17 + 6594: 6,18 + 6602: 6,19 + 6610: 6,20 + 6615: 9,24 + 6622: -9,24 + 6632: 8,12 + 6660: 0,1 + 6670: 1,1 + 6680: 2,1 + 6697: 3,0 + 6705: 3,1 + 6713: 4,0 + 6721: 4,1 + 6729: 8,12 + 6734: 9,4 + 6741: -9,3 + 6749: -8,12 + 6757: -4,0 + 6765: -4,1 + 6773: -3,0 + 6781: -3,1 + 6789: -2,1 + 6806: -1,1 + 6817: -10,-16 + 6822: -4,-1 + 6830: 4,-1 + 6835: 10,-16 + 6841: 3,-20 + 6844: 9,-17 + 6848: -9,-17 + 6851: -3,-20 + 6856: 6,16 + 6864: 6,17 + 6872: 6,18 + 6880: 6,19 + 6888: 6,20 + 6893: 9,24 + 6900: -9,24 - node: id: LatticeEdgeS decals: - 927: 0,1 - 935: 1,1 - 943: 2,1 - 951: 3,0 - 959: 3,1 - 967: 4,0 - 975: 4,1 - 983: 8,12 - 994: 9,12 - 1000: -9,12 - 1003: -8,12 - 1011: -4,0 - 1019: -4,1 - 1027: -3,0 - 1035: -3,1 - 1043: -2,1 - 1051: -1,1 - 1059: -12,-10 - 1065: -4,-1 - 1073: 4,-1 - 1084: 12,-10 - 1099: 6,16 - 1107: 6,17 - 1115: 6,18 - 1123: 6,19 - 1131: 6,20 - 1142: 9,28 - 1148: -9,28 - 1151: 0,1 - 1159: 1,1 - 1167: 2,1 - 1175: 3,0 - 1183: 3,1 - 1191: 4,0 - 1199: 4,1 - 1207: 8,12 - 1218: 9,12 - 1224: -9,12 - 1227: -8,12 - 1235: -4,0 - 1243: -4,1 - 1251: -3,0 - 1259: -3,1 - 1267: -2,1 - 1275: -1,1 - 1283: -12,-10 - 1289: -4,-1 - 1297: 4,-1 - 1308: 12,-10 - 1323: 6,16 - 1331: 6,17 - 1339: 6,18 - 1347: 6,19 - 1355: 6,20 - 1366: 9,28 - 1372: -9,28 - 1375: 0,1 - 1383: 1,1 - 1391: 2,1 - 1399: 3,0 - 1407: 3,1 - 1415: 4,0 - 1423: 4,1 - 1431: 8,12 - 1442: 9,12 - 1448: -9,12 - 1451: -8,12 - 1459: -4,0 - 1467: -4,1 - 1475: -3,0 - 1483: -3,1 - 1491: -2,1 - 1499: -1,1 - 1507: -12,-10 - 1513: -4,-1 - 1521: 4,-1 - 1532: 12,-10 - 1547: 6,16 - 1555: 6,17 - 1563: 6,18 - 1571: 6,19 - 1579: 6,20 - 1590: 9,28 - 1596: -9,28 - 1599: 0,1 - 1607: 1,1 - 1615: 2,1 - 1623: 3,0 - 1631: 3,1 - 1639: 4,0 - 1647: 4,1 - 1655: 8,12 - 1666: 9,12 - 1672: -9,12 - 1675: -8,12 - 1683: -4,0 - 1691: -4,1 - 1699: -3,0 - 1707: -3,1 - 1715: -2,1 - 1723: -1,1 - 1731: -12,-10 - 1737: -4,-1 - 1745: 4,-1 - 1756: 12,-10 - 1771: 6,16 - 1779: 6,17 - 1787: 6,18 - 1795: 6,19 - 1803: 6,20 - 1814: 9,28 - 1820: -9,28 - 1823: 0,1 - 1831: 1,1 - 1839: 2,1 - 1847: 3,0 - 1855: 3,1 - 1863: 4,0 - 1871: 4,1 - 1879: 8,12 - 1890: 9,12 - 1896: -4,0 - 1904: -4,1 - 1912: -3,0 - 1920: -3,1 - 1928: -2,1 - 1936: -1,1 - 1944: -12,-10 - 1950: -4,-1 - 1958: 4,-1 - 1969: 12,-10 - 1984: 6,16 - 1992: 6,17 - 2000: 6,18 - 2008: 6,19 - 2016: 6,20 - 2027: 9,28 - 2033: -9,28 - 2036: -8,12 - 2044: -9,12 - 2047: 0,1 - 2055: 1,1 - 2063: 2,1 - 2071: 3,0 - 2079: 3,1 - 2087: 4,0 - 2095: 4,1 - 2103: 8,12 - 2114: 9,12 - 2120: -9,12 - 2123: -8,12 - 2131: -4,0 - 2139: -4,1 - 2147: -3,0 - 2155: -3,1 - 2163: -2,1 - 2171: -1,1 - 2179: -12,-10 - 2185: -4,-1 - 2193: 4,-1 - 2204: 12,-10 - 2219: 6,16 - 2227: 6,17 - 2235: 6,18 - 2243: 6,19 - 2251: 6,20 - 2262: 9,28 - 2268: -9,28 - 2271: 0,1 - 2279: 1,1 - 2287: 2,1 - 2295: 3,0 - 2303: 3,1 - 2311: 4,0 - 2319: 4,1 - 2327: 8,12 - 2338: 9,12 - 2344: -9,12 - 2347: -8,12 - 2355: -4,0 - 2363: -4,1 - 2371: -3,0 - 2379: -3,1 - 2387: -2,1 - 2395: -1,1 - 2403: -12,-10 - 2409: -4,-1 - 2417: 4,-1 - 2428: 12,-10 - 2443: 6,16 - 2451: 6,17 - 2459: 6,18 - 2467: 6,19 - 2475: 6,20 - 2486: 9,28 - 2492: -9,28 - 2495: 0,1 - 2503: 1,1 - 2511: 2,1 - 2519: 3,0 - 2527: 3,1 - 2535: 4,0 - 2543: 4,1 - 2551: 8,12 - 2562: 9,12 - 2568: -9,12 - 2571: -8,12 - 2579: -4,0 - 2587: -4,1 - 2595: -3,0 - 2603: -3,1 - 2611: -2,1 - 2619: -1,1 - 2627: -12,-10 - 2633: -4,-1 - 2641: 4,-1 - 2652: 12,-10 - 2667: 6,16 - 2675: 6,17 - 2683: 6,18 - 2691: 6,19 - 2699: 6,20 - 2710: 9,28 - 2716: -9,28 - 2719: 0,1 - 2727: 1,1 - 2735: 2,1 - 2743: 3,0 - 2751: 3,1 - 2759: 4,0 - 2767: 4,1 - 2775: 8,12 - 2786: 9,12 - 2792: -9,12 - 2795: -8,12 - 2803: -4,0 - 2811: -4,1 - 2819: -3,0 - 2827: -3,1 - 2835: -2,1 - 2843: -1,1 - 2851: -12,-10 - 2857: -4,-1 - 2865: 4,-1 - 2876: 12,-10 - 2891: 6,16 - 2899: 6,17 - 2907: 6,18 - 2915: 6,19 - 2923: 6,20 - 2934: 9,28 - 2940: -9,28 - 2943: 0,1 - 2951: 1,1 - 2959: 2,1 - 2967: 3,0 - 2975: 3,1 - 2983: 4,0 - 2991: 4,1 - 2999: 8,12 - 3010: 9,12 - 3016: -9,12 - 3019: -8,12 - 3027: -4,0 - 3035: -4,1 - 3043: -3,0 - 3051: -3,1 - 3059: -2,1 - 3067: -1,1 - 3075: -12,-10 - 3081: -4,-1 - 3089: 4,-1 - 3100: 12,-10 - 3115: 6,16 - 3123: 6,17 - 3131: 6,18 - 3139: 6,19 - 3147: 6,20 - 3158: 9,28 - 3164: -9,28 - 3167: 0,1 - 3175: 1,1 - 3183: 2,1 - 3191: 3,0 - 3199: 3,1 - 3207: 4,0 - 3215: 4,1 - 3223: 8,12 - 3234: 9,12 - 3240: -9,12 - 3243: -8,12 - 3251: -4,0 - 3259: -4,1 - 3267: -3,0 - 3275: -3,1 - 3283: -2,1 - 3291: -1,1 - 3299: -12,-10 - 3305: -4,-1 - 3313: 4,-1 - 3324: 12,-10 - 3339: 6,16 - 3347: 6,17 - 3355: 6,18 - 3363: 6,19 - 3371: 6,20 - 3382: 9,28 - 3388: -9,28 - 3415: 0,1 - 3424: 1,1 - 3433: 2,1 - 3447: 3,0 - 3455: 3,1 - 3463: 4,0 - 3471: 4,1 - 3479: 8,12 - 3490: 9,12 - 3496: -9,12 - 3499: -8,12 - 3507: -4,0 - 3515: -4,1 - 3523: -3,0 - 3531: -3,1 - 3539: -2,1 - 3553: -1,1 - 3562: -12,-10 - 3568: -4,-1 - 3576: 4,-1 - 3587: 12,-10 - 3602: 6,16 - 3610: 6,17 - 3618: 6,18 - 3626: 6,19 - 3634: 6,20 - 3645: 9,28 - 3651: -9,28 - 3663: 0,1 - 3673: 1,1 - 3683: 2,1 - 3700: 3,0 - 3708: 3,1 - 3716: 4,0 - 3724: 4,1 - 3732: 8,12 - 3743: 9,12 - 3749: -9,12 - 3752: -8,12 - 3760: -4,0 - 3768: -4,1 - 3776: -3,0 - 3784: -3,1 - 3792: -2,1 - 3809: -1,1 - 3819: -12,-10 - 3825: -4,-1 - 3833: 4,-1 - 3844: 12,-10 - 3859: 6,16 - 3867: 6,17 - 3875: 6,18 - 3883: 6,19 - 3891: 6,20 - 3902: 9,28 - 3908: -9,28 - 3911: 0,1 - 3921: 1,1 - 3931: 2,1 - 3948: 3,0 - 3956: 3,1 - 3964: 4,0 - 3972: 4,1 - 3980: 8,12 - 3991: 9,12 - 3997: -9,12 - 4000: -8,12 - 4008: -4,0 - 4016: -4,1 - 4024: -3,0 - 4032: -3,1 - 4040: -2,1 - 4057: -1,1 - 4070: -4,-1 - 4078: 4,-1 - 4101: 6,16 - 4109: 6,17 - 4117: 6,18 - 4125: 6,19 - 4133: 6,20 - 4144: 9,28 - 4150: -9,28 - 4153: -12,-10 - 4156: 12,-10 - 4159: 0,1 - 4169: 1,1 - 4179: 2,1 - 4196: 3,0 - 4204: 3,1 - 4212: 4,0 - 4220: 4,1 - 4228: 8,12 - 4239: 9,12 - 4245: -9,12 - 4248: -8,12 - 4256: -4,0 - 4264: -4,1 - 4272: -3,0 - 4280: -3,1 - 4288: -2,1 - 4305: -1,1 - 4315: -12,-10 - 4321: -4,-1 - 4329: 4,-1 - 4340: 12,-10 - 4355: 6,16 - 4363: 6,17 - 4371: 6,18 - 4379: 6,19 - 4387: 6,20 - 4398: 9,28 - 4404: -9,28 - 4407: 0,1 - 4417: 1,1 - 4427: 2,1 - 4444: 3,0 - 4452: 3,1 - 4460: 4,0 - 4468: 4,1 - 4476: 8,12 - 4487: 9,12 - 4493: -9,12 - 4496: -8,12 - 4504: -4,0 - 4512: -4,1 - 4520: -3,0 - 4528: -3,1 - 4536: -2,1 - 4553: -1,1 - 4563: -12,-10 - 4569: -4,-1 - 4577: 4,-1 - 4588: 12,-10 - 4603: 6,16 - 4611: 6,17 - 4619: 6,18 - 4627: 6,19 - 4635: 6,20 - 4646: 9,28 - 4652: -9,28 - 4655: 0,1 - 4665: 1,1 - 4675: 2,1 - 4692: 3,0 - 4700: 3,1 - 4708: 4,0 - 4716: 4,1 - 4724: 8,12 - 4735: 9,12 - 4741: -9,12 - 4744: -8,12 - 4752: -4,0 - 4760: -4,1 - 4768: -3,0 - 4776: -3,1 - 4784: -2,1 - 4801: -1,1 - 4811: -12,-10 - 4817: -4,-1 - 4825: 4,-1 - 4836: 12,-10 - 4851: 6,16 - 4859: 6,17 - 4867: 6,18 - 4875: 6,19 - 4883: 6,20 - 4894: 9,28 - 4900: -9,28 - 4918: 0,1 - 4928: 1,1 - 4938: 2,1 - 4955: 3,0 - 4963: 3,1 - 4971: 4,0 - 4979: 4,1 - 4987: 8,12 - 4998: 9,12 - 5004: -9,12 - 5007: -8,12 - 5015: -4,0 - 5023: -4,1 - 5031: -3,0 - 5039: -3,1 - 5047: -2,1 - 5064: -1,1 - 5074: -12,-10 - 5080: -4,-1 - 5088: 4,-1 - 5099: 12,-10 - 5114: 6,16 - 5122: 6,17 - 5130: 6,18 - 5138: 6,19 - 5146: 6,20 - 5157: 9,28 - 5163: -9,28 - 5166: 0,1 - 5176: 1,1 - 5186: 2,1 - 5203: 3,0 - 5211: 3,1 - 5219: 4,0 - 5227: 4,1 - 5235: 8,12 - 5246: 9,12 - 5252: -9,12 - 5255: -8,12 - 5263: -4,0 - 5271: -4,1 - 5279: -3,0 - 5287: -3,1 - 5295: -2,1 - 5312: -1,1 - 5322: -12,-10 - 5328: -4,-1 - 5336: 4,-1 - 5347: 12,-10 - 5362: 6,16 - 5370: 6,17 - 5378: 6,18 - 5386: 6,19 - 5394: 6,20 - 5405: 9,28 - 5411: -9,28 - 5436: 0,1 - 5446: 1,1 - 5456: 2,1 - 5473: 3,0 - 5481: 3,1 - 5489: 4,0 - 5497: 4,1 - 5505: 8,12 - 5516: 9,12 - 5522: -9,12 - 5525: -8,12 - 5533: -4,0 - 5541: -4,1 - 5549: -3,0 - 5557: -3,1 - 5565: -2,1 - 5582: -1,1 - 5592: -12,-10 - 5598: -4,-1 - 5606: 4,-1 - 5617: 12,-10 - 5632: 6,16 - 5640: 6,17 - 5648: 6,18 - 5656: 6,19 - 5664: 6,20 - 5675: 9,28 - 5681: -9,28 - 5684: 0,1 - 5694: 1,1 - 5704: 2,1 - 5721: 3,0 - 5729: 3,1 - 5737: 4,0 - 5745: 4,1 - 5753: 8,12 - 5764: 9,12 - 5770: -9,12 - 5773: -8,12 - 5781: -4,0 - 5789: -4,1 - 5797: -3,0 - 5805: -3,1 - 5813: -2,1 - 5830: -1,1 - 5840: -12,-10 - 5846: -4,-1 - 5854: 4,-1 - 5865: 12,-10 - 5880: 6,16 - 5888: 6,17 - 5896: 6,18 - 5904: 6,19 - 5912: 6,20 - 5923: 9,28 - 5929: -9,28 + 878: 0,1 + 886: 1,1 + 894: 2,1 + 902: 3,0 + 910: 3,1 + 918: 4,0 + 926: 4,1 + 934: 8,12 + 945: 9,12 + 951: -9,12 + 954: -8,12 + 962: -4,0 + 970: -4,1 + 978: -3,0 + 986: -3,1 + 994: -2,1 + 1002: -1,1 + 1010: -12,-10 + 1016: -4,-1 + 1024: 4,-1 + 1035: 12,-10 + 1050: 6,16 + 1058: 6,17 + 1066: 6,18 + 1074: 6,19 + 1082: 6,20 + 1093: 9,28 + 1099: -9,28 + 1102: 0,1 + 1110: 1,1 + 1118: 2,1 + 1126: 3,0 + 1134: 3,1 + 1142: 4,0 + 1150: 4,1 + 1158: 8,12 + 1169: 9,12 + 1175: -9,12 + 1178: -8,12 + 1186: -4,0 + 1194: -4,1 + 1202: -3,0 + 1210: -3,1 + 1218: -2,1 + 1226: -1,1 + 1234: -12,-10 + 1240: -4,-1 + 1248: 4,-1 + 1259: 12,-10 + 1274: 6,16 + 1282: 6,17 + 1290: 6,18 + 1298: 6,19 + 1306: 6,20 + 1317: 9,28 + 1323: -9,28 + 1326: 0,1 + 1334: 1,1 + 1342: 2,1 + 1350: 3,0 + 1358: 3,1 + 1366: 4,0 + 1374: 4,1 + 1382: 8,12 + 1393: 9,12 + 1399: -9,12 + 1402: -8,12 + 1410: -4,0 + 1418: -4,1 + 1426: -3,0 + 1434: -3,1 + 1442: -2,1 + 1450: -1,1 + 1458: -12,-10 + 1464: -4,-1 + 1472: 4,-1 + 1483: 12,-10 + 1498: 6,16 + 1506: 6,17 + 1514: 6,18 + 1522: 6,19 + 1530: 6,20 + 1541: 9,28 + 1547: -9,28 + 1550: 0,1 + 1558: 1,1 + 1566: 2,1 + 1574: 3,0 + 1582: 3,1 + 1590: 4,0 + 1598: 4,1 + 1606: 8,12 + 1617: 9,12 + 1623: -9,12 + 1626: -8,12 + 1634: -4,0 + 1642: -4,1 + 1650: -3,0 + 1658: -3,1 + 1666: -2,1 + 1674: -1,1 + 1682: -12,-10 + 1688: -4,-1 + 1696: 4,-1 + 1707: 12,-10 + 1722: 6,16 + 1730: 6,17 + 1738: 6,18 + 1746: 6,19 + 1754: 6,20 + 1765: 9,28 + 1771: -9,28 + 1774: 0,1 + 1782: 1,1 + 1790: 2,1 + 1798: 3,0 + 1806: 3,1 + 1814: 4,0 + 1822: 4,1 + 1830: 8,12 + 1841: 9,12 + 1847: -4,0 + 1855: -4,1 + 1863: -3,0 + 1871: -3,1 + 1879: -2,1 + 1887: -1,1 + 1895: -12,-10 + 1901: -4,-1 + 1909: 4,-1 + 1920: 12,-10 + 1935: 6,16 + 1943: 6,17 + 1951: 6,18 + 1959: 6,19 + 1967: 6,20 + 1978: 9,28 + 1984: -9,28 + 1987: -8,12 + 1995: -9,12 + 1998: 0,1 + 2006: 1,1 + 2014: 2,1 + 2022: 3,0 + 2030: 3,1 + 2038: 4,0 + 2046: 4,1 + 2054: 8,12 + 2065: 9,12 + 2071: -9,12 + 2074: -8,12 + 2082: -4,0 + 2090: -4,1 + 2098: -3,0 + 2106: -3,1 + 2114: -2,1 + 2122: -1,1 + 2130: -12,-10 + 2136: -4,-1 + 2144: 4,-1 + 2155: 12,-10 + 2170: 6,16 + 2178: 6,17 + 2186: 6,18 + 2194: 6,19 + 2202: 6,20 + 2213: 9,28 + 2219: -9,28 + 2222: 0,1 + 2230: 1,1 + 2238: 2,1 + 2246: 3,0 + 2254: 3,1 + 2262: 4,0 + 2270: 4,1 + 2278: 8,12 + 2289: 9,12 + 2295: -9,12 + 2298: -8,12 + 2306: -4,0 + 2314: -4,1 + 2322: -3,0 + 2330: -3,1 + 2338: -2,1 + 2346: -1,1 + 2354: -12,-10 + 2360: -4,-1 + 2368: 4,-1 + 2379: 12,-10 + 2394: 6,16 + 2402: 6,17 + 2410: 6,18 + 2418: 6,19 + 2426: 6,20 + 2437: 9,28 + 2443: -9,28 + 2446: 0,1 + 2454: 1,1 + 2462: 2,1 + 2470: 3,0 + 2478: 3,1 + 2486: 4,0 + 2494: 4,1 + 2502: 8,12 + 2513: 9,12 + 2519: -9,12 + 2522: -8,12 + 2530: -4,0 + 2538: -4,1 + 2546: -3,0 + 2554: -3,1 + 2562: -2,1 + 2570: -1,1 + 2578: -12,-10 + 2584: -4,-1 + 2592: 4,-1 + 2603: 12,-10 + 2618: 6,16 + 2626: 6,17 + 2634: 6,18 + 2642: 6,19 + 2650: 6,20 + 2661: 9,28 + 2667: -9,28 + 2670: 0,1 + 2678: 1,1 + 2686: 2,1 + 2694: 3,0 + 2702: 3,1 + 2710: 4,0 + 2718: 4,1 + 2726: 8,12 + 2737: 9,12 + 2743: -9,12 + 2746: -8,12 + 2754: -4,0 + 2762: -4,1 + 2770: -3,0 + 2778: -3,1 + 2786: -2,1 + 2794: -1,1 + 2802: -12,-10 + 2808: -4,-1 + 2816: 4,-1 + 2827: 12,-10 + 2842: 6,16 + 2850: 6,17 + 2858: 6,18 + 2866: 6,19 + 2874: 6,20 + 2885: 9,28 + 2891: -9,28 + 2894: 0,1 + 2902: 1,1 + 2910: 2,1 + 2918: 3,0 + 2926: 3,1 + 2934: 4,0 + 2942: 4,1 + 2950: 8,12 + 2961: 9,12 + 2967: -9,12 + 2970: -8,12 + 2978: -4,0 + 2986: -4,1 + 2994: -3,0 + 3002: -3,1 + 3010: -2,1 + 3018: -1,1 + 3026: -12,-10 + 3032: -4,-1 + 3040: 4,-1 + 3051: 12,-10 + 3066: 6,16 + 3074: 6,17 + 3082: 6,18 + 3090: 6,19 + 3098: 6,20 + 3109: 9,28 + 3115: -9,28 + 3118: 0,1 + 3126: 1,1 + 3134: 2,1 + 3142: 3,0 + 3150: 3,1 + 3158: 4,0 + 3166: 4,1 + 3174: 8,12 + 3185: 9,12 + 3191: -9,12 + 3194: -8,12 + 3202: -4,0 + 3210: -4,1 + 3218: -3,0 + 3226: -3,1 + 3234: -2,1 + 3242: -1,1 + 3250: -12,-10 + 3256: -4,-1 + 3264: 4,-1 + 3275: 12,-10 + 3290: 6,16 + 3298: 6,17 + 3306: 6,18 + 3314: 6,19 + 3322: 6,20 + 3333: 9,28 + 3339: -9,28 + 3366: 0,1 + 3375: 1,1 + 3384: 2,1 + 3398: 3,0 + 3406: 3,1 + 3414: 4,0 + 3422: 4,1 + 3430: 8,12 + 3441: 9,12 + 3447: -9,12 + 3450: -8,12 + 3458: -4,0 + 3466: -4,1 + 3474: -3,0 + 3482: -3,1 + 3490: -2,1 + 3504: -1,1 + 3513: -12,-10 + 3519: -4,-1 + 3527: 4,-1 + 3538: 12,-10 + 3553: 6,16 + 3561: 6,17 + 3569: 6,18 + 3577: 6,19 + 3585: 6,20 + 3596: 9,28 + 3602: -9,28 + 3614: 0,1 + 3624: 1,1 + 3634: 2,1 + 3651: 3,0 + 3659: 3,1 + 3667: 4,0 + 3675: 4,1 + 3683: 8,12 + 3694: 9,12 + 3700: -9,12 + 3703: -8,12 + 3711: -4,0 + 3719: -4,1 + 3727: -3,0 + 3735: -3,1 + 3743: -2,1 + 3760: -1,1 + 3770: -12,-10 + 3776: -4,-1 + 3784: 4,-1 + 3795: 12,-10 + 3810: 6,16 + 3818: 6,17 + 3826: 6,18 + 3834: 6,19 + 3842: 6,20 + 3853: 9,28 + 3859: -9,28 + 3862: 0,1 + 3872: 1,1 + 3882: 2,1 + 3899: 3,0 + 3907: 3,1 + 3915: 4,0 + 3923: 4,1 + 3931: 8,12 + 3942: 9,12 + 3948: -9,12 + 3951: -8,12 + 3959: -4,0 + 3967: -4,1 + 3975: -3,0 + 3983: -3,1 + 3991: -2,1 + 4008: -1,1 + 4021: -4,-1 + 4029: 4,-1 + 4052: 6,16 + 4060: 6,17 + 4068: 6,18 + 4076: 6,19 + 4084: 6,20 + 4095: 9,28 + 4101: -9,28 + 4104: -12,-10 + 4107: 12,-10 + 4110: 0,1 + 4120: 1,1 + 4130: 2,1 + 4147: 3,0 + 4155: 3,1 + 4163: 4,0 + 4171: 4,1 + 4179: 8,12 + 4190: 9,12 + 4196: -9,12 + 4199: -8,12 + 4207: -4,0 + 4215: -4,1 + 4223: -3,0 + 4231: -3,1 + 4239: -2,1 + 4256: -1,1 + 4266: -12,-10 + 4272: -4,-1 + 4280: 4,-1 + 4291: 12,-10 + 4306: 6,16 + 4314: 6,17 + 4322: 6,18 + 4330: 6,19 + 4338: 6,20 + 4349: 9,28 + 4355: -9,28 + 4358: 0,1 + 4368: 1,1 + 4378: 2,1 + 4395: 3,0 + 4403: 3,1 + 4411: 4,0 + 4419: 4,1 + 4427: 8,12 + 4438: 9,12 + 4444: -9,12 + 4447: -8,12 + 4455: -4,0 + 4463: -4,1 + 4471: -3,0 + 4479: -3,1 + 4487: -2,1 + 4504: -1,1 + 4514: -12,-10 + 4520: -4,-1 + 4528: 4,-1 + 4539: 12,-10 + 4554: 6,16 + 4562: 6,17 + 4570: 6,18 + 4578: 6,19 + 4586: 6,20 + 4597: 9,28 + 4603: -9,28 + 4606: 0,1 + 4616: 1,1 + 4626: 2,1 + 4643: 3,0 + 4651: 3,1 + 4659: 4,0 + 4667: 4,1 + 4675: 8,12 + 4686: 9,12 + 4692: -9,12 + 4695: -8,12 + 4703: -4,0 + 4711: -4,1 + 4719: -3,0 + 4727: -3,1 + 4735: -2,1 + 4752: -1,1 + 4762: -12,-10 + 4768: -4,-1 + 4776: 4,-1 + 4787: 12,-10 + 4802: 6,16 + 4810: 6,17 + 4818: 6,18 + 4826: 6,19 + 4834: 6,20 + 4845: 9,28 + 4851: -9,28 + 4869: 0,1 + 4879: 1,1 + 4889: 2,1 + 4906: 3,0 + 4914: 3,1 + 4922: 4,0 + 4930: 4,1 + 4938: 8,12 + 4949: 9,12 + 4955: -9,12 + 4958: -8,12 + 4966: -4,0 + 4974: -4,1 + 4982: -3,0 + 4990: -3,1 + 4998: -2,1 + 5015: -1,1 + 5025: -12,-10 + 5031: -4,-1 + 5039: 4,-1 + 5050: 12,-10 + 5065: 6,16 + 5073: 6,17 + 5081: 6,18 + 5089: 6,19 + 5097: 6,20 + 5108: 9,28 + 5114: -9,28 + 5117: 0,1 + 5127: 1,1 + 5137: 2,1 + 5154: 3,0 + 5162: 3,1 + 5170: 4,0 + 5178: 4,1 + 5186: 8,12 + 5197: 9,12 + 5203: -9,12 + 5206: -8,12 + 5214: -4,0 + 5222: -4,1 + 5230: -3,0 + 5238: -3,1 + 5246: -2,1 + 5263: -1,1 + 5273: -12,-10 + 5279: -4,-1 + 5287: 4,-1 + 5298: 12,-10 + 5313: 6,16 + 5321: 6,17 + 5329: 6,18 + 5337: 6,19 + 5345: 6,20 + 5356: 9,28 + 5362: -9,28 + 5387: 0,1 + 5397: 1,1 + 5407: 2,1 + 5424: 3,0 + 5432: 3,1 + 5440: 4,0 + 5448: 4,1 + 5456: 8,12 + 5467: 9,12 + 5473: -9,12 + 5476: -8,12 + 5484: -4,0 + 5492: -4,1 + 5500: -3,0 + 5508: -3,1 + 5516: -2,1 + 5533: -1,1 + 5543: -12,-10 + 5549: -4,-1 + 5557: 4,-1 + 5568: 12,-10 + 5583: 6,16 + 5591: 6,17 + 5599: 6,18 + 5607: 6,19 + 5615: 6,20 + 5626: 9,28 + 5632: -9,28 + 5635: 0,1 + 5645: 1,1 + 5655: 2,1 + 5672: 3,0 + 5680: 3,1 + 5688: 4,0 + 5696: 4,1 + 5704: 8,12 + 5715: 9,12 + 5721: -9,12 + 5724: -8,12 + 5732: -4,0 + 5740: -4,1 + 5748: -3,0 + 5756: -3,1 + 5764: -2,1 + 5781: -1,1 + 5791: -12,-10 + 5797: -4,-1 + 5805: 4,-1 + 5816: 12,-10 + 5831: 6,16 + 5839: 6,17 + 5847: 6,18 + 5855: 6,19 + 5863: 6,20 + 5874: 9,28 + 5880: -9,28 + 5891: 0,1 + 5901: 1,1 + 5911: 2,1 + 5928: 3,0 + 5936: 3,1 + 5944: 4,0 + 5952: 4,1 + 5960: 8,12 + 5971: 9,12 + 5977: -9,12 + 5980: -8,12 + 5988: -4,0 + 5996: -4,1 + 6004: -3,0 + 6012: -3,1 + 6020: -2,1 + 6037: -1,1 + 6047: -12,-10 + 6053: -4,-1 + 6061: 4,-1 + 6072: 12,-10 + 6087: 6,16 + 6095: 6,17 + 6103: 6,18 + 6111: 6,19 + 6119: 6,20 + 6130: 9,28 + 6136: -9,28 + 6139: 0,1 + 6149: 1,1 + 6159: 2,1 + 6176: 3,0 + 6184: 3,1 + 6192: 4,0 + 6200: 4,1 + 6208: 8,12 + 6219: 9,12 + 6225: -9,12 + 6228: -8,12 + 6236: -4,0 + 6244: -4,1 + 6252: -3,0 + 6260: -3,1 + 6268: -2,1 + 6285: -1,1 + 6295: -12,-10 + 6301: -4,-1 + 6309: 4,-1 + 6320: 12,-10 + 6335: 6,16 + 6343: 6,17 + 6351: 6,18 + 6359: 6,19 + 6367: 6,20 + 6378: 9,28 + 6384: -9,28 + 6387: 0,1 + 6397: 1,1 + 6407: 2,1 + 6424: 3,0 + 6432: 3,1 + 6440: 4,0 + 6448: 4,1 + 6459: 9,12 + 6465: -9,12 + 6468: -8,12 + 6476: -4,0 + 6484: -4,1 + 6492: -3,0 + 6500: -3,1 + 6508: -2,1 + 6525: -1,1 + 6535: -12,-10 + 6541: -4,-1 + 6549: 4,-1 + 6560: 12,-10 + 6575: 6,16 + 6583: 6,17 + 6591: 6,18 + 6599: 6,19 + 6607: 6,20 + 6618: 9,28 + 6624: -9,28 + 6629: 8,12 + 6657: 0,1 + 6667: 1,1 + 6677: 2,1 + 6694: 3,0 + 6702: 3,1 + 6710: 4,0 + 6718: 4,1 + 6726: 8,12 + 6737: 9,12 + 6743: -9,12 + 6746: -8,12 + 6754: -4,0 + 6762: -4,1 + 6770: -3,0 + 6778: -3,1 + 6786: -2,1 + 6803: -1,1 + 6813: -12,-10 + 6819: -4,-1 + 6827: 4,-1 + 6838: 12,-10 + 6853: 6,16 + 6861: 6,17 + 6869: 6,18 + 6877: 6,19 + 6885: 6,20 + 6896: 9,28 + 6902: -9,28 - node: id: LatticeEdgeW decals: - 932: 0,1 - 940: 1,1 - 948: 2,1 - 956: 3,0 - 964: 3,1 - 972: 4,0 - 980: 4,1 - 988: 8,12 - 992: 9,4 - 995: 9,12 - 1008: -8,12 - 1016: -4,0 - 1024: -4,1 - 1032: -3,0 - 1040: -3,1 - 1048: -2,1 - 1056: -1,1 - 1070: -4,-1 - 1078: 4,-1 - 1082: 10,-16 - 1085: 12,-10 - 1088: 3,-20 - 1091: 9,-17 - 1104: 6,16 - 1112: 6,17 - 1120: 6,18 - 1128: 6,19 - 1136: 6,20 - 1140: 9,24 - 1143: 9,28 - 1156: 0,1 - 1164: 1,1 - 1172: 2,1 - 1180: 3,0 - 1188: 3,1 - 1196: 4,0 - 1204: 4,1 - 1212: 8,12 - 1216: 9,4 - 1219: 9,12 - 1232: -8,12 - 1240: -4,0 - 1248: -4,1 - 1256: -3,0 - 1264: -3,1 - 1272: -2,1 - 1280: -1,1 - 1294: -4,-1 - 1302: 4,-1 - 1306: 10,-16 - 1309: 12,-10 - 1312: 3,-20 - 1315: 9,-17 - 1328: 6,16 - 1336: 6,17 - 1344: 6,18 - 1352: 6,19 - 1360: 6,20 - 1364: 9,24 - 1367: 9,28 - 1380: 0,1 - 1388: 1,1 - 1396: 2,1 - 1404: 3,0 - 1412: 3,1 - 1420: 4,0 - 1428: 4,1 - 1436: 8,12 - 1440: 9,4 - 1443: 9,12 - 1456: -8,12 - 1464: -4,0 - 1472: -4,1 - 1480: -3,0 - 1488: -3,1 - 1496: -2,1 - 1504: -1,1 - 1518: -4,-1 - 1526: 4,-1 - 1530: 10,-16 - 1533: 12,-10 - 1536: 3,-20 - 1539: 9,-17 - 1552: 6,16 - 1560: 6,17 - 1568: 6,18 - 1576: 6,19 - 1584: 6,20 - 1588: 9,24 - 1591: 9,28 - 1604: 0,1 - 1612: 1,1 - 1620: 2,1 - 1628: 3,0 - 1636: 3,1 - 1644: 4,0 - 1652: 4,1 - 1660: 8,12 - 1664: 9,4 - 1667: 9,12 - 1680: -8,12 - 1688: -4,0 - 1696: -4,1 - 1704: -3,0 - 1712: -3,1 - 1720: -2,1 - 1728: -1,1 - 1742: -4,-1 - 1750: 4,-1 - 1754: 10,-16 - 1757: 12,-10 - 1760: 3,-20 - 1763: 9,-17 - 1776: 6,16 - 1784: 6,17 - 1792: 6,18 - 1800: 6,19 - 1808: 6,20 - 1812: 9,24 - 1815: 9,28 - 1828: 0,1 - 1836: 1,1 - 1844: 2,1 - 1852: 3,0 - 1860: 3,1 - 1868: 4,0 - 1876: 4,1 - 1884: 8,12 - 1888: 9,4 - 1891: 9,12 - 1901: -4,0 - 1909: -4,1 - 1917: -3,0 - 1925: -3,1 - 1933: -2,1 - 1941: -1,1 - 1955: -4,-1 - 1963: 4,-1 - 1967: 10,-16 - 1970: 12,-10 - 1973: 3,-20 - 1976: 9,-17 - 1989: 6,16 - 1997: 6,17 - 2005: 6,18 - 2013: 6,19 - 2021: 6,20 - 2025: 9,24 - 2028: 9,28 - 2041: -8,12 - 2052: 0,1 - 2060: 1,1 - 2068: 2,1 - 2076: 3,0 - 2084: 3,1 - 2092: 4,0 - 2100: 4,1 - 2108: 8,12 - 2112: 9,4 - 2115: 9,12 - 2128: -8,12 - 2136: -4,0 - 2144: -4,1 - 2152: -3,0 - 2160: -3,1 - 2168: -2,1 - 2176: -1,1 - 2190: -4,-1 - 2198: 4,-1 - 2202: 10,-16 - 2205: 12,-10 - 2208: 3,-20 - 2211: 9,-17 - 2224: 6,16 - 2232: 6,17 - 2240: 6,18 - 2248: 6,19 - 2256: 6,20 - 2260: 9,24 - 2263: 9,28 - 2276: 0,1 - 2284: 1,1 - 2292: 2,1 - 2300: 3,0 - 2308: 3,1 - 2316: 4,0 - 2324: 4,1 - 2332: 8,12 - 2336: 9,4 - 2339: 9,12 - 2352: -8,12 - 2360: -4,0 - 2368: -4,1 - 2376: -3,0 - 2384: -3,1 - 2392: -2,1 - 2400: -1,1 - 2414: -4,-1 - 2422: 4,-1 - 2426: 10,-16 - 2429: 12,-10 - 2432: 3,-20 - 2435: 9,-17 - 2448: 6,16 - 2456: 6,17 - 2464: 6,18 - 2472: 6,19 - 2480: 6,20 - 2484: 9,24 - 2487: 9,28 - 2500: 0,1 - 2508: 1,1 - 2516: 2,1 - 2524: 3,0 - 2532: 3,1 - 2540: 4,0 - 2548: 4,1 - 2556: 8,12 - 2560: 9,4 - 2563: 9,12 - 2576: -8,12 - 2584: -4,0 - 2592: -4,1 - 2600: -3,0 - 2608: -3,1 - 2616: -2,1 - 2624: -1,1 - 2638: -4,-1 - 2646: 4,-1 - 2650: 10,-16 - 2653: 12,-10 - 2656: 3,-20 - 2659: 9,-17 - 2672: 6,16 - 2680: 6,17 - 2688: 6,18 - 2696: 6,19 - 2704: 6,20 - 2708: 9,24 - 2711: 9,28 - 2724: 0,1 - 2732: 1,1 - 2740: 2,1 - 2748: 3,0 - 2756: 3,1 - 2764: 4,0 - 2772: 4,1 - 2780: 8,12 - 2784: 9,4 - 2787: 9,12 - 2800: -8,12 - 2808: -4,0 - 2816: -4,1 - 2824: -3,0 - 2832: -3,1 - 2840: -2,1 - 2848: -1,1 - 2862: -4,-1 - 2870: 4,-1 - 2874: 10,-16 - 2877: 12,-10 - 2880: 3,-20 - 2883: 9,-17 - 2896: 6,16 - 2904: 6,17 - 2912: 6,18 - 2920: 6,19 - 2928: 6,20 - 2932: 9,24 - 2935: 9,28 - 2948: 0,1 - 2956: 1,1 - 2964: 2,1 - 2972: 3,0 - 2980: 3,1 - 2988: 4,0 - 2996: 4,1 - 3004: 8,12 - 3008: 9,4 - 3011: 9,12 - 3024: -8,12 - 3032: -4,0 - 3040: -4,1 - 3048: -3,0 - 3056: -3,1 - 3064: -2,1 - 3072: -1,1 - 3086: -4,-1 - 3094: 4,-1 - 3098: 10,-16 - 3101: 12,-10 - 3104: 3,-20 - 3107: 9,-17 - 3120: 6,16 - 3128: 6,17 - 3136: 6,18 - 3144: 6,19 - 3152: 6,20 - 3156: 9,24 - 3159: 9,28 - 3172: 0,1 - 3180: 1,1 - 3188: 2,1 - 3196: 3,0 - 3204: 3,1 - 3212: 4,0 - 3220: 4,1 - 3228: 8,12 - 3232: 9,4 - 3235: 9,12 - 3248: -8,12 - 3256: -4,0 - 3264: -4,1 - 3272: -3,0 - 3280: -3,1 - 3288: -2,1 - 3296: -1,1 - 3310: -4,-1 - 3318: 4,-1 - 3322: 10,-16 - 3325: 12,-10 - 3328: 3,-20 - 3331: 9,-17 - 3344: 6,16 - 3352: 6,17 - 3360: 6,18 - 3368: 6,19 - 3376: 6,20 - 3380: 9,24 - 3383: 9,28 - 3420: 0,1 - 3429: 1,1 - 3438: 2,1 - 3452: 3,0 - 3460: 3,1 - 3468: 4,0 - 3476: 4,1 - 3484: 8,12 - 3488: 9,4 - 3491: 9,12 - 3504: -8,12 - 3512: -4,0 - 3520: -4,1 - 3528: -3,0 - 3536: -3,1 - 3544: -2,1 - 3558: -1,1 - 3573: -4,-1 - 3581: 4,-1 - 3585: 10,-16 - 3588: 12,-10 - 3591: 3,-20 - 3594: 9,-17 - 3607: 6,16 - 3615: 6,17 - 3623: 6,18 - 3631: 6,19 - 3639: 6,20 - 3643: 9,24 - 3646: 9,28 - 3668: 0,1 - 3678: 1,1 - 3688: 2,1 - 3705: 3,0 - 3713: 3,1 - 3721: 4,0 - 3729: 4,1 - 3737: 8,12 - 3741: 9,4 - 3744: 9,12 - 3757: -8,12 - 3765: -4,0 - 3773: -4,1 - 3781: -3,0 - 3789: -3,1 - 3797: -2,1 - 3814: -1,1 - 3830: -4,-1 - 3838: 4,-1 - 3842: 10,-16 - 3845: 12,-10 - 3848: 3,-20 - 3851: 9,-17 - 3864: 6,16 - 3872: 6,17 - 3880: 6,18 - 3888: 6,19 - 3896: 6,20 - 3900: 9,24 - 3903: 9,28 - 3916: 0,1 - 3926: 1,1 - 3936: 2,1 - 3953: 3,0 - 3961: 3,1 - 3969: 4,0 - 3977: 4,1 - 3985: 8,12 - 3989: 9,4 - 3992: 9,12 - 4005: -8,12 - 4013: -4,0 - 4021: -4,1 - 4029: -3,0 - 4037: -3,1 - 4045: -2,1 - 4062: -1,1 - 4075: -4,-1 - 4083: 4,-1 - 4087: 10,-16 - 4090: 3,-20 - 4093: 9,-17 - 4106: 6,16 - 4114: 6,17 - 4122: 6,18 - 4130: 6,19 - 4138: 6,20 - 4142: 9,24 - 4145: 9,28 - 4157: 12,-10 - 4164: 0,1 - 4174: 1,1 - 4184: 2,1 - 4201: 3,0 - 4209: 3,1 - 4217: 4,0 - 4225: 4,1 - 4233: 8,12 - 4237: 9,4 - 4240: 9,12 - 4253: -8,12 - 4261: -4,0 - 4269: -4,1 - 4277: -3,0 - 4285: -3,1 - 4293: -2,1 - 4310: -1,1 - 4326: -4,-1 - 4334: 4,-1 - 4338: 10,-16 - 4341: 12,-10 - 4344: 3,-20 - 4347: 9,-17 - 4360: 6,16 - 4368: 6,17 - 4376: 6,18 - 4384: 6,19 - 4392: 6,20 - 4396: 9,24 - 4399: 9,28 - 4412: 0,1 - 4422: 1,1 - 4432: 2,1 - 4449: 3,0 - 4457: 3,1 - 4465: 4,0 - 4473: 4,1 - 4481: 8,12 - 4485: 9,4 - 4488: 9,12 - 4501: -8,12 - 4509: -4,0 - 4517: -4,1 - 4525: -3,0 - 4533: -3,1 - 4541: -2,1 - 4558: -1,1 - 4574: -4,-1 - 4582: 4,-1 - 4586: 10,-16 - 4589: 12,-10 - 4592: 3,-20 - 4595: 9,-17 - 4608: 6,16 - 4616: 6,17 - 4624: 6,18 - 4632: 6,19 - 4640: 6,20 - 4644: 9,24 - 4647: 9,28 - 4660: 0,1 - 4670: 1,1 - 4680: 2,1 - 4697: 3,0 - 4705: 3,1 - 4713: 4,0 - 4721: 4,1 - 4729: 8,12 - 4733: 9,4 - 4736: 9,12 - 4749: -8,12 - 4757: -4,0 - 4765: -4,1 - 4773: -3,0 - 4781: -3,1 - 4789: -2,1 - 4806: -1,1 - 4822: -4,-1 - 4830: 4,-1 - 4834: 10,-16 - 4837: 12,-10 - 4840: 3,-20 - 4843: 9,-17 - 4856: 6,16 - 4864: 6,17 - 4872: 6,18 - 4880: 6,19 - 4888: 6,20 - 4892: 9,24 - 4895: 9,28 - 4923: 0,1 - 4933: 1,1 - 4943: 2,1 - 4960: 3,0 - 4968: 3,1 - 4976: 4,0 - 4984: 4,1 - 4992: 8,12 - 4996: 9,4 - 4999: 9,12 - 5012: -8,12 - 5020: -4,0 - 5028: -4,1 - 5036: -3,0 - 5044: -3,1 - 5052: -2,1 - 5069: -1,1 - 5085: -4,-1 - 5093: 4,-1 - 5097: 10,-16 - 5100: 12,-10 - 5103: 3,-20 - 5106: 9,-17 - 5119: 6,16 - 5127: 6,17 - 5135: 6,18 - 5143: 6,19 - 5151: 6,20 - 5155: 9,24 - 5158: 9,28 - 5171: 0,1 - 5181: 1,1 - 5191: 2,1 - 5208: 3,0 - 5216: 3,1 - 5224: 4,0 - 5232: 4,1 - 5240: 8,12 - 5244: 9,4 - 5247: 9,12 - 5260: -8,12 - 5268: -4,0 - 5276: -4,1 - 5284: -3,0 - 5292: -3,1 - 5300: -2,1 - 5317: -1,1 - 5333: -4,-1 - 5341: 4,-1 - 5345: 10,-16 - 5348: 12,-10 - 5351: 3,-20 - 5354: 9,-17 - 5367: 6,16 - 5375: 6,17 - 5383: 6,18 - 5391: 6,19 - 5399: 6,20 - 5403: 9,24 - 5406: 9,28 - 5441: 0,1 - 5451: 1,1 - 5461: 2,1 - 5478: 3,0 - 5486: 3,1 - 5494: 4,0 - 5502: 4,1 - 5510: 8,12 - 5514: 9,4 - 5517: 9,12 - 5530: -8,12 - 5538: -4,0 - 5546: -4,1 - 5554: -3,0 - 5562: -3,1 - 5570: -2,1 - 5587: -1,1 - 5603: -4,-1 - 5611: 4,-1 - 5615: 10,-16 - 5618: 12,-10 - 5621: 3,-20 - 5624: 9,-17 - 5637: 6,16 - 5645: 6,17 - 5653: 6,18 - 5661: 6,19 - 5669: 6,20 - 5673: 9,24 - 5676: 9,28 - 5689: 0,1 - 5699: 1,1 - 5709: 2,1 - 5726: 3,0 - 5734: 3,1 - 5742: 4,0 - 5750: 4,1 - 5758: 8,12 - 5762: 9,4 - 5765: 9,12 - 5778: -8,12 - 5786: -4,0 - 5794: -4,1 - 5802: -3,0 - 5810: -3,1 - 5818: -2,1 - 5835: -1,1 - 5851: -4,-1 - 5859: 4,-1 - 5863: 10,-16 - 5866: 12,-10 - 5869: 3,-20 - 5872: 9,-17 - 5885: 6,16 - 5893: 6,17 - 5901: 6,18 - 5909: 6,19 - 5917: 6,20 - 5921: 9,24 - 5924: 9,28 + 883: 0,1 + 891: 1,1 + 899: 2,1 + 907: 3,0 + 915: 3,1 + 923: 4,0 + 931: 4,1 + 939: 8,12 + 943: 9,4 + 946: 9,12 + 959: -8,12 + 967: -4,0 + 975: -4,1 + 983: -3,0 + 991: -3,1 + 999: -2,1 + 1007: -1,1 + 1021: -4,-1 + 1029: 4,-1 + 1033: 10,-16 + 1036: 12,-10 + 1039: 3,-20 + 1042: 9,-17 + 1055: 6,16 + 1063: 6,17 + 1071: 6,18 + 1079: 6,19 + 1087: 6,20 + 1091: 9,24 + 1094: 9,28 + 1107: 0,1 + 1115: 1,1 + 1123: 2,1 + 1131: 3,0 + 1139: 3,1 + 1147: 4,0 + 1155: 4,1 + 1163: 8,12 + 1167: 9,4 + 1170: 9,12 + 1183: -8,12 + 1191: -4,0 + 1199: -4,1 + 1207: -3,0 + 1215: -3,1 + 1223: -2,1 + 1231: -1,1 + 1245: -4,-1 + 1253: 4,-1 + 1257: 10,-16 + 1260: 12,-10 + 1263: 3,-20 + 1266: 9,-17 + 1279: 6,16 + 1287: 6,17 + 1295: 6,18 + 1303: 6,19 + 1311: 6,20 + 1315: 9,24 + 1318: 9,28 + 1331: 0,1 + 1339: 1,1 + 1347: 2,1 + 1355: 3,0 + 1363: 3,1 + 1371: 4,0 + 1379: 4,1 + 1387: 8,12 + 1391: 9,4 + 1394: 9,12 + 1407: -8,12 + 1415: -4,0 + 1423: -4,1 + 1431: -3,0 + 1439: -3,1 + 1447: -2,1 + 1455: -1,1 + 1469: -4,-1 + 1477: 4,-1 + 1481: 10,-16 + 1484: 12,-10 + 1487: 3,-20 + 1490: 9,-17 + 1503: 6,16 + 1511: 6,17 + 1519: 6,18 + 1527: 6,19 + 1535: 6,20 + 1539: 9,24 + 1542: 9,28 + 1555: 0,1 + 1563: 1,1 + 1571: 2,1 + 1579: 3,0 + 1587: 3,1 + 1595: 4,0 + 1603: 4,1 + 1611: 8,12 + 1615: 9,4 + 1618: 9,12 + 1631: -8,12 + 1639: -4,0 + 1647: -4,1 + 1655: -3,0 + 1663: -3,1 + 1671: -2,1 + 1679: -1,1 + 1693: -4,-1 + 1701: 4,-1 + 1705: 10,-16 + 1708: 12,-10 + 1711: 3,-20 + 1714: 9,-17 + 1727: 6,16 + 1735: 6,17 + 1743: 6,18 + 1751: 6,19 + 1759: 6,20 + 1763: 9,24 + 1766: 9,28 + 1779: 0,1 + 1787: 1,1 + 1795: 2,1 + 1803: 3,0 + 1811: 3,1 + 1819: 4,0 + 1827: 4,1 + 1835: 8,12 + 1839: 9,4 + 1842: 9,12 + 1852: -4,0 + 1860: -4,1 + 1868: -3,0 + 1876: -3,1 + 1884: -2,1 + 1892: -1,1 + 1906: -4,-1 + 1914: 4,-1 + 1918: 10,-16 + 1921: 12,-10 + 1924: 3,-20 + 1927: 9,-17 + 1940: 6,16 + 1948: 6,17 + 1956: 6,18 + 1964: 6,19 + 1972: 6,20 + 1976: 9,24 + 1979: 9,28 + 1992: -8,12 + 2003: 0,1 + 2011: 1,1 + 2019: 2,1 + 2027: 3,0 + 2035: 3,1 + 2043: 4,0 + 2051: 4,1 + 2059: 8,12 + 2063: 9,4 + 2066: 9,12 + 2079: -8,12 + 2087: -4,0 + 2095: -4,1 + 2103: -3,0 + 2111: -3,1 + 2119: -2,1 + 2127: -1,1 + 2141: -4,-1 + 2149: 4,-1 + 2153: 10,-16 + 2156: 12,-10 + 2159: 3,-20 + 2162: 9,-17 + 2175: 6,16 + 2183: 6,17 + 2191: 6,18 + 2199: 6,19 + 2207: 6,20 + 2211: 9,24 + 2214: 9,28 + 2227: 0,1 + 2235: 1,1 + 2243: 2,1 + 2251: 3,0 + 2259: 3,1 + 2267: 4,0 + 2275: 4,1 + 2283: 8,12 + 2287: 9,4 + 2290: 9,12 + 2303: -8,12 + 2311: -4,0 + 2319: -4,1 + 2327: -3,0 + 2335: -3,1 + 2343: -2,1 + 2351: -1,1 + 2365: -4,-1 + 2373: 4,-1 + 2377: 10,-16 + 2380: 12,-10 + 2383: 3,-20 + 2386: 9,-17 + 2399: 6,16 + 2407: 6,17 + 2415: 6,18 + 2423: 6,19 + 2431: 6,20 + 2435: 9,24 + 2438: 9,28 + 2451: 0,1 + 2459: 1,1 + 2467: 2,1 + 2475: 3,0 + 2483: 3,1 + 2491: 4,0 + 2499: 4,1 + 2507: 8,12 + 2511: 9,4 + 2514: 9,12 + 2527: -8,12 + 2535: -4,0 + 2543: -4,1 + 2551: -3,0 + 2559: -3,1 + 2567: -2,1 + 2575: -1,1 + 2589: -4,-1 + 2597: 4,-1 + 2601: 10,-16 + 2604: 12,-10 + 2607: 3,-20 + 2610: 9,-17 + 2623: 6,16 + 2631: 6,17 + 2639: 6,18 + 2647: 6,19 + 2655: 6,20 + 2659: 9,24 + 2662: 9,28 + 2675: 0,1 + 2683: 1,1 + 2691: 2,1 + 2699: 3,0 + 2707: 3,1 + 2715: 4,0 + 2723: 4,1 + 2731: 8,12 + 2735: 9,4 + 2738: 9,12 + 2751: -8,12 + 2759: -4,0 + 2767: -4,1 + 2775: -3,0 + 2783: -3,1 + 2791: -2,1 + 2799: -1,1 + 2813: -4,-1 + 2821: 4,-1 + 2825: 10,-16 + 2828: 12,-10 + 2831: 3,-20 + 2834: 9,-17 + 2847: 6,16 + 2855: 6,17 + 2863: 6,18 + 2871: 6,19 + 2879: 6,20 + 2883: 9,24 + 2886: 9,28 + 2899: 0,1 + 2907: 1,1 + 2915: 2,1 + 2923: 3,0 + 2931: 3,1 + 2939: 4,0 + 2947: 4,1 + 2955: 8,12 + 2959: 9,4 + 2962: 9,12 + 2975: -8,12 + 2983: -4,0 + 2991: -4,1 + 2999: -3,0 + 3007: -3,1 + 3015: -2,1 + 3023: -1,1 + 3037: -4,-1 + 3045: 4,-1 + 3049: 10,-16 + 3052: 12,-10 + 3055: 3,-20 + 3058: 9,-17 + 3071: 6,16 + 3079: 6,17 + 3087: 6,18 + 3095: 6,19 + 3103: 6,20 + 3107: 9,24 + 3110: 9,28 + 3123: 0,1 + 3131: 1,1 + 3139: 2,1 + 3147: 3,0 + 3155: 3,1 + 3163: 4,0 + 3171: 4,1 + 3179: 8,12 + 3183: 9,4 + 3186: 9,12 + 3199: -8,12 + 3207: -4,0 + 3215: -4,1 + 3223: -3,0 + 3231: -3,1 + 3239: -2,1 + 3247: -1,1 + 3261: -4,-1 + 3269: 4,-1 + 3273: 10,-16 + 3276: 12,-10 + 3279: 3,-20 + 3282: 9,-17 + 3295: 6,16 + 3303: 6,17 + 3311: 6,18 + 3319: 6,19 + 3327: 6,20 + 3331: 9,24 + 3334: 9,28 + 3371: 0,1 + 3380: 1,1 + 3389: 2,1 + 3403: 3,0 + 3411: 3,1 + 3419: 4,0 + 3427: 4,1 + 3435: 8,12 + 3439: 9,4 + 3442: 9,12 + 3455: -8,12 + 3463: -4,0 + 3471: -4,1 + 3479: -3,0 + 3487: -3,1 + 3495: -2,1 + 3509: -1,1 + 3524: -4,-1 + 3532: 4,-1 + 3536: 10,-16 + 3539: 12,-10 + 3542: 3,-20 + 3545: 9,-17 + 3558: 6,16 + 3566: 6,17 + 3574: 6,18 + 3582: 6,19 + 3590: 6,20 + 3594: 9,24 + 3597: 9,28 + 3619: 0,1 + 3629: 1,1 + 3639: 2,1 + 3656: 3,0 + 3664: 3,1 + 3672: 4,0 + 3680: 4,1 + 3688: 8,12 + 3692: 9,4 + 3695: 9,12 + 3708: -8,12 + 3716: -4,0 + 3724: -4,1 + 3732: -3,0 + 3740: -3,1 + 3748: -2,1 + 3765: -1,1 + 3781: -4,-1 + 3789: 4,-1 + 3793: 10,-16 + 3796: 12,-10 + 3799: 3,-20 + 3802: 9,-17 + 3815: 6,16 + 3823: 6,17 + 3831: 6,18 + 3839: 6,19 + 3847: 6,20 + 3851: 9,24 + 3854: 9,28 + 3867: 0,1 + 3877: 1,1 + 3887: 2,1 + 3904: 3,0 + 3912: 3,1 + 3920: 4,0 + 3928: 4,1 + 3936: 8,12 + 3940: 9,4 + 3943: 9,12 + 3956: -8,12 + 3964: -4,0 + 3972: -4,1 + 3980: -3,0 + 3988: -3,1 + 3996: -2,1 + 4013: -1,1 + 4026: -4,-1 + 4034: 4,-1 + 4038: 10,-16 + 4041: 3,-20 + 4044: 9,-17 + 4057: 6,16 + 4065: 6,17 + 4073: 6,18 + 4081: 6,19 + 4089: 6,20 + 4093: 9,24 + 4096: 9,28 + 4108: 12,-10 + 4115: 0,1 + 4125: 1,1 + 4135: 2,1 + 4152: 3,0 + 4160: 3,1 + 4168: 4,0 + 4176: 4,1 + 4184: 8,12 + 4188: 9,4 + 4191: 9,12 + 4204: -8,12 + 4212: -4,0 + 4220: -4,1 + 4228: -3,0 + 4236: -3,1 + 4244: -2,1 + 4261: -1,1 + 4277: -4,-1 + 4285: 4,-1 + 4289: 10,-16 + 4292: 12,-10 + 4295: 3,-20 + 4298: 9,-17 + 4311: 6,16 + 4319: 6,17 + 4327: 6,18 + 4335: 6,19 + 4343: 6,20 + 4347: 9,24 + 4350: 9,28 + 4363: 0,1 + 4373: 1,1 + 4383: 2,1 + 4400: 3,0 + 4408: 3,1 + 4416: 4,0 + 4424: 4,1 + 4432: 8,12 + 4436: 9,4 + 4439: 9,12 + 4452: -8,12 + 4460: -4,0 + 4468: -4,1 + 4476: -3,0 + 4484: -3,1 + 4492: -2,1 + 4509: -1,1 + 4525: -4,-1 + 4533: 4,-1 + 4537: 10,-16 + 4540: 12,-10 + 4543: 3,-20 + 4546: 9,-17 + 4559: 6,16 + 4567: 6,17 + 4575: 6,18 + 4583: 6,19 + 4591: 6,20 + 4595: 9,24 + 4598: 9,28 + 4611: 0,1 + 4621: 1,1 + 4631: 2,1 + 4648: 3,0 + 4656: 3,1 + 4664: 4,0 + 4672: 4,1 + 4680: 8,12 + 4684: 9,4 + 4687: 9,12 + 4700: -8,12 + 4708: -4,0 + 4716: -4,1 + 4724: -3,0 + 4732: -3,1 + 4740: -2,1 + 4757: -1,1 + 4773: -4,-1 + 4781: 4,-1 + 4785: 10,-16 + 4788: 12,-10 + 4791: 3,-20 + 4794: 9,-17 + 4807: 6,16 + 4815: 6,17 + 4823: 6,18 + 4831: 6,19 + 4839: 6,20 + 4843: 9,24 + 4846: 9,28 + 4874: 0,1 + 4884: 1,1 + 4894: 2,1 + 4911: 3,0 + 4919: 3,1 + 4927: 4,0 + 4935: 4,1 + 4943: 8,12 + 4947: 9,4 + 4950: 9,12 + 4963: -8,12 + 4971: -4,0 + 4979: -4,1 + 4987: -3,0 + 4995: -3,1 + 5003: -2,1 + 5020: -1,1 + 5036: -4,-1 + 5044: 4,-1 + 5048: 10,-16 + 5051: 12,-10 + 5054: 3,-20 + 5057: 9,-17 + 5070: 6,16 + 5078: 6,17 + 5086: 6,18 + 5094: 6,19 + 5102: 6,20 + 5106: 9,24 + 5109: 9,28 + 5122: 0,1 + 5132: 1,1 + 5142: 2,1 + 5159: 3,0 + 5167: 3,1 + 5175: 4,0 + 5183: 4,1 + 5191: 8,12 + 5195: 9,4 + 5198: 9,12 + 5211: -8,12 + 5219: -4,0 + 5227: -4,1 + 5235: -3,0 + 5243: -3,1 + 5251: -2,1 + 5268: -1,1 + 5284: -4,-1 + 5292: 4,-1 + 5296: 10,-16 + 5299: 12,-10 + 5302: 3,-20 + 5305: 9,-17 + 5318: 6,16 + 5326: 6,17 + 5334: 6,18 + 5342: 6,19 + 5350: 6,20 + 5354: 9,24 + 5357: 9,28 + 5392: 0,1 + 5402: 1,1 + 5412: 2,1 + 5429: 3,0 + 5437: 3,1 + 5445: 4,0 + 5453: 4,1 + 5461: 8,12 + 5465: 9,4 + 5468: 9,12 + 5481: -8,12 + 5489: -4,0 + 5497: -4,1 + 5505: -3,0 + 5513: -3,1 + 5521: -2,1 + 5538: -1,1 + 5554: -4,-1 + 5562: 4,-1 + 5566: 10,-16 + 5569: 12,-10 + 5572: 3,-20 + 5575: 9,-17 + 5588: 6,16 + 5596: 6,17 + 5604: 6,18 + 5612: 6,19 + 5620: 6,20 + 5624: 9,24 + 5627: 9,28 + 5640: 0,1 + 5650: 1,1 + 5660: 2,1 + 5677: 3,0 + 5685: 3,1 + 5693: 4,0 + 5701: 4,1 + 5709: 8,12 + 5713: 9,4 + 5716: 9,12 + 5729: -8,12 + 5737: -4,0 + 5745: -4,1 + 5753: -3,0 + 5761: -3,1 + 5769: -2,1 + 5786: -1,1 + 5802: -4,-1 + 5810: 4,-1 + 5814: 10,-16 + 5817: 12,-10 + 5820: 3,-20 + 5823: 9,-17 + 5836: 6,16 + 5844: 6,17 + 5852: 6,18 + 5860: 6,19 + 5868: 6,20 + 5872: 9,24 + 5875: 9,28 + 5896: 0,1 + 5906: 1,1 + 5916: 2,1 + 5933: 3,0 + 5941: 3,1 + 5949: 4,0 + 5957: 4,1 + 5965: 8,12 + 5969: 9,4 + 5972: 9,12 + 5985: -8,12 + 5993: -4,0 + 6001: -4,1 + 6009: -3,0 + 6017: -3,1 + 6025: -2,1 + 6042: -1,1 + 6058: -4,-1 + 6066: 4,-1 + 6070: 10,-16 + 6073: 12,-10 + 6076: 3,-20 + 6079: 9,-17 + 6092: 6,16 + 6100: 6,17 + 6108: 6,18 + 6116: 6,19 + 6124: 6,20 + 6128: 9,24 + 6131: 9,28 + 6144: 0,1 + 6154: 1,1 + 6164: 2,1 + 6181: 3,0 + 6189: 3,1 + 6197: 4,0 + 6205: 4,1 + 6213: 8,12 + 6217: 9,4 + 6220: 9,12 + 6233: -8,12 + 6241: -4,0 + 6249: -4,1 + 6257: -3,0 + 6265: -3,1 + 6273: -2,1 + 6290: -1,1 + 6306: -4,-1 + 6314: 4,-1 + 6318: 10,-16 + 6321: 12,-10 + 6324: 3,-20 + 6327: 9,-17 + 6340: 6,16 + 6348: 6,17 + 6356: 6,18 + 6364: 6,19 + 6372: 6,20 + 6376: 9,24 + 6379: 9,28 + 6392: 0,1 + 6402: 1,1 + 6412: 2,1 + 6429: 3,0 + 6437: 3,1 + 6445: 4,0 + 6453: 4,1 + 6457: 9,4 + 6460: 9,12 + 6473: -8,12 + 6481: -4,0 + 6489: -4,1 + 6497: -3,0 + 6505: -3,1 + 6513: -2,1 + 6530: -1,1 + 6546: -4,-1 + 6554: 4,-1 + 6558: 10,-16 + 6561: 12,-10 + 6564: 3,-20 + 6567: 9,-17 + 6580: 6,16 + 6588: 6,17 + 6596: 6,18 + 6604: 6,19 + 6612: 6,20 + 6616: 9,24 + 6619: 9,28 + 6634: 8,12 + 6662: 0,1 + 6672: 1,1 + 6682: 2,1 + 6699: 3,0 + 6707: 3,1 + 6715: 4,0 + 6723: 4,1 + 6731: 8,12 + 6735: 9,4 + 6738: 9,12 + 6751: -8,12 + 6759: -4,0 + 6767: -4,1 + 6775: -3,0 + 6783: -3,1 + 6791: -2,1 + 6808: -1,1 + 6824: -4,-1 + 6832: 4,-1 + 6836: 10,-16 + 6839: 12,-10 + 6842: 3,-20 + 6845: 9,-17 + 6858: 6,16 + 6866: 6,17 + 6874: 6,18 + 6882: 6,19 + 6890: 6,20 + 6894: 9,24 + 6897: 9,28 - node: color: '#FFFFFFFF' id: Rust decals: - 849: -6,11 - 850: -1,11 - 851: -8,34 + 805: -6,11 + 806: -1,11 + 807: -8,34 - node: color: '#FFFFFFFF' id: TechCornerN decals: - 292: -5,31 + 261: -5,31 - node: color: '#FFFFFFFF' id: TechE decals: - 255: 7,6 - 284: -2,30 - 285: -2,31 - 295: -4,36 - 296: -4,37 - 382: 5,25 - 383: 5,26 - 384: 5,27 - 438: -2,-7 - 439: -2,-6 - 482: 6,-4 - 483: 6,-3 - 484: 6,-2 - 485: 6,-1 - 486: 6,0 - 487: 6,1 - 488: 6,2 - 567: -10,-13 - 568: -10,-11 + 253: -2,30 + 254: -2,31 + 264: -4,36 + 265: -4,37 + 351: 5,25 + 352: 5,26 + 353: 5,27 + 406: -2,-7 + 407: -2,-6 + 450: 6,-4 + 451: 6,-3 + 452: 6,-2 + 453: 6,-1 + 454: 6,0 + 455: 6,1 + 456: 6,2 + 535: -10,-13 + 536: -10,-11 + - node: + color: '#FFFFFFFF' + id: TechN + decals: + 260: -6,31 + 333: -8,25 + 334: -7,25 + 340: -6,25 + 345: 6,25 + 346: 7,25 + 347: 8,25 + 382: 2,15 + 383: 3,15 + 384: -2,15 + 385: -3,15 + 386: 4,15 + 387: -4,15 + 410: 3,-5 + 411: -3,-5 + 416: -1,-4 + 417: 0,-4 + 418: 1,-4 + 499: 9,-13 + 500: 10,-13 + 533: -9,-14 + 534: -8,-14 - node: + angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechN decals: - 242: 6,10 - 252: 6,7 - 291: -6,31 - 364: -8,25 - 365: -7,25 - 371: -6,25 - 376: 6,25 - 377: 7,25 - 378: 8,25 - 414: 2,15 - 415: 3,15 - 416: -2,15 - 417: -3,15 - 418: 4,15 - 419: -4,15 - 442: 3,-5 - 443: -3,-5 - 448: -1,-4 - 449: 0,-4 - 450: 1,-4 - 531: 9,-13 - 532: 10,-13 - 565: -9,-14 - 566: -8,-14 + 6639: 6,6 + 6645: 6,11 + - node: + color: '#FFFFFFFF' + id: TechNE + decals: + 408: -2,-5 - node: + angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechNE decals: - 245: 7,10 - 248: 7,7 - 440: -2,-5 + 6628: 7,6 + 6641: 7,11 + - node: + color: '#FFFFFFFF' + id: TechNW + decals: + 409: 2,-5 - node: + angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechNW decals: - 246: 5,10 - 250: 5,7 - 441: 2,-5 + 6638: 5,6 + 6642: 5,11 + - node: + color: '#FFFFFFFF' + id: TechS + decals: + 240: -1,32 + 241: 0,32 + 242: 1,32 + 335: -8,27 + 336: -7,27 + 341: -6,27 + 348: 6,27 + 349: 8,27 + 350: 7,27 + 369: 7,28 + 370: 6,28 + 371: -7,28 + 372: -6,28 + 414: 3,-3 + 415: -3,-3 + 487: -1,-7 + 488: 0,-7 + 489: 1,-7 + 490: -1,-3 + 491: 1,-3 + 492: 0,-3 + 497: 9,-11 + 498: 10,-11 + 531: -9,-10 + 532: -8,-10 - node: + angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechS decals: - 243: 6,9 - 253: 6,5 - 271: -1,32 - 272: 0,32 - 273: 1,32 - 366: -8,27 - 367: -7,27 - 372: -6,27 - 379: 6,27 - 380: 8,27 - 381: 7,27 - 400: 7,28 - 401: 6,28 - 402: -7,28 - 403: -6,28 - 446: 3,-3 - 447: -3,-3 - 519: -1,-7 - 520: 0,-7 - 521: 1,-7 - 522: -1,-3 - 523: 1,-3 - 524: 0,-3 - 529: 9,-11 - 530: 10,-11 - 563: -9,-10 - 564: -8,-10 + 6640: 6,5 + 6646: 6,10 + - node: + color: '#FFFFFFFF' + id: TechSE + decals: + 413: -2,-3 - node: + angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechSE decals: - 247: 7,9 - 251: 7,5 - 445: -2,-3 + 6637: 7,5 + 6644: 7,10 + - node: + color: '#FFFFFFFF' + id: TechSW + decals: + 412: 2,-3 - node: + angle: 6.283185307179586 rad color: '#FFFFFFFF' id: TechSW decals: - 244: 5,9 - 249: 5,5 - 444: 2,-3 + 6627: 5,5 + 6643: 5,10 - node: color: '#FFFFFFFF' id: TechW decals: - 254: 5,6 - 286: 2,30 - 287: 2,31 - 288: -5,32 - 289: -5,33 - 290: -5,34 - 297: 4,36 - 298: 4,37 - 373: -5,25 - 374: -5,26 - 375: -5,27 - 436: 2,-7 - 437: 2,-6 - 489: -6,-4 - 490: -6,-3 - 491: -6,-2 - 492: -6,-1 - 493: -6,0 - 494: -6,1 - 495: -6,2 - 533: 10,-12 + 255: 2,30 + 256: 2,31 + 257: -5,32 + 258: -5,33 + 259: -5,34 + 266: 4,36 + 267: 4,37 + 342: -5,25 + 343: -5,26 + 344: -5,27 + 404: 2,-7 + 405: 2,-6 + 457: -6,-4 + 458: -6,-3 + 459: -6,-2 + 460: -6,-1 + 461: -6,0 + 462: -6,1 + 463: -6,2 + 501: 10,-12 - node: color: '#EFB34196' id: TrimWarnNorth decals: - 4907: 0,22 - 5418: 0,25 + 4858: 0,22 + 5369: 0,25 - node: color: '#EFB34196' id: TrimWarnNorthEast decals: - 4905: 1,22 - 5417: 1,25 + 4856: 1,22 + 5368: 1,25 - node: color: '#EFB34196' id: TrimWarnNorthWest decals: - 4906: -1,22 - 5416: -1,25 + 4857: -1,22 + 5367: -1,25 - node: color: '#EFB34196' id: TrimWarnSouth decals: - 4908: 0,21 - 5419: 0,24 + 4859: 0,21 + 5370: 0,24 - node: color: '#EFB34196' id: TrimWarnSouthEast decals: - 4903: 1,21 - 5414: 1,24 + 4854: 1,21 + 5365: 1,24 - node: color: '#EFB34196' id: TrimWarnSouthWest decals: - 4904: -1,21 - 5415: -1,24 + 4855: -1,21 + 5366: -1,24 - node: color: '#EFB34196' id: TrimlineEast decals: - 5423: -2,23 - 5426: 2,23 + 5374: -2,23 + 5377: 2,23 - node: color: '#EFB34196' id: TrimlineNorthEnd decals: - 5424: -2,24 - 5427: 2,24 + 5375: -2,24 + 5378: 2,24 - node: color: '#EFB34196' id: TrimlineSouthEnd decals: - 4909: 2,22 - 4910: -2,22 + 4860: 2,22 + 4861: -2,22 - node: color: '#EFB34196' id: TrimlineWest decals: - 5422: -2,23 - 5425: 2,23 + 5373: -2,23 + 5376: 2,23 - node: color: '#EFB34196' id: WarnBoxGreyscale decals: - 38: -7,16 - 39: -7,18 - 40: -7,20 - 41: 7,20 - 42: 7,18 - 43: 7,16 - 44: -8,22 - 45: -8,13 - 46: 8,13 - 47: 8,22 - 56: 8,-20 - 57: 0,-21 - 58: -8,-20 - 59: -7,34 - 60: -8,34 - 61: 7,34 - 62: 8,34 - 64: -7,36 - 65: 7,36 - 151: -8,2 - 152: -8,-4 - 153: 8,-4 - 154: 8,2 - 155: -6,38 - 156: 6,38 - 157: 8,-1 - 158: -8,-1 + 30: -7,16 + 31: -7,18 + 32: -7,20 + 33: 7,20 + 34: 7,18 + 35: 7,16 + 36: -8,22 + 37: -8,13 + 38: 8,13 + 39: 8,22 + 48: 8,-20 + 49: 0,-21 + 50: -8,-20 + 51: -7,34 + 52: -8,34 + 53: 7,34 + 54: 8,34 + 56: -7,36 + 57: 7,36 + 142: -8,2 + 143: -8,-4 + 144: 8,-4 + 145: 8,2 + 146: -6,38 + 147: 6,38 + 148: 8,-1 + 149: -8,-1 - node: color: '#EFB34196' id: WarnCornerSmallNE decals: - 262: 5,5 - 277: 2,30 - 294: -5,34 - 332: -4,20 - 333: 2,20 - 5431: 2,24 + 246: 2,30 + 263: -5,34 + 301: -4,20 + 302: 2,20 + 5382: 2,24 - node: angle: 6.283185307179586 rad color: '#EFB34196' id: WarnCornerSmallNE decals: - 4916: -4,24 + 4867: -4,24 - node: color: '#EFB34196' id: WarnCornerSmallNW decals: - 260: 7,5 - 275: -2,30 - 330: 4,20 - 331: -2,20 - 5430: -2,24 + 244: -2,30 + 299: 4,20 + 300: -2,20 + 5381: -2,24 - node: angle: 6.283185307179586 rad color: '#EFB34196' id: WarnCornerSmallNW decals: - 4917: 4,24 + 4868: 4,24 - node: color: '#EFB34196' id: WarnCornerSmallSE decals: - 263: 5,7 - 282: -1,30 - 324: -4,24 - 325: -4,28 - 326: 2,28 - 5433: 2,24 + 251: -1,30 + 293: -4,24 + 294: -4,28 + 295: 2,28 + 5384: 2,24 - node: color: '#EFB34196' id: WarnCornerSmallSW decals: - 261: 7,7 - 283: 1,30 - 327: 4,28 - 328: -2,28 - 329: 4,24 - 5429: -2,24 + 252: 1,30 + 296: 4,28 + 297: -2,28 + 298: 4,24 + 5380: -2,24 - node: color: '#EFB34196' id: WarnEndE decals: - 24: 7,11 - 25: 7,11 - 100: 3,-17 - 101: 3,-17 + 92: 3,-17 + 93: 3,-17 - node: color: '#EFB34196' id: WarnEndW decals: - 26: 5,11 - 27: 5,11 - 98: 2,-17 - 99: 2,-17 + 90: 2,-17 + 91: 2,-17 - node: color: '#EFB34196' id: WarnFull decals: - 368: -8,26 - 369: -7,26 - 385: 7,26 - 386: 8,26 - 404: -4,16 - 405: -4,17 - 406: -4,18 + 337: -8,26 + 338: -7,26 + 354: 7,26 + 355: 8,26 + 373: -4,16 + 374: -4,17 + 375: -4,18 - node: color: '#EFB34196' id: WarnFullGreyscale @@ -6025,364 +7038,361 @@ entities: 21: -8,31 22: 8,31 23: 8,30 - 32: -8,32 - 33: 8,32 - 34: 10,-8 - 35: 9,-8 - 36: -9,-8 - 37: -10,-8 - 48: -6,37 - 49: -5,38 - 50: 5,38 - 51: 6,37 - 52: -8,-5 - 53: -8,3 - 54: 8,3 - 55: 8,-5 + 24: -8,32 + 25: 8,32 + 26: 10,-8 + 27: 9,-8 + 28: -9,-8 + 29: -10,-8 + 40: -6,37 + 41: -5,38 + 42: 5,38 + 43: 6,37 + 44: -8,-5 + 45: -8,3 + 46: 8,3 + 47: 8,-5 - node: color: '#EFB34196' id: WarnLineE decals: - 88: -7,-12 - 89: -7,-12 - 94: 8,-12 - 95: 8,-12 - 102: -3,31 - 103: -3,31 - 124: -4,6 - 125: -4,6 - 126: 3,31 - 127: 3,31 - 130: 1,16 - 131: 1,16 - 134: 4,8 - 135: 4,8 - 149: -1,16 - 150: -1,16 - 159: -7,-2 - 160: -7,0 - 161: -7,0 - 162: -7,-2 - 163: 7,-2 - 164: 7,-2 - 165: 7,0 - 166: 7,0 - 175: 1,38 - 178: 1,37 - 179: 1,35 - 180: 1,36 - 189: -9,27 - 190: -9,27 - 191: -9,26 - 192: -9,26 - 193: -9,25 - 194: -9,25 - 195: 9,27 - 196: 9,27 - 197: 9,26 - 198: 9,26 - 199: 9,25 - 200: 9,25 - 201: -8,22 - 213: -8,13 - 214: -7,15 - 215: -7,16 - 216: -7,18 - 217: -7,20 - 218: -8,2 - 219: -8,-1 - 220: -8,-4 - 256: 5,6 - 265: 3,36 - 266: 3,37 - 270: -5,36 - 276: 2,31 - 299: 2,25 - 300: 2,26 - 301: 2,27 - 302: -4,25 - 303: -4,26 - 304: -4,21 - 305: -4,22 - 306: -4,23 - 354: 4,25 - 355: 4,26 - 356: 4,27 - 387: 6,26 - 388: 9,25 - 389: 9,26 - 390: 9,27 - 391: -9,25 - 392: -9,26 - 393: -9,27 - 420: 4,3 - 421: -4,3 - 424: -6,13 - 425: -6,14 - 452: 3,-4 - 466: -5,-4 - 506: -5,3 - 534: -8,-13 - 535: -8,-12 - 536: -8,-11 - 5432: 2,23 - 5934: 1,17 - 5935: 1,15 - 5936: -1,15 - 5937: -1,17 + 80: -7,-12 + 81: -7,-12 + 86: 8,-12 + 87: 8,-12 + 94: -3,31 + 95: -3,31 + 116: -4,6 + 117: -4,6 + 118: 3,31 + 119: 3,31 + 122: 1,16 + 123: 1,16 + 126: 4,8 + 127: 4,8 + 140: -1,16 + 141: -1,16 + 150: -7,-2 + 151: -7,0 + 152: -7,0 + 153: -7,-2 + 154: 7,-2 + 155: 7,-2 + 156: 7,0 + 157: 7,0 + 166: 1,38 + 169: 1,37 + 170: 1,35 + 171: 1,36 + 180: -9,27 + 181: -9,27 + 182: -9,26 + 183: -9,26 + 184: -9,25 + 185: -9,25 + 186: 9,27 + 187: 9,27 + 188: 9,26 + 189: 9,26 + 190: 9,25 + 191: 9,25 + 192: -8,22 + 204: -8,13 + 205: -7,15 + 206: -7,16 + 207: -7,18 + 208: -7,20 + 209: -8,2 + 210: -8,-1 + 211: -8,-4 + 234: 3,36 + 235: 3,37 + 239: -5,36 + 245: 2,31 + 268: 2,25 + 269: 2,26 + 270: 2,27 + 271: -4,25 + 272: -4,26 + 273: -4,21 + 274: -4,22 + 275: -4,23 + 323: 4,25 + 324: 4,26 + 325: 4,27 + 356: 6,26 + 357: 9,25 + 358: 9,26 + 359: 9,27 + 360: -9,25 + 361: -9,26 + 362: -9,27 + 388: 4,3 + 389: -4,3 + 392: -6,13 + 393: -6,14 + 420: 3,-4 + 434: -5,-4 + 474: -5,3 + 502: -8,-13 + 503: -8,-12 + 504: -8,-11 + 5383: 2,23 + 5885: 1,17 + 5886: 1,15 + 5887: -1,15 + 5888: -1,17 - node: angle: 3.141592653589793 rad color: '#EFB34196' id: WarnLineE decals: - 4913: -2,22 - 4914: -2,21 + 4864: -2,22 + 4865: -2,21 - node: angle: 6.283185307179586 rad color: '#EFB34196' id: WarnLineE decals: - 4911: 2,22 - 4912: 2,21 - 4915: -4,27 + 4862: 2,22 + 4863: 2,21 + 4866: -4,27 + 6651: 7,9 + 6652: 7,7 + 6653: 7,8 - node: color: '#EFB34196' - id: WarnLineGreyscaleE + id: WarnLineN decals: - 138: 7,8 + 60: 0,13 + 61: 0,13 + 62: 0,19 + 63: 0,19 + 68: -6,-8 + 69: -6,-8 + 70: 7,-8 + 71: 7,-8 + 74: 5,-15 + 75: 5,-15 + 84: -3,-15 + 85: -3,-15 + 100: -4,35 + 101: -4,35 + 102: 4,35 + 103: 4,35 + 108: -6,23 + 109: -6,23 + 110: 6,23 + 111: 6,23 + 134: -6,15 + 135: -6,15 + 136: 6,15 + 137: 6,15 + 215: -8,8 + 216: -8,8 + 232: -8,9 + 250: 0,30 + 285: 3,28 + 286: -3,28 + 287: -3,24 + 288: 3,24 + 309: 0,20 + 376: -3,19 + 378: 2,19 + 379: 3,19 + 439: -6,-5 + 440: -5,-5 + 441: 5,-5 + 442: 6,-5 + 508: -5,-14 + 509: -3,-14 + 5883: -2,19 - node: color: '#EFB34196' - id: WarnLineN + id: WarnLineS decals: - 28: 6,11 - 29: 6,11 - 68: 0,13 - 69: 0,13 - 70: 0,19 - 71: 0,19 - 76: -6,-8 - 77: -6,-8 - 78: 7,-8 - 79: 7,-8 - 82: 5,-15 - 83: 5,-15 - 92: -3,-15 - 93: -3,-15 - 108: -4,35 - 109: -4,35 - 110: 4,35 - 111: 4,35 - 116: -6,23 - 117: -6,23 - 118: 6,23 - 119: 6,23 - 143: -6,15 - 144: -6,15 - 145: 6,15 - 146: 6,15 - 224: -8,8 - 225: -8,8 - 241: -8,9 - 257: 6,7 - 281: 0,30 - 316: 3,28 - 317: -3,28 - 318: -3,24 - 319: 3,24 - 340: 0,20 - 408: -3,19 - 410: 2,19 - 411: 3,19 - 471: -6,-5 - 472: -5,-5 - 473: 5,-5 - 474: 6,-5 - 540: -5,-14 - 541: -3,-14 - 5932: -2,19 + 78: -7,-12 + 79: -7,-12 + 88: 8,-12 + 89: 8,-12 + 112: -3,31 + 113: -3,31 + 114: -4,6 + 115: -4,6 + 120: 3,31 + 121: 3,31 + 124: 1,16 + 125: 1,16 + 128: 4,8 + 129: 4,8 + 138: -1,16 + 139: -1,16 + 158: -7,0 + 159: -7,0 + 160: -7,-2 + 161: -7,-2 + 162: 7,-2 + 163: 7,-2 + 164: 7,0 + 165: 7,0 + 167: -1,38 + 168: -1,37 + 172: -1,36 + 173: -1,35 + 174: -9,25 + 175: -9,25 + 176: -9,26 + 177: -9,26 + 178: -9,27 + 179: -9,27 + 193: 9,27 + 194: 9,27 + 195: 9,26 + 196: 9,26 + 197: 9,25 + 198: 9,25 + 199: 8,22 + 200: 7,20 + 201: 7,18 + 202: 7,16 + 203: 8,13 + 212: 8,-4 + 213: 8,-1 + 214: 8,2 + 233: 5,8 + 236: -3,36 + 237: -3,37 + 238: 5,36 + 243: -2,31 + 276: 4,21 + 277: 4,22 + 278: 4,23 + 279: 4,25 + 280: 4,26 + 281: 4,27 + 282: -2,25 + 283: -2,26 + 284: -2,27 + 321: -4,25 + 322: -4,26 + 339: -6,26 + 363: -9,25 + 364: -9,26 + 365: -9,27 + 366: 9,25 + 367: 9,26 + 368: 9,27 + 390: 4,3 + 391: -4,3 + 394: 6,13 + 395: 6,14 + 419: -3,-4 + 433: 5,-4 + 473: 5,3 + 505: -6,-13 + 506: -6,-12 + 507: -6,-11 + 5379: -2,23 + 5889: -1,17 + 5890: -1,15 - node: + angle: 6.283185307179586 rad color: '#EFB34196' id: WarnLineS decals: - 86: -7,-12 - 87: -7,-12 - 96: 8,-12 - 97: 8,-12 - 120: -3,31 - 121: -3,31 - 122: -4,6 - 123: -4,6 - 128: 3,31 - 129: 3,31 - 132: 1,16 - 133: 1,16 - 136: 4,8 - 137: 4,8 - 147: -1,16 - 148: -1,16 - 167: -7,0 - 168: -7,0 - 169: -7,-2 - 170: -7,-2 - 171: 7,-2 - 172: 7,-2 - 173: 7,0 - 174: 7,0 - 176: -1,38 - 177: -1,37 - 181: -1,36 - 182: -1,35 - 183: -9,25 - 184: -9,25 - 185: -9,26 - 186: -9,26 - 187: -9,27 - 188: -9,27 - 202: 9,27 - 203: 9,27 - 204: 9,26 - 205: 9,26 - 206: 9,25 - 207: 9,25 - 208: 8,22 - 209: 7,20 - 210: 7,18 - 211: 7,16 - 212: 8,13 - 221: 8,-4 - 222: 8,-1 - 223: 8,2 - 258: 7,6 - 264: 5,8 - 267: -3,36 - 268: -3,37 - 269: 5,36 - 274: -2,31 - 307: 4,21 - 308: 4,22 - 309: 4,23 - 310: 4,25 - 311: 4,26 - 312: 4,27 - 313: -2,25 - 314: -2,26 - 315: -2,27 - 352: -4,25 - 353: -4,26 - 370: -6,26 - 394: -9,25 - 395: -9,26 - 396: -9,27 - 397: 9,25 - 398: 9,26 - 399: 9,27 - 422: 4,3 - 423: -4,3 - 426: 6,13 - 427: 6,14 - 451: -3,-4 - 465: 5,-4 - 505: 5,3 - 537: -6,-13 - 538: -6,-12 - 539: -6,-11 - 5428: -2,23 - 5938: -1,17 - 5939: -1,15 + 6654: 5,9 + 6655: 5,7 - node: color: '#EFB34196' id: WarnLineW decals: - 30: 6,11 - 31: 6,11 - 66: 0,13 - 67: 0,13 - 72: 0,19 - 73: 0,19 - 74: -6,-8 - 75: -6,-8 - 80: 7,-8 - 81: 7,-8 - 84: 5,-15 - 85: 5,-15 - 90: -3,-15 - 91: -3,-15 - 104: -4,35 - 105: -4,35 - 106: 4,35 - 107: 4,35 - 112: -6,23 - 113: -6,23 - 114: 6,23 - 115: 6,23 - 139: -6,15 - 140: -6,15 - 141: 6,15 - 142: 6,15 - 259: 6,5 - 278: -1,31 - 279: 0,31 - 280: 1,31 - 293: -4,34 - 320: 3,20 - 321: -3,20 - 322: -3,24 - 323: 3,24 - 363: 0,28 - 409: -3,19 - 412: 2,19 - 413: 3,19 - 467: 5,-5 - 468: 6,-5 - 469: -5,-5 - 470: -6,-5 - 525: 3,-13 - 526: 4,-13 - 527: 5,-13 - 528: 6,-13 - 542: -3,-16 - 543: -5,-16 - 5933: -2,19 + 58: 0,13 + 59: 0,13 + 64: 0,19 + 65: 0,19 + 66: -6,-8 + 67: -6,-8 + 72: 7,-8 + 73: 7,-8 + 76: 5,-15 + 77: 5,-15 + 82: -3,-15 + 83: -3,-15 + 96: -4,35 + 97: -4,35 + 98: 4,35 + 99: 4,35 + 104: -6,23 + 105: -6,23 + 106: 6,23 + 107: 6,23 + 130: -6,15 + 131: -6,15 + 132: 6,15 + 133: 6,15 + 247: -1,31 + 248: 0,31 + 249: 1,31 + 262: -4,34 + 289: 3,20 + 290: -3,20 + 291: -3,24 + 292: 3,24 + 332: 0,28 + 377: -3,19 + 380: 2,19 + 381: 3,19 + 435: 5,-5 + 436: 6,-5 + 437: -5,-5 + 438: -6,-5 + 493: 3,-13 + 494: 4,-13 + 495: 5,-13 + 496: 6,-13 + 510: -3,-16 + 511: -5,-16 + 5884: -2,19 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 435: 1,-9 + 403: 1,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 434: -1,-9 + 402: -1,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 433: 1,-11 + 401: 1,-11 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 428: -1,-11 + 396: -1,-11 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 429: 1,-10 + 397: 1,-10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 430: 0,-9 + 398: 0,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 431: 0,-11 + 399: 0,-11 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 432: -1,-10 + 400: -1,-10 - type: RadiationGridResistance - type: GridAtmosphere version: 2 @@ -6627,7 +7637,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1121 + - 1139 - type: Physics canCollide: False - proto: AAAHardpointMediumBallistic @@ -6841,7 +7851,7 @@ entities: - type: ApcPowerReceiver powerLoad: 25000 - type: Battery - startingCharge: 80352.86 + startingCharge: 77516.22 - type: ApcPowerReceiverBattery enabled: True - type: BallisticAmmoProvider @@ -6887,12 +7897,12 @@ entities: parent: 1 - type: DeviceList devices: - - 1373 - - 1376 - - 1374 - - 1377 - - 1378 - - 1375 + - 1399 + - 1402 + - 1400 + - 1403 + - 1404 + - 1401 - uid: 35 components: - type: Transform @@ -6901,14 +7911,14 @@ entities: parent: 1 - type: DeviceList configurators: - - 1441 + - 1468 devices: - - 1373 - - 1376 - - 1374 - - 1377 - - 1378 - - 1375 + - 1399 + - 1402 + - 1400 + - 1403 + - 1404 + - 1401 - proto: AirCanister entities: - uid: 36 @@ -6916,14 +7926,14 @@ entities: - type: Transform pos: 10.5,-11.5 parent: 1 - - uid: 2191 + - uid: 37 components: - type: Transform pos: -2.5,14.5 parent: 1 - proto: AirlockCommand entities: - - uid: 37 + - uid: 38 components: - type: Transform rot: 1.5707963267948966 rad @@ -6931,19 +7941,19 @@ entities: parent: 1 - proto: AirlockCommandLockedNCWL entities: - - uid: 38 + - uid: 39 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,13.5 parent: 1 - - uid: 39 + - uid: 40 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-7.5 parent: 1 - - uid: 40 + - uid: 41 components: - type: Transform rot: -1.5707963267948966 rad @@ -7006,43 +8016,43 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,6.5 parent: 1 - - uid: 53 + - uid: 51 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,31.5 parent: 1 - - uid: 54 + - uid: 52 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 1 - - uid: 55 + - uid: 53 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,31.5 parent: 1 - - uid: 56 + - uid: 54 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 1 - - uid: 57 + - uid: 55 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-1.5 parent: 1 - - uid: 58 + - uid: 56 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 1 - - uid: 59 + - uid: 57 components: - type: Transform rot: 1.5707963267948966 rad @@ -7050,13 +8060,13 @@ entities: parent: 1 - proto: AirlockCommandLockedNCWLJail entities: - - uid: 60 + - uid: 58 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-14.5 parent: 1 - - uid: 61 + - uid: 59 components: - type: Transform rot: 3.141592653589793 rad @@ -7064,7 +8074,7 @@ entities: parent: 1 - proto: AirlockCommandLockedNCWLKommissar entities: - - uid: 62 + - uid: 60 components: - type: Transform rot: 3.141592653589793 rad @@ -7072,41 +8082,41 @@ entities: parent: 1 - proto: AirlockExternal entities: - - uid: 63 + - uid: 61 components: - type: Transform pos: 4.5,35.5 parent: 1 - proto: AirlockExternalLocked entities: - - uid: 64 + - uid: 62 components: - type: Transform pos: 6.5,21.5 parent: 1 - - uid: 65 + - uid: 63 components: - type: Transform pos: -5.5,15.5 parent: 1 - - uid: 66 + - uid: 64 components: - type: Transform pos: -5.5,21.5 parent: 1 - - uid: 67 + - uid: 65 components: - type: Transform pos: 6.5,15.5 parent: 1 - - uid: 68 + - uid: 66 components: - type: Transform pos: -3.5,35.5 parent: 1 - proto: AirlockMaint entities: - - uid: 69 + - uid: 67 components: - type: Transform rot: 3.141592653589793 rad @@ -7114,34 +8124,34 @@ entities: parent: 1 - proto: AirlockMaintHorizontal entities: - - uid: 70 + - uid: 68 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 71 + - uid: 69 components: - type: Transform pos: -0.5,-13.5 parent: 1 - - uid: 72 + - uid: 70 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-15.5 parent: 1 - - uid: 73 + - uid: 71 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-15.5 parent: 1 - - uid: 74 + - uid: 72 components: - type: Transform pos: 8.5,-11.5 parent: 1 - - uid: 75 + - uid: 73 components: - type: Transform rot: 3.141592653589793 rad @@ -7149,37 +8159,37 @@ entities: parent: 1 - proto: AirlockShuttle entities: - - uid: 76 + - uid: 74 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,25.5 parent: 1 - - uid: 77 + - uid: 75 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,27.5 parent: 1 - - uid: 78 + - uid: 76 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,38.5 parent: 1 - - uid: 79 + - uid: 77 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,38.5 parent: 1 - - uid: 80 + - uid: 78 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,25.5 parent: 1 - - uid: 81 + - uid: 79 components: - type: Transform rot: 1.5707963267948966 rad @@ -7187,69 +8197,69 @@ entities: parent: 1 - proto: AirTankFilled entities: - - uid: 83 + - uid: 81 components: - type: Transform - parent: 82 + parent: 80 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 89 + - uid: 87 components: - type: Transform - parent: 88 + parent: 86 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 95 + - uid: 93 components: - type: Transform - parent: 94 + parent: 92 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 101 + - uid: 99 components: - type: Transform - parent: 100 + parent: 98 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 107 + - uid: 105 components: - type: Transform - parent: 106 + parent: 104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 113 + - uid: 111 components: - type: Transform - parent: 112 + parent: 110 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 119 + - uid: 117 components: - type: Transform - parent: 118 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 125 + - uid: 123 components: - type: Transform - parent: 124 + parent: 122 - type: Physics canCollide: False - type: InsideEntityStorage - proto: AmeController entities: - - uid: 130 + - uid: 128 components: - type: Transform pos: 3.5,-12.5 @@ -7262,33 +8272,33 @@ entities: fuelSlot: !type:ContainerSlot showEnts: False occludes: True - ent: 131 + ent: 129 - proto: AmeJar entities: - - uid: 131 + - uid: 129 components: - type: Transform - parent: 130 + parent: 128 - type: Physics canCollide: False - - uid: 132 + - uid: 130 components: - type: Transform pos: 2.1912324,-12.405361 parent: 1 - - uid: 133 + - uid: 131 components: - type: Transform pos: 2.3398516,-12.405361 parent: 1 - - uid: 134 + - uid: 132 components: - type: Transform pos: 2.5033343,-12.405361 parent: 1 - proto: AmeShielding entities: - - uid: 135 + - uid: 133 components: - type: Transform pos: 5.5,-9.5 @@ -7296,12 +8306,12 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 136 + - uid: 134 components: - type: Transform pos: 5.5,-8.5 parent: 1 - - uid: 137 + - uid: 135 components: - type: Transform pos: 5.5,-10.5 @@ -7309,17 +8319,17 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 138 + - uid: 136 components: - type: Transform pos: 5.5,-11.5 parent: 1 - - uid: 139 + - uid: 137 components: - type: Transform pos: 4.5,-8.5 parent: 1 - - uid: 140 + - uid: 138 components: - type: Transform pos: 4.5,-9.5 @@ -7327,7 +8337,7 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 141 + - uid: 139 components: - type: Transform pos: 4.5,-10.5 @@ -7335,95 +8345,95 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 142 + - uid: 140 components: - type: Transform pos: 4.5,-11.5 parent: 1 - - uid: 143 + - uid: 141 components: - type: Transform pos: 3.5,-8.5 parent: 1 - - uid: 144 + - uid: 142 components: - type: Transform pos: 3.5,-9.5 parent: 1 - - uid: 145 + - uid: 143 components: - type: Transform pos: 3.5,-10.5 parent: 1 - - uid: 146 + - uid: 144 components: - type: Transform pos: 3.5,-11.5 parent: 1 - - uid: 147 + - uid: 145 components: - type: Transform pos: 6.5,-8.5 parent: 1 - - uid: 148 + - uid: 146 components: - type: Transform pos: 6.5,-10.5 parent: 1 - - uid: 149 + - uid: 147 components: - type: Transform pos: 6.5,-11.5 parent: 1 - - uid: 150 + - uid: 148 components: - type: Transform pos: 6.5,-9.5 parent: 1 - proto: APCBasic entities: - - uid: 152 + - uid: 149 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 parent: 1 - - uid: 153 + - uid: 150 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 1 - - uid: 154 + - uid: 151 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,6.5 parent: 1 - - uid: 155 + - uid: 152 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,19.5 parent: 1 - - uid: 156 + - uid: 153 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 157 + - uid: 154 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-14.5 parent: 1 - - uid: 158 + - uid: 155 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 1 - - uid: 159 + - uid: 156 components: - type: Transform rot: 3.141592653589793 rad @@ -7431,163 +8441,163 @@ entities: parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 160 + - uid: 157 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,27.5 parent: 1 - - uid: 161 + - uid: 158 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,15.5 parent: 1 - - uid: 162 + - uid: 159 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,15.5 parent: 1 - - uid: 163 + - uid: 160 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,21.5 parent: 1 - - uid: 164 + - uid: 161 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,21.5 parent: 1 - - uid: 165 + - uid: 162 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,27.5 parent: 1 - - uid: 166 + - uid: 163 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,25.5 parent: 1 - - uid: 167 + - uid: 164 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,25.5 parent: 1 - - uid: 168 + - uid: 165 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 1 - - uid: 169 + - uid: 166 components: - type: Transform pos: -3.5,38.5 parent: 1 - - uid: 170 + - uid: 167 components: - type: Transform pos: 4.5,38.5 parent: 1 - - uid: 171 + - uid: 168 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-1.5 parent: 1 - - uid: 172 + - uid: 169 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,22.5 parent: 1 - - uid: 173 + - uid: 170 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,13.5 parent: 1 - - uid: 174 + - uid: 171 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,22.5 parent: 1 - - uid: 175 + - uid: 172 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,13.5 parent: 1 - - uid: 176 + - uid: 173 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-1.5 parent: 1 - - uid: 177 + - uid: 174 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 1 - - uid: 178 + - uid: 175 components: - type: Transform pos: -0.5,37.5 parent: 1 - - uid: 179 + - uid: 176 components: - type: Transform pos: 1.5,37.5 parent: 1 - - uid: 180 + - uid: 177 components: - type: Transform pos: 0.5,37.5 parent: 1 - - uid: 181 + - uid: 178 components: - type: Transform pos: -6.5,-10.5 parent: 1 - - uid: 182 + - uid: 179 components: - type: Transform pos: -6.5,-11.5 parent: 1 - - uid: 183 + - uid: 180 components: - type: Transform pos: -6.5,-12.5 parent: 1 - proto: Bed entities: - - uid: 185 + - uid: 181 components: - type: Transform pos: -4.5,-16.5 parent: 1 - - uid: 186 + - uid: 182 components: - type: Transform pos: -1.5,-16.5 parent: 1 - proto: BedsheetOrange entities: - - uid: 187 + - uid: 183 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-16.5 parent: 1 - - uid: 188 + - uid: 184 components: - type: Transform rot: 3.141592653589793 rad @@ -7595,38 +8605,38 @@ entities: parent: 1 - proto: BiomassReclaimer entities: - - uid: 189 + - uid: 185 components: - type: Transform pos: -5.5,11.5 parent: 1 - proto: BlastDoor entities: - - uid: 190 + - uid: 186 components: - type: Transform pos: 1.5,37.5 parent: 1 - type: DeviceLinkSink links: - - 1642 - - uid: 191 + - 1661 + - uid: 187 components: - type: Transform pos: 0.5,37.5 parent: 1 - type: DeviceLinkSink links: - - 1642 - - uid: 192 + - 1661 + - uid: 188 components: - type: Transform pos: -0.5,37.5 parent: 1 - type: DeviceLinkSink links: - - 1642 - - uid: 193 + - 1661 + - uid: 189 components: - type: Transform rot: 1.5707963267948966 rad @@ -7634,8 +8644,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1647 - - uid: 194 + - 1666 + - uid: 190 components: - type: Transform rot: 1.5707963267948966 rad @@ -7643,8 +8653,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1646 - - uid: 195 + - 1665 + - uid: 191 components: - type: Transform rot: -1.5707963267948966 rad @@ -7652,8 +8662,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1645 - - uid: 196 + - 1664 + - uid: 192 components: - type: Transform rot: -1.5707963267948966 rad @@ -7661,8 +8671,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1644 - - uid: 197 + - 1663 + - uid: 193 components: - type: Transform rot: 1.5707963267948966 rad @@ -7670,8 +8680,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1643 - - uid: 198 + - 1662 + - uid: 194 components: - type: Transform rot: -1.5707963267948966 rad @@ -7679,18 +8689,18 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1641 + - 1660 - proto: BlastDoorOpen entities: - - uid: 41 + - uid: 195 components: - type: Transform pos: 3.5,19.5 parent: 1 - type: DeviceLinkSink links: - - 2195 - - uid: 51 + - 1669 + - uid: 196 components: - type: Transform rot: 1.5707963267948966 rad @@ -7698,88 +8708,88 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2194 - - uid: 199 + - 1668 + - uid: 197 components: - type: Transform pos: 1.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 1638 - - uid: 200 + - 1658 + - uid: 198 components: - type: Transform pos: 2.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 1638 - - uid: 201 + - 1658 + - uid: 199 components: - type: Transform pos: 0.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 1638 - - uid: 202 + - 1658 + - uid: 200 components: - type: Transform pos: -0.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 1638 - - uid: 203 + - 1658 + - uid: 201 components: - type: Transform pos: -1.5,0.5 parent: 1 - type: DeviceLinkSink links: - - 1638 - - uid: 204 + - 1658 + - uid: 202 components: - type: Transform pos: -1.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 1638 - - uid: 205 + - 1658 + - uid: 203 components: - type: Transform pos: -0.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 1638 - - uid: 206 + - 1658 + - uid: 204 components: - type: Transform pos: 0.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 1638 - - uid: 207 + - 1658 + - uid: 205 components: - type: Transform pos: 1.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 1638 - - uid: 208 + - 1658 + - uid: 206 components: - type: Transform pos: 2.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 1638 - - uid: 209 + - 1658 + - uid: 207 components: - type: Transform rot: -1.5707963267948966 rad @@ -7787,8 +8797,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1638 - - uid: 210 + - 1658 + - uid: 208 components: - type: Transform rot: -1.5707963267948966 rad @@ -7796,8 +8806,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1638 - - uid: 211 + - 1658 + - uid: 209 components: - type: Transform rot: 1.5707963267948966 rad @@ -7805,8 +8815,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1638 - - uid: 212 + - 1658 + - uid: 210 components: - type: Transform rot: 1.5707963267948966 rad @@ -7814,8 +8824,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1638 - - uid: 334 + - 1658 + - uid: 211 components: - type: Transform rot: 1.5707963267948966 rad @@ -7823,16 +8833,16 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2193 - - uid: 1259 + - 1667 + - uid: 212 components: - type: Transform pos: 2.5,19.5 parent: 1 - type: DeviceLinkSink links: - - 2195 - - uid: 1260 + - 1669 + - uid: 213 components: - type: Transform rot: 1.5707963267948966 rad @@ -7840,24 +8850,24 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2193 - - uid: 1635 + - 1667 + - uid: 214 components: - type: Transform pos: -2.5,19.5 parent: 1 - type: DeviceLinkSink links: - - 2195 - - uid: 1636 + - 1669 + - uid: 215 components: - type: Transform pos: -1.5,19.5 parent: 1 - type: DeviceLinkSink links: - - 2195 - - uid: 2076 + - 1669 + - uid: 216 components: - type: Transform rot: 1.5707963267948966 rad @@ -7865,8 +8875,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2194 - - uid: 2077 + - 1668 + - uid: 217 components: - type: Transform rot: 1.5707963267948966 rad @@ -7874,8 +8884,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2194 - - uid: 2084 + - 1668 + - uid: 218 components: - type: Transform rot: 1.5707963267948966 rad @@ -7883,10 +8893,10 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2193 + - 1667 - proto: BoozeDispenser entities: - - uid: 221 + - uid: 219 components: - type: Transform rot: -1.5707963267948966 rad @@ -7894,7 +8904,7 @@ entities: parent: 1 - proto: BoriaticGeneratorHerculesShuttle entities: - - uid: 213 + - uid: 220 components: - type: Transform pos: 5.5,-16.5 @@ -7903,7 +8913,7 @@ entities: on: False - type: Physics bodyType: Static - - uid: 214 + - uid: 221 components: - type: Transform pos: -5.5,5.5 @@ -7914,14 +8924,14 @@ entities: bodyType: Static - proto: BoxBeaker entities: - - uid: 215 + - uid: 222 components: - type: Transform pos: -4.677565,11.774466 parent: 1 - proto: BoxFolderBlack entities: - - uid: 216 + - uid: 223 components: - type: MetaData name: Volgin Files @@ -7930,14 +8940,35 @@ entities: parent: 1 - proto: BoxMRE entities: - - uid: 1442 + - uid: 224 components: - type: Transform pos: 4.6842628,17.118946 parent: 1 + - uid: 225 + components: + - type: Transform + rot: 0.00010101579391630366 rad + pos: 7.7330775,9.584986 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 7.324431,9.478947 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 7.787846,8.884231 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 7.3696423,8.83902 + parent: 1 - proto: BoxSyringe entities: - - uid: 217 + - uid: 229 components: - type: Transform pos: -4.7007365,11.41998 @@ -7947,73 +8978,73 @@ entities: linearDamping: 0 - proto: ButtonFrameCaution entities: - - uid: 218 + - uid: 230 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-8.5 parent: 1 - - uid: 219 + - uid: 231 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 1 - - uid: 220 + - uid: 232 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-8.5 parent: 1 - - uid: 222 + - uid: 233 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,24.5 parent: 1 - - uid: 223 + - uid: 234 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,24.5 parent: 1 - - uid: 224 + - uid: 235 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,22.5 parent: 1 - - uid: 225 + - uid: 236 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,14.5 parent: 1 - - uid: 226 + - uid: 237 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,22.5 parent: 1 - - uid: 227 + - uid: 238 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,14.5 parent: 1 - - uid: 1130 + - uid: 239 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,14.5 parent: 1 - - uid: 2192 + - uid: 240 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,14.5 parent: 1 - - uid: 2196 + - uid: 241 components: - type: Transform rot: 3.141592653589793 rad @@ -8021,3643 +9052,3643 @@ entities: parent: 1 - proto: ButtonFrameCautionSecurity entities: - - uid: 228 + - uid: 242 components: - type: Transform pos: 2.5,35.5 parent: 1 - proto: CableApcExtension entities: - - uid: 229 + - uid: 243 components: - type: Transform pos: 8.5,-17.5 parent: 1 - - uid: 230 + - uid: 244 components: - type: Transform pos: 8.5,-16.5 parent: 1 - - uid: 231 + - uid: 245 components: - type: Transform pos: 7.5,-16.5 parent: 1 - - uid: 232 + - uid: 246 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 233 + - uid: 247 components: - type: Transform pos: 6.5,-15.5 parent: 1 - - uid: 234 + - uid: 248 components: - type: Transform pos: 5.5,-15.5 parent: 1 - - uid: 235 + - uid: 249 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 236 + - uid: 250 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 237 + - uid: 251 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 238 + - uid: 252 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 239 + - uid: 253 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 240 + - uid: 254 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 241 + - uid: 255 components: - type: Transform pos: -7.5,11.5 parent: 1 - - uid: 242 + - uid: 256 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 243 + - uid: 257 components: - type: Transform pos: -6.5,11.5 parent: 1 - - uid: 244 + - uid: 258 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 245 + - uid: 259 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 246 + - uid: 260 components: - type: Transform pos: -9.5,-8.5 parent: 1 - - uid: 247 + - uid: 261 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 248 + - uid: 262 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 249 + - uid: 263 components: - type: Transform pos: 3.5,32.5 parent: 1 - - uid: 250 + - uid: 264 components: - type: Transform pos: 3.5,31.5 parent: 1 - - uid: 251 + - uid: 265 components: - type: Transform pos: 2.5,31.5 parent: 1 - - uid: 252 + - uid: 266 components: - type: Transform pos: 1.5,31.5 parent: 1 - - uid: 253 + - uid: 267 components: - type: Transform pos: 0.5,31.5 parent: 1 - - uid: 254 + - uid: 268 components: - type: Transform pos: -0.5,31.5 parent: 1 - - uid: 255 + - uid: 269 components: - type: Transform pos: -1.5,31.5 parent: 1 - - uid: 256 + - uid: 270 components: - type: Transform pos: -2.5,31.5 parent: 1 - - uid: 257 + - uid: 271 components: - type: Transform pos: -3.5,31.5 parent: 1 - - uid: 258 + - uid: 272 components: - type: Transform pos: -4.5,31.5 parent: 1 - - uid: 259 + - uid: 273 components: - type: Transform pos: -4.5,32.5 parent: 1 - - uid: 260 + - uid: 274 components: - type: Transform pos: -4.5,33.5 parent: 1 - - uid: 261 + - uid: 275 components: - type: Transform pos: -4.5,34.5 parent: 1 - - uid: 262 + - uid: 276 components: - type: Transform pos: -4.5,35.5 parent: 1 - - uid: 263 + - uid: 277 components: - type: Transform pos: -4.5,36.5 parent: 1 - - uid: 264 + - uid: 278 components: - type: Transform pos: -3.5,36.5 parent: 1 - - uid: 265 + - uid: 279 components: - type: Transform pos: -3.5,37.5 parent: 1 - - uid: 266 + - uid: 280 components: - type: Transform pos: -3.5,38.5 parent: 1 - - uid: 267 + - uid: 281 components: - type: Transform pos: 4.5,31.5 parent: 1 - - uid: 268 + - uid: 282 components: - type: Transform pos: 5.5,31.5 parent: 1 - - uid: 269 + - uid: 283 components: - type: Transform pos: 5.5,31.5 parent: 1 - - uid: 270 + - uid: 284 components: - type: Transform pos: 5.5,32.5 parent: 1 - - uid: 271 + - uid: 285 components: - type: Transform pos: 5.5,33.5 parent: 1 - - uid: 272 + - uid: 286 components: - type: Transform pos: 5.5,34.5 parent: 1 - - uid: 273 + - uid: 287 components: - type: Transform pos: 4.5,34.5 parent: 1 - - uid: 274 + - uid: 288 components: - type: Transform pos: 4.5,35.5 parent: 1 - - uid: 275 + - uid: 289 components: - type: Transform pos: 4.5,36.5 parent: 1 - - uid: 276 + - uid: 290 components: - type: Transform pos: 4.5,37.5 parent: 1 - - uid: 277 + - uid: 291 components: - type: Transform pos: 4.5,38.5 parent: 1 - - uid: 278 + - uid: 292 components: - type: Transform pos: 5.5,38.5 parent: 1 - - uid: 279 + - uid: 293 components: - type: Transform pos: 5.5,36.5 parent: 1 - - uid: 280 + - uid: 294 components: - type: Transform pos: 6.5,36.5 parent: 1 - - uid: 281 + - uid: 295 components: - type: Transform pos: 7.5,36.5 parent: 1 - - uid: 282 + - uid: 296 components: - type: Transform pos: 6.5,34.5 parent: 1 - - uid: 283 + - uid: 297 components: - type: Transform pos: 7.5,34.5 parent: 1 - - uid: 284 + - uid: 298 components: - type: Transform pos: 8.5,34.5 parent: 1 - - uid: 285 + - uid: 299 components: - type: Transform pos: -5.5,34.5 parent: 1 - - uid: 286 + - uid: 300 components: - type: Transform pos: -6.5,34.5 parent: 1 - - uid: 287 + - uid: 301 components: - type: Transform pos: -7.5,34.5 parent: 1 - - uid: 288 + - uid: 302 components: - type: Transform pos: -4.5,36.5 parent: 1 - - uid: 289 + - uid: 303 components: - type: Transform pos: -5.5,36.5 parent: 1 - - uid: 290 + - uid: 304 components: - type: Transform pos: -6.5,36.5 parent: 1 - - uid: 291 + - uid: 305 components: - type: Transform pos: -4.5,38.5 parent: 1 - - uid: 292 + - uid: 306 components: - type: Transform pos: 8.5,33.5 parent: 1 - - uid: 293 + - uid: 307 components: - type: Transform pos: 8.5,32.5 parent: 1 - - uid: 294 + - uid: 308 components: - type: Transform pos: 8.5,31.5 parent: 1 - - uid: 295 + - uid: 309 components: - type: Transform pos: 8.5,30.5 parent: 1 - - uid: 296 + - uid: 310 components: - type: Transform pos: -7.5,33.5 parent: 1 - - uid: 297 + - uid: 311 components: - type: Transform pos: -7.5,32.5 parent: 1 - - uid: 298 + - uid: 312 components: - type: Transform pos: -7.5,31.5 parent: 1 - - uid: 299 + - uid: 313 components: - type: Transform pos: -7.5,30.5 parent: 1 - - uid: 300 + - uid: 314 components: - type: Transform pos: -0.5,19.5 parent: 1 - - uid: 301 + - uid: 315 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 302 + - uid: 316 components: - type: Transform pos: -0.5,21.5 parent: 1 - - uid: 303 + - uid: 317 components: - type: Transform pos: -0.5,22.5 parent: 1 - - uid: 304 + - uid: 318 components: - type: Transform pos: -0.5,23.5 parent: 1 - - uid: 305 + - uid: 319 components: - type: Transform pos: -0.5,24.5 parent: 1 - - uid: 306 + - uid: 320 components: - type: Transform pos: -0.5,25.5 parent: 1 - - uid: 307 + - uid: 321 components: - type: Transform pos: -0.5,26.5 parent: 1 - - uid: 308 + - uid: 322 components: - type: Transform pos: -0.5,27.5 parent: 1 - - uid: 309 + - uid: 323 components: - type: Transform pos: -0.5,28.5 parent: 1 - - uid: 310 + - uid: 324 components: - type: Transform pos: -1.5,28.5 parent: 1 - - uid: 311 + - uid: 325 components: - type: Transform pos: -2.5,28.5 parent: 1 - - uid: 312 + - uid: 326 components: - type: Transform pos: -3.5,28.5 parent: 1 - - uid: 313 + - uid: 327 components: - type: Transform pos: -3.5,27.5 parent: 1 - - uid: 314 + - uid: 328 components: - type: Transform pos: -3.5,26.5 parent: 1 - - uid: 315 + - uid: 329 components: - type: Transform pos: -3.5,25.5 parent: 1 - - uid: 316 + - uid: 330 components: - type: Transform pos: -3.5,24.5 parent: 1 - - uid: 317 + - uid: 331 components: - type: Transform pos: -3.5,23.5 parent: 1 - - uid: 318 + - uid: 332 components: - type: Transform pos: -3.5,22.5 parent: 1 - - uid: 319 + - uid: 333 components: - type: Transform pos: -3.5,21.5 parent: 1 - - uid: 320 + - uid: 334 components: - type: Transform pos: -3.5,20.5 parent: 1 - - uid: 321 + - uid: 335 components: - type: Transform pos: -2.5,20.5 parent: 1 - - uid: 322 + - uid: 336 components: - type: Transform pos: -1.5,20.5 parent: 1 - - uid: 323 + - uid: 337 components: - type: Transform pos: -2.5,19.5 parent: 1 - - uid: 324 + - uid: 338 components: - type: Transform pos: -2.5,18.5 parent: 1 - - uid: 325 + - uid: 339 components: - type: Transform pos: -2.5,17.5 parent: 1 - - uid: 326 + - uid: 340 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 327 + - uid: 341 components: - type: Transform pos: -2.5,15.5 parent: 1 - - uid: 328 + - uid: 342 components: - type: Transform pos: -2.5,14.5 parent: 1 - - uid: 329 + - uid: 343 components: - type: Transform pos: -1.5,14.5 parent: 1 - - uid: 330 + - uid: 344 components: - type: Transform pos: -3.5,16.5 parent: 1 - - uid: 331 + - uid: 345 components: - type: Transform pos: -1.5,16.5 parent: 1 - - uid: 332 + - uid: 346 components: - type: Transform pos: -0.5,16.5 parent: 1 - - uid: 333 + - uid: 347 components: - type: Transform pos: 0.5,16.5 parent: 1 - - uid: 335 + - uid: 348 components: - type: Transform pos: 2.5,16.5 parent: 1 - - uid: 336 + - uid: 349 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 337 + - uid: 350 components: - type: Transform pos: 4.5,16.5 parent: 1 - - uid: 338 + - uid: 351 components: - type: Transform pos: 4.5,17.5 parent: 1 - - uid: 339 + - uid: 352 components: - type: Transform pos: 4.5,18.5 parent: 1 - - uid: 340 + - uid: 353 components: - type: Transform pos: 3.5,18.5 parent: 1 - - uid: 341 + - uid: 354 components: - type: Transform pos: 2.5,18.5 parent: 1 - - uid: 342 + - uid: 355 components: - type: Transform pos: 2.5,17.5 parent: 1 - - uid: 343 + - uid: 356 components: - type: Transform pos: 2.5,15.5 parent: 1 - - uid: 344 + - uid: 357 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 345 + - uid: 358 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 346 + - uid: 359 components: - type: Transform pos: 4.5,14.5 parent: 1 - - uid: 347 + - uid: 360 components: - type: Transform pos: 4.5,15.5 parent: 1 - - uid: 348 + - uid: 361 components: - type: Transform pos: 0.5,20.5 parent: 1 - - uid: 349 + - uid: 362 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 350 + - uid: 363 components: - type: Transform pos: 2.5,20.5 parent: 1 - - uid: 351 + - uid: 364 components: - type: Transform pos: 3.5,20.5 parent: 1 - - uid: 352 + - uid: 365 components: - type: Transform pos: 3.5,19.5 parent: 1 - - uid: 353 + - uid: 366 components: - type: Transform pos: 4.5,20.5 parent: 1 - - uid: 354 + - uid: 367 components: - type: Transform pos: 4.5,21.5 parent: 1 - - uid: 355 + - uid: 368 components: - type: Transform pos: 4.5,22.5 parent: 1 - - uid: 356 + - uid: 369 components: - type: Transform pos: 4.5,23.5 parent: 1 - - uid: 357 + - uid: 370 components: - type: Transform pos: 4.5,24.5 parent: 1 - - uid: 358 + - uid: 371 components: - type: Transform pos: 4.5,25.5 parent: 1 - - uid: 359 + - uid: 372 components: - type: Transform pos: 4.5,26.5 parent: 1 - - uid: 360 + - uid: 373 components: - type: Transform pos: 4.5,27.5 parent: 1 - - uid: 361 + - uid: 374 components: - type: Transform pos: 4.5,28.5 parent: 1 - - uid: 362 + - uid: 375 components: - type: Transform pos: 3.5,28.5 parent: 1 - - uid: 363 + - uid: 376 components: - type: Transform pos: 2.5,28.5 parent: 1 - - uid: 364 + - uid: 377 components: - type: Transform pos: 1.5,28.5 parent: 1 - - uid: 365 + - uid: 378 components: - type: Transform pos: 0.5,28.5 parent: 1 - - uid: 366 + - uid: 379 components: - type: Transform pos: 5.5,26.5 parent: 1 - - uid: 367 + - uid: 380 components: - type: Transform pos: 6.5,26.5 parent: 1 - - uid: 368 + - uid: 381 components: - type: Transform pos: 7.5,26.5 parent: 1 - - uid: 369 + - uid: 382 components: - type: Transform pos: 6.5,27.5 parent: 1 - - uid: 370 + - uid: 383 components: - type: Transform pos: 6.5,28.5 parent: 1 - - uid: 371 + - uid: 384 components: - type: Transform pos: 6.5,25.5 parent: 1 - - uid: 372 + - uid: 385 components: - type: Transform pos: 6.5,24.5 parent: 1 - - uid: 373 + - uid: 386 components: - type: Transform pos: 6.5,23.5 parent: 1 - - uid: 374 + - uid: 387 components: - type: Transform pos: 6.5,22.5 parent: 1 - - uid: 375 + - uid: 388 components: - type: Transform pos: 6.5,21.5 parent: 1 - - uid: 376 + - uid: 389 components: - type: Transform pos: 6.5,20.5 parent: 1 - - uid: 377 + - uid: 390 components: - type: Transform pos: 6.5,19.5 parent: 1 - - uid: 378 + - uid: 391 components: - type: Transform pos: 6.5,18.5 parent: 1 - - uid: 379 + - uid: 392 components: - type: Transform pos: 6.5,17.5 parent: 1 - - uid: 380 + - uid: 393 components: - type: Transform pos: 6.5,16.5 parent: 1 - - uid: 381 + - uid: 394 components: - type: Transform pos: 6.5,15.5 parent: 1 - - uid: 382 + - uid: 395 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 383 + - uid: 396 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 384 + - uid: 397 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 385 + - uid: 398 components: - type: Transform pos: 7.5,16.5 parent: 1 - - uid: 386 + - uid: 399 components: - type: Transform pos: 7.5,18.5 parent: 1 - - uid: 387 + - uid: 400 components: - type: Transform pos: 7.5,20.5 parent: 1 - - uid: 388 + - uid: 401 components: - type: Transform pos: 7.5,22.5 parent: 1 - - uid: 389 + - uid: 402 components: - type: Transform pos: 8.5,22.5 parent: 1 - - uid: 390 + - uid: 403 components: - type: Transform pos: 7.5,13.5 parent: 1 - - uid: 391 + - uid: 404 components: - type: Transform pos: 8.5,13.5 parent: 1 - - uid: 392 + - uid: 405 components: - type: Transform pos: -4.5,13.5 parent: 1 - - uid: 393 + - uid: 406 components: - type: Transform pos: -4.5,14.5 parent: 1 - - uid: 394 + - uid: 407 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 395 + - uid: 408 components: - type: Transform pos: -5.5,14.5 parent: 1 - - uid: 396 + - uid: 409 components: - type: Transform pos: -5.5,15.5 parent: 1 - - uid: 397 + - uid: 410 components: - type: Transform pos: -5.5,16.5 parent: 1 - - uid: 398 + - uid: 411 components: - type: Transform pos: -5.5,17.5 parent: 1 - - uid: 399 + - uid: 412 components: - type: Transform pos: -5.5,18.5 parent: 1 - - uid: 400 + - uid: 413 components: - type: Transform pos: -5.5,19.5 parent: 1 - - uid: 401 + - uid: 414 components: - type: Transform pos: -5.5,20.5 parent: 1 - - uid: 402 + - uid: 415 components: - type: Transform pos: -5.5,21.5 parent: 1 - - uid: 403 + - uid: 416 components: - type: Transform pos: -4.5,21.5 parent: 1 - - uid: 404 + - uid: 417 components: - type: Transform pos: -6.5,20.5 parent: 1 - - uid: 405 + - uid: 418 components: - type: Transform pos: -6.5,18.5 parent: 1 - - uid: 406 + - uid: 419 components: - type: Transform pos: -6.5,16.5 parent: 1 - - uid: 407 + - uid: 420 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 408 + - uid: 421 components: - type: Transform pos: -6.5,13.5 parent: 1 - - uid: 409 + - uid: 422 components: - type: Transform pos: -7.5,13.5 parent: 1 - - uid: 410 + - uid: 423 components: - type: Transform pos: -5.5,22.5 parent: 1 - - uid: 411 + - uid: 424 components: - type: Transform pos: -6.5,22.5 parent: 1 - - uid: 412 + - uid: 425 components: - type: Transform pos: -7.5,22.5 parent: 1 - - uid: 413 + - uid: 426 components: - type: Transform pos: -5.5,23.5 parent: 1 - - uid: 414 + - uid: 427 components: - type: Transform pos: -5.5,24.5 parent: 1 - - uid: 415 + - uid: 428 components: - type: Transform pos: -5.5,25.5 parent: 1 - - uid: 416 + - uid: 429 components: - type: Transform pos: -5.5,26.5 parent: 1 - - uid: 417 + - uid: 430 components: - type: Transform pos: -5.5,27.5 parent: 1 - - uid: 418 + - uid: 431 components: - type: Transform pos: -5.5,28.5 parent: 1 - - uid: 419 + - uid: 432 components: - type: Transform pos: -6.5,28.5 parent: 1 - - uid: 420 + - uid: 433 components: - type: Transform pos: -7.5,28.5 parent: 1 - - uid: 421 + - uid: 434 components: - type: Transform pos: -7.5,27.5 parent: 1 - - uid: 422 + - uid: 435 components: - type: Transform pos: -7.5,26.5 parent: 1 - - uid: 423 + - uid: 436 components: - type: Transform pos: -7.5,25.5 parent: 1 - - uid: 424 + - uid: 437 components: - type: Transform pos: -7.5,24.5 parent: 1 - - uid: 425 + - uid: 438 components: - type: Transform pos: -7.5,23.5 parent: 1 - - uid: 426 + - uid: 439 components: - type: Transform pos: -4.5,26.5 parent: 1 - - uid: 427 + - uid: 440 components: - type: Transform pos: -3.5,26.5 parent: 1 - - uid: 428 + - uid: 441 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 429 + - uid: 442 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 430 + - uid: 443 components: - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 431 + - uid: 444 components: - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 432 + - uid: 445 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 433 + - uid: 446 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 434 + - uid: 447 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 435 + - uid: 448 components: - type: Transform pos: -0.5,8.5 parent: 1 - - uid: 436 + - uid: 449 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 437 + - uid: 450 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 438 + - uid: 451 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 439 + - uid: 452 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 440 + - uid: 453 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 441 + - uid: 454 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 442 + - uid: 455 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 443 + - uid: 456 components: - type: Transform pos: 6.5,7.5 parent: 1 - - uid: 444 + - uid: 457 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 445 + - uid: 458 components: - type: Transform pos: 6.5,9.5 parent: 1 - - uid: 446 + - uid: 459 components: - type: Transform pos: 6.5,10.5 parent: 1 - - uid: 447 + - uid: 460 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 448 + - uid: 461 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 449 + - uid: 462 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 450 + - uid: 463 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 451 + - uid: 464 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 452 + - uid: 465 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 453 + - uid: 466 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 454 + - uid: 467 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 455 + - uid: 468 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 456 + - uid: 469 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 457 + - uid: 470 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 458 + - uid: 471 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 459 + - uid: 472 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 460 + - uid: 473 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 461 + - uid: 474 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 462 + - uid: 475 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 463 + - uid: 476 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 464 + - uid: 477 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 465 + - uid: 478 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 466 + - uid: 479 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 467 + - uid: 480 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 468 + - uid: 481 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 469 + - uid: 482 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 470 + - uid: 483 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 471 + - uid: 484 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 472 + - uid: 485 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 473 + - uid: 486 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 474 + - uid: 487 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 475 + - uid: 488 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 476 + - uid: 489 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 477 + - uid: 490 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 478 + - uid: 491 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 479 + - uid: 492 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 480 + - uid: 493 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 481 + - uid: 494 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 482 + - uid: 495 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 483 + - uid: 496 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 484 + - uid: 497 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 485 + - uid: 498 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 486 + - uid: 499 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 487 + - uid: 500 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 488 + - uid: 501 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 489 + - uid: 502 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 490 + - uid: 503 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 491 + - uid: 504 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 492 + - uid: 505 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 493 + - uid: 506 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 494 + - uid: 507 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 495 + - uid: 508 components: - type: Transform pos: 6.5,-5.5 parent: 1 - - uid: 496 + - uid: 509 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 497 + - uid: 510 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 498 + - uid: 511 components: - type: Transform pos: 6.5,-2.5 parent: 1 - - uid: 499 + - uid: 512 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 500 + - uid: 513 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 501 + - uid: 514 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 502 + - uid: 515 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 503 + - uid: 516 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 504 + - uid: 517 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 505 + - uid: 518 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 506 + - uid: 519 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 507 + - uid: 520 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 508 + - uid: 521 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 509 + - uid: 522 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 510 + - uid: 523 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 511 + - uid: 524 components: - type: Transform pos: -3.5,-14.5 parent: 1 - - uid: 512 + - uid: 525 components: - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 513 + - uid: 526 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 514 + - uid: 527 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 515 + - uid: 528 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 516 + - uid: 529 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 517 + - uid: 530 components: - type: Transform pos: -6.5,-11.5 parent: 1 - - uid: 518 + - uid: 531 components: - type: Transform pos: -7.5,-11.5 parent: 1 - - uid: 519 + - uid: 532 components: - type: Transform pos: -8.5,-11.5 parent: 1 - - uid: 520 + - uid: 533 components: - type: Transform pos: -9.5,-11.5 parent: 1 - - uid: 521 + - uid: 534 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 522 + - uid: 535 components: - type: Transform pos: -8.5,-9.5 parent: 1 - - uid: 523 + - uid: 536 components: - type: Transform pos: -8.5,-13.5 parent: 1 - - uid: 524 + - uid: 537 components: - type: Transform pos: -9.5,-13.5 parent: 1 - - uid: 525 + - uid: 538 components: - type: Transform pos: -10.5,-13.5 parent: 1 - - uid: 526 + - uid: 539 components: - type: Transform pos: -10.5,-14.5 parent: 1 - - uid: 527 + - uid: 540 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 528 + - uid: 541 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 529 + - uid: 542 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 530 + - uid: 543 components: - type: Transform pos: -9.5,-8.5 parent: 1 - - uid: 531 + - uid: 544 components: - type: Transform pos: -9.5,-7.5 parent: 1 - - uid: 532 + - uid: 545 components: - type: Transform pos: -8.5,-7.5 parent: 1 - - uid: 533 + - uid: 546 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 534 + - uid: 547 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 535 + - uid: 548 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 536 + - uid: 549 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 537 + - uid: 550 components: - type: Transform pos: -1.5,-13.5 parent: 1 - - uid: 538 + - uid: 551 components: - type: Transform pos: -2.5,-12.5 parent: 1 - - uid: 539 + - uid: 552 components: - type: Transform pos: -2.5,-11.5 parent: 1 - - uid: 540 + - uid: 553 components: - type: Transform pos: -2.5,-10.5 parent: 1 - - uid: 541 + - uid: 554 components: - type: Transform pos: -2.5,-9.5 parent: 1 - - uid: 542 + - uid: 555 components: - type: Transform pos: -2.5,-8.5 parent: 1 - - uid: 543 + - uid: 556 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 544 + - uid: 557 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 545 + - uid: 558 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 546 + - uid: 559 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 547 + - uid: 560 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 548 + - uid: 561 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 549 + - uid: 562 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 550 + - uid: 563 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 551 + - uid: 564 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 552 + - uid: 565 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 553 + - uid: 566 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 554 + - uid: 567 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 555 + - uid: 568 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 556 + - uid: 569 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 557 + - uid: 570 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 558 + - uid: 571 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 559 + - uid: 572 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 560 + - uid: 573 components: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 561 + - uid: 574 components: - type: Transform pos: 0.5,-7.5 parent: 1 - - uid: 562 + - uid: 575 components: - type: Transform pos: 0.5,-8.5 parent: 1 - - uid: 563 + - uid: 576 components: - type: Transform pos: 0.5,-9.5 parent: 1 - - uid: 564 + - uid: 577 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 565 + - uid: 578 components: - type: Transform pos: -0.5,-9.5 parent: 1 - - uid: 566 + - uid: 579 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 567 + - uid: 580 components: - type: Transform pos: 1.5,-6.5 parent: 1 - - uid: 568 + - uid: 581 components: - type: Transform pos: 2.5,-6.5 parent: 1 - - uid: 569 + - uid: 582 components: - type: Transform pos: 3.5,-6.5 parent: 1 - - uid: 570 + - uid: 583 components: - type: Transform pos: -0.5,-6.5 parent: 1 - - uid: 571 + - uid: 584 components: - type: Transform pos: -1.5,-6.5 parent: 1 - - uid: 572 + - uid: 585 components: - type: Transform pos: -2.5,-6.5 parent: 1 - - uid: 573 + - uid: 586 components: - type: Transform pos: -1.5,-5.5 parent: 1 - - uid: 574 + - uid: 587 components: - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 575 + - uid: 588 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 576 + - uid: 589 components: - type: Transform pos: -1.5,-2.5 parent: 1 - - uid: 577 + - uid: 590 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 578 + - uid: 591 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 579 + - uid: 592 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 580 + - uid: 593 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 581 + - uid: 594 components: - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 582 + - uid: 595 components: - type: Transform pos: 2.5,-5.5 parent: 1 - - uid: 583 + - uid: 596 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 584 + - uid: 597 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 585 + - uid: 598 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 586 + - uid: 599 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 587 + - uid: 600 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 588 + - uid: 601 components: - type: Transform pos: 4.5,-13.5 parent: 1 - - uid: 589 + - uid: 602 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 590 + - uid: 603 components: - type: Transform pos: 6.5,-13.5 parent: 1 - - uid: 591 + - uid: 604 components: - type: Transform pos: 7.5,-13.5 parent: 1 - - uid: 592 + - uid: 605 components: - type: Transform pos: 7.5,-12.5 parent: 1 - - uid: 593 + - uid: 606 components: - type: Transform pos: 7.5,-11.5 parent: 1 - - uid: 594 + - uid: 607 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 595 + - uid: 608 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 596 + - uid: 609 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 597 + - uid: 610 components: - type: Transform pos: 5.5,-12.5 parent: 1 - - uid: 598 + - uid: 611 components: - type: Transform pos: 5.5,-11.5 parent: 1 - - uid: 599 + - uid: 612 components: - type: Transform pos: 5.5,-10.5 parent: 1 - - uid: 600 + - uid: 613 components: - type: Transform pos: 5.5,-9.5 parent: 1 - - uid: 601 + - uid: 614 components: - type: Transform pos: 5.5,-8.5 parent: 1 - - uid: 602 + - uid: 615 components: - type: Transform pos: -11.5,-9.5 parent: 1 - - uid: 603 + - uid: 616 components: - type: Transform pos: -11.5,-10.5 parent: 1 - - uid: 604 + - uid: 617 components: - type: Transform pos: -11.5,-11.5 parent: 1 - - uid: 605 + - uid: 618 components: - type: Transform pos: -11.5,-12.5 parent: 1 - - uid: 606 + - uid: 619 components: - type: Transform pos: -11.5,-13.5 parent: 1 - - uid: 607 + - uid: 620 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 608 + - uid: 621 components: - type: Transform pos: -4.5,-14.5 parent: 1 - - uid: 609 + - uid: 622 components: - type: Transform pos: -4.5,-15.5 parent: 1 - - uid: 610 + - uid: 623 components: - type: Transform pos: -4.5,-16.5 parent: 1 - - uid: 611 + - uid: 624 components: - type: Transform pos: -5.5,-15.5 parent: 1 - - uid: 612 + - uid: 625 components: - type: Transform pos: -3.5,-15.5 parent: 1 - - uid: 613 + - uid: 626 components: - type: Transform pos: -2.5,-15.5 parent: 1 - - uid: 614 + - uid: 627 components: - type: Transform pos: -1.5,-15.5 parent: 1 - - uid: 615 + - uid: 628 components: - type: Transform pos: -1.5,-16.5 parent: 1 - - uid: 616 + - uid: 629 components: - type: Transform pos: -4.5,-17.5 parent: 1 - - uid: 617 + - uid: 630 components: - type: Transform pos: -4.5,-18.5 parent: 1 - - uid: 618 + - uid: 631 components: - type: Transform pos: -5.5,-18.5 parent: 1 - - uid: 619 + - uid: 632 components: - type: Transform pos: -6.5,-18.5 parent: 1 - - uid: 620 + - uid: 633 components: - type: Transform pos: -3.5,-18.5 parent: 1 - - uid: 621 + - uid: 634 components: - type: Transform pos: -7.5,-18.5 parent: 1 - - uid: 622 + - uid: 635 components: - type: Transform pos: -7.5,-19.5 parent: 1 - - uid: 623 + - uid: 636 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 624 + - uid: 637 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 625 + - uid: 638 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 626 + - uid: 639 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 627 + - uid: 640 components: - type: Transform pos: 0.5,-14.5 parent: 1 - - uid: 628 + - uid: 641 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 629 + - uid: 642 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 630 + - uid: 643 components: - type: Transform pos: 0.5,-17.5 parent: 1 - - uid: 631 + - uid: 644 components: - type: Transform pos: 0.5,-18.5 parent: 1 - - uid: 632 + - uid: 645 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - uid: 633 + - uid: 646 components: - type: Transform pos: 0.5,-20.5 parent: 1 - - uid: 634 + - uid: 647 components: - type: Transform pos: -0.5,-19.5 parent: 1 - - uid: 635 + - uid: 648 components: - type: Transform pos: -1.5,-19.5 parent: 1 - - uid: 636 + - uid: 649 components: - type: Transform pos: 1.5,-19.5 parent: 1 - - uid: 637 + - uid: 650 components: - type: Transform pos: 2.5,-19.5 parent: 1 - - uid: 638 + - uid: 651 components: - type: Transform pos: 3.5,-19.5 parent: 1 - - uid: 639 + - uid: 652 components: - type: Transform pos: 3.5,-18.5 parent: 1 - - uid: 640 + - uid: 653 components: - type: Transform pos: 4.5,-18.5 parent: 1 - - uid: 641 + - uid: 654 components: - type: Transform pos: 5.5,-18.5 parent: 1 - - uid: 642 + - uid: 655 components: - type: Transform pos: 6.5,-18.5 parent: 1 - - uid: 643 + - uid: 656 components: - type: Transform pos: 7.5,-18.5 parent: 1 - - uid: 644 + - uid: 657 components: - type: Transform pos: 8.5,-18.5 parent: 1 - - uid: 645 + - uid: 658 components: - type: Transform pos: 8.5,-19.5 parent: 1 - - uid: 646 + - uid: 659 components: - type: Transform pos: 8.5,-11.5 parent: 1 - - uid: 647 + - uid: 660 components: - type: Transform pos: 9.5,-11.5 parent: 1 - - uid: 648 + - uid: 661 components: - type: Transform pos: 10.5,-11.5 parent: 1 - - uid: 649 + - uid: 662 components: - type: Transform pos: 9.5,-10.5 parent: 1 - - uid: 650 + - uid: 663 components: - type: Transform pos: 9.5,-9.5 parent: 1 - - uid: 651 + - uid: 664 components: - type: Transform pos: 9.5,-13.5 parent: 1 - - uid: 652 + - uid: 665 components: - type: Transform pos: 9.5,-8.5 parent: 1 - - uid: 653 + - uid: 666 components: - type: Transform pos: 10.5,-8.5 parent: 1 - - uid: 654 + - uid: 667 components: - type: Transform pos: 10.5,-7.5 parent: 1 - - uid: 655 + - uid: 668 components: - type: Transform pos: 9.5,-7.5 parent: 1 - - uid: 656 + - uid: 669 components: - type: Transform pos: 9.5,-12.5 parent: 1 - - uid: 657 + - uid: 670 components: - type: Transform pos: 9.5,-13.5 parent: 1 - - uid: 658 + - uid: 671 components: - type: Transform pos: 10.5,-13.5 parent: 1 - - uid: 659 + - uid: 672 components: - type: Transform pos: 11.5,-13.5 parent: 1 - - uid: 660 + - uid: 673 components: - type: Transform pos: 12.5,-13.5 parent: 1 - - uid: 661 + - uid: 674 components: - type: Transform pos: 12.5,-12.5 parent: 1 - - uid: 662 + - uid: 675 components: - type: Transform pos: 12.5,-11.5 parent: 1 - - uid: 663 + - uid: 676 components: - type: Transform pos: 12.5,-10.5 parent: 1 - - uid: 664 + - uid: 677 components: - type: Transform pos: 12.5,-14.5 parent: 1 - - uid: 665 + - uid: 678 components: - type: Transform pos: 12.5,-13.5 parent: 1 - - uid: 666 + - uid: 679 components: - type: Transform pos: 11.5,-14.5 parent: 1 - - uid: 667 + - uid: 680 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 668 + - uid: 681 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 669 + - uid: 682 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 670 + - uid: 683 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 671 + - uid: 684 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 672 + - uid: 685 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 673 + - uid: 686 components: - type: Transform pos: -5.5,9.5 parent: 1 - - uid: 674 + - uid: 687 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 675 + - uid: 688 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 676 + - uid: 689 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 677 + - uid: 690 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 678 + - uid: 691 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 679 + - uid: 692 components: - type: Transform pos: 3.5,-14.5 parent: 1 - - uid: 680 + - uid: 693 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 681 + - uid: 694 components: - type: Transform pos: 3.5,-14.5 parent: 1 - - uid: 682 + - uid: 695 components: - type: Transform pos: 4.5,-13.5 parent: 1 - - uid: 683 + - uid: 696 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 684 + - uid: 697 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 685 + - uid: 698 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 686 + - uid: 699 components: - type: Transform pos: 3.5,-14.5 parent: 1 - - uid: 687 + - uid: 700 components: - type: Transform pos: 2.5,-14.5 parent: 1 - - uid: 688 + - uid: 701 components: - type: Transform pos: 4.5,-14.5 parent: 1 - - uid: 2082 + - uid: 702 components: - type: Transform pos: 1.5,16.5 parent: 1 - proto: CableHV entities: - - uid: 689 + - uid: 703 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 690 + - uid: 704 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 691 + - uid: 705 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 692 + - uid: 706 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 693 + - uid: 707 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 694 + - uid: 708 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 695 + - uid: 709 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 696 + - uid: 710 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 697 + - uid: 711 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 698 + - uid: 712 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 699 + - uid: 713 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 700 + - uid: 714 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 701 + - uid: 715 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 702 + - uid: 716 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 703 + - uid: 717 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 704 + - uid: 718 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 705 + - uid: 719 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 706 + - uid: 720 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 707 + - uid: 721 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 708 + - uid: 722 components: - type: Transform pos: 3.5,-12.5 parent: 1 - - uid: 709 + - uid: 723 components: - type: Transform pos: 5.5,-12.5 parent: 1 - - uid: 710 + - uid: 724 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 711 + - uid: 725 components: - type: Transform pos: 4.5,-12.5 parent: 1 - - uid: 712 + - uid: 726 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 713 + - uid: 727 components: - type: Transform pos: 5.5,-15.5 parent: 1 - - uid: 714 + - uid: 728 components: - type: Transform pos: 4.5,-15.5 parent: 1 - - uid: 715 + - uid: 729 components: - type: Transform pos: 5.5,-16.5 parent: 1 - - uid: 716 + - uid: 730 components: - type: Transform pos: 3.5,-15.5 parent: 1 - - uid: 717 + - uid: 731 components: - type: Transform pos: 2.5,-15.5 parent: 1 - - uid: 718 + - uid: 732 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 719 + - uid: 733 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 720 + - uid: 734 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 721 + - uid: 735 components: - type: Transform pos: 6.5,-15.5 parent: 1 - - uid: 722 + - uid: 736 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 723 + - uid: 737 components: - type: Transform pos: 7.5,-16.5 parent: 1 - - uid: 724 + - uid: 738 components: - type: Transform pos: 6.5,-13.5 parent: 1 - - uid: 725 + - uid: 739 components: - type: Transform pos: 7.5,-13.5 parent: 1 - - uid: 726 + - uid: 740 components: - type: Transform pos: 7.5,-12.5 parent: 1 - - uid: 727 + - uid: 741 components: - type: Transform pos: 7.5,-11.5 parent: 1 - - uid: 728 + - uid: 742 components: - type: Transform pos: 8.5,-11.5 parent: 1 - - uid: 729 + - uid: 743 components: - type: Transform pos: 9.5,-11.5 parent: 1 - - uid: 730 + - uid: 744 components: - type: Transform pos: 10.5,-11.5 parent: 1 - - uid: 731 + - uid: 745 components: - type: Transform pos: 10.5,-10.5 parent: 1 - - uid: 732 + - uid: 746 components: - type: Transform pos: 10.5,-12.5 parent: 1 - - uid: 733 + - uid: 747 components: - type: Transform pos: 9.5,-10.5 parent: 1 - - uid: 734 + - uid: 748 components: - type: Transform pos: 9.5,-12.5 parent: 1 - - uid: 735 + - uid: 749 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 736 + - uid: 750 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 737 + - uid: 751 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 738 + - uid: 752 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 739 + - uid: 753 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 740 + - uid: 754 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 741 + - uid: 755 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 742 + - uid: 756 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 743 + - uid: 757 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 744 + - uid: 758 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 745 + - uid: 759 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 746 + - uid: 760 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 747 + - uid: 761 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 748 + - uid: 762 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 749 + - uid: 763 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 750 + - uid: 764 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 751 + - uid: 765 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 752 + - uid: 766 components: - type: Transform pos: -1.5,-13.5 parent: 1 - - uid: 753 + - uid: 767 components: - type: Transform pos: -0.5,-13.5 parent: 1 - - uid: 754 + - uid: 768 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 755 + - uid: 769 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 756 + - uid: 770 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 757 + - uid: 771 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 758 + - uid: 772 components: - type: Transform pos: 4.5,-13.5 parent: 1 - - uid: 759 + - uid: 773 components: - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 760 + - uid: 774 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 761 + - uid: 775 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 762 + - uid: 776 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 763 + - uid: 777 components: - type: Transform pos: 7.5,-7.5 parent: 1 - - uid: 764 + - uid: 778 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 765 + - uid: 779 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 766 + - uid: 780 components: - type: Transform pos: 6.5,-5.5 parent: 1 - - uid: 767 + - uid: 781 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 768 + - uid: 782 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 769 + - uid: 783 components: - type: Transform pos: 6.5,-2.5 parent: 1 - - uid: 770 + - uid: 784 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 771 + - uid: 785 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 772 + - uid: 786 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 773 + - uid: 787 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 774 + - uid: 788 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 775 + - uid: 789 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 776 + - uid: 790 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 777 + - uid: 791 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 778 + - uid: 792 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 779 + - uid: 793 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 780 + - uid: 794 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 781 + - uid: 795 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 782 + - uid: 796 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 783 + - uid: 797 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 784 + - uid: 798 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 785 + - uid: 799 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 786 + - uid: 800 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 787 + - uid: 801 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 788 + - uid: 802 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 789 + - uid: 803 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 790 + - uid: 804 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 791 + - uid: 805 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 792 + - uid: 806 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 793 + - uid: 807 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 794 + - uid: 808 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 795 + - uid: 809 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 796 + - uid: 810 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 797 + - uid: 811 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 798 + - uid: 812 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 799 + - uid: 813 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 800 + - uid: 814 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 801 + - uid: 815 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 802 + - uid: 816 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 803 + - uid: 817 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 804 + - uid: 818 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 805 + - uid: 819 components: - type: Transform pos: -4.5,5.5 parent: 1 - proto: CableMV entities: - - uid: 806 + - uid: 820 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 807 + - uid: 821 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 808 + - uid: 822 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 809 + - uid: 823 components: - type: Transform pos: 2.5,-15.5 parent: 1 - - uid: 810 + - uid: 824 components: - type: Transform pos: 3.5,-15.5 parent: 1 - - uid: 811 + - uid: 825 components: - type: Transform pos: 4.5,-15.5 parent: 1 - - uid: 812 + - uid: 826 components: - type: Transform pos: 5.5,-15.5 parent: 1 - - uid: 813 + - uid: 827 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 814 + - uid: 828 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 815 + - uid: 829 components: - type: Transform pos: 4.5,-13.5 parent: 1 - - uid: 816 + - uid: 830 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 817 + - uid: 831 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 818 + - uid: 832 components: - type: Transform pos: 2.5,-13.5 parent: 1 - - uid: 819 + - uid: 833 components: - type: Transform pos: 0.5,-14.5 parent: 1 - - uid: 820 + - uid: 834 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 821 + - uid: 835 components: - type: Transform pos: -0.5,-13.5 parent: 1 - - uid: 822 + - uid: 836 components: - type: Transform pos: -1.5,-13.5 parent: 1 - - uid: 823 + - uid: 837 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 824 + - uid: 838 components: - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 825 + - uid: 839 components: - type: Transform pos: -3.5,-14.5 parent: 1 - - uid: 826 + - uid: 840 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 827 + - uid: 841 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 828 + - uid: 842 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 829 + - uid: 843 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 830 + - uid: 844 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 831 + - uid: 845 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 832 + - uid: 846 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 833 + - uid: 847 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 834 + - uid: 848 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 835 + - uid: 849 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 836 + - uid: 850 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 837 + - uid: 851 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 838 + - uid: 852 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 839 + - uid: 853 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 840 + - uid: 854 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 841 + - uid: 855 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 842 + - uid: 856 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 843 + - uid: 857 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 844 + - uid: 858 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 845 + - uid: 859 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 846 + - uid: 860 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 847 + - uid: 861 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 848 + - uid: 862 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 849 + - uid: 863 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 850 + - uid: 864 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 851 + - uid: 865 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 852 + - uid: 866 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 853 + - uid: 867 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 854 + - uid: 868 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 855 + - uid: 869 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 856 + - uid: 870 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 857 + - uid: 871 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 858 + - uid: 872 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 859 + - uid: 873 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 860 + - uid: 874 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 861 + - uid: 875 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 862 + - uid: 876 components: - type: Transform pos: 6.5,-2.5 parent: 1 - - uid: 863 + - uid: 877 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 864 + - uid: 878 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 865 + - uid: 879 components: - type: Transform pos: 6.5,-5.5 parent: 1 - - uid: 866 + - uid: 880 components: - type: Transform pos: 6.5,-6.5 parent: 1 - - uid: 867 + - uid: 881 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 868 + - uid: 882 components: - type: Transform pos: 7.5,-7.5 parent: 1 - - uid: 869 + - uid: 883 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 870 + - uid: 884 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 871 + - uid: 885 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 872 + - uid: 886 components: - type: Transform pos: 7.5,-11.5 parent: 1 - - uid: 873 + - uid: 887 components: - type: Transform pos: 7.5,-12.5 parent: 1 - - uid: 874 + - uid: 888 components: - type: Transform pos: 7.5,-13.5 parent: 1 - - uid: 875 + - uid: 889 components: - type: Transform pos: 6.5,-13.5 parent: 1 - - uid: 876 + - uid: 890 components: - type: Transform pos: -4.5,-3.5 parent: 1 - - uid: 877 + - uid: 891 components: - type: Transform pos: -3.5,-3.5 parent: 1 - - uid: 878 + - uid: 892 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 879 + - uid: 893 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 880 + - uid: 894 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 881 + - uid: 895 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 882 + - uid: 896 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 883 + - uid: 897 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 884 + - uid: 898 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 885 + - uid: 899 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 886 + - uid: 900 components: - type: Transform pos: 5.5,-3.5 parent: 1 - - uid: 887 + - uid: 901 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 888 + - uid: 902 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 889 + - uid: 903 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 890 + - uid: 904 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 891 + - uid: 905 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 892 + - uid: 906 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 893 + - uid: 907 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 894 + - uid: 908 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 895 + - uid: 909 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 896 + - uid: 910 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 897 + - uid: 911 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 898 + - uid: 912 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 899 + - uid: 913 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 900 + - uid: 914 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 901 + - uid: 915 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 902 + - uid: 916 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 903 + - uid: 917 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 904 + - uid: 918 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 905 + - uid: 919 components: - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 906 + - uid: 920 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 907 + - uid: 921 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 908 + - uid: 922 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 909 + - uid: 923 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 910 + - uid: 924 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 911 + - uid: 925 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 912 + - uid: 926 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 913 + - uid: 927 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 914 + - uid: 928 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 915 + - uid: 929 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 916 + - uid: 930 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 917 + - uid: 931 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 918 + - uid: 932 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 919 + - uid: 933 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 920 + - uid: 934 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 921 + - uid: 935 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 922 + - uid: 936 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 923 + - uid: 937 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 924 + - uid: 938 components: - type: Transform pos: 0.5,13.5 parent: 1 - - uid: 925 + - uid: 939 components: - type: Transform pos: 0.5,14.5 parent: 1 - - uid: 926 + - uid: 940 components: - type: Transform pos: 0.5,15.5 parent: 1 - - uid: 927 + - uid: 941 components: - type: Transform pos: 0.5,16.5 parent: 1 - - uid: 928 + - uid: 942 components: - type: Transform pos: 0.5,17.5 parent: 1 - - uid: 929 + - uid: 943 components: - type: Transform pos: 0.5,18.5 parent: 1 - - uid: 930 + - uid: 944 components: - type: Transform pos: 0.5,19.5 parent: 1 - - uid: 931 + - uid: 945 components: - type: Transform pos: 0.5,20.5 parent: 1 - - uid: 932 + - uid: 946 components: - type: Transform pos: -0.5,19.5 parent: 1 - - uid: 933 + - uid: 947 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 934 + - uid: 948 components: - type: Transform pos: 2.5,20.5 parent: 1 - - uid: 935 + - uid: 949 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 936 + - uid: 950 components: - type: Transform pos: 1.5,22.5 parent: 1 - - uid: 937 + - uid: 951 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 938 + - uid: 952 components: - type: Transform pos: 1.5,24.5 parent: 1 - - uid: 939 + - uid: 953 components: - type: Transform pos: 1.5,25.5 parent: 1 - - uid: 940 + - uid: 954 components: - type: Transform pos: 1.5,26.5 parent: 1 - - uid: 941 + - uid: 955 components: - type: Transform pos: 1.5,27.5 parent: 1 - - uid: 942 + - uid: 956 components: - type: Transform pos: 1.5,28.5 parent: 1 - - uid: 943 + - uid: 957 components: - type: Transform pos: 1.5,29.5 parent: 1 - - uid: 944 + - uid: 958 components: - type: Transform pos: 1.5,30.5 parent: 1 - - uid: 945 + - uid: 959 components: - type: Transform pos: 1.5,31.5 parent: 1 - - uid: 946 + - uid: 960 components: - type: Transform pos: 1.5,32.5 parent: 1 - - uid: 947 + - uid: 961 components: - type: Transform pos: 2.5,32.5 parent: 1 - - uid: 948 + - uid: 962 components: - type: Transform pos: 3.5,32.5 parent: 1 - - uid: 949 + - uid: 963 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 950 + - uid: 964 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 951 + - uid: 965 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 952 + - uid: 966 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 953 + - uid: 967 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 954 + - uid: 968 components: - type: Transform pos: 3.5,-14.5 @@ -11704,643 +12735,643 @@ entities: angularDamping: 0 linearDamping: 0 canCollide: False - - uid: 955 + - uid: 969 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.9289885,30.44183 parent: 1 - - uid: 956 + - uid: 970 components: - type: Transform pos: 2.1747465,30.236162 parent: 1 - - uid: 957 + - uid: 971 components: - type: Transform pos: 2.2158842,30.428118 parent: 1 - - uid: 958 + - uid: 972 components: - type: Transform pos: 2.1747465,30.866877 parent: 1 - - uid: 959 + - uid: 973 components: - type: Transform pos: 2.2021704,30.688631 parent: 1 - proto: Catwalk entities: - - uid: 960 + - uid: 974 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,22.5 parent: 1 - - uid: 961 + - uid: 975 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 962 + - uid: 976 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 963 + - uid: 977 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-2.5 parent: 1 - - uid: 964 + - uid: 978 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-1.5 parent: 1 - - uid: 965 + - uid: 979 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 966 + - uid: 980 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 1 - - uid: 967 + - uid: 981 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 1 - - uid: 968 + - uid: 982 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 1 - - uid: 969 + - uid: 983 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-1.5 parent: 1 - - uid: 970 + - uid: 984 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 971 + - uid: 985 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-2.5 parent: 1 - - uid: 972 + - uid: 986 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,0.5 parent: 1 - - uid: 973 + - uid: 987 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-1.5 parent: 1 - - uid: 974 + - uid: 988 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,17.5 parent: 1 - - uid: 975 + - uid: 989 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,19.5 parent: 1 - - uid: 976 + - uid: 990 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,17.5 parent: 1 - - uid: 977 + - uid: 991 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,19.5 parent: 1 - - uid: 978 + - uid: 992 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,1.5 parent: 1 - - uid: 979 + - uid: 993 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 1 - - uid: 980 + - uid: 994 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 1 - - uid: 981 + - uid: 995 components: - type: Transform pos: -0.5,34.5 parent: 1 - - uid: 982 + - uid: 996 components: - type: Transform pos: -5.5,20.5 parent: 1 - - uid: 983 + - uid: 997 components: - type: Transform pos: -5.5,19.5 parent: 1 - - uid: 984 + - uid: 998 components: - type: Transform pos: -5.5,18.5 parent: 1 - - uid: 985 + - uid: 999 components: - type: Transform pos: -5.5,17.5 parent: 1 - - uid: 986 + - uid: 1000 components: - type: Transform pos: -5.5,16.5 parent: 1 - - uid: 987 + - uid: 1001 components: - type: Transform pos: 6.5,16.5 parent: 1 - - uid: 988 + - uid: 1002 components: - type: Transform pos: 6.5,17.5 parent: 1 - - uid: 989 + - uid: 1003 components: - type: Transform pos: 6.5,18.5 parent: 1 - - uid: 990 + - uid: 1004 components: - type: Transform pos: 6.5,19.5 parent: 1 - - uid: 991 + - uid: 1005 components: - type: Transform pos: 6.5,20.5 parent: 1 - - uid: 992 + - uid: 1006 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 1 - - uid: 993 + - uid: 1007 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - - uid: 994 + - uid: 1008 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,16.5 parent: 1 - - uid: 995 + - uid: 1009 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,14.5 parent: 1 - - uid: 996 + - uid: 1010 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,15.5 parent: 1 - - uid: 997 + - uid: 1011 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,18.5 parent: 1 - - uid: 998 + - uid: 1012 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,17.5 parent: 1 - - uid: 999 + - uid: 1013 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,12.5 parent: 1 - - uid: 1000 + - uid: 1014 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 - - uid: 1001 + - uid: 1015 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,12.5 parent: 1 - - uid: 1002 + - uid: 1016 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,12.5 parent: 1 - - uid: 1003 + - uid: 1017 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,11.5 parent: 1 - - uid: 1004 + - uid: 1018 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,10.5 parent: 1 - - uid: 1005 + - uid: 1019 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,9.5 parent: 1 - - uid: 1006 + - uid: 1020 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,8.5 parent: 1 - - uid: 1007 + - uid: 1021 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,7.5 parent: 1 - - uid: 1008 + - uid: 1022 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,6.5 parent: 1 - - uid: 1009 + - uid: 1023 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 1 - - uid: 1010 + - uid: 1024 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 1 - - uid: 1011 + - uid: 1025 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 1 - - uid: 1012 + - uid: 1026 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,3.5 parent: 1 - - uid: 1013 + - uid: 1027 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 1 - - uid: 1014 + - uid: 1028 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,3.5 parent: 1 - - uid: 1015 + - uid: 1029 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,3.5 parent: 1 - - uid: 1016 + - uid: 1030 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,3.5 parent: 1 - - uid: 1017 + - uid: 1031 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 1 - - uid: 1018 + - uid: 1032 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 - - uid: 1019 + - uid: 1033 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 1 - - uid: 1020 + - uid: 1034 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 1021 + - uid: 1035 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,7.5 parent: 1 - - uid: 1022 + - uid: 1036 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,8.5 parent: 1 - - uid: 1023 + - uid: 1037 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,9.5 parent: 1 - - uid: 1024 + - uid: 1038 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 1 - - uid: 1025 + - uid: 1039 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 1 - - uid: 1026 + - uid: 1040 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,12.5 parent: 1 - - uid: 1027 + - uid: 1041 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,12.5 parent: 1 - - uid: 1028 + - uid: 1042 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 1 - - uid: 1029 + - uid: 1043 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-16.5 parent: 1 - - uid: 1030 + - uid: 1044 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-15.5 parent: 1 - - uid: 1031 + - uid: 1045 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-13.5 parent: 1 - - uid: 1032 + - uid: 1046 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-13.5 parent: 1 - - uid: 1033 + - uid: 1047 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-13.5 parent: 1 - - uid: 1034 + - uid: 1048 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-13.5 parent: 1 - - uid: 1035 + - uid: 1049 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-13.5 parent: 1 - - uid: 1036 + - uid: 1050 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-13.5 parent: 1 - - uid: 1037 + - uid: 1051 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-12.5 parent: 1 - - uid: 1038 + - uid: 1052 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-11.5 parent: 1 - - uid: 1039 + - uid: 1053 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-10.5 parent: 1 - - uid: 1040 + - uid: 1054 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-9.5 parent: 1 - - uid: 1041 + - uid: 1055 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-8.5 parent: 1 - - uid: 1042 + - uid: 1056 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,34.5 parent: 1 - - uid: 1043 + - uid: 1057 components: - type: Transform pos: 1.5,34.5 parent: 1 - - uid: 1044 + - uid: 1058 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,33.5 parent: 1 - - uid: 1045 + - uid: 1059 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,34.5 parent: 1 - - uid: 1046 + - uid: 1060 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,33.5 parent: 1 - - uid: 1047 + - uid: 1061 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,32.5 parent: 1 - - uid: 1048 + - uid: 1062 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,31.5 parent: 1 - - uid: 1049 + - uid: 1063 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,30.5 parent: 1 - - uid: 1050 + - uid: 1064 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,33.5 parent: 1 - - uid: 1051 + - uid: 1065 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,33.5 parent: 1 - - uid: 1052 + - uid: 1066 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,34.5 parent: 1 - - uid: 1053 + - uid: 1067 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,33.5 parent: 1 - - uid: 1054 + - uid: 1068 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,23.5 parent: 1 - - uid: 1055 + - uid: 1069 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,23.5 parent: 1 - - uid: 1056 + - uid: 1070 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,21.5 parent: 1 - - uid: 1057 + - uid: 1071 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,21.5 parent: 1 - - uid: 1058 + - uid: 1072 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,22.5 parent: 1 - - uid: 1059 + - uid: 1073 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,27.5 parent: 1 - - uid: 1060 + - uid: 1074 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,26.5 parent: 1 - - uid: 1061 + - uid: 1075 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,25.5 parent: 1 - - uid: 1062 + - uid: 1076 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,27.5 parent: 1 - - uid: 1063 + - uid: 1077 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,25.5 parent: 1 - - uid: 1064 + - uid: 1078 components: - type: Transform rot: 3.141592653589793 rad @@ -12348,41 +13379,41 @@ entities: parent: 1 - proto: Chair entities: - - uid: 1120 + - uid: 1079 components: - type: Transform pos: -2.5,28.5 parent: 1 - - uid: 2087 + - uid: 1080 components: - type: Transform pos: -3.5,28.5 parent: 1 - - uid: 2182 + - uid: 1081 components: - type: Transform pos: 4.5,28.5 parent: 1 - - uid: 2183 + - uid: 1082 components: - type: Transform pos: 3.5,28.5 parent: 1 - proto: ChairFolding entities: - - uid: 1065 + - uid: 1083 components: - type: Transform rot: 3.141592653589793 rad pos: 5.6385274,33.79165 parent: 1 - - uid: 1066 + - uid: 1084 components: - type: Transform rot: 3.141592653589793 rad pos: 6.455937,33.79165 parent: 1 - - uid: 2184 + - uid: 1085 components: - type: Transform rot: -1.5707963267948966 rad @@ -12390,68 +13421,68 @@ entities: parent: 1 - proto: ChairOfficeDark entities: - - uid: 1067 + - uid: 1086 components: - type: Transform rot: 3.141592653589793 rad pos: 3.0168126,-2.2222314 parent: 1 - - uid: 1068 + - uid: 1087 components: - type: Transform rot: 3.141592653589793 rad pos: -2.008704,-2.1479003 parent: 1 - - uid: 1069 + - uid: 1088 components: - type: Transform rot: 3.141592653589793 rad pos: -2.011708,-5.226958 parent: 1 - - uid: 1070 + - uid: 1089 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5255032,-8.341822 parent: 1 - - uid: 1071 + - uid: 1090 components: - type: Transform rot: 3.141592653589793 rad pos: 3.0077765,-5.271557 parent: 1 - - uid: 1072 + - uid: 1091 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.4135564,-9.459794 parent: 1 - - uid: 1073 + - uid: 1092 components: - type: Transform rot: 3.141592653589793 rad pos: -4.0172853,-12.316838 parent: 1 - - uid: 1074 + - uid: 1093 components: - type: Transform pos: 2.9927013,-15.537149 parent: 1 - - uid: 1075 + - uid: 1094 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.6448607,-8.383146 parent: 1 - - uid: 1076 + - uid: 1095 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.58989,8.69132 + pos: 6.5891604,8.650975 parent: 1 - proto: ChairPilotSeat entities: - - uid: 1077 + - uid: 1096 components: - type: Transform rot: 3.141592653589793 rad @@ -12459,59 +13490,59 @@ entities: parent: 1 - proto: ChemDispenser entities: - - uid: 1078 + - uid: 1097 components: - type: Transform pos: -7.5,11.5 parent: 1 - proto: ChemistryHotplate entities: - - uid: 1079 + - uid: 1098 components: - type: Transform pos: -4.5,10.5 parent: 1 - proto: ChemMaster entities: - - uid: 1080 + - uid: 1099 components: - type: Transform pos: -6.5,11.5 parent: 1 - proto: CloningPod entities: - - uid: 1081 + - uid: 1100 components: - type: Transform pos: -5.5,7.5 parent: 1 - type: DeviceLinkSink links: - - 1118 + - 1137 - proto: ClosetEmergencyFilledRandom entities: - - uid: 1082 + - uid: 1101 components: - type: Transform pos: -6.5,-6.5 parent: 1 - proto: ClosetFireFilled entities: - - uid: 1083 + - uid: 1102 components: - type: Transform pos: -6.5,-5.5 parent: 1 - proto: ClosetToolFilled entities: - - uid: 2190 + - uid: 1103 components: - type: Transform pos: -1.5,14.5 parent: 1 - proto: ClosetWallOrange entities: - - uid: 1084 + - uid: 1104 components: - type: Transform rot: -1.5707963267948966 rad @@ -12523,14 +13554,14 @@ entities: showEnts: False occludes: True ents: - - 1088 - - 1085 - - 1086 - - 1089 - - 1087 - - 1091 - - 1090 - - uid: 1092 + - 1108 + - 1105 + - 1106 + - 1109 + - 1107 + - 1111 + - 1110 + - uid: 1112 components: - type: Transform rot: 1.5707963267948966 rad @@ -12542,79 +13573,69 @@ entities: showEnts: False occludes: True ents: - - 1097 - - 1095 - - 1094 - - 1096 - - 1098 - - 1093 -- proto: ClothingBackpackDuffelSurgeryAdvancedFilled + - 1117 + - 1115 + - 1114 + - 1116 + - 1118 + - 1113 +- proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 1099 - components: - - type: Transform - pos: -4.911055,11.182386 - parent: 1 - - uid: 1100 - components: - - type: Transform - pos: -4.73918,11.088572 - parent: 1 - - uid: 1101 + - uid: 1119 components: - type: Transform - pos: -4.411055,10.963485 + pos: -4.3876457,10.904082 parent: 1 - proto: ClothingBeltHolsterFilled entities: - - uid: 1103 + - uid: 1121 components: - type: Transform - parent: 1102 + parent: 1120 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHandsGlovesColorYellow entities: - - uid: 1110 + - uid: 1128 components: - type: Transform pos: -3.4274457,17.92572 parent: 1 - - uid: 1111 + - uid: 1129 components: - type: Transform pos: -3.5072637,18.067436 parent: 1 - proto: ClothingHandsGlovesCombat entities: - - uid: 1104 + - uid: 1122 components: - type: Transform - parent: 1102 + parent: 1120 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatNCWLBeretAdmiral entities: - - uid: 1105 + - uid: 1123 components: - type: Transform - parent: 1102 + parent: 1120 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatNCWLKommissarHat entities: - - uid: 1113 + - uid: 1131 components: - type: Transform - parent: 1112 + parent: 1130 - type: Physics canCollide: False - proto: ClothingHeadHatWelding entities: - - uid: 1114 + - uid: 1132 components: - type: Transform rot: 1.5707963267948966 rad @@ -12622,347 +13643,354 @@ entities: parent: 1 - proto: ClothingHeadHelmetNCWLEVA entities: - - uid: 84 + - uid: 82 components: - type: Transform - parent: 82 + parent: 80 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 90 + - uid: 88 components: - type: Transform - parent: 88 + parent: 86 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 96 + - uid: 94 components: - type: Transform - parent: 94 + parent: 92 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 102 + - uid: 100 components: - type: Transform - parent: 100 + parent: 98 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 108 + - uid: 106 components: - type: Transform - parent: 106 + parent: 104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 114 + - uid: 112 components: - type: Transform - parent: 112 + parent: 110 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 120 + - uid: 118 components: - type: Transform - parent: 118 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 126 + - uid: 124 components: - type: Transform - parent: 124 + parent: 122 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskBreath entities: - - uid: 85 + - uid: 83 components: - type: Transform - parent: 82 + parent: 80 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 91 + - uid: 89 components: - type: Transform - parent: 88 + parent: 86 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 97 + - uid: 95 components: - type: Transform - parent: 94 + parent: 92 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 103 + - uid: 101 components: - type: Transform - parent: 100 + parent: 98 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 109 + - uid: 107 components: - type: Transform - parent: 106 + parent: 104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 115 + - uid: 113 components: - type: Transform - parent: 112 + parent: 110 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 121 + - uid: 119 components: - type: Transform - parent: 118 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 127 + - uid: 125 components: - type: Transform - parent: 124 + parent: 122 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckAdminCapelet entities: - - uid: 1106 + - uid: 1124 components: - type: Transform - parent: 1102 + parent: 1120 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterNCWLEVA entities: - - uid: 86 + - uid: 84 components: - type: Transform - parent: 82 + parent: 80 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 92 + - uid: 90 components: - type: Transform - parent: 88 + parent: 86 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 98 + - uid: 96 components: - type: Transform - parent: 94 + parent: 92 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 104 + - uid: 102 components: - type: Transform - parent: 100 + parent: 98 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 110 + - uid: 108 components: - type: Transform - parent: 106 + parent: 104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 116 + - uid: 114 components: - type: Transform - parent: 112 + parent: 110 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 122 + - uid: 120 components: - type: Transform - parent: 118 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 128 + - uid: 126 components: - type: Transform - parent: 124 + parent: 122 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesBootsCowboyBlack entities: - - uid: 1107 + - uid: 1125 components: - type: MetaData desc: Made from real Imperial leather. name: polished officer's longboots - type: Transform - parent: 1102 + parent: 1120 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesBootsMag entities: - - uid: 87 + - uid: 85 components: - type: Transform - parent: 82 + parent: 80 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 93 + - uid: 91 components: - type: Transform - parent: 88 + parent: 86 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 99 + - uid: 97 components: - type: Transform - parent: 94 + parent: 92 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 105 + - uid: 103 components: - type: Transform - parent: 100 + parent: 98 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 111 + - uid: 109 components: - type: Transform - parent: 106 + parent: 104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 117 + - uid: 115 components: - type: Transform - parent: 112 + parent: 110 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 123 + - uid: 121 components: - type: Transform - parent: 118 + parent: 116 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 129 + - uid: 127 components: - type: Transform - parent: 124 + parent: 122 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesColorOrange entities: - - uid: 1085 + - uid: 1105 components: - type: Transform - parent: 1084 + parent: 1104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1093 + - uid: 1113 components: - type: Transform - parent: 1092 + parent: 1112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtPrisoner entities: - - uid: 1086 + - uid: 1106 components: - type: Transform - parent: 1084 + parent: 1104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1094 + - uid: 1114 components: - type: Transform - parent: 1092 + parent: 1112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitNCWLCommunications entities: - - uid: 1108 + - uid: 1126 components: - type: Transform - parent: 1102 + parent: 1120 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPrisoner entities: - - uid: 1087 + - uid: 1107 components: - type: Transform - parent: 1084 + parent: 1104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1095 + - uid: 1115 components: - type: Transform - parent: 1092 + parent: 1112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Cobweb1 entities: - - uid: 1115 + - uid: 1133 components: - type: Transform pos: 0.5,-12.5 parent: 1 - proto: Cobweb2 entities: - - uid: 1116 + - uid: 1134 components: - type: Transform pos: 7.5,-15.5 parent: 1 +- proto: ComputerAdvancedRadar + entities: + - uid: 1135 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 - proto: ComputerBankATM entities: - - uid: 1117 + - uid: 1136 components: - type: Transform rot: -1.5707963267948966 rad @@ -12980,33 +14008,33 @@ entities: ents: [] - proto: ComputerCloningConsole entities: - - uid: 1118 + - uid: 1137 components: - type: Transform pos: -4.5,7.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 1426: + 1449: - - CloningPodSender - MedicalScannerReceiver - - MedicalScannerSender - MedicalScannerReceiver - 1081: + 1100: - - CloningPodSender - CloningPodReceiver - - MedicalScannerSender - CloningPodReceiver - proto: ComputerRadar entities: - - uid: 1119 + - uid: 1138 components: - type: Transform pos: 2.5,28.5 parent: 1 - proto: ComputerShuttle entities: - - uid: 1121 + - uid: 1139 components: - type: Transform pos: 0.5,-0.5 @@ -13040,19 +14068,19 @@ entities: - Module E - proto: ComputerTabletopAdvancedRadar entities: - - uid: 1122 + - uid: 1140 components: - type: Transform pos: 3.5,-4.5 parent: 1 - proto: ComputerTabletopPowerMonitoring entities: - - uid: 1123 + - uid: 1141 components: - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 1124 + - uid: 1142 components: - type: Transform rot: 3.141592653589793 rad @@ -13060,38 +14088,38 @@ entities: parent: 1 - proto: ComputerTabletopStationRecords entities: - - uid: 1125 + - uid: 1143 components: - type: Transform pos: -2.5,-1.5 parent: 1 - proto: ComputerTabletopSurveillanceCameraMonitor entities: - - uid: 1126 + - uid: 1144 components: - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 1127 + - uid: 1145 components: - type: Transform pos: -4.5,-11.5 parent: 1 - proto: ComputerTabletopTargeting entities: - - uid: 1128 + - uid: 1146 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 1129 + - uid: 1147 components: - type: Transform pos: 2.5,-4.5 parent: 1 - proto: ComputerWallmountBankATM entities: - - uid: 1131 + - uid: 1148 components: - type: Transform rot: -1.5707963267948966 rad @@ -13109,7 +14137,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 1133 + - uid: 1149 components: - type: Transform rot: 1.5707963267948966 rad @@ -13127,7 +14155,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 1134 + - uid: 1150 components: - type: Transform pos: 3.5,29.5 @@ -13146,7 +14174,7 @@ entities: canCollide: False - proto: ConveyorBelt entities: - - uid: 1135 + - uid: 1151 components: - type: Transform rot: 1.5707963267948966 rad @@ -13154,8 +14182,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1772 - - uid: 1136 + - 1799 + - uid: 1152 components: - type: Transform rot: 1.5707963267948966 rad @@ -13163,8 +14191,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1772 - - uid: 1137 + - 1799 + - uid: 1153 components: - type: Transform rot: 1.5707963267948966 rad @@ -13172,8 +14200,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1772 - - uid: 1138 + - 1799 + - uid: 1154 components: - type: Transform rot: -1.5707963267948966 rad @@ -13181,8 +14209,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1773 - - uid: 1139 + - 1800 + - uid: 1155 components: - type: Transform rot: -1.5707963267948966 rad @@ -13190,8 +14218,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1773 - - uid: 1140 + - 1800 + - uid: 1156 components: - type: Transform rot: -1.5707963267948966 rad @@ -13199,22 +14227,22 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1773 + - 1800 - proto: CrateArtilleryAmmo entities: - - uid: 1142 + - uid: 1157 components: - type: Transform pos: -2.5,26.5 parent: 1 - - uid: 1143 + - uid: 1158 components: - type: Transform pos: 3.5,26.5 parent: 1 - proto: CrateCoolant entities: - - uid: 1144 + - uid: 1159 components: - type: Transform pos: -1.5,30.5 @@ -13229,7 +14257,7 @@ entities: volume: -5 path: /Audio/Machines/door_lock_off.ogg locked: False - - uid: 1145 + - uid: 1160 components: - type: Transform pos: -5.5,34.5 @@ -13264,82 +14292,82 @@ entities: - 0 - proto: CrateFoodMRE entities: - - uid: 151 + - uid: 1161 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 2181 + - uid: 1162 components: - type: Transform pos: 3.5,14.5 parent: 1 - proto: CrateMortarAmmo entities: - - uid: 1146 + - uid: 1163 components: - type: Transform pos: 3.5,27.5 parent: 1 - - uid: 1147 + - uid: 1164 components: - type: Transform pos: -2.5,27.5 parent: 1 - - uid: 1148 + - uid: 1165 components: - type: Transform pos: 3.5,21.5 parent: 1 - - uid: 1149 + - uid: 1166 components: - type: Transform pos: -2.5,21.5 parent: 1 - proto: CrateSumitomoAmmoHighYield entities: - - uid: 1150 + - uid: 1167 components: - type: Transform pos: -2.5,23.5 parent: 1 - - uid: 1151 + - uid: 1168 components: - type: Transform pos: 3.5,23.5 parent: 1 - proto: CrateVulcanAmmo entities: - - uid: 1152 + - uid: 1169 components: - type: Transform pos: -2.5,25.5 parent: 1 - - uid: 1153 + - uid: 1170 components: - type: Transform pos: 3.5,25.5 parent: 1 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 1154 + - uid: 1171 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 1155 + - uid: 1172 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 1156 + - uid: 1173 components: - type: Transform pos: 5.5,11.5 parent: 1 - proto: DefaultStationBeaconBridge entities: - - uid: 1157 + - uid: 1174 components: - type: Transform rot: 1.5707963267948966 rad @@ -13347,33 +14375,33 @@ entities: parent: 1 - proto: DiceBag entities: - - uid: 1096 + - uid: 1116 components: - type: Transform - parent: 1092 + parent: 1112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DisposalBend entities: - - uid: 1158 + - uid: 1175 components: - type: Transform pos: 1.5,31.5 parent: 1 - - uid: 1159 + - uid: 1176 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-10.5 parent: 1 - - uid: 1160 + - uid: 1177 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-10.5 parent: 1 - - uid: 1161 + - uid: 1178 components: - type: Transform rot: -1.5707963267948966 rad @@ -13381,334 +14409,334 @@ entities: parent: 1 - proto: DisposalJunction entities: - - uid: 1162 + - uid: 1179 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 1163 + - uid: 1180 components: - type: Transform pos: 1.5,-6.5 parent: 1 - proto: DisposalPipe entities: - - uid: 1164 + - uid: 1181 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,31.5 parent: 1 - - uid: 1165 + - uid: 1182 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,31.5 parent: 1 - - uid: 1166 + - uid: 1183 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,31.5 parent: 1 - - uid: 1167 + - uid: 1184 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,31.5 parent: 1 - - uid: 1168 + - uid: 1185 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,31.5 parent: 1 - - uid: 1169 + - uid: 1186 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,31.5 parent: 1 - - uid: 1170 + - uid: 1187 components: - type: Transform pos: 1.5,30.5 parent: 1 - - uid: 1171 + - uid: 1188 components: - type: Transform pos: 1.5,29.5 parent: 1 - - uid: 1172 + - uid: 1189 components: - type: Transform pos: 1.5,28.5 parent: 1 - - uid: 1173 + - uid: 1190 components: - type: Transform pos: 1.5,27.5 parent: 1 - - uid: 1174 + - uid: 1191 components: - type: Transform pos: 1.5,26.5 parent: 1 - - uid: 1175 + - uid: 1192 components: - type: Transform pos: 1.5,25.5 parent: 1 - - uid: 1176 + - uid: 1193 components: - type: Transform pos: 1.5,24.5 parent: 1 - - uid: 1177 + - uid: 1194 components: - type: Transform pos: 1.5,23.5 parent: 1 - - uid: 1178 + - uid: 1195 components: - type: Transform pos: 1.5,22.5 parent: 1 - - uid: 1179 + - uid: 1196 components: - type: Transform pos: 1.5,21.5 parent: 1 - - uid: 1180 + - uid: 1197 components: - type: Transform pos: 1.5,20.5 parent: 1 - - uid: 1181 + - uid: 1198 components: - type: Transform pos: 1.5,19.5 parent: 1 - - uid: 1182 + - uid: 1199 components: - type: Transform pos: 1.5,18.5 parent: 1 - - uid: 1183 + - uid: 1200 components: - type: Transform pos: 1.5,17.5 parent: 1 - - uid: 1184 + - uid: 1201 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 1185 + - uid: 1202 components: - type: Transform pos: 1.5,15.5 parent: 1 - - uid: 1186 + - uid: 1203 components: - type: Transform pos: 1.5,14.5 parent: 1 - - uid: 1187 + - uid: 1204 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 1188 + - uid: 1205 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 1189 + - uid: 1206 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 1190 + - uid: 1207 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 1191 + - uid: 1208 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 1192 + - uid: 1209 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 1193 + - uid: 1210 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 1194 + - uid: 1211 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 1195 + - uid: 1212 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 1196 + - uid: 1213 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 1197 + - uid: 1214 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1198 + - uid: 1215 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 1199 + - uid: 1216 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 1200 + - uid: 1217 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 1201 + - uid: 1218 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 1202 + - uid: 1219 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 1203 + - uid: 1220 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 1204 + - uid: 1221 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 1205 + - uid: 1222 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 1206 + - uid: 1223 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 1 - - uid: 1207 + - uid: 1224 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-6.5 parent: 1 - - uid: 1208 + - uid: 1225 components: - type: Transform pos: 1.5,-7.5 parent: 1 - - uid: 1209 + - uid: 1226 components: - type: Transform pos: 1.5,-8.5 parent: 1 - - uid: 1210 + - uid: 1227 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 1211 + - uid: 1228 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-15.5 parent: 1 - - uid: 1212 + - uid: 1229 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-14.5 parent: 1 - - uid: 1213 + - uid: 1230 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-13.5 parent: 1 - - uid: 1214 + - uid: 1231 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-12.5 parent: 1 - - uid: 1215 + - uid: 1232 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-11.5 parent: 1 - - uid: 1216 + - uid: 1233 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-16.5 parent: 1 - - uid: 1217 + - uid: 1234 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 1 - - uid: 1218 + - uid: 1235 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-16.5 parent: 1 - - uid: 1219 + - uid: 1236 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-16.5 parent: 1 - - uid: 1220 + - uid: 1237 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-16.5 parent: 1 - - uid: 1221 + - uid: 1238 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-16.5 parent: 1 - - uid: 1222 + - uid: 1239 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-16.5 parent: 1 - - uid: 1223 + - uid: 1240 components: - type: Transform rot: 1.5707963267948966 rad @@ -13716,25 +14744,25 @@ entities: parent: 1 - proto: DisposalTrunk entities: - - uid: 1224 + - uid: 1241 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-16.5 parent: 1 - - uid: 1225 + - uid: 1242 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-6.5 parent: 1 - - uid: 1226 + - uid: 1243 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,5.5 parent: 1 - - uid: 1227 + - uid: 1244 components: - type: Transform rot: 1.5707963267948966 rad @@ -13742,26 +14770,26 @@ entities: parent: 1 - proto: DisposalUnit entities: - - uid: 1228 + - uid: 1245 components: - type: Transform pos: -1.5,-6.5 parent: 1 - - uid: 1229 + - uid: 1246 components: - type: Transform pos: -5.5,31.5 parent: 1 - proto: Dresser entities: - - uid: 1112 + - uid: 1130 components: - type: Transform pos: -3.5,-9.5 parent: 1 - type: Storage storedItems: - 1113: + 1131: position: 0,0 _rotation: East - type: ContainerContainer @@ -13770,94 +14798,124 @@ entities: showEnts: False occludes: True ents: - - 1113 + - 1131 - proto: DrinkFlaskOld entities: - - uid: 1109 + - uid: 1127 components: - type: Transform - parent: 1102 + parent: 1120 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DrinkGlass entities: - - uid: 52 + - uid: 1247 components: - type: Transform rot: 3.141592653589793 rad pos: 4.211298,16.269606 parent: 1 - - uid: 1132 + - uid: 1248 components: - type: Transform rot: 3.141592653589793 rad pos: 4.509692,16.337423 parent: 1 - - uid: 1141 + - uid: 1249 components: - type: Transform rot: 3.141592653589793 rad pos: 4.3062415,16.676508 parent: 1 - - uid: 1444 + - uid: 1250 components: - type: Transform rot: 3.141592653589793 rad pos: 4.591072,16.662943 parent: 1 + - uid: 1251 + components: + - type: Transform + pos: 7.2453113,8.272466 + parent: 1 + - uid: 1252 + components: + - type: Transform + pos: 7.414853,8.3289795 + parent: 1 + - uid: 1253 + components: + - type: Transform + pos: 7.2679167,8.080318 + parent: 1 - proto: DrinkMREFlask entities: - - uid: 1088 + - uid: 1108 components: - type: Transform - parent: 1084 + parent: 1104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1097 + - uid: 1117 components: - type: Transform - parent: 1092 + parent: 1112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DrinkVodkaBottleFull entities: - - uid: 1230 + - uid: 1254 components: - type: Transform pos: -0.59381837,-9.968295 parent: 1 - - uid: 1443 + - uid: 1255 components: - type: Transform pos: 4.618585,15.914518 parent: 1 + - uid: 1256 + components: + - type: Transform + pos: 7.607001,8.080318 + parent: 1 + - uid: 1257 + components: + - type: Transform + pos: 7.776543,7.662114 + parent: 1 + - uid: 1258 + components: + - type: Transform + pos: 7.3809447,7.662114 + parent: 1 - proto: DrinkVodkaGlass entities: - - uid: 1231 + - uid: 1259 components: - type: Transform pos: -0.3151583,-9.854951 parent: 1 - proto: EncryptionKeyNCWL entities: - - uid: 1233 + - uid: 1261 components: - type: Transform - parent: 1232 + parent: 1260 - type: Physics canCollide: False - proto: ExplosivesSignMed entities: - - uid: 1234 + - uid: 1262 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,32.5 parent: 1 - - uid: 1235 + - uid: 1263 components: - type: Transform rot: -1.5707963267948966 rad @@ -13865,28 +14923,28 @@ entities: parent: 1 - proto: FaxMachineShip entities: - - uid: 1236 + - uid: 1264 components: - type: Transform pos: 3.5,-1.5 parent: 1 - proto: filingCabinetDrawerRandom entities: - - uid: 1237 + - uid: 1265 components: - type: Transform pos: 3.5,-6.5 parent: 1 - proto: filingCabinetTallRandom entities: - - uid: 1238 + - uid: 1266 components: - type: Transform pos: -2.5,-6.5 parent: 1 - proto: FireAxeCabinetFilled entities: - - uid: 1239 + - uid: 1267 components: - type: Transform rot: 1.5707963267948966 rad @@ -13894,114 +14952,114 @@ entities: parent: 1 - proto: Firelock entities: - - uid: 1240 + - uid: 1268 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 1241 + - uid: 1269 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,3.5 parent: 1 - - uid: 1242 + - uid: 1270 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,3.5 parent: 1 - - uid: 1243 + - uid: 1271 components: - type: Transform pos: 0.5,13.5 parent: 1 - - uid: 1244 + - uid: 1272 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,27.5 parent: 1 - - uid: 1245 + - uid: 1273 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,26.5 parent: 1 - - uid: 1246 + - uid: 1274 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,25.5 parent: 1 - - uid: 1247 + - uid: 1275 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,27.5 parent: 1 - - uid: 1248 + - uid: 1276 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,25.5 parent: 1 - - uid: 1249 + - uid: 1277 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,26.5 parent: 1 - - uid: 1250 + - uid: 1278 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,19.5 parent: 1 - - uid: 1251 + - uid: 1279 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-7.5 parent: 1 - - uid: 1252 + - uid: 1280 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-7.5 parent: 1 - - uid: 1253 + - uid: 1281 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-4.5 parent: 1 - - uid: 1254 + - uid: 1282 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-4.5 parent: 1 - - uid: 1255 + - uid: 1283 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-4.5 parent: 1 - - uid: 1256 + - uid: 1284 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-4.5 parent: 1 - - uid: 1257 + - uid: 1285 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,31.5 parent: 1 - - uid: 1258 + - uid: 1286 components: - type: Transform rot: -1.5707963267948966 rad @@ -14009,7 +15067,7 @@ entities: parent: 1 - proto: FloorDrain entities: - - uid: 1261 + - uid: 1287 components: - type: Transform pos: 0.5,6.5 @@ -14018,23 +15076,23 @@ entities: fixtures: {} - proto: FoodSnackMREBrownie entities: - - uid: 1089 + - uid: 1109 components: - type: Transform - parent: 1084 + parent: 1104 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1098 + - uid: 1118 components: - type: Transform - parent: 1092 + parent: 1112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: GasPassiveVent entities: - - uid: 1262 + - uid: 1288 components: - type: Transform rot: -1.5707963267948966 rad @@ -14042,580 +15100,580 @@ entities: parent: 1 - proto: GasPipeBend entities: - - uid: 1263 + - uid: 1289 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 1 - - uid: 1264 + - uid: 1290 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 1 - - uid: 1265 + - uid: 1291 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 1 - - uid: 1266 + - uid: 1292 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1267 + - uid: 1293 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-11.5 parent: 1 - - uid: 1268 + - uid: 1294 components: - type: Transform pos: 7.5,-5.5 parent: 1 - - uid: 1269 + - uid: 1295 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-5.5 parent: 1 - - uid: 1270 + - uid: 1296 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 1 - - uid: 1271 + - uid: 1297 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-4.5 parent: 1 - - uid: 1272 + - uid: 1298 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-3.5 parent: 1 - - uid: 1273 + - uid: 1299 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 1274 + - uid: 1300 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,2.5 parent: 1 - - uid: 1275 + - uid: 1301 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 1276 + - uid: 1302 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 1 - - uid: 1277 + - uid: 1303 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,20.5 parent: 1 - - uid: 1278 + - uid: 1304 components: - type: Transform pos: -0.5,20.5 parent: 1 - - uid: 1279 + - uid: 1305 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,12.5 parent: 1 - - uid: 1280 + - uid: 1306 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 1281 + - uid: 1307 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-5.5 parent: 1 - - uid: 1282 + - uid: 1308 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-11.5 parent: 1 - - uid: 1283 + - uid: 1309 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-16.5 parent: 1 - - uid: 1284 + - uid: 1310 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 1285 + - uid: 1311 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-15.5 parent: 1 - - uid: 1286 + - uid: 1312 components: - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 1287 + - uid: 1313 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 1 - - uid: 1288 + - uid: 1314 components: - type: Transform pos: 1.5,-11.5 parent: 1 - proto: GasPipeStraight entities: - - uid: 1289 + - uid: 1315 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-13.5 parent: 1 - - uid: 1290 + - uid: 1316 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-12.5 parent: 1 - - uid: 1291 + - uid: 1317 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-11.5 parent: 1 - - uid: 1292 + - uid: 1318 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 - - uid: 1293 + - uid: 1319 components: - type: Transform pos: 2.5,23.5 parent: 1 - - uid: 1294 + - uid: 1320 components: - type: Transform pos: 2.5,22.5 parent: 1 - - uid: 1295 + - uid: 1321 components: - type: Transform pos: 2.5,21.5 parent: 1 - - uid: 1296 + - uid: 1322 components: - type: Transform pos: 1.5,19.5 parent: 1 - - uid: 1297 + - uid: 1323 components: - type: Transform pos: 1.5,18.5 parent: 1 - - uid: 1298 + - uid: 1324 components: - type: Transform pos: 1.5,17.5 parent: 1 - - uid: 1299 + - uid: 1325 components: - type: Transform pos: 1.5,16.5 parent: 1 - - uid: 1300 + - uid: 1326 components: - type: Transform pos: 1.5,15.5 parent: 1 - - uid: 1301 + - uid: 1327 components: - type: Transform pos: 1.5,14.5 parent: 1 - - uid: 1302 + - uid: 1328 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 1303 + - uid: 1329 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,12.5 parent: 1 - - uid: 1304 + - uid: 1330 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 1 - - uid: 1305 + - uid: 1331 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 1 - - uid: 1306 + - uid: 1332 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,9.5 parent: 1 - - uid: 1307 + - uid: 1333 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,8.5 parent: 1 - - uid: 1308 + - uid: 1334 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 1309 + - uid: 1335 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 1 - - uid: 1310 + - uid: 1336 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,7.5 parent: 1 - - uid: 1311 + - uid: 1337 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-11.5 parent: 1 - - uid: 1312 + - uid: 1338 components: - type: Transform pos: 7.5,-10.5 parent: 1 - - uid: 1313 + - uid: 1339 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 1314 + - uid: 1340 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 1315 + - uid: 1341 components: - type: Transform pos: 7.5,-7.5 parent: 1 - - uid: 1316 + - uid: 1342 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 1317 + - uid: 1343 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-3.5 parent: 1 - - uid: 1318 + - uid: 1344 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 1319 + - uid: 1345 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-3.5 parent: 1 - - uid: 1320 + - uid: 1346 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-4.5 parent: 1 - - uid: 1321 + - uid: 1347 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 1 - - uid: 1322 + - uid: 1348 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 1 - - uid: 1323 + - uid: 1349 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-0.5 parent: 1 - - uid: 1324 + - uid: 1350 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,0.5 parent: 1 - - uid: 1325 + - uid: 1351 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 1 - - uid: 1326 + - uid: 1352 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,3.5 parent: 1 - - uid: 1327 + - uid: 1353 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - - uid: 1328 + - uid: 1354 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,23.5 parent: 1 - - uid: 1329 + - uid: 1355 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,22.5 parent: 1 - - uid: 1330 + - uid: 1356 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,21.5 parent: 1 - - uid: 1331 + - uid: 1357 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,12.5 parent: 1 - - uid: 1332 + - uid: 1358 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 1333 + - uid: 1359 components: - type: Transform pos: -0.5,14.5 parent: 1 - - uid: 1334 + - uid: 1360 components: - type: Transform pos: -0.5,15.5 parent: 1 - - uid: 1335 + - uid: 1361 components: - type: Transform pos: -0.5,16.5 parent: 1 - - uid: 1336 + - uid: 1362 components: - type: Transform pos: -0.5,17.5 parent: 1 - - uid: 1337 + - uid: 1363 components: - type: Transform pos: -0.5,18.5 parent: 1 - - uid: 1338 + - uid: 1364 components: - type: Transform pos: -0.5,19.5 parent: 1 - - uid: 1339 + - uid: 1365 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 1340 + - uid: 1366 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 1341 + - uid: 1367 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 1342 + - uid: 1368 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 1343 + - uid: 1369 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 1344 + - uid: 1370 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 1345 + - uid: 1371 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 1346 + - uid: 1372 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 1347 + - uid: 1373 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 1348 + - uid: 1374 components: - type: Transform pos: -2.5,1.5 parent: 1 - - uid: 1349 + - uid: 1375 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 1350 + - uid: 1376 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 1351 + - uid: 1377 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 1352 + - uid: 1378 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 1353 + - uid: 1379 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 1354 + - uid: 1380 components: - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 1355 + - uid: 1381 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 1 - - uid: 1356 + - uid: 1382 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-5.5 parent: 1 - - uid: 1357 + - uid: 1383 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-6.5 parent: 1 - - uid: 1358 + - uid: 1384 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-7.5 parent: 1 - - uid: 1359 + - uid: 1385 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-8.5 parent: 1 - - uid: 1360 + - uid: 1386 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-9.5 parent: 1 - - uid: 1361 + - uid: 1387 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 1 - - uid: 1362 + - uid: 1388 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-13.5 parent: 1 - - uid: 1363 + - uid: 1389 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-13.5 parent: 1 - - uid: 1364 + - uid: 1390 components: - type: Transform pos: 5.5,-14.5 parent: 1 - - uid: 1365 + - uid: 1391 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-15.5 parent: 1 - - uid: 1366 + - uid: 1392 components: - type: Transform rot: -1.5707963267948966 rad @@ -14623,25 +15681,25 @@ entities: parent: 1 - proto: GasPipeTJunction entities: - - uid: 1367 + - uid: 1393 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,7.5 parent: 1 - - uid: 1368 + - uid: 1394 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-3.5 parent: 1 - - uid: 1369 + - uid: 1395 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,7.5 parent: 1 - - uid: 1370 + - uid: 1396 components: - type: Transform rot: -1.5707963267948966 rad @@ -14649,7 +15707,7 @@ entities: parent: 1 - proto: GasPort entities: - - uid: 1371 + - uid: 1397 components: - type: Transform rot: -1.5707963267948966 rad @@ -14657,7 +15715,7 @@ entities: parent: 1 - proto: GasPressurePump entities: - - uid: 1372 + - uid: 1398 components: - type: Transform rot: -1.5707963267948966 rad @@ -14667,18 +15725,18 @@ entities: targetPressure: 90.325 - proto: GasVentPump entities: - - uid: 1373 + - uid: 1399 components: - type: Transform pos: 1.5,-3.5 parent: 1 - type: DeviceNetwork configurators: - - 1441 + - 1468 deviceLists: - 35 - 34 - - uid: 1374 + - uid: 1400 components: - type: Transform rot: 1.5707963267948966 rad @@ -14686,35 +15744,35 @@ entities: parent: 1 - type: DeviceNetwork configurators: - - 1441 + - 1468 deviceLists: - 35 - 34 - - uid: 1375 + - uid: 1401 components: - type: Transform pos: 2.5,24.5 parent: 1 - type: DeviceNetwork configurators: - - 1441 + - 1468 deviceLists: - 35 - 34 - proto: GasVentScrubber entities: - - uid: 1376 + - uid: 1402 components: - type: Transform pos: -0.5,-3.5 parent: 1 - type: DeviceNetwork configurators: - - 1441 + - 1468 deviceLists: - 35 - 34 - - uid: 1377 + - uid: 1403 components: - type: Transform rot: -1.5707963267948966 rad @@ -14722,143 +15780,143 @@ entities: parent: 1 - type: DeviceNetwork configurators: - - 1441 + - 1468 deviceLists: - 35 - 34 - - uid: 1378 + - uid: 1404 components: - type: Transform pos: -1.5,24.5 parent: 1 - type: DeviceNetwork configurators: - - 1441 + - 1468 deviceLists: - 35 - 34 - proto: GravityGeneratorMini entities: - - uid: 1379 + - uid: 1405 components: - type: Transform pos: 0.5,-12.5 parent: 1 - proto: Grille entities: - - uid: 1380 + - uid: 1406 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 1 - - uid: 1381 + - uid: 1407 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 - - uid: 1382 + - uid: 1408 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 1383 + - uid: 1409 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 1384 + - uid: 1410 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 1385 + - uid: 1411 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 1 - - uid: 1386 + - uid: 1412 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 1387 + - uid: 1413 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 1388 + - uid: 1414 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 1389 + - uid: 1415 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 1390 + - uid: 1416 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1391 + - uid: 1417 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 1 - - uid: 1392 + - uid: 1418 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 1 - - uid: 1393 + - uid: 1419 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 1 - - uid: 1394 + - uid: 1420 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 1 - - uid: 1395 + - uid: 1421 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-2.5 parent: 1 - - uid: 1396 + - uid: 1422 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 1 - - uid: 1397 + - uid: 1423 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - - uid: 1398 + - uid: 1424 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,11.5 parent: 1 - - uid: 1399 + - uid: 1425 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 1 - - uid: 1400 + - uid: 1426 components: - type: Transform rot: -1.5707963267948966 rad @@ -14866,46 +15924,46 @@ entities: parent: 1 - proto: GyroscopeNfsd entities: - - uid: 1401 + - uid: 1427 components: - type: Transform pos: 9.5,-13.5 parent: 1 - - uid: 1402 + - uid: 1428 components: - type: Transform pos: 9.5,-9.5 parent: 1 - - uid: 1403 + - uid: 1429 components: - type: Transform pos: 7.5,-16.5 parent: 1 - - uid: 1404 + - uid: 1430 components: - type: Transform pos: 5.5,36.5 parent: 1 - - uid: 1405 + - uid: 1431 components: - type: Transform pos: -4.5,36.5 parent: 1 - proto: HandHeldMassScannerEE entities: - - uid: 1406 + - uid: 1432 components: - type: Transform pos: 6.6539893,34.626114 parent: 1 - proto: JugBoriaticFuel entities: - - uid: 1407 + - uid: 1433 components: - type: Transform pos: 2.77085,-12.420227 parent: 1 - - uid: 1408 + - uid: 1434 components: - type: Transform rot: -1.5707963267948966 rad @@ -14913,35 +15971,22 @@ entities: parent: 1 - proto: KitchenReagentGrinder entities: - - uid: 1409 + - uid: 1435 components: - type: Transform pos: -4.5,9.5 parent: 1 - proto: LampGold entities: - - uid: 1410 + - uid: 1436 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.700062,-7.996625 parent: 1 -- proto: LightBulbBroken - entities: - - uid: 1411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.6952374,22.684963 - parent: 1 - - uid: 1412 - components: - - type: Transform - pos: 1.9922628,28.825588 - parent: 1 - proto: LightStripInner entities: - - uid: 1413 + - uid: 1437 components: - type: Transform rot: 1.5707963267948966 rad @@ -14950,7 +15995,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1414 + - uid: 1438 components: - type: Transform rot: 3.141592653589793 rad @@ -14959,7 +16004,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1415 + - uid: 1439 components: - type: Transform rot: -1.5707963267948966 rad @@ -14968,7 +16013,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1416 + - uid: 1440 components: - type: Transform pos: -0.5,10.5 @@ -14976,7 +16021,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1417 + - uid: 1441 components: - type: Transform rot: 1.5707963267948966 rad @@ -14987,7 +16032,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 1418 + - uid: 1442 components: - type: Transform rot: -1.5707963267948966 rad @@ -14996,7 +16041,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1419 + - uid: 1443 components: - type: Transform rot: 3.141592653589793 rad @@ -15005,7 +16050,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1420 + - uid: 1444 components: - type: Transform rot: 1.5707963267948966 rad @@ -15014,7 +16059,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1421 + - uid: 1445 components: - type: Transform pos: 0.5,8.5 @@ -15022,24 +16067,13 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF -- proto: LockerBoozeFilled - entities: - - uid: 1422 - components: - - type: Transform - pos: 7.5,7.5 - parent: 1 - - type: Lock - locked: False - proto: LockerWoodenGeneric entities: - - uid: 1102 + - uid: 1120 components: - type: Transform pos: 1.5,-10.5 parent: 1 - - type: Lock - locked: False - type: EntityStorage air: volume: 200 @@ -15064,20 +16098,20 @@ entities: showEnts: False occludes: True ents: - - 1104 - - 1106 - - 1103 - - 1105 - - 1109 - - 1107 - - 1108 + - 1124 + - 1126 + - 1125 + - 1127 + - 1123 + - 1121 + - 1122 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LuxuryPen entities: - - uid: 1423 + - uid: 1446 components: - type: Transform rot: -1.5707963267948966 rad @@ -15085,31 +16119,31 @@ entities: parent: 1 - proto: MaterialBiomass entities: - - uid: 1424 + - uid: 1447 components: - type: Transform pos: -5.5318866,7.5747604 parent: 1 - proto: MedalCase entities: - - uid: 1425 + - uid: 1448 components: - type: Transform pos: -3.4919944,-9.185922 parent: 1 - proto: MedicalScanner entities: - - uid: 1426 + - uid: 1449 components: - type: Transform pos: -6.5,7.5 parent: 1 - type: DeviceLinkSink links: - - 1118 + - 1137 - proto: MedkitAdvancedFilled entities: - - uid: 1427 + - uid: 1450 components: - type: Transform pos: -4.2157016,11.484386 @@ -15119,7 +16153,7 @@ entities: linearDamping: 0 - proto: MedkitBruteFilled entities: - - uid: 1428 + - uid: 1451 components: - type: Transform pos: -6.129805,8.493019 @@ -15129,7 +16163,7 @@ entities: linearDamping: 0 - proto: MedkitBurnFilled entities: - - uid: 1429 + - uid: 1452 components: - type: Transform pos: -6.11418,8.680649 @@ -15139,7 +16173,7 @@ entities: linearDamping: 0 - proto: MedkitCombatFilled entities: - - uid: 1430 + - uid: 1453 components: - type: Transform pos: -6.567305,8.743193 @@ -15147,9 +16181,14 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 + - uid: 2203 + components: + - type: Transform + pos: -6.58401,8.625718 + parent: 1 - proto: MedkitFilled entities: - - uid: 1431 + - uid: 1454 components: - type: Transform pos: -6.11418,8.821372 @@ -15159,7 +16198,7 @@ entities: linearDamping: 0 - proto: MedkitOxygenFilled entities: - - uid: 1432 + - uid: 1455 components: - type: Transform pos: -6.11418,8.2741165 @@ -15169,7 +16208,7 @@ entities: linearDamping: 0 - proto: MedkitToxinFilled entities: - - uid: 1433 + - uid: 1456 components: - type: Transform pos: -6.58293,8.383568 @@ -15179,13 +16218,13 @@ entities: linearDamping: 0 - proto: Multitool entities: - - uid: 1434 + - uid: 1457 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.4180918,17.145731 parent: 1 - - uid: 1435 + - uid: 1458 components: - type: Transform rot: 1.5707963267948966 rad @@ -15193,119 +16232,99 @@ entities: parent: 1 - proto: N14TableCounterBar entities: - - uid: 1726 + - uid: 1459 components: - type: Transform pos: 4.5,17.5 parent: 1 - - uid: 2185 + - uid: 1460 components: - type: Transform pos: 4.5,18.5 parent: 1 - - uid: 2187 + - uid: 1461 components: - type: Transform pos: 4.5,16.5 parent: 1 - - uid: 2188 + - uid: 1462 components: - type: Transform pos: 4.5,15.5 parent: 1 - proto: NCWLConscriptAmmoVendory entities: - - uid: 1436 + - uid: 1463 components: - type: Transform pos: -2.5,22.5 parent: 1 - proto: NCWLConscriptGearVendory entities: - - uid: 1437 + - uid: 1464 components: - type: Transform pos: 3.5,22.5 parent: 1 - proto: NCWLConscriptShipVendory entities: - - uid: 1438 + - uid: 1465 components: - type: Transform pos: -0.5,28.5 parent: 1 - proto: NCWLPoster3 entities: - - uid: 1439 + - uid: 1466 components: - type: Transform pos: -3.5,5.5 parent: 1 - proto: NCWLVolginPhoto entities: - - uid: 1440 + - uid: 1467 components: - type: Transform pos: 2.9100273,-1.380785 parent: 1 - proto: NetworkConfigurator entities: - - uid: 1441 + - uid: 1468 components: - type: Transform pos: -3.7073967,18.259022 parent: 1 - type: NetworkConfigurator devices: - 'UID: 58949': 1373 - 'UID: 58952': 1376 - 'UID: 58950': 1374 - 'UID: 58953': 1377 - 'UID: 58954': 1378 - 'UID: 58951': 1375 + 'UID: 58949': 1399 + 'UID: 58952': 1402 + 'UID: 58950': 1400 + 'UID: 58953': 1403 + 'UID: 58954': 1404 + 'UID: 58951': 1401 linkModeActive: False - proto: OxygenCanister entities: - - uid: 1445 + - uid: 1469 components: - type: Transform pos: -3.5,20.5 parent: 1 - - uid: 1446 + - uid: 1470 components: - type: Transform pos: 4.5,20.5 parent: 1 - proto: PaintingNCWLVolgin entities: - - uid: 1447 + - uid: 1471 components: - type: Transform pos: 1.5,29.5 parent: 1 - proto: Paper entities: - - uid: 1448 - components: - - type: Transform - pos: 0.5536933,-0.5458118 - parent: 1 - - type: Paper - content: >- - From: Battalion Engineering Section - - - Comrade Commander, - - - Since the loss of our station we have received no supplies, and we have been travelling for a considerable time. I understand that your expectation of me is to keep this vessel operational. However, without resupply for much longer, I fear the ship will eventually lose its ability to function if we do not reach our new home soon. - - - My intention is not to damage morale. The engineering team is already working tirelessly to keep the ship together, and I am doing my best to maintain their spirits. This information remains strictly between you and me. I have not informed them of the situation. To keep morale high, I continue to assure them that everything is under control. - - - Everything for the Cause. - - uid: 1449 + - uid: 1472 components: - type: Transform pos: 0.6101261,-10.405304 @@ -15327,7 +16346,7 @@ entities: 4. I forgot... - proto: PaperBin20 entities: - - uid: 1450 + - uid: 1473 components: - type: Transform rot: -1.5707963267948966 rad @@ -15335,7 +16354,7 @@ entities: parent: 1 - proto: PaperOffice entities: - - uid: 1451 + - uid: 1474 components: - type: Transform pos: 2.4212117,-1.4017487 @@ -15346,13 +16365,13 @@ entities: -Engineering - - uid: 1452 + - uid: 1475 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.3582358,-8.516942 parent: 1 - - uid: 1453 + - uid: 1476 components: - type: Transform rot: 1.5707963267948966 rad @@ -15360,7 +16379,7 @@ entities: parent: 1 - proto: Pen entities: - - uid: 1454 + - uid: 1477 components: - type: Transform rot: -1.5707963267948966 rad @@ -15368,22 +16387,22 @@ entities: parent: 1 - proto: PersonalAI entities: - - uid: 1090 + - uid: 1110 components: - type: Transform - parent: 1084 + parent: 1104 - type: Physics canCollide: False - type: InsideEntityStorage - proto: PlasticFlapsAirtightOpaque entities: - - uid: 1455 + - uid: 1478 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,26.5 parent: 1 - - uid: 1456 + - uid: 1479 components: - type: Transform rot: -1.5707963267948966 rad @@ -15391,119 +16410,119 @@ entities: parent: 1 - proto: PlastitaniumWindow entities: - - uid: 1457 + - uid: 1480 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 1458 + - uid: 1481 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 1459 + - uid: 1482 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 1460 + - uid: 1483 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 1 - - uid: 1461 + - uid: 1484 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 - - uid: 1462 + - uid: 1485 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 1 - - uid: 1463 + - uid: 1486 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 1464 + - uid: 1487 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 1465 + - uid: 1488 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 1466 + - uid: 1489 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 1467 + - uid: 1490 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 1468 + - uid: 1491 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 1 - - uid: 1469 + - uid: 1492 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 1 - - uid: 1470 + - uid: 1493 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 1 - - uid: 1471 + - uid: 1494 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 1 - - uid: 1472 + - uid: 1495 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 1 - - uid: 1473 + - uid: 1496 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 1 - - uid: 1474 + - uid: 1497 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-2.5 parent: 1 - - uid: 1475 + - uid: 1498 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - - uid: 1476 + - uid: 1499 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 1 - - uid: 1477 + - uid: 1500 components: - type: Transform rot: -1.5707963267948966 rad @@ -15511,103 +16530,103 @@ entities: parent: 1 - proto: PosterContrabandCommunistState entities: - - uid: 1478 + - uid: 1501 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 1479 + - uid: 1502 components: - type: Transform pos: -2.5,2.5 parent: 1 - proto: PosterLegitBarDrinks entities: - - uid: 2189 + - uid: 1503 components: - type: Transform pos: 4.5,19.5 parent: 1 - proto: PoweredLEDSmallLight entities: - - uid: 1480 + - uid: 1504 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,18.5 parent: 1 - - uid: 1481 + - uid: 1505 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,18.5 parent: 1 - - uid: 1482 + - uid: 1506 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,36.5 parent: 1 - - uid: 1483 + - uid: 1507 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,36.5 parent: 1 - - uid: 1484 + - uid: 1508 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,37.5 parent: 1 - - uid: 1485 + - uid: 1509 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,37.5 parent: 1 - - uid: 1486 + - uid: 1510 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,22.5 parent: 1 - - uid: 1487 + - uid: 1511 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,22.5 parent: 1 - - uid: 1488 + - uid: 1512 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,13.5 parent: 1 - - uid: 1489 + - uid: 1513 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,13.5 parent: 1 - - uid: 1490 + - uid: 1514 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-14.5 parent: 1 - - uid: 1491 + - uid: 1515 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-16.5 parent: 1 - - uid: 1492 + - uid: 1516 components: - type: Transform pos: 7.5,-15.5 parent: 1 - - uid: 1493 + - uid: 1517 components: - type: Transform rot: -1.5707963267948966 rad @@ -15615,719 +16634,705 @@ entities: parent: 1 - proto: Poweredlight entities: - - uid: 1494 + - uid: 1518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,22.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 1 + - uid: 1520 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,10.5 parent: 1 - - uid: 1495 + - uid: 1521 components: - type: Transform pos: -7.5,27.5 parent: 1 - - uid: 1496 + - uid: 1522 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,32.5 parent: 1 - - uid: 1497 + - uid: 1523 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,32.5 parent: 1 - - uid: 1498 + - uid: 1524 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,20.5 parent: 1 - - uid: 1499 + - uid: 1525 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,6.5 parent: 1 - - uid: 1500 + - uid: 1526 components: - type: Transform pos: 8.5,27.5 parent: 1 - - uid: 1501 + - uid: 1527 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,16.5 parent: 1 - - uid: 1502 + - uid: 1528 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,16.5 parent: 1 - - uid: 1503 + - uid: 1529 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 1504 + - uid: 1530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,17.5 + rot: -1.5707963267948966 rad + pos: 0.5,18.5 parent: 1 - - uid: 1505 + - uid: 1531 components: - type: Transform pos: -2.5,12.5 parent: 1 - - uid: 1506 + - uid: 1532 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1507 + - uid: 1533 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,5.5 parent: 1 - - uid: 1508 + - uid: 1534 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,5.5 parent: 1 - - uid: 1509 + - uid: 1535 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 1510 + - uid: 1536 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 1511 + - uid: 1537 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 1512 + - uid: 1538 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,3.5 parent: 1 - - uid: 1513 + - uid: 1539 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-4.5 parent: 1 - - uid: 1514 + - uid: 1540 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-4.5 parent: 1 - - uid: 1515 + - uid: 1541 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-10.5 parent: 1 - - uid: 1516 + - uid: 1542 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-5.5 parent: 1 - - uid: 1517 + - uid: 1543 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-5.5 parent: 1 - - uid: 1518 + - uid: 1544 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 1 - - uid: 1519 + - uid: 1545 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-12.5 parent: 1 - - uid: 1520 + - uid: 1546 components: - type: Transform pos: -3.5,-11.5 parent: 1 - - uid: 1521 + - uid: 1547 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-8.5 parent: 1 - - uid: 1522 + - uid: 1548 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - uid: 1523 + - uid: 1549 components: - type: Transform pos: 2.5,-15.5 parent: 1 - - uid: 1524 + - uid: 1550 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-13.5 parent: 1 - - uid: 1525 + - uid: 1551 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,8.5 parent: 1 - - uid: 1526 + - uid: 1552 components: - type: Transform - pos: -0.5,28.5 + pos: 3.5,28.5 parent: 1 - - uid: 1527 + - uid: 1553 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,11.5 parent: 1 -- proto: PoweredlightRed - entities: - - uid: 1528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,36.5 - parent: 1 - - uid: 1529 + - uid: 1554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,36.5 + pos: -2.5,28.5 parent: 1 - - uid: 1530 + - uid: 1555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,38.5 + rot: -1.5707963267948966 rad + pos: 4.5,22.5 parent: 1 - - uid: 1531 +- proto: PoweredlightRed + entities: + - uid: 1556 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,38.5 + pos: 1.5,36.5 parent: 1 - - uid: 1532 + - uid: 1557 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,36.5 parent: 1 - - uid: 1533 + - uid: 1558 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,34.5 parent: 1 - - uid: 1534 + - uid: 1559 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,13.5 parent: 1 - - uid: 1535 + - uid: 1560 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,36.5 parent: 1 - - uid: 1536 + - uid: 1561 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,13.5 parent: 1 - - uid: 1537 + - uid: 1562 components: - type: Transform pos: 8.5,-19.5 parent: 1 - - uid: 1538 + - uid: 1563 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,34.5 parent: 1 - - uid: 1539 + - uid: 1564 components: - type: Transform pos: -7.5,22.5 parent: 1 - - uid: 1540 + - uid: 1565 components: - type: Transform pos: 8.5,22.5 parent: 1 - - uid: 1541 + - uid: 1566 components: - type: Transform pos: 0.5,-20.5 parent: 1 - - uid: 1542 + - uid: 1567 components: - type: Transform pos: -7.5,-19.5 parent: 1 - - uid: 1543 + - uid: 1568 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 1544 + - uid: 1569 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-3.5 parent: 1 - - uid: 1545 + - uid: 1570 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-3.5 parent: 1 - - uid: 1546 + - uid: 1571 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 1547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1 - - uid: 1548 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,0.5 - parent: 1 -- proto: PoweredSmallLightEmpty - entities: - - uid: 1549 - components: - - type: Transform - pos: 2.5,28.5 - parent: 1 - - uid: 1550 + - uid: 1572 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,22.5 + pos: -1.5,30.5 parent: 1 - proto: Rack entities: - - uid: 1551 + - uid: 1573 components: - type: Transform pos: 2.5,-12.5 parent: 1 - - uid: 1552 + - uid: 1574 components: - type: Transform pos: -9.5,-12.5 parent: 1 - - uid: 1553 + - uid: 1575 components: - type: Transform pos: 2.5,30.5 parent: 1 - - uid: 1554 + - uid: 1576 components: - type: Transform pos: -9.5,-10.5 parent: 1 - proto: RadioHandheld entities: - - uid: 1555 + - uid: 1577 components: - type: Transform pos: 5.370796,34.6056 parent: 1 - - uid: 1556 + - uid: 1578 components: - type: Transform pos: 5.4748306,34.67993 parent: 1 - - uid: 1557 + - uid: 1579 components: - type: Transform pos: 5.534279,34.560997 parent: 1 - - uid: 1558 + - uid: 1580 components: - type: Transform pos: 5.2964873,34.67993 parent: 1 - - uid: 1559 + - uid: 1581 components: - type: Transform pos: 5.564003,34.739395 parent: 1 - - uid: 1560 + - uid: 1582 components: - type: Transform pos: 5.682898,34.665062 parent: 1 - proto: Railing entities: - - uid: 1561 + - uid: 1583 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-1.5 parent: 1 - - uid: 1562 + - uid: 1584 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-1.5 parent: 1 - - uid: 1563 + - uid: 1585 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 1 - - uid: 1564 + - uid: 1586 components: - type: Transform pos: -0.5,35.5 parent: 1 - - uid: 1565 + - uid: 1587 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 1566 + - uid: 1588 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 1567 + - uid: 1589 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 1 - - uid: 1568 + - uid: 1590 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 1 - - uid: 1569 + - uid: 1591 components: - type: Transform pos: 1.5,35.5 parent: 1 - - uid: 1570 + - uid: 1592 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - - uid: 1571 + - uid: 1593 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 1 - - uid: 1572 + - uid: 1594 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 1573 + - uid: 1595 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,31.5 parent: 1 - - uid: 1574 + - uid: 1596 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,30.5 parent: 1 - - uid: 1575 + - uid: 1597 components: - type: Transform pos: -5.5,8.5 parent: 1 - - uid: 1576 + - uid: 1598 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,20.5 parent: 1 - - uid: 1577 + - uid: 1599 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,19.5 parent: 1 - - uid: 1578 + - uid: 1600 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,17.5 parent: 1 - - uid: 1579 + - uid: 1601 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,18.5 parent: 1 - - uid: 1580 + - uid: 1602 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,0.5 parent: 1 - - uid: 1581 + - uid: 1603 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,2.5 parent: 1 - - uid: 1582 + - uid: 1604 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,16.5 parent: 1 - - uid: 1583 + - uid: 1605 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 1 - - uid: 1584 + - uid: 1606 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-1.5 parent: 1 - - uid: 1585 + - uid: 1607 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-3.5 parent: 1 - - uid: 1586 + - uid: 1608 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-3.5 parent: 1 - - uid: 1587 + - uid: 1609 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-1.5 parent: 1 - - uid: 1588 + - uid: 1610 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 1 - - uid: 1589 + - uid: 1611 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,0.5 parent: 1 - - uid: 1590 + - uid: 1612 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,2.5 parent: 1 - - uid: 1591 + - uid: 1613 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,20.5 parent: 1 - - uid: 1592 + - uid: 1614 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,19.5 parent: 1 - - uid: 1593 + - uid: 1615 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,18.5 parent: 1 - - uid: 1594 + - uid: 1616 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,17.5 parent: 1 - - uid: 1595 + - uid: 1617 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,16.5 parent: 1 - - uid: 1596 + - uid: 1618 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,38.5 parent: 1 - - uid: 1597 + - uid: 1619 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,38.5 parent: 1 - - uid: 1598 + - uid: 1620 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,38.5 parent: 1 - - uid: 1599 + - uid: 1621 components: - type: Transform pos: 0.5,26.5 parent: 1 - proto: RailingCorner entities: - - uid: 1600 + - uid: 1622 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-2.5 parent: 1 - - uid: 1601 + - uid: 1623 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 1602 + - uid: 1624 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,33.5 parent: 1 - - uid: 1603 + - uid: 1625 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,8.5 parent: 1 - - uid: 1604 + - uid: 1626 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,32.5 parent: 1 - - uid: 1605 + - uid: 1627 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,33.5 parent: 1 - - uid: 1606 + - uid: 1628 components: - type: Transform pos: 8.5,22.5 parent: 1 - - uid: 1607 + - uid: 1629 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,13.5 parent: 1 - - uid: 1608 + - uid: 1630 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,22.5 parent: 1 - - uid: 1609 + - uid: 1631 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,13.5 parent: 1 - - uid: 1610 + - uid: 1632 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-8.5 parent: 1 - - uid: 1611 + - uid: 1633 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-8.5 parent: 1 - - uid: 1612 + - uid: 1634 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,34.5 parent: 1 - - uid: 1613 + - uid: 1635 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,34.5 parent: 1 - - uid: 1614 + - uid: 1636 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,36.5 parent: 1 - - uid: 1615 + - uid: 1637 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,36.5 parent: 1 - - uid: 1616 + - uid: 1638 components: - type: Transform pos: 1.5,26.5 parent: 1 - - uid: 1617 + - uid: 1639 components: - type: Transform rot: -1.5707963267948966 rad @@ -16335,13 +17340,13 @@ entities: parent: 1 - proto: RailingCornerSmall entities: - - uid: 1618 + - uid: 1640 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-0.5 parent: 1 - - uid: 1619 + - uid: 1641 components: - type: Transform rot: 1.5707963267948966 rad @@ -16349,7 +17354,7 @@ entities: parent: 1 - proto: RCD entities: - - uid: 1620 + - uid: 1642 components: - type: Transform rot: 1.5707963267948966 rad @@ -16357,13 +17362,13 @@ entities: parent: 1 - proto: RCDAmmo entities: - - uid: 1621 + - uid: 1643 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.646629,-16.607515 parent: 1 - - uid: 1622 + - uid: 1644 components: - type: Transform rot: 1.5707963267948966 rad @@ -16371,28 +17376,28 @@ entities: parent: 1 - proto: RubberStampApproved entities: - - uid: 1623 + - uid: 1645 components: - type: Transform pos: -0.015409172,-10.201724 parent: 1 - proto: RubberStampDenied entities: - - uid: 1624 + - uid: 1646 components: - type: Transform pos: -0.015409172,-10.380118 parent: 1 - proto: RubberStampNCWLCommand entities: - - uid: 1625 + - uid: 1647 components: - type: Transform pos: -0.0005475879,-10.5733795 parent: 1 - proto: SheetPlasma1 entities: - - uid: 1626 + - uid: 1648 components: - type: Transform pos: -4.402343,9.6974325 @@ -16400,7 +17405,7 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 1627 + - uid: 1649 components: - type: Transform pos: -4.79568,10.145023 @@ -16408,7 +17413,7 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 1628 + - uid: 1650 components: - type: Transform pos: -4.226019,10.185714 @@ -16418,7 +17423,7 @@ entities: linearDamping: 0 - proto: ShotGunCabinetFilled entities: - - uid: 1629 + - uid: 1651 components: - type: Transform rot: -1.5707963267948966 rad @@ -16426,7 +17431,7 @@ entities: parent: 1 - proto: ShuttersNormal entities: - - uid: 1630 + - uid: 1652 components: - type: Transform rot: 1.5707963267948966 rad @@ -16434,8 +17439,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1639 - - uid: 1631 + - 1659 + - uid: 1653 components: - type: Transform rot: 1.5707963267948966 rad @@ -16443,8 +17448,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1639 - - uid: 1632 + - 1659 + - uid: 1654 components: - type: Transform rot: 1.5707963267948966 rad @@ -16452,28 +17457,28 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1639 + - 1659 - proto: ShuttersNormalOpen entities: - - uid: 1633 + - uid: 1655 components: - type: Transform pos: 0.5,-7.5 parent: 1 - type: DeviceLinkSink links: - - 1637 - - uid: 1634 + - 1657 + - uid: 1656 components: - type: Transform pos: 1.5,-7.5 parent: 1 - type: DeviceLinkSink links: - - 1637 + - 1657 - proto: SignalButton entities: - - uid: 1637 + - uid: 1657 components: - type: Transform rot: -1.5707963267948966 rad @@ -16481,13 +17486,13 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1634: + 1656: - - Pressed - Toggle - 1633: + 1655: - - Pressed - Toggle - - uid: 1638 + - uid: 1658 components: - type: Transform rot: -1.5707963267948966 rad @@ -16495,25 +17500,19 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 200: - - - Pressed - - Toggle - 199: - - - Pressed - - Toggle - 201: + 198: - - Pressed - Toggle - 202: + 197: - - Pressed - Toggle - 203: + 199: - - Pressed - Toggle - 208: + 200: - - Pressed - Toggle - 207: + 201: - - Pressed - Toggle 206: @@ -16525,10 +17524,10 @@ entities: 204: - - Pressed - Toggle - 212: + 203: - - Pressed - Toggle - 211: + 202: - - Pressed - Toggle 210: @@ -16537,7 +17536,13 @@ entities: 209: - - Pressed - Toggle - - uid: 1639 + 208: + - - Pressed + - Toggle + 207: + - - Pressed + - Toggle + - uid: 1659 components: - type: MetaData name: armory shutters @@ -16547,16 +17552,16 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1630: + 1652: - - Pressed - Toggle - 1631: + 1653: - - Pressed - Toggle - 1632: + 1654: - - Pressed - Toggle - - uid: 1641 + - uid: 1660 components: - type: Transform rot: 1.5707963267948966 rad @@ -16564,26 +17569,26 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 198: + 194: - - Pressed - Toggle - - uid: 1642 + - uid: 1661 components: - type: Transform pos: 2.5,35.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 190: + 186: - - Pressed - Toggle - 191: + 187: - - Pressed - Toggle - 192: + 188: - - Pressed - Toggle - - uid: 1643 + - uid: 1662 components: - type: Transform rot: -1.5707963267948966 rad @@ -16591,10 +17596,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 197: + 193: - - Pressed - Toggle - - uid: 1644 + - uid: 1663 components: - type: Transform rot: -1.5707963267948966 rad @@ -16602,10 +17607,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 196: + 192: - - Pressed - Toggle - - uid: 1645 + - uid: 1664 components: - type: Transform rot: 1.5707963267948966 rad @@ -16613,10 +17618,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 195: + 191: - - Pressed - Toggle - - uid: 1646 + - uid: 1665 components: - type: Transform rot: -1.5707963267948966 rad @@ -16624,10 +17629,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 194: + 190: - - Pressed - Toggle - - uid: 1647 + - uid: 1666 components: - type: Transform rot: 1.5707963267948966 rad @@ -16635,10 +17640,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 193: + 189: - - Pressed - Toggle - - uid: 2193 + - uid: 1667 components: - type: Transform rot: 1.5707963267948966 rad @@ -16646,16 +17651,16 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1260: + 213: - - Pressed - Toggle - 334: + 211: - - Pressed - Toggle - 2084: + 218: - - Pressed - Toggle - - uid: 2194 + - uid: 1668 components: - type: Transform rot: -1.5707963267948966 rad @@ -16663,16 +17668,16 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 51: + 196: - - Pressed - Toggle - 2077: + 217: - - Pressed - Toggle - 2076: + 216: - - Pressed - Toggle - - uid: 2195 + - uid: 1669 components: - type: Transform rot: 3.141592653589793 rad @@ -16680,74 +17685,74 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1259: + 212: - - Pressed - Toggle - 41: + 195: - - Pressed - Toggle - 1636: + 215: - - Pressed - Toggle - 1635: + 214: - - Pressed - Toggle - proto: SignBridge entities: - - uid: 1648 + - uid: 1670 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 1649 + - uid: 1671 components: - type: Transform pos: 4.5,-4.5 parent: 1 - proto: SignChem entities: - - uid: 1650 + - uid: 1672 components: - type: Transform pos: -3.5,10.5 parent: 1 - proto: SignConference entities: - - uid: 1651 + - uid: 1673 components: - type: Transform pos: 1.5,13.5 parent: 1 - proto: SignCryo entities: - - uid: 1652 + - uid: 1674 components: - type: Transform pos: 4.5,7.5 parent: 1 - proto: SignEngineering entities: - - uid: 1653 + - uid: 1675 components: - type: Transform pos: 6.5,-7.5 parent: 1 - proto: SignLastIdiot entities: - - uid: 1654 + - uid: 1676 components: - type: Transform pos: -3.5,29.5 parent: 1 - proto: SignSpace entities: - - uid: 1655 + - uid: 1677 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-0.5 parent: 1 - - uid: 1656 + - uid: 1678 components: - type: Transform rot: 1.5707963267948966 rad @@ -16755,13 +17760,13 @@ entities: parent: 1 - proto: SinkWide entities: - - uid: 1657 + - uid: 1679 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-15.5 parent: 1 - - uid: 1658 + - uid: 1680 components: - type: Transform rot: 1.5707963267948966 rad @@ -16769,38 +17774,38 @@ entities: parent: 1 - proto: SMESBasic entities: - - uid: 1659 + - uid: 1681 components: - type: Transform pos: 10.5,-10.5 parent: 1 - - uid: 1660 + - uid: 1682 components: - type: Transform pos: 10.5,-12.5 parent: 1 - - uid: 1661 + - uid: 1683 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 1662 + - uid: 1684 components: - type: Transform pos: -7.5,4.5 parent: 1 - proto: SoapDeluxe entities: - - uid: 1091 + - uid: 1111 components: - type: Transform - parent: 1084 + parent: 1104 - type: Physics canCollide: False - type: InsideEntityStorage - proto: SodaDispenser entities: - - uid: 1640 + - uid: 1685 components: - type: Transform rot: -1.5707963267948966 rad @@ -16808,27 +17813,27 @@ entities: parent: 1 - proto: StairStageDark entities: - - uid: 1663 + - uid: 1686 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 1664 + - uid: 1687 components: - type: Transform pos: 2.5,32.5 parent: 1 - - uid: 1665 + - uid: 1688 components: - type: Transform pos: -1.5,32.5 parent: 1 - - uid: 1666 + - uid: 1689 components: - type: Transform pos: -7.5,8.5 parent: 1 - - uid: 1667 + - uid: 1690 components: - type: Transform rot: 3.141592653589793 rad @@ -16836,66 +17841,66 @@ entities: parent: 1 - proto: StationMap entities: - - uid: 1668 + - uid: 1691 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 1669 + - uid: 1692 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,18.5 parent: 1 - - uid: 1670 + - uid: 1693 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,33.5 parent: 1 - - uid: 1671 + - uid: 1694 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - - uid: 1672 + - uid: 1695 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-2.5 parent: 1 - - uid: 1673 + - uid: 1696 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,0.5 parent: 1 - - uid: 1674 + - uid: 1697 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,0.5 parent: 1 - - uid: 1675 + - uid: 1698 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-9.5 parent: 1 - - uid: 1676 + - uid: 1699 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 1 - - uid: 1677 + - uid: 1700 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,23.5 parent: 1 - - uid: 1678 + - uid: 1701 components: - type: Transform rot: -1.5707963267948966 rad @@ -16903,26 +17908,26 @@ entities: parent: 1 - proto: SteelBench entities: - - uid: 1679 + - uid: 1702 components: - type: Transform pos: 6.5,-6.5 parent: 1 - proto: StoolBar entities: - - uid: 184 + - uid: 1703 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,18.5 parent: 1 - - uid: 1779 + - uid: 1704 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,17.5 parent: 1 - - uid: 2186 + - uid: 1705 components: - type: Transform rot: 1.5707963267948966 rad @@ -16930,19 +17935,19 @@ entities: parent: 1 - proto: SubstationBasic entities: - - uid: 1680 + - uid: 1706 components: - type: Transform pos: -4.5,5.5 parent: 1 - - uid: 1681 + - uid: 1707 components: - type: Transform pos: 0.5,-16.5 parent: 1 - proto: SuitStorageBase entities: - - uid: 82 + - uid: 80 components: - type: Transform pos: -2.5,36.5 @@ -16971,12 +17976,12 @@ entities: showEnts: False occludes: True ents: + - 82 - 84 - - 86 - - 83 - - 87 + - 81 - 85 - - uid: 88 + - 83 + - uid: 86 components: - type: Transform pos: -2.5,37.5 @@ -17005,12 +18010,12 @@ entities: showEnts: False occludes: True ents: - - 93 - - 92 - - 90 - 91 + - 90 + - 88 - 89 - - uid: 94 + - 87 + - uid: 92 components: - type: Transform pos: 3.5,37.5 @@ -17039,12 +18044,12 @@ entities: showEnts: False occludes: True ents: - - 98 - - 95 - - 99 - 96 + - 93 - 97 - - uid: 100 + - 94 + - 95 + - uid: 98 components: - type: Transform pos: 7.5,28.5 @@ -17073,12 +18078,12 @@ entities: showEnts: False occludes: True ents: - - 101 - - 104 - - 105 + - 99 - 102 - 103 - - uid: 106 + - 100 + - 101 + - uid: 104 components: - type: Transform pos: -6.5,28.5 @@ -17107,12 +18112,12 @@ entities: showEnts: False occludes: True ents: + - 105 + - 106 + - 109 - 107 - 108 - - 111 - - 109 - - 110 - - uid: 112 + - uid: 110 components: - type: Transform pos: 3.5,36.5 @@ -17141,12 +18146,12 @@ entities: showEnts: False occludes: True ents: - - 116 - - 115 - - 117 - 114 - 113 - - uid: 118 + - 115 + - 112 + - 111 + - uid: 116 components: - type: Transform pos: -5.5,28.5 @@ -17175,12 +18180,12 @@ entities: showEnts: False occludes: True ents: - - 120 - - 123 + - 118 - 121 - - 122 - 119 - - uid: 124 + - 120 + - 117 + - uid: 122 components: - type: Transform pos: 6.5,28.5 @@ -17209,152 +18214,152 @@ entities: showEnts: False occludes: True ents: - - 127 - 125 - - 129 - - 128 + - 123 + - 127 - 126 + - 124 - proto: SurveillanceCameraGeneral entities: - - uid: 1682 + - uid: 1708 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,1.5 parent: 1 - - uid: 1683 + - uid: 1709 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,1.5 parent: 1 - - uid: 1684 + - uid: 1710 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 - - uid: 1685 + - uid: 1711 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,3.5 parent: 1 - - uid: 1686 + - uid: 1712 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - - uid: 1687 + - uid: 1713 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 1688 + - uid: 1714 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-9.5 parent: 1 - - uid: 1689 + - uid: 1715 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-9.5 parent: 1 - - uid: 1690 + - uid: 1716 components: - type: Transform pos: -5.5,-16.5 parent: 1 - - uid: 1691 + - uid: 1717 components: - type: Transform pos: -2.5,-16.5 parent: 1 - - uid: 1692 + - uid: 1718 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - uid: 1693 + - uid: 1719 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-11.5 parent: 1 - - uid: 1694 + - uid: 1720 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 1695 + - uid: 1721 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-8.5 parent: 1 - - uid: 1696 + - uid: 1722 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 - - uid: 1697 + - uid: 1723 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 1698 + - uid: 1724 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 1699 + - uid: 1725 components: - type: Transform pos: -5.5,13.5 parent: 1 - - uid: 1700 + - uid: 1726 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,18.5 parent: 1 - - uid: 1701 + - uid: 1727 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,18.5 parent: 1 - - uid: 1702 + - uid: 1728 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,28.5 parent: 1 - - uid: 1703 + - uid: 1729 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,34.5 parent: 1 - - uid: 1704 + - uid: 1730 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,34.5 parent: 1 - - uid: 1705 + - uid: 1731 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,37.5 parent: 1 - - uid: 1706 + - uid: 1732 components: - type: Transform rot: 1.5707963267948966 rad @@ -17362,137 +18367,146 @@ entities: parent: 1 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 1707 + - uid: 1733 components: - type: Transform pos: 5.5,13.5 parent: 1 - proto: Table entities: - - uid: 1708 + - uid: 1734 components: - type: Transform pos: 6.5,34.5 parent: 1 - - uid: 1709 + - uid: 1735 components: - type: Transform pos: 5.5,34.5 parent: 1 - proto: TableGlass entities: - - uid: 1710 + - uid: 1736 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 1711 + - uid: 1737 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 1712 + - uid: 1738 components: - type: Transform pos: -4.5,11.5 parent: 1 - proto: TableReinforced entities: - - uid: 1713 + - uid: 1739 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 1740 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 1741 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 1714 + - uid: 1742 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-4.5 parent: 1 - - uid: 1715 + - uid: 1743 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 1 - - uid: 1716 + - uid: 1744 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-4.5 parent: 1 - - uid: 1717 + - uid: 1745 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-4.5 parent: 1 - - uid: 1718 + - uid: 1746 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-1.5 parent: 1 - - uid: 1719 + - uid: 1747 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 - - uid: 1720 + - uid: 1748 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 1 - - uid: 1721 + - uid: 1749 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-4.5 parent: 1 - - uid: 1722 + - uid: 1750 components: - type: Transform pos: -3.5,-11.5 parent: 1 - - uid: 1723 + - uid: 1751 components: - type: Transform pos: -4.5,-11.5 parent: 1 - - uid: 1724 + - uid: 1752 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-16.5 parent: 1 - - uid: 1725 + - uid: 1753 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-16.5 parent: 1 - - uid: 1727 + - uid: 1754 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,17.5 parent: 1 - - uid: 1728 + - uid: 1755 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,18.5 parent: 1 - - uid: 1729 + - uid: 1756 components: - type: Transform - rot: -1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 1730 + - uid: 1757 components: - type: Transform rot: 1.5707963267948966 rad @@ -17500,25 +18514,25 @@ entities: parent: 1 - proto: TableWood entities: - - uid: 1731 + - uid: 1758 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-9.5 parent: 1 - - uid: 1732 + - uid: 1759 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-10.5 parent: 1 - - uid: 1733 + - uid: 1760 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 1 - - uid: 1734 + - uid: 1761 components: - type: Transform rot: 1.5707963267948966 rad @@ -17526,7 +18540,7 @@ entities: parent: 1 - proto: TelecomServer entities: - - uid: 1232 + - uid: 1260 components: - type: Transform pos: -4.5,13.5 @@ -17537,7 +18551,7 @@ entities: showEnts: False occludes: True ents: - - 1233 + - 1261 machine_board: !type:Container showEnts: False occludes: True @@ -17548,38 +18562,38 @@ entities: ents: [] - proto: TelecomServerFilledNovaBalreska entities: - - uid: 1735 + - uid: 1762 components: - type: Transform pos: 0.5,-5.5 parent: 1 - proto: ThrusterNCWLFighter entities: - - uid: 1736 + - uid: 1763 components: - type: Transform pos: -8.5,-7.5 parent: 1 - - uid: 1737 + - uid: 1764 components: - type: Transform pos: -9.5,-7.5 parent: 1 - proto: ThrusterNCWLWarship entities: - - uid: 1738 + - uid: 1765 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-10.5 parent: 1 - - uid: 1739 + - uid: 1766 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-18.5 parent: 1 - - uid: 1740 + - uid: 1767 components: - type: Transform rot: -1.5707963267948966 rad @@ -17587,85 +18601,85 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 1741 + - uid: 1768 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-18.5 parent: 1 - - uid: 1742 + - uid: 1769 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-12.5 parent: 1 - - uid: 1743 + - uid: 1770 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-11.5 parent: 1 - - uid: 1744 + - uid: 1771 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-18.5 parent: 1 - - uid: 1745 + - uid: 1772 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-18.5 parent: 1 - - uid: 1746 + - uid: 1773 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-19.5 parent: 1 - - uid: 1747 + - uid: 1774 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-18.5 parent: 1 - - uid: 1748 + - uid: 1775 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-18.5 parent: 1 - - uid: 1749 + - uid: 1776 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-18.5 parent: 1 - - uid: 1750 + - uid: 1777 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-18.5 parent: 1 - - uid: 1751 + - uid: 1778 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-11.5 parent: 1 - - uid: 1752 + - uid: 1779 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-12.5 parent: 1 - - uid: 1753 + - uid: 1780 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-14.5 parent: 1 - - uid: 1754 + - uid: 1781 components: - type: Transform rot: 3.141592653589793 rad @@ -17673,25 +18687,25 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 1755 + - uid: 1782 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-19.5 parent: 1 - - uid: 1756 + - uid: 1783 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 parent: 1 - - uid: 1757 + - uid: 1784 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-19.5 parent: 1 - - uid: 1758 + - uid: 1785 components: - type: Transform rot: -1.5707963267948966 rad @@ -17699,25 +18713,25 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 1759 + - uid: 1786 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,32.5 parent: 1 - - uid: 1760 + - uid: 1787 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,31.5 parent: 1 - - uid: 1761 + - uid: 1788 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,30.5 parent: 1 - - uid: 1762 + - uid: 1789 components: - type: Transform rot: -1.5707963267948966 rad @@ -17727,7 +18741,7 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 1 - - uid: 1763 + - uid: 1790 components: - type: Transform rot: -1.5707963267948966 rad @@ -17735,35 +18749,35 @@ entities: parent: 1 - type: Thruster enabled: False - - uid: 1764 + - uid: 1791 components: - type: Transform pos: 9.5,-7.5 parent: 1 - - uid: 1765 + - uid: 1792 components: - type: Transform pos: 10.5,-7.5 parent: 1 - - uid: 1766 + - uid: 1793 components: - type: Transform pos: 6.5,38.5 parent: 1 - - uid: 1767 + - uid: 1794 components: - type: Transform pos: -5.5,38.5 parent: 1 - proto: ToiletDirtyWater entities: - - uid: 1768 + - uid: 1795 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 1 - - uid: 1769 + - uid: 1796 components: - type: Transform rot: 1.5707963267948966 rad @@ -17771,70 +18785,70 @@ entities: parent: 1 - proto: ToolboxElectricalFilled entities: - - uid: 1770 + - uid: 1797 components: - type: Transform pos: -3.4924016,18.751282 parent: 1 - proto: ToolboxMechanicalFilled entities: - - uid: 1771 + - uid: 1798 components: - type: Transform pos: -3.4924016,18.498556 parent: 1 - proto: TwoWayLever entities: - - uid: 1772 + - uid: 1799 components: - type: Transform pos: -5.5,26.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 1137: + 1153: - - Left - Forward - - Right - Reverse - - Middle - Off - 1136: + 1152: - - Left - Forward - - Right - Reverse - - Middle - Off - 1135: + 1151: - - Left - Forward - - Right - Reverse - - Middle - Off - - uid: 1773 + - uid: 1800 components: - type: Transform pos: 6.5,26.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 1139: + 1155: - - Left - Forward - - Right - Reverse - - Middle - Off - 1138: + 1154: - - Left - Forward - - Right - Reverse - - Middle - Off - 1140: + 1156: - - Left - Forward - - Right @@ -17843,42 +18857,42 @@ entities: - Off - proto: UnionfallClementineMothershipComputer entities: - - uid: 1774 + - uid: 1801 components: - type: Transform pos: 1.5,28.5 parent: 1 - proto: UnionfallShipNodeNCWL entities: - - uid: 1775 + - uid: 1802 components: - type: Transform pos: 0.5,9.5 parent: 1 - proto: VendingMachineChemicals entities: - - uid: 1776 + - uid: 1803 components: - type: Transform pos: -4.5,8.5 parent: 1 - proto: VendingMachineColaBlack entities: - - uid: 1777 + - uid: 1804 components: - type: Transform pos: -4.5,-6.5 parent: 1 - proto: VendingMachineMedical entities: - - uid: 1778 + - uid: 1805 components: - type: Transform pos: -5.5,8.5 parent: 1 - proto: VendingMachineSnack entities: - - uid: 1780 + - uid: 1806 components: - type: Transform rot: 3.141592653589793 rad @@ -17886,14 +18900,14 @@ entities: parent: 1 - proto: VendingMachineSnackOrange entities: - - uid: 1781 + - uid: 1807 components: - type: Transform pos: 5.5,-6.5 parent: 1 - proto: VendingMachineSoda entities: - - uid: 1782 + - uid: 1808 components: - type: Transform rot: 3.141592653589793 rad @@ -17901,14 +18915,14 @@ entities: parent: 1 - proto: VendingMachineSovietSoda entities: - - uid: 1783 + - uid: 1809 components: - type: Transform pos: -5.5,30.5 parent: 1 - proto: VendingMachineSustenance entities: - - uid: 1784 + - uid: 1810 components: - type: Transform rot: 3.141592653589793 rad @@ -17916,1790 +18930,1790 @@ entities: parent: 1 - proto: VendingMachineTankDispenserEVA entities: - - uid: 1785 + - uid: 1811 components: - type: Transform pos: 6.5,31.5 parent: 1 - - uid: 1786 + - uid: 1812 components: - type: Transform pos: 6.5,30.5 parent: 1 - - uid: 1787 + - uid: 1813 components: - type: Transform pos: -6.5,24.5 parent: 1 - - uid: 1788 + - uid: 1814 components: - type: Transform pos: 7.5,24.5 parent: 1 - proto: VendingMachineYouTool entities: - - uid: 1789 + - uid: 1815 components: - type: Transform pos: -3.5,15.5 parent: 1 - proto: WallPlastitanium entities: - - uid: 1790 + - uid: 1816 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-5.5 parent: 1 - - uid: 1791 + - uid: 1817 components: - type: Transform pos: 4.5,-4.5 parent: 1 - - uid: 1792 + - uid: 1818 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 1793 + - uid: 1819 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-8.5 parent: 1 - - uid: 1794 + - uid: 1820 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 1795 + - uid: 1821 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-9.5 parent: 1 - - uid: 1796 + - uid: 1822 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 1797 + - uid: 1823 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 1798 + - uid: 1824 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 1799 + - uid: 1825 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 1800 + - uid: 1826 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 1801 + - uid: 1827 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 1 - - uid: 1802 + - uid: 1828 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 1 - - uid: 1803 + - uid: 1829 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-5.5 parent: 1 - - uid: 1804 + - uid: 1830 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-6.5 parent: 1 - - uid: 1805 + - uid: 1831 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-7.5 parent: 1 - - uid: 1806 + - uid: 1832 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-7.5 parent: 1 - - uid: 1807 + - uid: 1833 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-7.5 parent: 1 - - uid: 1808 + - uid: 1834 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 1 - - uid: 1809 + - uid: 1835 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 1 - - uid: 1810 + - uid: 1836 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-7.5 parent: 1 - - uid: 1811 + - uid: 1837 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-6.5 parent: 1 - - uid: 1812 + - uid: 1838 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-10.5 parent: 1 - - uid: 1813 + - uid: 1839 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-11.5 parent: 1 - - uid: 1814 + - uid: 1840 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-11.5 parent: 1 - - uid: 1815 + - uid: 1841 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-10.5 parent: 1 - - uid: 1816 + - uid: 1842 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-9.5 parent: 1 - - uid: 1817 + - uid: 1843 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 1 - - uid: 1818 + - uid: 1844 components: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 1819 + - uid: 1845 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 1820 + - uid: 1846 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 1821 + - uid: 1847 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 1822 + - uid: 1848 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 1823 + - uid: 1849 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 1824 + - uid: 1850 components: - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 1825 + - uid: 1851 components: - type: Transform pos: 5.5,0.5 parent: 1 - - uid: 1826 + - uid: 1852 components: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 1827 + - uid: 1853 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 1828 + - uid: 1854 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,30.5 parent: 1 - - uid: 1829 + - uid: 1855 components: - type: Transform pos: 1.5,-18.5 parent: 1 - - uid: 1830 + - uid: 1856 components: - type: Transform pos: -4.5,-7.5 parent: 1 - - uid: 1831 + - uid: 1857 components: - type: Transform pos: -4.5,-8.5 parent: 1 - - uid: 1832 + - uid: 1858 components: - type: Transform pos: -4.5,-9.5 parent: 1 - - uid: 1833 + - uid: 1859 components: - type: Transform pos: -4.5,-10.5 parent: 1 - - uid: 1834 + - uid: 1860 components: - type: Transform pos: -3.5,-10.5 parent: 1 - - uid: 1835 + - uid: 1861 components: - type: Transform pos: -10.5,-12.5 parent: 1 - - uid: 1836 + - uid: 1862 components: - type: Transform pos: -1.5,-17.5 parent: 1 - - uid: 1837 + - uid: 1863 components: - type: Transform pos: -0.5,-17.5 parent: 1 - - uid: 1838 + - uid: 1864 components: - type: Transform pos: -2.5,-18.5 parent: 1 - - uid: 1839 + - uid: 1865 components: - type: Transform pos: -3.5,-17.5 parent: 1 - - uid: 1840 + - uid: 1866 components: - type: Transform pos: -5.5,-17.5 parent: 1 - - uid: 1841 + - uid: 1867 components: - type: Transform pos: -7.5,-17.5 parent: 1 - - uid: 1842 + - uid: 1868 components: - type: Transform pos: 11.5,-12.5 parent: 1 - - uid: 1843 + - uid: 1869 components: - type: Transform pos: 11.5,-10.5 parent: 1 - - uid: 1844 + - uid: 1870 components: - type: Transform pos: 11.5,-9.5 parent: 1 - - uid: 1845 + - uid: 1871 components: - type: Transform pos: -10.5,-10.5 parent: 1 - - uid: 1846 + - uid: 1872 components: - type: Transform pos: -10.5,-13.5 parent: 1 - - uid: 1847 + - uid: 1873 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-6.5 parent: 1 - - uid: 1848 + - uid: 1874 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 1849 + - uid: 1875 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 1 - - uid: 1850 + - uid: 1876 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,13.5 parent: 1 - - uid: 1851 + - uid: 1877 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-0.5 parent: 1 - - uid: 1852 + - uid: 1878 components: - type: Transform pos: -11.5,-13.5 parent: 1 - - uid: 1853 + - uid: 1879 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-7.5 parent: 1 - - uid: 1854 + - uid: 1880 components: - type: Transform pos: 5.5,-7.5 parent: 1 - - uid: 1855 + - uid: 1881 components: - type: Transform pos: 8.5,-15.5 parent: 1 - - uid: 1856 + - uid: 1882 components: - type: Transform pos: 8.5,-17.5 parent: 1 - - uid: 1857 + - uid: 1883 components: - type: Transform pos: 5.5,-17.5 parent: 1 - - uid: 1858 + - uid: 1884 components: - type: Transform pos: -1.5,-18.5 parent: 1 - - uid: 1859 + - uid: 1885 components: - type: Transform pos: 1.5,-17.5 parent: 1 - - uid: 1860 + - uid: 1886 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-4.5 parent: 1 - - uid: 1861 + - uid: 1887 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-6.5 parent: 1 - - uid: 1862 + - uid: 1888 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-7.5 parent: 1 - - uid: 1863 + - uid: 1889 components: - type: Transform pos: 12.5,-13.5 parent: 1 - - uid: 1864 + - uid: 1890 components: - type: Transform pos: -7.5,-15.5 parent: 1 - - uid: 1865 + - uid: 1891 components: - type: Transform pos: -7.5,-16.5 parent: 1 - - uid: 1866 + - uid: 1892 components: - type: Transform pos: 9.5,-15.5 parent: 1 - - uid: 1867 + - uid: 1893 components: - type: Transform pos: 8.5,-18.5 parent: 1 - - uid: 1868 + - uid: 1894 components: - type: Transform pos: 6.5,-17.5 parent: 1 - - uid: 1869 + - uid: 1895 components: - type: Transform pos: 3.5,-17.5 parent: 1 - - uid: 1870 + - uid: 1896 components: - type: Transform pos: 3.5,-18.5 parent: 1 - - uid: 1871 + - uid: 1897 components: - type: Transform pos: 11.5,-13.5 parent: 1 - - uid: 1872 + - uid: 1898 components: - type: Transform pos: 4.5,-17.5 parent: 1 - - uid: 1873 + - uid: 1899 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 1874 + - uid: 1900 components: - type: Transform pos: 0.5,-17.5 parent: 1 - - uid: 1875 + - uid: 1901 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-4.5 parent: 1 - - uid: 1876 + - uid: 1902 components: - type: Transform pos: 7.5,-17.5 parent: 1 - - uid: 1877 + - uid: 1903 components: - type: Transform pos: 8.5,-16.5 parent: 1 - - uid: 1878 + - uid: 1904 components: - type: Transform pos: -2.5,-17.5 parent: 1 - - uid: 1879 + - uid: 1905 components: - type: Transform pos: -4.5,-17.5 parent: 1 - - uid: 1880 + - uid: 1906 components: - type: Transform pos: -6.5,-17.5 parent: 1 - - uid: 1881 + - uid: 1907 components: - type: Transform pos: -7.5,-18.5 parent: 1 - - uid: 1882 + - uid: 1908 components: - type: Transform pos: 11.5,-11.5 parent: 1 - - uid: 1883 + - uid: 1909 components: - type: Transform pos: -10.5,-11.5 parent: 1 - - uid: 1884 + - uid: 1910 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 1885 + - uid: 1911 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 1 - - uid: 1886 + - uid: 1912 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-5.5 parent: 1 - - uid: 1887 + - uid: 1913 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 1888 + - uid: 1914 components: - type: Transform pos: 10.5,-13.5 parent: 1 - - uid: 1889 + - uid: 1915 components: - type: Transform pos: 10.5,-14.5 parent: 1 - - uid: 1890 + - uid: 1916 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 1 - - uid: 1891 + - uid: 1917 components: - type: Transform pos: 2.5,-18.5 parent: 1 - - uid: 1892 + - uid: 1918 components: - type: Transform pos: 0.5,-18.5 parent: 1 - - uid: 1893 + - uid: 1919 components: - type: Transform pos: -0.5,-18.5 parent: 1 - - uid: 1894 + - uid: 1920 components: - type: Transform pos: 8.5,-8.5 parent: 1 - - uid: 1895 + - uid: 1921 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 1896 + - uid: 1922 components: - type: Transform pos: 12.5,-14.5 parent: 1 - - uid: 1897 + - uid: 1923 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-8.5 parent: 1 - - uid: 1898 + - uid: 1924 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-9.5 parent: 1 - - uid: 1899 + - uid: 1925 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-8.5 parent: 1 - - uid: 1900 + - uid: 1926 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-8.5 parent: 1 - - uid: 1901 + - uid: 1927 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-8.5 parent: 1 - - uid: 1902 + - uid: 1928 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-9.5 parent: 1 - - uid: 1903 + - uid: 1929 components: - type: Transform pos: 8.5,-12.5 parent: 1 - - uid: 1904 + - uid: 1930 components: - type: Transform pos: -6.5,-7.5 parent: 1 - - uid: 1905 + - uid: 1931 components: - type: Transform pos: -6.5,-8.5 parent: 1 - - uid: 1906 + - uid: 1932 components: - type: Transform pos: -6.5,-9.5 parent: 1 - - uid: 1907 + - uid: 1933 components: - type: Transform pos: -6.5,-13.5 parent: 1 - - uid: 1908 + - uid: 1934 components: - type: Transform pos: -6.5,-14.5 parent: 1 - - uid: 1909 + - uid: 1935 components: - type: Transform pos: -6.5,-15.5 parent: 1 - - uid: 1910 + - uid: 1936 components: - type: Transform pos: -0.5,-12.5 parent: 1 - - uid: 1911 + - uid: 1937 components: - type: Transform pos: -0.5,-14.5 parent: 1 - - uid: 1912 + - uid: 1938 components: - type: Transform pos: -0.5,-15.5 parent: 1 - - uid: 1913 + - uid: 1939 components: - type: Transform pos: -0.5,-16.5 parent: 1 - - uid: 1914 + - uid: 1940 components: - type: Transform pos: 1.5,-16.5 parent: 1 - - uid: 1915 + - uid: 1941 components: - type: Transform pos: 1.5,-14.5 parent: 1 - - uid: 1916 + - uid: 1942 components: - type: Transform pos: 1.5,-12.5 parent: 1 - - uid: 1917 + - uid: 1943 components: - type: Transform pos: -3.5,-14.5 parent: 1 - - uid: 1918 + - uid: 1944 components: - type: Transform pos: -3.5,-15.5 parent: 1 - - uid: 1919 + - uid: 1945 components: - type: Transform pos: -3.5,-16.5 parent: 1 - - uid: 1920 + - uid: 1946 components: - type: Transform pos: -6.5,-16.5 parent: 1 - - uid: 1921 + - uid: 1947 components: - type: Transform pos: 8.5,-9.5 parent: 1 - - uid: 1922 + - uid: 1948 components: - type: Transform pos: 8.5,-10.5 parent: 1 - - uid: 1923 + - uid: 1949 components: - type: Transform pos: 2.5,-14.5 parent: 1 - - uid: 1924 + - uid: 1950 components: - type: Transform pos: 8.5,-14.5 parent: 1 - - uid: 1925 + - uid: 1951 components: - type: Transform pos: 8.5,-13.5 parent: 1 - - uid: 1926 + - uid: 1952 components: - type: Transform pos: 9.5,-14.5 parent: 1 - - uid: 1927 + - uid: 1953 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 1928 + - uid: 1954 components: - type: Transform pos: 3.5,-14.5 parent: 1 - - uid: 1929 + - uid: 1955 components: - type: Transform pos: 6.5,-16.5 parent: 1 - - uid: 1930 + - uid: 1956 components: - type: Transform pos: 4.5,-14.5 parent: 1 - - uid: 1931 + - uid: 1957 components: - type: Transform pos: 6.5,-14.5 parent: 1 - - uid: 1932 + - uid: 1958 components: - type: Transform pos: 7.5,-14.5 parent: 1 - - uid: 1933 + - uid: 1959 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - uid: 1934 + - uid: 1960 components: - type: Transform pos: 4.5,-16.5 parent: 1 - - uid: 1935 + - uid: 1961 components: - type: Transform pos: 2.5,-17.5 parent: 1 - - uid: 1936 + - uid: 1962 components: - type: Transform pos: -4.5,37.5 parent: 1 - - uid: 1937 + - uid: 1963 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,4.5 parent: 1 - - uid: 1938 + - uid: 1964 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,3.5 parent: 1 - - uid: 1939 + - uid: 1965 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,5.5 parent: 1 - - uid: 1940 + - uid: 1966 components: - type: Transform pos: -8.5,7.5 parent: 1 - - uid: 1941 + - uid: 1967 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,3.5 parent: 1 - - uid: 1942 + - uid: 1968 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,4.5 parent: 1 - - uid: 1943 + - uid: 1969 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 1 - - uid: 1944 + - uid: 1970 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 1 - - uid: 1945 + - uid: 1971 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,4.5 parent: 1 - - uid: 1946 + - uid: 1972 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,4.5 parent: 1 - - uid: 1947 + - uid: 1973 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,4.5 parent: 1 - - uid: 1948 + - uid: 1974 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 1949 + - uid: 1975 components: - type: Transform pos: 9.5,11.5 parent: 1 - - uid: 1950 + - uid: 1976 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,12.5 parent: 1 - - uid: 1951 + - uid: 1977 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,6.5 parent: 1 - - uid: 1952 + - uid: 1978 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,7.5 parent: 1 - - uid: 1953 + - uid: 1979 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,8.5 parent: 1 - - uid: 1954 + - uid: 1980 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 1 - - uid: 1955 + - uid: 1981 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,10.5 parent: 1 - - uid: 1956 + - uid: 1982 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 1957 + - uid: 1983 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,11.5 parent: 1 - - uid: 1958 + - uid: 1984 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 1 - - uid: 1959 + - uid: 1985 components: - type: Transform pos: -6.5,12.5 parent: 1 - - uid: 1960 + - uid: 1986 components: - type: Transform pos: -6.5,14.5 parent: 1 - - uid: 1961 + - uid: 1987 components: - type: Transform pos: -6.5,15.5 parent: 1 - - uid: 1962 + - uid: 1988 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,23.5 parent: 1 - - uid: 1963 + - uid: 1989 components: - type: Transform pos: -6.5,21.5 parent: 1 - - uid: 1964 + - uid: 1990 components: - type: Transform pos: -6.5,23.5 parent: 1 - - uid: 1965 + - uid: 1991 components: - type: Transform pos: 7.5,12.5 parent: 1 - - uid: 1966 + - uid: 1992 components: - type: Transform pos: 7.5,14.5 parent: 1 - - uid: 1967 + - uid: 1993 components: - type: Transform pos: 7.5,15.5 parent: 1 - - uid: 1968 + - uid: 1994 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,23.5 parent: 1 - - uid: 1969 + - uid: 1995 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,24.5 parent: 1 - - uid: 1970 + - uid: 1996 components: - type: Transform pos: 7.5,21.5 parent: 1 - - uid: 1971 + - uid: 1997 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 1972 + - uid: 1998 components: - type: Transform pos: 7.5,23.5 parent: 1 - - uid: 1973 + - uid: 1999 components: - type: Transform pos: -7.5,33.5 parent: 1 - - uid: 1974 + - uid: 2000 components: - type: Transform pos: 8.5,33.5 parent: 1 - - uid: 1975 + - uid: 2001 components: - type: Transform pos: 5.5,37.5 parent: 1 - - uid: 1976 + - uid: 2002 components: - type: Transform pos: -7.5,29.5 parent: 1 - - uid: 1977 + - uid: 2003 components: - type: Transform pos: -1.5,37.5 parent: 1 - - uid: 1978 + - uid: 2004 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,34.5 parent: 1 - - uid: 1979 + - uid: 2005 components: - type: Transform pos: -2.5,33.5 parent: 1 - - uid: 1980 + - uid: 2006 components: - type: Transform pos: 8.5,29.5 parent: 1 - - uid: 1981 + - uid: 2007 components: - type: Transform pos: 6.5,-7.5 parent: 1 - - uid: 1982 + - uid: 2008 components: - type: Transform pos: -6.5,32.5 parent: 1 - - uid: 1983 + - uid: 2009 components: - type: Transform pos: -6.5,31.5 parent: 1 - - uid: 1984 + - uid: 2010 components: - type: Transform pos: 7.5,31.5 parent: 1 - - uid: 1985 + - uid: 2011 components: - type: Transform pos: 6.5,36.5 parent: 1 - - uid: 1986 + - uid: 2012 components: - type: Transform pos: 7.5,32.5 parent: 1 - - uid: 1987 + - uid: 2013 components: - type: Transform pos: -1.5,35.5 parent: 1 - - uid: 1988 + - uid: 2014 components: - type: Transform pos: -5.5,36.5 parent: 1 - - uid: 1989 + - uid: 2015 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,34.5 parent: 1 - - uid: 1990 + - uid: 2016 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,35.5 parent: 1 - - uid: 1991 + - uid: 2017 components: - type: Transform pos: -1.5,38.5 parent: 1 - - uid: 1992 + - uid: 2018 components: - type: Transform pos: -1.5,36.5 parent: 1 - - uid: 1993 + - uid: 2019 components: - type: Transform pos: -5.5,35.5 parent: 1 - - uid: 1994 + - uid: 2020 components: - type: Transform pos: 6.5,35.5 parent: 1 - - uid: 1995 + - uid: 2021 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,12.5 parent: 1 - - uid: 1996 + - uid: 2022 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,12.5 parent: 1 - - uid: 1997 + - uid: 2023 components: - type: Transform pos: 7.5,33.5 parent: 1 - - uid: 1998 + - uid: 2024 components: - type: Transform pos: -6.5,33.5 parent: 1 - - uid: 1999 + - uid: 2025 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,12.5 parent: 1 - - uid: 2000 + - uid: 2026 components: - type: Transform pos: -6.5,29.5 parent: 1 - - uid: 2001 + - uid: 2027 components: - type: Transform pos: -6.5,30.5 parent: 1 - - uid: 2002 + - uid: 2028 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,30.5 parent: 1 - - uid: 2003 + - uid: 2029 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 1 - - uid: 2004 + - uid: 2030 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 1 - - uid: 2005 + - uid: 2031 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,5.5 parent: 1 - - uid: 2006 + - uid: 2032 components: - type: Transform pos: 9.5,8.5 parent: 1 - - uid: 2007 + - uid: 2033 components: - type: Transform pos: 9.5,10.5 parent: 1 - - uid: 2008 + - uid: 2034 components: - type: Transform pos: 9.5,6.5 parent: 1 - - uid: 2009 + - uid: 2035 components: - type: Transform pos: 9.5,5.5 parent: 1 - - uid: 2010 + - uid: 2036 components: - type: Transform pos: 9.5,7.5 parent: 1 - - uid: 2011 + - uid: 2037 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,12.5 parent: 1 - - uid: 2012 + - uid: 2038 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,12.5 parent: 1 - - uid: 2013 + - uid: 2039 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 1 - - uid: 2014 + - uid: 2040 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 1 - - uid: 2015 + - uid: 2041 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,6.5 parent: 1 - - uid: 2016 + - uid: 2042 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,7.5 parent: 1 - - uid: 2017 + - uid: 2043 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - - uid: 2018 + - uid: 2044 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,10.5 parent: 1 - - uid: 2019 + - uid: 2045 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,11.5 parent: 1 - - uid: 2020 + - uid: 2046 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 1 - - uid: 2021 + - uid: 2047 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 2022 + - uid: 2048 components: - type: Transform pos: 4.5,13.5 parent: 1 - - uid: 2023 + - uid: 2049 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 2024 + - uid: 2050 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 2025 + - uid: 2051 components: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 2026 + - uid: 2052 components: - type: Transform pos: -2.5,13.5 parent: 1 - - uid: 2027 + - uid: 2053 components: - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 2028 + - uid: 2054 components: - type: Transform pos: 2.5,36.5 parent: 1 - - uid: 2029 + - uid: 2055 components: - type: Transform pos: 2.5,37.5 parent: 1 - - uid: 2030 + - uid: 2056 components: - type: Transform pos: 2.5,38.5 parent: 1 - - uid: 2031 + - uid: 2057 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,38.5 parent: 1 - - uid: 2032 + - uid: 2058 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,38.5 parent: 1 - - uid: 2033 + - uid: 2059 components: - type: Transform pos: 2.5,35.5 parent: 1 - - uid: 2034 + - uid: 2060 components: - type: Transform pos: 3.5,33.5 parent: 1 - - uid: 2035 + - uid: 2061 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,28.5 parent: 1 - - uid: 2036 + - uid: 2062 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,28.5 parent: 1 - - uid: 2037 + - uid: 2063 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,24.5 parent: 1 - - uid: 2038 + - uid: 2064 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,29.5 parent: 1 - - uid: 2039 + - uid: 2065 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,28.5 parent: 1 - - uid: 2040 + - uid: 2066 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,24.5 parent: 1 - - uid: 2041 + - uid: 2067 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,23.5 parent: 1 - - uid: 2042 + - uid: 2068 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,22.5 parent: 1 - - uid: 2043 + - uid: 2069 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,21.5 parent: 1 - - uid: 2044 + - uid: 2070 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,20.5 parent: 1 - - uid: 2045 + - uid: 2071 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,19.5 parent: 1 - - uid: 2046 + - uid: 2072 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,18.5 parent: 1 - - uid: 2047 + - uid: 2073 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,17.5 parent: 1 - - uid: 2048 + - uid: 2074 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,16.5 parent: 1 - - uid: 2049 + - uid: 2075 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,15.5 parent: 1 - - uid: 2050 + - uid: 2076 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,14.5 parent: 1 - - uid: 2051 + - uid: 2077 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,14.5 parent: 1 - - uid: 2052 + - uid: 2078 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,15.5 parent: 1 - - uid: 2053 + - uid: 2079 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,14.5 parent: 1 - - uid: 2054 + - uid: 2080 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,14.5 parent: 1 - - uid: 2055 + - uid: 2081 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,16.5 parent: 1 - - uid: 2056 + - uid: 2082 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,17.5 parent: 1 - - uid: 2057 + - uid: 2083 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,18.5 parent: 1 - - uid: 2058 + - uid: 2084 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,19.5 parent: 1 - - uid: 2059 + - uid: 2085 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,20.5 parent: 1 - - uid: 2060 + - uid: 2086 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,21.5 parent: 1 - - uid: 2061 + - uid: 2087 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,22.5 parent: 1 - - uid: 2062 + - uid: 2088 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,23.5 parent: 1 - - uid: 2063 + - uid: 2089 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,24.5 parent: 1 - - uid: 2064 + - uid: 2090 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,28.5 parent: 1 - - uid: 2065 + - uid: 2091 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,29.5 parent: 1 - - uid: 2066 + - uid: 2092 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,29.5 parent: 1 - - uid: 2067 + - uid: 2093 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,35.5 parent: 1 - - uid: 2068 + - uid: 2094 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,29.5 parent: 1 - - uid: 2069 + - uid: 2095 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,29.5 parent: 1 - - uid: 2070 + - uid: 2096 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,35.5 parent: 1 - - uid: 2071 + - uid: 2097 components: - type: Transform pos: 1.5,29.5 parent: 1 - - uid: 2072 + - uid: 2098 components: - type: Transform pos: -2.5,35.5 parent: 1 - - uid: 2073 + - uid: 2099 components: - type: Transform pos: -5.5,29.5 parent: 1 - - uid: 2074 + - uid: 2100 components: - type: Transform pos: 6.5,29.5 parent: 1 - - uid: 2075 + - uid: 2101 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,14.5 parent: 1 - - uid: 2078 + - uid: 2102 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,18.5 parent: 1 - - uid: 2079 + - uid: 2103 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,29.5 parent: 1 - - uid: 2080 + - uid: 2104 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,29.5 parent: 1 - - uid: 2081 + - uid: 2105 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,14.5 parent: 1 - - uid: 2083 + - uid: 2106 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,32.5 parent: 1 - - uid: 2085 + - uid: 2107 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,18.5 parent: 1 - - uid: 2086 + - uid: 2108 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,19.5 parent: 1 - - uid: 2088 + - uid: 2109 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,19.5 parent: 1 - - uid: 2089 + - uid: 2110 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,19.5 parent: 1 - - uid: 2090 + - uid: 2111 components: - type: Transform pos: 3.5,35.5 parent: 1 - - uid: 2091 + - uid: 2112 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,19.5 parent: 1 - - uid: 2092 + - uid: 2113 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,34.5 parent: 1 - - uid: 2093 + - uid: 2114 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 2094 + - uid: 2115 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 2095 + - uid: 2116 components: - type: Transform pos: -5.5,37.5 parent: 1 - - uid: 2096 + - uid: 2117 components: - type: Transform pos: -4.5,38.5 parent: 1 - - uid: 2097 + - uid: 2118 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,35.5 parent: 1 - - uid: 2098 + - uid: 2119 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-11.5 parent: 1 - - uid: 2099 + - uid: 2120 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,30.5 parent: 1 - - uid: 2100 + - uid: 2121 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,29.5 parent: 1 - - uid: 2101 + - uid: 2122 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,32.5 parent: 1 - - uid: 2102 + - uid: 2123 components: - type: Transform pos: -8.5,4.5 parent: 1 - - uid: 2103 + - uid: 2124 components: - type: Transform pos: -2.5,34.5 parent: 1 - - uid: 2104 + - uid: 2125 components: - type: Transform pos: 9.5,9.5 parent: 1 - - uid: 2105 + - uid: 2126 components: - type: Transform pos: -8.5,5.5 parent: 1 - - uid: 2106 + - uid: 2127 components: - type: Transform pos: 6.5,37.5 parent: 1 - - uid: 2107 + - uid: 2128 components: - type: Transform pos: 5.5,38.5 parent: 1 - - uid: 2108 + - uid: 2129 components: - type: Transform pos: -7.5,3.5 parent: 1 - - uid: 2109 + - uid: 2130 components: - type: Transform pos: -7.5,-4.5 parent: 1 - - uid: 2110 + - uid: 2131 components: - type: Transform pos: -8.5,10.5 parent: 1 - - uid: 2111 + - uid: 2132 components: - type: Transform pos: -8.5,9.5 parent: 1 - - uid: 2112 + - uid: 2133 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,29.5 parent: 1 - - uid: 2113 + - uid: 2134 components: - type: Transform pos: -8.5,11.5 parent: 1 - - uid: 2114 + - uid: 2135 components: - type: Transform pos: 8.5,-4.5 parent: 1 - - uid: 2115 + - uid: 2136 components: - type: Transform pos: -8.5,8.5 parent: 1 - - uid: 2116 + - uid: 2137 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-11.5 parent: 1 - - uid: 2117 + - uid: 2138 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-11.5 parent: 1 - - uid: 2118 + - uid: 2139 components: - type: Transform rot: -1.5707963267948966 rad @@ -19707,104 +20721,104 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 2119 + - uid: 2140 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 2120 + - uid: 2141 components: - type: Transform pos: -11.5,-9.5 parent: 1 - - uid: 2121 + - uid: 2142 components: - type: Transform pos: -8.5,28.5 parent: 1 - - uid: 2122 + - uid: 2143 components: - type: Transform pos: -8.5,12.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestCurved entities: - - uid: 2123 + - uid: 2144 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 2124 + - uid: 2145 components: - type: Transform pos: 12.5,-9.5 parent: 1 - - uid: 2125 + - uid: 2146 components: - type: Transform pos: 9.5,28.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestHollow entities: - - uid: 2126 + - uid: 2147 components: - type: Transform pos: 9.5,12.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastCurved entities: - - uid: 2127 + - uid: 2148 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 2128 + - uid: 2149 components: - type: Transform pos: -2.5,-19.5 parent: 1 - - uid: 2129 + - uid: 2150 components: - type: Transform pos: -8.5,3.5 parent: 1 - - uid: 2130 + - uid: 2151 components: - type: Transform pos: -8.5,24.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestCurved entities: - - uid: 2131 + - uid: 2152 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 2132 + - uid: 2153 components: - type: Transform pos: 3.5,-19.5 parent: 1 - - uid: 2133 + - uid: 2154 components: - type: Transform pos: 9.5,24.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestHollow entities: - - uid: 2134 + - uid: 2155 components: - type: Transform pos: 10.5,-15.5 parent: 1 - - uid: 2135 + - uid: 2156 components: - type: Transform pos: 9.5,4.5 parent: 1 - proto: WarpPointShip entities: - - uid: 2136 + - uid: 2157 components: - type: MetaData name: NCWL Dear Clementine @@ -19813,14 +20827,21 @@ entities: parent: 1 - proto: WaterCooler entities: - - uid: 2137 + - uid: 2158 components: - type: Transform pos: 2.5,-6.5 parent: 1 +- proto: WeaponPistolZodum + entities: + - uid: 2159 + components: + - type: Transform + pos: -0.25773263,-10.528703 + parent: 1 - proto: WeaponTurretMortar entities: - - uid: 2138 + - uid: 2160 components: - type: Transform rot: 1.5707963267948966 rad @@ -19853,8 +20874,8 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 1129 - - uid: 2139 + linkedConsoleId: 1147 + - uid: 2161 components: - type: Transform rot: -1.5707963267948966 rad @@ -19887,8 +20908,8 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 1129 - - uid: 2140 + linkedConsoleId: 1147 + - uid: 2162 components: - type: Transform rot: 1.5707963267948966 rad @@ -19921,15 +20942,15 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 1129 - - uid: 2141 + linkedConsoleId: 1147 + - uid: 2163 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-3.5 parent: 1 - type: PointCannon - linkedConsoleId: 1129 + linkedConsoleId: 1147 - type: ApcPowerReceiver powerLoad: 5 - type: Battery @@ -19956,7 +20977,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 2142 + - uid: 2164 components: - type: Transform rot: -1.5707963267948966 rad @@ -19989,15 +21010,15 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 1129 - - uid: 2143 + linkedConsoleId: 1147 + - uid: 2165 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,2.5 parent: 1 - type: PointCannon - linkedConsoleId: 1129 + linkedConsoleId: 1147 - type: ApcPowerReceiver powerLoad: 5 - type: Battery @@ -20024,14 +21045,14 @@ entities: showEnts: False occludes: True ents: [] - - uid: 2144 + - uid: 2166 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-3.5 parent: 1 - type: PointCannon - linkedConsoleId: 1129 + linkedConsoleId: 1147 - type: ApcPowerReceiver powerLoad: 5 - type: Battery @@ -20058,14 +21079,14 @@ entities: showEnts: False occludes: True ents: [] - - uid: 2145 + - uid: 2167 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,2.5 parent: 1 - type: PointCannon - linkedConsoleId: 1129 + linkedConsoleId: 1147 - type: ApcPowerReceiver powerLoad: 5 - type: Battery @@ -20094,7 +21115,7 @@ entities: ents: [] - proto: WeaponTurretPDT entities: - - uid: 2146 + - uid: 2168 components: - type: Transform rot: 3.141592653589793 rad @@ -20119,8 +21140,8 @@ entities: - type: Battery startingCharge: 0 - type: PointCannon - linkedConsoleId: 1129 - - uid: 2147 + linkedConsoleId: 1147 + - uid: 2169 components: - type: Transform rot: 3.141592653589793 rad @@ -20145,8 +21166,8 @@ entities: - type: Battery startingCharge: 0 - type: PointCannon - linkedConsoleId: 1129 - - uid: 2148 + linkedConsoleId: 1147 + - uid: 2170 components: - type: Transform rot: 3.141592653589793 rad @@ -20171,14 +21192,14 @@ entities: - type: Battery startingCharge: 0 - type: PointCannon - linkedConsoleId: 1129 - - uid: 2149 + linkedConsoleId: 1147 + - uid: 2171 components: - type: Transform pos: -7.5,-19.5 parent: 1 - type: PointCannon - linkedConsoleId: 1129 + linkedConsoleId: 1147 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -20197,14 +21218,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2150 + - uid: 2172 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-8.5 parent: 1 - type: PointCannon - linkedConsoleId: 1129 + linkedConsoleId: 1147 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -20223,14 +21244,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2151 + - uid: 2173 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-8.5 parent: 1 - type: PointCannon - linkedConsoleId: 1129 + linkedConsoleId: 1147 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -20249,14 +21270,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2152 + - uid: 2174 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 1 - type: PointCannon - linkedConsoleId: 1129 + linkedConsoleId: 1147 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -20275,14 +21296,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2153 + - uid: 2175 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 1 - type: PointCannon - linkedConsoleId: 1129 + linkedConsoleId: 1147 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -20301,14 +21322,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2154 + - uid: 2176 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,13.5 parent: 1 - type: PointCannon - linkedConsoleId: 1129 + linkedConsoleId: 1147 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -20327,14 +21348,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2155 + - uid: 2177 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,22.5 parent: 1 - type: PointCannon - linkedConsoleId: 1129 + linkedConsoleId: 1147 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -20353,14 +21374,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2156 + - uid: 2178 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,22.5 parent: 1 - type: PointCannon - linkedConsoleId: 1129 + linkedConsoleId: 1147 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -20379,14 +21400,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2157 + - uid: 2179 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,13.5 parent: 1 - type: PointCannon - linkedConsoleId: 1129 + linkedConsoleId: 1147 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -20405,14 +21426,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2158 + - uid: 2180 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,36.5 parent: 1 - type: PointCannon - linkedConsoleId: 1129 + linkedConsoleId: 1147 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -20431,14 +21452,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2159 + - uid: 2181 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,18.5 parent: 1 - type: PointCannon - linkedConsoleId: 1129 + linkedConsoleId: 1147 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -20457,14 +21478,14 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2160 + - uid: 2182 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,18.5 parent: 1 - type: PointCannon - linkedConsoleId: 1129 + linkedConsoleId: 1147 - type: ContainerContainer containers: ballistic-ammo: !type:Container @@ -20483,7 +21504,7 @@ entities: powerLoad: 5 - type: Battery startingCharge: 0 - - uid: 2161 + - uid: 2183 components: - type: Transform pos: 0.5,-20.5 @@ -20507,8 +21528,8 @@ entities: - type: Battery startingCharge: 0 - type: PointCannon - linkedConsoleId: 1129 - - uid: 2162 + linkedConsoleId: 1147 + - uid: 2184 components: - type: Transform pos: 8.5,-19.5 @@ -20532,51 +21553,51 @@ entities: - type: Battery startingCharge: 0 - type: PointCannon - linkedConsoleId: 1129 + linkedConsoleId: 1147 - proto: WindoorSecure entities: - - uid: 2163 + - uid: 2185 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - uid: 2164 + - uid: 2186 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,36.5 parent: 1 - - uid: 2165 + - uid: 2187 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,36.5 parent: 1 - - uid: 2166 + - uid: 2188 components: - type: Transform pos: 6.5,-12.5 parent: 1 - - uid: 2167 + - uid: 2189 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,13.5 parent: 1 - - uid: 2168 + - uid: 2190 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,13.5 parent: 1 - - uid: 2169 + - uid: 2191 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,4.5 parent: 1 - - uid: 2170 + - uid: 2192 components: - type: Transform rot: 3.141592653589793 rad @@ -20584,60 +21605,60 @@ entities: parent: 1 - proto: WindoorSecureNCWLCommand entities: - - uid: 2171 + - uid: 2193 components: - type: Transform pos: 1.5,-7.5 parent: 1 - proto: WindowReinforcedDirectional entities: - - uid: 2172 + - uid: 2194 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-8.5 parent: 1 - - uid: 2173 + - uid: 2195 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-12.5 parent: 1 - - uid: 2174 + - uid: 2196 components: - type: Transform pos: 3.5,-12.5 parent: 1 - - uid: 2175 + - uid: 2197 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-12.5 parent: 1 - - uid: 2176 + - uid: 2198 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-11.5 parent: 1 - - uid: 2177 + - uid: 2199 components: - type: Transform pos: 4.5,-12.5 parent: 1 - - uid: 2178 + - uid: 2200 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-9.5 parent: 1 - - uid: 2179 + - uid: 2201 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-10.5 parent: 1 - - uid: 2180 + - uid: 2202 components: - type: Transform pos: 5.5,-12.5 diff --git a/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml b/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml index 37c08cf7ec1..32b7efabf37 100644 --- a/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml +++ b/Resources/Maps/_Crescent/Unionfall/unionfall_nemesis.yml @@ -4,8 +4,8 @@ meta: engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 03/11/2026 00:24:26 - entityCount: 1837 + time: 03/11/2026 12:03:03 + entityCount: 1885 maps: [] grids: - 1 @@ -24,6 +24,7 @@ tilemap: 13: FloorMS13CarpetFancyBlue 10: FloorMiningDark 8: FloorReinforced + 21: FloorShuttleWhite 2: FloorTechMaint 7: FloorTechMaint2 14: FloorTechMaintDirectional @@ -59,7 +60,7 @@ entities: version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAIIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAIIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAAwAAAAAAAIIAAAAAAAAEAAAAAAAACQAAAAAAAAkAAAAAAAAEAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAMAAAAAAACCAAAAAAAABAAAAAAAAAkAAAAAAAAJAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAARAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAwAAAAAAAIIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAgAAAAAAAABAAAAAAAAAQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAIIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAIIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAggAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAAwAAAAAAAIIAAAAAAAAEAAAAAAAACQAAAAAAAAkAAAAAAAAEAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAMAAAAAAACCAAAAAAAABAAAAAAAAAkAAAAAAAAJAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAARAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAwAAAAAAAIIAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAACCAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAACCAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAgAAAAAAAABAAAAAAAAAQAAAAAAAA== version: 7 -1,0: ind: -1,0 @@ -71,7 +72,7 @@ entities: version: 7 0,-2: ind: 0,-2 - tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAgQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAACBAAAAAAAAAQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAMAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAADAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAgQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAQAAAAAAAIIAAAAAAACBAAAAAAAAAQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAABEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAggAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAggAAAAAAAAMAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAACCAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAIIAAAAAAAADAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 0,1: ind: 0,1 @@ -111,3870 +112,2286 @@ entities: color: '#D381C996' id: BoxGreyscale decals: - 18: -9,-20 - 27: 2,6 - 28: 2,6 - 29: 3,6 - 30: 3,6 - 31: 6,6 - 32: 6,6 - 33: 5,6 - 34: 5,6 - 2523: 2,0 + 21: 2,6 + 22: 2,6 + 23: 3,6 + 24: 3,6 + 25: 6,6 + 26: 6,6 + 27: 5,6 + 28: 5,6 + 2354: 2,0 - node: angle: 3.141592653589793 rad color: '#D381C996' id: BoxGreyscale decals: - 35: -2,-27 - 36: -2,-27 - 37: -2,-27 + 29: -2,-27 + 30: -2,-27 + 31: -2,-27 - node: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 2446: 5,4 - 2486: 0,-19 - 2567: 8,1 - 2576: 8,1 - 2578: 0,5 - 2579: 1,4 + 2277: 5,4 + 2317: 0,-19 + 2396: 8,1 + 2405: 8,1 + 2407: 0,5 + 2408: 1,4 + 3989: 8,-24 + 4031: -4,-25 - node: + angle: 6.283185307179586 rad + color: '#D381C996' + id: BrickTileSteelCornerNe + decals: + 4046: -9,-18 + 4058: -5,-18 + - node: + color: '#D381C996' + id: BrickTileSteelCornerNw + decals: + 2275: 3,4 + 2285: -2,0 + 2294: -3,-18 + 2406: 7,4 + 2420: 1,1 + 3991: 3,-24 + - node: + angle: 6.283185307179586 rad color: '#D381C996' id: BrickTileSteelCornerNw decals: - 2444: 3,4 - 2454: -2,0 - 2463: -3,-18 - 2577: 7,4 - 2591: 1,1 + 4038: -7,-25 + 4059: -7,-18 + 4074: -12,-23 - node: color: '#D381C996' id: BrickTileSteelCornerSe decals: - 2445: 5,3 - 2485: 0,-21 - 2580: 1,3 + 2276: 5,3 + 2316: 0,-21 + 2409: 1,3 + 3990: 8,-27 + - node: + angle: 6.283185307179586 rad + color: '#D381C996' + id: BrickTileSteelCornerSe + decals: + 4033: -4,-27 + 4041: -9,-26 + 4045: -9,-20 + 4056: -5,-20 + - node: + color: '#D381C996' + id: BrickTileSteelCornerSw + decals: + 2286: -7,-23 + 2413: -2,2 + 3992: 3,-27 + 4024: 10,-23 - node: + angle: 6.283185307179586 rad color: '#D381C996' id: BrickTileSteelCornerSw decals: - 2455: -7,-23 - 2584: -2,2 + 4032: -7,-27 + 4057: -7,-20 + 4075: -12,-25 + - node: + color: '#D381C996' + id: BrickTileSteelEndS + decals: + 4025: 11,-24 + - node: + color: '#D381C996' + id: BrickTileSteelInnerNe + decals: + 2389: -1,-19 + 2404: 7,1 + 2417: 0,4 + 4023: 8,-22 - node: + angle: 6.283185307179586 rad color: '#D381C996' id: BrickTileSteelInnerNe decals: - 2560: -1,-19 - 2575: 7,1 - 2588: 0,4 + 4055: -9,-19 + 4063: -5,-19 + 4066: -6,-25 + 4070: -10,-22 - node: color: '#D381C996' id: BrickTileSteelInnerNw decals: - 2558: -3,-22 - 2561: -2,-18 - 2572: 7,1 - 2593: 1,0 + 2387: -3,-22 + 2390: -2,-18 + 2401: 7,1 + 2422: 1,0 + 3999: 3,-25 + 4019: 2,-21 - node: + angle: 6.283185307179586 rad + color: '#D381C996' + id: BrickTileSteelInnerNw + decals: + 4064: -7,-19 + 4069: -6,-25 + 4072: -10,-23 + - node: + color: '#D381C996' + id: BrickTileSteelInnerSe + decals: + 2388: -2,-21 + 2416: -1,3 + 4015: 3,-22 + - node: + angle: 6.283185307179586 rad color: '#D381C996' id: BrickTileSteelInnerSe decals: - 2559: -2,-21 - 2587: -1,3 + 4054: -9,-19 + 4062: -5,-19 + 4068: -6,-23 + - node: + color: '#D381C996' + id: BrickTileSteelInnerSw + decals: + 3998: 3,-25 + 4026: 11,-23 + - node: + angle: 6.283185307179586 rad + color: '#D381C996' + id: BrickTileSteelInnerSw + decals: + 4053: -10,-19 + 4065: -7,-19 + 4067: -6,-23 - node: color: '#D381C996' id: BrickTileSteelLineE decals: - 2482: -2,-22 - 2487: -1,-18 - 2488: -1,-16 - 2489: -1,-17 - 2490: -1,-15 - 2491: -1,-14 - 2492: -1,-13 - 2493: -1,-10 - 2494: -1,-9 - 2495: -1,-8 - 2496: -1,-7 - 2497: -1,-6 - 2498: -1,-5 - 2563: 8,-3 - 2564: 8,-2 - 2565: 8,-1 - 2566: 8,0 - 2573: 7,3 - 2574: 7,2 - 2586: -1,2 + 2313: -2,-22 + 2318: -1,-18 + 2319: -1,-16 + 2320: -1,-17 + 2321: -1,-15 + 2322: -1,-14 + 2323: -1,-13 + 2324: -1,-10 + 2325: -1,-9 + 2326: -1,-8 + 2327: -1,-7 + 2328: -1,-6 + 2329: -1,-5 + 2392: 8,-3 + 2393: 8,-2 + 2394: 8,-1 + 2395: 8,0 + 2402: 7,3 + 2403: 7,2 + 2415: -1,2 + 4000: 8,-26 + 4001: 8,-25 + 4020: 8,-21 + 4021: 8,-20 + 4027: 11,-23 + 4028: 11,-22 + - node: + angle: 6.283185307179586 rad + color: '#D381C996' + id: BrickTileSteelLineE + decals: + 4034: -4,-26 + 4042: -9,-25 + 4043: -9,-24 + 4044: -9,-23 - node: color: '#D381C996' id: BrickTileSteelLineN decals: - 2456: -7,-22 - 2457: -6,-22 - 2458: -5,-22 - 2459: -4,-22 - 2570: 6,1 - 2571: 5,1 - 2581: -2,5 - 2592: 0,0 - 2594: 2,1 + 2287: -7,-22 + 2288: -6,-22 + 2289: -5,-22 + 2290: -4,-22 + 2399: 6,1 + 2400: 5,1 + 2410: -2,5 + 2421: 0,0 + 2423: 2,1 + 4002: 7,-24 + 4003: 6,-24 + 4004: 5,-24 + 4005: 4,-24 + 4006: 7,-19 + 4007: 6,-19 + 4008: 5,-19 + 4009: 4,-19 + 4010: 3,-19 + 4029: 10,-22 + 4030: -9,-22 - node: + angle: 6.283185307179586 rad color: '#D381C996' - id: BrickTileSteelLineS + id: BrickTileSteelLineN decals: - 2441: 5,3 - 2442: 4,3 - 2443: 5,3 - 2447: 8,-4 - 2448: 7,-4 - 2449: 6,-4 - 2477: -5,-23 - 2478: -4,-23 - 2479: -3,-23 - 2480: -2,-23 - 2481: -1,-23 - 2483: -1,-21 - 2484: 0,-21 - 2562: 5,-4 - 2585: 0,3 + 4039: -5,-25 + 4047: -10,-18 + 4048: -11,-18 + 4049: -12,-18 + 4060: -6,-18 + 4073: -11,-23 - node: color: '#D381C996' - id: BrickTileSteelLineW + id: BrickTileSteelLineS decals: - 2450: -2,-4 - 2451: -2,-2 - 2452: -2,-3 - 2453: -2,-1 - 2460: -3,-21 - 2461: -3,-20 - 2462: -3,-19 - 2464: -2,-17 - 2465: -2,-16 - 2466: -2,-15 - 2467: -2,-14 - 2468: -2,-13 - 2469: -2,-12 - 2470: -2,-11 - 2471: -2,-10 - 2472: -2,-9 - 2473: -2,-8 - 2474: -2,-7 - 2475: -2,-6 - 2476: -2,-5 - 2568: 7,3 - 2569: 7,2 - 2582: -2,4 - 2583: -2,3 - 2589: 3,3 - 2590: 3,2 + 2272: 5,3 + 2273: 4,3 + 2274: 5,3 + 2278: 8,-4 + 2279: 7,-4 + 2280: 6,-4 + 2308: -5,-23 + 2309: -4,-23 + 2310: -3,-23 + 2311: -2,-23 + 2312: -1,-23 + 2314: -1,-21 + 2315: 0,-21 + 2391: 5,-4 + 2414: 0,3 + 3993: 7,-27 + 3994: 6,-27 + 3995: 5,-27 + 3996: 4,-27 + 4011: 7,-22 + 4012: 6,-22 + 4013: 5,-22 + 4014: 4,-22 + 4017: 2,-21 + 4022: 8,-22 - node: + angle: 6.283185307179586 rad color: '#D381C996' - id: ConcreteTrimCornerNe + id: BrickTileSteelLineS decals: - 42: -6,-8 - 43: -6,-8 - 44: -6,-8 - 61: 8,-25 + 4035: -5,-27 + 4036: -6,-27 + 4040: -10,-26 + 4050: -12,-19 + 4051: -11,-19 + 4061: -6,-20 - node: color: '#D381C996' - id: ConcreteTrimCornerNw + id: BrickTileSteelLineW decals: - 39: -5,-8 - 40: -5,-8 - 41: -5,-8 + 2281: -2,-4 + 2282: -2,-2 + 2283: -2,-3 + 2284: -2,-1 + 2291: -3,-21 + 2292: -3,-20 + 2293: -3,-19 + 2295: -2,-17 + 2296: -2,-16 + 2297: -2,-15 + 2298: -2,-14 + 2299: -2,-13 + 2300: -2,-12 + 2301: -2,-11 + 2302: -2,-10 + 2303: -2,-9 + 2304: -2,-8 + 2305: -2,-7 + 2306: -2,-6 + 2307: -2,-5 + 2397: 7,3 + 2398: 7,2 + 2411: -2,4 + 2412: -2,3 + 2418: 3,3 + 2419: 3,2 + 3997: 3,-26 + 4016: 3,-22 + 4018: 2,-20 - node: + angle: 6.283185307179586 rad color: '#D381C996' - id: ConcreteTrimCornerSe + id: BrickTileSteelLineW decals: - 48: -6,-7 - 49: -6,-7 - 50: -6,-7 - 62: 8,-26 + 4037: -7,-26 + 4052: -10,-20 + 4071: -10,-22 + 4076: -12,-24 - node: color: '#D381C996' - id: ConcreteTrimCornerSw + id: ConcreteTrimCornerNe decals: - 45: -5,-7 - 46: -5,-7 - 47: -5,-7 - 63: 4,-26 + 36: -6,-8 + 37: -6,-8 + 38: -6,-8 - node: color: '#D381C996' - id: ConcreteTrimInnerSw + id: ConcreteTrimCornerNw decals: - 55: -6,-20 + 33: -5,-8 + 34: -5,-8 + 35: -5,-8 - node: color: '#D381C996' - id: ConcreteTrimLineN + id: ConcreteTrimCornerSe decals: - 17: -9,-18 - 59: 6,-25 - 60: 7,-25 + 42: -6,-7 + 43: -6,-7 + 44: -6,-7 - node: color: '#D381C996' - id: ConcreteTrimLineS + id: ConcreteTrimCornerSw decals: - 65: 5,-26 - 66: 6,-26 - 67: 7,-26 + 39: -5,-7 + 40: -5,-7 + 41: -5,-7 - node: color: '#D381C996' id: ConcreteTrimLineW decals: - 38: -2,-5 - 64: 4,-25 + 32: -2,-5 - node: color: '#FF94FF43' id: DeliveryGreyscale decals: - 84: -11,-9 - 85: -10,-4 + 61: -11,-9 + 62: -10,-4 - node: color: '#D381C996' id: DirtHeavy decals: - 2403: -4,9 - 2404: -5,10 - 2405: -3,10 - 2406: -5,11 - 2407: -3,9 - 2408: -4,8 - 2625: 6,10 - 2626: 6,11 - 2627: 2,9 + 2234: -4,9 + 2235: -5,10 + 2236: -3,10 + 2237: -5,11 + 2238: -3,9 + 2239: -4,8 + 2454: 6,10 + 2455: 6,11 + 2456: 2,9 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 2524: -1,-4 - 2525: -2,-3 - 2526: 3,-3 - 2527: 7,-3 - 2528: 7,2 - 2529: 6,-1 - 2530: 8,-2 - 2531: 1,-1 - 2532: -5,4 - 2533: -3,7 - 2534: -5,9 - 2535: -5,8 - 2536: -4,8 - 2537: -1,7 - 2538: 4,7 - 2539: 2,9 - 2540: 6,11 - 2541: 6,7 - 2542: 2,7 - 2543: 4,3 - 2544: 4,4 - 2545: -6,-7 - 2546: -5,-9 - 2547: -5,-5 - 2548: -7,-5 - 2549: 2,11 - 2550: 2,-30 - 2551: -1,-30 - 2552: -1,-29 - 2553: -3,-31 - 2554: -5,-30 - 2595: 7,-21 - 2596: 2,-20 - 2597: -2,-20 - 2598: -3,-19 - 2599: -2,-12 - 2600: -1,-10 - 2601: -2,-16 - 2602: -5,-22 - 2603: -7,-23 - 2604: -6,-25 - 2605: -6,-27 - 2606: 8,-20 - 2607: 7,-22 - 2608: 11,-22 - 2609: 11,-23 - 2635: -2,4 - 2636: -1,5 - 2637: -4,9 - 2638: -4,10 + 2355: -1,-4 + 2356: -2,-3 + 2357: 3,-3 + 2358: 7,-3 + 2359: 7,2 + 2360: 6,-1 + 2361: 8,-2 + 2362: 1,-1 + 2363: -5,4 + 2364: -3,7 + 2365: -5,9 + 2366: -5,8 + 2367: -4,8 + 2368: -1,7 + 2369: 4,7 + 2370: 2,9 + 2371: 6,11 + 2372: 6,7 + 2373: 2,7 + 2374: 4,3 + 2375: 4,4 + 2376: -6,-7 + 2377: -5,-9 + 2378: 2,11 + 2379: 2,-30 + 2380: -1,-30 + 2381: -1,-29 + 2382: -3,-31 + 2383: -5,-30 + 2424: 7,-21 + 2425: 2,-20 + 2426: -2,-20 + 2427: -3,-19 + 2428: -2,-12 + 2429: -1,-10 + 2430: -2,-16 + 2431: -5,-22 + 2432: -7,-23 + 2433: -6,-25 + 2434: -6,-27 + 2435: 8,-20 + 2436: 7,-22 + 2437: 11,-22 + 2438: 11,-23 + 2464: -2,4 + 2465: -1,5 + 2466: -4,9 + 2467: -4,10 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 108: -1,-1 - 109: -2,-5 - 110: -2,-19 - 111: -1,-1 - 112: 5,0 - 113: 5,0 - 114: 3,0 - 157: 6,-26 - 158: 6,-26 - 159: 5,-26 - 160: 5,-25 - 161: 7,-25 - 162: 7,-26 - 163: 8,-26 - 164: 8,-25 - 165: 8,-25 - 166: 5,-25 - 167: 5,-24 - 168: 4,-24 - 169: 4,-24 - 170: 6,-25 + 85: -1,-1 + 86: -2,-5 + 87: -2,-19 + 88: -1,-1 + 89: 5,0 + 90: 5,0 + 91: 3,0 + 4077: 5,-25 + 4078: 6,-27 + 4079: 5,-27 + 4080: 6,-25 + 4081: 3,-24 + 4082: 8,-25 + 4083: 4,-27 + 4084: 0,-26 + 4085: 3,-21 + 4086: 8,-21 + 4087: 7,-21 + 4088: 4,-21 + 4089: -2,-21 + 4090: -1,-18 + 4091: -5,-19 + 4092: -7,-19 + 4093: -10,-19 + 4094: -11,-18 + 4095: -10,-20 + 4096: -2,-8 + 4097: -2,-6 - node: color: '#D381C996' id: DirtHeavyMonotile decals: - 2628: -5,-22 + 2457: -5,-22 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2629: -6,-22 - 2630: -5,-22 - 2631: -1,-12 - 2632: -2,-10 - 2633: 2,-3 - 2634: 7,1 + 2458: -6,-22 + 2459: -5,-22 + 2460: -1,-12 + 2461: -2,-10 + 2462: 2,-3 + 2463: 7,1 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 115: -4,-1 - 116: -4,-1 - 117: -5,-1 - 118: -6,-1 - 119: -6,-1 + 92: -5,-1 + 93: -6,-1 + 94: -6,-1 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtLight decals: - 129: -10,-24 - 130: -11,-25 - 131: -11,-26 - 132: -11,-25 - 133: -11,-24 - 134: -11,-24 - 135: -10,-23 - 136: -10,-22 - 137: -10,-22 - 138: -10,-23 - 139: -10,-24 - 140: -10,-25 - 141: -10,-26 - 142: -9,-26 - 143: -9,-20 - 144: -11,-19 - 145: -12,-19 - 146: -11,-18 - 147: -10,-18 - 148: -9,-19 - 149: 5,-21 - 150: 4,-20 - 151: 4,-20 - 152: 4,-25 - 153: 4,-25 - 154: 4,-24 - 155: 4,-26 - 156: 5,-26 + 104: -10,-24 + 105: -11,-25 + 106: -11,-26 + 107: -11,-25 + 108: -11,-24 + 109: -11,-24 + 110: -10,-23 + 111: -10,-22 + 112: -10,-22 + 113: -10,-23 + 114: -10,-24 + 115: -10,-25 + 116: -10,-26 + 117: -9,-26 + 118: -9,-19 + 119: 5,-21 + 120: 4,-20 + 121: 4,-20 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: DirtMedium decals: - 120: -5,3 - 121: -5,5 - 122: -6,5 - 123: -6,4 - 124: -1,2 - 125: -1,2 - 126: -1,4 - 127: -2,7 - 128: 0,7 + 95: -5,3 + 96: -5,5 + 97: -6,5 + 98: -6,4 + 99: -1,2 + 100: -1,2 + 101: -1,4 + 102: -2,7 + 103: 0,7 - node: zIndex: 1 angle: -4.71238898038469 rad id: FloorTechMaintDirectionalCorner decals: - 2757: -8,-12 - 2984: -8,-12 - 3211: -8,-12 - 3438: -8,-12 - 3650: -8,-12 - 3888: -8,-12 + 2586: -8,-12 + 2805: -8,-12 + 3024: -8,-12 + 3243: -8,-12 + 3447: -8,-12 + 3677: -8,-12 + 3892: -8,-12 + 4216: -8,-12 + 4431: -8,-12 - node: zIndex: 1 angle: -3.141592653589793 rad id: FloorTechMaintDirectionalCorner decals: - 2751: -8,-16 - 2978: -8,-16 - 3205: -8,-16 - 3432: -8,-16 - 3644: -8,-16 - 3882: -8,-16 + 2580: -8,-16 + 2799: -8,-16 + 3018: -8,-16 + 3237: -8,-16 + 3441: -8,-16 + 3671: -8,-16 + 3886: -8,-16 + 4210: -8,-16 + 4425: -8,-16 - node: zIndex: 1 angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalCorner decals: - 2766: -4,-16 - 2993: -4,-16 - 3220: -4,-16 - 3447: -4,-16 - 3659: -4,-16 - 3897: -4,-16 + 2595: -4,-16 + 2814: -4,-16 + 3033: -4,-16 + 3252: -4,-16 + 3456: -4,-16 + 3686: -4,-16 + 3901: -4,-16 + 4225: -4,-16 + 4440: -4,-16 - node: zIndex: 1 id: FloorTechMaintDirectionalCorner decals: - 2772: -4,-12 - 2999: -4,-12 - 3226: -4,-12 - 3453: -4,-12 - 3665: -4,-12 - 3903: -4,-12 + 2601: -4,-12 + 2820: -4,-12 + 3039: -4,-12 + 3258: -4,-12 + 3462: -4,-12 + 3692: -4,-12 + 3907: -4,-12 + 4231: -4,-12 + 4446: -4,-12 - node: angle: -4.71238898038469 rad id: FloorTechMaintDirectionalEdge decals: - 2750: -8,-16 - 2752: -8,-15 - 2753: -8,-14 - 2754: -8,-13 - 2756: -8,-12 - 2977: -8,-16 - 2979: -8,-15 - 2980: -8,-14 - 2981: -8,-13 - 2983: -8,-12 - 3204: -8,-16 - 3206: -8,-15 - 3207: -8,-14 - 3208: -8,-13 - 3210: -8,-12 - 3431: -8,-16 - 3433: -8,-15 - 3434: -8,-14 - 3435: -8,-13 - 3437: -8,-12 - 3643: -8,-16 - 3645: -8,-15 - 3646: -8,-14 - 3647: -8,-13 - 3649: -8,-12 - 3881: -8,-16 - 3883: -8,-15 - 3884: -8,-14 - 3885: -8,-13 - 3887: -8,-12 + 2579: -8,-16 + 2581: -8,-15 + 2582: -8,-14 + 2583: -8,-13 + 2585: -8,-12 + 2798: -8,-16 + 2800: -8,-15 + 2801: -8,-14 + 2802: -8,-13 + 2804: -8,-12 + 3017: -8,-16 + 3019: -8,-15 + 3020: -8,-14 + 3021: -8,-13 + 3023: -8,-12 + 3236: -8,-16 + 3238: -8,-15 + 3239: -8,-14 + 3240: -8,-13 + 3242: -8,-12 + 3440: -8,-16 + 3442: -8,-15 + 3443: -8,-14 + 3444: -8,-13 + 3446: -8,-12 + 3670: -8,-16 + 3672: -8,-15 + 3673: -8,-14 + 3674: -8,-13 + 3676: -8,-12 + 3885: -8,-16 + 3887: -8,-15 + 3888: -8,-14 + 3889: -8,-13 + 3891: -8,-12 + 4209: -8,-16 + 4211: -8,-15 + 4212: -8,-14 + 4213: -8,-13 + 4215: -8,-12 + 4424: -8,-16 + 4426: -8,-15 + 4427: -8,-14 + 4428: -8,-13 + 4430: -8,-12 - node: angle: -3.141592653589793 rad id: FloorTechMaintDirectionalEdge decals: - 2749: -8,-16 - 2758: -7,-16 - 2760: -6,-16 - 2762: -5,-16 - 2764: -4,-16 - 2976: -8,-16 - 2985: -7,-16 - 2987: -6,-16 - 2989: -5,-16 - 2991: -4,-16 - 3203: -8,-16 - 3212: -7,-16 - 3214: -6,-16 - 3216: -5,-16 - 3218: -4,-16 - 3430: -8,-16 - 3439: -7,-16 - 3441: -6,-16 - 3443: -5,-16 - 3445: -4,-16 - 3642: -8,-16 - 3651: -7,-16 - 3653: -6,-16 - 3655: -5,-16 - 3657: -4,-16 - 3880: -8,-16 - 3889: -7,-16 - 3891: -6,-16 - 3893: -5,-16 - 3895: -4,-16 + 2578: -8,-16 + 2587: -7,-16 + 2589: -6,-16 + 2591: -5,-16 + 2593: -4,-16 + 2797: -8,-16 + 2806: -7,-16 + 2808: -6,-16 + 2810: -5,-16 + 2812: -4,-16 + 3016: -8,-16 + 3025: -7,-16 + 3027: -6,-16 + 3029: -5,-16 + 3031: -4,-16 + 3235: -8,-16 + 3244: -7,-16 + 3246: -6,-16 + 3248: -5,-16 + 3250: -4,-16 + 3439: -8,-16 + 3448: -7,-16 + 3450: -6,-16 + 3452: -5,-16 + 3454: -4,-16 + 3669: -8,-16 + 3678: -7,-16 + 3680: -6,-16 + 3682: -5,-16 + 3684: -4,-16 + 3884: -8,-16 + 3893: -7,-16 + 3895: -6,-16 + 3897: -5,-16 + 3899: -4,-16 + 4208: -8,-16 + 4217: -7,-16 + 4219: -6,-16 + 4221: -5,-16 + 4223: -4,-16 + 4423: -8,-16 + 4432: -7,-16 + 4434: -6,-16 + 4436: -5,-16 + 4438: -4,-16 - node: angle: -1.5707963267948966 rad id: FloorTechMaintDirectionalEdge decals: - 2765: -4,-16 - 2767: -4,-15 - 2768: -4,-14 - 2769: -4,-13 - 2770: -4,-12 - 2992: -4,-16 - 2994: -4,-15 - 2995: -4,-14 - 2996: -4,-13 - 2997: -4,-12 - 3219: -4,-16 - 3221: -4,-15 - 3222: -4,-14 - 3223: -4,-13 - 3224: -4,-12 - 3446: -4,-16 - 3448: -4,-15 - 3449: -4,-14 - 3450: -4,-13 - 3451: -4,-12 - 3658: -4,-16 - 3660: -4,-15 - 3661: -4,-14 - 3662: -4,-13 - 3663: -4,-12 - 3896: -4,-16 - 3898: -4,-15 - 3899: -4,-14 - 3900: -4,-13 - 3901: -4,-12 + 2594: -4,-16 + 2596: -4,-15 + 2597: -4,-14 + 2598: -4,-13 + 2599: -4,-12 + 2813: -4,-16 + 2815: -4,-15 + 2816: -4,-14 + 2817: -4,-13 + 2818: -4,-12 + 3032: -4,-16 + 3034: -4,-15 + 3035: -4,-14 + 3036: -4,-13 + 3037: -4,-12 + 3251: -4,-16 + 3253: -4,-15 + 3254: -4,-14 + 3255: -4,-13 + 3256: -4,-12 + 3455: -4,-16 + 3457: -4,-15 + 3458: -4,-14 + 3459: -4,-13 + 3460: -4,-12 + 3685: -4,-16 + 3687: -4,-15 + 3688: -4,-14 + 3689: -4,-13 + 3690: -4,-12 + 3900: -4,-16 + 3902: -4,-15 + 3903: -4,-14 + 3904: -4,-13 + 3905: -4,-12 + 4224: -4,-16 + 4226: -4,-15 + 4227: -4,-14 + 4228: -4,-13 + 4229: -4,-12 + 4439: -4,-16 + 4441: -4,-15 + 4442: -4,-14 + 4443: -4,-13 + 4444: -4,-12 - node: id: FloorTechMaintDirectionalEdge decals: - 2755: -8,-12 - 2759: -7,-12 - 2761: -6,-12 - 2763: -5,-12 - 2771: -4,-12 - 2982: -8,-12 - 2986: -7,-12 - 2988: -6,-12 - 2990: -5,-12 - 2998: -4,-12 - 3209: -8,-12 - 3213: -7,-12 - 3215: -6,-12 - 3217: -5,-12 - 3225: -4,-12 - 3436: -8,-12 - 3440: -7,-12 - 3442: -6,-12 - 3444: -5,-12 - 3452: -4,-12 - 3648: -8,-12 - 3652: -7,-12 - 3654: -6,-12 - 3656: -5,-12 - 3664: -4,-12 - 3886: -8,-12 - 3890: -7,-12 - 3892: -6,-12 - 3894: -5,-12 - 3902: -4,-12 + 2584: -8,-12 + 2588: -7,-12 + 2590: -6,-12 + 2592: -5,-12 + 2600: -4,-12 + 2803: -8,-12 + 2807: -7,-12 + 2809: -6,-12 + 2811: -5,-12 + 2819: -4,-12 + 3022: -8,-12 + 3026: -7,-12 + 3028: -6,-12 + 3030: -5,-12 + 3038: -4,-12 + 3241: -8,-12 + 3245: -7,-12 + 3247: -6,-12 + 3249: -5,-12 + 3257: -4,-12 + 3445: -8,-12 + 3449: -7,-12 + 3451: -6,-12 + 3453: -5,-12 + 3461: -4,-12 + 3675: -8,-12 + 3679: -7,-12 + 3681: -6,-12 + 3683: -5,-12 + 3691: -4,-12 + 3890: -8,-12 + 3894: -7,-12 + 3896: -6,-12 + 3898: -5,-12 + 3906: -4,-12 + 4214: -8,-12 + 4218: -7,-12 + 4220: -6,-12 + 4222: -5,-12 + 4230: -4,-12 + 4429: -8,-12 + 4433: -7,-12 + 4435: -6,-12 + 4437: -5,-12 + 4445: -4,-12 - node: color: '#D381C996' id: FloorTechMaintDirectionalEdge decals: - 2610: -7,-12 - 2611: -6,-12 - 2612: -5,-12 + 2439: -7,-12 + 2440: -6,-12 + 2441: -5,-12 - node: zIndex: 1 id: LatticeCornerNE decals: - 183: 4,12 - 191: 4,13 - 199: 4,14 - 207: 4,15 - 215: 8,2 - 223: 8,3 - 261: -13,-22 - 266: -13,-20 - 269: -10,-28 - 274: -8,-32 - 279: 2,-27 - 290: 10,-27 - 298: 11,-26 - 316: 4,16 - 329: 4,12 - 337: 4,13 - 345: 4,14 - 353: 4,15 - 361: 8,2 - 369: 8,3 - 407: -13,-22 - 412: -13,-20 - 415: -10,-28 - 420: -8,-32 - 425: 2,-27 - 436: 10,-27 - 444: 11,-26 - 462: 4,16 - 475: 4,12 - 483: 4,13 - 491: 4,14 - 499: 4,15 - 507: 8,2 - 515: 8,3 - 553: -13,-22 - 558: -13,-20 - 561: -10,-28 - 566: -8,-32 - 571: 2,-27 - 582: 10,-27 - 590: 11,-26 - 608: 4,16 - 621: 4,12 - 629: 4,13 - 637: 4,14 - 645: 4,15 - 653: 8,2 - 661: 8,3 - 699: -13,-22 - 704: -13,-20 - 707: -10,-28 - 712: -8,-32 - 717: 2,-27 - 728: 10,-27 - 736: 11,-26 - 754: 4,16 - 767: 4,12 - 775: 4,13 - 783: 4,14 - 791: 4,15 - 799: 8,2 - 807: 8,3 - 845: -13,-22 - 850: -13,-20 - 853: -10,-28 - 858: -8,-32 - 863: 2,-27 - 874: 10,-27 - 882: 11,-26 - 900: 4,16 - 913: 4,12 - 921: 4,13 - 929: 4,14 - 937: 4,15 - 945: 8,2 - 953: 8,3 - 991: -13,-22 - 996: -13,-20 - 999: -10,-28 - 1004: -8,-32 - 1009: 2,-27 - 1020: 10,-27 - 1028: 11,-26 - 1046: 4,16 - 1059: 4,12 - 1067: 4,13 - 1075: 4,14 - 1083: 4,15 - 1091: 8,2 - 1099: 8,3 - 1137: -13,-22 - 1142: -13,-20 - 1145: -10,-28 - 1150: -8,-32 - 1155: 2,-27 - 1166: 10,-27 - 1174: 11,-26 - 1192: 4,16 - 1205: 4,12 - 1213: 4,13 - 1221: 4,14 - 1229: 4,15 - 1237: 8,2 - 1245: 8,3 - 1283: -13,-22 - 1288: -13,-20 - 1291: -10,-28 - 1296: -8,-32 - 1301: 2,-27 - 1312: 10,-27 - 1320: 11,-26 - 1338: 4,16 - 1351: 4,12 - 1359: 4,13 - 1367: 4,14 - 1375: 4,15 - 1383: 8,2 - 1391: 8,3 - 1429: -13,-22 - 1434: -13,-20 - 1437: -10,-28 - 1442: -8,-32 - 1447: 2,-27 - 1458: 10,-27 - 1466: 11,-26 - 1484: 4,16 - 1497: 4,12 - 1505: 4,13 - 1513: 4,14 - 1521: 4,15 - 1529: 8,2 - 1537: 8,3 - 1575: -13,-22 - 1580: -13,-20 - 1583: -10,-28 - 1588: -8,-32 - 1593: 2,-27 - 1604: 10,-27 - 1612: 11,-26 - 1630: 4,16 - 1643: 4,12 - 1651: 4,13 - 1659: 4,14 - 1667: 4,15 - 1675: 8,2 - 1683: 8,3 - 1721: -13,-22 - 1726: -13,-20 - 1729: -10,-28 - 1736: 2,-27 - 1744: 10,-27 - 1752: 11,-26 - 1760: 4,16 - 1773: 11,-20 - 1790: -8,-32 - 1793: -9,-30 - 1806: -10,-5 - 1811: -10,-6 - 1819: -10,-8 - 1827: -10,-7 - 1832: -8,7 - 1840: 4,12 - 1848: 4,13 - 1856: 4,14 - 1864: 4,15 - 1872: 8,2 - 1880: 8,3 - 1921: -10,-8 - 1929: -10,-7 - 1934: -10,-6 - 1939: -10,-5 - 1944: -8,7 - 1952: -13,-22 - 1957: -13,-20 - 1960: -10,-28 - 1965: -9,-30 - 1968: -8,-32 - 1973: 2,-27 - 1987: 10,-27 - 1995: 11,-26 - 2003: 11,-20 - 2024: 4,16 - 2037: 4,12 - 2045: 4,13 - 2053: 4,14 - 2061: 4,15 - 2069: 8,2 - 2077: 8,3 - 2118: -10,-8 - 2126: -10,-7 - 2131: -10,-6 - 2136: -10,-5 - 2141: -8,7 - 2149: -13,-22 - 2154: -13,-20 - 2157: -10,-28 - 2162: -9,-30 - 2165: -8,-32 - 2170: 2,-27 - 2184: 10,-27 - 2192: 11,-26 - 2200: 11,-20 - 2221: 4,16 - 2234: 4,12 - 2242: 4,13 - 2250: 4,14 - 2258: 4,15 - 2289: -10,-8 - 2297: -10,-7 - 2302: -10,-6 - 2307: -10,-5 - 2312: -8,7 - 2320: -13,-22 - 2325: -13,-20 - 2328: -10,-28 - 2333: -9,-30 - 2338: 2,-27 - 2352: 10,-27 - 2360: 11,-26 - 2368: 11,-20 - 2389: 4,16 - 2429: 8,3 - 2437: 8,2 - 2557: -8,-32 - 2643: 4,12 - 2651: 4,13 - 2659: 4,14 - 2667: 4,15 - 2675: 8,2 - 2683: 8,3 - 2730: -10,-8 - 2738: -10,-7 - 2743: -10,-6 - 2748: -10,-5 - 2777: -8,7 - 2785: -13,-22 - 2790: -13,-20 - 2793: -10,-28 - 2798: -9,-30 - 2801: -8,-32 - 2806: 2,-27 - 2820: 10,-27 - 2828: 11,-26 - 2836: 11,-20 - 2857: 4,16 - 2870: 4,12 - 2878: 4,13 - 2886: 4,14 - 2894: 4,15 - 2902: 8,2 - 2910: 8,3 - 2957: -10,-8 - 2965: -10,-7 - 2970: -10,-6 - 2975: -10,-5 - 3004: -8,7 - 3012: -13,-22 - 3017: -13,-20 - 3020: -10,-28 - 3025: -9,-30 - 3028: -8,-32 - 3033: 2,-27 - 3047: 10,-27 - 3055: 11,-26 - 3063: 11,-20 - 3084: 4,16 - 3097: 4,12 - 3105: 4,13 - 3113: 4,14 - 3121: 4,15 - 3129: 8,2 - 3137: 8,3 - 3184: -10,-8 - 3192: -10,-7 - 3197: -10,-6 - 3202: -10,-5 - 3231: -8,7 - 3239: -13,-22 - 3244: -13,-20 - 3247: -10,-28 - 3252: -9,-30 - 3255: -8,-32 - 3260: 2,-27 - 3274: 10,-27 - 3282: 11,-26 - 3290: 11,-20 - 3311: 4,16 - 3324: 4,12 - 3332: 4,13 - 3340: 4,14 - 3348: 4,15 - 3356: 8,2 - 3364: 8,3 - 3411: -10,-8 - 3419: -10,-7 - 3424: -10,-6 - 3429: -10,-5 - 3458: -8,7 - 3466: -13,-22 - 3471: -13,-20 - 3474: -10,-28 - 3479: -9,-30 - 3482: -8,-32 - 3487: 2,-27 - 3501: 10,-27 - 3509: 11,-26 - 3517: 11,-20 - 3538: 4,16 - 3551: 4,12 - 3559: 4,13 - 3567: 4,14 - 3575: 4,15 - 3583: 8,2 - 3591: 8,3 - 3638: -10,-8 - 3670: -8,7 - 3676: -10,-28 - 3681: -9,-30 - 3684: -8,-32 - 3689: 2,-27 - 3703: 10,-27 - 3711: 11,-26 - 3719: 11,-20 - 3740: 4,16 - 3753: -10,-6 - 3758: -10,-7 - 3763: -10,-5 - 3766: -13,-20 - 3774: 4,12 - 3782: 4,13 - 3790: 4,14 - 3798: 4,15 - 3806: 8,2 - 3814: 8,3 - 3861: -10,-8 - 3869: -10,-7 - 3874: -10,-6 - 3879: -10,-5 - 3908: -8,7 - 3917: -13,-20 - 3920: -10,-28 - 3925: -9,-30 - 3928: -8,-32 - 3933: 2,-27 - 3947: 10,-27 - 3955: 11,-26 - 3963: 11,-20 - 3984: 4,16 + 126: 4,12 + 134: 4,13 + 142: 4,14 + 150: 4,15 + 158: 8,2 + 166: 8,3 + 204: -13,-22 + 209: -13,-20 + 212: -10,-28 + 217: -8,-32 + 225: 10,-27 + 233: 11,-26 + 251: 4,16 + 264: 4,12 + 272: 4,13 + 280: 4,14 + 288: 4,15 + 296: 8,2 + 304: 8,3 + 342: -13,-22 + 347: -13,-20 + 350: -10,-28 + 355: -8,-32 + 363: 10,-27 + 371: 11,-26 + 389: 4,16 + 402: 4,12 + 410: 4,13 + 418: 4,14 + 426: 4,15 + 434: 8,2 + 442: 8,3 + 480: -13,-22 + 485: -13,-20 + 488: -10,-28 + 493: -8,-32 + 501: 10,-27 + 509: 11,-26 + 527: 4,16 + 540: 4,12 + 548: 4,13 + 556: 4,14 + 564: 4,15 + 572: 8,2 + 580: 8,3 + 618: -13,-22 + 623: -13,-20 + 626: -10,-28 + 631: -8,-32 + 639: 10,-27 + 647: 11,-26 + 665: 4,16 + 678: 4,12 + 686: 4,13 + 694: 4,14 + 702: 4,15 + 710: 8,2 + 718: 8,3 + 756: -13,-22 + 761: -13,-20 + 764: -10,-28 + 769: -8,-32 + 777: 10,-27 + 785: 11,-26 + 803: 4,16 + 816: 4,12 + 824: 4,13 + 832: 4,14 + 840: 4,15 + 848: 8,2 + 856: 8,3 + 894: -13,-22 + 899: -13,-20 + 902: -10,-28 + 907: -8,-32 + 915: 10,-27 + 923: 11,-26 + 941: 4,16 + 954: 4,12 + 962: 4,13 + 970: 4,14 + 978: 4,15 + 986: 8,2 + 994: 8,3 + 1032: -13,-22 + 1037: -13,-20 + 1040: -10,-28 + 1045: -8,-32 + 1053: 10,-27 + 1061: 11,-26 + 1079: 4,16 + 1092: 4,12 + 1100: 4,13 + 1108: 4,14 + 1116: 4,15 + 1124: 8,2 + 1132: 8,3 + 1170: -13,-22 + 1175: -13,-20 + 1178: -10,-28 + 1183: -8,-32 + 1191: 10,-27 + 1199: 11,-26 + 1217: 4,16 + 1230: 4,12 + 1238: 4,13 + 1246: 4,14 + 1254: 4,15 + 1262: 8,2 + 1270: 8,3 + 1308: -13,-22 + 1313: -13,-20 + 1316: -10,-28 + 1321: -8,-32 + 1329: 10,-27 + 1337: 11,-26 + 1355: 4,16 + 1368: 4,12 + 1376: 4,13 + 1384: 4,14 + 1392: 4,15 + 1400: 8,2 + 1408: 8,3 + 1446: -13,-22 + 1451: -13,-20 + 1454: -10,-28 + 1459: -8,-32 + 1467: 10,-27 + 1475: 11,-26 + 1493: 4,16 + 1506: 4,12 + 1514: 4,13 + 1522: 4,14 + 1530: 4,15 + 1538: 8,2 + 1546: 8,3 + 1584: -13,-22 + 1589: -13,-20 + 1592: -10,-28 + 1599: 10,-27 + 1607: 11,-26 + 1615: 4,16 + 1628: 11,-20 + 1645: -8,-32 + 1648: -9,-30 + 1661: -10,-5 + 1666: -10,-6 + 1674: -10,-8 + 1682: -10,-7 + 1687: -8,7 + 1695: 4,12 + 1703: 4,13 + 1711: 4,14 + 1719: 4,15 + 1727: 8,2 + 1735: 8,3 + 1776: -10,-8 + 1784: -10,-7 + 1789: -10,-6 + 1794: -10,-5 + 1799: -8,7 + 1807: -13,-22 + 1812: -13,-20 + 1815: -10,-28 + 1820: -9,-30 + 1823: -8,-32 + 1834: 10,-27 + 1842: 11,-26 + 1850: 11,-20 + 1871: 4,16 + 1884: 4,12 + 1892: 4,13 + 1900: 4,14 + 1908: 4,15 + 1916: 8,2 + 1924: 8,3 + 1965: -10,-8 + 1973: -10,-7 + 1978: -10,-6 + 1983: -10,-5 + 1988: -8,7 + 1996: -13,-22 + 2001: -13,-20 + 2004: -10,-28 + 2009: -9,-30 + 2012: -8,-32 + 2023: 10,-27 + 2031: 11,-26 + 2039: 11,-20 + 2060: 4,16 + 2073: 4,12 + 2081: 4,13 + 2089: 4,14 + 2097: 4,15 + 2128: -10,-8 + 2136: -10,-7 + 2141: -10,-6 + 2146: -10,-5 + 2151: -8,7 + 2159: -13,-22 + 2164: -13,-20 + 2167: -10,-28 + 2172: -9,-30 + 2183: 10,-27 + 2191: 11,-26 + 2199: 11,-20 + 2220: 4,16 + 2260: 8,3 + 2268: 8,2 + 2386: -8,-32 + 2472: 4,12 + 2480: 4,13 + 2488: 4,14 + 2496: 4,15 + 2504: 8,2 + 2512: 8,3 + 2559: -10,-8 + 2567: -10,-7 + 2572: -10,-6 + 2577: -10,-5 + 2606: -8,7 + 2614: -13,-22 + 2619: -13,-20 + 2622: -10,-28 + 2627: -9,-30 + 2630: -8,-32 + 2641: 10,-27 + 2649: 11,-26 + 2657: 11,-20 + 2678: 4,16 + 2691: 4,12 + 2699: 4,13 + 2707: 4,14 + 2715: 4,15 + 2723: 8,2 + 2731: 8,3 + 2778: -10,-8 + 2786: -10,-7 + 2791: -10,-6 + 2796: -10,-5 + 2825: -8,7 + 2833: -13,-22 + 2838: -13,-20 + 2841: -10,-28 + 2846: -9,-30 + 2849: -8,-32 + 2860: 10,-27 + 2868: 11,-26 + 2876: 11,-20 + 2897: 4,16 + 2910: 4,12 + 2918: 4,13 + 2926: 4,14 + 2934: 4,15 + 2942: 8,2 + 2950: 8,3 + 2997: -10,-8 + 3005: -10,-7 + 3010: -10,-6 + 3015: -10,-5 + 3044: -8,7 + 3052: -13,-22 + 3057: -13,-20 + 3060: -10,-28 + 3065: -9,-30 + 3068: -8,-32 + 3079: 10,-27 + 3087: 11,-26 + 3095: 11,-20 + 3116: 4,16 + 3129: 4,12 + 3137: 4,13 + 3145: 4,14 + 3153: 4,15 + 3161: 8,2 + 3169: 8,3 + 3216: -10,-8 + 3224: -10,-7 + 3229: -10,-6 + 3234: -10,-5 + 3263: -8,7 + 3271: -13,-22 + 3276: -13,-20 + 3279: -10,-28 + 3284: -9,-30 + 3287: -8,-32 + 3298: 10,-27 + 3306: 11,-26 + 3314: 11,-20 + 3335: 4,16 + 3348: 4,12 + 3356: 4,13 + 3364: 4,14 + 3372: 4,15 + 3380: 8,2 + 3388: 8,3 + 3435: -10,-8 + 3467: -8,7 + 3473: -10,-28 + 3478: -9,-30 + 3481: -8,-32 + 3492: 10,-27 + 3500: 11,-26 + 3508: 11,-20 + 3529: 4,16 + 3542: -10,-6 + 3547: -10,-7 + 3552: -10,-5 + 3555: -13,-20 + 3563: 4,12 + 3571: 4,13 + 3579: 4,14 + 3587: 4,15 + 3595: 8,2 + 3603: 8,3 + 3650: -10,-8 + 3658: -10,-7 + 3663: -10,-6 + 3668: -10,-5 + 3697: -8,7 + 3706: -13,-20 + 3709: -10,-28 + 3714: -9,-30 + 3717: -8,-32 + 3728: 10,-27 + 3736: 11,-26 + 3744: 11,-20 + 3765: 4,16 + 3778: 4,12 + 3786: 4,13 + 3794: 4,14 + 3802: 4,15 + 3810: 8,2 + 3818: 8,3 + 3865: -10,-8 + 3873: -10,-7 + 3878: -10,-6 + 3883: -10,-5 + 3912: -8,7 + 3921: -13,-20 + 3924: -10,-28 + 3929: -9,-30 + 3932: -8,-32 + 3943: 10,-27 + 3951: 11,-26 + 3959: 11,-20 + 3980: 4,16 + 4102: 4,12 + 4110: 4,13 + 4118: 4,14 + 4126: 4,15 + 4134: 8,2 + 4142: 8,3 + 4189: -10,-8 + 4197: -10,-7 + 4202: -10,-6 + 4207: -10,-5 + 4236: -8,7 + 4245: -13,-20 + 4248: -10,-28 + 4253: -9,-30 + 4256: -8,-32 + 4267: 10,-27 + 4275: 11,-26 + 4283: 11,-20 + 4304: 4,16 + 4317: 4,12 + 4325: 4,13 + 4333: 4,14 + 4341: 4,15 + 4349: 8,2 + 4357: 8,3 + 4404: -10,-8 + 4412: -10,-7 + 4417: -10,-6 + 4422: -10,-5 + 4451: -8,7 + 4460: -13,-20 + 4463: -10,-28 + 4468: -9,-30 + 4471: -8,-32 + 4482: 10,-27 + 4490: 11,-26 + 4498: 11,-20 + 4519: 4,16 - node: zIndex: 1 id: LatticeCornerNW decals: - 186: 4,12 - 194: 4,13 - 202: 4,14 - 210: 4,15 - 218: 8,2 - 226: 8,3 - 231: 9,3 - 236: 9,4 - 241: 2,-13 - 246: 2,-12 - 251: 2,-11 - 256: 2,-10 - 271: -10,-28 - 282: 2,-27 - 285: 8,-32 - 293: 10,-27 - 301: 11,-26 - 306: 11,-20 - 311: 11,-19 - 319: 4,16 - 332: 4,12 - 340: 4,13 - 348: 4,14 - 356: 4,15 - 364: 8,2 - 372: 8,3 - 377: 9,3 - 382: 9,4 - 387: 2,-13 - 392: 2,-12 - 397: 2,-11 - 402: 2,-10 - 417: -10,-28 - 428: 2,-27 - 431: 8,-32 - 439: 10,-27 - 447: 11,-26 - 452: 11,-20 - 457: 11,-19 - 465: 4,16 - 478: 4,12 - 486: 4,13 - 494: 4,14 - 502: 4,15 - 510: 8,2 - 518: 8,3 - 523: 9,3 - 528: 9,4 - 533: 2,-13 - 538: 2,-12 - 543: 2,-11 - 548: 2,-10 - 563: -10,-28 - 574: 2,-27 - 577: 8,-32 - 585: 10,-27 - 593: 11,-26 - 598: 11,-20 - 603: 11,-19 - 611: 4,16 - 624: 4,12 - 632: 4,13 - 640: 4,14 - 648: 4,15 - 656: 8,2 - 664: 8,3 - 669: 9,3 - 674: 9,4 - 679: 2,-13 - 684: 2,-12 - 689: 2,-11 - 694: 2,-10 - 709: -10,-28 - 720: 2,-27 - 723: 8,-32 - 731: 10,-27 - 739: 11,-26 - 744: 11,-20 - 749: 11,-19 - 757: 4,16 - 770: 4,12 - 778: 4,13 - 786: 4,14 - 794: 4,15 - 802: 8,2 - 810: 8,3 - 815: 9,3 - 820: 9,4 - 825: 2,-13 - 830: 2,-12 - 835: 2,-11 - 840: 2,-10 - 855: -10,-28 - 866: 2,-27 - 869: 8,-32 - 877: 10,-27 - 885: 11,-26 - 890: 11,-20 - 895: 11,-19 - 903: 4,16 - 916: 4,12 - 924: 4,13 - 932: 4,14 - 940: 4,15 - 948: 8,2 - 956: 8,3 - 961: 9,3 - 966: 9,4 - 971: 2,-13 - 976: 2,-12 - 981: 2,-11 - 986: 2,-10 - 1001: -10,-28 - 1012: 2,-27 - 1015: 8,-32 - 1023: 10,-27 - 1031: 11,-26 - 1036: 11,-20 - 1041: 11,-19 - 1049: 4,16 - 1062: 4,12 - 1070: 4,13 - 1078: 4,14 - 1086: 4,15 - 1094: 8,2 - 1102: 8,3 - 1107: 9,3 - 1112: 9,4 - 1117: 2,-13 - 1122: 2,-12 - 1127: 2,-11 - 1132: 2,-10 - 1147: -10,-28 - 1158: 2,-27 - 1161: 8,-32 - 1169: 10,-27 - 1177: 11,-26 - 1182: 11,-20 - 1187: 11,-19 - 1195: 4,16 - 1208: 4,12 - 1216: 4,13 - 1224: 4,14 - 1232: 4,15 - 1240: 8,2 - 1248: 8,3 - 1253: 9,3 - 1258: 9,4 - 1263: 2,-13 - 1268: 2,-12 - 1273: 2,-11 - 1278: 2,-10 - 1293: -10,-28 - 1304: 2,-27 - 1307: 8,-32 - 1315: 10,-27 - 1323: 11,-26 - 1328: 11,-20 - 1333: 11,-19 - 1341: 4,16 - 1354: 4,12 - 1362: 4,13 - 1370: 4,14 - 1378: 4,15 - 1386: 8,2 - 1394: 8,3 - 1399: 9,3 - 1404: 9,4 - 1409: 2,-13 - 1414: 2,-12 - 1419: 2,-11 - 1424: 2,-10 - 1439: -10,-28 - 1450: 2,-27 - 1453: 8,-32 - 1461: 10,-27 - 1469: 11,-26 - 1474: 11,-20 - 1479: 11,-19 - 1487: 4,16 - 1500: 4,12 - 1508: 4,13 - 1516: 4,14 - 1524: 4,15 - 1532: 8,2 - 1540: 8,3 - 1545: 9,3 - 1550: 9,4 - 1555: 2,-13 - 1560: 2,-12 - 1565: 2,-11 - 1570: 2,-10 - 1585: -10,-28 - 1596: 2,-27 - 1599: 8,-32 - 1607: 10,-27 - 1615: 11,-26 - 1620: 11,-20 - 1625: 11,-19 - 1633: 4,16 - 1646: 4,12 - 1654: 4,13 - 1662: 4,14 - 1670: 4,15 - 1678: 8,2 - 1686: 8,3 - 1691: 9,3 - 1696: 9,4 - 1701: 2,-13 - 1706: 2,-12 - 1711: 2,-11 - 1716: 2,-10 - 1731: -10,-28 - 1739: 2,-27 - 1747: 10,-27 - 1755: 11,-26 - 1763: 4,16 - 1776: 11,-20 - 1781: 11,-19 - 1784: 8,-32 - 1787: 9,-30 - 1822: -10,-8 - 1843: 4,12 - 1851: 4,13 - 1859: 4,14 - 1867: 4,15 - 1875: 8,2 - 1883: 8,3 - 1888: 9,3 - 1893: 9,4 - 1898: 2,-13 - 1903: 2,-12 - 1908: 2,-11 - 1913: 2,-10 - 1924: -10,-8 - 1962: -10,-28 - 1976: 2,-27 - 1979: 8,-32 - 1982: 9,-30 - 1990: 10,-27 - 1998: 11,-26 - 2006: 11,-20 - 2011: 11,-19 - 2027: 4,16 - 2040: 4,12 - 2048: 4,13 - 2056: 4,14 - 2064: 4,15 - 2072: 8,2 - 2080: 8,3 - 2085: 9,3 - 2090: 9,4 - 2095: 2,-13 - 2100: 2,-12 - 2105: 2,-11 - 2110: 2,-10 - 2121: -10,-8 - 2159: -10,-28 - 2173: 2,-27 - 2176: 8,-32 - 2179: 9,-30 - 2187: 10,-27 - 2195: 11,-26 - 2203: 11,-20 - 2208: 11,-19 - 2224: 4,16 - 2237: 4,12 - 2245: 4,13 - 2253: 4,14 - 2261: 4,15 - 2266: 2,-13 - 2271: 2,-12 - 2276: 2,-11 - 2281: 2,-10 - 2292: -10,-8 - 2330: -10,-28 - 2341: 2,-27 - 2344: 8,-32 - 2347: 9,-30 - 2355: 10,-27 - 2363: 11,-26 - 2371: 11,-20 - 2376: 11,-19 - 2392: 4,16 - 2411: 10,-5 - 2419: 9,4 - 2424: 9,3 - 2432: 8,3 - 2440: 8,2 - 2646: 4,12 - 2654: 4,13 - 2662: 4,14 - 2670: 4,15 - 2678: 8,2 - 2686: 8,3 - 2691: 9,3 - 2696: 9,4 - 2701: 2,-13 - 2706: 2,-12 - 2711: 2,-11 - 2716: 2,-10 - 2719: 10,-5 - 2733: -10,-8 - 2795: -10,-28 - 2809: 2,-27 - 2812: 8,-32 - 2815: 9,-30 - 2823: 10,-27 - 2831: 11,-26 - 2839: 11,-20 - 2844: 11,-19 - 2860: 4,16 - 2873: 4,12 - 2881: 4,13 - 2889: 4,14 - 2897: 4,15 - 2905: 8,2 - 2913: 8,3 - 2918: 9,3 - 2923: 9,4 - 2928: 2,-13 - 2933: 2,-12 - 2938: 2,-11 - 2943: 2,-10 - 2946: 10,-5 - 2960: -10,-8 - 3022: -10,-28 - 3036: 2,-27 - 3039: 8,-32 - 3042: 9,-30 - 3050: 10,-27 - 3058: 11,-26 - 3066: 11,-20 - 3071: 11,-19 - 3087: 4,16 - 3100: 4,12 - 3108: 4,13 - 3116: 4,14 - 3124: 4,15 - 3132: 8,2 - 3140: 8,3 - 3145: 9,3 - 3150: 9,4 - 3155: 2,-13 - 3160: 2,-12 - 3165: 2,-11 - 3170: 2,-10 - 3173: 10,-5 - 3187: -10,-8 - 3249: -10,-28 - 3263: 2,-27 - 3266: 8,-32 - 3269: 9,-30 - 3277: 10,-27 - 3285: 11,-26 - 3293: 11,-20 - 3298: 11,-19 - 3314: 4,16 - 3327: 4,12 - 3335: 4,13 - 3343: 4,14 - 3351: 4,15 - 3359: 8,2 - 3367: 8,3 - 3372: 9,3 - 3377: 9,4 - 3382: 2,-13 - 3387: 2,-12 - 3392: 2,-11 - 3397: 2,-10 - 3400: 10,-5 - 3414: -10,-8 - 3476: -10,-28 - 3490: 2,-27 - 3493: 8,-32 - 3496: 9,-30 - 3504: 10,-27 - 3512: 11,-26 - 3520: 11,-20 - 3525: 11,-19 - 3541: 4,16 - 3554: 4,12 - 3562: 4,13 - 3570: 4,14 - 3578: 4,15 - 3586: 8,2 - 3594: 8,3 - 3599: 9,3 - 3604: 9,4 - 3609: 2,-13 - 3614: 2,-12 - 3619: 2,-11 - 3624: 2,-10 - 3627: 10,-5 - 3641: -10,-8 - 3678: -10,-28 - 3692: 2,-27 - 3695: 8,-32 - 3698: 9,-30 - 3706: 10,-27 - 3714: 11,-26 - 3722: 11,-20 - 3727: 11,-19 - 3743: 4,16 - 3777: 4,12 - 3785: 4,13 - 3793: 4,14 - 3801: 4,15 - 3809: 8,2 - 3817: 8,3 - 3822: 9,3 - 3827: 9,4 - 3832: 2,-13 - 3837: 2,-12 - 3842: 2,-11 - 3847: 2,-10 - 3850: 10,-5 - 3864: -10,-8 - 3922: -10,-28 - 3936: 2,-27 - 3939: 8,-32 - 3942: 9,-30 - 3950: 10,-27 - 3958: 11,-26 - 3966: 11,-20 - 3971: 11,-19 - 3987: 4,16 - - node: - zIndex: 1 - id: LatticeCornerSE - decals: - 181: 4,12 - 189: 4,13 - 197: 4,14 - 205: 4,15 - 213: 8,2 - 221: 8,3 - 259: -13,-22 - 264: -13,-20 - 277: 2,-27 - 288: 10,-27 - 296: 11,-26 - 314: 4,16 - 322: 4,17 - 327: 4,12 - 335: 4,13 - 343: 4,14 - 351: 4,15 - 359: 8,2 - 367: 8,3 - 405: -13,-22 - 410: -13,-20 - 423: 2,-27 - 434: 10,-27 - 442: 11,-26 - 460: 4,16 - 468: 4,17 - 473: 4,12 - 481: 4,13 - 489: 4,14 - 497: 4,15 - 505: 8,2 - 513: 8,3 - 551: -13,-22 - 556: -13,-20 - 569: 2,-27 - 580: 10,-27 - 588: 11,-26 - 606: 4,16 - 614: 4,17 - 619: 4,12 - 627: 4,13 - 635: 4,14 - 643: 4,15 - 651: 8,2 - 659: 8,3 - 697: -13,-22 - 702: -13,-20 - 715: 2,-27 - 726: 10,-27 - 734: 11,-26 - 752: 4,16 - 760: 4,17 - 765: 4,12 - 773: 4,13 - 781: 4,14 - 789: 4,15 - 797: 8,2 - 805: 8,3 - 843: -13,-22 - 848: -13,-20 - 861: 2,-27 - 872: 10,-27 - 880: 11,-26 - 898: 4,16 - 906: 4,17 - 911: 4,12 - 919: 4,13 - 927: 4,14 - 935: 4,15 - 943: 8,2 - 951: 8,3 - 989: -13,-22 - 994: -13,-20 - 1007: 2,-27 - 1018: 10,-27 - 1026: 11,-26 - 1044: 4,16 - 1052: 4,17 - 1057: 4,12 - 1065: 4,13 - 1073: 4,14 - 1081: 4,15 - 1089: 8,2 - 1097: 8,3 - 1135: -13,-22 - 1140: -13,-20 - 1153: 2,-27 - 1164: 10,-27 - 1172: 11,-26 - 1190: 4,16 - 1198: 4,17 - 1203: 4,12 - 1211: 4,13 - 1219: 4,14 - 1227: 4,15 - 1235: 8,2 - 1243: 8,3 - 1281: -13,-22 - 1286: -13,-20 - 1299: 2,-27 - 1310: 10,-27 - 1318: 11,-26 - 1336: 4,16 - 1344: 4,17 - 1349: 4,12 - 1357: 4,13 - 1365: 4,14 - 1373: 4,15 - 1381: 8,2 - 1389: 8,3 - 1427: -13,-22 - 1432: -13,-20 - 1445: 2,-27 - 1456: 10,-27 - 1464: 11,-26 - 1482: 4,16 - 1490: 4,17 - 1495: 4,12 - 1503: 4,13 - 1511: 4,14 - 1519: 4,15 - 1527: 8,2 - 1535: 8,3 - 1573: -13,-22 - 1578: -13,-20 - 1591: 2,-27 + 129: 4,12 + 137: 4,13 + 145: 4,14 + 153: 4,15 + 161: 8,2 + 169: 8,3 + 174: 9,3 + 179: 9,4 + 184: 2,-13 + 189: 2,-12 + 194: 2,-11 + 199: 2,-10 + 214: -10,-28 + 220: 8,-32 + 228: 10,-27 + 236: 11,-26 + 241: 11,-20 + 246: 11,-19 + 254: 4,16 + 267: 4,12 + 275: 4,13 + 283: 4,14 + 291: 4,15 + 299: 8,2 + 307: 8,3 + 312: 9,3 + 317: 9,4 + 322: 2,-13 + 327: 2,-12 + 332: 2,-11 + 337: 2,-10 + 352: -10,-28 + 358: 8,-32 + 366: 10,-27 + 374: 11,-26 + 379: 11,-20 + 384: 11,-19 + 392: 4,16 + 405: 4,12 + 413: 4,13 + 421: 4,14 + 429: 4,15 + 437: 8,2 + 445: 8,3 + 450: 9,3 + 455: 9,4 + 460: 2,-13 + 465: 2,-12 + 470: 2,-11 + 475: 2,-10 + 490: -10,-28 + 496: 8,-32 + 504: 10,-27 + 512: 11,-26 + 517: 11,-20 + 522: 11,-19 + 530: 4,16 + 543: 4,12 + 551: 4,13 + 559: 4,14 + 567: 4,15 + 575: 8,2 + 583: 8,3 + 588: 9,3 + 593: 9,4 + 598: 2,-13 + 603: 2,-12 + 608: 2,-11 + 613: 2,-10 + 628: -10,-28 + 634: 8,-32 + 642: 10,-27 + 650: 11,-26 + 655: 11,-20 + 660: 11,-19 + 668: 4,16 + 681: 4,12 + 689: 4,13 + 697: 4,14 + 705: 4,15 + 713: 8,2 + 721: 8,3 + 726: 9,3 + 731: 9,4 + 736: 2,-13 + 741: 2,-12 + 746: 2,-11 + 751: 2,-10 + 766: -10,-28 + 772: 8,-32 + 780: 10,-27 + 788: 11,-26 + 793: 11,-20 + 798: 11,-19 + 806: 4,16 + 819: 4,12 + 827: 4,13 + 835: 4,14 + 843: 4,15 + 851: 8,2 + 859: 8,3 + 864: 9,3 + 869: 9,4 + 874: 2,-13 + 879: 2,-12 + 884: 2,-11 + 889: 2,-10 + 904: -10,-28 + 910: 8,-32 + 918: 10,-27 + 926: 11,-26 + 931: 11,-20 + 936: 11,-19 + 944: 4,16 + 957: 4,12 + 965: 4,13 + 973: 4,14 + 981: 4,15 + 989: 8,2 + 997: 8,3 + 1002: 9,3 + 1007: 9,4 + 1012: 2,-13 + 1017: 2,-12 + 1022: 2,-11 + 1027: 2,-10 + 1042: -10,-28 + 1048: 8,-32 + 1056: 10,-27 + 1064: 11,-26 + 1069: 11,-20 + 1074: 11,-19 + 1082: 4,16 + 1095: 4,12 + 1103: 4,13 + 1111: 4,14 + 1119: 4,15 + 1127: 8,2 + 1135: 8,3 + 1140: 9,3 + 1145: 9,4 + 1150: 2,-13 + 1155: 2,-12 + 1160: 2,-11 + 1165: 2,-10 + 1180: -10,-28 + 1186: 8,-32 + 1194: 10,-27 + 1202: 11,-26 + 1207: 11,-20 + 1212: 11,-19 + 1220: 4,16 + 1233: 4,12 + 1241: 4,13 + 1249: 4,14 + 1257: 4,15 + 1265: 8,2 + 1273: 8,3 + 1278: 9,3 + 1283: 9,4 + 1288: 2,-13 + 1293: 2,-12 + 1298: 2,-11 + 1303: 2,-10 + 1318: -10,-28 + 1324: 8,-32 + 1332: 10,-27 + 1340: 11,-26 + 1345: 11,-20 + 1350: 11,-19 + 1358: 4,16 + 1371: 4,12 + 1379: 4,13 + 1387: 4,14 + 1395: 4,15 + 1403: 8,2 + 1411: 8,3 + 1416: 9,3 + 1421: 9,4 + 1426: 2,-13 + 1431: 2,-12 + 1436: 2,-11 + 1441: 2,-10 + 1456: -10,-28 + 1462: 8,-32 + 1470: 10,-27 + 1478: 11,-26 + 1483: 11,-20 + 1488: 11,-19 + 1496: 4,16 + 1509: 4,12 + 1517: 4,13 + 1525: 4,14 + 1533: 4,15 + 1541: 8,2 + 1549: 8,3 + 1554: 9,3 + 1559: 9,4 + 1564: 2,-13 + 1569: 2,-12 + 1574: 2,-11 + 1579: 2,-10 + 1594: -10,-28 1602: 10,-27 1610: 11,-26 - 1628: 4,16 - 1636: 4,17 - 1641: 4,12 - 1649: 4,13 - 1657: 4,14 - 1665: 4,15 - 1673: 8,2 - 1681: 8,3 - 1719: -13,-22 - 1724: -13,-20 - 1734: 2,-27 - 1742: 10,-27 - 1750: 11,-26 - 1758: 4,16 - 1766: 4,17 - 1771: 11,-20 - 1799: 12,-20 - 1804: -10,-5 - 1809: -10,-6 - 1814: -11,-8 - 1817: -10,-8 - 1825: -10,-7 - 1830: -8,7 - 1835: -8,9 - 1838: 4,12 - 1846: 4,13 - 1854: 4,14 - 1862: 4,15 - 1870: 8,2 - 1878: 8,3 - 1916: -11,-8 - 1919: -10,-8 - 1927: -10,-7 - 1932: -10,-6 - 1937: -10,-5 - 1942: -8,7 - 1947: -8,9 - 1950: -13,-22 - 1955: -13,-20 - 1971: 2,-27 - 1985: 10,-27 - 1993: 11,-26 - 2001: 11,-20 - 2014: 12,-20 - 2022: 4,16 - 2030: 4,17 - 2035: 4,12 - 2043: 4,13 - 2051: 4,14 - 2059: 4,15 - 2067: 8,2 - 2075: 8,3 - 2113: -11,-8 - 2116: -10,-8 - 2124: -10,-7 - 2129: -10,-6 - 2134: -10,-5 - 2139: -8,7 - 2144: -8,9 - 2147: -13,-22 - 2152: -13,-20 - 2168: 2,-27 - 2182: 10,-27 - 2190: 11,-26 - 2198: 11,-20 - 2211: 12,-20 - 2219: 4,16 - 2227: 4,17 - 2232: 4,12 - 2240: 4,13 - 2248: 4,14 - 2256: 4,15 - 2284: -11,-8 - 2287: -10,-8 - 2295: -10,-7 - 2300: -10,-6 - 2305: -10,-5 - 2310: -8,7 - 2315: -8,9 - 2318: -13,-22 - 2323: -13,-20 - 2336: 2,-27 - 2350: 10,-27 - 2358: 11,-26 - 2366: 11,-20 - 2379: 12,-20 - 2387: 4,16 - 2395: 4,17 - 2427: 8,3 - 2435: 8,2 - 2641: 4,12 - 2649: 4,13 - 2657: 4,14 - 2665: 4,15 - 2673: 8,2 - 2681: 8,3 - 2725: -11,-8 - 2728: -10,-8 - 2736: -10,-7 - 2741: -10,-6 - 2746: -10,-5 - 2775: -8,7 - 2780: -8,9 - 2783: -13,-22 - 2788: -13,-20 - 2804: 2,-27 - 2818: 10,-27 - 2826: 11,-26 - 2834: 11,-20 - 2847: 12,-20 - 2855: 4,16 - 2863: 4,17 - 2868: 4,12 - 2876: 4,13 - 2884: 4,14 - 2892: 4,15 - 2900: 8,2 - 2908: 8,3 - 2952: -11,-8 - 2955: -10,-8 - 2963: -10,-7 - 2968: -10,-6 - 2973: -10,-5 - 3002: -8,7 - 3007: -8,9 - 3010: -13,-22 - 3015: -13,-20 - 3031: 2,-27 - 3045: 10,-27 - 3053: 11,-26 - 3061: 11,-20 - 3074: 12,-20 - 3082: 4,16 - 3090: 4,17 - 3095: 4,12 - 3103: 4,13 - 3111: 4,14 - 3119: 4,15 - 3127: 8,2 - 3135: 8,3 - 3179: -11,-8 - 3182: -10,-8 - 3190: -10,-7 - 3195: -10,-6 - 3200: -10,-5 - 3229: -8,7 - 3234: -8,9 - 3237: -13,-22 - 3242: -13,-20 - 3258: 2,-27 - 3272: 10,-27 - 3280: 11,-26 - 3288: 11,-20 - 3301: 12,-20 - 3309: 4,16 - 3317: 4,17 - 3322: 4,12 - 3330: 4,13 - 3338: 4,14 - 3346: 4,15 - 3354: 8,2 - 3362: 8,3 - 3406: -11,-8 - 3409: -10,-8 - 3417: -10,-7 - 3422: -10,-6 - 3427: -10,-5 - 3456: -8,7 - 3461: -8,9 - 3464: -13,-22 - 3469: -13,-20 - 3485: 2,-27 - 3499: 10,-27 - 3507: 11,-26 - 3515: 11,-20 - 3528: 12,-20 - 3536: 4,16 - 3544: 4,17 - 3549: 4,12 - 3557: 4,13 - 3565: 4,14 - 3573: 4,15 - 3581: 8,2 - 3589: 8,3 - 3633: -11,-8 - 3636: -10,-8 - 3668: -8,7 - 3673: -8,9 - 3687: 2,-27 - 3701: 10,-27 - 3709: 11,-26 - 3717: 11,-20 - 3730: 12,-20 - 3738: 4,16 - 3746: 4,17 - 3751: -10,-6 - 3756: -10,-7 - 3761: -10,-5 - 3769: -13,-22 - 3772: 4,12 - 3780: 4,13 - 3788: 4,14 - 3796: 4,15 - 3804: 8,2 - 3812: 8,3 - 3856: -11,-8 - 3859: -10,-8 - 3867: -10,-7 - 3872: -10,-6 - 3877: -10,-5 - 3906: -8,7 - 3911: -8,9 - 3914: -13,-22 - 3931: 2,-27 - 3945: 10,-27 - 3953: 11,-26 - 3961: 11,-20 - 3974: 12,-20 - 3982: 4,16 - 3990: 4,17 - - node: - zIndex: 1 - id: LatticeCornerSW - decals: - 185: 4,12 - 193: 4,13 - 201: 4,14 - 209: 4,15 - 217: 8,2 - 225: 8,3 - 230: 9,3 - 235: 9,4 - 240: 2,-13 - 245: 2,-12 - 250: 2,-11 - 255: 2,-10 - 281: 2,-27 - 292: 10,-27 - 300: 11,-26 - 305: 11,-20 - 310: 11,-19 - 318: 4,16 - 324: 4,17 - 331: 4,12 - 339: 4,13 - 347: 4,14 - 355: 4,15 - 363: 8,2 - 371: 8,3 - 376: 9,3 - 381: 9,4 - 386: 2,-13 - 391: 2,-12 - 396: 2,-11 - 401: 2,-10 - 427: 2,-27 - 438: 10,-27 - 446: 11,-26 - 451: 11,-20 - 456: 11,-19 - 464: 4,16 - 470: 4,17 - 477: 4,12 - 485: 4,13 - 493: 4,14 - 501: 4,15 - 509: 8,2 - 517: 8,3 - 522: 9,3 - 527: 9,4 - 532: 2,-13 - 537: 2,-12 - 542: 2,-11 - 547: 2,-10 - 573: 2,-27 - 584: 10,-27 - 592: 11,-26 - 597: 11,-20 - 602: 11,-19 - 610: 4,16 - 616: 4,17 - 623: 4,12 - 631: 4,13 - 639: 4,14 - 647: 4,15 - 655: 8,2 - 663: 8,3 - 668: 9,3 - 673: 9,4 - 678: 2,-13 - 683: 2,-12 - 688: 2,-11 - 693: 2,-10 - 719: 2,-27 - 730: 10,-27 - 738: 11,-26 - 743: 11,-20 - 748: 11,-19 - 756: 4,16 - 762: 4,17 - 769: 4,12 - 777: 4,13 - 785: 4,14 - 793: 4,15 - 801: 8,2 - 809: 8,3 - 814: 9,3 - 819: 9,4 - 824: 2,-13 - 829: 2,-12 - 834: 2,-11 - 839: 2,-10 - 865: 2,-27 - 876: 10,-27 - 884: 11,-26 - 889: 11,-20 - 894: 11,-19 - 902: 4,16 - 908: 4,17 - 915: 4,12 - 923: 4,13 - 931: 4,14 - 939: 4,15 - 947: 8,2 - 955: 8,3 - 960: 9,3 - 965: 9,4 - 970: 2,-13 - 975: 2,-12 - 980: 2,-11 - 985: 2,-10 - 1011: 2,-27 - 1022: 10,-27 - 1030: 11,-26 - 1035: 11,-20 - 1040: 11,-19 - 1048: 4,16 - 1054: 4,17 - 1061: 4,12 - 1069: 4,13 - 1077: 4,14 - 1085: 4,15 - 1093: 8,2 - 1101: 8,3 - 1106: 9,3 - 1111: 9,4 - 1116: 2,-13 - 1121: 2,-12 - 1126: 2,-11 - 1131: 2,-10 - 1157: 2,-27 - 1168: 10,-27 - 1176: 11,-26 - 1181: 11,-20 - 1186: 11,-19 - 1194: 4,16 - 1200: 4,17 - 1207: 4,12 - 1215: 4,13 - 1223: 4,14 - 1231: 4,15 - 1239: 8,2 - 1247: 8,3 - 1252: 9,3 - 1257: 9,4 - 1262: 2,-13 - 1267: 2,-12 - 1272: 2,-11 - 1277: 2,-10 - 1303: 2,-27 - 1314: 10,-27 - 1322: 11,-26 - 1327: 11,-20 - 1332: 11,-19 - 1340: 4,16 - 1346: 4,17 - 1353: 4,12 - 1361: 4,13 - 1369: 4,14 - 1377: 4,15 - 1385: 8,2 - 1393: 8,3 - 1398: 9,3 - 1403: 9,4 - 1408: 2,-13 - 1413: 2,-12 - 1418: 2,-11 - 1423: 2,-10 - 1449: 2,-27 - 1460: 10,-27 - 1468: 11,-26 - 1473: 11,-20 - 1478: 11,-19 - 1486: 4,16 - 1492: 4,17 - 1499: 4,12 - 1507: 4,13 - 1515: 4,14 - 1523: 4,15 - 1531: 8,2 - 1539: 8,3 - 1544: 9,3 - 1549: 9,4 - 1554: 2,-13 - 1559: 2,-12 - 1564: 2,-11 - 1569: 2,-10 - 1595: 2,-27 - 1606: 10,-27 - 1614: 11,-26 - 1619: 11,-20 - 1624: 11,-19 - 1632: 4,16 - 1638: 4,17 - 1645: 4,12 - 1653: 4,13 - 1661: 4,14 - 1669: 4,15 - 1677: 8,2 - 1685: 8,3 - 1690: 9,3 - 1695: 9,4 - 1700: 2,-13 - 1705: 2,-12 - 1710: 2,-11 - 1715: 2,-10 - 1738: 2,-27 - 1746: 10,-27 - 1754: 11,-26 - 1762: 4,16 - 1768: 4,17 - 1775: 11,-20 - 1780: 11,-19 - 1796: 13,-20 - 1801: 12,-20 - 1821: -10,-8 - 1842: 4,12 - 1850: 4,13 - 1858: 4,14 - 1866: 4,15 - 1874: 8,2 - 1882: 8,3 - 1887: 9,3 - 1892: 9,4 - 1897: 2,-13 - 1902: 2,-12 - 1907: 2,-11 - 1912: 2,-10 - 1923: -10,-8 - 1975: 2,-27 - 1989: 10,-27 - 1997: 11,-26 - 2005: 11,-20 - 2010: 11,-19 - 2016: 12,-20 - 2019: 13,-20 - 2026: 4,16 - 2032: 4,17 - 2039: 4,12 - 2047: 4,13 - 2055: 4,14 - 2063: 4,15 - 2071: 8,2 - 2079: 8,3 - 2084: 9,3 - 2089: 9,4 - 2094: 2,-13 - 2099: 2,-12 - 2104: 2,-11 - 2109: 2,-10 - 2120: -10,-8 - 2172: 2,-27 + 1618: 4,16 + 1631: 11,-20 + 1636: 11,-19 + 1639: 8,-32 + 1642: 9,-30 + 1677: -10,-8 + 1698: 4,12 + 1706: 4,13 + 1714: 4,14 + 1722: 4,15 + 1730: 8,2 + 1738: 8,3 + 1743: 9,3 + 1748: 9,4 + 1753: 2,-13 + 1758: 2,-12 + 1763: 2,-11 + 1768: 2,-10 + 1779: -10,-8 + 1817: -10,-28 + 1826: 8,-32 + 1829: 9,-30 + 1837: 10,-27 + 1845: 11,-26 + 1853: 11,-20 + 1858: 11,-19 + 1874: 4,16 + 1887: 4,12 + 1895: 4,13 + 1903: 4,14 + 1911: 4,15 + 1919: 8,2 + 1927: 8,3 + 1932: 9,3 + 1937: 9,4 + 1942: 2,-13 + 1947: 2,-12 + 1952: 2,-11 + 1957: 2,-10 + 1968: -10,-8 + 2006: -10,-28 + 2015: 8,-32 + 2018: 9,-30 + 2026: 10,-27 + 2034: 11,-26 + 2042: 11,-20 + 2047: 11,-19 + 2063: 4,16 + 2076: 4,12 + 2084: 4,13 + 2092: 4,14 + 2100: 4,15 + 2105: 2,-13 + 2110: 2,-12 + 2115: 2,-11 + 2120: 2,-10 + 2131: -10,-8 + 2169: -10,-28 + 2175: 8,-32 + 2178: 9,-30 2186: 10,-27 2194: 11,-26 2202: 11,-20 2207: 11,-19 - 2213: 12,-20 - 2216: 13,-20 2223: 4,16 - 2229: 4,17 - 2236: 4,12 - 2244: 4,13 - 2252: 4,14 - 2260: 4,15 - 2265: 2,-13 - 2270: 2,-12 - 2275: 2,-11 - 2280: 2,-10 - 2291: -10,-8 - 2340: 2,-27 - 2354: 10,-27 - 2362: 11,-26 - 2370: 11,-20 - 2375: 11,-19 - 2381: 12,-20 - 2384: 13,-20 - 2391: 4,16 - 2397: 4,17 - 2414: 10,-3 - 2418: 9,4 - 2423: 9,3 - 2431: 8,3 - 2439: 8,2 - 2645: 4,12 - 2653: 4,13 - 2661: 4,14 - 2669: 4,15 - 2677: 8,2 - 2685: 8,3 - 2690: 9,3 - 2695: 9,4 - 2700: 2,-13 - 2705: 2,-12 - 2710: 2,-11 - 2715: 2,-10 - 2722: 10,-3 - 2732: -10,-8 - 2808: 2,-27 - 2822: 10,-27 - 2830: 11,-26 - 2838: 11,-20 - 2843: 11,-19 - 2849: 12,-20 - 2852: 13,-20 - 2859: 4,16 - 2865: 4,17 - 2872: 4,12 - 2880: 4,13 - 2888: 4,14 - 2896: 4,15 - 2904: 8,2 - 2912: 8,3 - 2917: 9,3 - 2922: 9,4 - 2927: 2,-13 - 2932: 2,-12 - 2937: 2,-11 - 2942: 2,-10 - 2949: 10,-3 - 2959: -10,-8 - 3035: 2,-27 - 3049: 10,-27 - 3057: 11,-26 - 3065: 11,-20 - 3070: 11,-19 - 3076: 12,-20 - 3079: 13,-20 - 3086: 4,16 - 3092: 4,17 - 3099: 4,12 - 3107: 4,13 - 3115: 4,14 - 3123: 4,15 - 3131: 8,2 - 3139: 8,3 - 3144: 9,3 - 3149: 9,4 - 3154: 2,-13 - 3159: 2,-12 - 3164: 2,-11 - 3169: 2,-10 - 3176: 10,-3 - 3186: -10,-8 - 3262: 2,-27 - 3276: 10,-27 - 3284: 11,-26 - 3292: 11,-20 - 3297: 11,-19 - 3303: 12,-20 - 3306: 13,-20 - 3313: 4,16 - 3319: 4,17 - 3326: 4,12 - 3334: 4,13 - 3342: 4,14 - 3350: 4,15 - 3358: 8,2 - 3366: 8,3 - 3371: 9,3 - 3376: 9,4 - 3381: 2,-13 - 3386: 2,-12 - 3391: 2,-11 - 3396: 2,-10 - 3403: 10,-3 - 3413: -10,-8 - 3489: 2,-27 - 3503: 10,-27 - 3511: 11,-26 - 3519: 11,-20 - 3524: 11,-19 - 3530: 12,-20 - 3533: 13,-20 - 3540: 4,16 - 3546: 4,17 - 3553: 4,12 - 3561: 4,13 - 3569: 4,14 - 3577: 4,15 - 3585: 8,2 - 3593: 8,3 - 3598: 9,3 - 3603: 9,4 - 3608: 2,-13 - 3613: 2,-12 - 3618: 2,-11 - 3623: 2,-10 - 3630: 10,-3 - 3640: -10,-8 - 3691: 2,-27 - 3705: 10,-27 - 3713: 11,-26 - 3721: 11,-20 - 3726: 11,-19 - 3732: 12,-20 - 3735: 13,-20 - 3742: 4,16 - 3748: 4,17 + 2242: 10,-5 + 2250: 9,4 + 2255: 9,3 + 2263: 8,3 + 2271: 8,2 + 2475: 4,12 + 2483: 4,13 + 2491: 4,14 + 2499: 4,15 + 2507: 8,2 + 2515: 8,3 + 2520: 9,3 + 2525: 9,4 + 2530: 2,-13 + 2535: 2,-12 + 2540: 2,-11 + 2545: 2,-10 + 2548: 10,-5 + 2562: -10,-8 + 2624: -10,-28 + 2633: 8,-32 + 2636: 9,-30 + 2644: 10,-27 + 2652: 11,-26 + 2660: 11,-20 + 2665: 11,-19 + 2681: 4,16 + 2694: 4,12 + 2702: 4,13 + 2710: 4,14 + 2718: 4,15 + 2726: 8,2 + 2734: 8,3 + 2739: 9,3 + 2744: 9,4 + 2749: 2,-13 + 2754: 2,-12 + 2759: 2,-11 + 2764: 2,-10 + 2767: 10,-5 + 2781: -10,-8 + 2843: -10,-28 + 2852: 8,-32 + 2855: 9,-30 + 2863: 10,-27 + 2871: 11,-26 + 2879: 11,-20 + 2884: 11,-19 + 2900: 4,16 + 2913: 4,12 + 2921: 4,13 + 2929: 4,14 + 2937: 4,15 + 2945: 8,2 + 2953: 8,3 + 2958: 9,3 + 2963: 9,4 + 2968: 2,-13 + 2973: 2,-12 + 2978: 2,-11 + 2983: 2,-10 + 2986: 10,-5 + 3000: -10,-8 + 3062: -10,-28 + 3071: 8,-32 + 3074: 9,-30 + 3082: 10,-27 + 3090: 11,-26 + 3098: 11,-20 + 3103: 11,-19 + 3119: 4,16 + 3132: 4,12 + 3140: 4,13 + 3148: 4,14 + 3156: 4,15 + 3164: 8,2 + 3172: 8,3 + 3177: 9,3 + 3182: 9,4 + 3187: 2,-13 + 3192: 2,-12 + 3197: 2,-11 + 3202: 2,-10 + 3205: 10,-5 + 3219: -10,-8 + 3281: -10,-28 + 3290: 8,-32 + 3293: 9,-30 + 3301: 10,-27 + 3309: 11,-26 + 3317: 11,-20 + 3322: 11,-19 + 3338: 4,16 + 3351: 4,12 + 3359: 4,13 + 3367: 4,14 + 3375: 4,15 + 3383: 8,2 + 3391: 8,3 + 3396: 9,3 + 3401: 9,4 + 3406: 2,-13 + 3411: 2,-12 + 3416: 2,-11 + 3421: 2,-10 + 3424: 10,-5 + 3438: -10,-8 + 3475: -10,-28 + 3484: 8,-32 + 3487: 9,-30 + 3495: 10,-27 + 3503: 11,-26 + 3511: 11,-20 + 3516: 11,-19 + 3532: 4,16 + 3566: 4,12 + 3574: 4,13 + 3582: 4,14 + 3590: 4,15 + 3598: 8,2 + 3606: 8,3 + 3611: 9,3 + 3616: 9,4 + 3621: 2,-13 + 3626: 2,-12 + 3631: 2,-11 + 3636: 2,-10 + 3639: 10,-5 + 3653: -10,-8 + 3711: -10,-28 + 3720: 8,-32 + 3723: 9,-30 + 3731: 10,-27 + 3739: 11,-26 + 3747: 11,-20 + 3752: 11,-19 + 3768: 4,16 + 3781: 4,12 + 3789: 4,13 + 3797: 4,14 + 3805: 4,15 + 3813: 8,2 + 3821: 8,3 + 3826: 9,3 + 3831: 9,4 + 3836: 2,-13 + 3841: 2,-12 + 3846: 2,-11 + 3851: 2,-10 + 3854: 10,-5 + 3868: -10,-8 + 3926: -10,-28 + 3935: 8,-32 + 3938: 9,-30 + 3946: 10,-27 + 3954: 11,-26 + 3962: 11,-20 + 3967: 11,-19 + 3983: 4,16 + 4105: 4,12 + 4113: 4,13 + 4121: 4,14 + 4129: 4,15 + 4137: 8,2 + 4145: 8,3 + 4150: 9,3 + 4155: 9,4 + 4160: 2,-13 + 4165: 2,-12 + 4170: 2,-11 + 4175: 2,-10 + 4178: 10,-5 + 4192: -10,-8 + 4250: -10,-28 + 4259: 8,-32 + 4262: 9,-30 + 4270: 10,-27 + 4278: 11,-26 + 4286: 11,-20 + 4291: 11,-19 + 4307: 4,16 + 4320: 4,12 + 4328: 4,13 + 4336: 4,14 + 4344: 4,15 + 4352: 8,2 + 4360: 8,3 + 4365: 9,3 + 4370: 9,4 + 4375: 2,-13 + 4380: 2,-12 + 4385: 2,-11 + 4390: 2,-10 + 4393: 10,-5 + 4407: -10,-8 + 4465: -10,-28 + 4474: 8,-32 + 4477: 9,-30 + 4485: 10,-27 + 4493: 11,-26 + 4501: 11,-20 + 4506: 11,-19 + 4522: 4,16 + - node: + zIndex: 1 + id: LatticeCornerSE + decals: + 124: 4,12 + 132: 4,13 + 140: 4,14 + 148: 4,15 + 156: 8,2 + 164: 8,3 + 202: -13,-22 + 207: -13,-20 + 223: 10,-27 + 231: 11,-26 + 249: 4,16 + 257: 4,17 + 262: 4,12 + 270: 4,13 + 278: 4,14 + 286: 4,15 + 294: 8,2 + 302: 8,3 + 340: -13,-22 + 345: -13,-20 + 361: 10,-27 + 369: 11,-26 + 387: 4,16 + 395: 4,17 + 400: 4,12 + 408: 4,13 + 416: 4,14 + 424: 4,15 + 432: 8,2 + 440: 8,3 + 478: -13,-22 + 483: -13,-20 + 499: 10,-27 + 507: 11,-26 + 525: 4,16 + 533: 4,17 + 538: 4,12 + 546: 4,13 + 554: 4,14 + 562: 4,15 + 570: 8,2 + 578: 8,3 + 616: -13,-22 + 621: -13,-20 + 637: 10,-27 + 645: 11,-26 + 663: 4,16 + 671: 4,17 + 676: 4,12 + 684: 4,13 + 692: 4,14 + 700: 4,15 + 708: 8,2 + 716: 8,3 + 754: -13,-22 + 759: -13,-20 + 775: 10,-27 + 783: 11,-26 + 801: 4,16 + 809: 4,17 + 814: 4,12 + 822: 4,13 + 830: 4,14 + 838: 4,15 + 846: 8,2 + 854: 8,3 + 892: -13,-22 + 897: -13,-20 + 913: 10,-27 + 921: 11,-26 + 939: 4,16 + 947: 4,17 + 952: 4,12 + 960: 4,13 + 968: 4,14 + 976: 4,15 + 984: 8,2 + 992: 8,3 + 1030: -13,-22 + 1035: -13,-20 + 1051: 10,-27 + 1059: 11,-26 + 1077: 4,16 + 1085: 4,17 + 1090: 4,12 + 1098: 4,13 + 1106: 4,14 + 1114: 4,15 + 1122: 8,2 + 1130: 8,3 + 1168: -13,-22 + 1173: -13,-20 + 1189: 10,-27 + 1197: 11,-26 + 1215: 4,16 + 1223: 4,17 + 1228: 4,12 + 1236: 4,13 + 1244: 4,14 + 1252: 4,15 + 1260: 8,2 + 1268: 8,3 + 1306: -13,-22 + 1311: -13,-20 + 1327: 10,-27 + 1335: 11,-26 + 1353: 4,16 + 1361: 4,17 + 1366: 4,12 + 1374: 4,13 + 1382: 4,14 + 1390: 4,15 + 1398: 8,2 + 1406: 8,3 + 1444: -13,-22 + 1449: -13,-20 + 1465: 10,-27 + 1473: 11,-26 + 1491: 4,16 + 1499: 4,17 + 1504: 4,12 + 1512: 4,13 + 1520: 4,14 + 1528: 4,15 + 1536: 8,2 + 1544: 8,3 + 1582: -13,-22 + 1587: -13,-20 + 1597: 10,-27 + 1605: 11,-26 + 1613: 4,16 + 1621: 4,17 + 1626: 11,-20 + 1654: 12,-20 + 1659: -10,-5 + 1664: -10,-6 + 1669: -11,-8 + 1672: -10,-8 + 1680: -10,-7 + 1685: -8,7 + 1690: -8,9 + 1693: 4,12 + 1701: 4,13 + 1709: 4,14 + 1717: 4,15 + 1725: 8,2 + 1733: 8,3 + 1771: -11,-8 + 1774: -10,-8 + 1782: -10,-7 + 1787: -10,-6 + 1792: -10,-5 + 1797: -8,7 + 1802: -8,9 + 1805: -13,-22 + 1810: -13,-20 + 1832: 10,-27 + 1840: 11,-26 + 1848: 11,-20 + 1861: 12,-20 + 1869: 4,16 + 1877: 4,17 + 1882: 4,12 + 1890: 4,13 + 1898: 4,14 + 1906: 4,15 + 1914: 8,2 + 1922: 8,3 + 1960: -11,-8 + 1963: -10,-8 + 1971: -10,-7 + 1976: -10,-6 + 1981: -10,-5 + 1986: -8,7 + 1991: -8,9 + 1994: -13,-22 + 1999: -13,-20 + 2021: 10,-27 + 2029: 11,-26 + 2037: 11,-20 + 2050: 12,-20 + 2058: 4,16 + 2066: 4,17 + 2071: 4,12 + 2079: 4,13 + 2087: 4,14 + 2095: 4,15 + 2123: -11,-8 + 2126: -10,-8 + 2134: -10,-7 + 2139: -10,-6 + 2144: -10,-5 + 2149: -8,7 + 2154: -8,9 + 2157: -13,-22 + 2162: -13,-20 + 2181: 10,-27 + 2189: 11,-26 + 2197: 11,-20 + 2210: 12,-20 + 2218: 4,16 + 2226: 4,17 + 2258: 8,3 + 2266: 8,2 + 2470: 4,12 + 2478: 4,13 + 2486: 4,14 + 2494: 4,15 + 2502: 8,2 + 2510: 8,3 + 2554: -11,-8 + 2557: -10,-8 + 2565: -10,-7 + 2570: -10,-6 + 2575: -10,-5 + 2604: -8,7 + 2609: -8,9 + 2612: -13,-22 + 2617: -13,-20 + 2639: 10,-27 + 2647: 11,-26 + 2655: 11,-20 + 2668: 12,-20 + 2676: 4,16 + 2684: 4,17 + 2689: 4,12 + 2697: 4,13 + 2705: 4,14 + 2713: 4,15 + 2721: 8,2 + 2729: 8,3 + 2773: -11,-8 + 2776: -10,-8 + 2784: -10,-7 + 2789: -10,-6 + 2794: -10,-5 + 2823: -8,7 + 2828: -8,9 + 2831: -13,-22 + 2836: -13,-20 + 2858: 10,-27 + 2866: 11,-26 + 2874: 11,-20 + 2887: 12,-20 + 2895: 4,16 + 2903: 4,17 + 2908: 4,12 + 2916: 4,13 + 2924: 4,14 + 2932: 4,15 + 2940: 8,2 + 2948: 8,3 + 2992: -11,-8 + 2995: -10,-8 + 3003: -10,-7 + 3008: -10,-6 + 3013: -10,-5 + 3042: -8,7 + 3047: -8,9 + 3050: -13,-22 + 3055: -13,-20 + 3077: 10,-27 + 3085: 11,-26 + 3093: 11,-20 + 3106: 12,-20 + 3114: 4,16 + 3122: 4,17 + 3127: 4,12 + 3135: 4,13 + 3143: 4,14 + 3151: 4,15 + 3159: 8,2 + 3167: 8,3 + 3211: -11,-8 + 3214: -10,-8 + 3222: -10,-7 + 3227: -10,-6 + 3232: -10,-5 + 3261: -8,7 + 3266: -8,9 + 3269: -13,-22 + 3274: -13,-20 + 3296: 10,-27 + 3304: 11,-26 + 3312: 11,-20 + 3325: 12,-20 + 3333: 4,16 + 3341: 4,17 + 3346: 4,12 + 3354: 4,13 + 3362: 4,14 + 3370: 4,15 + 3378: 8,2 + 3386: 8,3 + 3430: -11,-8 + 3433: -10,-8 + 3465: -8,7 + 3470: -8,9 + 3490: 10,-27 + 3498: 11,-26 + 3506: 11,-20 + 3519: 12,-20 + 3527: 4,16 + 3535: 4,17 + 3540: -10,-6 + 3545: -10,-7 + 3550: -10,-5 + 3558: -13,-22 + 3561: 4,12 + 3569: 4,13 + 3577: 4,14 + 3585: 4,15 + 3593: 8,2 + 3601: 8,3 + 3645: -11,-8 + 3648: -10,-8 + 3656: -10,-7 + 3661: -10,-6 + 3666: -10,-5 + 3695: -8,7 + 3700: -8,9 + 3703: -13,-22 + 3726: 10,-27 + 3734: 11,-26 + 3742: 11,-20 + 3755: 12,-20 + 3763: 4,16 + 3771: 4,17 3776: 4,12 3784: 4,13 3792: 4,14 3800: 4,15 3808: 8,2 3816: 8,3 - 3821: 9,3 - 3826: 9,4 - 3831: 2,-13 - 3836: 2,-12 - 3841: 2,-11 - 3846: 2,-10 - 3853: 10,-3 + 3860: -11,-8 3863: -10,-8 - 3935: 2,-27 - 3949: 10,-27 - 3957: 11,-26 - 3965: 11,-20 - 3970: 11,-19 - 3976: 12,-20 - 3979: 13,-20 - 3986: 4,16 - 3992: 4,17 + 3871: -10,-7 + 3876: -10,-6 + 3881: -10,-5 + 3910: -8,7 + 3915: -8,9 + 3918: -13,-22 + 3941: 10,-27 + 3949: 11,-26 + 3957: 11,-20 + 3970: 12,-20 + 3978: 4,16 + 3986: 4,17 + 4100: 4,12 + 4108: 4,13 + 4116: 4,14 + 4124: 4,15 + 4132: 8,2 + 4140: 8,3 + 4184: -11,-8 + 4187: -10,-8 + 4195: -10,-7 + 4200: -10,-6 + 4205: -10,-5 + 4234: -8,7 + 4239: -8,9 + 4242: -13,-22 + 4265: 10,-27 + 4273: 11,-26 + 4281: 11,-20 + 4294: 12,-20 + 4302: 4,16 + 4310: 4,17 + 4315: 4,12 + 4323: 4,13 + 4331: 4,14 + 4339: 4,15 + 4347: 8,2 + 4355: 8,3 + 4399: -11,-8 + 4402: -10,-8 + 4410: -10,-7 + 4415: -10,-6 + 4420: -10,-5 + 4449: -8,7 + 4454: -8,9 + 4457: -13,-22 + 4480: 10,-27 + 4488: 11,-26 + 4496: 11,-20 + 4509: 12,-20 + 4517: 4,16 + 4525: 4,17 - node: - id: LatticeEdgeE + zIndex: 1 + id: LatticeCornerSW decals: - 180: 4,12 - 188: 4,13 - 196: 4,14 - 204: 4,15 - 212: 8,2 - 220: 8,3 - 258: -13,-22 - 263: -13,-20 - 267: -10,-28 - 272: -8,-32 - 276: 2,-27 - 287: 10,-27 - 295: 11,-26 - 313: 4,16 - 321: 4,17 - 326: 4,12 - 334: 4,13 - 342: 4,14 - 350: 4,15 - 358: 8,2 - 366: 8,3 - 404: -13,-22 - 409: -13,-20 - 413: -10,-28 - 418: -8,-32 - 422: 2,-27 - 433: 10,-27 - 441: 11,-26 - 459: 4,16 - 467: 4,17 - 472: 4,12 - 480: 4,13 - 488: 4,14 - 496: 4,15 - 504: 8,2 - 512: 8,3 - 550: -13,-22 - 555: -13,-20 - 559: -10,-28 - 564: -8,-32 - 568: 2,-27 - 579: 10,-27 - 587: 11,-26 - 605: 4,16 - 613: 4,17 - 618: 4,12 - 626: 4,13 - 634: 4,14 - 642: 4,15 - 650: 8,2 - 658: 8,3 - 696: -13,-22 - 701: -13,-20 - 705: -10,-28 - 710: -8,-32 - 714: 2,-27 - 725: 10,-27 - 733: 11,-26 - 751: 4,16 - 759: 4,17 - 764: 4,12 - 772: 4,13 - 780: 4,14 - 788: 4,15 - 796: 8,2 - 804: 8,3 - 842: -13,-22 - 847: -13,-20 - 851: -10,-28 - 856: -8,-32 - 860: 2,-27 - 871: 10,-27 - 879: 11,-26 - 897: 4,16 - 905: 4,17 - 910: 4,12 - 918: 4,13 - 926: 4,14 - 934: 4,15 - 942: 8,2 - 950: 8,3 - 988: -13,-22 - 993: -13,-20 - 997: -10,-28 - 1002: -8,-32 - 1006: 2,-27 - 1017: 10,-27 - 1025: 11,-26 - 1043: 4,16 - 1051: 4,17 - 1056: 4,12 - 1064: 4,13 - 1072: 4,14 - 1080: 4,15 - 1088: 8,2 - 1096: 8,3 - 1134: -13,-22 - 1139: -13,-20 - 1143: -10,-28 - 1148: -8,-32 - 1152: 2,-27 - 1163: 10,-27 - 1171: 11,-26 - 1189: 4,16 - 1197: 4,17 - 1202: 4,12 - 1210: 4,13 - 1218: 4,14 - 1226: 4,15 - 1234: 8,2 - 1242: 8,3 - 1280: -13,-22 - 1285: -13,-20 - 1289: -10,-28 - 1294: -8,-32 - 1298: 2,-27 - 1309: 10,-27 - 1317: 11,-26 - 1335: 4,16 - 1343: 4,17 - 1348: 4,12 - 1356: 4,13 - 1364: 4,14 - 1372: 4,15 - 1380: 8,2 - 1388: 8,3 - 1426: -13,-22 - 1431: -13,-20 - 1435: -10,-28 - 1440: -8,-32 - 1444: 2,-27 - 1455: 10,-27 - 1463: 11,-26 - 1481: 4,16 - 1489: 4,17 - 1494: 4,12 - 1502: 4,13 - 1510: 4,14 - 1518: 4,15 - 1526: 8,2 - 1534: 8,3 - 1572: -13,-22 - 1577: -13,-20 - 1581: -10,-28 - 1586: -8,-32 - 1590: 2,-27 + 128: 4,12 + 136: 4,13 + 144: 4,14 + 152: 4,15 + 160: 8,2 + 168: 8,3 + 173: 9,3 + 178: 9,4 + 183: 2,-13 + 188: 2,-12 + 193: 2,-11 + 198: 2,-10 + 227: 10,-27 + 235: 11,-26 + 240: 11,-20 + 245: 11,-19 + 253: 4,16 + 259: 4,17 + 266: 4,12 + 274: 4,13 + 282: 4,14 + 290: 4,15 + 298: 8,2 + 306: 8,3 + 311: 9,3 + 316: 9,4 + 321: 2,-13 + 326: 2,-12 + 331: 2,-11 + 336: 2,-10 + 365: 10,-27 + 373: 11,-26 + 378: 11,-20 + 383: 11,-19 + 391: 4,16 + 397: 4,17 + 404: 4,12 + 412: 4,13 + 420: 4,14 + 428: 4,15 + 436: 8,2 + 444: 8,3 + 449: 9,3 + 454: 9,4 + 459: 2,-13 + 464: 2,-12 + 469: 2,-11 + 474: 2,-10 + 503: 10,-27 + 511: 11,-26 + 516: 11,-20 + 521: 11,-19 + 529: 4,16 + 535: 4,17 + 542: 4,12 + 550: 4,13 + 558: 4,14 + 566: 4,15 + 574: 8,2 + 582: 8,3 + 587: 9,3 + 592: 9,4 + 597: 2,-13 + 602: 2,-12 + 607: 2,-11 + 612: 2,-10 + 641: 10,-27 + 649: 11,-26 + 654: 11,-20 + 659: 11,-19 + 667: 4,16 + 673: 4,17 + 680: 4,12 + 688: 4,13 + 696: 4,14 + 704: 4,15 + 712: 8,2 + 720: 8,3 + 725: 9,3 + 730: 9,4 + 735: 2,-13 + 740: 2,-12 + 745: 2,-11 + 750: 2,-10 + 779: 10,-27 + 787: 11,-26 + 792: 11,-20 + 797: 11,-19 + 805: 4,16 + 811: 4,17 + 818: 4,12 + 826: 4,13 + 834: 4,14 + 842: 4,15 + 850: 8,2 + 858: 8,3 + 863: 9,3 + 868: 9,4 + 873: 2,-13 + 878: 2,-12 + 883: 2,-11 + 888: 2,-10 + 917: 10,-27 + 925: 11,-26 + 930: 11,-20 + 935: 11,-19 + 943: 4,16 + 949: 4,17 + 956: 4,12 + 964: 4,13 + 972: 4,14 + 980: 4,15 + 988: 8,2 + 996: 8,3 + 1001: 9,3 + 1006: 9,4 + 1011: 2,-13 + 1016: 2,-12 + 1021: 2,-11 + 1026: 2,-10 + 1055: 10,-27 + 1063: 11,-26 + 1068: 11,-20 + 1073: 11,-19 + 1081: 4,16 + 1087: 4,17 + 1094: 4,12 + 1102: 4,13 + 1110: 4,14 + 1118: 4,15 + 1126: 8,2 + 1134: 8,3 + 1139: 9,3 + 1144: 9,4 + 1149: 2,-13 + 1154: 2,-12 + 1159: 2,-11 + 1164: 2,-10 + 1193: 10,-27 + 1201: 11,-26 + 1206: 11,-20 + 1211: 11,-19 + 1219: 4,16 + 1225: 4,17 + 1232: 4,12 + 1240: 4,13 + 1248: 4,14 + 1256: 4,15 + 1264: 8,2 + 1272: 8,3 + 1277: 9,3 + 1282: 9,4 + 1287: 2,-13 + 1292: 2,-12 + 1297: 2,-11 + 1302: 2,-10 + 1331: 10,-27 + 1339: 11,-26 + 1344: 11,-20 + 1349: 11,-19 + 1357: 4,16 + 1363: 4,17 + 1370: 4,12 + 1378: 4,13 + 1386: 4,14 + 1394: 4,15 + 1402: 8,2 + 1410: 8,3 + 1415: 9,3 + 1420: 9,4 + 1425: 2,-13 + 1430: 2,-12 + 1435: 2,-11 + 1440: 2,-10 + 1469: 10,-27 + 1477: 11,-26 + 1482: 11,-20 + 1487: 11,-19 + 1495: 4,16 + 1501: 4,17 + 1508: 4,12 + 1516: 4,13 + 1524: 4,14 + 1532: 4,15 + 1540: 8,2 + 1548: 8,3 + 1553: 9,3 + 1558: 9,4 + 1563: 2,-13 + 1568: 2,-12 + 1573: 2,-11 + 1578: 2,-10 1601: 10,-27 1609: 11,-26 - 1627: 4,16 - 1635: 4,17 - 1640: 4,12 - 1648: 4,13 - 1656: 4,14 - 1664: 4,15 - 1672: 8,2 - 1680: 8,3 - 1718: -13,-22 - 1723: -13,-20 - 1727: -10,-28 - 1733: 2,-27 - 1741: 10,-27 - 1749: 11,-26 - 1757: 4,16 - 1765: 4,17 - 1770: 11,-20 - 1788: -8,-32 - 1791: -9,-30 - 1798: 12,-20 - 1803: -10,-5 - 1808: -10,-6 - 1813: -11,-8 - 1816: -10,-8 - 1824: -10,-7 - 1829: -8,7 - 1834: -8,9 - 1837: 4,12 - 1845: 4,13 - 1853: 4,14 - 1861: 4,15 - 1869: 8,2 - 1877: 8,3 - 1915: -11,-8 - 1918: -10,-8 - 1926: -10,-7 - 1931: -10,-6 - 1936: -10,-5 - 1941: -8,7 - 1946: -8,9 - 1949: -13,-22 - 1954: -13,-20 - 1958: -10,-28 - 1963: -9,-30 - 1966: -8,-32 - 1970: 2,-27 - 1984: 10,-27 - 1992: 11,-26 - 2000: 11,-20 - 2013: 12,-20 - 2021: 4,16 - 2029: 4,17 - 2034: 4,12 - 2042: 4,13 - 2050: 4,14 - 2058: 4,15 - 2066: 8,2 - 2074: 8,3 - 2112: -11,-8 - 2115: -10,-8 - 2123: -10,-7 - 2128: -10,-6 - 2133: -10,-5 - 2138: -8,7 - 2143: -8,9 - 2146: -13,-22 - 2151: -13,-20 - 2155: -10,-28 - 2160: -9,-30 - 2163: -8,-32 - 2167: 2,-27 - 2181: 10,-27 - 2189: 11,-26 - 2197: 11,-20 - 2210: 12,-20 - 2218: 4,16 - 2226: 4,17 - 2231: 4,12 - 2239: 4,13 - 2247: 4,14 - 2255: 4,15 - 2283: -11,-8 - 2286: -10,-8 - 2294: -10,-7 - 2299: -10,-6 - 2304: -10,-5 - 2309: -8,7 - 2314: -8,9 - 2317: -13,-22 - 2322: -13,-20 - 2326: -10,-28 - 2331: -9,-30 - 2335: 2,-27 - 2349: 10,-27 - 2357: 11,-26 - 2365: 11,-20 - 2378: 12,-20 - 2386: 4,16 - 2394: 4,17 - 2426: 8,3 - 2434: 8,2 - 2555: -8,-32 - 2640: 4,12 - 2648: 4,13 - 2656: 4,14 - 2664: 4,15 - 2672: 8,2 - 2680: 8,3 - 2724: -11,-8 - 2727: -10,-8 - 2735: -10,-7 - 2740: -10,-6 - 2745: -10,-5 - 2774: -8,7 - 2779: -8,9 - 2782: -13,-22 - 2787: -13,-20 - 2791: -10,-28 - 2796: -9,-30 - 2799: -8,-32 - 2803: 2,-27 - 2817: 10,-27 - 2825: 11,-26 - 2833: 11,-20 - 2846: 12,-20 - 2854: 4,16 - 2862: 4,17 - 2867: 4,12 - 2875: 4,13 - 2883: 4,14 - 2891: 4,15 - 2899: 8,2 - 2907: 8,3 - 2951: -11,-8 - 2954: -10,-8 - 2962: -10,-7 - 2967: -10,-6 - 2972: -10,-5 - 3001: -8,7 - 3006: -8,9 - 3009: -13,-22 - 3014: -13,-20 - 3018: -10,-28 - 3023: -9,-30 - 3026: -8,-32 - 3030: 2,-27 - 3044: 10,-27 - 3052: 11,-26 - 3060: 11,-20 - 3073: 12,-20 - 3081: 4,16 - 3089: 4,17 - 3094: 4,12 - 3102: 4,13 - 3110: 4,14 - 3118: 4,15 - 3126: 8,2 - 3134: 8,3 - 3178: -11,-8 - 3181: -10,-8 - 3189: -10,-7 - 3194: -10,-6 - 3199: -10,-5 - 3228: -8,7 - 3233: -8,9 - 3236: -13,-22 - 3241: -13,-20 - 3245: -10,-28 - 3250: -9,-30 - 3253: -8,-32 - 3257: 2,-27 - 3271: 10,-27 - 3279: 11,-26 - 3287: 11,-20 - 3300: 12,-20 - 3308: 4,16 - 3316: 4,17 - 3321: 4,12 - 3329: 4,13 - 3337: 4,14 - 3345: 4,15 - 3353: 8,2 - 3361: 8,3 - 3405: -11,-8 - 3408: -10,-8 - 3416: -10,-7 - 3421: -10,-6 - 3426: -10,-5 - 3455: -8,7 - 3460: -8,9 - 3463: -13,-22 - 3468: -13,-20 - 3472: -10,-28 - 3477: -9,-30 - 3480: -8,-32 - 3484: 2,-27 - 3498: 10,-27 - 3506: 11,-26 - 3514: 11,-20 - 3527: 12,-20 - 3535: 4,16 - 3543: 4,17 - 3548: 4,12 - 3556: 4,13 - 3564: 4,14 - 3572: 4,15 - 3580: 8,2 - 3588: 8,3 - 3632: -11,-8 - 3635: -10,-8 - 3667: -8,7 - 3672: -8,9 - 3674: -10,-28 - 3679: -9,-30 - 3682: -8,-32 - 3686: 2,-27 - 3700: 10,-27 - 3708: 11,-26 - 3716: 11,-20 - 3729: 12,-20 - 3737: 4,16 - 3745: 4,17 - 3750: -10,-6 - 3755: -10,-7 - 3760: -10,-5 - 3764: -13,-20 - 3768: -13,-22 - 3771: 4,12 - 3779: 4,13 - 3787: 4,14 - 3795: 4,15 - 3803: 8,2 - 3811: 8,3 - 3855: -11,-8 - 3858: -10,-8 - 3866: -10,-7 - 3871: -10,-6 - 3876: -10,-5 - 3905: -8,7 - 3910: -8,9 - 3913: -13,-22 - 3915: -13,-20 - 3918: -10,-28 - 3923: -9,-30 - 3926: -8,-32 - 3930: 2,-27 - 3944: 10,-27 - 3952: 11,-26 - 3960: 11,-20 - 3973: 12,-20 - 3981: 4,16 - 3989: 4,17 - - node: - id: LatticeEdgeN - decals: - 182: 4,12 - 190: 4,13 - 198: 4,14 - 206: 4,15 - 214: 8,2 - 222: 8,3 - 228: 9,3 - 233: 9,4 - 238: 2,-13 - 243: 2,-12 - 248: 2,-11 - 253: 2,-10 - 260: -13,-22 - 265: -13,-20 - 268: -10,-28 - 273: -8,-32 - 278: 2,-27 - 283: 8,-32 - 289: 10,-27 - 297: 11,-26 - 303: 11,-20 - 308: 11,-19 - 315: 4,16 - 328: 4,12 - 336: 4,13 - 344: 4,14 - 352: 4,15 - 360: 8,2 - 368: 8,3 - 374: 9,3 - 379: 9,4 - 384: 2,-13 - 389: 2,-12 - 394: 2,-11 - 399: 2,-10 - 406: -13,-22 - 411: -13,-20 - 414: -10,-28 - 419: -8,-32 - 424: 2,-27 - 429: 8,-32 - 435: 10,-27 - 443: 11,-26 - 449: 11,-20 - 454: 11,-19 - 461: 4,16 - 474: 4,12 - 482: 4,13 - 490: 4,14 - 498: 4,15 - 506: 8,2 - 514: 8,3 - 520: 9,3 - 525: 9,4 - 530: 2,-13 - 535: 2,-12 - 540: 2,-11 - 545: 2,-10 - 552: -13,-22 - 557: -13,-20 - 560: -10,-28 - 565: -8,-32 - 570: 2,-27 - 575: 8,-32 - 581: 10,-27 - 589: 11,-26 - 595: 11,-20 - 600: 11,-19 - 607: 4,16 - 620: 4,12 - 628: 4,13 - 636: 4,14 - 644: 4,15 - 652: 8,2 - 660: 8,3 - 666: 9,3 - 671: 9,4 - 676: 2,-13 - 681: 2,-12 - 686: 2,-11 - 691: 2,-10 - 698: -13,-22 - 703: -13,-20 - 706: -10,-28 - 711: -8,-32 - 716: 2,-27 - 721: 8,-32 - 727: 10,-27 - 735: 11,-26 - 741: 11,-20 - 746: 11,-19 - 753: 4,16 - 766: 4,12 - 774: 4,13 - 782: 4,14 - 790: 4,15 - 798: 8,2 - 806: 8,3 - 812: 9,3 - 817: 9,4 - 822: 2,-13 - 827: 2,-12 - 832: 2,-11 - 837: 2,-10 - 844: -13,-22 - 849: -13,-20 - 852: -10,-28 - 857: -8,-32 - 862: 2,-27 - 867: 8,-32 - 873: 10,-27 - 881: 11,-26 - 887: 11,-20 - 892: 11,-19 - 899: 4,16 - 912: 4,12 - 920: 4,13 - 928: 4,14 - 936: 4,15 - 944: 8,2 - 952: 8,3 - 958: 9,3 - 963: 9,4 - 968: 2,-13 - 973: 2,-12 - 978: 2,-11 - 983: 2,-10 - 990: -13,-22 - 995: -13,-20 - 998: -10,-28 - 1003: -8,-32 - 1008: 2,-27 - 1013: 8,-32 - 1019: 10,-27 - 1027: 11,-26 - 1033: 11,-20 - 1038: 11,-19 - 1045: 4,16 - 1058: 4,12 - 1066: 4,13 - 1074: 4,14 - 1082: 4,15 - 1090: 8,2 - 1098: 8,3 - 1104: 9,3 - 1109: 9,4 - 1114: 2,-13 - 1119: 2,-12 - 1124: 2,-11 - 1129: 2,-10 - 1136: -13,-22 - 1141: -13,-20 - 1144: -10,-28 - 1149: -8,-32 - 1154: 2,-27 - 1159: 8,-32 - 1165: 10,-27 - 1173: 11,-26 - 1179: 11,-20 - 1184: 11,-19 - 1191: 4,16 - 1204: 4,12 - 1212: 4,13 - 1220: 4,14 - 1228: 4,15 - 1236: 8,2 - 1244: 8,3 - 1250: 9,3 - 1255: 9,4 - 1260: 2,-13 - 1265: 2,-12 - 1270: 2,-11 - 1275: 2,-10 - 1282: -13,-22 - 1287: -13,-20 - 1290: -10,-28 - 1295: -8,-32 - 1300: 2,-27 - 1305: 8,-32 - 1311: 10,-27 - 1319: 11,-26 - 1325: 11,-20 - 1330: 11,-19 - 1337: 4,16 - 1350: 4,12 - 1358: 4,13 - 1366: 4,14 - 1374: 4,15 - 1382: 8,2 - 1390: 8,3 - 1396: 9,3 - 1401: 9,4 - 1406: 2,-13 - 1411: 2,-12 - 1416: 2,-11 - 1421: 2,-10 - 1428: -13,-22 - 1433: -13,-20 - 1436: -10,-28 - 1441: -8,-32 - 1446: 2,-27 - 1451: 8,-32 - 1457: 10,-27 - 1465: 11,-26 - 1471: 11,-20 - 1476: 11,-19 - 1483: 4,16 - 1496: 4,12 - 1504: 4,13 - 1512: 4,14 - 1520: 4,15 - 1528: 8,2 - 1536: 8,3 - 1542: 9,3 - 1547: 9,4 - 1552: 2,-13 - 1557: 2,-12 - 1562: 2,-11 - 1567: 2,-10 - 1574: -13,-22 - 1579: -13,-20 - 1582: -10,-28 - 1587: -8,-32 - 1592: 2,-27 - 1597: 8,-32 - 1603: 10,-27 - 1611: 11,-26 - 1617: 11,-20 - 1622: 11,-19 - 1629: 4,16 - 1642: 4,12 - 1650: 4,13 - 1658: 4,14 - 1666: 4,15 - 1674: 8,2 - 1682: 8,3 - 1688: 9,3 - 1693: 9,4 - 1698: 2,-13 - 1703: 2,-12 - 1708: 2,-11 - 1713: 2,-10 - 1720: -13,-22 - 1725: -13,-20 - 1728: -10,-28 - 1735: 2,-27 - 1743: 10,-27 - 1751: 11,-26 - 1759: 4,16 - 1772: 11,-20 - 1778: 11,-19 - 1782: 8,-32 - 1785: 9,-30 - 1789: -8,-32 - 1792: -9,-30 - 1805: -10,-5 - 1810: -10,-6 - 1818: -10,-8 - 1826: -10,-7 - 1831: -8,7 - 1839: 4,12 - 1847: 4,13 - 1855: 4,14 - 1863: 4,15 - 1871: 8,2 - 1879: 8,3 - 1885: 9,3 - 1890: 9,4 - 1895: 2,-13 - 1900: 2,-12 - 1905: 2,-11 - 1910: 2,-10 - 1920: -10,-8 - 1928: -10,-7 - 1933: -10,-6 - 1938: -10,-5 - 1943: -8,7 - 1951: -13,-22 - 1956: -13,-20 - 1959: -10,-28 - 1964: -9,-30 - 1967: -8,-32 - 1972: 2,-27 - 1977: 8,-32 - 1980: 9,-30 - 1986: 10,-27 - 1994: 11,-26 - 2002: 11,-20 - 2008: 11,-19 - 2023: 4,16 - 2036: 4,12 - 2044: 4,13 - 2052: 4,14 - 2060: 4,15 - 2068: 8,2 - 2076: 8,3 - 2082: 9,3 - 2087: 9,4 - 2092: 2,-13 - 2097: 2,-12 - 2102: 2,-11 - 2107: 2,-10 - 2117: -10,-8 - 2125: -10,-7 - 2130: -10,-6 - 2135: -10,-5 - 2140: -8,7 - 2148: -13,-22 - 2153: -13,-20 - 2156: -10,-28 - 2161: -9,-30 - 2164: -8,-32 - 2169: 2,-27 - 2174: 8,-32 - 2177: 9,-30 - 2183: 10,-27 - 2191: 11,-26 - 2199: 11,-20 - 2205: 11,-19 - 2220: 4,16 - 2233: 4,12 - 2241: 4,13 - 2249: 4,14 - 2257: 4,15 - 2263: 2,-13 - 2268: 2,-12 - 2273: 2,-11 - 2278: 2,-10 - 2288: -10,-8 - 2296: -10,-7 - 2301: -10,-6 - 2306: -10,-5 - 2311: -8,7 - 2319: -13,-22 - 2324: -13,-20 - 2327: -10,-28 - 2332: -9,-30 - 2337: 2,-27 - 2342: 8,-32 - 2345: 9,-30 - 2351: 10,-27 - 2359: 11,-26 - 2367: 11,-20 - 2373: 11,-19 - 2388: 4,16 - 2409: 10,-5 - 2416: 9,4 - 2421: 9,3 - 2428: 8,3 - 2436: 8,2 - 2556: -8,-32 - 2642: 4,12 - 2650: 4,13 - 2658: 4,14 - 2666: 4,15 - 2674: 8,2 - 2682: 8,3 - 2688: 9,3 - 2693: 9,4 - 2698: 2,-13 - 2703: 2,-12 - 2708: 2,-11 - 2713: 2,-10 - 2717: 10,-5 - 2729: -10,-8 - 2737: -10,-7 - 2742: -10,-6 - 2747: -10,-5 - 2776: -8,7 - 2784: -13,-22 - 2789: -13,-20 - 2792: -10,-28 - 2797: -9,-30 - 2800: -8,-32 - 2805: 2,-27 - 2810: 8,-32 - 2813: 9,-30 - 2819: 10,-27 - 2827: 11,-26 - 2835: 11,-20 - 2841: 11,-19 - 2856: 4,16 - 2869: 4,12 - 2877: 4,13 - 2885: 4,14 - 2893: 4,15 - 2901: 8,2 - 2909: 8,3 - 2915: 9,3 - 2920: 9,4 - 2925: 2,-13 - 2930: 2,-12 - 2935: 2,-11 - 2940: 2,-10 - 2944: 10,-5 - 2956: -10,-8 - 2964: -10,-7 - 2969: -10,-6 - 2974: -10,-5 - 3003: -8,7 - 3011: -13,-22 - 3016: -13,-20 - 3019: -10,-28 - 3024: -9,-30 - 3027: -8,-32 - 3032: 2,-27 - 3037: 8,-32 - 3040: 9,-30 - 3046: 10,-27 - 3054: 11,-26 - 3062: 11,-20 - 3068: 11,-19 - 3083: 4,16 - 3096: 4,12 - 3104: 4,13 - 3112: 4,14 - 3120: 4,15 - 3128: 8,2 - 3136: 8,3 - 3142: 9,3 - 3147: 9,4 - 3152: 2,-13 - 3157: 2,-12 - 3162: 2,-11 - 3167: 2,-10 - 3171: 10,-5 - 3183: -10,-8 - 3191: -10,-7 - 3196: -10,-6 - 3201: -10,-5 - 3230: -8,7 - 3238: -13,-22 - 3243: -13,-20 - 3246: -10,-28 - 3251: -9,-30 - 3254: -8,-32 - 3259: 2,-27 - 3264: 8,-32 - 3267: 9,-30 - 3273: 10,-27 - 3281: 11,-26 - 3289: 11,-20 - 3295: 11,-19 - 3310: 4,16 - 3323: 4,12 - 3331: 4,13 - 3339: 4,14 - 3347: 4,15 - 3355: 8,2 - 3363: 8,3 - 3369: 9,3 - 3374: 9,4 - 3379: 2,-13 - 3384: 2,-12 - 3389: 2,-11 - 3394: 2,-10 - 3398: 10,-5 - 3410: -10,-8 - 3418: -10,-7 - 3423: -10,-6 - 3428: -10,-5 - 3457: -8,7 - 3465: -13,-22 - 3470: -13,-20 - 3473: -10,-28 - 3478: -9,-30 - 3481: -8,-32 - 3486: 2,-27 - 3491: 8,-32 - 3494: 9,-30 - 3500: 10,-27 - 3508: 11,-26 - 3516: 11,-20 - 3522: 11,-19 - 3537: 4,16 - 3550: 4,12 - 3558: 4,13 - 3566: 4,14 - 3574: 4,15 - 3582: 8,2 - 3590: 8,3 - 3596: 9,3 - 3601: 9,4 - 3606: 2,-13 - 3611: 2,-12 - 3616: 2,-11 - 3621: 2,-10 - 3625: 10,-5 - 3637: -10,-8 - 3669: -8,7 - 3675: -10,-28 - 3680: -9,-30 - 3683: -8,-32 - 3688: 2,-27 - 3693: 8,-32 - 3696: 9,-30 - 3702: 10,-27 - 3710: 11,-26 - 3718: 11,-20 - 3724: 11,-19 - 3739: 4,16 - 3752: -10,-6 - 3757: -10,-7 - 3762: -10,-5 - 3765: -13,-20 - 3773: 4,12 - 3781: 4,13 - 3789: 4,14 - 3797: 4,15 - 3805: 8,2 - 3813: 8,3 - 3819: 9,3 - 3824: 9,4 - 3829: 2,-13 - 3834: 2,-12 - 3839: 2,-11 - 3844: 2,-10 - 3848: 10,-5 - 3860: -10,-8 - 3868: -10,-7 - 3873: -10,-6 - 3878: -10,-5 - 3907: -8,7 - 3916: -13,-20 - 3919: -10,-28 - 3924: -9,-30 - 3927: -8,-32 - 3932: 2,-27 - 3937: 8,-32 - 3940: 9,-30 - 3946: 10,-27 - 3954: 11,-26 - 3962: 11,-20 - 3968: 11,-19 - 3983: 4,16 - - node: - id: LatticeEdgeS - decals: - 179: 4,12 - 187: 4,13 - 195: 4,14 - 203: 4,15 - 211: 8,2 - 219: 8,3 - 227: 9,3 - 232: 9,4 - 237: 2,-13 - 242: 2,-12 - 247: 2,-11 - 252: 2,-10 - 257: -13,-22 - 262: -13,-20 - 275: 2,-27 - 286: 10,-27 - 294: 11,-26 - 302: 11,-20 - 307: 11,-19 - 312: 4,16 - 320: 4,17 - 325: 4,12 - 333: 4,13 - 341: 4,14 - 349: 4,15 - 357: 8,2 - 365: 8,3 - 373: 9,3 - 378: 9,4 - 383: 2,-13 - 388: 2,-12 - 393: 2,-11 - 398: 2,-10 - 403: -13,-22 - 408: -13,-20 - 421: 2,-27 - 432: 10,-27 - 440: 11,-26 - 448: 11,-20 - 453: 11,-19 - 458: 4,16 - 466: 4,17 - 471: 4,12 - 479: 4,13 - 487: 4,14 - 495: 4,15 - 503: 8,2 - 511: 8,3 - 519: 9,3 - 524: 9,4 - 529: 2,-13 - 534: 2,-12 - 539: 2,-11 - 544: 2,-10 - 549: -13,-22 - 554: -13,-20 - 567: 2,-27 - 578: 10,-27 - 586: 11,-26 - 594: 11,-20 - 599: 11,-19 - 604: 4,16 - 612: 4,17 - 617: 4,12 - 625: 4,13 - 633: 4,14 - 641: 4,15 - 649: 8,2 - 657: 8,3 - 665: 9,3 - 670: 9,4 - 675: 2,-13 - 680: 2,-12 - 685: 2,-11 - 690: 2,-10 - 695: -13,-22 - 700: -13,-20 - 713: 2,-27 - 724: 10,-27 - 732: 11,-26 - 740: 11,-20 - 745: 11,-19 - 750: 4,16 - 758: 4,17 - 763: 4,12 - 771: 4,13 - 779: 4,14 - 787: 4,15 - 795: 8,2 - 803: 8,3 - 811: 9,3 - 816: 9,4 - 821: 2,-13 - 826: 2,-12 - 831: 2,-11 - 836: 2,-10 - 841: -13,-22 - 846: -13,-20 - 859: 2,-27 - 870: 10,-27 - 878: 11,-26 - 886: 11,-20 - 891: 11,-19 - 896: 4,16 - 904: 4,17 - 909: 4,12 - 917: 4,13 - 925: 4,14 - 933: 4,15 - 941: 8,2 - 949: 8,3 - 957: 9,3 - 962: 9,4 - 967: 2,-13 - 972: 2,-12 - 977: 2,-11 - 982: 2,-10 - 987: -13,-22 - 992: -13,-20 - 1005: 2,-27 - 1016: 10,-27 - 1024: 11,-26 - 1032: 11,-20 - 1037: 11,-19 - 1042: 4,16 - 1050: 4,17 - 1055: 4,12 - 1063: 4,13 - 1071: 4,14 - 1079: 4,15 - 1087: 8,2 - 1095: 8,3 - 1103: 9,3 - 1108: 9,4 - 1113: 2,-13 - 1118: 2,-12 - 1123: 2,-11 - 1128: 2,-10 - 1133: -13,-22 - 1138: -13,-20 - 1151: 2,-27 - 1162: 10,-27 - 1170: 11,-26 - 1178: 11,-20 - 1183: 11,-19 - 1188: 4,16 - 1196: 4,17 - 1201: 4,12 - 1209: 4,13 - 1217: 4,14 - 1225: 4,15 - 1233: 8,2 - 1241: 8,3 - 1249: 9,3 - 1254: 9,4 - 1259: 2,-13 - 1264: 2,-12 - 1269: 2,-11 - 1274: 2,-10 - 1279: -13,-22 - 1284: -13,-20 - 1297: 2,-27 - 1308: 10,-27 - 1316: 11,-26 - 1324: 11,-20 - 1329: 11,-19 - 1334: 4,16 - 1342: 4,17 - 1347: 4,12 - 1355: 4,13 - 1363: 4,14 - 1371: 4,15 - 1379: 8,2 - 1387: 8,3 - 1395: 9,3 - 1400: 9,4 - 1405: 2,-13 - 1410: 2,-12 - 1415: 2,-11 - 1420: 2,-10 - 1425: -13,-22 - 1430: -13,-20 - 1443: 2,-27 - 1454: 10,-27 - 1462: 11,-26 - 1470: 11,-20 - 1475: 11,-19 - 1480: 4,16 - 1488: 4,17 - 1493: 4,12 - 1501: 4,13 - 1509: 4,14 - 1517: 4,15 - 1525: 8,2 - 1533: 8,3 - 1541: 9,3 - 1546: 9,4 - 1551: 2,-13 - 1556: 2,-12 - 1561: 2,-11 - 1566: 2,-10 - 1571: -13,-22 - 1576: -13,-20 - 1589: 2,-27 - 1600: 10,-27 - 1608: 11,-26 - 1616: 11,-20 - 1621: 11,-19 - 1626: 4,16 - 1634: 4,17 - 1639: 4,12 - 1647: 4,13 - 1655: 4,14 - 1663: 4,15 - 1671: 8,2 - 1679: 8,3 - 1687: 9,3 - 1692: 9,4 - 1697: 2,-13 - 1702: 2,-12 - 1707: 2,-11 - 1712: 2,-10 - 1717: -13,-22 - 1722: -13,-20 - 1732: 2,-27 - 1740: 10,-27 - 1748: 11,-26 - 1756: 4,16 - 1764: 4,17 - 1769: 11,-20 - 1777: 11,-19 - 1794: 13,-20 - 1797: 12,-20 - 1802: -10,-5 - 1807: -10,-6 - 1812: -11,-8 - 1815: -10,-8 - 1823: -10,-7 - 1828: -8,7 - 1833: -8,9 - 1836: 4,12 - 1844: 4,13 - 1852: 4,14 - 1860: 4,15 - 1868: 8,2 - 1876: 8,3 - 1884: 9,3 - 1889: 9,4 - 1894: 2,-13 - 1899: 2,-12 - 1904: 2,-11 - 1909: 2,-10 - 1914: -11,-8 - 1917: -10,-8 - 1925: -10,-7 - 1930: -10,-6 - 1935: -10,-5 - 1940: -8,7 - 1945: -8,9 - 1948: -13,-22 - 1953: -13,-20 - 1969: 2,-27 - 1983: 10,-27 - 1991: 11,-26 - 1999: 11,-20 - 2007: 11,-19 - 2012: 12,-20 - 2017: 13,-20 - 2020: 4,16 - 2028: 4,17 - 2033: 4,12 - 2041: 4,13 - 2049: 4,14 - 2057: 4,15 - 2065: 8,2 - 2073: 8,3 - 2081: 9,3 - 2086: 9,4 - 2091: 2,-13 - 2096: 2,-12 - 2101: 2,-11 - 2106: 2,-10 - 2111: -11,-8 - 2114: -10,-8 - 2122: -10,-7 - 2127: -10,-6 - 2132: -10,-5 - 2137: -8,7 - 2142: -8,9 - 2145: -13,-22 - 2150: -13,-20 - 2166: 2,-27 - 2180: 10,-27 - 2188: 11,-26 - 2196: 11,-20 - 2204: 11,-19 - 2209: 12,-20 - 2214: 13,-20 - 2217: 4,16 - 2225: 4,17 - 2230: 4,12 - 2238: 4,13 - 2246: 4,14 - 2254: 4,15 - 2262: 2,-13 - 2267: 2,-12 - 2272: 2,-11 - 2277: 2,-10 - 2282: -11,-8 - 2285: -10,-8 - 2293: -10,-7 - 2298: -10,-6 - 2303: -10,-5 - 2308: -8,7 - 2313: -8,9 - 2316: -13,-22 - 2321: -13,-20 - 2334: 2,-27 - 2348: 10,-27 - 2356: 11,-26 - 2364: 11,-20 - 2372: 11,-19 - 2377: 12,-20 - 2382: 13,-20 - 2385: 4,16 - 2393: 4,17 - 2412: 10,-3 - 2415: 9,4 - 2420: 9,3 - 2425: 8,3 - 2433: 8,2 - 2639: 4,12 - 2647: 4,13 - 2655: 4,14 - 2663: 4,15 - 2671: 8,2 - 2679: 8,3 - 2687: 9,3 - 2692: 9,4 - 2697: 2,-13 - 2702: 2,-12 - 2707: 2,-11 - 2712: 2,-10 - 2720: 10,-3 - 2723: -11,-8 - 2726: -10,-8 - 2734: -10,-7 - 2739: -10,-6 - 2744: -10,-5 - 2773: -8,7 - 2778: -8,9 - 2781: -13,-22 - 2786: -13,-20 - 2802: 2,-27 - 2816: 10,-27 - 2824: 11,-26 - 2832: 11,-20 - 2840: 11,-19 - 2845: 12,-20 - 2850: 13,-20 - 2853: 4,16 - 2861: 4,17 - 2866: 4,12 - 2874: 4,13 - 2882: 4,14 - 2890: 4,15 - 2898: 8,2 - 2906: 8,3 - 2914: 9,3 - 2919: 9,4 - 2924: 2,-13 - 2929: 2,-12 - 2934: 2,-11 - 2939: 2,-10 - 2947: 10,-3 - 2950: -11,-8 - 2953: -10,-8 - 2961: -10,-7 - 2966: -10,-6 - 2971: -10,-5 - 3000: -8,7 - 3005: -8,9 - 3008: -13,-22 - 3013: -13,-20 - 3029: 2,-27 - 3043: 10,-27 - 3051: 11,-26 - 3059: 11,-20 - 3067: 11,-19 - 3072: 12,-20 - 3077: 13,-20 - 3080: 4,16 - 3088: 4,17 - 3093: 4,12 - 3101: 4,13 - 3109: 4,14 - 3117: 4,15 - 3125: 8,2 - 3133: 8,3 - 3141: 9,3 - 3146: 9,4 - 3151: 2,-13 - 3156: 2,-12 - 3161: 2,-11 - 3166: 2,-10 - 3174: 10,-3 - 3177: -11,-8 - 3180: -10,-8 - 3188: -10,-7 - 3193: -10,-6 - 3198: -10,-5 - 3227: -8,7 - 3232: -8,9 - 3235: -13,-22 - 3240: -13,-20 - 3256: 2,-27 - 3270: 10,-27 - 3278: 11,-26 - 3286: 11,-20 - 3294: 11,-19 - 3299: 12,-20 - 3304: 13,-20 - 3307: 4,16 - 3315: 4,17 - 3320: 4,12 - 3328: 4,13 - 3336: 4,14 - 3344: 4,15 - 3352: 8,2 - 3360: 8,3 - 3368: 9,3 - 3373: 9,4 - 3378: 2,-13 - 3383: 2,-12 - 3388: 2,-11 - 3393: 2,-10 - 3401: 10,-3 - 3404: -11,-8 - 3407: -10,-8 - 3415: -10,-7 - 3420: -10,-6 - 3425: -10,-5 - 3454: -8,7 - 3459: -8,9 - 3462: -13,-22 - 3467: -13,-20 - 3483: 2,-27 - 3497: 10,-27 - 3505: 11,-26 - 3513: 11,-20 - 3521: 11,-19 - 3526: 12,-20 - 3531: 13,-20 - 3534: 4,16 - 3542: 4,17 - 3547: 4,12 - 3555: 4,13 - 3563: 4,14 - 3571: 4,15 - 3579: 8,2 - 3587: 8,3 - 3595: 9,3 - 3600: 9,4 - 3605: 2,-13 - 3610: 2,-12 - 3615: 2,-11 - 3620: 2,-10 - 3628: 10,-3 - 3631: -11,-8 - 3634: -10,-8 - 3666: -8,7 - 3671: -8,9 - 3685: 2,-27 - 3699: 10,-27 - 3707: 11,-26 - 3715: 11,-20 - 3723: 11,-19 - 3728: 12,-20 - 3733: 13,-20 - 3736: 4,16 - 3744: 4,17 - 3749: -10,-6 - 3754: -10,-7 - 3759: -10,-5 - 3767: -13,-22 - 3770: 4,12 - 3778: 4,13 - 3786: 4,14 - 3794: 4,15 - 3802: 8,2 - 3810: 8,3 - 3818: 9,3 - 3823: 9,4 - 3828: 2,-13 - 3833: 2,-12 - 3838: 2,-11 - 3843: 2,-10 - 3851: 10,-3 - 3854: -11,-8 - 3857: -10,-8 - 3865: -10,-7 - 3870: -10,-6 - 3875: -10,-5 - 3904: -8,7 - 3909: -8,9 - 3912: -13,-22 - 3929: 2,-27 - 3943: 10,-27 - 3951: 11,-26 - 3959: 11,-20 - 3967: 11,-19 - 3972: 12,-20 - 3977: 13,-20 - 3980: 4,16 - 3988: 4,17 - - node: - id: LatticeEdgeW - decals: - 184: 4,12 - 192: 4,13 - 200: 4,14 - 208: 4,15 - 216: 8,2 - 224: 8,3 - 229: 9,3 - 234: 9,4 - 239: 2,-13 - 244: 2,-12 - 249: 2,-11 - 254: 2,-10 - 270: -10,-28 - 280: 2,-27 - 284: 8,-32 - 291: 10,-27 - 299: 11,-26 - 304: 11,-20 - 309: 11,-19 - 317: 4,16 - 323: 4,17 - 330: 4,12 - 338: 4,13 - 346: 4,14 - 354: 4,15 - 362: 8,2 - 370: 8,3 - 375: 9,3 - 380: 9,4 - 385: 2,-13 - 390: 2,-12 - 395: 2,-11 - 400: 2,-10 - 416: -10,-28 - 426: 2,-27 - 430: 8,-32 - 437: 10,-27 - 445: 11,-26 - 450: 11,-20 - 455: 11,-19 - 463: 4,16 - 469: 4,17 - 476: 4,12 - 484: 4,13 - 492: 4,14 - 500: 4,15 - 508: 8,2 - 516: 8,3 - 521: 9,3 - 526: 9,4 - 531: 2,-13 - 536: 2,-12 - 541: 2,-11 - 546: 2,-10 - 562: -10,-28 - 572: 2,-27 - 576: 8,-32 - 583: 10,-27 - 591: 11,-26 - 596: 11,-20 - 601: 11,-19 - 609: 4,16 - 615: 4,17 - 622: 4,12 - 630: 4,13 - 638: 4,14 - 646: 4,15 - 654: 8,2 - 662: 8,3 - 667: 9,3 - 672: 9,4 - 677: 2,-13 - 682: 2,-12 - 687: 2,-11 - 692: 2,-10 - 708: -10,-28 - 718: 2,-27 - 722: 8,-32 - 729: 10,-27 - 737: 11,-26 - 742: 11,-20 - 747: 11,-19 - 755: 4,16 - 761: 4,17 - 768: 4,12 - 776: 4,13 - 784: 4,14 - 792: 4,15 - 800: 8,2 - 808: 8,3 - 813: 9,3 - 818: 9,4 - 823: 2,-13 - 828: 2,-12 - 833: 2,-11 - 838: 2,-10 - 854: -10,-28 - 864: 2,-27 - 868: 8,-32 - 875: 10,-27 - 883: 11,-26 - 888: 11,-20 - 893: 11,-19 - 901: 4,16 - 907: 4,17 - 914: 4,12 - 922: 4,13 - 930: 4,14 - 938: 4,15 - 946: 8,2 - 954: 8,3 - 959: 9,3 - 964: 9,4 - 969: 2,-13 - 974: 2,-12 - 979: 2,-11 - 984: 2,-10 - 1000: -10,-28 - 1010: 2,-27 - 1014: 8,-32 - 1021: 10,-27 - 1029: 11,-26 - 1034: 11,-20 - 1039: 11,-19 - 1047: 4,16 - 1053: 4,17 - 1060: 4,12 - 1068: 4,13 - 1076: 4,14 - 1084: 4,15 - 1092: 8,2 - 1100: 8,3 - 1105: 9,3 - 1110: 9,4 - 1115: 2,-13 - 1120: 2,-12 - 1125: 2,-11 - 1130: 2,-10 - 1146: -10,-28 - 1156: 2,-27 - 1160: 8,-32 - 1167: 10,-27 - 1175: 11,-26 - 1180: 11,-20 - 1185: 11,-19 - 1193: 4,16 - 1199: 4,17 - 1206: 4,12 - 1214: 4,13 - 1222: 4,14 - 1230: 4,15 - 1238: 8,2 - 1246: 8,3 - 1251: 9,3 - 1256: 9,4 - 1261: 2,-13 - 1266: 2,-12 - 1271: 2,-11 - 1276: 2,-10 - 1292: -10,-28 - 1302: 2,-27 - 1306: 8,-32 - 1313: 10,-27 - 1321: 11,-26 - 1326: 11,-20 - 1331: 11,-19 - 1339: 4,16 - 1345: 4,17 - 1352: 4,12 - 1360: 4,13 - 1368: 4,14 - 1376: 4,15 - 1384: 8,2 - 1392: 8,3 - 1397: 9,3 - 1402: 9,4 - 1407: 2,-13 - 1412: 2,-12 - 1417: 2,-11 - 1422: 2,-10 - 1438: -10,-28 - 1448: 2,-27 - 1452: 8,-32 - 1459: 10,-27 - 1467: 11,-26 - 1472: 11,-20 - 1477: 11,-19 - 1485: 4,16 - 1491: 4,17 - 1498: 4,12 - 1506: 4,13 - 1514: 4,14 - 1522: 4,15 - 1530: 8,2 - 1538: 8,3 - 1543: 9,3 - 1548: 9,4 - 1553: 2,-13 - 1558: 2,-12 - 1563: 2,-11 - 1568: 2,-10 - 1584: -10,-28 - 1594: 2,-27 - 1598: 8,-32 - 1605: 10,-27 - 1613: 11,-26 - 1618: 11,-20 - 1623: 11,-19 - 1631: 4,16 - 1637: 4,17 - 1644: 4,12 - 1652: 4,13 - 1660: 4,14 - 1668: 4,15 - 1676: 8,2 - 1684: 8,3 - 1689: 9,3 - 1694: 9,4 - 1699: 2,-13 - 1704: 2,-12 - 1709: 2,-11 - 1714: 2,-10 - 1730: -10,-28 - 1737: 2,-27 - 1745: 10,-27 - 1753: 11,-26 - 1761: 4,16 - 1767: 4,17 - 1774: 11,-20 - 1779: 11,-19 - 1783: 8,-32 - 1786: 9,-30 - 1795: 13,-20 - 1800: 12,-20 - 1820: -10,-8 - 1841: 4,12 - 1849: 4,13 - 1857: 4,14 - 1865: 4,15 - 1873: 8,2 - 1881: 8,3 - 1886: 9,3 - 1891: 9,4 - 1896: 2,-13 - 1901: 2,-12 - 1906: 2,-11 - 1911: 2,-10 - 1922: -10,-8 - 1961: -10,-28 - 1974: 2,-27 - 1978: 8,-32 - 1981: 9,-30 - 1988: 10,-27 - 1996: 11,-26 - 2004: 11,-20 - 2009: 11,-19 - 2015: 12,-20 - 2018: 13,-20 - 2025: 4,16 - 2031: 4,17 - 2038: 4,12 - 2046: 4,13 - 2054: 4,14 - 2062: 4,15 - 2070: 8,2 - 2078: 8,3 - 2083: 9,3 - 2088: 9,4 - 2093: 2,-13 - 2098: 2,-12 - 2103: 2,-11 - 2108: 2,-10 - 2119: -10,-8 - 2158: -10,-28 - 2171: 2,-27 - 2175: 8,-32 - 2178: 9,-30 + 1617: 4,16 + 1623: 4,17 + 1630: 11,-20 + 1635: 11,-19 + 1651: 13,-20 + 1656: 12,-20 + 1676: -10,-8 + 1697: 4,12 + 1705: 4,13 + 1713: 4,14 + 1721: 4,15 + 1729: 8,2 + 1737: 8,3 + 1742: 9,3 + 1747: 9,4 + 1752: 2,-13 + 1757: 2,-12 + 1762: 2,-11 + 1767: 2,-10 + 1778: -10,-8 + 1836: 10,-27 + 1844: 11,-26 + 1852: 11,-20 + 1857: 11,-19 + 1863: 12,-20 + 1866: 13,-20 + 1873: 4,16 + 1879: 4,17 + 1886: 4,12 + 1894: 4,13 + 1902: 4,14 + 1910: 4,15 + 1918: 8,2 + 1926: 8,3 + 1931: 9,3 + 1936: 9,4 + 1941: 2,-13 + 1946: 2,-12 + 1951: 2,-11 + 1956: 2,-10 + 1967: -10,-8 + 2025: 10,-27 + 2033: 11,-26 + 2041: 11,-20 + 2046: 11,-19 + 2052: 12,-20 + 2055: 13,-20 + 2062: 4,16 + 2068: 4,17 + 2075: 4,12 + 2083: 4,13 + 2091: 4,14 + 2099: 4,15 + 2104: 2,-13 + 2109: 2,-12 + 2114: 2,-11 + 2119: 2,-10 + 2130: -10,-8 2185: 10,-27 2193: 11,-26 2201: 11,-20 @@ -3983,417 +2400,2554 @@ entities: 2215: 13,-20 2222: 4,16 2228: 4,17 - 2235: 4,12 - 2243: 4,13 - 2251: 4,14 - 2259: 4,15 - 2264: 2,-13 - 2269: 2,-12 - 2274: 2,-11 - 2279: 2,-10 - 2290: -10,-8 - 2329: -10,-28 - 2339: 2,-27 - 2343: 8,-32 - 2346: 9,-30 - 2353: 10,-27 - 2361: 11,-26 - 2369: 11,-20 - 2374: 11,-19 - 2380: 12,-20 - 2383: 13,-20 - 2390: 4,16 - 2396: 4,17 - 2410: 10,-5 - 2413: 10,-3 - 2417: 9,4 - 2422: 9,3 - 2430: 8,3 - 2438: 8,2 - 2644: 4,12 - 2652: 4,13 - 2660: 4,14 - 2668: 4,15 - 2676: 8,2 - 2684: 8,3 - 2689: 9,3 - 2694: 9,4 - 2699: 2,-13 - 2704: 2,-12 - 2709: 2,-11 - 2714: 2,-10 - 2718: 10,-5 - 2721: 10,-3 - 2731: -10,-8 - 2794: -10,-28 - 2807: 2,-27 - 2811: 8,-32 - 2814: 9,-30 - 2821: 10,-27 - 2829: 11,-26 - 2837: 11,-20 - 2842: 11,-19 - 2848: 12,-20 - 2851: 13,-20 - 2858: 4,16 - 2864: 4,17 - 2871: 4,12 - 2879: 4,13 - 2887: 4,14 - 2895: 4,15 - 2903: 8,2 - 2911: 8,3 - 2916: 9,3 - 2921: 9,4 - 2926: 2,-13 - 2931: 2,-12 - 2936: 2,-11 - 2941: 2,-10 - 2945: 10,-5 - 2948: 10,-3 - 2958: -10,-8 - 3021: -10,-28 - 3034: 2,-27 - 3038: 8,-32 - 3041: 9,-30 - 3048: 10,-27 - 3056: 11,-26 - 3064: 11,-20 - 3069: 11,-19 - 3075: 12,-20 - 3078: 13,-20 - 3085: 4,16 - 3091: 4,17 - 3098: 4,12 - 3106: 4,13 - 3114: 4,14 - 3122: 4,15 - 3130: 8,2 - 3138: 8,3 - 3143: 9,3 - 3148: 9,4 - 3153: 2,-13 - 3158: 2,-12 - 3163: 2,-11 - 3168: 2,-10 - 3172: 10,-5 - 3175: 10,-3 - 3185: -10,-8 - 3248: -10,-28 - 3261: 2,-27 - 3265: 8,-32 - 3268: 9,-30 - 3275: 10,-27 - 3283: 11,-26 - 3291: 11,-20 - 3296: 11,-19 - 3302: 12,-20 - 3305: 13,-20 - 3312: 4,16 - 3318: 4,17 - 3325: 4,12 - 3333: 4,13 - 3341: 4,14 - 3349: 4,15 - 3357: 8,2 - 3365: 8,3 - 3370: 9,3 - 3375: 9,4 - 3380: 2,-13 - 3385: 2,-12 - 3390: 2,-11 - 3395: 2,-10 - 3399: 10,-5 - 3402: 10,-3 - 3412: -10,-8 - 3475: -10,-28 - 3488: 2,-27 - 3492: 8,-32 - 3495: 9,-30 - 3502: 10,-27 - 3510: 11,-26 - 3518: 11,-20 - 3523: 11,-19 - 3529: 12,-20 - 3532: 13,-20 - 3539: 4,16 - 3545: 4,17 - 3552: 4,12 - 3560: 4,13 - 3568: 4,14 - 3576: 4,15 - 3584: 8,2 - 3592: 8,3 - 3597: 9,3 - 3602: 9,4 - 3607: 2,-13 - 3612: 2,-12 - 3617: 2,-11 - 3622: 2,-10 - 3626: 10,-5 - 3629: 10,-3 - 3639: -10,-8 - 3677: -10,-28 - 3690: 2,-27 - 3694: 8,-32 - 3697: 9,-30 - 3704: 10,-27 - 3712: 11,-26 - 3720: 11,-20 - 3725: 11,-19 - 3731: 12,-20 - 3734: 13,-20 - 3741: 4,16 - 3747: 4,17 + 2245: 10,-3 + 2249: 9,4 + 2254: 9,3 + 2262: 8,3 + 2270: 8,2 + 2474: 4,12 + 2482: 4,13 + 2490: 4,14 + 2498: 4,15 + 2506: 8,2 + 2514: 8,3 + 2519: 9,3 + 2524: 9,4 + 2529: 2,-13 + 2534: 2,-12 + 2539: 2,-11 + 2544: 2,-10 + 2551: 10,-3 + 2561: -10,-8 + 2643: 10,-27 + 2651: 11,-26 + 2659: 11,-20 + 2664: 11,-19 + 2670: 12,-20 + 2673: 13,-20 + 2680: 4,16 + 2686: 4,17 + 2693: 4,12 + 2701: 4,13 + 2709: 4,14 + 2717: 4,15 + 2725: 8,2 + 2733: 8,3 + 2738: 9,3 + 2743: 9,4 + 2748: 2,-13 + 2753: 2,-12 + 2758: 2,-11 + 2763: 2,-10 + 2770: 10,-3 + 2780: -10,-8 + 2862: 10,-27 + 2870: 11,-26 + 2878: 11,-20 + 2883: 11,-19 + 2889: 12,-20 + 2892: 13,-20 + 2899: 4,16 + 2905: 4,17 + 2912: 4,12 + 2920: 4,13 + 2928: 4,14 + 2936: 4,15 + 2944: 8,2 + 2952: 8,3 + 2957: 9,3 + 2962: 9,4 + 2967: 2,-13 + 2972: 2,-12 + 2977: 2,-11 + 2982: 2,-10 + 2989: 10,-3 + 2999: -10,-8 + 3081: 10,-27 + 3089: 11,-26 + 3097: 11,-20 + 3102: 11,-19 + 3108: 12,-20 + 3111: 13,-20 + 3118: 4,16 + 3124: 4,17 + 3131: 4,12 + 3139: 4,13 + 3147: 4,14 + 3155: 4,15 + 3163: 8,2 + 3171: 8,3 + 3176: 9,3 + 3181: 9,4 + 3186: 2,-13 + 3191: 2,-12 + 3196: 2,-11 + 3201: 2,-10 + 3208: 10,-3 + 3218: -10,-8 + 3300: 10,-27 + 3308: 11,-26 + 3316: 11,-20 + 3321: 11,-19 + 3327: 12,-20 + 3330: 13,-20 + 3337: 4,16 + 3343: 4,17 + 3350: 4,12 + 3358: 4,13 + 3366: 4,14 + 3374: 4,15 + 3382: 8,2 + 3390: 8,3 + 3395: 9,3 + 3400: 9,4 + 3405: 2,-13 + 3410: 2,-12 + 3415: 2,-11 + 3420: 2,-10 + 3427: 10,-3 + 3437: -10,-8 + 3494: 10,-27 + 3502: 11,-26 + 3510: 11,-20 + 3515: 11,-19 + 3521: 12,-20 + 3524: 13,-20 + 3531: 4,16 + 3537: 4,17 + 3565: 4,12 + 3573: 4,13 + 3581: 4,14 + 3589: 4,15 + 3597: 8,2 + 3605: 8,3 + 3610: 9,3 + 3615: 9,4 + 3620: 2,-13 + 3625: 2,-12 + 3630: 2,-11 + 3635: 2,-10 + 3642: 10,-3 + 3652: -10,-8 + 3730: 10,-27 + 3738: 11,-26 + 3746: 11,-20 + 3751: 11,-19 + 3757: 12,-20 + 3760: 13,-20 + 3767: 4,16 + 3773: 4,17 + 3780: 4,12 + 3788: 4,13 + 3796: 4,14 + 3804: 4,15 + 3812: 8,2 + 3820: 8,3 + 3825: 9,3 + 3830: 9,4 + 3835: 2,-13 + 3840: 2,-12 + 3845: 2,-11 + 3850: 2,-10 + 3857: 10,-3 + 3867: -10,-8 + 3945: 10,-27 + 3953: 11,-26 + 3961: 11,-20 + 3966: 11,-19 + 3972: 12,-20 + 3975: 13,-20 + 3982: 4,16 + 3988: 4,17 + 4104: 4,12 + 4112: 4,13 + 4120: 4,14 + 4128: 4,15 + 4136: 8,2 + 4144: 8,3 + 4149: 9,3 + 4154: 9,4 + 4159: 2,-13 + 4164: 2,-12 + 4169: 2,-11 + 4174: 2,-10 + 4181: 10,-3 + 4191: -10,-8 + 4269: 10,-27 + 4277: 11,-26 + 4285: 11,-20 + 4290: 11,-19 + 4296: 12,-20 + 4299: 13,-20 + 4306: 4,16 + 4312: 4,17 + 4319: 4,12 + 4327: 4,13 + 4335: 4,14 + 4343: 4,15 + 4351: 8,2 + 4359: 8,3 + 4364: 9,3 + 4369: 9,4 + 4374: 2,-13 + 4379: 2,-12 + 4384: 2,-11 + 4389: 2,-10 + 4396: 10,-3 + 4406: -10,-8 + 4484: 10,-27 + 4492: 11,-26 + 4500: 11,-20 + 4505: 11,-19 + 4511: 12,-20 + 4514: 13,-20 + 4521: 4,16 + 4527: 4,17 + - node: + id: LatticeEdgeE + decals: + 123: 4,12 + 131: 4,13 + 139: 4,14 + 147: 4,15 + 155: 8,2 + 163: 8,3 + 201: -13,-22 + 206: -13,-20 + 210: -10,-28 + 215: -8,-32 + 222: 10,-27 + 230: 11,-26 + 248: 4,16 + 256: 4,17 + 261: 4,12 + 269: 4,13 + 277: 4,14 + 285: 4,15 + 293: 8,2 + 301: 8,3 + 339: -13,-22 + 344: -13,-20 + 348: -10,-28 + 353: -8,-32 + 360: 10,-27 + 368: 11,-26 + 386: 4,16 + 394: 4,17 + 399: 4,12 + 407: 4,13 + 415: 4,14 + 423: 4,15 + 431: 8,2 + 439: 8,3 + 477: -13,-22 + 482: -13,-20 + 486: -10,-28 + 491: -8,-32 + 498: 10,-27 + 506: 11,-26 + 524: 4,16 + 532: 4,17 + 537: 4,12 + 545: 4,13 + 553: 4,14 + 561: 4,15 + 569: 8,2 + 577: 8,3 + 615: -13,-22 + 620: -13,-20 + 624: -10,-28 + 629: -8,-32 + 636: 10,-27 + 644: 11,-26 + 662: 4,16 + 670: 4,17 + 675: 4,12 + 683: 4,13 + 691: 4,14 + 699: 4,15 + 707: 8,2 + 715: 8,3 + 753: -13,-22 + 758: -13,-20 + 762: -10,-28 + 767: -8,-32 + 774: 10,-27 + 782: 11,-26 + 800: 4,16 + 808: 4,17 + 813: 4,12 + 821: 4,13 + 829: 4,14 + 837: 4,15 + 845: 8,2 + 853: 8,3 + 891: -13,-22 + 896: -13,-20 + 900: -10,-28 + 905: -8,-32 + 912: 10,-27 + 920: 11,-26 + 938: 4,16 + 946: 4,17 + 951: 4,12 + 959: 4,13 + 967: 4,14 + 975: 4,15 + 983: 8,2 + 991: 8,3 + 1029: -13,-22 + 1034: -13,-20 + 1038: -10,-28 + 1043: -8,-32 + 1050: 10,-27 + 1058: 11,-26 + 1076: 4,16 + 1084: 4,17 + 1089: 4,12 + 1097: 4,13 + 1105: 4,14 + 1113: 4,15 + 1121: 8,2 + 1129: 8,3 + 1167: -13,-22 + 1172: -13,-20 + 1176: -10,-28 + 1181: -8,-32 + 1188: 10,-27 + 1196: 11,-26 + 1214: 4,16 + 1222: 4,17 + 1227: 4,12 + 1235: 4,13 + 1243: 4,14 + 1251: 4,15 + 1259: 8,2 + 1267: 8,3 + 1305: -13,-22 + 1310: -13,-20 + 1314: -10,-28 + 1319: -8,-32 + 1326: 10,-27 + 1334: 11,-26 + 1352: 4,16 + 1360: 4,17 + 1365: 4,12 + 1373: 4,13 + 1381: 4,14 + 1389: 4,15 + 1397: 8,2 + 1405: 8,3 + 1443: -13,-22 + 1448: -13,-20 + 1452: -10,-28 + 1457: -8,-32 + 1464: 10,-27 + 1472: 11,-26 + 1490: 4,16 + 1498: 4,17 + 1503: 4,12 + 1511: 4,13 + 1519: 4,14 + 1527: 4,15 + 1535: 8,2 + 1543: 8,3 + 1581: -13,-22 + 1586: -13,-20 + 1590: -10,-28 + 1596: 10,-27 + 1604: 11,-26 + 1612: 4,16 + 1620: 4,17 + 1625: 11,-20 + 1643: -8,-32 + 1646: -9,-30 + 1653: 12,-20 + 1658: -10,-5 + 1663: -10,-6 + 1668: -11,-8 + 1671: -10,-8 + 1679: -10,-7 + 1684: -8,7 + 1689: -8,9 + 1692: 4,12 + 1700: 4,13 + 1708: 4,14 + 1716: 4,15 + 1724: 8,2 + 1732: 8,3 + 1770: -11,-8 + 1773: -10,-8 + 1781: -10,-7 + 1786: -10,-6 + 1791: -10,-5 + 1796: -8,7 + 1801: -8,9 + 1804: -13,-22 + 1809: -13,-20 + 1813: -10,-28 + 1818: -9,-30 + 1821: -8,-32 + 1831: 10,-27 + 1839: 11,-26 + 1847: 11,-20 + 1860: 12,-20 + 1868: 4,16 + 1876: 4,17 + 1881: 4,12 + 1889: 4,13 + 1897: 4,14 + 1905: 4,15 + 1913: 8,2 + 1921: 8,3 + 1959: -11,-8 + 1962: -10,-8 + 1970: -10,-7 + 1975: -10,-6 + 1980: -10,-5 + 1985: -8,7 + 1990: -8,9 + 1993: -13,-22 + 1998: -13,-20 + 2002: -10,-28 + 2007: -9,-30 + 2010: -8,-32 + 2020: 10,-27 + 2028: 11,-26 + 2036: 11,-20 + 2049: 12,-20 + 2057: 4,16 + 2065: 4,17 + 2070: 4,12 + 2078: 4,13 + 2086: 4,14 + 2094: 4,15 + 2122: -11,-8 + 2125: -10,-8 + 2133: -10,-7 + 2138: -10,-6 + 2143: -10,-5 + 2148: -8,7 + 2153: -8,9 + 2156: -13,-22 + 2161: -13,-20 + 2165: -10,-28 + 2170: -9,-30 + 2180: 10,-27 + 2188: 11,-26 + 2196: 11,-20 + 2209: 12,-20 + 2217: 4,16 + 2225: 4,17 + 2257: 8,3 + 2265: 8,2 + 2384: -8,-32 + 2469: 4,12 + 2477: 4,13 + 2485: 4,14 + 2493: 4,15 + 2501: 8,2 + 2509: 8,3 + 2553: -11,-8 + 2556: -10,-8 + 2564: -10,-7 + 2569: -10,-6 + 2574: -10,-5 + 2603: -8,7 + 2608: -8,9 + 2611: -13,-22 + 2616: -13,-20 + 2620: -10,-28 + 2625: -9,-30 + 2628: -8,-32 + 2638: 10,-27 + 2646: 11,-26 + 2654: 11,-20 + 2667: 12,-20 + 2675: 4,16 + 2683: 4,17 + 2688: 4,12 + 2696: 4,13 + 2704: 4,14 + 2712: 4,15 + 2720: 8,2 + 2728: 8,3 + 2772: -11,-8 + 2775: -10,-8 + 2783: -10,-7 + 2788: -10,-6 + 2793: -10,-5 + 2822: -8,7 + 2827: -8,9 + 2830: -13,-22 + 2835: -13,-20 + 2839: -10,-28 + 2844: -9,-30 + 2847: -8,-32 + 2857: 10,-27 + 2865: 11,-26 + 2873: 11,-20 + 2886: 12,-20 + 2894: 4,16 + 2902: 4,17 + 2907: 4,12 + 2915: 4,13 + 2923: 4,14 + 2931: 4,15 + 2939: 8,2 + 2947: 8,3 + 2991: -11,-8 + 2994: -10,-8 + 3002: -10,-7 + 3007: -10,-6 + 3012: -10,-5 + 3041: -8,7 + 3046: -8,9 + 3049: -13,-22 + 3054: -13,-20 + 3058: -10,-28 + 3063: -9,-30 + 3066: -8,-32 + 3076: 10,-27 + 3084: 11,-26 + 3092: 11,-20 + 3105: 12,-20 + 3113: 4,16 + 3121: 4,17 + 3126: 4,12 + 3134: 4,13 + 3142: 4,14 + 3150: 4,15 + 3158: 8,2 + 3166: 8,3 + 3210: -11,-8 + 3213: -10,-8 + 3221: -10,-7 + 3226: -10,-6 + 3231: -10,-5 + 3260: -8,7 + 3265: -8,9 + 3268: -13,-22 + 3273: -13,-20 + 3277: -10,-28 + 3282: -9,-30 + 3285: -8,-32 + 3295: 10,-27 + 3303: 11,-26 + 3311: 11,-20 + 3324: 12,-20 + 3332: 4,16 + 3340: 4,17 + 3345: 4,12 + 3353: 4,13 + 3361: 4,14 + 3369: 4,15 + 3377: 8,2 + 3385: 8,3 + 3429: -11,-8 + 3432: -10,-8 + 3464: -8,7 + 3469: -8,9 + 3471: -10,-28 + 3476: -9,-30 + 3479: -8,-32 + 3489: 10,-27 + 3497: 11,-26 + 3505: 11,-20 + 3518: 12,-20 + 3526: 4,16 + 3534: 4,17 + 3539: -10,-6 + 3544: -10,-7 + 3549: -10,-5 + 3553: -13,-20 + 3557: -13,-22 + 3560: 4,12 + 3568: 4,13 + 3576: 4,14 + 3584: 4,15 + 3592: 8,2 + 3600: 8,3 + 3644: -11,-8 + 3647: -10,-8 + 3655: -10,-7 + 3660: -10,-6 + 3665: -10,-5 + 3694: -8,7 + 3699: -8,9 + 3702: -13,-22 + 3704: -13,-20 + 3707: -10,-28 + 3712: -9,-30 + 3715: -8,-32 + 3725: 10,-27 + 3733: 11,-26 + 3741: 11,-20 + 3754: 12,-20 + 3762: 4,16 + 3770: 4,17 3775: 4,12 3783: 4,13 3791: 4,14 3799: 4,15 3807: 8,2 3815: 8,3 - 3820: 9,3 - 3825: 9,4 - 3830: 2,-13 - 3835: 2,-12 - 3840: 2,-11 - 3845: 2,-10 - 3849: 10,-5 - 3852: 10,-3 + 3859: -11,-8 3862: -10,-8 - 3921: -10,-28 - 3934: 2,-27 - 3938: 8,-32 - 3941: 9,-30 - 3948: 10,-27 - 3956: 11,-26 - 3964: 11,-20 - 3969: 11,-19 - 3975: 12,-20 - 3978: 13,-20 - 3985: 4,16 - 3991: 4,17 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 86: -12,-13 - 87: -12,-15 - 88: -12,-14 - - node: - color: '#D381C996' - id: LoadingAreaGreyscale - decals: - 51: -7,-19 - 52: -7,-19 - 53: -7,-19 + 3870: -10,-7 + 3875: -10,-6 + 3880: -10,-5 + 3909: -8,7 + 3914: -8,9 + 3917: -13,-22 + 3919: -13,-20 + 3922: -10,-28 + 3927: -9,-30 + 3930: -8,-32 + 3940: 10,-27 + 3948: 11,-26 + 3956: 11,-20 + 3969: 12,-20 + 3977: 4,16 + 3985: 4,17 + 4099: 4,12 + 4107: 4,13 + 4115: 4,14 + 4123: 4,15 + 4131: 8,2 + 4139: 8,3 + 4183: -11,-8 + 4186: -10,-8 + 4194: -10,-7 + 4199: -10,-6 + 4204: -10,-5 + 4233: -8,7 + 4238: -8,9 + 4241: -13,-22 + 4243: -13,-20 + 4246: -10,-28 + 4251: -9,-30 + 4254: -8,-32 + 4264: 10,-27 + 4272: 11,-26 + 4280: 11,-20 + 4293: 12,-20 + 4301: 4,16 + 4309: 4,17 + 4314: 4,12 + 4322: 4,13 + 4330: 4,14 + 4338: 4,15 + 4346: 8,2 + 4354: 8,3 + 4398: -11,-8 + 4401: -10,-8 + 4409: -10,-7 + 4414: -10,-6 + 4419: -10,-5 + 4448: -8,7 + 4453: -8,9 + 4456: -13,-22 + 4458: -13,-20 + 4461: -10,-28 + 4466: -9,-30 + 4469: -8,-32 + 4479: 10,-27 + 4487: 11,-26 + 4495: 11,-20 + 4508: 12,-20 + 4516: 4,16 + 4524: 4,17 - node: - color: '#D381C996' - id: Rust + id: LatticeEdgeN decals: - 2398: -5,9 - 2399: -6,8 - 2400: -4,10 - 2401: -3,11 - 2402: -3,7 + 125: 4,12 + 133: 4,13 + 141: 4,14 + 149: 4,15 + 157: 8,2 + 165: 8,3 + 171: 9,3 + 176: 9,4 + 181: 2,-13 + 186: 2,-12 + 191: 2,-11 + 196: 2,-10 + 203: -13,-22 + 208: -13,-20 + 211: -10,-28 + 216: -8,-32 + 218: 8,-32 + 224: 10,-27 + 232: 11,-26 + 238: 11,-20 + 243: 11,-19 + 250: 4,16 + 263: 4,12 + 271: 4,13 + 279: 4,14 + 287: 4,15 + 295: 8,2 + 303: 8,3 + 309: 9,3 + 314: 9,4 + 319: 2,-13 + 324: 2,-12 + 329: 2,-11 + 334: 2,-10 + 341: -13,-22 + 346: -13,-20 + 349: -10,-28 + 354: -8,-32 + 356: 8,-32 + 362: 10,-27 + 370: 11,-26 + 376: 11,-20 + 381: 11,-19 + 388: 4,16 + 401: 4,12 + 409: 4,13 + 417: 4,14 + 425: 4,15 + 433: 8,2 + 441: 8,3 + 447: 9,3 + 452: 9,4 + 457: 2,-13 + 462: 2,-12 + 467: 2,-11 + 472: 2,-10 + 479: -13,-22 + 484: -13,-20 + 487: -10,-28 + 492: -8,-32 + 494: 8,-32 + 500: 10,-27 + 508: 11,-26 + 514: 11,-20 + 519: 11,-19 + 526: 4,16 + 539: 4,12 + 547: 4,13 + 555: 4,14 + 563: 4,15 + 571: 8,2 + 579: 8,3 + 585: 9,3 + 590: 9,4 + 595: 2,-13 + 600: 2,-12 + 605: 2,-11 + 610: 2,-10 + 617: -13,-22 + 622: -13,-20 + 625: -10,-28 + 630: -8,-32 + 632: 8,-32 + 638: 10,-27 + 646: 11,-26 + 652: 11,-20 + 657: 11,-19 + 664: 4,16 + 677: 4,12 + 685: 4,13 + 693: 4,14 + 701: 4,15 + 709: 8,2 + 717: 8,3 + 723: 9,3 + 728: 9,4 + 733: 2,-13 + 738: 2,-12 + 743: 2,-11 + 748: 2,-10 + 755: -13,-22 + 760: -13,-20 + 763: -10,-28 + 768: -8,-32 + 770: 8,-32 + 776: 10,-27 + 784: 11,-26 + 790: 11,-20 + 795: 11,-19 + 802: 4,16 + 815: 4,12 + 823: 4,13 + 831: 4,14 + 839: 4,15 + 847: 8,2 + 855: 8,3 + 861: 9,3 + 866: 9,4 + 871: 2,-13 + 876: 2,-12 + 881: 2,-11 + 886: 2,-10 + 893: -13,-22 + 898: -13,-20 + 901: -10,-28 + 906: -8,-32 + 908: 8,-32 + 914: 10,-27 + 922: 11,-26 + 928: 11,-20 + 933: 11,-19 + 940: 4,16 + 953: 4,12 + 961: 4,13 + 969: 4,14 + 977: 4,15 + 985: 8,2 + 993: 8,3 + 999: 9,3 + 1004: 9,4 + 1009: 2,-13 + 1014: 2,-12 + 1019: 2,-11 + 1024: 2,-10 + 1031: -13,-22 + 1036: -13,-20 + 1039: -10,-28 + 1044: -8,-32 + 1046: 8,-32 + 1052: 10,-27 + 1060: 11,-26 + 1066: 11,-20 + 1071: 11,-19 + 1078: 4,16 + 1091: 4,12 + 1099: 4,13 + 1107: 4,14 + 1115: 4,15 + 1123: 8,2 + 1131: 8,3 + 1137: 9,3 + 1142: 9,4 + 1147: 2,-13 + 1152: 2,-12 + 1157: 2,-11 + 1162: 2,-10 + 1169: -13,-22 + 1174: -13,-20 + 1177: -10,-28 + 1182: -8,-32 + 1184: 8,-32 + 1190: 10,-27 + 1198: 11,-26 + 1204: 11,-20 + 1209: 11,-19 + 1216: 4,16 + 1229: 4,12 + 1237: 4,13 + 1245: 4,14 + 1253: 4,15 + 1261: 8,2 + 1269: 8,3 + 1275: 9,3 + 1280: 9,4 + 1285: 2,-13 + 1290: 2,-12 + 1295: 2,-11 + 1300: 2,-10 + 1307: -13,-22 + 1312: -13,-20 + 1315: -10,-28 + 1320: -8,-32 + 1322: 8,-32 + 1328: 10,-27 + 1336: 11,-26 + 1342: 11,-20 + 1347: 11,-19 + 1354: 4,16 + 1367: 4,12 + 1375: 4,13 + 1383: 4,14 + 1391: 4,15 + 1399: 8,2 + 1407: 8,3 + 1413: 9,3 + 1418: 9,4 + 1423: 2,-13 + 1428: 2,-12 + 1433: 2,-11 + 1438: 2,-10 + 1445: -13,-22 + 1450: -13,-20 + 1453: -10,-28 + 1458: -8,-32 + 1460: 8,-32 + 1466: 10,-27 + 1474: 11,-26 + 1480: 11,-20 + 1485: 11,-19 + 1492: 4,16 + 1505: 4,12 + 1513: 4,13 + 1521: 4,14 + 1529: 4,15 + 1537: 8,2 + 1545: 8,3 + 1551: 9,3 + 1556: 9,4 + 1561: 2,-13 + 1566: 2,-12 + 1571: 2,-11 + 1576: 2,-10 + 1583: -13,-22 + 1588: -13,-20 + 1591: -10,-28 + 1598: 10,-27 + 1606: 11,-26 + 1614: 4,16 + 1627: 11,-20 + 1633: 11,-19 + 1637: 8,-32 + 1640: 9,-30 + 1644: -8,-32 + 1647: -9,-30 + 1660: -10,-5 + 1665: -10,-6 + 1673: -10,-8 + 1681: -10,-7 + 1686: -8,7 + 1694: 4,12 + 1702: 4,13 + 1710: 4,14 + 1718: 4,15 + 1726: 8,2 + 1734: 8,3 + 1740: 9,3 + 1745: 9,4 + 1750: 2,-13 + 1755: 2,-12 + 1760: 2,-11 + 1765: 2,-10 + 1775: -10,-8 + 1783: -10,-7 + 1788: -10,-6 + 1793: -10,-5 + 1798: -8,7 + 1806: -13,-22 + 1811: -13,-20 + 1814: -10,-28 + 1819: -9,-30 + 1822: -8,-32 + 1824: 8,-32 + 1827: 9,-30 + 1833: 10,-27 + 1841: 11,-26 + 1849: 11,-20 + 1855: 11,-19 + 1870: 4,16 + 1883: 4,12 + 1891: 4,13 + 1899: 4,14 + 1907: 4,15 + 1915: 8,2 + 1923: 8,3 + 1929: 9,3 + 1934: 9,4 + 1939: 2,-13 + 1944: 2,-12 + 1949: 2,-11 + 1954: 2,-10 + 1964: -10,-8 + 1972: -10,-7 + 1977: -10,-6 + 1982: -10,-5 + 1987: -8,7 + 1995: -13,-22 + 2000: -13,-20 + 2003: -10,-28 + 2008: -9,-30 + 2011: -8,-32 + 2013: 8,-32 + 2016: 9,-30 + 2022: 10,-27 + 2030: 11,-26 + 2038: 11,-20 + 2044: 11,-19 + 2059: 4,16 + 2072: 4,12 + 2080: 4,13 + 2088: 4,14 + 2096: 4,15 + 2102: 2,-13 + 2107: 2,-12 + 2112: 2,-11 + 2117: 2,-10 + 2127: -10,-8 + 2135: -10,-7 + 2140: -10,-6 + 2145: -10,-5 + 2150: -8,7 + 2158: -13,-22 + 2163: -13,-20 + 2166: -10,-28 + 2171: -9,-30 + 2173: 8,-32 + 2176: 9,-30 + 2182: 10,-27 + 2190: 11,-26 + 2198: 11,-20 + 2204: 11,-19 + 2219: 4,16 + 2240: 10,-5 + 2247: 9,4 + 2252: 9,3 + 2259: 8,3 + 2267: 8,2 + 2385: -8,-32 + 2471: 4,12 + 2479: 4,13 + 2487: 4,14 + 2495: 4,15 + 2503: 8,2 + 2511: 8,3 + 2517: 9,3 + 2522: 9,4 + 2527: 2,-13 + 2532: 2,-12 + 2537: 2,-11 + 2542: 2,-10 + 2546: 10,-5 + 2558: -10,-8 + 2566: -10,-7 + 2571: -10,-6 + 2576: -10,-5 + 2605: -8,7 + 2613: -13,-22 + 2618: -13,-20 + 2621: -10,-28 + 2626: -9,-30 + 2629: -8,-32 + 2631: 8,-32 + 2634: 9,-30 + 2640: 10,-27 + 2648: 11,-26 + 2656: 11,-20 + 2662: 11,-19 + 2677: 4,16 + 2690: 4,12 + 2698: 4,13 + 2706: 4,14 + 2714: 4,15 + 2722: 8,2 + 2730: 8,3 + 2736: 9,3 + 2741: 9,4 + 2746: 2,-13 + 2751: 2,-12 + 2756: 2,-11 + 2761: 2,-10 + 2765: 10,-5 + 2777: -10,-8 + 2785: -10,-7 + 2790: -10,-6 + 2795: -10,-5 + 2824: -8,7 + 2832: -13,-22 + 2837: -13,-20 + 2840: -10,-28 + 2845: -9,-30 + 2848: -8,-32 + 2850: 8,-32 + 2853: 9,-30 + 2859: 10,-27 + 2867: 11,-26 + 2875: 11,-20 + 2881: 11,-19 + 2896: 4,16 + 2909: 4,12 + 2917: 4,13 + 2925: 4,14 + 2933: 4,15 + 2941: 8,2 + 2949: 8,3 + 2955: 9,3 + 2960: 9,4 + 2965: 2,-13 + 2970: 2,-12 + 2975: 2,-11 + 2980: 2,-10 + 2984: 10,-5 + 2996: -10,-8 + 3004: -10,-7 + 3009: -10,-6 + 3014: -10,-5 + 3043: -8,7 + 3051: -13,-22 + 3056: -13,-20 + 3059: -10,-28 + 3064: -9,-30 + 3067: -8,-32 + 3069: 8,-32 + 3072: 9,-30 + 3078: 10,-27 + 3086: 11,-26 + 3094: 11,-20 + 3100: 11,-19 + 3115: 4,16 + 3128: 4,12 + 3136: 4,13 + 3144: 4,14 + 3152: 4,15 + 3160: 8,2 + 3168: 8,3 + 3174: 9,3 + 3179: 9,4 + 3184: 2,-13 + 3189: 2,-12 + 3194: 2,-11 + 3199: 2,-10 + 3203: 10,-5 + 3215: -10,-8 + 3223: -10,-7 + 3228: -10,-6 + 3233: -10,-5 + 3262: -8,7 + 3270: -13,-22 + 3275: -13,-20 + 3278: -10,-28 + 3283: -9,-30 + 3286: -8,-32 + 3288: 8,-32 + 3291: 9,-30 + 3297: 10,-27 + 3305: 11,-26 + 3313: 11,-20 + 3319: 11,-19 + 3334: 4,16 + 3347: 4,12 + 3355: 4,13 + 3363: 4,14 + 3371: 4,15 + 3379: 8,2 + 3387: 8,3 + 3393: 9,3 + 3398: 9,4 + 3403: 2,-13 + 3408: 2,-12 + 3413: 2,-11 + 3418: 2,-10 + 3422: 10,-5 + 3434: -10,-8 + 3466: -8,7 + 3472: -10,-28 + 3477: -9,-30 + 3480: -8,-32 + 3482: 8,-32 + 3485: 9,-30 + 3491: 10,-27 + 3499: 11,-26 + 3507: 11,-20 + 3513: 11,-19 + 3528: 4,16 + 3541: -10,-6 + 3546: -10,-7 + 3551: -10,-5 + 3554: -13,-20 + 3562: 4,12 + 3570: 4,13 + 3578: 4,14 + 3586: 4,15 + 3594: 8,2 + 3602: 8,3 + 3608: 9,3 + 3613: 9,4 + 3618: 2,-13 + 3623: 2,-12 + 3628: 2,-11 + 3633: 2,-10 + 3637: 10,-5 + 3649: -10,-8 + 3657: -10,-7 + 3662: -10,-6 + 3667: -10,-5 + 3696: -8,7 + 3705: -13,-20 + 3708: -10,-28 + 3713: -9,-30 + 3716: -8,-32 + 3718: 8,-32 + 3721: 9,-30 + 3727: 10,-27 + 3735: 11,-26 + 3743: 11,-20 + 3749: 11,-19 + 3764: 4,16 + 3777: 4,12 + 3785: 4,13 + 3793: 4,14 + 3801: 4,15 + 3809: 8,2 + 3817: 8,3 + 3823: 9,3 + 3828: 9,4 + 3833: 2,-13 + 3838: 2,-12 + 3843: 2,-11 + 3848: 2,-10 + 3852: 10,-5 + 3864: -10,-8 + 3872: -10,-7 + 3877: -10,-6 + 3882: -10,-5 + 3911: -8,7 + 3920: -13,-20 + 3923: -10,-28 + 3928: -9,-30 + 3931: -8,-32 + 3933: 8,-32 + 3936: 9,-30 + 3942: 10,-27 + 3950: 11,-26 + 3958: 11,-20 + 3964: 11,-19 + 3979: 4,16 + 4101: 4,12 + 4109: 4,13 + 4117: 4,14 + 4125: 4,15 + 4133: 8,2 + 4141: 8,3 + 4147: 9,3 + 4152: 9,4 + 4157: 2,-13 + 4162: 2,-12 + 4167: 2,-11 + 4172: 2,-10 + 4176: 10,-5 + 4188: -10,-8 + 4196: -10,-7 + 4201: -10,-6 + 4206: -10,-5 + 4235: -8,7 + 4244: -13,-20 + 4247: -10,-28 + 4252: -9,-30 + 4255: -8,-32 + 4257: 8,-32 + 4260: 9,-30 + 4266: 10,-27 + 4274: 11,-26 + 4282: 11,-20 + 4288: 11,-19 + 4303: 4,16 + 4316: 4,12 + 4324: 4,13 + 4332: 4,14 + 4340: 4,15 + 4348: 8,2 + 4356: 8,3 + 4362: 9,3 + 4367: 9,4 + 4372: 2,-13 + 4377: 2,-12 + 4382: 2,-11 + 4387: 2,-10 + 4391: 10,-5 + 4403: -10,-8 + 4411: -10,-7 + 4416: -10,-6 + 4421: -10,-5 + 4450: -8,7 + 4459: -13,-20 + 4462: -10,-28 + 4467: -9,-30 + 4470: -8,-32 + 4472: 8,-32 + 4475: 9,-30 + 4481: 10,-27 + 4489: 11,-26 + 4497: 11,-20 + 4503: 11,-19 + 4518: 4,16 - node: - color: '#FFFFFFFF' - id: TechCornerE + id: LatticeEdgeS decals: - 54: -2,8 + 122: 4,12 + 130: 4,13 + 138: 4,14 + 146: 4,15 + 154: 8,2 + 162: 8,3 + 170: 9,3 + 175: 9,4 + 180: 2,-13 + 185: 2,-12 + 190: 2,-11 + 195: 2,-10 + 200: -13,-22 + 205: -13,-20 + 221: 10,-27 + 229: 11,-26 + 237: 11,-20 + 242: 11,-19 + 247: 4,16 + 255: 4,17 + 260: 4,12 + 268: 4,13 + 276: 4,14 + 284: 4,15 + 292: 8,2 + 300: 8,3 + 308: 9,3 + 313: 9,4 + 318: 2,-13 + 323: 2,-12 + 328: 2,-11 + 333: 2,-10 + 338: -13,-22 + 343: -13,-20 + 359: 10,-27 + 367: 11,-26 + 375: 11,-20 + 380: 11,-19 + 385: 4,16 + 393: 4,17 + 398: 4,12 + 406: 4,13 + 414: 4,14 + 422: 4,15 + 430: 8,2 + 438: 8,3 + 446: 9,3 + 451: 9,4 + 456: 2,-13 + 461: 2,-12 + 466: 2,-11 + 471: 2,-10 + 476: -13,-22 + 481: -13,-20 + 497: 10,-27 + 505: 11,-26 + 513: 11,-20 + 518: 11,-19 + 523: 4,16 + 531: 4,17 + 536: 4,12 + 544: 4,13 + 552: 4,14 + 560: 4,15 + 568: 8,2 + 576: 8,3 + 584: 9,3 + 589: 9,4 + 594: 2,-13 + 599: 2,-12 + 604: 2,-11 + 609: 2,-10 + 614: -13,-22 + 619: -13,-20 + 635: 10,-27 + 643: 11,-26 + 651: 11,-20 + 656: 11,-19 + 661: 4,16 + 669: 4,17 + 674: 4,12 + 682: 4,13 + 690: 4,14 + 698: 4,15 + 706: 8,2 + 714: 8,3 + 722: 9,3 + 727: 9,4 + 732: 2,-13 + 737: 2,-12 + 742: 2,-11 + 747: 2,-10 + 752: -13,-22 + 757: -13,-20 + 773: 10,-27 + 781: 11,-26 + 789: 11,-20 + 794: 11,-19 + 799: 4,16 + 807: 4,17 + 812: 4,12 + 820: 4,13 + 828: 4,14 + 836: 4,15 + 844: 8,2 + 852: 8,3 + 860: 9,3 + 865: 9,4 + 870: 2,-13 + 875: 2,-12 + 880: 2,-11 + 885: 2,-10 + 890: -13,-22 + 895: -13,-20 + 911: 10,-27 + 919: 11,-26 + 927: 11,-20 + 932: 11,-19 + 937: 4,16 + 945: 4,17 + 950: 4,12 + 958: 4,13 + 966: 4,14 + 974: 4,15 + 982: 8,2 + 990: 8,3 + 998: 9,3 + 1003: 9,4 + 1008: 2,-13 + 1013: 2,-12 + 1018: 2,-11 + 1023: 2,-10 + 1028: -13,-22 + 1033: -13,-20 + 1049: 10,-27 + 1057: 11,-26 + 1065: 11,-20 + 1070: 11,-19 + 1075: 4,16 + 1083: 4,17 + 1088: 4,12 + 1096: 4,13 + 1104: 4,14 + 1112: 4,15 + 1120: 8,2 + 1128: 8,3 + 1136: 9,3 + 1141: 9,4 + 1146: 2,-13 + 1151: 2,-12 + 1156: 2,-11 + 1161: 2,-10 + 1166: -13,-22 + 1171: -13,-20 + 1187: 10,-27 + 1195: 11,-26 + 1203: 11,-20 + 1208: 11,-19 + 1213: 4,16 + 1221: 4,17 + 1226: 4,12 + 1234: 4,13 + 1242: 4,14 + 1250: 4,15 + 1258: 8,2 + 1266: 8,3 + 1274: 9,3 + 1279: 9,4 + 1284: 2,-13 + 1289: 2,-12 + 1294: 2,-11 + 1299: 2,-10 + 1304: -13,-22 + 1309: -13,-20 + 1325: 10,-27 + 1333: 11,-26 + 1341: 11,-20 + 1346: 11,-19 + 1351: 4,16 + 1359: 4,17 + 1364: 4,12 + 1372: 4,13 + 1380: 4,14 + 1388: 4,15 + 1396: 8,2 + 1404: 8,3 + 1412: 9,3 + 1417: 9,4 + 1422: 2,-13 + 1427: 2,-12 + 1432: 2,-11 + 1437: 2,-10 + 1442: -13,-22 + 1447: -13,-20 + 1463: 10,-27 + 1471: 11,-26 + 1479: 11,-20 + 1484: 11,-19 + 1489: 4,16 + 1497: 4,17 + 1502: 4,12 + 1510: 4,13 + 1518: 4,14 + 1526: 4,15 + 1534: 8,2 + 1542: 8,3 + 1550: 9,3 + 1555: 9,4 + 1560: 2,-13 + 1565: 2,-12 + 1570: 2,-11 + 1575: 2,-10 + 1580: -13,-22 + 1585: -13,-20 + 1595: 10,-27 + 1603: 11,-26 + 1611: 4,16 + 1619: 4,17 + 1624: 11,-20 + 1632: 11,-19 + 1649: 13,-20 + 1652: 12,-20 + 1657: -10,-5 + 1662: -10,-6 + 1667: -11,-8 + 1670: -10,-8 + 1678: -10,-7 + 1683: -8,7 + 1688: -8,9 + 1691: 4,12 + 1699: 4,13 + 1707: 4,14 + 1715: 4,15 + 1723: 8,2 + 1731: 8,3 + 1739: 9,3 + 1744: 9,4 + 1749: 2,-13 + 1754: 2,-12 + 1759: 2,-11 + 1764: 2,-10 + 1769: -11,-8 + 1772: -10,-8 + 1780: -10,-7 + 1785: -10,-6 + 1790: -10,-5 + 1795: -8,7 + 1800: -8,9 + 1803: -13,-22 + 1808: -13,-20 + 1830: 10,-27 + 1838: 11,-26 + 1846: 11,-20 + 1854: 11,-19 + 1859: 12,-20 + 1864: 13,-20 + 1867: 4,16 + 1875: 4,17 + 1880: 4,12 + 1888: 4,13 + 1896: 4,14 + 1904: 4,15 + 1912: 8,2 + 1920: 8,3 + 1928: 9,3 + 1933: 9,4 + 1938: 2,-13 + 1943: 2,-12 + 1948: 2,-11 + 1953: 2,-10 + 1958: -11,-8 + 1961: -10,-8 + 1969: -10,-7 + 1974: -10,-6 + 1979: -10,-5 + 1984: -8,7 + 1989: -8,9 + 1992: -13,-22 + 1997: -13,-20 + 2019: 10,-27 + 2027: 11,-26 + 2035: 11,-20 + 2043: 11,-19 + 2048: 12,-20 + 2053: 13,-20 + 2056: 4,16 + 2064: 4,17 + 2069: 4,12 + 2077: 4,13 + 2085: 4,14 + 2093: 4,15 + 2101: 2,-13 + 2106: 2,-12 + 2111: 2,-11 + 2116: 2,-10 + 2121: -11,-8 + 2124: -10,-8 + 2132: -10,-7 + 2137: -10,-6 + 2142: -10,-5 + 2147: -8,7 + 2152: -8,9 + 2155: -13,-22 + 2160: -13,-20 + 2179: 10,-27 + 2187: 11,-26 + 2195: 11,-20 + 2203: 11,-19 + 2208: 12,-20 + 2213: 13,-20 + 2216: 4,16 + 2224: 4,17 + 2243: 10,-3 + 2246: 9,4 + 2251: 9,3 + 2256: 8,3 + 2264: 8,2 + 2468: 4,12 + 2476: 4,13 + 2484: 4,14 + 2492: 4,15 + 2500: 8,2 + 2508: 8,3 + 2516: 9,3 + 2521: 9,4 + 2526: 2,-13 + 2531: 2,-12 + 2536: 2,-11 + 2541: 2,-10 + 2549: 10,-3 + 2552: -11,-8 + 2555: -10,-8 + 2563: -10,-7 + 2568: -10,-6 + 2573: -10,-5 + 2602: -8,7 + 2607: -8,9 + 2610: -13,-22 + 2615: -13,-20 + 2637: 10,-27 + 2645: 11,-26 + 2653: 11,-20 + 2661: 11,-19 + 2666: 12,-20 + 2671: 13,-20 + 2674: 4,16 + 2682: 4,17 + 2687: 4,12 + 2695: 4,13 + 2703: 4,14 + 2711: 4,15 + 2719: 8,2 + 2727: 8,3 + 2735: 9,3 + 2740: 9,4 + 2745: 2,-13 + 2750: 2,-12 + 2755: 2,-11 + 2760: 2,-10 + 2768: 10,-3 + 2771: -11,-8 + 2774: -10,-8 + 2782: -10,-7 + 2787: -10,-6 + 2792: -10,-5 + 2821: -8,7 + 2826: -8,9 + 2829: -13,-22 + 2834: -13,-20 + 2856: 10,-27 + 2864: 11,-26 + 2872: 11,-20 + 2880: 11,-19 + 2885: 12,-20 + 2890: 13,-20 + 2893: 4,16 + 2901: 4,17 + 2906: 4,12 + 2914: 4,13 + 2922: 4,14 + 2930: 4,15 + 2938: 8,2 + 2946: 8,3 + 2954: 9,3 + 2959: 9,4 + 2964: 2,-13 + 2969: 2,-12 + 2974: 2,-11 + 2979: 2,-10 + 2987: 10,-3 + 2990: -11,-8 + 2993: -10,-8 + 3001: -10,-7 + 3006: -10,-6 + 3011: -10,-5 + 3040: -8,7 + 3045: -8,9 + 3048: -13,-22 + 3053: -13,-20 + 3075: 10,-27 + 3083: 11,-26 + 3091: 11,-20 + 3099: 11,-19 + 3104: 12,-20 + 3109: 13,-20 + 3112: 4,16 + 3120: 4,17 + 3125: 4,12 + 3133: 4,13 + 3141: 4,14 + 3149: 4,15 + 3157: 8,2 + 3165: 8,3 + 3173: 9,3 + 3178: 9,4 + 3183: 2,-13 + 3188: 2,-12 + 3193: 2,-11 + 3198: 2,-10 + 3206: 10,-3 + 3209: -11,-8 + 3212: -10,-8 + 3220: -10,-7 + 3225: -10,-6 + 3230: -10,-5 + 3259: -8,7 + 3264: -8,9 + 3267: -13,-22 + 3272: -13,-20 + 3294: 10,-27 + 3302: 11,-26 + 3310: 11,-20 + 3318: 11,-19 + 3323: 12,-20 + 3328: 13,-20 + 3331: 4,16 + 3339: 4,17 + 3344: 4,12 + 3352: 4,13 + 3360: 4,14 + 3368: 4,15 + 3376: 8,2 + 3384: 8,3 + 3392: 9,3 + 3397: 9,4 + 3402: 2,-13 + 3407: 2,-12 + 3412: 2,-11 + 3417: 2,-10 + 3425: 10,-3 + 3428: -11,-8 + 3431: -10,-8 + 3463: -8,7 + 3468: -8,9 + 3488: 10,-27 + 3496: 11,-26 + 3504: 11,-20 + 3512: 11,-19 + 3517: 12,-20 + 3522: 13,-20 + 3525: 4,16 + 3533: 4,17 + 3538: -10,-6 + 3543: -10,-7 + 3548: -10,-5 + 3556: -13,-22 + 3559: 4,12 + 3567: 4,13 + 3575: 4,14 + 3583: 4,15 + 3591: 8,2 + 3599: 8,3 + 3607: 9,3 + 3612: 9,4 + 3617: 2,-13 + 3622: 2,-12 + 3627: 2,-11 + 3632: 2,-10 + 3640: 10,-3 + 3643: -11,-8 + 3646: -10,-8 + 3654: -10,-7 + 3659: -10,-6 + 3664: -10,-5 + 3693: -8,7 + 3698: -8,9 + 3701: -13,-22 + 3724: 10,-27 + 3732: 11,-26 + 3740: 11,-20 + 3748: 11,-19 + 3753: 12,-20 + 3758: 13,-20 + 3761: 4,16 + 3769: 4,17 + 3774: 4,12 + 3782: 4,13 + 3790: 4,14 + 3798: 4,15 + 3806: 8,2 + 3814: 8,3 + 3822: 9,3 + 3827: 9,4 + 3832: 2,-13 + 3837: 2,-12 + 3842: 2,-11 + 3847: 2,-10 + 3855: 10,-3 + 3858: -11,-8 + 3861: -10,-8 + 3869: -10,-7 + 3874: -10,-6 + 3879: -10,-5 + 3908: -8,7 + 3913: -8,9 + 3916: -13,-22 + 3939: 10,-27 + 3947: 11,-26 + 3955: 11,-20 + 3963: 11,-19 + 3968: 12,-20 + 3973: 13,-20 + 3976: 4,16 + 3984: 4,17 + 4098: 4,12 + 4106: 4,13 + 4114: 4,14 + 4122: 4,15 + 4130: 8,2 + 4138: 8,3 + 4146: 9,3 + 4151: 9,4 + 4156: 2,-13 + 4161: 2,-12 + 4166: 2,-11 + 4171: 2,-10 + 4179: 10,-3 + 4182: -11,-8 + 4185: -10,-8 + 4193: -10,-7 + 4198: -10,-6 + 4203: -10,-5 + 4232: -8,7 + 4237: -8,9 + 4240: -13,-22 + 4263: 10,-27 + 4271: 11,-26 + 4279: 11,-20 + 4287: 11,-19 + 4292: 12,-20 + 4297: 13,-20 + 4300: 4,16 + 4308: 4,17 + 4313: 4,12 + 4321: 4,13 + 4329: 4,14 + 4337: 4,15 + 4345: 8,2 + 4353: 8,3 + 4361: 9,3 + 4366: 9,4 + 4371: 2,-13 + 4376: 2,-12 + 4381: 2,-11 + 4386: 2,-10 + 4394: 10,-3 + 4397: -11,-8 + 4400: -10,-8 + 4408: -10,-7 + 4413: -10,-6 + 4418: -10,-5 + 4447: -8,7 + 4452: -8,9 + 4455: -13,-22 + 4478: 10,-27 + 4486: 11,-26 + 4494: 11,-20 + 4502: 11,-19 + 4507: 12,-20 + 4512: 13,-20 + 4515: 4,16 + 4523: 4,17 - node: - color: '#D381C996' - id: TechE + id: LatticeEdgeW decals: - 2617: -4,-15 - 2618: -4,-13 + 127: 4,12 + 135: 4,13 + 143: 4,14 + 151: 4,15 + 159: 8,2 + 167: 8,3 + 172: 9,3 + 177: 9,4 + 182: 2,-13 + 187: 2,-12 + 192: 2,-11 + 197: 2,-10 + 213: -10,-28 + 219: 8,-32 + 226: 10,-27 + 234: 11,-26 + 239: 11,-20 + 244: 11,-19 + 252: 4,16 + 258: 4,17 + 265: 4,12 + 273: 4,13 + 281: 4,14 + 289: 4,15 + 297: 8,2 + 305: 8,3 + 310: 9,3 + 315: 9,4 + 320: 2,-13 + 325: 2,-12 + 330: 2,-11 + 335: 2,-10 + 351: -10,-28 + 357: 8,-32 + 364: 10,-27 + 372: 11,-26 + 377: 11,-20 + 382: 11,-19 + 390: 4,16 + 396: 4,17 + 403: 4,12 + 411: 4,13 + 419: 4,14 + 427: 4,15 + 435: 8,2 + 443: 8,3 + 448: 9,3 + 453: 9,4 + 458: 2,-13 + 463: 2,-12 + 468: 2,-11 + 473: 2,-10 + 489: -10,-28 + 495: 8,-32 + 502: 10,-27 + 510: 11,-26 + 515: 11,-20 + 520: 11,-19 + 528: 4,16 + 534: 4,17 + 541: 4,12 + 549: 4,13 + 557: 4,14 + 565: 4,15 + 573: 8,2 + 581: 8,3 + 586: 9,3 + 591: 9,4 + 596: 2,-13 + 601: 2,-12 + 606: 2,-11 + 611: 2,-10 + 627: -10,-28 + 633: 8,-32 + 640: 10,-27 + 648: 11,-26 + 653: 11,-20 + 658: 11,-19 + 666: 4,16 + 672: 4,17 + 679: 4,12 + 687: 4,13 + 695: 4,14 + 703: 4,15 + 711: 8,2 + 719: 8,3 + 724: 9,3 + 729: 9,4 + 734: 2,-13 + 739: 2,-12 + 744: 2,-11 + 749: 2,-10 + 765: -10,-28 + 771: 8,-32 + 778: 10,-27 + 786: 11,-26 + 791: 11,-20 + 796: 11,-19 + 804: 4,16 + 810: 4,17 + 817: 4,12 + 825: 4,13 + 833: 4,14 + 841: 4,15 + 849: 8,2 + 857: 8,3 + 862: 9,3 + 867: 9,4 + 872: 2,-13 + 877: 2,-12 + 882: 2,-11 + 887: 2,-10 + 903: -10,-28 + 909: 8,-32 + 916: 10,-27 + 924: 11,-26 + 929: 11,-20 + 934: 11,-19 + 942: 4,16 + 948: 4,17 + 955: 4,12 + 963: 4,13 + 971: 4,14 + 979: 4,15 + 987: 8,2 + 995: 8,3 + 1000: 9,3 + 1005: 9,4 + 1010: 2,-13 + 1015: 2,-12 + 1020: 2,-11 + 1025: 2,-10 + 1041: -10,-28 + 1047: 8,-32 + 1054: 10,-27 + 1062: 11,-26 + 1067: 11,-20 + 1072: 11,-19 + 1080: 4,16 + 1086: 4,17 + 1093: 4,12 + 1101: 4,13 + 1109: 4,14 + 1117: 4,15 + 1125: 8,2 + 1133: 8,3 + 1138: 9,3 + 1143: 9,4 + 1148: 2,-13 + 1153: 2,-12 + 1158: 2,-11 + 1163: 2,-10 + 1179: -10,-28 + 1185: 8,-32 + 1192: 10,-27 + 1200: 11,-26 + 1205: 11,-20 + 1210: 11,-19 + 1218: 4,16 + 1224: 4,17 + 1231: 4,12 + 1239: 4,13 + 1247: 4,14 + 1255: 4,15 + 1263: 8,2 + 1271: 8,3 + 1276: 9,3 + 1281: 9,4 + 1286: 2,-13 + 1291: 2,-12 + 1296: 2,-11 + 1301: 2,-10 + 1317: -10,-28 + 1323: 8,-32 + 1330: 10,-27 + 1338: 11,-26 + 1343: 11,-20 + 1348: 11,-19 + 1356: 4,16 + 1362: 4,17 + 1369: 4,12 + 1377: 4,13 + 1385: 4,14 + 1393: 4,15 + 1401: 8,2 + 1409: 8,3 + 1414: 9,3 + 1419: 9,4 + 1424: 2,-13 + 1429: 2,-12 + 1434: 2,-11 + 1439: 2,-10 + 1455: -10,-28 + 1461: 8,-32 + 1468: 10,-27 + 1476: 11,-26 + 1481: 11,-20 + 1486: 11,-19 + 1494: 4,16 + 1500: 4,17 + 1507: 4,12 + 1515: 4,13 + 1523: 4,14 + 1531: 4,15 + 1539: 8,2 + 1547: 8,3 + 1552: 9,3 + 1557: 9,4 + 1562: 2,-13 + 1567: 2,-12 + 1572: 2,-11 + 1577: 2,-10 + 1593: -10,-28 + 1600: 10,-27 + 1608: 11,-26 + 1616: 4,16 + 1622: 4,17 + 1629: 11,-20 + 1634: 11,-19 + 1638: 8,-32 + 1641: 9,-30 + 1650: 13,-20 + 1655: 12,-20 + 1675: -10,-8 + 1696: 4,12 + 1704: 4,13 + 1712: 4,14 + 1720: 4,15 + 1728: 8,2 + 1736: 8,3 + 1741: 9,3 + 1746: 9,4 + 1751: 2,-13 + 1756: 2,-12 + 1761: 2,-11 + 1766: 2,-10 + 1777: -10,-8 + 1816: -10,-28 + 1825: 8,-32 + 1828: 9,-30 + 1835: 10,-27 + 1843: 11,-26 + 1851: 11,-20 + 1856: 11,-19 + 1862: 12,-20 + 1865: 13,-20 + 1872: 4,16 + 1878: 4,17 + 1885: 4,12 + 1893: 4,13 + 1901: 4,14 + 1909: 4,15 + 1917: 8,2 + 1925: 8,3 + 1930: 9,3 + 1935: 9,4 + 1940: 2,-13 + 1945: 2,-12 + 1950: 2,-11 + 1955: 2,-10 + 1966: -10,-8 + 2005: -10,-28 + 2014: 8,-32 + 2017: 9,-30 + 2024: 10,-27 + 2032: 11,-26 + 2040: 11,-20 + 2045: 11,-19 + 2051: 12,-20 + 2054: 13,-20 + 2061: 4,16 + 2067: 4,17 + 2074: 4,12 + 2082: 4,13 + 2090: 4,14 + 2098: 4,15 + 2103: 2,-13 + 2108: 2,-12 + 2113: 2,-11 + 2118: 2,-10 + 2129: -10,-8 + 2168: -10,-28 + 2174: 8,-32 + 2177: 9,-30 + 2184: 10,-27 + 2192: 11,-26 + 2200: 11,-20 + 2205: 11,-19 + 2211: 12,-20 + 2214: 13,-20 + 2221: 4,16 + 2227: 4,17 + 2241: 10,-5 + 2244: 10,-3 + 2248: 9,4 + 2253: 9,3 + 2261: 8,3 + 2269: 8,2 + 2473: 4,12 + 2481: 4,13 + 2489: 4,14 + 2497: 4,15 + 2505: 8,2 + 2513: 8,3 + 2518: 9,3 + 2523: 9,4 + 2528: 2,-13 + 2533: 2,-12 + 2538: 2,-11 + 2543: 2,-10 + 2547: 10,-5 + 2550: 10,-3 + 2560: -10,-8 + 2623: -10,-28 + 2632: 8,-32 + 2635: 9,-30 + 2642: 10,-27 + 2650: 11,-26 + 2658: 11,-20 + 2663: 11,-19 + 2669: 12,-20 + 2672: 13,-20 + 2679: 4,16 + 2685: 4,17 + 2692: 4,12 + 2700: 4,13 + 2708: 4,14 + 2716: 4,15 + 2724: 8,2 + 2732: 8,3 + 2737: 9,3 + 2742: 9,4 + 2747: 2,-13 + 2752: 2,-12 + 2757: 2,-11 + 2762: 2,-10 + 2766: 10,-5 + 2769: 10,-3 + 2779: -10,-8 + 2842: -10,-28 + 2851: 8,-32 + 2854: 9,-30 + 2861: 10,-27 + 2869: 11,-26 + 2877: 11,-20 + 2882: 11,-19 + 2888: 12,-20 + 2891: 13,-20 + 2898: 4,16 + 2904: 4,17 + 2911: 4,12 + 2919: 4,13 + 2927: 4,14 + 2935: 4,15 + 2943: 8,2 + 2951: 8,3 + 2956: 9,3 + 2961: 9,4 + 2966: 2,-13 + 2971: 2,-12 + 2976: 2,-11 + 2981: 2,-10 + 2985: 10,-5 + 2988: 10,-3 + 2998: -10,-8 + 3061: -10,-28 + 3070: 8,-32 + 3073: 9,-30 + 3080: 10,-27 + 3088: 11,-26 + 3096: 11,-20 + 3101: 11,-19 + 3107: 12,-20 + 3110: 13,-20 + 3117: 4,16 + 3123: 4,17 + 3130: 4,12 + 3138: 4,13 + 3146: 4,14 + 3154: 4,15 + 3162: 8,2 + 3170: 8,3 + 3175: 9,3 + 3180: 9,4 + 3185: 2,-13 + 3190: 2,-12 + 3195: 2,-11 + 3200: 2,-10 + 3204: 10,-5 + 3207: 10,-3 + 3217: -10,-8 + 3280: -10,-28 + 3289: 8,-32 + 3292: 9,-30 + 3299: 10,-27 + 3307: 11,-26 + 3315: 11,-20 + 3320: 11,-19 + 3326: 12,-20 + 3329: 13,-20 + 3336: 4,16 + 3342: 4,17 + 3349: 4,12 + 3357: 4,13 + 3365: 4,14 + 3373: 4,15 + 3381: 8,2 + 3389: 8,3 + 3394: 9,3 + 3399: 9,4 + 3404: 2,-13 + 3409: 2,-12 + 3414: 2,-11 + 3419: 2,-10 + 3423: 10,-5 + 3426: 10,-3 + 3436: -10,-8 + 3474: -10,-28 + 3483: 8,-32 + 3486: 9,-30 + 3493: 10,-27 + 3501: 11,-26 + 3509: 11,-20 + 3514: 11,-19 + 3520: 12,-20 + 3523: 13,-20 + 3530: 4,16 + 3536: 4,17 + 3564: 4,12 + 3572: 4,13 + 3580: 4,14 + 3588: 4,15 + 3596: 8,2 + 3604: 8,3 + 3609: 9,3 + 3614: 9,4 + 3619: 2,-13 + 3624: 2,-12 + 3629: 2,-11 + 3634: 2,-10 + 3638: 10,-5 + 3641: 10,-3 + 3651: -10,-8 + 3710: -10,-28 + 3719: 8,-32 + 3722: 9,-30 + 3729: 10,-27 + 3737: 11,-26 + 3745: 11,-20 + 3750: 11,-19 + 3756: 12,-20 + 3759: 13,-20 + 3766: 4,16 + 3772: 4,17 + 3779: 4,12 + 3787: 4,13 + 3795: 4,14 + 3803: 4,15 + 3811: 8,2 + 3819: 8,3 + 3824: 9,3 + 3829: 9,4 + 3834: 2,-13 + 3839: 2,-12 + 3844: 2,-11 + 3849: 2,-10 + 3853: 10,-5 + 3856: 10,-3 + 3866: -10,-8 + 3925: -10,-28 + 3934: 8,-32 + 3937: 9,-30 + 3944: 10,-27 + 3952: 11,-26 + 3960: 11,-20 + 3965: 11,-19 + 3971: 12,-20 + 3974: 13,-20 + 3981: 4,16 + 3987: 4,17 + 4103: 4,12 + 4111: 4,13 + 4119: 4,14 + 4127: 4,15 + 4135: 8,2 + 4143: 8,3 + 4148: 9,3 + 4153: 9,4 + 4158: 2,-13 + 4163: 2,-12 + 4168: 2,-11 + 4173: 2,-10 + 4177: 10,-5 + 4180: 10,-3 + 4190: -10,-8 + 4249: -10,-28 + 4258: 8,-32 + 4261: 9,-30 + 4268: 10,-27 + 4276: 11,-26 + 4284: 11,-20 + 4289: 11,-19 + 4295: 12,-20 + 4298: 13,-20 + 4305: 4,16 + 4311: 4,17 + 4318: 4,12 + 4326: 4,13 + 4334: 4,14 + 4342: 4,15 + 4350: 8,2 + 4358: 8,3 + 4363: 9,3 + 4368: 9,4 + 4373: 2,-13 + 4378: 2,-12 + 4383: 2,-11 + 4388: 2,-10 + 4392: 10,-5 + 4395: 10,-3 + 4405: -10,-8 + 4464: -10,-28 + 4473: 8,-32 + 4476: 9,-30 + 4483: 10,-27 + 4491: 11,-26 + 4499: 11,-20 + 4504: 11,-19 + 4510: 12,-20 + 4513: 13,-20 + 4520: 4,16 + 4526: 4,17 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' - id: TechE - decals: - 172: -6,-4 - 173: -5,-4 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: TechN + id: LoadingArea decals: - 177: -6,-5 - 178: -5,-5 + 63: -12,-13 + 64: -12,-15 + 65: -12,-14 - node: color: '#D381C996' - id: TechNE + id: Rust decals: - 2613: -4,-12 + 2229: -5,9 + 2230: -6,8 + 2231: -4,10 + 2232: -3,11 + 2233: -3,7 - node: - angle: 3.141592653589793 rad color: '#FFFFFFFF' - id: TechNE + id: TechCornerE decals: - 176: -7,-5 + 45: -2,8 - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: TechNE + color: '#D381C996' + id: TechE decals: - 175: -4,-5 + 2446: -4,-15 + 2447: -4,-13 - node: - angle: 6.283185307179586 rad - color: '#FFFFFFFF' + color: '#D381C996' id: TechNE decals: - 174: -4,-4 + 2442: -4,-12 - node: color: '#D381C996' id: TechNW decals: - 2614: -8,-12 + 2443: -8,-12 - node: color: '#D381C996' id: TechS decals: - 2622: -7,-16 - 2623: -6,-16 - 2624: -5,-16 + 2451: -7,-16 + 2452: -6,-16 + 2453: -5,-16 - node: color: '#D381C996' id: TechSE decals: - 2616: -4,-16 + 2445: -4,-16 - node: color: '#D381C996' id: TechSW decals: - 2615: -8,-16 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: TechSW - decals: - 171: -7,-4 + 2444: -8,-16 - node: color: '#D381C996' id: TechW decals: - 2619: -8,-13 - 2620: -8,-14 - 2621: -8,-15 + 2448: -8,-13 + 2449: -8,-14 + 2450: -8,-15 - node: color: '#D381C996' id: TrimWarnNorth decals: - 2501: 1,-1 - 2502: 2,-1 - 2503: 3,-1 - 2511: 1,-3 - 2512: 2,-3 - 2513: 3,-3 + 2332: 1,-1 + 2333: 2,-1 + 2334: 3,-1 + 2342: 1,-3 + 2343: 2,-3 + 2344: 3,-3 - node: color: '#D381C996' id: TrimWarnNorthEast decals: - 2500: 4,-1 - 2509: 4,-3 + 2331: 4,-1 + 2340: 4,-3 - node: color: '#D381C996' id: TrimWarnNorthWest decals: - 2499: 0,-1 - 2510: 0,-3 + 2330: 0,-1 + 2341: 0,-3 - node: color: '#D381C996' id: TrimWarnSouth decals: - 2506: 1,-2 - 2507: 2,-2 - 2508: 3,-2 - 2516: 1,-4 - 2517: 2,-4 - 2518: 3,-4 + 2337: 1,-2 + 2338: 2,-2 + 2339: 3,-2 + 2347: 1,-4 + 2348: 2,-4 + 2349: 3,-4 - node: color: '#D381C996' id: TrimWarnSouthEast decals: - 2504: 4,-2 - 2514: 4,-4 + 2335: 4,-2 + 2345: 4,-4 - node: color: '#D381C996' id: TrimWarnSouthWest decals: - 2505: 0,-2 - 2515: 0,-4 + 2336: 0,-2 + 2346: 0,-4 - node: color: '#D381C996' id: TrimlineNorthEnd decals: - 2520: 5,-2 - 2521: -1,-2 + 2351: 5,-2 + 2352: -1,-2 - node: color: '#D381C996' id: TrimlineSouthEnd decals: - 2519: 5,-3 - 2522: -1,-3 - - node: - color: '#D381C996' - id: WarnCornerGreyscaleNE - decals: - 57: 5,-24 + 2350: 5,-3 + 2353: -1,-3 - node: color: '#D381C996' id: WarnCornerGreyscaleNW decals: - 16: -12,-18 - 56: 4,-24 - 71: -13,-16 + 48: -13,-16 - node: color: '#FF94FF21' id: WarnCornerGreyscaleNW decals: - 89: -10,-4 - 90: -11,-9 + 66: -10,-4 + 67: -11,-9 - node: color: '#FF94FF3E' id: WarnCornerGreyscaleNW decals: - 91: -10,-4 - 92: -11,-9 - - node: - color: '#D381C996' - id: WarnCornerSmallGreyscaleNE - decals: - 58: 5,-25 + 68: -10,-4 + 69: -11,-9 - node: color: '#FF94FF3E' id: WarnCornerSmallGreyscaleNE decals: - 106: 10,-4 - 107: 9,0 + 83: 10,-4 + 84: 9,0 - node: color: '#FF94FF3E' id: WarnCornerSmallGreyscaleNW decals: - 96: -10,-9 + 73: -10,-9 - node: color: '#FF94FF3E' id: WarnEndGreyscaleE decals: - 98: 11,-18 - 99: 13,-21 + 75: 11,-18 + 76: 13,-21 - node: color: '#FF94FF3E' id: WarnEndGreyscaleS decals: - 102: 7,-33 - 103: -7,-33 + 79: 7,-33 + 80: -7,-33 - node: color: '#D381C996' id: WarnFullGreyscale decals: - 72: 3,17 - 73: 5,17 - 74: -7,11 + 49: 3,17 + 50: 5,17 + 51: -7,11 - node: color: '#FFFFFFFF' id: WarnLineE @@ -4408,42 +4962,39 @@ entities: 0: -8,8 5: -9,-9 6: -9,-10 - 68: -4,-1 - 78: 6,7 - 82: 4,6 + 55: 6,7 + 59: 4,6 - node: color: '#FF94FF3E' id: WarnLineGreyscaleE decals: - 97: -12,-16 - 104: 9,5 - 105: 9,1 + 74: -12,-16 + 81: 9,5 + 82: 9,1 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 13: -11,-18 - 14: -10,-18 - 70: -12,-16 - 75: 3,7 - 76: 4,7 - 77: 5,7 + 47: -12,-16 + 52: 3,7 + 53: 4,7 + 54: 5,7 - node: color: '#FF94FF3E' id: WarnLineGreyscaleN decals: - 100: 12,-21 + 77: 12,-21 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 80: 3,7 - 81: 5,7 + 57: 3,7 + 58: 5,7 - node: color: '#FF94FF3E' id: WarnLineGreyscaleS decals: - 101: 10,-18 + 78: 10,-18 - node: color: '#D381C996' id: WarnLineGreyscaleW @@ -4452,24 +5003,23 @@ entities: 2: -8,6 3: -9,-9 4: -9,-10 - 15: -12,-19 - 69: -13,-17 - 79: 2,7 - 83: 4,6 + 46: -13,-17 + 56: 2,7 + 60: 4,6 - node: color: '#FF94FF3E' id: WarnLineGreyscaleW decals: - 93: -11,-12 - 94: -11,-11 - 95: -11,-10 + 70: -11,-12 + 71: -11,-11 + 72: -11,-10 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 19: 2,8 - 20: 6,8 - 21: 4,8 + 13: 2,8 + 14: 6,8 + 15: 4,8 - node: color: '#FFFFFFFF' id: WarnLineS @@ -4481,11 +5031,11 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 22: 0,5 - 23: 0,4 - 24: 0,3 - 25: 0,2 - 26: -5,2 + 16: 0,5 + 17: 0,4 + 18: 0,3 + 19: 0,2 + 20: -5,2 - type: GridAtmosphere version: 2 data: @@ -4732,7 +5282,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 916 + - 948 - type: Physics canCollide: False - proto: AAAHardpointMediumBallistic @@ -4867,7 +5417,7 @@ entities: occludes: True ents: [] - type: Battery - startingCharge: 54550.723 + startingCharge: 96185.875 - type: ApcPowerReceiverBattery enabled: True - type: ItemSlots @@ -4881,21 +5431,21 @@ entities: parent: 1 - type: DeviceList devices: - - 1107 - - 1115 - - 1108 - - 1116 - - 1114 - - 1111 - - 1119 - - 1110 - - 1118 - - 1113 - - 1106 - - 1112 - - 1120 - - 1109 - - 1117 + - 1149 + - 1158 + - 1150 + - 1159 + - 1157 + - 1153 + - 1162 + - 1152 + - 1161 + - 1156 + - 1148 + - 1154 + - 1163 + - 1151 + - 1160 - uid: 22 components: - type: Transform @@ -4904,21 +5454,21 @@ entities: parent: 1 - type: DeviceList devices: - - 1107 - - 1115 - - 1108 - - 1116 - - 1114 - - 1111 - - 1119 - - 1110 - - 1118 - - 1113 - - 1106 - - 1112 - - 1120 - - 1109 - - 1117 + - 1149 + - 1158 + - 1150 + - 1159 + - 1157 + - 1153 + - 1162 + - 1152 + - 1161 + - 1156 + - 1148 + - 1154 + - 1163 + - 1151 + - 1160 - uid: 23 components: - type: Transform @@ -4931,21 +5481,21 @@ entities: parent: 1 - type: DeviceList devices: - - 1107 - - 1115 - - 1108 - - 1116 - - 1114 - - 1111 - - 1119 - - 1110 - - 1118 - - 1113 - - 1106 - - 1112 - - 1120 - - 1109 - - 1117 + - 1149 + - 1158 + - 1150 + - 1159 + - 1157 + - 1153 + - 1162 + - 1152 + - 1161 + - 1156 + - 1148 + - 1154 + - 1163 + - 1151 + - 1160 - uid: 25 components: - type: Transform @@ -4954,21 +5504,21 @@ entities: parent: 1 - type: DeviceList devices: - - 1107 - - 1115 - - 1108 - - 1116 - - 1114 - - 1111 - - 1119 - - 1110 - - 1118 - - 1113 - - 1106 - - 1112 - - 1120 - - 1109 - - 1117 + - 1149 + - 1158 + - 1150 + - 1159 + - 1157 + - 1153 + - 1162 + - 1152 + - 1161 + - 1156 + - 1148 + - 1154 + - 1163 + - 1151 + - 1160 - proto: AirCanister entities: - uid: 26 @@ -5014,117 +5564,111 @@ entities: - uid: 32 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-22.5 + rot: -1.5707963267948966 rad + pos: -4.5,6.5 parent: 1 - uid: 33 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-22.5 + pos: -9.5,-20.5 parent: 1 - uid: 34 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,6.5 - parent: 1 - - uid: 35 - components: - - type: Transform - pos: -9.5,-20.5 + rot: 3.141592653589793 rad + pos: 3.5,-22.5 parent: 1 - proto: AirlockCommandLockedDSMHorizontal entities: - - uid: 36 + - uid: 35 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 37 + - uid: 36 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-5.5 parent: 1 - - uid: 38 + - uid: 37 components: - type: Transform pos: 0.5,-10.5 parent: 1 - type: Door - secondsUntilStateChange: -23527.172 + secondsUntilStateChange: -25457.42 state: Opening - type: DeviceLinkSource lastSignals: DoorStatus: True - - uid: 39 + - uid: 38 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-22.5 parent: 1 - - uid: 40 + - uid: 39 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-21.5 parent: 1 - - uid: 41 + - uid: 40 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-18.5 parent: 1 - - uid: 42 + - uid: 41 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-18.5 parent: 1 - - uid: 43 + - uid: 42 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-13.5 parent: 1 - - uid: 44 + - uid: 43 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 parent: 1 - - uid: 45 + - uid: 44 components: - type: Transform pos: 1.5,-19.5 parent: 1 - - uid: 46 + - uid: 45 components: - type: Transform pos: 9.5,-21.5 parent: 1 - - uid: 47 + - uid: 46 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-24.5 + pos: -2.5,5.5 parent: 1 - - uid: 48 + - uid: 47 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,5.5 + rot: 3.141592653589793 rad + pos: 2.5,-24.5 parent: 1 - proto: AirlockExternal entities: - - uid: 49 + - uid: 48 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,5.5 parent: 1 - - uid: 50 + - uid: 49 components: - type: Transform rot: 3.141592653589793 rad @@ -5132,13 +5676,13 @@ entities: parent: 1 - proto: AirlockMaintHorizontal entities: - - uid: 51 + - uid: 50 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-30.5 parent: 1 - - uid: 52 + - uid: 51 components: - type: Transform rot: 3.141592653589793 rad @@ -5146,13 +5690,13 @@ entities: parent: 1 - proto: AirlockShuttle entities: - - uid: 53 + - uid: 52 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-10.5 parent: 1 - - uid: 54 + - uid: 53 components: - type: Transform rot: 1.5707963267948966 rad @@ -5162,15 +5706,15 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -30765.885 + secondsUntilStateChange: -32696.133 state: Opening - - uid: 55 + - uid: 54 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-17.5 parent: 1 - - uid: 56 + - uid: 55 components: - type: Transform rot: -1.5707963267948966 rad @@ -5178,17 +5722,17 @@ entities: parent: 1 - proto: AirTankFilled entities: - - uid: 58 + - uid: 57 components: - type: Transform - parent: 57 + parent: 56 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 63 + - uid: 62 components: - type: Transform - parent: 62 + parent: 61 - type: Physics angularDamping: 0 linearDamping: 0 @@ -5196,19 +5740,19 @@ entities: - type: InsideEntityStorage - proto: AltarConvertBurden entities: - - uid: 67 + - uid: 66 components: - type: Transform pos: 6.5,-18.5 parent: 1 - - uid: 68 + - uid: 67 components: - type: Transform pos: 4.5,-18.5 parent: 1 - proto: AmeController entities: - - uid: 69 + - uid: 68 components: - type: Transform pos: 3.5,-30.5 @@ -5221,53 +5765,53 @@ entities: fuelSlot: !type:ContainerSlot showEnts: False occludes: True - ent: 70 + ent: 69 - proto: AmeJar entities: - - uid: 70 + - uid: 69 components: - type: Transform - parent: 69 + parent: 68 - type: Physics canCollide: False - - uid: 71 + - uid: 70 components: - type: Transform pos: 3.8230472,-28.364965 parent: 1 - - uid: 72 + - uid: 71 components: - type: Transform pos: 3.4812212,-28.364965 parent: 1 - - uid: 73 + - uid: 72 components: - type: Transform pos: 3.2880154,-28.364965 parent: 1 - - uid: 74 + - uid: 73 components: - type: Transform pos: 3.659566,-28.364965 parent: 1 - - uid: 75 + - uid: 74 components: - type: Transform pos: 3.1542568,-28.364965 parent: 1 - proto: AmeShielding entities: - - uid: 76 + - uid: 75 components: - type: Transform pos: 4.5,-30.5 parent: 1 - - uid: 77 + - uid: 76 components: - type: Transform pos: 5.5,-30.5 parent: 1 - - uid: 78 + - uid: 77 components: - type: Transform pos: 5.5,-29.5 @@ -5275,22 +5819,22 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 79 + - uid: 78 components: - type: Transform pos: 5.5,-28.5 parent: 1 - - uid: 80 + - uid: 79 components: - type: Transform pos: 4.5,-29.5 parent: 1 - - uid: 81 + - uid: 80 components: - type: Transform pos: 6.5,-30.5 parent: 1 - - uid: 82 + - uid: 81 components: - type: Transform pos: 6.5,-29.5 @@ -5298,33 +5842,39 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 83 + - uid: 82 components: - type: Transform pos: 6.5,-28.5 parent: 1 - - uid: 84 + - uid: 83 components: - type: Transform pos: 7.5,-30.5 parent: 1 - - uid: 85 + - uid: 84 components: - type: Transform pos: 7.5,-29.5 parent: 1 - - uid: 86 + - uid: 85 components: - type: Transform pos: 7.5,-28.5 parent: 1 - - uid: 87 + - uid: 86 components: - type: Transform pos: 4.5,-28.5 parent: 1 - proto: APCBasic entities: + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-22.5 + parent: 1 - uid: 88 components: - type: Transform @@ -5338,48 +5888,42 @@ entities: pos: -2.5,-25.5 parent: 1 - uid: 90 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-21.5 - parent: 1 - - uid: 91 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-21.5 parent: 1 - - uid: 92 + - uid: 91 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-1.5 parent: 1 - - uid: 93 + - uid: 92 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-6.5 parent: 1 - - uid: 94 + - uid: 93 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-17.5 parent: 1 - - uid: 95 + - uid: 94 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-24.5 parent: 1 - - uid: 96 + - uid: 95 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,6.5 parent: 1 - - uid: 97 + - uid: 96 components: - type: Transform rot: 1.5707963267948966 rad @@ -5387,93 +5931,93 @@ entities: parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 98 + - uid: 97 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 99 + - uid: 98 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 100 + - uid: 99 components: - type: Transform pos: -5.5,11.5 parent: 1 - - uid: 101 + - uid: 100 components: - type: Transform pos: 11.5,-20.5 parent: 1 - - uid: 102 + - uid: 101 components: - type: Transform pos: -8.5,-5.5 parent: 1 - - uid: 103 + - uid: 102 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 104 + - uid: 103 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 105 + - uid: 104 components: - type: Transform pos: -8.5,-5.5 parent: 1 - - uid: 106 + - uid: 105 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,5.5 parent: 1 - - uid: 107 + - uid: 106 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,2.5 parent: 1 - - uid: 108 + - uid: 107 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-17.5 parent: 1 - - uid: 109 + - uid: 108 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-18.5 parent: 1 - - uid: 110 + - uid: 109 components: - type: Transform pos: 7.5,0.5 parent: 1 - - uid: 111 + - uid: 110 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 112 + - uid: 111 components: - type: Transform pos: 9.5,-3.5 parent: 1 - - uid: 113 + - uid: 112 components: - type: Transform pos: 8.5,4.5 parent: 1 - proto: BaseWeaponTurretJeong entities: - - uid: 114 + - uid: 113 components: - type: Transform rot: -1.5707963267948966 rad @@ -5503,9 +6047,10 @@ entities: ents: [] - type: PointCannon linkedConsoleIds: - - 924 - linkedConsoleId: 924 - - uid: 115 + - 949 + - 950 + linkedConsoleId: 950 + - uid: 114 components: - type: Transform rot: 1.5707963267948966 rad @@ -5535,9 +6080,10 @@ entities: ents: [] - type: PointCannon linkedConsoleIds: - - 924 - linkedConsoleId: 924 - - uid: 116 + - 949 + - 950 + linkedConsoleId: 950 + - uid: 115 components: - type: Transform rot: -1.5707963267948966 rad @@ -5567,9 +6113,10 @@ entities: ents: [] - type: PointCannon linkedConsoleIds: - - 924 - linkedConsoleId: 924 - - uid: 117 + - 949 + - 950 + linkedConsoleId: 950 + - uid: 116 components: - type: Transform rot: 1.5707963267948966 rad @@ -5597,45 +6144,39 @@ entities: powerLoad: 5 - type: PointCannon linkedConsoleIds: - - 924 - linkedConsoleId: 924 + - 949 + - 950 + linkedConsoleId: 950 - type: Battery startingCharge: 0 -- proto: BedsheetBrown +- proto: BedsheetBlack entities: - - uid: 118 + - uid: 117 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,-25.5 parent: 1 -- proto: BedsheetCaptain - entities: - - uid: 119 + - uid: 118 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-24.5 + pos: -8.5,-24.5 parent: 1 -- proto: BedsheetGreen - entities: - - uid: 120 + - uid: 119 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-24.5 + pos: -11.5,-22.5 parent: 1 -- proto: BedsheetGrey +- proto: BedsheetCaptain entities: - - uid: 121 + - uid: 120 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-22.5 + pos: -11.5,-24.5 parent: 1 - proto: BedsheetMedical entities: - - uid: 122 + - uid: 121 components: - type: Transform pos: -3.4646935,-7.445119 @@ -5645,31 +6186,31 @@ entities: linearDamping: 0 - proto: BedsheetRD entities: - - uid: 123 + - uid: 122 components: - type: Transform pos: -11.5,-23.5 parent: 1 - - uid: 124 + - uid: 123 components: - type: Transform pos: -8.5,-23.5 parent: 1 - - uid: 125 + - uid: 124 components: - type: Transform pos: -10.5,-25.5 parent: 1 - proto: BiomassReclaimer entities: - - uid: 126 + - uid: 125 components: - type: Transform pos: -3.5,-3.5 parent: 1 - proto: BlastDoor entities: - - uid: 127 + - uid: 126 components: - type: Transform rot: -1.5707963267948966 rad @@ -5677,8 +6218,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1370 - - uid: 128 + - 1451 + - uid: 127 components: - type: Transform rot: 3.141592653589793 rad @@ -5686,8 +6227,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1368 - - uid: 129 + - 1449 + - uid: 128 components: - type: Transform rot: 1.5707963267948966 rad @@ -5695,26 +6236,26 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1372 - - uid: 130 + - 1453 + - uid: 129 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-22.5 parent: 1 - - uid: 131 + - uid: 130 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-23.5 parent: 1 - - uid: 132 + - uid: 131 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-24.5 parent: 1 - - uid: 133 + - uid: 132 components: - type: Transform rot: 1.5707963267948966 rad @@ -5722,16 +6263,16 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1373 - - uid: 134 + - 1454 + - uid: 133 components: - type: Transform pos: 11.5,-20.5 parent: 1 - type: DeviceLinkSink links: - - 1374 - - uid: 135 + - 1455 + - uid: 134 components: - type: Transform rot: 1.5707963267948966 rad @@ -5739,8 +6280,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1371 - - uid: 136 + - 1452 + - uid: 135 components: - type: Transform rot: 3.141592653589793 rad @@ -5748,8 +6289,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1368 - - uid: 137 + - 1449 + - uid: 136 components: - type: Transform rot: -1.5707963267948966 rad @@ -5757,10 +6298,10 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1369 + - 1450 - proto: BoozeDispenser entities: - - uid: 138 + - uid: 137 components: - type: Transform rot: 1.5707963267948966 rad @@ -5768,7 +6309,7 @@ entities: parent: 1 - proto: BoriaticFuelTankFull entities: - - uid: 139 + - uid: 138 components: - type: Transform anchored: True @@ -5779,7 +6320,7 @@ entities: bodyType: Static - proto: BoriaticGeneratorHerculesShuttle entities: - - uid: 140 + - uid: 139 components: - type: Transform pos: -6.5,-30.5 @@ -5790,100 +6331,100 @@ entities: bodyType: Static - proto: BoxBeaker entities: - - uid: 141 + - uid: 140 components: - type: Transform pos: -6.66038,-8.189533 parent: 1 - proto: BoxBottle entities: - - uid: 142 + - uid: 141 components: - type: Transform pos: -6.50413,-8.470783 parent: 1 - - uid: 143 + - uid: 142 components: - type: Transform pos: -6.50413,-8.470783 parent: 1 - proto: BoxMRE entities: - - uid: 144 + - uid: 143 components: - type: Transform pos: -5.2764893,9.70092 parent: 1 - proto: BoxPillCanister entities: - - uid: 145 + - uid: 144 components: - type: Transform pos: -6.301005,-8.189533 parent: 1 - proto: BoxSyringe entities: - - uid: 146 + - uid: 145 components: - type: Transform pos: -6.777571,-8.547294 parent: 1 - proto: BrokenBottle entities: - - uid: 147 + - uid: 146 components: - type: Transform rot: 3.141592653589793 rad pos: -5.665624,9.387818 parent: 1 - - uid: 148 + - uid: 147 components: - type: Transform rot: 1.570816353955541 rad pos: -4.258595,11.426207 parent: 1 - - uid: 149 + - uid: 148 components: - type: Transform pos: 3.367074,-0.8726237 parent: 1 - proto: ButtonFrameCaution entities: - - uid: 150 + - uid: 149 components: - type: Transform pos: 10.5,-20.5 parent: 1 - - uid: 151 + - uid: 150 components: - type: Transform pos: -7.5,-4.5 parent: 1 - - uid: 152 + - uid: 151 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,7.5 parent: 1 - - uid: 153 + - uid: 152 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,3.5 parent: 1 - - uid: 154 + - uid: 153 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,10.5 parent: 1 - - uid: 155 + - uid: 154 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 1 - - uid: 156 + - uid: 155 components: - type: Transform rot: -1.5707963267948966 rad @@ -5891,3120 +6432,3145 @@ entities: parent: 1 - proto: ButtonFrameCautionSecurity entities: - - uid: 157 + - uid: 156 components: - type: Transform pos: 4.5,8.5 parent: 1 - proto: CableApcExtension entities: - - uid: 158 + - uid: 157 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 159 + - uid: 158 components: - type: Transform pos: 9.5,-24.5 parent: 1 - - uid: 160 + - uid: 159 components: - type: Transform pos: -11.5,-16.5 parent: 1 - - uid: 161 + - uid: 160 components: - type: Transform pos: -11.5,-15.5 parent: 1 - - uid: 162 + - uid: 161 components: - type: Transform pos: -11.5,-17.5 parent: 1 - - uid: 163 + - uid: 162 components: - type: Transform pos: 9.5,-25.5 parent: 1 - - uid: 164 + - uid: 163 components: - type: Transform pos: 9.5,-27.5 parent: 1 - - uid: 165 + - uid: 164 components: - type: Transform pos: -9.5,-26.5 parent: 1 - - uid: 166 + - uid: 165 components: - type: Transform pos: -8.5,-26.5 parent: 1 - - uid: 167 + - uid: 166 components: - type: Transform pos: -8.5,-27.5 parent: 1 - - uid: 168 + - uid: 167 components: - type: Transform pos: -8.5,-28.5 parent: 1 - - uid: 169 + - uid: 168 components: - type: Transform pos: 12.5,-23.5 parent: 1 - - uid: 170 + - uid: 169 components: - type: Transform pos: -8.5,-29.5 parent: 1 - - uid: 171 + - uid: 170 components: - type: Transform pos: -6.5,9.5 parent: 1 - - uid: 172 + - uid: 171 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 173 + - uid: 172 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 174 + - uid: 173 components: - type: Transform pos: 9.5,-29.5 parent: 1 - - uid: 175 + - uid: 174 components: - type: Transform pos: 11.5,-25.5 parent: 1 - - uid: 176 + - uid: 175 components: - type: Transform pos: -10.5,-26.5 parent: 1 - - uid: 177 + - uid: 176 components: - type: Transform pos: 9.5,-26.5 parent: 1 - - uid: 178 + - uid: 177 components: - type: Transform pos: 9.5,-28.5 parent: 1 - - uid: 179 + - uid: 178 components: - type: Transform pos: 11.5,-17.5 parent: 1 - - uid: 180 + - uid: 179 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 181 + - uid: 180 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 182 + - uid: 181 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 183 + - uid: 182 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 184 + - uid: 183 components: - type: Transform pos: 13.5,-20.5 parent: 1 - - uid: 185 + - uid: 184 components: - type: Transform pos: 10.5,-17.5 parent: 1 - - uid: 186 + - uid: 185 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 187 + - uid: 186 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 188 + - uid: 187 components: - type: Transform pos: 7.5,8.5 parent: 1 - - uid: 189 + - uid: 188 components: - type: Transform pos: -11.5,-20.5 parent: 1 - - uid: 190 + - uid: 189 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 191 + - uid: 190 components: - type: Transform pos: -6.5,10.5 parent: 1 - - uid: 192 + - uid: 191 components: - type: Transform pos: 13.5,-25.5 parent: 1 - - uid: 193 + - uid: 192 components: - type: Transform pos: 12.5,-25.5 parent: 1 - - uid: 194 + - uid: 193 components: - type: Transform pos: 8.5,-23.5 parent: 1 - - uid: 195 + - uid: 194 components: - type: Transform pos: 8.5,-24.5 parent: 1 - - uid: 196 + - uid: 195 components: - type: Transform pos: 7.5,-26.5 parent: 1 - - uid: 197 + - uid: 196 components: - type: Transform pos: 8.5,-26.5 parent: 1 - - uid: 198 + - uid: 197 components: - type: Transform pos: 7.5,-23.5 parent: 1 - - uid: 199 + - uid: 198 components: - type: Transform pos: 12.5,-20.5 parent: 1 - - uid: 200 + - uid: 199 components: - type: Transform pos: -0.5,9.5 parent: 1 - - uid: 201 + - uid: 200 components: - type: Transform pos: 7.5,-18.5 parent: 1 - - uid: 202 + - uid: 201 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 203 + - uid: 202 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 204 + - uid: 203 components: - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 205 + - uid: 204 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 206 + - uid: 205 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 207 + - uid: 206 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 208 + - uid: 207 components: - type: Transform pos: -5.5,4.5 parent: 1 - - uid: 209 + - uid: 208 components: - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 210 + - uid: 209 components: - type: Transform pos: -5.5,2.5 parent: 1 - - uid: 211 + - uid: 210 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 212 + - uid: 211 components: - type: Transform pos: -5.5,0.5 parent: 1 - - uid: 213 + - uid: 212 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 214 + - uid: 213 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 215 + - uid: 214 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 216 + - uid: 215 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 217 + - uid: 216 components: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 218 + - uid: 217 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 219 + - uid: 218 components: - type: Transform pos: -5.5,-6.5 parent: 1 - - uid: 220 + - uid: 219 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 221 + - uid: 220 components: - type: Transform pos: -5.5,-8.5 parent: 1 - - uid: 222 + - uid: 221 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 223 + - uid: 222 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 224 + - uid: 223 components: - type: Transform pos: -5.5,-11.5 parent: 1 - - uid: 225 + - uid: 224 components: - type: Transform pos: -5.5,-12.5 parent: 1 - - uid: 226 + - uid: 225 components: - type: Transform pos: -5.5,-13.5 parent: 1 - - uid: 227 + - uid: 226 components: - type: Transform pos: -5.5,-14.5 parent: 1 - - uid: 228 + - uid: 227 components: - type: Transform pos: -5.5,-15.5 parent: 1 - - uid: 229 + - uid: 228 components: - type: Transform pos: -5.5,-16.5 parent: 1 - - uid: 230 + - uid: 229 components: - type: Transform pos: -5.5,-17.5 parent: 1 - - uid: 231 + - uid: 230 components: - type: Transform pos: -5.5,-18.5 parent: 1 - - uid: 232 + - uid: 231 components: - type: Transform pos: -5.5,-19.5 parent: 1 - - uid: 233 + - uid: 232 components: - type: Transform pos: -5.5,-20.5 parent: 1 - - uid: 234 + - uid: 233 components: - type: Transform pos: -5.5,-21.5 parent: 1 - - uid: 235 + - uid: 234 components: - type: Transform pos: -5.5,-22.5 parent: 1 - - uid: 236 + - uid: 235 components: - type: Transform pos: -5.5,-23.5 parent: 1 - - uid: 237 + - uid: 236 components: - type: Transform pos: -5.5,-24.5 parent: 1 - - uid: 238 + - uid: 237 components: - type: Transform pos: -5.5,-25.5 parent: 1 - - uid: 239 + - uid: 238 components: - type: Transform pos: -4.5,-25.5 parent: 1 - - uid: 240 + - uid: 239 components: - type: Transform pos: -3.5,-25.5 parent: 1 - - uid: 241 + - uid: 240 components: - type: Transform pos: -2.5,-25.5 parent: 1 - - uid: 242 + - uid: 241 components: - type: Transform pos: -5.5,-25.5 parent: 1 - - uid: 243 + - uid: 242 components: - type: Transform pos: -6.5,-25.5 parent: 1 - - uid: 244 + - uid: 243 components: - type: Transform pos: -7.5,-25.5 parent: 1 - - uid: 245 + - uid: 244 components: - type: Transform pos: -7.5,-24.5 parent: 1 - - uid: 246 + - uid: 245 components: - type: Transform pos: -6.5,-17.5 parent: 1 - - uid: 247 + - uid: 246 components: - type: Transform pos: -7.5,-17.5 parent: 1 - - uid: 248 + - uid: 247 components: - type: Transform pos: -6.5,-6.5 parent: 1 - - uid: 249 + - uid: 248 components: - type: Transform pos: -7.5,-6.5 parent: 1 - - uid: 250 + - uid: 249 components: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 251 + - uid: 250 components: - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 252 + - uid: 251 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 253 + - uid: 252 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 254 + - uid: 253 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 255 + - uid: 254 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 256 + - uid: 255 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 257 + - uid: 256 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 258 + - uid: 257 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 259 + - uid: 258 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 260 + - uid: 259 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 261 + - uid: 260 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 262 + - uid: 261 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 263 + - uid: 262 components: - type: Transform pos: -1.5,7.5 parent: 1 - - uid: 264 + - uid: 263 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 265 + - uid: 264 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 266 + - uid: 265 components: - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 267 + - uid: 266 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 268 + - uid: 267 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 269 + - uid: 268 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 270 + - uid: 269 components: - type: Transform pos: 4.5,7.5 parent: 1 - - uid: 271 + - uid: 270 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 272 + - uid: 271 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 273 + - uid: 272 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 274 + - uid: 273 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 275 + - uid: 274 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 276 + - uid: 275 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 277 + - uid: 276 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 278 + - uid: 277 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 279 + - uid: 278 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 280 + - uid: 279 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 281 + - uid: 280 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 282 + - uid: 281 components: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 283 + - uid: 282 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 284 + - uid: 283 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 285 + - uid: 284 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 286 + - uid: 285 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 287 + - uid: 286 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 288 + - uid: 287 components: - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 289 + - uid: 288 components: - type: Transform pos: -0.5,-5.5 parent: 1 - - uid: 290 + - uid: 289 components: - type: Transform pos: -0.5,-6.5 parent: 1 - - uid: 291 + - uid: 290 components: - type: Transform pos: -0.5,-7.5 parent: 1 - - uid: 292 + - uid: 291 components: - type: Transform pos: -0.5,-8.5 parent: 1 - - uid: 293 + - uid: 292 components: - type: Transform pos: -0.5,-9.5 parent: 1 - - uid: 294 + - uid: 293 components: - type: Transform pos: -0.5,-10.5 parent: 1 - - uid: 295 + - uid: 294 components: - type: Transform pos: -0.5,-11.5 parent: 1 - - uid: 296 + - uid: 295 components: - type: Transform pos: -0.5,-12.5 parent: 1 - - uid: 297 + - uid: 296 components: - type: Transform pos: -0.5,-13.5 parent: 1 - - uid: 298 + - uid: 297 components: - type: Transform pos: -0.5,-14.5 parent: 1 - - uid: 299 + - uid: 298 components: - type: Transform pos: -0.5,-15.5 parent: 1 - - uid: 300 + - uid: 299 components: - type: Transform pos: -0.5,-16.5 parent: 1 - - uid: 301 + - uid: 300 components: - type: Transform pos: -0.5,-17.5 parent: 1 - - uid: 302 + - uid: 301 components: - type: Transform pos: -0.5,-18.5 parent: 1 - - uid: 303 + - uid: 302 components: - type: Transform pos: -0.5,-19.5 parent: 1 - - uid: 304 + - uid: 303 components: - type: Transform pos: -0.5,-20.5 parent: 1 - - uid: 305 + - uid: 304 components: - type: Transform pos: -0.5,-21.5 parent: 1 - - uid: 306 + - uid: 305 components: - type: Transform pos: -1.5,-22.5 parent: 1 - - uid: 307 + - uid: 306 components: - type: Transform pos: -2.5,-22.5 parent: 1 - - uid: 308 + - uid: 307 components: - type: Transform pos: -3.5,-22.5 parent: 1 - - uid: 309 + - uid: 308 components: - type: Transform pos: -4.5,-22.5 parent: 1 - - uid: 310 + - uid: 309 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - uid: 311 + - uid: 310 components: - type: Transform pos: 2.5,-19.5 parent: 1 - - uid: 312 + - uid: 311 components: - type: Transform pos: 3.5,-19.5 parent: 1 - - uid: 313 + - uid: 312 components: - type: Transform pos: 3.5,-20.5 parent: 1 - - uid: 314 + - uid: 313 components: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 315 + - uid: 314 components: - type: Transform pos: 0.5,-22.5 parent: 1 - - uid: 316 + - uid: 315 components: - type: Transform pos: 1.5,-22.5 parent: 1 - - uid: 317 + - uid: 316 components: - type: Transform pos: 2.5,-22.5 parent: 1 - - uid: 318 + - uid: 317 components: - type: Transform pos: 3.5,-22.5 parent: 1 - - uid: 319 + - uid: 318 components: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 320 + - uid: 319 components: - type: Transform pos: 1.5,-23.5 parent: 1 - - uid: 321 + - uid: 320 components: - type: Transform pos: 1.5,-24.5 parent: 1 - - uid: 322 + - uid: 321 components: - type: Transform pos: 0.5,-24.5 parent: 1 - - uid: 323 + - uid: 322 components: - type: Transform pos: 0.5,-25.5 parent: 1 - - uid: 324 + - uid: 323 components: - type: Transform pos: 0.5,-26.5 parent: 1 - - uid: 325 + - uid: 324 components: - type: Transform pos: 0.5,-27.5 parent: 1 - - uid: 326 + - uid: 325 components: - type: Transform pos: 0.5,-28.5 parent: 1 - - uid: 327 + - uid: 326 components: - type: Transform pos: 0.5,-29.5 parent: 1 - - uid: 328 + - uid: 327 components: - type: Transform pos: 0.5,-30.5 parent: 1 - - uid: 329 + - uid: 328 components: - type: Transform pos: 1.5,-30.5 parent: 1 - - uid: 330 + - uid: 329 components: - type: Transform pos: 2.5,-30.5 parent: 1 - - uid: 331 + - uid: 330 components: - type: Transform pos: 2.5,-29.5 parent: 1 - - uid: 332 + - uid: 331 components: - type: Transform pos: 3.5,-29.5 parent: 1 - - uid: 333 + - uid: 332 components: - type: Transform pos: 4.5,-29.5 parent: 1 - - uid: 334 + - uid: 333 components: - type: Transform pos: 5.5,-29.5 parent: 1 - - uid: 335 + - uid: 334 components: - type: Transform pos: 6.5,-29.5 parent: 1 - - uid: 336 + - uid: 335 components: - type: Transform pos: 7.5,-29.5 parent: 1 - - uid: 337 + - uid: 336 components: - type: Transform pos: -0.5,-27.5 parent: 1 - - uid: 338 + - uid: 337 components: - type: Transform pos: -1.5,-27.5 parent: 1 - - uid: 339 + - uid: 338 components: - type: Transform pos: -6.5,-9.5 parent: 1 - - uid: 340 + - uid: 339 components: - type: Transform pos: -7.5,-9.5 parent: 1 - - uid: 341 + - uid: 340 components: - type: Transform pos: -8.5,-9.5 parent: 1 - - uid: 342 + - uid: 341 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 343 + - uid: 342 components: - type: Transform pos: -8.5,-11.5 parent: 1 - - uid: 344 + - uid: 343 components: - type: Transform pos: -8.5,-12.5 parent: 1 - - uid: 345 + - uid: 344 components: - type: Transform pos: -8.5,-13.5 parent: 1 - - uid: 346 + - uid: 345 components: - type: Transform pos: -8.5,-14.5 parent: 1 - - uid: 347 + - uid: 346 components: - type: Transform pos: -8.5,-15.5 parent: 1 - - uid: 348 + - uid: 347 components: - type: Transform pos: -8.5,-16.5 parent: 1 - - uid: 349 + - uid: 348 components: - type: Transform pos: -8.5,-17.5 parent: 1 - - uid: 350 + - uid: 349 components: - type: Transform pos: -8.5,-18.5 parent: 1 - - uid: 351 + - uid: 350 components: - type: Transform pos: -9.5,-18.5 parent: 1 - - uid: 352 + - uid: 351 components: - type: Transform pos: -10.5,-18.5 parent: 1 - - uid: 353 + - uid: 352 components: - type: Transform pos: -11.5,-18.5 parent: 1 - - uid: 354 + - uid: 353 components: - type: Transform pos: -12.5,-18.5 parent: 1 - - uid: 355 + - uid: 354 components: - type: Transform pos: -12.5,-17.5 parent: 1 - - uid: 356 + - uid: 355 components: - type: Transform pos: -10.5,-19.5 parent: 1 - - uid: 357 + - uid: 356 components: - type: Transform pos: -10.5,-20.5 parent: 1 - - uid: 358 + - uid: 357 components: - type: Transform pos: -10.5,-21.5 parent: 1 - - uid: 359 + - uid: 358 components: - type: Transform pos: -10.5,-22.5 parent: 1 - - uid: 360 + - uid: 359 components: - type: Transform pos: -10.5,-23.5 parent: 1 - - uid: 361 + - uid: 360 components: - type: Transform pos: -10.5,-24.5 parent: 1 - - uid: 362 + - uid: 361 components: - type: Transform pos: -10.5,-25.5 parent: 1 - - uid: 363 + - uid: 362 components: - type: Transform pos: -10.5,-26.5 parent: 1 - - uid: 364 + - uid: 363 components: - type: Transform pos: -10.5,-27.5 parent: 1 - - uid: 365 + - uid: 364 components: - type: Transform pos: -9.5,-24.5 parent: 1 - - uid: 366 + - uid: 365 components: - type: Transform pos: -8.5,-24.5 parent: 1 - - uid: 367 + - uid: 366 components: - type: Transform pos: -7.5,-24.5 parent: 1 - - uid: 368 + - uid: 367 components: - type: Transform pos: -10.5,-24.5 parent: 1 - - uid: 369 + - uid: 368 components: - type: Transform pos: -12.5,-24.5 parent: 1 - - uid: 370 + - uid: 369 components: - type: Transform pos: -11.5,-24.5 parent: 1 - - uid: 371 + - uid: 370 components: - type: Transform pos: -9.5,-26.5 parent: 1 - - uid: 372 + - uid: 371 components: - type: Transform pos: -8.5,-26.5 parent: 1 - - uid: 373 + - uid: 372 components: - type: Transform pos: -7.5,-26.5 parent: 1 - - uid: 374 + - uid: 373 components: - type: Transform pos: -7.5,-27.5 parent: 1 - - uid: 375 + - uid: 374 components: - type: Transform pos: -7.5,-28.5 parent: 1 - - uid: 376 + - uid: 375 components: - type: Transform pos: -7.5,-29.5 parent: 1 - - uid: 377 + - uid: 376 components: - type: Transform pos: -7.5,-30.5 parent: 1 - - uid: 378 + - uid: 377 components: - type: Transform pos: -6.5,-30.5 parent: 1 - - uid: 379 + - uid: 378 components: - type: Transform pos: -5.5,-30.5 parent: 1 - - uid: 380 + - uid: 379 components: - type: Transform pos: -4.5,-30.5 parent: 1 - - uid: 381 + - uid: 380 components: - type: Transform pos: -3.5,-30.5 parent: 1 - - uid: 382 + - uid: 381 components: - type: Transform pos: -2.5,-30.5 parent: 1 - - uid: 383 + - uid: 382 components: - type: Transform pos: -1.5,-30.5 parent: 1 - - uid: 384 + - uid: 383 components: - type: Transform pos: -0.5,-30.5 parent: 1 - - uid: 385 + - uid: 384 components: - type: Transform pos: -3.5,-31.5 parent: 1 - - uid: 386 + - uid: 385 components: - type: Transform pos: -3.5,-32.5 parent: 1 - - uid: 387 + - uid: 386 components: - type: Transform pos: -4.5,-32.5 parent: 1 - - uid: 388 + - uid: 387 components: - type: Transform pos: -2.5,-32.5 parent: 1 - - uid: 389 + - uid: 388 components: - type: Transform pos: -1.5,-32.5 parent: 1 - - uid: 390 + - uid: 389 components: - type: Transform pos: -0.5,-32.5 parent: 1 - - uid: 391 + - uid: 390 components: - type: Transform pos: 0.5,-32.5 parent: 1 - - uid: 392 + - uid: 391 components: - type: Transform pos: 1.5,-32.5 parent: 1 - - uid: 393 + - uid: 392 components: - type: Transform pos: 2.5,-32.5 parent: 1 - - uid: 394 + - uid: 393 components: - type: Transform pos: 3.5,-32.5 parent: 1 - - uid: 395 + - uid: 394 components: - type: Transform pos: 4.5,-32.5 parent: 1 - - uid: 396 + - uid: 395 components: - type: Transform pos: 5.5,-32.5 parent: 1 - - uid: 397 + - uid: 396 components: - type: Transform pos: 6.5,-28.5 parent: 1 - - uid: 398 + - uid: 397 components: - type: Transform pos: 6.5,-27.5 parent: 1 - - uid: 399 + - uid: 398 components: - type: Transform pos: 6.5,-26.5 parent: 1 - - uid: 400 + - uid: 399 components: - type: Transform pos: 6.5,-25.5 parent: 1 - - uid: 401 + - uid: 400 components: - type: Transform pos: 6.5,-24.5 parent: 1 - - uid: 402 + - uid: 401 components: - type: Transform pos: 6.5,-23.5 parent: 1 - - uid: 403 + - uid: 402 components: - type: Transform pos: 6.5,-22.5 parent: 1 - - uid: 404 + - uid: 403 components: - type: Transform pos: 6.5,-21.5 parent: 1 - - uid: 405 + - uid: 404 components: - type: Transform pos: 6.5,-20.5 parent: 1 - - uid: 406 + - uid: 405 components: - type: Transform pos: 6.5,-19.5 parent: 1 - - uid: 407 + - uid: 406 components: - type: Transform pos: 5.5,-19.5 parent: 1 - - uid: 408 + - uid: 407 components: - type: Transform pos: 4.5,-19.5 parent: 1 - - uid: 409 + - uid: 408 components: - type: Transform pos: 7.5,-21.5 parent: 1 - - uid: 410 + - uid: 409 components: - type: Transform pos: 8.5,-21.5 parent: 1 - - uid: 411 + - uid: 410 components: - type: Transform pos: 9.5,-21.5 parent: 1 - - uid: 412 + - uid: 411 components: - type: Transform pos: 10.5,-21.5 parent: 1 - - uid: 413 + - uid: 412 components: - type: Transform pos: 11.5,-21.5 parent: 1 - - uid: 414 + - uid: 413 components: - type: Transform pos: 11.5,-22.5 parent: 1 - - uid: 415 + - uid: 414 components: - type: Transform pos: 11.5,-23.5 parent: 1 - - uid: 416 + - uid: 415 components: - type: Transform pos: 6.5,-18.5 parent: 1 - - uid: 417 + - uid: 416 components: - type: Transform pos: 1.5,-21.5 parent: 1 - - uid: 418 + - uid: 417 components: - type: Transform pos: 1.5,-20.5 parent: 1 - - uid: 419 + - uid: 418 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 420 + - uid: 419 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 421 + - uid: 420 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 422 + - uid: 421 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 423 + - uid: 422 components: - type: Transform pos: 5.5,-3.5 parent: 1 - - uid: 424 + - uid: 423 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 425 + - uid: 424 components: - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 426 + - uid: 425 components: - type: Transform pos: 8.5,-3.5 parent: 1 - - uid: 427 + - uid: 426 components: - type: Transform pos: 8.5,-3.5 parent: 1 - - uid: 428 + - uid: 427 components: - type: Transform pos: 8.5,-1.5 parent: 1 - - uid: 429 + - uid: 428 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 430 + - uid: 429 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 431 + - uid: 430 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 432 + - uid: 431 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 433 + - uid: 432 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 434 + - uid: 433 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 435 + - uid: 434 components: - type: Transform pos: 4.5,9.5 parent: 1 - - uid: 436 + - uid: 435 components: - type: Transform pos: 4.5,10.5 parent: 1 - - uid: 437 + - uid: 436 components: - type: Transform pos: 4.5,11.5 parent: 1 - - uid: 438 + - uid: 437 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 439 + - uid: 438 components: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 440 + - uid: 439 components: - type: Transform pos: 2.5,10.5 parent: 1 - - uid: 441 + - uid: 440 components: - type: Transform pos: 2.5,11.5 parent: 1 - - uid: 442 + - uid: 441 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 443 + - uid: 442 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 444 + - uid: 443 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 445 + - uid: 444 components: - type: Transform pos: 5.5,7.5 parent: 1 - - uid: 446 + - uid: 445 components: - type: Transform pos: 6.5,7.5 parent: 1 - - uid: 447 + - uid: 446 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 448 + - uid: 447 components: - type: Transform pos: 6.5,9.5 parent: 1 - - uid: 449 + - uid: 448 components: - type: Transform pos: 6.5,10.5 parent: 1 - - uid: 450 + - uid: 449 components: - type: Transform pos: 6.5,11.5 parent: 1 - - uid: 451 + - uid: 450 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 452 + - uid: 451 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 453 + - uid: 452 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 454 + - uid: 453 components: - type: Transform pos: -3.5,5.5 parent: 1 - - uid: 455 + - uid: 454 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 456 + - uid: 455 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 457 + - uid: 456 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 458 + - uid: 457 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 459 + - uid: 458 components: - type: Transform pos: -4.5,-6.5 parent: 1 - - uid: 460 + - uid: 459 components: - type: Transform pos: -3.5,-6.5 parent: 1 - - uid: 461 + - uid: 460 components: - type: Transform pos: -2.5,-6.5 parent: 1 - - uid: 462 + - uid: 461 components: - type: Transform pos: -1.5,-6.5 parent: 1 - - uid: 463 + - uid: 462 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 464 + - uid: 463 components: - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 465 + - uid: 464 components: - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 466 + - uid: 465 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 467 + - uid: 466 components: - type: Transform pos: -1.5,-13.5 parent: 1 - - uid: 468 + - uid: 467 components: - type: Transform pos: -6.5,-13.5 parent: 1 - - uid: 469 + - uid: 468 components: - type: Transform pos: -7.5,-13.5 parent: 1 - - uid: 470 + - uid: 469 components: - type: Transform pos: -8.5,-13.5 parent: 1 - - uid: 471 + - uid: 470 components: - type: Transform pos: -8.5,-12.5 parent: 1 - - uid: 472 + - uid: 471 components: - type: Transform pos: -8.5,-11.5 parent: 1 - - uid: 473 + - uid: 472 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 474 + - uid: 473 components: - type: Transform pos: -8.5,-14.5 parent: 1 - - uid: 475 + - uid: 474 components: - type: Transform pos: -8.5,-15.5 parent: 1 - - uid: 476 + - uid: 475 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 477 + - uid: 476 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 478 + - uid: 477 components: - type: Transform pos: -7.5,5.5 parent: 1 - - uid: 479 + - uid: 478 components: - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 480 + - uid: 479 components: - type: Transform pos: -7.5,3.5 parent: 1 - - uid: 481 + - uid: 480 components: - type: Transform pos: -7.5,2.5 parent: 1 - - uid: 482 + - uid: 481 components: - type: Transform pos: -7.5,6.5 parent: 1 - - uid: 483 + - uid: 482 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 484 + - uid: 483 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 485 + - uid: 484 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 486 + - uid: 485 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 487 + - uid: 486 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 488 + - uid: 487 components: - type: Transform pos: -4.5,12.5 parent: 1 - - uid: 489 + - uid: 488 components: - type: Transform pos: -5.5,12.5 parent: 1 - - uid: 490 + - uid: 489 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 491 + - uid: 490 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 492 + - uid: 491 components: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 493 + - uid: 492 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 494 + - uid: 493 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 495 + - uid: 494 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 496 + - uid: 495 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 497 + - uid: 496 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 498 + - uid: 497 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 499 + - uid: 498 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 500 + - uid: 499 components: - type: Transform pos: 8.5,-18.5 parent: 1 - - uid: 501 + - uid: 500 components: - type: Transform pos: 9.5,-18.5 parent: 1 - - uid: 502 + - uid: 501 components: - type: Transform pos: 10.5,-18.5 parent: 1 - - uid: 503 + - uid: 502 components: - type: Transform pos: 8.5,-2.5 parent: 1 - - uid: 504 + - uid: 503 components: - type: Transform pos: 12.5,-24.5 parent: 1 - - uid: 505 + - uid: 504 components: - type: Transform pos: 1.5,-25.5 parent: 1 - - uid: 506 + - uid: 505 components: - type: Transform pos: 2.5,-25.5 parent: 1 - - uid: 507 + - uid: 506 components: - type: Transform pos: 3.5,-25.5 parent: 1 - - uid: 508 + - uid: 507 components: - type: Transform pos: 4.5,-25.5 parent: 1 - - uid: 509 + - uid: 508 components: - type: Transform pos: 5.5,-25.5 parent: 1 - - uid: 510 + - uid: 509 components: - type: Transform pos: 7.5,-25.5 parent: 1 - - uid: 511 + - uid: 510 components: - type: Transform pos: 8.5,-25.5 parent: 1 - - uid: 512 + - uid: 511 components: - type: Transform pos: 9.5,-25.5 parent: 1 - - uid: 513 + - uid: 512 components: - type: Transform pos: 9.5,-24.5 parent: 1 - - uid: 514 + - uid: 513 components: - type: Transform pos: 9.5,-23.5 parent: 1 - - uid: 515 + - uid: 514 components: - type: Transform pos: 9.5,-22.5 parent: 1 - - uid: 516 + - uid: 515 components: - type: Transform pos: 5.5,-21.5 parent: 1 - - uid: 517 + - uid: 516 components: - type: Transform pos: 4.5,-21.5 parent: 1 - - uid: 518 + - uid: 517 components: - type: Transform pos: 1.5,-17.5 parent: 1 - - uid: 519 + - uid: 518 components: - type: Transform pos: 1.5,-16.5 parent: 1 - - uid: 520 + - uid: 519 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 521 + - uid: 520 components: - type: Transform pos: 1.5,-14.5 parent: 1 - - uid: 522 + - uid: 521 components: - type: Transform pos: 1.5,-13.5 parent: 1 - - uid: 523 + - uid: 522 components: - type: Transform pos: 1.5,-12.5 parent: 1 - - uid: 524 + - uid: 523 components: - type: Transform pos: 1.5,-11.5 parent: 1 - - uid: 525 + - uid: 524 components: - type: Transform pos: 1.5,-10.5 parent: 1 - - uid: 526 + - uid: 525 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 527 + - uid: 526 components: - type: Transform pos: 1.5,-8.5 parent: 1 - - uid: 528 + - uid: 527 components: - type: Transform pos: 1.5,-7.5 parent: 1 - - uid: 529 + - uid: 528 components: - type: Transform pos: 1.5,-6.5 parent: 1 - - uid: 530 + - uid: 529 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 531 + - uid: 530 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 532 + - uid: 531 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 533 + - uid: 532 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 534 + - uid: 533 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 535 + - uid: 534 components: - type: Transform pos: 7.5,9.5 parent: 1 - - uid: 536 + - uid: 535 components: - type: Transform pos: 7.5,10.5 parent: 1 - - uid: 537 + - uid: 536 components: - type: Transform pos: 7.5,12.5 parent: 1 - - uid: 538 + - uid: 537 components: - type: Transform pos: 6.5,-31.5 parent: 1 - - uid: 539 + - uid: 538 components: - type: Transform pos: -4.5,-29.5 parent: 1 - - uid: 540 + - uid: 539 components: - type: Transform pos: -4.5,-28.5 parent: 1 - - uid: 541 + - uid: 540 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 542 + - uid: 541 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 543 + - uid: 542 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 544 + - uid: 543 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 545 + - uid: 544 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 546 + - uid: 545 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 547 + - uid: 546 components: - type: Transform pos: 5.5,14.5 parent: 1 - - uid: 548 + - uid: 547 components: - type: Transform pos: 5.5,15.5 parent: 1 - - uid: 549 + - uid: 548 components: - type: Transform pos: 5.5,16.5 parent: 1 - - uid: 550 + - uid: 549 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 551 + - uid: 550 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 552 + - uid: 551 components: - type: Transform pos: 5.5,-31.5 parent: 1 - - uid: 553 + - uid: 552 components: - type: Transform pos: 3.5,-31.5 parent: 1 - - uid: 554 + - uid: 553 components: - type: Transform pos: 4.5,-31.5 parent: 1 - - uid: 555 + - uid: 554 components: - type: Transform pos: 7.5,-31.5 parent: 1 - - uid: 556 + - uid: 555 components: - type: Transform pos: -6.5,-31.5 parent: 1 - - uid: 557 + - uid: 556 components: - type: Transform pos: -10.5,-20.5 parent: 1 - - uid: 558 + - uid: 557 components: - type: Transform pos: 2.5,-31.5 parent: 1 - - uid: 559 + - uid: 558 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 560 + - uid: 559 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 561 + - uid: 560 components: - type: Transform pos: 8.5,0.5 parent: 1 - - uid: 562 + - uid: 561 components: - type: Transform pos: 8.5,-0.5 parent: 1 - - uid: 563 + - uid: 562 components: - type: Transform pos: 9.5,0.5 parent: 1 - - uid: 564 + - uid: 563 components: - type: Transform pos: 9.5,-3.5 parent: 1 - - uid: 565 + - uid: 564 components: - type: Transform pos: 10.5,-3.5 parent: 1 - - uid: 566 + - uid: 565 components: - type: Transform pos: 11.5,-20.5 parent: 1 - - uid: 567 + - uid: 566 components: - type: Transform pos: -9.5,-8.5 parent: 1 - - uid: 568 + - uid: 567 components: - type: Transform pos: -8.5,-8.5 parent: 1 - - uid: 569 + - uid: 568 components: - type: Transform pos: -8.5,-9.5 parent: 1 - - uid: 570 + - uid: 569 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 571 + - uid: 570 components: - type: Transform pos: -9.5,-10.5 parent: 1 - - uid: 572 + - uid: 571 components: - type: Transform pos: -9.5,-7.5 parent: 1 - - uid: 573 + - uid: 572 components: - type: Transform pos: -9.5,-6.5 parent: 1 - - uid: 574 + - uid: 573 components: - type: Transform pos: -9.5,-5.5 parent: 1 - - uid: 575 + - uid: 574 components: - type: Transform pos: -9.5,-4.5 parent: 1 - - uid: 576 + - uid: 575 components: - type: Transform pos: -5.5,10.5 parent: 1 - - uid: 577 + - uid: 576 components: - type: Transform pos: 2.5,15.5 parent: 1 - - uid: 578 + - uid: 577 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 579 + - uid: 578 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 580 + - uid: 579 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 581 + - uid: 580 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 582 + - uid: 581 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 583 + - uid: 582 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 584 + - uid: 583 components: - type: Transform pos: 6.5,15.5 parent: 1 - - uid: 585 + - uid: 584 components: - type: Transform pos: 7.5,0.5 parent: 1 - - uid: 586 + - uid: 585 components: - type: Transform pos: 7.5,1.5 parent: 1 - - uid: 587 + - uid: 586 components: - type: Transform pos: 9.5,5.5 parent: 1 - - uid: 588 + - uid: 587 components: - type: Transform pos: 9.5,3.5 parent: 1 - - uid: 589 + - uid: 588 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 590 + - uid: 589 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 591 + - uid: 590 components: - type: Transform pos: 10.5,-2.5 parent: 1 - - uid: 592 + - uid: 591 components: - type: Transform pos: 7.5,-0.5 parent: 1 - - uid: 593 + - uid: 592 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 594 + - uid: 593 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 595 + - uid: 594 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 596 + - uid: 595 components: - type: Transform pos: 10.5,-4.5 parent: 1 - - uid: 597 + - uid: 596 components: - type: Transform pos: 9.5,4.5 parent: 1 - proto: CableHV entities: - - uid: 598 + - uid: 597 components: - type: Transform pos: -6.5,-29.5 parent: 1 - - uid: 599 + - uid: 598 components: - type: Transform pos: -6.5,-28.5 parent: 1 - - uid: 600 + - uid: 599 components: - type: Transform pos: -5.5,-29.5 parent: 1 - - uid: 601 + - uid: 600 components: - type: Transform pos: -4.5,-29.5 parent: 1 - - uid: 602 + - uid: 601 components: - type: Transform pos: -3.5,-29.5 parent: 1 - - uid: 603 + - uid: 602 components: - type: Transform pos: -3.5,-30.5 parent: 1 - - uid: 604 + - uid: 603 components: - type: Transform pos: -2.5,-30.5 parent: 1 - - uid: 605 + - uid: 604 components: - type: Transform pos: -1.5,-30.5 parent: 1 - - uid: 606 + - uid: 605 components: - type: Transform pos: -0.5,-30.5 parent: 1 - - uid: 607 + - uid: 606 components: - type: Transform pos: 0.5,-30.5 parent: 1 - - uid: 608 + - uid: 607 components: - type: Transform pos: 1.5,-30.5 parent: 1 - - uid: 609 + - uid: 608 components: - type: Transform pos: 2.5,-30.5 parent: 1 - - uid: 610 + - uid: 609 components: - type: Transform pos: 3.5,-30.5 parent: 1 - - uid: 611 + - uid: 610 components: - type: Transform pos: 4.5,-30.5 parent: 1 - - uid: 612 + - uid: 611 components: - type: Transform pos: 4.5,-29.5 parent: 1 - - uid: 613 + - uid: 612 components: - type: Transform pos: 5.5,-29.5 parent: 1 - - uid: 614 + - uid: 613 components: - type: Transform pos: 6.5,-29.5 parent: 1 - - uid: 615 + - uid: 614 components: - type: Transform pos: 7.5,-29.5 parent: 1 - - uid: 616 + - uid: 615 components: - type: Transform pos: 7.5,-28.5 parent: 1 - - uid: 617 + - uid: 616 components: - type: Transform pos: 0.5,-29.5 parent: 1 - - uid: 618 + - uid: 617 components: - type: Transform pos: 0.5,-28.5 parent: 1 - - uid: 619 + - uid: 618 components: - type: Transform pos: 0.5,-27.5 parent: 1 - - uid: 620 + - uid: 619 components: - type: Transform pos: 0.5,-26.5 parent: 1 - - uid: 621 + - uid: 620 components: - type: Transform pos: 0.5,-25.5 parent: 1 - - uid: 622 + - uid: 621 components: - type: Transform pos: -0.5,-25.5 parent: 1 - - uid: 623 + - uid: 622 components: - type: Transform pos: -1.5,-25.5 parent: 1 - - uid: 624 + - uid: 623 components: - type: Transform pos: -1.5,-24.5 parent: 1 - - uid: 625 + - uid: 624 components: - type: Transform pos: -1.5,-26.5 parent: 1 - - uid: 626 + - uid: 625 components: - type: Transform pos: -6.5,-30.5 parent: 1 - - uid: 627 + - uid: 626 components: - type: Transform pos: -5.5,-28.5 parent: 1 - proto: CableMV entities: - - uid: 628 + - uid: 627 components: - type: Transform pos: 7.5,-29.5 parent: 1 - - uid: 629 + - uid: 628 components: - type: Transform pos: 6.5,-29.5 parent: 1 - - uid: 630 + - uid: 629 components: - type: Transform pos: 5.5,-29.5 parent: 1 - - uid: 631 + - uid: 630 components: - type: Transform pos: 4.5,-29.5 parent: 1 - - uid: 632 + - uid: 631 components: - type: Transform pos: 3.5,-29.5 parent: 1 - - uid: 633 + - uid: 632 components: - type: Transform pos: 2.5,-29.5 parent: 1 - - uid: 634 + - uid: 633 components: - type: Transform pos: 2.5,-30.5 parent: 1 - - uid: 635 + - uid: 634 components: - type: Transform pos: 1.5,-30.5 parent: 1 - - uid: 636 + - uid: 635 components: - type: Transform pos: 0.5,-30.5 parent: 1 - - uid: 637 + - uid: 636 components: - type: Transform pos: 0.5,-29.5 parent: 1 - - uid: 638 + - uid: 637 components: - type: Transform pos: 0.5,-28.5 parent: 1 - - uid: 639 + - uid: 638 components: - type: Transform pos: 0.5,-27.5 parent: 1 - - uid: 640 + - uid: 639 components: - type: Transform pos: 0.5,-26.5 parent: 1 - - uid: 641 + - uid: 640 components: - type: Transform pos: 0.5,-25.5 parent: 1 - - uid: 642 + - uid: 641 components: - type: Transform pos: 0.5,-24.5 parent: 1 - - uid: 643 + - uid: 642 components: - type: Transform pos: 1.5,-24.5 parent: 1 - - uid: 644 + - uid: 643 components: - type: Transform pos: 1.5,-23.5 parent: 1 - - uid: 645 + - uid: 644 components: - type: Transform pos: 1.5,-22.5 parent: 1 - - uid: 646 + - uid: 645 components: - type: Transform pos: 0.5,-22.5 parent: 1 - - uid: 647 + - uid: 646 components: - type: Transform pos: -0.5,-22.5 parent: 1 - - uid: 648 + - uid: 647 components: - type: Transform pos: -1.5,-22.5 parent: 1 - - uid: 649 + - uid: 648 components: - type: Transform pos: -0.5,-21.5 parent: 1 - - uid: 650 + - uid: 649 components: - type: Transform pos: 2.5,-22.5 parent: 1 - - uid: 651 + - uid: 650 components: - type: Transform pos: 3.5,-22.5 parent: 1 - - uid: 652 + - uid: 651 components: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 653 + - uid: 652 components: - type: Transform pos: -0.5,-27.5 parent: 1 - - uid: 654 + - uid: 653 components: - type: Transform pos: -1.5,-27.5 parent: 1 - - uid: 655 + - uid: 654 components: - type: Transform pos: -0.5,-25.5 parent: 1 + - uid: 655 + components: + - type: Transform + pos: -1.5,-25.5 + parent: 1 - uid: 656 components: - type: Transform - pos: -1.5,-25.5 + pos: -2.5,-25.5 parent: 1 - uid: 657 components: - type: Transform - pos: -2.5,-25.5 + pos: -3.5,-25.5 parent: 1 - uid: 658 components: - type: Transform - pos: -3.5,-25.5 + pos: -4.5,-25.5 parent: 1 - uid: 659 components: - type: Transform - pos: -4.5,-25.5 + pos: -5.5,-25.5 parent: 1 - uid: 660 components: - type: Transform - pos: -5.5,-25.5 + pos: -6.5,-25.5 parent: 1 - uid: 661 components: - type: Transform - pos: -6.5,-25.5 + pos: -7.5,-25.5 parent: 1 - uid: 662 components: - type: Transform - pos: -7.5,-25.5 + pos: -7.5,-24.5 parent: 1 - uid: 663 components: - type: Transform - pos: -7.5,-24.5 + pos: -5.5,-24.5 parent: 1 - uid: 664 components: - type: Transform - pos: -5.5,-24.5 + pos: -5.5,-23.5 parent: 1 - uid: 665 components: - type: Transform - pos: -5.5,-23.5 + pos: -5.5,-22.5 parent: 1 - uid: 666 components: - type: Transform - pos: -5.5,-22.5 + pos: -5.5,-21.5 parent: 1 - uid: 667 components: - type: Transform - pos: -5.5,-21.5 + pos: -5.5,-20.5 parent: 1 - uid: 668 components: - type: Transform - pos: -5.5,-20.5 + pos: -5.5,-19.5 parent: 1 - uid: 669 components: - type: Transform - pos: -5.5,-19.5 + pos: -5.5,-18.5 parent: 1 - uid: 670 components: - type: Transform - pos: -5.5,-18.5 + pos: -5.5,-17.5 parent: 1 - uid: 671 components: - type: Transform - pos: -5.5,-17.5 + pos: -6.5,-17.5 parent: 1 - uid: 672 components: - type: Transform - pos: -6.5,-17.5 + pos: -7.5,-17.5 parent: 1 - uid: 673 components: - type: Transform - pos: -7.5,-17.5 + pos: -5.5,-16.5 parent: 1 - uid: 674 components: - type: Transform - pos: -5.5,-16.5 + pos: -5.5,-15.5 parent: 1 - uid: 675 components: - type: Transform - pos: -5.5,-15.5 + pos: -5.5,-14.5 parent: 1 - uid: 676 components: - type: Transform - pos: -5.5,-14.5 + pos: -5.5,-13.5 parent: 1 - uid: 677 components: - type: Transform - pos: -5.5,-13.5 + pos: -5.5,-12.5 parent: 1 - uid: 678 components: - type: Transform - pos: -5.5,-12.5 + pos: -5.5,-11.5 parent: 1 - uid: 679 components: - type: Transform - pos: -5.5,-11.5 + pos: -5.5,-10.5 parent: 1 - uid: 680 components: - type: Transform - pos: -5.5,-10.5 + pos: -5.5,-9.5 parent: 1 - uid: 681 components: - type: Transform - pos: -5.5,-9.5 + pos: -5.5,-8.5 parent: 1 - uid: 682 components: - type: Transform - pos: -5.5,-8.5 + pos: -5.5,-7.5 parent: 1 - uid: 683 components: - type: Transform - pos: -5.5,-7.5 + pos: -5.5,-6.5 parent: 1 - uid: 684 components: - type: Transform - pos: -5.5,-6.5 + pos: -6.5,-6.5 parent: 1 - uid: 685 components: - type: Transform - pos: -6.5,-6.5 + pos: -7.5,-6.5 parent: 1 - uid: 686 components: - type: Transform - pos: -7.5,-6.5 + pos: -5.5,-5.5 parent: 1 - uid: 687 components: - type: Transform - pos: -5.5,-5.5 + pos: -5.5,-4.5 parent: 1 - uid: 688 components: - type: Transform - pos: -5.5,-4.5 + pos: -5.5,-3.5 parent: 1 - uid: 689 components: - type: Transform - pos: -5.5,-3.5 + pos: -5.5,-2.5 parent: 1 - uid: 690 components: - type: Transform - pos: -5.5,-2.5 + pos: -5.5,-1.5 parent: 1 - uid: 691 components: - type: Transform - pos: -5.5,-1.5 + pos: -4.5,-1.5 parent: 1 - uid: 692 components: - type: Transform - pos: -4.5,-1.5 + pos: -3.5,-1.5 parent: 1 - uid: 693 components: - type: Transform - pos: -3.5,-1.5 + pos: -2.5,-1.5 parent: 1 - uid: 694 components: - type: Transform - pos: -2.5,-1.5 + pos: -5.5,-0.5 parent: 1 - uid: 695 components: - type: Transform - pos: -5.5,-0.5 + pos: -5.5,0.5 parent: 1 - uid: 696 components: - type: Transform - pos: -5.5,0.5 + pos: -5.5,1.5 parent: 1 - uid: 697 components: - type: Transform - pos: -5.5,1.5 + pos: -5.5,2.5 parent: 1 - uid: 698 components: - type: Transform - pos: -5.5,2.5 + pos: -5.5,3.5 parent: 1 - uid: 699 components: - type: Transform - pos: -5.5,3.5 + pos: -5.5,4.5 parent: 1 - uid: 700 components: - type: Transform - pos: -5.5,4.5 + pos: -5.5,5.5 parent: 1 - uid: 701 components: - type: Transform - pos: -5.5,5.5 + pos: -5.5,6.5 parent: 1 - uid: 702 components: - type: Transform - pos: -5.5,6.5 + pos: -5.5,7.5 parent: 1 - uid: 703 components: - type: Transform - pos: -5.5,7.5 + pos: -4.5,7.5 parent: 1 - uid: 704 components: - type: Transform - pos: -4.5,7.5 + pos: -3.5,7.5 parent: 1 - uid: 705 components: - type: Transform - pos: -3.5,7.5 + pos: -3.5,6.5 parent: 1 - uid: 706 components: - type: Transform - pos: -3.5,6.5 + pos: -2.5,7.5 parent: 1 - uid: 707 components: - type: Transform - pos: -2.5,7.5 + pos: -1.5,7.5 parent: 1 - uid: 708 components: - type: Transform - pos: -1.5,7.5 + pos: -0.5,7.5 parent: 1 - uid: 709 components: - type: Transform - pos: -0.5,7.5 + pos: -0.5,6.5 parent: 1 - uid: 710 components: - type: Transform - pos: -0.5,6.5 + pos: -0.5,5.5 parent: 1 - uid: 711 components: - type: Transform - pos: -0.5,5.5 + pos: -0.5,4.5 parent: 1 - uid: 712 components: - type: Transform - pos: -0.5,4.5 + pos: -0.5,3.5 parent: 1 - uid: 713 components: - type: Transform - pos: -0.5,3.5 + pos: -0.5,2.5 parent: 1 - uid: 714 components: - type: Transform - pos: -0.5,2.5 + pos: -0.5,1.5 parent: 1 - uid: 715 components: - type: Transform - pos: -0.5,1.5 + pos: -0.5,0.5 parent: 1 - uid: 716 components: - type: Transform - pos: -0.5,0.5 + pos: -0.5,-0.5 parent: 1 - uid: 717 components: - type: Transform - pos: -0.5,-0.5 + pos: -0.5,-1.5 parent: 1 - uid: 718 components: - type: Transform - pos: -0.5,-1.5 + pos: -0.5,-2.5 parent: 1 - uid: 719 components: - type: Transform - pos: -0.5,-2.5 + pos: -0.5,-3.5 parent: 1 - uid: 720 components: - type: Transform - pos: -0.5,-3.5 + pos: -0.5,-4.5 parent: 1 - uid: 721 components: - type: Transform - pos: -0.5,-4.5 + pos: -0.5,-5.5 parent: 1 - uid: 722 components: - type: Transform - pos: -0.5,-5.5 + pos: -0.5,-6.5 parent: 1 - uid: 723 components: - type: Transform - pos: -0.5,-6.5 + pos: -0.5,-7.5 parent: 1 - uid: 724 components: - type: Transform - pos: -0.5,-7.5 + pos: -0.5,-8.5 parent: 1 - uid: 725 components: - type: Transform - pos: -0.5,-8.5 + pos: -0.5,-9.5 parent: 1 - uid: 726 components: - type: Transform - pos: -0.5,-9.5 + pos: -0.5,-10.5 parent: 1 - uid: 727 components: - type: Transform - pos: -0.5,-10.5 + pos: -0.5,-11.5 parent: 1 - uid: 728 components: - type: Transform - pos: -0.5,-11.5 + pos: -0.5,-12.5 parent: 1 - uid: 729 components: - type: Transform - pos: -0.5,-12.5 + pos: -0.5,-13.5 parent: 1 - uid: 730 components: - type: Transform - pos: -0.5,-13.5 + pos: -0.5,-14.5 parent: 1 - uid: 731 components: - type: Transform - pos: -0.5,-14.5 + pos: -0.5,-15.5 parent: 1 - uid: 732 components: - type: Transform - pos: -0.5,-15.5 + pos: -0.5,-16.5 parent: 1 - uid: 733 components: - type: Transform - pos: -0.5,-16.5 + pos: -0.5,-17.5 parent: 1 - uid: 734 components: - type: Transform - pos: -0.5,-17.5 + pos: -0.5,-18.5 parent: 1 - uid: 735 components: - type: Transform - pos: -0.5,-18.5 + pos: -0.5,-19.5 parent: 1 - uid: 736 components: - type: Transform - pos: -0.5,-19.5 + pos: -0.5,-20.5 parent: 1 - uid: 737 components: - type: Transform - pos: -0.5,-20.5 + pos: -0.5,-21.5 parent: 1 - uid: 738 components: - type: Transform - pos: -0.5,-21.5 + pos: -2.5,-22.5 parent: 1 - uid: 739 components: - type: Transform - pos: -2.5,-22.5 + pos: -3.5,-22.5 parent: 1 - uid: 740 components: - type: Transform - pos: -3.5,-22.5 + pos: -4.5,-22.5 parent: 1 - uid: 741 components: - type: Transform - pos: -4.5,-22.5 + pos: 0.5,-19.5 parent: 1 - uid: 742 components: - type: Transform - pos: 0.5,-19.5 + pos: 1.5,-19.5 parent: 1 - uid: 743 components: - type: Transform - pos: 1.5,-19.5 + pos: 2.5,-19.5 parent: 1 - uid: 744 components: - type: Transform - pos: 2.5,-19.5 + pos: 3.5,-19.5 parent: 1 - uid: 745 components: - type: Transform - pos: 3.5,-19.5 + pos: 3.5,-20.5 parent: 1 - uid: 746 components: - type: Transform - pos: 3.5,-20.5 + pos: 3.5,-21.5 parent: 1 - uid: 747 components: - type: Transform - pos: 3.5,-21.5 + pos: 0.5,-1.5 parent: 1 - uid: 748 components: - type: Transform - pos: 0.5,-1.5 + pos: 1.5,-1.5 parent: 1 - uid: 749 components: - type: Transform - pos: 1.5,-1.5 + pos: 2.5,-1.5 parent: 1 - uid: 750 components: - type: Transform - pos: 2.5,-1.5 + pos: 3.5,-1.5 parent: 1 - uid: 751 components: - type: Transform - pos: 3.5,-1.5 + pos: 4.5,-1.5 parent: 1 - uid: 752 components: - type: Transform - pos: 4.5,-1.5 + pos: 5.5,-1.5 parent: 1 - uid: 753 components: - type: Transform - pos: 5.5,-1.5 + pos: 6.5,-1.5 parent: 1 - uid: 754 components: - type: Transform - pos: 6.5,-1.5 + pos: 7.5,-1.5 parent: 1 - uid: 755 components: - type: Transform - pos: 7.5,-1.5 + pos: 4.5,-0.5 parent: 1 - uid: 756 components: - type: Transform - pos: 4.5,-0.5 + pos: 4.5,0.5 parent: 1 - uid: 757 components: - type: Transform - pos: 4.5,0.5 + pos: 4.5,1.5 parent: 1 - uid: 758 components: - type: Transform - pos: 4.5,1.5 + pos: 4.5,2.5 parent: 1 - uid: 759 components: - type: Transform - pos: 4.5,2.5 + pos: 4.5,3.5 parent: 1 - uid: 760 components: - type: Transform - pos: 4.5,3.5 + pos: 4.5,4.5 parent: 1 - uid: 761 components: - type: Transform - pos: 4.5,4.5 + pos: 4.5,5.5 parent: 1 - uid: 762 components: - type: Transform - pos: 4.5,5.5 + pos: 4.5,6.5 parent: 1 - uid: 763 components: - type: Transform - pos: 4.5,6.5 + pos: 4.5,7.5 parent: 1 - uid: 764 components: - type: Transform - pos: 4.5,7.5 + pos: 3.5,7.5 parent: 1 - uid: 765 components: - type: Transform - pos: 3.5,7.5 + pos: 2.5,7.5 parent: 1 - uid: 766 components: - type: Transform - pos: 2.5,7.5 + pos: 1.5,7.5 parent: 1 - uid: 767 components: - type: Transform - pos: 1.5,7.5 + pos: -6.5,-29.5 parent: 1 - uid: 768 components: - type: Transform - pos: -6.5,-29.5 + pos: -5.5,-29.5 parent: 1 - uid: 769 components: - type: Transform - pos: -5.5,-29.5 + pos: -4.5,-29.5 parent: 1 - uid: 770 components: - type: Transform - pos: -4.5,-29.5 + pos: -3.5,-29.5 parent: 1 - uid: 771 components: - type: Transform - pos: -3.5,-29.5 + pos: -3.5,-30.5 parent: 1 - uid: 772 components: - type: Transform - pos: -3.5,-30.5 + pos: -2.5,-30.5 parent: 1 - uid: 773 components: - type: Transform - pos: -2.5,-30.5 + pos: -1.5,-30.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 776 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 777 + components: + - type: Transform + pos: 6.5,-21.5 parent: 1 - - uid: 774 + - uid: 778 components: - type: Transform - pos: -1.5,-30.5 + pos: 6.5,-20.5 parent: 1 - - uid: 775 + - uid: 779 components: - type: Transform - pos: -0.5,-30.5 + pos: 4.5,-20.5 parent: 1 - - uid: 776 + - uid: 780 components: - type: Transform - pos: -1.5,-1.5 + pos: 5.5,-20.5 parent: 1 - - uid: 777 + - uid: 781 components: - type: Transform - pos: -2.5,-1.5 + pos: 6.5,-22.5 parent: 1 - proto: CableTerminal entities: - - uid: 778 + - uid: 782 components: - type: Transform rot: -1.5707963267948966 rad @@ -9012,153 +9578,158 @@ entities: parent: 1 - proto: CandlePurpleSmallInfinite entities: - - uid: 779 + - uid: 783 components: - type: Transform pos: 0.036164522,8.750959 parent: 1 - - uid: 780 + - uid: 784 components: - type: Transform pos: -0.80500996,8.838582 parent: 1 - - uid: 781 + - uid: 785 components: - type: Transform pos: 2.3813057,-18.354 parent: 1 - - uid: 782 + - uid: 786 components: - type: Transform pos: 8.67259,-18.248854 parent: 1 - - uid: 783 + - uid: 787 components: - type: Transform pos: 8.269527,-18.564293 parent: 1 - - uid: 784 + - uid: 788 components: - type: Transform pos: 3.2750537,-18.634392 parent: 1 - - uid: 785 + - uid: 789 components: - type: Transform pos: 7.4458776,-18.529245 parent: 1 - - uid: 786 + - uid: 790 components: - type: Transform pos: 2.6616974,-18.599342 parent: 1 - - uid: 787 + - uid: 791 components: - type: Transform pos: 7.761318,-18.406574 parent: 1 - - uid: 788 + - uid: 792 components: - type: Transform pos: 3.0121868,-18.231329 parent: 1 - proto: CardDeckNanotrasen entities: - - uid: 789 + - uid: 793 components: - type: Transform pos: -2.4614599,9.619713 parent: 1 - proto: CarpetBlack entities: - - uid: 790 + - uid: 794 components: - type: Transform pos: -8.5,-25.5 parent: 1 - - uid: 791 + - uid: 795 components: - type: Transform pos: -8.5,-24.5 parent: 1 - - uid: 792 + - uid: 796 components: - type: Transform pos: -8.5,-23.5 parent: 1 - proto: CarpetPurple entities: - - uid: 793 + - uid: 797 components: - type: Transform pos: 3.5,-18.5 parent: 1 - - uid: 794 + - uid: 798 components: - type: Transform pos: 5.5,-19.5 parent: 1 - - uid: 795 + - uid: 799 components: - type: Transform pos: 4.5,-19.5 parent: 1 - - uid: 796 + - uid: 800 components: - type: Transform pos: 5.5,-18.5 parent: 1 - - uid: 797 + - uid: 801 components: - type: Transform pos: 4.5,-18.5 parent: 1 - - uid: 798 + - uid: 802 components: - type: Transform pos: 2.5,-18.5 parent: 1 - - uid: 799 + - uid: 803 components: - type: Transform pos: 6.5,-19.5 parent: 1 - - uid: 800 + - uid: 804 components: - type: Transform pos: 7.5,-18.5 parent: 1 - - uid: 801 + - uid: 805 components: - type: Transform pos: 6.5,-18.5 parent: 1 - - uid: 802 + - uid: 806 components: - type: Transform pos: 8.5,-18.5 parent: 1 - proto: CartridgeRailHighExplosive entities: - - uid: 803 + - uid: 932 components: - type: Transform - pos: 3.6922448,6.6476736 + pos: 3.3832502,6.059848 parent: 1 - - uid: 804 + - uid: 933 components: - type: Transform - pos: 3.5132082,6.4360847 + pos: 3.4375036,6.480312 parent: 1 - - uid: 805 + - uid: 934 components: - type: Transform - pos: 3.5132082,6.6151214 + pos: 3.491757,6.480312 parent: 1 - - uid: 806 + - uid: 935 + components: + - type: Transform + pos: 3.4239402,6.6837626 + parent: 1 + - uid: 936 components: - type: Transform - pos: 3.4969323,6.501189 + pos: 3.4239402,6.3039885 parent: 1 - proto: Catwalk entities: @@ -9309,237 +9880,247 @@ entities: pos: 1.5,-22.5 parent: 1 - uid: 834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-26.5 - parent: 1 - - uid: 835 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-30.5 parent: 1 - - uid: 836 + - uid: 835 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-28.5 parent: 1 - - uid: 837 + - uid: 836 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-25.5 parent: 1 - - uid: 838 + - uid: 837 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-27.5 parent: 1 - - uid: 839 + - uid: 838 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-30.5 parent: 1 - - uid: 840 + - uid: 839 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-29.5 parent: 1 - - uid: 841 + - uid: 840 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-19.5 parent: 1 - - uid: 842 + - uid: 841 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-19.5 parent: 1 - - uid: 843 + - uid: 842 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-18.5 parent: 1 - - uid: 844 + - uid: 843 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-19.5 parent: 1 - - uid: 845 + - uid: 844 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-7.5 parent: 1 - - uid: 846 + - uid: 845 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-7.5 parent: 1 - - uid: 847 + - uid: 846 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 848 + - uid: 847 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-6.5 parent: 1 - - uid: 849 + - uid: 848 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-5.5 parent: 1 - - uid: 850 + - uid: 849 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 851 + - uid: 850 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-4.5 parent: 1 - - uid: 852 + - uid: 851 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,9.5 parent: 1 - - uid: 853 + - uid: 852 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,7.5 parent: 1 - - uid: 854 + - uid: 853 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 855 + - uid: 854 components: - type: Transform pos: 5.5,10.5 parent: 1 - - uid: 856 + - uid: 855 components: - type: Transform pos: 5.5,9.5 parent: 1 - - uid: 857 + - uid: 856 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 858 + - uid: 857 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 859 + - uid: 858 components: - type: Transform pos: 4.5,10.5 parent: 1 - - uid: 860 + - uid: 859 components: - type: Transform pos: 4.5,9.5 parent: 1 - - uid: 861 + - uid: 860 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 862 + - uid: 861 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 863 + - uid: 862 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 864 + - uid: 863 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 865 + - uid: 864 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-15.5 parent: 1 - - uid: 866 + - uid: 865 components: - type: Transform pos: 9.5,3.5 parent: 1 - - uid: 867 + - uid: 866 components: - type: Transform pos: 9.5,4.5 parent: 1 - - uid: 868 + - uid: 867 components: - type: Transform pos: 0.5,-23.5 parent: 1 - - uid: 869 + - uid: 868 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-3.5 parent: 1 + - uid: 869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-25.5 + parent: 1 + - uid: 870 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 1 + - uid: 871 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 1 - proto: ChairFolding entities: - - uid: 870 + - uid: 872 components: - type: Transform rot: 3.141592653589793 rad pos: -4.4942985,11.499319 parent: 1 - - uid: 871 + - uid: 873 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.363054,-19.397055 parent: 1 - - uid: 872 + - uid: 874 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.675554,-19.41268 parent: 1 - - uid: 873 + - uid: 875 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.675554,-19.41268 parent: 1 - - uid: 874 + - uid: 876 components: - type: Transform pos: -3.5051608,4.552843 parent: 1 - - uid: 875 + - uid: 877 components: - type: Transform rot: 3.141592653589793 rad @@ -9547,292 +10128,406 @@ entities: parent: 1 - proto: ChairOfficeDark entities: - - uid: 876 + - uid: 878 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.325447,-29.204823 parent: 1 - - uid: 877 + - uid: 879 components: - type: Transform pos: -5.5834303,-8.422228 parent: 1 + - uid: 880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.446555,-26.37038 + parent: 1 + - uid: 881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5064507,-26.37038 + parent: 1 + - uid: 882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.9954076,-24.280783 + parent: 1 - proto: ChemDispenser entities: - - uid: 878 + - uid: 883 components: - type: Transform pos: -6.5,-6.5 parent: 1 - proto: ChemistryHotplate entities: - - uid: 879 + - uid: 884 components: - type: Transform pos: -5.5,-9.5 parent: 1 - proto: ChemMaster entities: - - uid: 880 + - uid: 885 components: - type: Transform pos: -6.5,-7.5 parent: 1 - proto: ChurchWindow entities: - - uid: 881 + - uid: 886 components: - type: Transform pos: 5.5,-18.5 parent: 1 - proto: CigaretteSpent entities: - - uid: 882 + - uid: 887 components: - type: Transform pos: -8.767945,-21.830345 parent: 1 - - uid: 883 + - uid: 888 components: - type: Transform pos: -10.7561,-22.430092 parent: 1 - proto: CloningPod entities: - - uid: 884 + - uid: 889 components: - type: Transform pos: -5.5,-3.5 parent: 1 - type: DeviceLinkSink links: - - 914 + - 939 - proto: ClosetEmergencyFilledRandom entities: - - uid: 885 + - uid: 890 components: - type: Transform pos: -2.5,-17.5 parent: 1 - - uid: 886 + - uid: 891 components: - type: Transform pos: -6.5,-24.5 parent: 1 - - uid: 887 +- proto: ClosetToolFilled + entities: + - uid: 892 components: - type: Transform - pos: 4.5,-25.5 + pos: -0.5606214,-24.496494 parent: 1 -- proto: ClosetToolFilled + - type: Physics + fixedRotation: False + - uid: 893 + components: + - type: Transform + anchored: True + pos: -8.5,-17.5 + parent: 1 + - type: Physics + fixedRotation: False + bodyType: Static +- proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 888 + - uid: 894 + components: + - type: Transform + pos: -4.6478863,-9.453101 + parent: 1 +- proto: ClothingBeltSheathDSMSabreFilled + entities: + - uid: 896 + components: + - type: Transform + parent: 895 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesImperialGovernorGloves + entities: + - uid: 897 + components: + - type: Transform + parent: 895 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesImperialLonggloves + entities: + - uid: 904 components: - type: Transform - pos: -0.5,-26.5 - parent: 1 - - uid: 889 + parent: 903 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 905 components: - type: Transform - anchored: True - pos: -8.5,-17.5 - parent: 1 + parent: 903 - type: Physics - fixedRotation: False - bodyType: Static -- proto: ClothingBackpackDuffelSurgeryAdvancedFilled + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetImperialEVA entities: - - uid: 890 + - uid: 58 components: - type: Transform - pos: -3.3814595,-5.8999166 - parent: 1 - - uid: 891 + parent: 56 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 63 components: - type: Transform - pos: -3.4363146,-5.5297155 - parent: 1 - - uid: 892 + parent: 61 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 906 components: - type: Transform - pos: -3.4363146,-5.337759 - parent: 1 -- proto: ClothingHeadHelmetImperialEVA + parent: 903 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 907 + components: + - type: Transform + parent: 903 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskImperialCombatGasmask entities: - uid: 59 components: - type: Transform - parent: 57 + parent: 56 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 64 components: - type: Transform - parent: 62 + parent: 61 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: ClothingHeadsetEmpire +- proto: ClothingMaskImperialGovernorMask entities: - - uid: 893 + - uid: 898 components: - type: Transform - pos: -6.560283,-25.952425 - parent: 1 - - uid: 894 + parent: 895 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckCloakImperialGovernor + entities: + - uid: 899 components: - type: Transform - pos: -6.560283,-25.952425 - parent: 1 - - uid: 895 + parent: 895 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckCrucifixGold + entities: + - uid: 914 components: - type: Transform - pos: -6.372783,-25.9993 + pos: 6.3914356,-18.430052 parent: 1 -- proto: ClothingMaskImperialCombatGasmask +- proto: ClothingOuterCoatImperialGovernor + entities: + - uid: 900 + components: + - type: Transform + parent: 895 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatImperialSoftsuit entities: - uid: 60 components: - type: Transform - parent: 57 + parent: 56 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 65 components: - type: Transform - parent: 62 + parent: 61 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: ClothingNeckCrucifixGold + - uid: 908 + components: + - type: Transform + parent: 903 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 909 + components: + - type: Transform + parent: 903 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsImperialGovernorBoots entities: - - uid: 896 + - uid: 901 components: - type: Transform - pos: 6.3914356,-18.430052 - parent: 1 -- proto: ClothingOuterCoatImperialSoftsuit + parent: 895 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsMagDSM entities: - - uid: 61 + - uid: 910 components: - type: Transform - parent: 57 + parent: 903 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 66 + - uid: 911 components: - type: Transform - parent: 62 + parent: 903 - type: Physics - angularDamping: 0 - linearDamping: 0 canCollide: False - type: InsideEntityStorage - proto: Cobweb1 entities: - - uid: 897 + - uid: 915 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 898 + - uid: 916 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,7.5 parent: 1 - - uid: 899 + - uid: 917 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 900 + - uid: 918 components: - type: Transform pos: -5.5,9.5 parent: 1 - - uid: 901 + - uid: 919 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 902 + - uid: 920 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,11.5 parent: 1 - - uid: 903 + - uid: 921 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,4.5 parent: 1 - - uid: 904 + - uid: 922 components: - type: Transform pos: -1.5,0.5 parent: 1 -- proto: Cobweb2 - entities: - - uid: 905 + - uid: 923 components: - type: Transform - pos: 9.5,-24.5 + rot: -1.5707963267948966 rad + pos: 1.5,-22.5 parent: 1 - - uid: 906 + - uid: 924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 1 +- proto: Cobweb2 + entities: + - uid: 925 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-17.5 parent: 1 - - uid: 907 + - uid: 926 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 908 + - uid: 927 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,2.5 parent: 1 - - uid: 909 + - uid: 928 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 910 + - uid: 929 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,3.5 parent: 1 -- proto: ColonyShellComplete - entities: - - uid: 911 + - uid: 930 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 1 + - uid: 931 components: - type: Transform - pos: 3.3598633,6.378355 + rot: 1.5707963267948966 rad + pos: -6.5,-17.5 parent: 1 -- proto: ComputerAdvancedRadar +- proto: ComputerAlert entities: - - uid: 912 + - uid: 937 components: - type: Transform - pos: 6.5,-23.5 + rot: 1.5707963267948966 rad + pos: 3.5,-26.5 parent: 1 - proto: ComputerBroken entities: - - uid: 913 + - uid: 938 components: - type: Transform rot: -1.5707963267948966 rad @@ -9840,136 +10535,145 @@ entities: parent: 1 - proto: ComputerCloningConsole entities: - - uid: 914 + - uid: 939 components: - type: Transform pos: -4.5,-3.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 884: + 889: - - CloningPodSender - CloningPodReceiver - - MedicalScannerSender - CloningPodReceiver - 1168: + 1241: - - MedicalScannerSender - MedicalScannerReceiver - - CloningPodSender - MedicalScannerReceiver -- proto: ComputerRadar +- proto: ComputerPowerMonitoring entities: - - uid: 915 + - uid: 940 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-3.5 + rot: -1.5707963267948966 rad + pos: 8.5,-26.5 parent: 1 -- proto: ComputerShuttle +- proto: ComputerRadar entities: - - uid: 916 + - uid: 941 components: - type: Transform - pos: 7.5,-23.5 + rot: 3.141592653589793 rad + pos: 6.5,-3.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 6: - - - Group1 - - SpaceArtilleryFire - - type: ContainerContainer - containers: - board: !type:Container - showEnts: False - occludes: True - ents: [] - disk_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - id_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: NamedModules - buttonNames: - - Fire 320mm - - Module B - - Module C - - Module D - - Module E -- proto: ComputerTabletopAlert +- proto: ComputerTabletopAdvancedRadar entities: - - uid: 917 + - uid: 942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-28.5 + pos: 8.5,-25.5 parent: 1 - - uid: 918 + - uid: 943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-24.5 + pos: 6.5,-23.5 parent: 1 -- proto: ComputerTabletopCommsShip +- proto: ComputerTabletopAlert entities: - - uid: 919 + - uid: 944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-26.5 + rot: -1.5707963267948966 rad + pos: -2.5,-28.5 parent: 1 -- proto: ComputerTabletopCrewMonitoring +- proto: ComputerTabletopCommsShip entities: - - uid: 920 + - uid: 945 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-26.5 + pos: 3.5,-25.5 parent: 1 - proto: ComputerTabletopPowerMonitoring entities: - - uid: 921 + - uid: 946 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-29.5 parent: 1 - - uid: 922 + - uid: 947 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-23.5 + pos: 1.5,-23.5 parent: 1 - - uid: 923 +- proto: ComputerTabletopShuttle + entities: + - uid: 948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-25.5 + pos: 5.5,-23.5 parent: 1 -- proto: ComputerTargeting + - type: ContainerContainer + containers: + board: !type:Container + showEnts: False + occludes: True + ents: [] + disk_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + id_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: DeviceLinkSource + linkedPorts: + 6: + - - Group1 + - SpaceArtilleryFire +- proto: ComputerTabletopTargeting entities: - - uid: 924 + - uid: 949 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 1 + - type: TargetingConsole + cannonGroups: + all: + - 113 + - 114 + - 115 + - 116 + 70mm "Jeong" swarmrocket platform: + - 113 + - 114 + - 115 + - 116 + - uid: 950 components: - type: Transform - pos: 8.5,-23.5 + pos: 7.5,-25.5 parent: 1 - type: TargetingConsole cannonGroups: all: + - 113 - 114 - 115 - 116 - - 117 70mm "Jeong" swarmrocket platform: + - 113 - 114 - 115 - 116 - - 117 - proto: ComputerWallmountBankATM entities: - - uid: 925 + - uid: 951 components: - type: Transform pos: 5.5,2.5 @@ -9988,28 +10692,28 @@ entities: canCollide: False - proto: CoolantCartridge entities: - - uid: 927 + - uid: 953 components: - type: Transform - parent: 926 + parent: 952 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 928 + - uid: 954 components: - type: Transform - parent: 926 + parent: 952 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 929 + - uid: 955 components: - type: Transform - parent: 926 + parent: 952 - type: Physics angularDamping: 0 linearDamping: 0 @@ -10017,19 +10721,19 @@ entities: - type: InsideEntityStorage - proto: CoolantCartridge30 entities: - - uid: 930 + - uid: 956 components: - type: Transform - parent: 926 + parent: 952 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 931 + - uid: 957 components: - type: Transform - parent: 926 + parent: 952 - type: Physics angularDamping: 0 linearDamping: 0 @@ -10037,19 +10741,19 @@ entities: - type: InsideEntityStorage - proto: CrateAutogunAmmo entities: - - uid: 932 + - uid: 958 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 933 + - uid: 959 components: - type: Transform pos: -1.5,3.5 parent: 1 - proto: CrateCoolant entities: - - uid: 926 + - uid: 952 components: - type: Transform pos: 2.5,6.5 @@ -10088,378 +10792,486 @@ entities: showEnts: False occludes: True ents: - - 931 - - 930 - - 929 - - 928 - - 927 + - 957 + - 956 + - 955 + - 954 + - 953 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateFoodMRE entities: - - uid: 934 + - uid: 960 components: - type: Transform pos: -5.5,5.5 parent: 1 - proto: CrateJeongAmmo entities: - - uid: 935 + - uid: 961 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 936 + - uid: 962 components: - type: Transform pos: 0.5,3.5 parent: 1 - proto: CrateVulcanAmmo entities: - - uid: 937 + - uid: 963 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 938 + - uid: 964 components: - type: Transform pos: 1.5,3.5 parent: 1 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 939 + - uid: 965 components: - type: Transform pos: -3.5,-24.5 parent: 1 - - uid: 940 + - uid: 966 components: - type: Transform pos: -3.5,-26.5 parent: 1 -- proto: CurtainsBlackOpen +- proto: CurtainsBlack entities: - - uid: 941 + - uid: 967 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-25.5 + pos: -8.5,-24.5 parent: 1 - - uid: 942 + - uid: 968 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-24.5 + pos: -11.5,-23.5 parent: 1 - - uid: 943 +- proto: CurtainsBlackOpen + entities: + - uid: 969 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-24.5 + pos: -10.5,-25.5 parent: 1 - - uid: 944 + - uid: 970 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-23.5 + pos: -11.5,-24.5 parent: 1 - - uid: 945 + - uid: 971 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-22.5 + pos: -8.5,-23.5 parent: 1 - - uid: 946 + - uid: 972 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-23.5 + pos: -11.5,-22.5 parent: 1 - - uid: 947 + - uid: 973 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-1.5 parent: 1 - - uid: 948 + - uid: 974 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,0.5 parent: 1 - - uid: 949 + - uid: 975 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-25.5 parent: 1 + - uid: 976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-26.5 + parent: 1 + - uid: 977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-25.5 + parent: 1 - proto: CurtainsPurpleOpen entities: - - uid: 950 + - uid: 978 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-1.5 parent: 1 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 912 + components: + - type: Transform + parent: 903 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 913 + components: + - type: Transform + parent: 903 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Dresser entities: - - uid: 951 + - uid: 979 components: - type: Transform pos: -8.5,-22.5 parent: 1 + - type: Storage + storedItems: + 985: + position: 0,0 + _rotation: East + 980: + position: 2,0 + _rotation: South + 981: + position: 4,0 + _rotation: South + 982: + position: 0,2 + _rotation: South + 983: + position: 2,2 + _rotation: South + 984: + position: 4,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 980 + - 981 + - 982 + - 983 + - 984 + - 985 - proto: DrinkBeerCan entities: - - uid: 952 + - uid: 986 components: - type: Transform pos: -10.738575,-22.1497 parent: 1 - - uid: 953 + - uid: 987 components: - type: Transform pos: -3.50918,3.8372777 parent: 1 - - uid: 954 + - uid: 988 components: - type: Transform pos: -10.195317,-22.079603 parent: 1 - - uid: 955 + - uid: 989 components: - type: Transform pos: -3.3586764,3.483025 parent: 1 +- proto: DrinkBeerGrowler + entities: + - uid: 980 + components: + - type: Transform + parent: 979 + - type: Physics + canCollide: False + - uid: 981 + components: + - type: Transform + parent: 979 + - type: Physics + canCollide: False + - uid: 982 + components: + - type: Transform + parent: 979 + - type: Physics + canCollide: False + - uid: 983 + components: + - type: Transform + parent: 979 + - type: Physics + canCollide: False + - uid: 984 + components: + - type: Transform + parent: 979 + - type: Physics + canCollide: False +- proto: DrinkCoconutWaterGlass + entities: + - uid: 990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.4607587,-25.832245 + parent: 1 - proto: DrinkGlass entities: - - uid: 956 + - uid: 991 components: - type: Transform pos: -5.3006854,4.105737 parent: 1 - - uid: 957 + - uid: 992 components: - type: Transform pos: -5.7225714,4.6838393 parent: 1 - - uid: 958 + - uid: 993 components: - type: Transform pos: -5.788966,4.1871176 parent: 1 - proto: DrinkRootBeerCan entities: - - uid: 959 + - uid: 994 components: - type: Transform pos: -5.30653,-19.372026 parent: 1 - proto: DrinkWineBottleFull entities: - - uid: 960 + - uid: 995 components: - type: Transform pos: -3.5655012,11.610062 parent: 1 - - uid: 961 + - uid: 996 components: - type: Transform pos: -0.33184934,8.71591 parent: 1 + - uid: 997 + components: + - type: Transform + pos: 7.6518664,-23.18046 + parent: 1 - proto: DrinkWineGlass entities: - - uid: 962 + - uid: 998 components: - type: Transform pos: -1.0328281,8.575714 parent: 1 - - uid: 963 + - uid: 999 components: - type: Transform pos: -3.845893,11.68016 parent: 1 - - uid: 964 + - uid: 1000 components: - type: Transform pos: -3.179963,11.575012 parent: 1 - - uid: 965 + - uid: 1001 components: - type: Transform pos: -1.3833175,8.663337 parent: 1 + - uid: 1002 + components: + - type: Transform + pos: 7.1798615,-23.359495 + parent: 1 + - uid: 1003 + components: + - type: Transform + pos: 7.440278,-23.619913 + parent: 1 - proto: Dropper entities: - - uid: 966 + - uid: 1004 components: - type: Transform - pos: -4.53538,-9.439533 + pos: -5.2039843,-9.642988 parent: 1 - proto: DSMConscriptAmmoVendory entities: - - uid: 967 + - uid: 1005 components: - type: Transform pos: 8.5,1.5 parent: 1 - proto: DSMConscriptGearVendory entities: - - uid: 968 + - uid: 1006 components: - type: Transform pos: 8.5,-0.5 parent: 1 - proto: DSMConscriptShipVendory entities: - - uid: 969 + - uid: 1007 components: - type: Transform pos: 1.5,1.5 parent: 1 - proto: ExtinguisherCabinetFilled entities: - - uid: 970 + - uid: 1008 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 1 - - uid: 971 + - uid: 1009 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-14.5 parent: 1 - - uid: 972 + - uid: 1010 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-20.5 parent: 1 - - uid: 973 + - uid: 1011 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-21.5 parent: 1 - - uid: 974 + - uid: 1012 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,6.5 parent: 1 -- proto: FireAxeCabinetFilled - entities: - - uid: 975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 1 - proto: Firelock entities: - - uid: 976 + - uid: 1013 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 977 + - uid: 1014 components: - type: Transform pos: -2.5,-6.5 parent: 1 - - uid: 978 + - uid: 1015 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 979 + - uid: 1016 components: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 980 + - uid: 1017 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 981 + - uid: 1018 components: - type: Transform pos: -2.5,-5.5 parent: 1 - - uid: 982 + - uid: 1019 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 983 + - uid: 1020 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 984 + - uid: 1021 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 985 + - uid: 1022 components: - type: Transform pos: 1.5,-19.5 parent: 1 - - uid: 986 + - uid: 1023 components: - type: Transform pos: 9.5,-21.5 parent: 1 - - uid: 987 + - uid: 1024 components: - type: Transform pos: -3.5,-18.5 parent: 1 - - uid: 988 + - uid: 1025 components: - type: Transform pos: -7.5,-18.5 parent: 1 - - uid: 989 + - uid: 1026 components: - type: Transform pos: -7.5,-21.5 parent: 1 - - uid: 990 + - uid: 1027 components: - type: Transform pos: -5.5,-23.5 parent: 1 - - uid: 991 + - uid: 1028 components: - type: Transform pos: -0.5,-22.5 parent: 1 - - uid: 992 + - uid: 1029 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-16.5 parent: 1 - - uid: 993 + - uid: 1030 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-16.5 parent: 1 - - uid: 994 + - uid: 1031 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-21.5 parent: 1 - - uid: 995 + - uid: 1032 components: - type: Transform rot: 1.5707963267948966 rad @@ -10467,14 +11279,14 @@ entities: parent: 1 - proto: FloodlightBroken entities: - - uid: 996 + - uid: 1033 components: - type: Transform pos: 6.3343687,1.5250366 parent: 1 - proto: FloorDrain entities: - - uid: 997 + - uid: 1034 components: - type: Transform rot: 3.141592653589793 rad @@ -10482,7 +11294,7 @@ entities: parent: 1 - type: Fixtures fixtures: {} - - uid: 998 + - uid: 1035 components: - type: Transform pos: -3.5,-1.5 @@ -10491,203 +11303,188 @@ entities: fixtures: {} - proto: FoodBowlBigTrash entities: - - uid: 999 + - uid: 1036 components: - type: Transform pos: 0.077132344,8.544015 parent: 1 - proto: FoodPacketPistachioTrash entities: - - uid: 1000 + - uid: 1037 components: - type: Transform pos: -4.536465,4.209358 parent: 1 - proto: FoodPacketPopcornTrash entities: - - uid: 1001 + - uid: 1038 components: - type: Transform pos: -9.646851,-22.937117 parent: 1 - - uid: 1002 + - uid: 1039 components: - type: Transform pos: 7.078408,-0.70122194 parent: 1 - - uid: 1003 + - uid: 1040 components: - type: Transform pos: -3.706387,9.840868 parent: 1 -- proto: FoodPacketRedalertnutsTrash - entities: - - uid: 1004 - components: - - type: Transform - pos: -0.43736482,-24.51416 - parent: 1 -- proto: FoodPacketSaturnosTrash - entities: - - uid: 1005 - components: - - type: Transform - pos: -4.9963512,-26.496159 - parent: 1 - proto: FoodPacketSemkiTrash entities: - - uid: 1006 + - uid: 1041 components: - type: Transform pos: -0.7350528,5.5156784 parent: 1 - proto: FoodPacketStickTrash entities: - - uid: 1007 + - uid: 1042 components: - type: Transform pos: -0.5434767,-28.729654 parent: 1 - proto: FoodPacketSusTrash entities: - - uid: 1008 + - uid: 1043 components: - type: Transform pos: -5.447663,-28.58317 parent: 1 - - uid: 1009 + - uid: 1044 components: - type: Transform pos: 0.57957006,-28.33903 parent: 1 - proto: FoodPlateSmallTrash entities: - - uid: 1010 + - uid: 1045 components: - type: Transform pos: -4.5162544,8.455652 parent: 1 - - uid: 1011 + - uid: 1046 components: - type: Transform pos: 0.5346668,-2.3862953 parent: 1 - proto: FoodPSBTrash entities: - - uid: 1012 + - uid: 1047 components: - type: Transform - pos: -1.2760562,-11.846495 + pos: -5.422898,-25.990818 parent: 1 - - uid: 1013 + - uid: 1048 components: - type: Transform pos: 2.1904192,-3.1112895 parent: 1 - - uid: 1014 + - uid: 1049 components: - type: Transform pos: -0.60484445,7.4808426 parent: 1 - proto: FoodSnackNutribrick entities: - - uid: 1015 + - uid: 1050 components: - type: Transform pos: -6.497783,-26.421175 parent: 1 -- proto: FoodTinBeansTrash +- proto: GasPassiveVent entities: - - uid: 1016 + - uid: 1051 components: - type: Transform - pos: -10.533169,-24.56472 + rot: -1.5707963267948966 rad + pos: 2.5,-15.5 parent: 1 -- proto: GasPassiveVent +- proto: GasPipeBend entities: - - uid: 1017 + - uid: 1052 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-26.5 + pos: 3.5,-26.5 parent: 1 -- proto: GasPipeBend - entities: - - uid: 1018 + - uid: 1053 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 1019 + - uid: 1054 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,7.5 parent: 1 - - uid: 1020 + - uid: 1055 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 1021 + - uid: 1056 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 1 - - uid: 1022 + - uid: 1057 components: - type: Transform pos: -4.5,-12.5 parent: 1 - - uid: 1023 + - uid: 1058 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-14.5 parent: 1 - - uid: 1024 + - uid: 1059 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-22.5 parent: 1 - - uid: 1025 + - uid: 1060 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 1 - - uid: 1026 + - uid: 1061 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-22.5 parent: 1 - - uid: 1027 + - uid: 1062 components: - type: Transform pos: 0.5,-22.5 parent: 1 - - uid: 1028 + - uid: 1063 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-7.5 parent: 1 - - uid: 1029 + - uid: 1064 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-7.5 parent: 1 - - uid: 1030 + - uid: 1065 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-30.5 parent: 1 - - uid: 1031 + - uid: 1066 components: - type: Transform rot: -1.5707963267948966 rad @@ -10695,449 +11492,488 @@ entities: parent: 1 - proto: GasPipeFourway entities: - - uid: 1032 + - uid: 1067 components: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 1033 + - uid: 1068 components: - type: Transform pos: -1.5,-19.5 parent: 1 - proto: GasPipeStraight entities: - - uid: 1034 + - uid: 1069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-25.5 + parent: 1 + - uid: 1070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 1 + - uid: 1072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-26.5 + parent: 1 + - uid: 1073 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-2.5 parent: 1 - - uid: 1035 + - uid: 1074 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 1 - - uid: 1036 + - uid: 1075 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-2.5 parent: 1 - - uid: 1037 + - uid: 1076 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-2.5 parent: 1 - - uid: 1038 + - uid: 1077 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - - uid: 1039 + - uid: 1078 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,5.5 parent: 1 - - uid: 1040 + - uid: 1079 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 1 - - uid: 1041 + - uid: 1080 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 1 - - uid: 1042 + - uid: 1081 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,1.5 parent: 1 - - uid: 1043 + - uid: 1082 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 parent: 1 - - uid: 1044 + - uid: 1083 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-0.5 parent: 1 - - uid: 1045 + - uid: 1084 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 1 - - uid: 1046 + - uid: 1085 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 1 - - uid: 1047 + - uid: 1086 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-5.5 parent: 1 - - uid: 1048 + - uid: 1087 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-5.5 parent: 1 - - uid: 1049 + - uid: 1088 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-18.5 parent: 1 - - uid: 1050 + - uid: 1089 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-6.5 parent: 1 - - uid: 1051 + - uid: 1090 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 - - uid: 1052 + - uid: 1091 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-6.5 parent: 1 - - uid: 1053 + - uid: 1092 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-21.5 parent: 1 - - uid: 1054 + - uid: 1093 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 1 - - uid: 1055 + - uid: 1094 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-21.5 parent: 1 - - uid: 1056 + - uid: 1095 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-21.5 parent: 1 - - uid: 1057 + - uid: 1096 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-21.5 parent: 1 - - uid: 1058 + - uid: 1097 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-21.5 parent: 1 - - uid: 1059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-26.5 - parent: 1 - - uid: 1060 + - uid: 1098 components: - type: Transform pos: 0.5,-25.5 parent: 1 - - uid: 1061 + - uid: 1099 components: - type: Transform pos: 0.5,-24.5 parent: 1 - - uid: 1062 + - uid: 1100 components: - type: Transform pos: 0.5,-23.5 parent: 1 - - uid: 1063 + - uid: 1101 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-22.5 parent: 1 - - uid: 1064 + - uid: 1102 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-17.5 parent: 1 - - uid: 1065 + - uid: 1103 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-16.5 parent: 1 - - uid: 1066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-15.5 - parent: 1 - - uid: 1067 + - uid: 1104 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 1 - - uid: 1068 + - uid: 1105 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-13.5 parent: 1 - - uid: 1069 + - uid: 1106 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-12.5 parent: 1 - - uid: 1070 + - uid: 1107 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-11.5 parent: 1 - - uid: 1071 + - uid: 1108 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-10.5 parent: 1 - - uid: 1072 + - uid: 1109 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-9.5 parent: 1 - - uid: 1073 + - uid: 1110 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-8.5 parent: 1 - - uid: 1074 + - uid: 1111 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-13.5 parent: 1 - - uid: 1075 + - uid: 1112 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-20.5 parent: 1 - - uid: 1076 + - uid: 1113 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-20.5 parent: 1 - - uid: 1077 + - uid: 1114 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-20.5 parent: 1 - - uid: 1078 + - uid: 1115 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-20.5 parent: 1 - - uid: 1079 + - uid: 1116 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-20.5 parent: 1 - - uid: 1080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-20.5 - parent: 1 - - uid: 1081 + - uid: 1117 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-30.5 parent: 1 - - uid: 1082 + - uid: 1118 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-30.5 parent: 1 - - uid: 1083 + - uid: 1119 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-30.5 parent: 1 - - uid: 1084 + - uid: 1120 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-30.5 parent: 1 - - uid: 1085 + - uid: 1121 components: - type: Transform pos: 0.5,-29.5 parent: 1 - - uid: 1086 + - uid: 1122 components: - type: Transform pos: 0.5,-28.5 parent: 1 - - uid: 1087 + - uid: 1123 components: - type: Transform pos: 0.5,-27.5 parent: 1 + - uid: 1124 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 1 + - uid: 1125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 1 + - uid: 1126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 1 - proto: GasPipeTJunction entities: - - uid: 1088 + - uid: 1127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 1 + - uid: 1128 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 1 + - uid: 1129 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 1 - - uid: 1089 + - uid: 1130 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 1090 + - uid: 1131 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - - uid: 1091 + - uid: 1132 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 1 - - uid: 1092 + - uid: 1133 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-2.5 parent: 1 - - uid: 1093 + - uid: 1134 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 1 - - uid: 1094 + - uid: 1135 components: - type: Transform pos: -4.5,-5.5 parent: 1 - - uid: 1095 + - uid: 1136 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-13.5 parent: 1 - - uid: 1096 + - uid: 1137 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-20.5 parent: 1 - - uid: 1097 + - uid: 1138 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-22.5 parent: 1 - - uid: 1098 + - uid: 1139 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-21.5 parent: 1 - - uid: 1099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-26.5 - parent: 1 - - uid: 1100 + - uid: 1140 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-20.5 parent: 1 - - uid: 1101 + - uid: 1141 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-13.5 parent: 1 + - uid: 1142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 1 - proto: GasPort entities: - - uid: 1102 + - uid: 1143 components: - type: Transform pos: -4.5,-28.5 parent: 1 - proto: GasValve entities: - - uid: 1103 + - uid: 1144 components: - type: Transform pos: -4.5,-29.5 parent: 1 - proto: GasVentPump entities: - - uid: 1104 + - uid: 1145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-23.5 + parent: 1 + - uid: 1146 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 - - uid: 1105 + - uid: 1147 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-3.5 parent: 1 - - uid: 1106 + - uid: 1148 components: - type: Transform rot: -1.5707963267948966 rad @@ -11149,7 +11985,7 @@ entities: - 25 - 22 - 21 - - uid: 1107 + - uid: 1149 components: - type: Transform pos: 0.5,4.5 @@ -11160,7 +11996,7 @@ entities: - 25 - 22 - 21 - - uid: 1108 + - uid: 1150 components: - type: Transform rot: -1.5707963267948966 rad @@ -11172,7 +12008,7 @@ entities: - 25 - 22 - 21 - - uid: 1109 + - uid: 1151 components: - type: Transform pos: -9.5,-21.5 @@ -11183,7 +12019,7 @@ entities: - 25 - 22 - 21 - - uid: 1110 + - uid: 1152 components: - type: Transform rot: 1.5707963267948966 rad @@ -11195,7 +12031,7 @@ entities: - 25 - 22 - 21 - - uid: 1111 + - uid: 1153 components: - type: Transform rot: 1.5707963267948966 rad @@ -11207,7 +12043,7 @@ entities: - 25 - 22 - 21 - - uid: 1112 + - uid: 1154 components: - type: Transform rot: 3.141592653589793 rad @@ -11221,7 +12057,12 @@ entities: - 21 - proto: GasVentScrubber entities: - - uid: 1113 + - uid: 1155 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 1 + - uid: 1156 components: - type: Transform rot: 1.5707963267948966 rad @@ -11233,7 +12074,7 @@ entities: - 25 - 22 - 21 - - uid: 1114 + - uid: 1157 components: - type: Transform rot: 1.5707963267948966 rad @@ -11245,7 +12086,7 @@ entities: - 25 - 22 - 21 - - uid: 1115 + - uid: 1158 components: - type: Transform rot: 3.141592653589793 rad @@ -11257,7 +12098,7 @@ entities: - 25 - 22 - 21 - - uid: 1116 + - uid: 1159 components: - type: Transform rot: 1.5707963267948966 rad @@ -11269,7 +12110,7 @@ entities: - 25 - 22 - 21 - - uid: 1117 + - uid: 1160 components: - type: Transform rot: 1.5707963267948966 rad @@ -11281,7 +12122,7 @@ entities: - 25 - 22 - 21 - - uid: 1118 + - uid: 1161 components: - type: Transform rot: 1.5707963267948966 rad @@ -11293,7 +12134,7 @@ entities: - 25 - 22 - 21 - - uid: 1119 + - uid: 1162 components: - type: Transform rot: -1.5707963267948966 rad @@ -11305,7 +12146,7 @@ entities: - 25 - 22 - 21 - - uid: 1120 + - uid: 1163 components: - type: Transform pos: 5.5,-19.5 @@ -11318,128 +12159,124 @@ entities: - 21 - proto: Girder entities: - - uid: 1121 + - uid: 1164 components: - type: Transform pos: 2.5,-9.5 parent: 1 - - uid: 1122 + - uid: 1165 components: - type: Transform pos: 2.5,-12.5 parent: 1 - proto: GravityGeneratorMini entities: - - uid: 1123 + - uid: 1166 components: - type: Transform pos: -1.5,-26.5 parent: 1 - proto: Grille entities: - - uid: 1124 + - uid: 1167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-26.5 + parent: 1 + - uid: 1168 components: - type: Transform pos: -2.5,-9.5 parent: 1 - - uid: 1125 + - uid: 1169 components: - type: Transform pos: -2.5,-8.5 parent: 1 - - uid: 1126 + - uid: 1170 components: - type: Transform pos: -2.5,-7.5 parent: 1 - - uid: 1127 + - uid: 1171 components: - type: Transform pos: -2.5,-15.5 parent: 1 - - uid: 1128 + - uid: 1172 components: - type: Transform pos: -2.5,-11.5 parent: 1 - - uid: 1129 + - uid: 1173 components: - type: Transform pos: 5.5,-4.5 parent: 1 - - uid: 1130 + - uid: 1174 components: - type: Transform pos: 4.5,-4.5 parent: 1 - - uid: 1131 + - uid: 1175 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 1132 + - uid: 1176 components: - type: Transform pos: 3.5,-4.5 parent: 1 - - uid: 1133 + - uid: 1177 components: - type: Transform pos: -12.5,-22.5 parent: 1 - - uid: 1134 + - uid: 1178 components: - type: Transform pos: -12.5,-23.5 parent: 1 - - uid: 1135 + - uid: 1179 components: - type: Transform pos: -12.5,-24.5 parent: 1 - - uid: 1136 + - uid: 1180 components: - type: Transform pos: 2.5,-25.5 parent: 1 - - uid: 1137 - components: - - type: Transform - pos: 1.5,-25.5 - parent: 1 - - uid: 1138 - components: - - type: Transform - pos: 1.5,-26.5 - parent: 1 - - uid: 1139 + - uid: 1181 components: - type: Transform pos: 4.5,-17.5 parent: 1 - - uid: 1140 + - uid: 1182 components: - type: Transform pos: 5.5,-17.5 parent: 1 - - uid: 1141 + - uid: 1183 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 1142 + - uid: 1184 components: - type: Transform pos: 6.5,-17.5 parent: 1 - - uid: 1143 + - uid: 1185 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 1144 + - uid: 1186 components: - type: Transform rot: 1.5707963267948966 rad @@ -11447,263 +12284,263 @@ entities: parent: 1 - proto: Gyroscope entities: - - uid: 1145 + - uid: 1187 components: - type: Transform pos: -0.5,-27.5 parent: 1 - - uid: 1146 + - uid: 1188 components: - type: Transform pos: -1.5,-24.5 parent: 1 - - uid: 1147 + - uid: 1189 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 1148 + - uid: 1190 components: - type: Transform pos: -5.5,-30.5 parent: 1 - proto: HeadHuman entities: - - uid: 1149 + - uid: 1191 components: - type: Transform pos: -3.462973,10.391843 parent: 1 - proto: IdnaTorpedo entities: - - uid: 1812 + - uid: 1193 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1813 + - uid: 1194 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1814 + - uid: 1195 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1815 + - uid: 1196 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1816 + - uid: 1197 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1817 + - uid: 1198 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1818 + - uid: 1199 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1819 + - uid: 1200 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1820 + - uid: 1201 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1821 + - uid: 1202 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1822 + - uid: 1203 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1823 + - uid: 1204 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1824 + - uid: 1205 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1825 + - uid: 1206 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1826 + - uid: 1207 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1827 + - uid: 1208 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1828 + - uid: 1209 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1829 + - uid: 1210 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1830 + - uid: 1211 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1831 + - uid: 1212 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1832 + - uid: 1213 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1833 + - uid: 1214 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1834 + - uid: 1215 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1835 + - uid: 1216 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1836 + - uid: 1217 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1837 + - uid: 1218 components: - type: Transform - parent: 1811 + parent: 1192 - type: Physics canCollide: False - type: InsideEntityStorage - proto: JugBoriaticFuel entities: - - uid: 1150 + - uid: 1219 components: - type: Transform pos: -2.9984322,-28.354212 parent: 1 - - uid: 1151 + - uid: 1220 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5525718,-28.844797 parent: 1 - - uid: 1152 + - uid: 1221 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5674338,-28.94886 parent: 1 - - uid: 1153 + - uid: 1222 components: - type: Transform pos: -9.432028,-17.3254 parent: 1 - - uid: 1154 + - uid: 1223 components: - type: Transform pos: -9.607809,-17.247274 parent: 1 - proto: Jukebox entities: - - uid: 1155 + - uid: 1224 components: - type: Transform pos: -2.5,8.5 parent: 1 - proto: KitchenReagentGrinder entities: - - uid: 1156 + - uid: 1225 components: - type: Transform pos: -6.5,-9.5 parent: 1 - proto: LightStripInner entities: - - uid: 1157 + - uid: 1226 components: - type: Transform rot: 1.5707963267948966 rad @@ -11712,7 +12549,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1158 + - uid: 1227 components: - type: Transform pos: -6.5,-12.5 @@ -11720,7 +12557,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1159 + - uid: 1228 components: - type: Transform rot: -1.5707963267948966 rad @@ -11729,7 +12566,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1160 + - uid: 1229 components: - type: Transform rot: 3.141592653589793 rad @@ -11738,7 +12575,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1161 + - uid: 1230 components: - type: Transform rot: 1.5707963267948966 rad @@ -11749,7 +12586,7 @@ entities: - type: TurretIFF - proto: LightStripLineRotate entities: - - uid: 1162 + - uid: 1231 components: - type: Transform pos: -5.5,-14.5 @@ -11757,7 +12594,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1163 + - uid: 1232 components: - type: Transform rot: -1.5707963267948966 rad @@ -11766,7 +12603,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1164 + - uid: 1233 components: - type: Transform rot: 3.141592653589793 rad @@ -11775,7 +12612,7 @@ entities: - type: Fixtures fixtures: {} - type: TurretIFF - - uid: 1165 + - uid: 1234 components: - type: Transform rot: 1.5707963267948966 rad @@ -11786,7 +12623,7 @@ entities: - type: TurretIFF - proto: MagazineLightRifleBoxSlugHE entities: - - uid: 1806 + - uid: 1235 components: - type: Transform pos: -1.793534,4.6197577 @@ -11795,7 +12632,7 @@ entities: containers: ballistic-ammo: !type:Container ents: [] - - uid: 1807 + - uid: 1236 components: - type: Transform pos: -1.4951398,4.6061945 @@ -11804,7 +12641,7 @@ entities: containers: ballistic-ammo: !type:Container ents: [] - - uid: 1808 + - uid: 1237 components: - type: Transform pos: -1.8206606,4.3078003 @@ -11813,7 +12650,7 @@ entities: containers: ballistic-ammo: !type:Container ents: [] - - uid: 1809 + - uid: 1238 components: - type: Transform pos: -1.5222666,4.3213634 @@ -11824,52 +12661,52 @@ entities: ents: [] - proto: MaterialBiomass entities: - - uid: 1166 + - uid: 1239 components: - type: Transform pos: -5.541295,-3.6153278 parent: 1 - proto: MedicalBed entities: - - uid: 1167 + - uid: 1240 components: - type: Transform pos: -3.5,-7.5 parent: 1 - proto: MedicalScanner entities: - - uid: 1168 + - uid: 1241 components: - type: Transform pos: -6.5,-3.5 parent: 1 - type: DeviceLinkSink links: - - 914 + - 939 - proto: MedkitAdvancedFilled entities: - - uid: 1169 + - uid: 1242 components: - type: Transform pos: -3.2042627,-9.149912 parent: 1 - proto: MedkitBruteFilled entities: - - uid: 1170 + - uid: 1243 components: - type: Transform pos: -3.6261377,-9.165537 parent: 1 - proto: MedkitBurnFilled entities: - - uid: 1171 + - uid: 1244 components: - type: Transform pos: -3.6261377,-9.399912 parent: 1 - proto: MedkitCombatFilled entities: - - uid: 1172 + - uid: 1245 components: - type: Transform pos: -3.6678185,-8.195641 @@ -11877,121 +12714,121 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 - - uid: 1173 + - uid: 1246 components: - type: Transform pos: -3.2355127,-8.177672 parent: 1 - proto: MedkitOxygenFilled entities: - - uid: 1174 + - uid: 1247 components: - type: Transform pos: -3.6573877,-8.443297 parent: 1 - proto: MedkitRadiationFilled entities: - - uid: 1175 + - uid: 1248 components: - type: Transform pos: -3.1730127,-9.446787 parent: 1 - proto: MedkitToxinFilled entities: - - uid: 1176 + - uid: 1249 components: - type: Transform pos: -3.2042627,-8.412047 parent: 1 - proto: MiningDrill entities: - - uid: 1177 + - uid: 1250 components: - type: Transform pos: -5.622288,-17.293901 parent: 1 - - uid: 1178 + - uid: 1251 components: - type: Transform pos: -5.316179,-17.278828 parent: 1 - proto: N14BedWood entities: - - uid: 1179 + - uid: 1252 components: - type: Transform pos: -8.5,-25.5 parent: 1 - - uid: 1180 + - uid: 1253 components: - type: Transform pos: -8.5,-23.5 parent: 1 - - uid: 1181 + - uid: 1254 components: - type: Transform pos: -8.5,-24.5 parent: 1 - - uid: 1182 + - uid: 1255 components: - type: Transform pos: -11.5,-24.5 parent: 1 - - uid: 1183 + - uid: 1256 components: - type: Transform pos: -10.5,-25.5 parent: 1 - - uid: 1184 + - uid: 1257 components: - type: Transform pos: -11.5,-23.5 parent: 1 - - uid: 1185 + - uid: 1258 components: - type: Transform pos: -11.5,-22.5 parent: 1 - proto: N14BedWoodBunk entities: - - uid: 1186 + - uid: 1259 components: - type: Transform pos: -8.5,-23.5 parent: 1 - - uid: 1187 + - uid: 1260 components: - type: Transform pos: -8.5,-24.5 parent: 1 - - uid: 1188 + - uid: 1261 components: - type: Transform pos: -8.5,-25.5 parent: 1 - - uid: 1189 + - uid: 1262 components: - type: Transform pos: -11.5,-22.5 parent: 1 - - uid: 1190 + - uid: 1263 components: - type: Transform pos: -10.5,-25.5 parent: 1 - - uid: 1191 + - uid: 1264 components: - type: Transform pos: -11.5,-24.5 parent: 1 - - uid: 1192 + - uid: 1265 components: - type: Transform pos: -11.5,-23.5 parent: 1 - proto: N14ChairOfficeGreenBroken entities: - - uid: 1193 + - uid: 1266 components: - type: Transform rot: 3.141592653589793 rad @@ -11999,7 +12836,7 @@ entities: parent: 1 - proto: N14CrateAluminium entities: - - uid: 1811 + - uid: 1192 components: - type: Transform pos: 0.5,5.5 @@ -12010,39 +12847,39 @@ entities: showEnts: False occludes: True ents: - - 1812 - - 1813 - - 1814 - - 1815 - - 1816 - - 1817 - - 1818 - - 1819 - - 1820 - - 1821 - - 1822 - - 1823 - - 1824 - - 1825 - - 1826 - - 1827 - - 1828 - - 1829 - - 1830 - - 1831 - - 1832 - - 1833 - - 1834 - - 1835 - - 1836 - - 1837 + - 1193 + - 1194 + - 1195 + - 1196 + - 1197 + - 1198 + - 1199 + - 1200 + - 1201 + - 1202 + - 1203 + - 1204 + - 1205 + - 1206 + - 1207 + - 1208 + - 1209 + - 1210 + - 1211 + - 1212 + - 1213 + - 1214 + - 1215 + - 1216 + - 1217 + - 1218 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: N14JunkMirror entities: - - uid: 1194 + - uid: 1267 components: - type: Transform rot: 3.141592653589793 rad @@ -12050,7 +12887,7 @@ entities: parent: 1 - proto: N14JunkUrinal entities: - - uid: 1195 + - uid: 1268 components: - type: Transform pos: -3.5,0.5 @@ -12059,19 +12896,19 @@ entities: fixtures: {} - proto: N14TableCounterBar entities: - - uid: 1196 + - uid: 1269 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,8.5 parent: 1 - - uid: 1197 + - uid: 1270 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,8.5 parent: 1 - - uid: 1198 + - uid: 1271 components: - type: Transform rot: 1.5707963267948966 rad @@ -12079,18 +12916,18 @@ entities: parent: 1 - proto: N14TableMetalGrate entities: - - uid: 1199 + - uid: 1272 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-1.5 parent: 1 - - uid: 1200 + - uid: 1273 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 1201 + - uid: 1274 components: - type: Transform rot: 3.141592653589793 rad @@ -12098,13 +12935,13 @@ entities: parent: 1 - proto: N14ToiletDirty entities: - - uid: 1202 + - uid: 1275 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 1 - - uid: 1203 + - uid: 1276 components: - type: Transform rot: 1.5707963267948966 rad @@ -12112,63 +12949,40 @@ entities: parent: 1 - proto: OreBag entities: - - uid: 1204 + - uid: 1277 components: - type: Transform pos: -5.700413,-17.450151 parent: 1 - - uid: 1205 + - uid: 1278 components: - type: Transform pos: -5.363054,-17.435078 parent: 1 - proto: OreBox entities: - - uid: 1206 + - uid: 1279 components: - type: Transform pos: -8.304914,-19.716951 parent: 1 - proto: OreProcessor entities: - - uid: 1207 + - uid: 1280 components: - type: Transform pos: -6.5,-17.5 parent: 1 - proto: Paper entities: - - uid: 1208 - components: - - type: Transform - pos: 7.535639,-23.352873 - parent: 1 - - type: Paper - content: >- - From: Regiment Battalion Engineering Corps - - - Sir, - - - I do not wish to speak poorly, but given our trust, I must be honest. Keeping this rusted wreck running is a miracle — the ship is literally falling apart. Supplies have been scarce, the same engine oil has circulated far too long, and much of the vessel has rusted and become filthy. Some of the weapons are also corroded; we emptied them to remove the rust. Be sure to reload before battle. - - - To improve your survival chances in the upcoming engagements, we relocated the bridge to a more secure position. The move was rushed, however, and some prisoners have already turned the old bridge into a makeshift bar. - - - Please excuse the ship’s shortcomings. The prisoners we carry must either reach redemption soon, or we must reach our destination before they worsen the situation. - - - For the Kaiser! - - uid: 1209 + - uid: 1281 components: - type: Transform pos: -3.462973,10.194015 parent: 1 - type: Paper content: He who paid for this with his life - - uid: 1210 + - uid: 1282 components: - type: Transform pos: 8.1924,-1.2578125 @@ -12182,7 +12996,7 @@ entities: -Engineering - - uid: 1810 + - uid: 1283 components: - type: Transform pos: -1.181829,4.4976873 @@ -12195,7 +13009,7 @@ entities: Use it wisely. These are the last. - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 1211 + - uid: 1284 components: - type: Transform rot: -1.5707963267948966 rad @@ -12203,12 +13017,12 @@ entities: parent: 1 - proto: PlasmaWindowDirectional entities: - - uid: 1212 + - uid: 1285 components: - type: Transform pos: -6.5,-0.5 parent: 1 - - uid: 1213 + - uid: 1286 components: - type: Transform rot: 3.141592653589793 rad @@ -12216,19 +13030,19 @@ entities: parent: 1 - proto: PlastitaniumWindow entities: - - uid: 1214 + - uid: 1287 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 1215 + - uid: 1288 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,12.5 parent: 1 - - uid: 1216 + - uid: 1289 components: - type: Transform rot: 3.141592653589793 rad @@ -12236,24 +13050,24 @@ entities: parent: 1 - proto: PlushiePearCat entities: - - uid: 1217 + - uid: 1290 components: - type: Transform pos: -2.4731965,11.600811 parent: 1 - - uid: 1218 + - uid: 1291 components: - type: Transform pos: 11.401751,-23.386135 parent: 1 - - uid: 1219 + - uid: 1292 components: - type: Transform pos: -11.523069,-23.564976 parent: 1 - proto: PlushieSharkBlue entities: - - uid: 1220 + - uid: 1293 components: - type: Transform pos: -3.3709435,-7.382575 @@ -12263,7 +13077,7 @@ entities: linearDamping: 0 - proto: PosterLegitBarDrinks entities: - - uid: 1221 + - uid: 1294 components: - type: Transform rot: 1.5707963267948966 rad @@ -12271,245 +13085,281 @@ entities: parent: 1 - proto: PosterLegitSafetyEyeProtection entities: - - uid: 1222 + - uid: 1295 components: - type: Transform pos: -2.5,-12.5 parent: 1 - proto: Poweredlight entities: - - uid: 1223 + - uid: 1296 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-8.5 parent: 1 - - uid: 1224 + - uid: 1297 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-8.5 + pos: 2.5,-16.5 parent: 1 - - uid: 1225 + - uid: 1298 components: - type: Transform pos: 1.5,-22.5 parent: 1 - - uid: 1226 + - uid: 1299 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-29.5 parent: 1 - - uid: 1227 + - uid: 1300 components: - type: Transform pos: -6.5,-21.5 parent: 1 - - uid: 1228 + - uid: 1301 components: - type: Transform pos: -4.5,-24.5 parent: 1 - - uid: 1229 + - uid: 1302 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-25.5 parent: 1 - - uid: 1230 + - uid: 1303 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-26.5 parent: 1 - - uid: 1231 + - uid: 1304 components: - type: Transform pos: -11.5,-22.5 parent: 1 - - uid: 1232 + - uid: 1305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-20.5 + rot: -1.5707963267948966 rad + pos: -1.5,-21.5 parent: 1 - - uid: 1233 + - uid: 1306 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-15.5 parent: 1 - - uid: 1234 + - uid: 1307 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,2.5 parent: 1 - - uid: 1235 + - uid: 1308 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-11.5 parent: 1 - - uid: 1236 + - uid: 1309 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-19.5 parent: 1 - - uid: 1237 + - uid: 1310 components: - type: Transform pos: -10.5,-17.5 parent: 1 - - uid: 1238 + - uid: 1311 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-21.5 parent: 1 - - uid: 1239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-25.5 - parent: 1 - - uid: 1240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-25.5 - parent: 1 - - uid: 1241 + - uid: 1312 components: - type: Transform - pos: 2.5,-13.5 + pos: 2.5,-5.5 parent: 1 - - uid: 1242 + - uid: 1313 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-0.5 parent: 1 - - uid: 1243 + - uid: 1314 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-16.5 + pos: -0.5,-14.5 parent: 1 - - uid: 1244 + - uid: 1315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-9.5 + rot: 1.5707963267948966 rad + pos: -6.5,-8.5 parent: 1 - - uid: 1245 + - uid: 1316 components: - type: Transform - pos: -5.5,-3.5 + rot: 1.5707963267948966 rad + pos: -6.5,-3.5 parent: 1 - - uid: 1246 + - uid: 1317 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,0.5 parent: 1 - - uid: 1247 + - uid: 1318 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,7.5 parent: 1 - - uid: 1248 + - uid: 1319 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 1249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,4.5 - parent: 1 - - uid: 1250 + - uid: 1320 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-10.5 parent: 1 - - uid: 1251 + - uid: 1321 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-2.5 parent: 1 - - uid: 1252 + - uid: 1322 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 1 - - uid: 1253 + - uid: 1323 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 1254 + - uid: 1324 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-3.5 parent: 1 - - uid: 1255 + - uid: 1325 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 1 + - uid: 1326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1 + - uid: 1327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 1 + - uid: 1328 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 1 + - uid: 1329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-26.5 + parent: 1 + - uid: 1330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-26.5 + parent: 1 + - uid: 1331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 1 + - uid: 1332 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 1 + - uid: 1333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1 + - uid: 1334 components: - type: Transform - pos: -5.5,-17.5 + rot: -1.5707963267948966 rad + pos: 1.5,4.5 parent: 1 - - uid: 1256 + - uid: 1335 components: - type: Transform - pos: -3.5,-21.5 + rot: 1.5707963267948966 rad + pos: -1.5,3.5 parent: 1 - proto: PoweredlightRed entities: - - uid: 1257 + - uid: 1336 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,5.5 parent: 1 - - uid: 1258 + - uid: 1337 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,10.5 parent: 1 - - uid: 1259 + - uid: 1338 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,10.5 parent: 1 - - uid: 1260 + - uid: 1339 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-18.5 parent: 1 - - uid: 1261 + - uid: 1340 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,7.5 parent: 1 - - uid: 1262 + - uid: 1341 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-6.5 parent: 1 - - uid: 1263 + - uid: 1342 components: - type: Transform rot: 1.5707963267948966 rad @@ -12517,43 +13367,43 @@ entities: parent: 1 - proto: PoweredSmallLight entities: - - uid: 1264 + - uid: 1343 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-30.5 parent: 1 - - uid: 1265 + - uid: 1344 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-28.5 parent: 1 - - uid: 1266 + - uid: 1345 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 1267 + - uid: 1346 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,6.5 parent: 1 - - uid: 1268 + - uid: 1347 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-23.5 parent: 1 - - uid: 1269 + - uid: 1348 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-29.5 parent: 1 - - uid: 1270 + - uid: 1349 components: - type: Transform rot: -1.5707963267948966 rad @@ -12561,7 +13411,7 @@ entities: parent: 1 - proto: PoweredSmallLightMaintenanceRed entities: - - uid: 1271 + - uid: 1350 components: - type: Transform rot: 1.5707963267948966 rad @@ -12569,230 +13419,242 @@ entities: parent: 1 - proto: Rack entities: - - uid: 1272 + - uid: 1351 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-17.5 parent: 1 - - uid: 1273 + - uid: 1352 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-28.5 parent: 1 - - uid: 1274 + - uid: 1353 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-28.5 parent: 1 - - uid: 1275 + - uid: 1354 components: - type: Transform pos: -3.5,-9.5 parent: 1 - - uid: 1276 + - uid: 1355 components: - type: Transform pos: -3.5,-8.5 parent: 1 - - uid: 1277 + - uid: 1356 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,9.5 parent: 1 - - uid: 1278 + - uid: 1357 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,6.5 parent: 1 - - uid: 1279 + - uid: 1358 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 1 - - uid: 1280 + - uid: 1359 components: - type: Transform pos: 11.5,-23.5 parent: 1 - - uid: 1805 + - uid: 1360 components: - type: Transform pos: -1.5,4.5 parent: 1 - proto: Railing entities: - - uid: 1281 + - uid: 1361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-25.5 + parent: 1 + - uid: 1362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-25.5 + parent: 1 + - uid: 1363 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,7.5 parent: 1 - - uid: 1282 + - uid: 1364 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-6.5 parent: 1 - - uid: 1283 + - uid: 1365 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-7.5 parent: 1 - - uid: 1284 + - uid: 1366 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-26.5 parent: 1 - - uid: 1285 + - uid: 1367 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-24.5 parent: 1 - - uid: 1286 + - uid: 1368 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-17.5 parent: 1 - - uid: 1287 + - uid: 1369 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-26.5 parent: 1 - - uid: 1288 + - uid: 1370 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-24.5 parent: 1 - - uid: 1289 + - uid: 1371 components: - type: Transform pos: -6.5,-4.5 parent: 1 - - uid: 1290 + - uid: 1372 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-5.5 parent: 1 - - uid: 1291 + - uid: 1373 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-5.5 parent: 1 - - uid: 1292 + - uid: 1374 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,1.5 parent: 1 - - uid: 1293 + - uid: 1375 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 1294 + - uid: 1376 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 1295 + - uid: 1377 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-8.5 parent: 1 - - uid: 1296 + - uid: 1378 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-19.5 parent: 1 - - uid: 1297 + - uid: 1379 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-18.5 parent: 1 - - uid: 1298 + - uid: 1380 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-8.5 parent: 1 - - uid: 1299 + - uid: 1381 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-4.5 parent: 1 - - uid: 1300 + - uid: 1382 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-5.5 parent: 1 - - uid: 1301 + - uid: 1383 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-6.5 parent: 1 - - uid: 1302 + - uid: 1384 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,4.5 parent: 1 - - uid: 1303 + - uid: 1385 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,3.5 parent: 1 - - uid: 1304 + - uid: 1386 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-3.5 parent: 1 - - uid: 1305 + - uid: 1387 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-13.5 parent: 1 - - uid: 1306 + - uid: 1388 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-15.5 parent: 1 - - uid: 1307 + - uid: 1389 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-14.5 parent: 1 - - uid: 1308 + - uid: 1390 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,17.5 parent: 1 - - uid: 1309 + - uid: 1391 components: - type: Transform rot: 3.141592653589793 rad @@ -12800,147 +13662,153 @@ entities: parent: 1 - proto: RailingCorner entities: - - uid: 1310 + - uid: 1392 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,16.5 parent: 1 - - uid: 1311 + - uid: 1393 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-17.5 parent: 1 - - uid: 1312 + - uid: 1394 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-19.5 parent: 1 - - uid: 1313 + - uid: 1395 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,9.5 parent: 1 - - uid: 1314 + - uid: 1396 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,11.5 parent: 1 - - uid: 1315 + - uid: 1397 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,16.5 parent: 1 - - uid: 1316 + - uid: 1398 components: - type: Transform pos: 2.5,-5.5 parent: 1 - - uid: 1317 + - uid: 1399 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-16.5 parent: 1 - - uid: 1318 + - uid: 1400 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 1319 + - uid: 1401 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,0.5 parent: 1 - - uid: 1320 + - uid: 1402 components: - type: Transform pos: 13.5,-20.5 parent: 1 - - uid: 1321 + - uid: 1403 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-15.5 parent: 1 - - uid: 1322 + - uid: 1404 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-7.5 parent: 1 - - uid: 1323 + - uid: 1405 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,0.5 parent: 1 - - uid: 1324 + - uid: 1406 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-3.5 parent: 1 - - uid: 1325 + - uid: 1407 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,5.5 parent: 1 - - uid: 1326 + - uid: 1408 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-2.5 parent: 1 - - uid: 1327 + - uid: 1409 components: - type: Transform pos: 10.5,-4.5 parent: 1 + - uid: 1410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-23.5 + parent: 1 - proto: RailingCornerSmall entities: - - uid: 1328 + - uid: 1411 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-12.5 parent: 1 - - uid: 1329 + - uid: 1412 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 1 - - uid: 1330 + - uid: 1413 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-16.5 parent: 1 - - uid: 1331 + - uid: 1414 components: - type: Transform pos: -0.5,-27.5 parent: 1 - - uid: 1332 + - uid: 1415 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-19.5 parent: 1 - - uid: 1333 + - uid: 1416 components: - type: Transform pos: -9.5,-7.5 parent: 1 - - uid: 1334 + - uid: 1417 components: - type: Transform rot: -1.5707963267948966 rad @@ -12948,163 +13816,153 @@ entities: parent: 1 - proto: RCD entities: - - uid: 1335 + - uid: 1418 components: - type: Transform pos: 2.4895868,-28.36768 parent: 1 - proto: RCDAmmo entities: - - uid: 1336 + - uid: 1419 components: - type: Transform pos: 2.2552118,-28.539555 parent: 1 - - uid: 1337 + - uid: 1420 components: - type: Transform pos: 2.4114618,-28.539555 parent: 1 - proto: ReinforcedPlasmaWindow entities: - - uid: 1338 + - uid: 1421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-26.5 + parent: 1 + - uid: 1422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-25.5 + parent: 1 + - uid: 1423 components: - type: Transform pos: -12.5,-22.5 parent: 1 - - uid: 1339 + - uid: 1424 components: - type: Transform pos: -12.5,-23.5 parent: 1 - - uid: 1340 + - uid: 1425 components: - type: Transform pos: -12.5,-24.5 parent: 1 - - uid: 1341 + - uid: 1426 components: - type: Transform pos: 4.5,-17.5 parent: 1 - - uid: 1342 + - uid: 1427 components: - type: Transform pos: 5.5,-17.5 parent: 1 - - uid: 1343 + - uid: 1428 components: - type: Transform pos: 6.5,-17.5 parent: 1 - - uid: 1344 + - uid: 1429 components: - type: Transform pos: 5.5,-4.5 parent: 1 - - uid: 1345 + - uid: 1430 components: - type: Transform pos: 3.5,-4.5 parent: 1 - - uid: 1346 + - uid: 1431 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 1347 + - uid: 1432 components: - type: Transform pos: 4.5,-4.5 parent: 1 - proto: ReinforcedWindow entities: - - uid: 1348 + - uid: 1433 components: - type: Transform pos: -2.5,-8.5 parent: 1 - - uid: 1349 + - uid: 1434 components: - type: Transform pos: -2.5,-7.5 parent: 1 - - uid: 1350 + - uid: 1435 components: - type: Transform pos: -2.5,-9.5 parent: 1 - - uid: 1351 - components: - - type: Transform - pos: 2.5,-25.5 - parent: 1 - - uid: 1352 - components: - - type: Transform - pos: 1.5,-25.5 - parent: 1 - - uid: 1353 - components: - - type: Transform - pos: 1.5,-26.5 - parent: 1 - - uid: 1354 + - uid: 1436 components: - type: Transform pos: -2.5,-11.5 parent: 1 - - uid: 1355 + - uid: 1437 components: - type: Transform pos: -2.5,-15.5 parent: 1 - proto: RomaineBible entities: - - uid: 1356 + - uid: 1438 components: - type: Transform pos: 0.68456995,8.628288 parent: 1 - - uid: 1357 - components: - - type: Transform - pos: 4.667796,-18.42695 - parent: 1 -- proto: ScrapFaxMachine - entities: - - uid: 1358 + - uid: 1439 components: - type: Transform - pos: 5.4670944,-25.431835 + pos: 4.667796,-18.42695 parent: 1 - proto: ShardGlass entities: - - uid: 1359 + - uid: 1440 components: - type: Transform pos: -5.0402684,2.5269613 parent: 1 - proto: SheetPlasma1 entities: - - uid: 1360 + - uid: 1441 components: - type: Transform pos: -6.2016025,-9.712741 parent: 1 - - uid: 1361 + - uid: 1442 components: - type: Transform pos: -6.4895864,-9.781297 parent: 1 - - uid: 1362 + - uid: 1443 components: - type: Transform pos: -6.722717,-9.753875 parent: 1 - proto: Shower entities: - - uid: 1363 + - uid: 1444 components: - type: Transform rot: 1.5707963267948966 rad @@ -13114,7 +13972,7 @@ entities: fixtures: {} - proto: ShuttersNormalOpen entities: - - uid: 1364 + - uid: 1445 components: - type: Transform rot: 3.141592653589793 rad @@ -13122,8 +13980,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1367 - - uid: 1365 + - 1448 + - uid: 1446 components: - type: Transform rot: 3.141592653589793 rad @@ -13131,8 +13989,8 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1367 - - uid: 1366 + - 1448 + - uid: 1447 components: - type: Transform rot: 3.141592653589793 rad @@ -13140,10 +13998,10 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1367 + - 1448 - proto: SignalButton entities: - - uid: 1367 + - uid: 1448 components: - type: Transform rot: -1.5707963267948966 rad @@ -13151,29 +14009,29 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 1364: + 1445: - - Pressed - Toggle - 1366: + 1447: - - Pressed - Toggle - 1365: + 1446: - - Pressed - Toggle - - uid: 1368 + - uid: 1449 components: - type: Transform pos: 4.5,8.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 128: + 127: - - Pressed - Toggle - 136: + 135: - - Pressed - Toggle - - uid: 1369 + - uid: 1450 components: - type: Transform rot: -1.5707963267948966 rad @@ -13181,10 +14039,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 137: + 136: - - Pressed - Toggle - - uid: 1370 + - uid: 1451 components: - type: Transform rot: -1.5707963267948966 rad @@ -13192,12 +14050,12 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 127: + 126: - - Pressed - Toggle - proto: SignalButtonDirectional entities: - - uid: 1371 + - uid: 1452 components: - type: Transform rot: 1.5707963267948966 rad @@ -13205,10 +14063,10 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 135: + 134: - - Pressed - Toggle - - uid: 1372 + - uid: 1453 components: - type: Transform rot: 1.5707963267948966 rad @@ -13216,104 +14074,93 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 129: + 128: - - Pressed - Toggle - - uid: 1373 + - uid: 1454 components: - type: Transform pos: -7.5,-4.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 133: + 132: - - Pressed - Toggle - - uid: 1374 + - uid: 1455 components: - type: Transform pos: 10.5,-20.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 134: + 133: - - Pressed - Toggle - proto: SignArmory entities: - - uid: 1375 + - uid: 1456 components: - type: Transform pos: 0.5,1.5 parent: 1 - proto: SignBridge entities: - - uid: 1376 + - uid: 1457 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-20.5 parent: 1 - - uid: 1377 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-22.5 - parent: 1 - - uid: 1378 - components: - - type: Transform - pos: 3.5,-23.5 - parent: 1 - proto: SignConference entities: - - uid: 1379 + - uid: 1458 components: - type: Transform pos: 0.5,-5.5 parent: 1 - proto: SignDirectionalDorms entities: - - uid: 1380 + - uid: 1459 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-22.5 parent: 1 - - uid: 1381 + - uid: 1460 components: - type: Transform pos: -8.5,-20.5 parent: 1 - proto: SignEngineering entities: - - uid: 1382 + - uid: 1461 components: - type: Transform pos: -1.5,-23.5 parent: 1 - proto: SignEVA entities: - - uid: 1383 + - uid: 1462 components: - type: Transform pos: 0.5,-12.5 parent: 1 - - uid: 1384 + - uid: 1463 components: - type: Transform pos: 0.5,-9.5 parent: 1 - proto: Sink entities: - - uid: 1385 + - uid: 1464 components: - type: Transform pos: -4.5,0.5 parent: 1 - proto: SinkWide entities: - - uid: 1386 + - uid: 1465 components: - type: Transform rot: 3.141592653589793 rad @@ -13321,21 +14168,21 @@ entities: parent: 1 - proto: SMESBasic entities: - - uid: 1387 + - uid: 1466 components: - type: Transform pos: -6.5,-28.5 parent: 1 - proto: SoapSyndie entities: - - uid: 1388 + - uid: 1467 components: - type: Transform pos: -6.4883375,-0.45261037 parent: 1 - proto: SodaDispenser entities: - - uid: 1389 + - uid: 1468 components: - type: Transform rot: 1.5707963267948966 rad @@ -13343,45 +14190,60 @@ entities: parent: 1 - proto: SpaceCash entities: - - uid: 1390 + - uid: 1469 components: - type: Transform pos: -2.3738375,9.803488 parent: 1 - - uid: 1391 + - uid: 1470 components: - type: Transform pos: -2.724327,9.426944 parent: 1 +- proto: SpeedLoader127x99 + entities: + - uid: 902 + components: + - type: Transform + parent: 895 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: StairDark entities: - - uid: 1392 + - uid: 1471 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 1393 + - uid: 1472 components: - type: Transform pos: -4.5,-5.5 parent: 1 - proto: StairStage entities: - - uid: 1394 + - uid: 1473 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-25.5 parent: 1 + - uid: 1474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-24.5 + parent: 1 - proto: StairStageDark entities: - - uid: 1395 + - uid: 1475 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-25.5 parent: 1 - - uid: 1396 + - uid: 1476 components: - type: Transform rot: 1.5707963267948966 rad @@ -13389,27 +14251,27 @@ entities: parent: 1 - proto: StoolBar entities: - - uid: 1397 + - uid: 1477 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,7.5 parent: 1 - - uid: 1398 + - uid: 1478 components: - type: Transform pos: -2.5,10.5 parent: 1 - proto: SubstationBasic entities: - - uid: 1399 + - uid: 1479 components: - type: Transform pos: -6.5,-29.5 parent: 1 - proto: SuitStorageBase entities: - - uid: 57 + - uid: 56 components: - type: Transform pos: 5.5,4.5 @@ -13438,17 +14300,15 @@ entities: showEnts: False occludes: True ents: + - 59 - 60 - - 61 + - 57 - 58 - - 59 - - uid: 62 + - uid: 61 components: - type: Transform pos: 5.5,3.5 parent: 1 - - type: Lock - locked: False - type: EntityStorage air: volume: 200 @@ -13473,20 +14333,20 @@ entities: showEnts: False occludes: True ents: - - 66 - 65 - 64 - 63 + - 62 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 1400 + - uid: 1480 components: - type: Transform pos: -4.5,-30.5 parent: 1 - proto: Table entities: - - uid: 1401 + - uid: 1481 components: - type: Transform rot: 3.141592653589793 rad @@ -13494,154 +14354,165 @@ entities: parent: 1 - proto: TableCarpet entities: - - uid: 1402 + - uid: 1482 components: - type: Transform pos: -2.5,9.5 parent: 1 - proto: TableFancyPurple entities: - - uid: 1403 + - uid: 1483 components: - type: Transform pos: 3.5,-18.5 parent: 1 - - uid: 1404 + - uid: 1484 components: - type: Transform pos: 7.5,-18.5 parent: 1 - - uid: 1405 + - uid: 1485 components: - type: Transform pos: 8.5,-18.5 parent: 1 - - uid: 1406 + - uid: 1486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-24.5 + pos: 2.5,-18.5 parent: 1 - - uid: 1407 +- proto: TableGlass + entities: + - uid: 1487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-25.5 + pos: -6.5,-8.5 parent: 1 - - uid: 1408 + - uid: 1488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-26.5 + pos: -6.5,-9.5 parent: 1 - - uid: 1409 + - uid: 1489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-26.5 + pos: -5.5,-9.5 parent: 1 - - uid: 1410 + - uid: 1490 components: - type: Transform - pos: 2.5,-18.5 + pos: -4.5,-9.5 parent: 1 -- proto: TableGlass +- proto: TableReinforced entities: - - uid: 1411 + - uid: 1491 components: - type: Transform - pos: -6.5,-8.5 + rot: -1.5707963267948966 rad + pos: 7.5,-23.5 parent: 1 - - uid: 1412 + - uid: 1492 components: - type: Transform - pos: -6.5,-9.5 + rot: 3.141592653589793 rad + pos: 3.5,-25.5 parent: 1 - - uid: 1413 + - uid: 1493 components: - type: Transform - pos: -5.5,-9.5 + rot: 3.141592653589793 rad + pos: 7.5,-25.5 parent: 1 - - uid: 1414 + - uid: 1494 components: - type: Transform - pos: -4.5,-9.5 + rot: 3.141592653589793 rad + pos: 8.5,-25.5 parent: 1 -- proto: TableReinforced - entities: - - uid: 1415 + - uid: 1495 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-22.5 + pos: 4.5,-25.5 parent: 1 - - uid: 1416 + - uid: 1496 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-23.5 + pos: 6.5,-23.5 parent: 1 - - uid: 1417 + - uid: 1497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-23.5 + parent: 1 + - uid: 1498 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 - - uid: 1418 + - uid: 1499 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-28.5 parent: 1 - - uid: 1419 + - uid: 1500 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-29.5 parent: 1 - - uid: 1420 + - uid: 1501 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-28.5 parent: 1 - - uid: 1421 + - uid: 1502 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-26.5 parent: 1 - - uid: 1422 + - uid: 1503 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-25.5 parent: 1 - - uid: 1423 + - uid: 1504 components: - type: Transform - pos: 5.5,-25.5 + pos: 1.5,-22.5 + parent: 1 + - uid: 1505 + components: + - type: Transform + pos: 1.5,-23.5 parent: 1 - proto: TableWood entities: - - uid: 1424 + - uid: 1506 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 1425 + - uid: 1507 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,3.5 parent: 1 - - uid: 1426 + - uid: 1508 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,2.5 parent: 1 - - uid: 1427 + - uid: 1509 components: - type: Transform rot: -1.5707963267948966 rad @@ -13649,108 +14520,108 @@ entities: parent: 1 - proto: TelecomServer entities: - - uid: 1428 + - uid: 1510 components: - type: Transform pos: -1.5,-25.5 parent: 1 - proto: ThrusterDSMWarship entities: - - uid: 1429 + - uid: 1511 components: - type: Transform pos: 0.5,10.5 parent: 1 - - uid: 1430 + - uid: 1512 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-32.5 parent: 1 - - uid: 1431 + - uid: 1513 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-32.5 parent: 1 - - uid: 1432 + - uid: 1514 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-32.5 parent: 1 - - uid: 1433 + - uid: 1515 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-32.5 parent: 1 - - uid: 1434 + - uid: 1516 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-32.5 parent: 1 - - uid: 1435 + - uid: 1517 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-32.5 parent: 1 - - uid: 1436 + - uid: 1518 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-32.5 parent: 1 - - uid: 1437 + - uid: 1519 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-32.5 parent: 1 - - uid: 1438 + - uid: 1520 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,2.5 parent: 1 - - uid: 1439 + - uid: 1521 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,3.5 parent: 1 - - uid: 1440 + - uid: 1522 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,4.5 parent: 1 - - uid: 1441 + - uid: 1523 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,5.5 parent: 1 - - uid: 1442 + - uid: 1524 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-18.5 parent: 1 - - uid: 1443 + - uid: 1525 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-32.5 parent: 1 - - uid: 1444 + - uid: 1526 components: - type: Transform pos: -0.5,10.5 parent: 1 - - uid: 1445 + - uid: 1527 components: - type: Transform rot: 1.5707963267948966 rad @@ -13758,47 +14629,47 @@ entities: parent: 1 - proto: ToolboxElectricalFilled entities: - - uid: 1446 + - uid: 1528 components: - type: Transform pos: -3.4456987,-28.261448 parent: 1 - proto: ToolboxEmergencyFilled entities: - - uid: 1447 + - uid: 1529 components: - type: Transform pos: -6.497783,-25.358675 parent: 1 - proto: ToolboxMechanicalFilled entities: - - uid: 1448 + - uid: 1530 components: - type: Transform pos: -3.4456987,-28.464573 parent: 1 - proto: TradeGoodWine entities: - - uid: 1449 + - uid: 1531 components: - type: Transform pos: -5.5,7.5 parent: 1 - proto: TrashBag entities: - - uid: 1450 + - uid: 1532 components: - type: Transform pos: 8.414298,-1.3230925 parent: 1 - - uid: 1451 + - uid: 1533 components: - type: Transform pos: 8.646911,-1.12778 parent: 1 - proto: UnionfallNemesisMothershipComputer entities: - - uid: 1452 + - uid: 1534 components: - type: Transform rot: 3.141592653589793 rad @@ -13806,49 +14677,49 @@ entities: parent: 1 - proto: UnionfallShipNodeDSM entities: - - uid: 1453 + - uid: 1535 components: - type: Transform pos: -5.5,-13.5 parent: 1 - proto: VendingMachineCoffee entities: - - uid: 1454 + - uid: 1536 components: - type: Transform pos: 0.5,-18.5 parent: 1 - proto: VendingMachineSalvage entities: - - uid: 1455 + - uid: 1537 components: - type: Transform pos: -4.5,-17.5 parent: 1 - proto: VendingMachineStarkist entities: - - uid: 1456 + - uid: 1538 components: - type: Transform pos: 0.5,-20.5 parent: 1 - proto: VendingMachineSustenance entities: - - uid: 1457 + - uid: 1539 components: - type: Transform pos: -1.5,0.5 parent: 1 - proto: VendingMachineTankDispenserEVA entities: - - uid: 1458 + - uid: 1540 components: - type: Transform pos: 3.5,4.5 parent: 1 - proto: VendingMachineYouTool entities: - - uid: 1459 + - uid: 1541 components: - type: Transform rot: -1.5707963267948966 rad @@ -13856,1316 +14727,1318 @@ entities: parent: 1 - proto: WallPlastitanium entities: - - uid: 1460 + - uid: 1542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-22.5 + parent: 1 + - uid: 1543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-22.5 + parent: 1 + - uid: 1544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-22.5 + parent: 1 + - uid: 1545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-22.5 + parent: 1 + - uid: 1546 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,6.5 parent: 1 - - uid: 1461 + - uid: 1547 components: - type: Transform pos: 3.5,-17.5 parent: 1 - - uid: 1462 + - uid: 1548 components: - type: Transform pos: 12.5,-21.5 parent: 1 - - uid: 1463 + - uid: 1549 components: - type: Transform pos: 12.5,-22.5 parent: 1 - - uid: 1464 + - uid: 1550 components: - type: Transform pos: 12.5,-23.5 parent: 1 - - uid: 1465 + - uid: 1551 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,12.5 parent: 1 - - uid: 1466 + - uid: 1552 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,12.5 parent: 1 - - uid: 1467 + - uid: 1553 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,0.5 parent: 1 - - uid: 1468 + - uid: 1554 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-1.5 parent: 1 - - uid: 1469 + - uid: 1555 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,11.5 parent: 1 - - uid: 1470 + - uid: 1556 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,2.5 parent: 1 - - uid: 1471 + - uid: 1557 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,2.5 parent: 1 - - uid: 1472 + - uid: 1558 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,3.5 parent: 1 - - uid: 1473 + - uid: 1559 components: - type: Transform pos: -10.5,-26.5 parent: 1 - - uid: 1474 + - uid: 1560 components: - type: Transform pos: -12.5,-25.5 parent: 1 - - uid: 1475 + - uid: 1561 components: - type: Transform pos: -11.5,-25.5 parent: 1 - - uid: 1476 + - uid: 1562 components: - type: Transform pos: -11.5,-26.5 parent: 1 - - uid: 1477 + - uid: 1563 components: - type: Transform pos: -10.5,-27.5 parent: 1 - - uid: 1478 + - uid: 1564 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 1479 + - uid: 1565 components: - type: Transform pos: 0.5,-17.5 parent: 1 - - uid: 1480 + - uid: 1566 components: - type: Transform pos: 0.5,-16.5 parent: 1 - - uid: 1481 + - uid: 1567 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 1482 + - uid: 1568 components: - type: Transform pos: 0.5,-14.5 parent: 1 - - uid: 1483 + - uid: 1569 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 1484 + - uid: 1570 components: - type: Transform pos: 0.5,-12.5 parent: 1 - - uid: 1485 + - uid: 1571 components: - type: Transform pos: 0.5,-9.5 parent: 1 - - uid: 1486 + - uid: 1572 components: - type: Transform pos: 0.5,-8.5 parent: 1 - - uid: 1487 + - uid: 1573 components: - type: Transform pos: 0.5,-7.5 parent: 1 - - uid: 1488 + - uid: 1574 components: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 1489 + - uid: 1575 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 1490 + - uid: 1576 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 1491 + - uid: 1577 components: - type: Transform pos: -10.5,-16.5 parent: 1 - - uid: 1492 + - uid: 1578 components: - type: Transform pos: 11.5,-27.5 parent: 1 - - uid: 1493 + - uid: 1579 components: - type: Transform pos: -1.5,1.5 parent: 1 - - uid: 1494 + - uid: 1580 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 1495 + - uid: 1581 components: - type: Transform pos: -2.5,1.5 parent: 1 - - uid: 1496 + - uid: 1582 components: - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 1497 + - uid: 1583 components: - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 1498 + - uid: 1584 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 1499 + - uid: 1585 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 1500 + - uid: 1586 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 1 - - uid: 1501 + - uid: 1587 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,6.5 parent: 1 - - uid: 1502 + - uid: 1588 components: - type: Transform pos: -2.5,-10.5 parent: 1 - - uid: 1503 + - uid: 1589 components: - type: Transform pos: -10.5,-15.5 parent: 1 - - uid: 1504 + - uid: 1590 components: - type: Transform pos: -2.5,-12.5 parent: 1 - - uid: 1505 + - uid: 1591 components: - type: Transform pos: -2.5,-14.5 parent: 1 - - uid: 1506 + - uid: 1592 components: - type: Transform pos: -2.5,-16.5 parent: 1 - - uid: 1507 + - uid: 1593 components: - type: Transform pos: 1.5,-17.5 parent: 1 - - uid: 1508 + - uid: 1594 components: - type: Transform pos: 1.5,-18.5 parent: 1 - - uid: 1509 + - uid: 1595 components: - type: Transform pos: 1.5,-20.5 parent: 1 - - uid: 1510 + - uid: 1596 components: - type: Transform pos: 1.5,-21.5 parent: 1 - - uid: 1511 + - uid: 1597 components: - type: Transform pos: 0.5,-21.5 parent: 1 - - uid: 1512 + - uid: 1598 components: - type: Transform pos: -0.5,-21.5 parent: 1 - - uid: 1513 + - uid: 1599 components: - type: Transform pos: -0.5,-23.5 parent: 1 - - uid: 1514 + - uid: 1600 components: - type: Transform pos: -1.5,-23.5 parent: 1 - - uid: 1515 + - uid: 1601 components: - type: Transform pos: -2.5,-23.5 parent: 1 - - uid: 1516 + - uid: 1602 components: - type: Transform pos: -3.5,-23.5 parent: 1 - - uid: 1517 + - uid: 1603 components: - type: Transform pos: -4.5,-23.5 parent: 1 - - uid: 1518 + - uid: 1604 components: - type: Transform pos: -6.5,-23.5 parent: 1 - - uid: 1519 + - uid: 1605 components: - type: Transform pos: -3.5,-16.5 parent: 1 - - uid: 1520 + - uid: 1606 components: - type: Transform pos: -3.5,-17.5 parent: 1 - - uid: 1521 + - uid: 1607 components: - type: Transform pos: -3.5,-19.5 parent: 1 - - uid: 1522 + - uid: 1608 components: - type: Transform pos: -3.5,-20.5 parent: 1 - - uid: 1523 + - uid: 1609 components: - type: Transform pos: -4.5,-16.5 parent: 1 - - uid: 1524 + - uid: 1610 components: - type: Transform pos: -5.5,-16.5 parent: 1 - - uid: 1525 + - uid: 1611 components: - type: Transform pos: -6.5,-16.5 parent: 1 - - uid: 1526 + - uid: 1612 components: - type: Transform pos: -7.5,-16.5 parent: 1 - - uid: 1527 + - uid: 1613 components: - type: Transform pos: -8.5,-16.5 parent: 1 - - uid: 1528 + - uid: 1614 components: - type: Transform pos: -7.5,-19.5 parent: 1 - - uid: 1529 + - uid: 1615 components: - type: Transform pos: -7.5,-17.5 parent: 1 - - uid: 1530 + - uid: 1616 components: - type: Transform pos: -7.5,-20.5 parent: 1 - - uid: 1531 + - uid: 1617 components: - type: Transform pos: -6.5,-20.5 parent: 1 - - uid: 1532 + - uid: 1618 components: - type: Transform pos: -5.5,-20.5 parent: 1 - - uid: 1533 + - uid: 1619 components: - type: Transform pos: -4.5,-20.5 parent: 1 - - uid: 1534 + - uid: 1620 components: - type: Transform pos: -7.5,-22.5 parent: 1 - - uid: 1535 + - uid: 1621 components: - type: Transform pos: -7.5,-23.5 parent: 1 - - uid: 1536 + - uid: 1622 components: - type: Transform pos: -3.5,-10.5 parent: 1 - - uid: 1537 + - uid: 1623 components: - type: Transform pos: -4.5,-10.5 parent: 1 - - uid: 1538 + - uid: 1624 components: - type: Transform pos: -5.5,-10.5 parent: 1 - - uid: 1539 + - uid: 1625 components: - type: Transform pos: -6.5,-10.5 parent: 1 - - uid: 1540 + - uid: 1626 components: - type: Transform pos: -7.5,-10.5 parent: 1 - - uid: 1541 + - uid: 1627 components: - type: Transform pos: -8.5,-10.5 parent: 1 - - uid: 1542 + - uid: 1628 components: - type: Transform pos: -8.5,-14.5 parent: 1 - - uid: 1543 + - uid: 1629 components: - type: Transform pos: -8.5,-15.5 parent: 1 - - uid: 1544 + - uid: 1630 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 1545 + - uid: 1631 components: - type: Transform pos: -4.5,-2.5 parent: 1 - - uid: 1546 + - uid: 1632 components: - type: Transform pos: -5.5,-2.5 parent: 1 - - uid: 1547 + - uid: 1633 components: - type: Transform pos: -6.5,-2.5 parent: 1 - - uid: 1548 + - uid: 1634 components: - type: Transform pos: -7.5,-4.5 parent: 1 - - uid: 1549 + - uid: 1635 components: - type: Transform pos: -7.5,-3.5 parent: 1 - - uid: 1550 + - uid: 1636 components: - type: Transform pos: -9.5,-16.5 parent: 1 - - uid: 1551 + - uid: 1637 components: - type: Transform pos: -7.5,-6.5 parent: 1 - - uid: 1552 + - uid: 1638 components: - type: Transform pos: -7.5,-8.5 parent: 1 - - uid: 1553 + - uid: 1639 components: - type: Transform pos: -7.5,-9.5 parent: 1 - - uid: 1554 + - uid: 1640 components: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 1555 + - uid: 1641 components: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 1556 + - uid: 1642 components: - type: Transform pos: -5.5,1.5 parent: 1 - - uid: 1557 + - uid: 1643 components: - type: Transform pos: -6.5,1.5 parent: 1 - - uid: 1558 + - uid: 1644 components: - type: Transform pos: -7.5,1.5 parent: 1 - - uid: 1559 + - uid: 1645 components: - type: Transform pos: -11.5,-12.5 parent: 1 - - uid: 1560 + - uid: 1646 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 1561 + - uid: 1647 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 1562 + - uid: 1648 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 1563 + - uid: 1649 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 1564 + - uid: 1650 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 1565 + - uid: 1651 components: - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 1566 + - uid: 1652 components: - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 1567 + - uid: 1653 components: - type: Transform pos: -6.5,2.5 parent: 1 - - uid: 1568 + - uid: 1654 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 1569 + - uid: 1655 components: - type: Transform pos: -1.5,6.5 parent: 1 - - uid: 1570 + - uid: 1656 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 1571 + - uid: 1657 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 1572 + - uid: 1658 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 1573 + - uid: 1659 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 1574 + - uid: 1660 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 1575 + - uid: 1661 components: - type: Transform pos: 11.5,-26.5 parent: 1 - - uid: 1576 + - uid: 1662 components: - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 1577 + - uid: 1663 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 1578 + - uid: 1664 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 1579 + - uid: 1665 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 1580 + - uid: 1666 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 1581 + - uid: 1667 components: - type: Transform pos: -11.5,-10.5 parent: 1 - - uid: 1582 + - uid: 1668 components: - type: Transform pos: -11.5,-13.5 parent: 1 - - uid: 1583 + - uid: 1669 components: - type: Transform pos: -9.5,-11.5 parent: 1 - - uid: 1584 + - uid: 1670 components: - type: Transform pos: 12.5,-25.5 parent: 1 - - uid: 1585 + - uid: 1671 components: - type: Transform pos: -9.5,-9.5 parent: 1 - - uid: 1586 + - uid: 1672 components: - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 1587 + - uid: 1673 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-23.5 parent: 1 - - uid: 1588 + - uid: 1674 components: - type: Transform pos: -11.5,-14.5 parent: 1 - - uid: 1589 + - uid: 1675 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 1590 + - uid: 1676 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 1591 + - uid: 1677 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 1592 + - uid: 1678 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 1593 + - uid: 1679 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 1594 + - uid: 1680 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 1595 + - uid: 1681 components: - type: Transform pos: -11.5,-11.5 parent: 1 - - uid: 1596 + - uid: 1682 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 1597 + - uid: 1683 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 1598 + - uid: 1684 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 1599 + - uid: 1685 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 1600 + - uid: 1686 components: - type: Transform pos: 7.5,5.5 parent: 1 - - uid: 1601 + - uid: 1687 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 1602 + - uid: 1688 components: - type: Transform pos: 7.5,12.5 parent: 1 - - uid: 1603 + - uid: 1689 components: - type: Transform pos: -9.5,-10.5 parent: 1 - - uid: 1604 + - uid: 1690 components: - type: Transform pos: 5.5,8.5 parent: 1 - - uid: 1605 + - uid: 1691 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 1606 + - uid: 1692 components: - type: Transform pos: 2.5,-17.5 parent: 1 - - uid: 1607 - components: - - type: Transform - pos: 4.5,-26.5 - parent: 1 - - uid: 1608 + - uid: 1693 components: - type: Transform pos: 10.5,-23.5 parent: 1 - - uid: 1609 + - uid: 1694 components: - type: Transform pos: 10.5,-20.5 parent: 1 - - uid: 1610 + - uid: 1695 components: - type: Transform pos: 9.5,-22.5 parent: 1 - - uid: 1611 + - uid: 1696 components: - type: Transform pos: 9.5,-18.5 parent: 1 - - uid: 1612 + - uid: 1697 components: - type: Transform pos: 9.5,-19.5 parent: 1 - - uid: 1613 + - uid: 1698 components: - type: Transform pos: 9.5,-20.5 parent: 1 - - uid: 1614 - components: - - type: Transform - pos: 5.5,-26.5 - parent: 1 - - uid: 1615 + - uid: 1699 components: - type: Transform pos: 10.5,-24.5 parent: 1 - - uid: 1616 + - uid: 1700 components: - type: Transform pos: 11.5,-24.5 parent: 1 - - uid: 1617 + - uid: 1701 components: - type: Transform pos: 10.5,-25.5 parent: 1 - - uid: 1618 + - uid: 1702 components: - type: Transform pos: 9.5,-26.5 parent: 1 - - uid: 1619 + - uid: 1703 components: - type: Transform pos: 2.5,-21.5 parent: 1 - - uid: 1620 - components: - - type: Transform - pos: 3.5,-21.5 - parent: 1 - - uid: 1621 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 1 - - uid: 1622 + - uid: 1704 components: - type: Transform pos: 6.5,-22.5 parent: 1 - - uid: 1623 + - uid: 1705 components: - type: Transform pos: 8.5,-22.5 parent: 1 - - uid: 1624 - components: - - type: Transform - pos: 3.5,-23.5 - parent: 1 - - uid: 1625 + - uid: 1706 components: - type: Transform - pos: 3.5,-25.5 + rot: 3.141592653589793 rad + pos: 9.5,-25.5 parent: 1 - - uid: 1626 + - uid: 1707 components: - type: Transform - pos: 3.5,-26.5 + rot: 3.141592653589793 rad + pos: 9.5,-24.5 parent: 1 - - uid: 1627 + - uid: 1708 components: - type: Transform pos: 3.5,-27.5 parent: 1 - - uid: 1628 + - uid: 1709 components: - type: Transform pos: 4.5,-27.5 parent: 1 - - uid: 1629 + - uid: 1710 components: - type: Transform pos: 5.5,-27.5 parent: 1 - - uid: 1630 + - uid: 1711 components: - type: Transform pos: 6.5,-27.5 parent: 1 - - uid: 1631 + - uid: 1712 components: - type: Transform pos: 7.5,-27.5 parent: 1 - - uid: 1632 + - uid: 1713 components: - type: Transform pos: 8.5,-27.5 parent: 1 - - uid: 1633 + - uid: 1714 components: - type: Transform pos: -8.5,-20.5 parent: 1 - - uid: 1634 + - uid: 1715 components: - type: Transform pos: -10.5,-20.5 parent: 1 - - uid: 1635 + - uid: 1716 components: - type: Transform pos: -10.5,-21.5 parent: 1 - - uid: 1636 + - uid: 1717 components: - type: Transform pos: -11.5,-21.5 parent: 1 - - uid: 1637 + - uid: 1718 components: - type: Transform pos: -9.5,-26.5 parent: 1 - - uid: 1638 + - uid: 1719 components: - type: Transform pos: -8.5,-26.5 parent: 1 - - uid: 1639 + - uid: 1720 components: - type: Transform pos: -7.5,-29.5 parent: 1 - - uid: 1640 + - uid: 1721 components: - type: Transform pos: -7.5,-28.5 parent: 1 - - uid: 1641 + - uid: 1722 components: - type: Transform pos: -7.5,-24.5 parent: 1 - - uid: 1642 + - uid: 1723 components: - type: Transform pos: -7.5,-25.5 parent: 1 - - uid: 1643 + - uid: 1724 components: - type: Transform pos: -7.5,-26.5 parent: 1 - - uid: 1644 + - uid: 1725 components: - type: Transform pos: -7.5,-27.5 parent: 1 - - uid: 1645 + - uid: 1726 components: - type: Transform pos: -2.5,-24.5 parent: 1 - - uid: 1646 + - uid: 1727 components: - type: Transform pos: -2.5,-25.5 parent: 1 - - uid: 1647 + - uid: 1728 components: - type: Transform pos: -2.5,-26.5 parent: 1 - - uid: 1648 + - uid: 1729 components: - type: Transform pos: -2.5,-27.5 parent: 1 - - uid: 1649 + - uid: 1730 components: - type: Transform pos: -3.5,-27.5 parent: 1 - - uid: 1650 + - uid: 1731 components: - type: Transform pos: -4.5,-27.5 parent: 1 - - uid: 1651 + - uid: 1732 components: - type: Transform pos: -5.5,-27.5 parent: 1 - - uid: 1652 + - uid: 1733 components: - type: Transform pos: -6.5,-27.5 parent: 1 - - uid: 1653 + - uid: 1734 components: - type: Transform pos: 8.5,-28.5 parent: 1 - - uid: 1654 + - uid: 1735 components: - type: Transform pos: 8.5,-29.5 parent: 1 - - uid: 1655 + - uid: 1736 components: - type: Transform pos: -7.5,-30.5 parent: 1 - - uid: 1656 + - uid: 1737 components: - type: Transform pos: 8.5,-30.5 parent: 1 - - uid: 1657 + - uid: 1738 components: - type: Transform pos: 6.5,-31.5 parent: 1 - - uid: 1658 + - uid: 1739 components: - type: Transform pos: 2.5,-31.5 parent: 1 - - uid: 1659 + - uid: 1740 components: - type: Transform pos: -5.5,-31.5 parent: 1 - - uid: 1660 + - uid: 1741 components: - type: Transform pos: -1.5,-31.5 parent: 1 - - uid: 1661 + - uid: 1742 components: - type: Transform pos: 5.5,-31.5 parent: 1 - - uid: 1662 + - uid: 1743 components: - type: Transform pos: 4.5,-31.5 parent: 1 - - uid: 1663 + - uid: 1744 components: - type: Transform pos: 3.5,-31.5 parent: 1 - - uid: 1664 + - uid: 1745 components: - type: Transform pos: 1.5,-31.5 parent: 1 - - uid: 1665 + - uid: 1746 components: - type: Transform pos: 0.5,-31.5 parent: 1 - - uid: 1666 + - uid: 1747 components: - type: Transform pos: -0.5,-31.5 parent: 1 - - uid: 1667 + - uid: 1748 components: - type: Transform pos: -2.5,-31.5 parent: 1 - - uid: 1668 + - uid: 1749 components: - type: Transform pos: -3.5,-31.5 parent: 1 - - uid: 1669 + - uid: 1750 components: - type: Transform pos: -4.5,-31.5 parent: 1 - - uid: 1670 + - uid: 1751 components: - type: Transform pos: 2.5,-27.5 parent: 1 - - uid: 1671 + - uid: 1752 components: - type: Transform pos: 1.5,-28.5 parent: 1 - - uid: 1672 + - uid: 1753 components: - type: Transform pos: 1.5,-27.5 parent: 1 - - uid: 1673 + - uid: 1754 components: - type: Transform pos: 1.5,-29.5 parent: 1 - - uid: 1674 + - uid: 1755 components: - type: Transform pos: -1.5,-27.5 parent: 1 - - uid: 1675 + - uid: 1756 components: - type: Transform pos: -1.5,-28.5 parent: 1 - - uid: 1676 + - uid: 1757 components: - type: Transform pos: -1.5,-29.5 parent: 1 - - uid: 1677 + - uid: 1758 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 1678 + - uid: 1759 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,9.5 parent: 1 - - uid: 1679 + - uid: 1760 components: - type: Transform pos: -11.5,-19.5 parent: 1 - - uid: 1680 + - uid: 1761 components: - type: Transform pos: -10.5,-19.5 parent: 1 - - uid: 1681 + - uid: 1762 components: - type: Transform pos: -11.5,-15.5 parent: 1 - - uid: 1682 + - uid: 1763 components: - type: Transform pos: -11.5,-16.5 parent: 1 - - uid: 1683 + - uid: 1764 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,10.5 parent: 1 - - uid: 1684 + - uid: 1765 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,9.5 parent: 1 - - uid: 1685 + - uid: 1766 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-22.5 parent: 1 - - uid: 1686 + - uid: 1767 components: - type: Transform pos: -9.5,-12.5 parent: 1 - - uid: 1687 + - uid: 1768 components: - type: Transform pos: -10.5,-9.5 parent: 1 - - uid: 1688 + - uid: 1769 components: - type: Transform pos: 10.5,-27.5 parent: 1 - - uid: 1689 + - uid: 1770 components: - type: Transform pos: 10.5,-28.5 parent: 1 - - uid: 1690 + - uid: 1771 components: - type: Transform pos: -10.5,-14.5 parent: 1 - - uid: 1691 + - uid: 1772 components: - type: Transform pos: -10.5,-13.5 parent: 1 - - uid: 1692 + - uid: 1773 components: - type: Transform pos: -10.5,-10.5 parent: 1 - - uid: 1693 + - uid: 1774 components: - type: Transform pos: -10.5,-11.5 parent: 1 - - uid: 1694 - components: - - type: Transform - pos: 6.5,-26.5 - parent: 1 - - uid: 1695 + - uid: 1775 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 1696 + - uid: 1776 components: - type: Transform pos: 10.5,-26.5 parent: 1 - - uid: 1697 + - uid: 1777 components: - type: Transform pos: 12.5,-24.5 parent: 1 - - uid: 1698 + - uid: 1778 components: - type: Transform pos: 11.5,-25.5 parent: 1 - - uid: 1699 + - uid: 1779 components: - type: Transform pos: -10.5,-12.5 parent: 1 - - uid: 1700 + - uid: 1780 components: - type: Transform pos: -9.5,-14.5 parent: 1 - - uid: 1701 + - uid: 1781 components: - type: Transform pos: -9.5,-15.5 parent: 1 - - uid: 1702 + - uid: 1782 components: - type: Transform pos: -9.5,-13.5 parent: 1 - - uid: 1703 + - uid: 1783 components: - type: Transform pos: -9.5,-8.5 parent: 1 - - uid: 1704 + - uid: 1784 components: - type: Transform pos: -8.5,-2.5 parent: 1 - - uid: 1705 + - uid: 1785 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-2.5 parent: 1 - - uid: 1706 + - uid: 1786 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 1 - - uid: 1707 + - uid: 1787 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,1.5 parent: 1 - - uid: 1708 + - uid: 1788 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,5.5 parent: 1 + - uid: 1789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-23.5 + parent: 1 - proto: WallPlastitaniumCMM entities: - - uid: 1709 + - uid: 1790 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-4.5 parent: 1 - - uid: 1710 + - uid: 1791 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-7.5 parent: 1 - - uid: 1711 + - uid: 1792 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-3.5 parent: 1 - - uid: 1712 + - uid: 1793 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-1.5 parent: 1 - - uid: 1713 + - uid: 1794 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-0.5 parent: 1 - - uid: 1714 + - uid: 1795 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-8.5 parent: 1 - - uid: 1715 + - uid: 1796 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-9.5 parent: 1 - - uid: 1716 + - uid: 1797 components: - type: Transform rot: -1.5707963267948966 rad @@ -15173,410 +16046,459 @@ entities: parent: 1 - proto: WallPlastitaniumDiagonalNortheastCurved entities: - - uid: 1717 + - uid: 1798 components: - type: Transform pos: -12.5,-21.5 parent: 1 - - uid: 1718 + - uid: 1799 components: - type: Transform pos: -12.5,-16.5 parent: 1 - - uid: 1719 + - uid: 1800 components: - type: Transform pos: -7.5,6.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestCurved entities: - - uid: 1720 + - uid: 1801 components: - type: Transform pos: 12.5,-20.5 parent: 1 - proto: WallPlastitaniumDiagonalNorthwestHollow entities: - - uid: 1721 + - uid: 1802 components: - type: Transform pos: 10.5,-19.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastCurved entities: - - uid: 1722 + - uid: 1803 components: - type: Transform pos: -12.5,-19.5 parent: 1 - - uid: 1723 + - uid: 1804 components: - type: Transform pos: -7.5,-31.5 parent: 1 - proto: WallPlastitaniumDiagonalSoutheastHollow entities: - - uid: 1724 + - uid: 1805 components: - type: Transform pos: -8.5,-29.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestCurved entities: - - uid: 1725 + - uid: 1806 components: - type: Transform pos: 10.5,-17.5 parent: 1 - - uid: 1726 + - uid: 1807 components: - type: Transform pos: 8.5,-31.5 parent: 1 - proto: WallPlastitaniumDiagonalSouthwestHollow entities: - - uid: 1727 + - uid: 1808 components: - type: Transform pos: 9.5,-29.5 parent: 1 - proto: WallPlastitaniumDSM entities: - - uid: 1728 + - uid: 1809 components: - type: Transform pos: 5.5,15.5 parent: 1 - - uid: 1729 + - uid: 1810 components: - type: Transform pos: 6.5,13.5 parent: 1 - - uid: 1730 + - uid: 1811 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 1731 + - uid: 1812 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 1732 + - uid: 1813 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-27.5 parent: 1 - - uid: 1733 + - uid: 1814 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-27.5 parent: 1 - - uid: 1734 + - uid: 1815 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-31.5 parent: 1 - - uid: 1735 + - uid: 1816 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-4.5 parent: 1 - - uid: 1736 + - uid: 1817 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 1737 + - uid: 1818 components: - type: Transform pos: 5.5,17.5 parent: 1 - - uid: 1738 + - uid: 1819 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 1739 + - uid: 1820 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-28.5 parent: 1 - - uid: 1740 + - uid: 1821 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-32.5 parent: 1 - - uid: 1741 + - uid: 1822 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-32.5 parent: 1 - - uid: 1742 + - uid: 1823 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-32.5 parent: 1 - - uid: 1743 + - uid: 1824 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,10.5 parent: 1 - - uid: 1744 + - uid: 1825 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 1745 + - uid: 1826 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,9.5 parent: 1 - - uid: 1746 + - uid: 1827 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-17.5 parent: 1 - - uid: 1747 + - uid: 1828 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,7.5 parent: 1 - - uid: 1748 + - uid: 1829 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,6.5 parent: 1 - - uid: 1749 + - uid: 1830 components: - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 1750 + - uid: 1831 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 1751 + - uid: 1832 components: - type: Transform pos: 2.5,15.5 parent: 1 - - uid: 1752 + - uid: 1833 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 1 - - uid: 1753 + - uid: 1834 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-4.5 parent: 1 - - uid: 1754 + - uid: 1835 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-4.5 parent: 1 - - uid: 1755 + - uid: 1836 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-17.5 parent: 1 - - uid: 1756 + - uid: 1837 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-17.5 parent: 1 - - uid: 1757 + - uid: 1838 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-27.5 parent: 1 - - uid: 1758 + - uid: 1839 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 1 - - uid: 1759 + - uid: 1840 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,10.5 parent: 1 - - uid: 1760 + - uid: 1841 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-32.5 parent: 1 - - uid: 1761 + - uid: 1842 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,2.5 parent: 1 - - uid: 1762 + - uid: 1843 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,2.5 parent: 1 - - uid: 1763 + - uid: 1844 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 1 - - uid: 1764 + - uid: 1845 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-28.5 parent: 1 - - uid: 1765 + - uid: 1846 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-31.5 parent: 1 - - uid: 1766 + - uid: 1847 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-0.5 parent: 1 - - uid: 1767 + - uid: 1848 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 1 - - uid: 1768 + - uid: 1849 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-13.5 parent: 1 - - uid: 1769 + - uid: 1850 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-12.5 parent: 1 - - uid: 1770 + - uid: 1851 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-2.5 parent: 1 - - uid: 1771 + - uid: 1852 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,12.5 parent: 1 - - uid: 1772 + - uid: 1853 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 1 - - uid: 1773 + - uid: 1854 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - uid: 1774 + - uid: 1855 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,9.5 parent: 1 - - uid: 1775 + - uid: 1856 components: - type: Transform pos: 5.5,16.5 parent: 1 - - uid: 1776 + - uid: 1857 components: - type: Transform pos: 5.5,13.5 parent: 1 - - uid: 1777 + - uid: 1858 components: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 1778 + - uid: 1859 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 1779 + - uid: 1860 components: - type: Transform pos: 3.5,18.5 parent: 1 - - uid: 1780 + - uid: 1861 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 1781 + - uid: 1862 components: - type: Transform pos: 6.5,15.5 parent: 1 - - uid: 1782 + - uid: 1863 components: - type: Transform pos: 5.5,18.5 parent: 1 - - uid: 1783 + - uid: 1864 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 1784 + - uid: 1865 components: - type: Transform pos: 5.5,14.5 parent: 1 - - uid: 1785 + - uid: 1866 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 1786 + - uid: 1867 components: - type: Transform pos: 3.5,17.5 parent: 1 +- proto: WardrobeBlack + entities: + - uid: 895 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 899 + - 898 + - 900 + - 897 + - 902 + - 901 + - 896 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 903 + components: + - type: Transform + pos: -9.5,-25.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 904 + - 912 + - 910 + - 906 + - 905 + - 907 + - 908 + - 913 + - 911 + - 909 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: WarpPointShip entities: - - uid: 1787 + - uid: 1868 components: - type: MetaData name: DSM Nemesis @@ -15586,22 +16508,38 @@ entities: parent: 1 - proto: WeaponCapacitorRecharger entities: - - uid: 1788 + - uid: 1869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-22.5 + pos: 1.5,-22.5 parent: 1 +- proto: WeaponDonorRevolverMadrugad + entities: + - uid: 985 + components: + - type: Transform + parent: 979 + - type: RevolverAmmoProvider + chambers: + - null + - null + - null + - null + - null + - null + - null + - type: Physics + canCollide: False - proto: WeaponFlareGun entities: - - uid: 1789 + - uid: 1870 components: - type: Transform pos: -5.634655,-19.159256 parent: 1 - proto: WeaponTurretNeedler entities: - - uid: 1790 + - uid: 1871 components: - type: Transform rot: 1.5707963267948966 rad @@ -15632,10 +16570,10 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleId: 924 + linkedConsoleId: 950 - type: Battery startingCharge: 0 - - uid: 1791 + - uid: 1872 components: - type: Transform rot: -1.5707963267948966 rad @@ -15668,8 +16606,8 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 924 - - uid: 1792 + linkedConsoleId: 950 + - uid: 1873 components: - type: Transform rot: -1.5707963267948966 rad @@ -15702,8 +16640,8 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 924 - - uid: 1793 + linkedConsoleId: 950 + - uid: 1874 components: - type: Transform rot: 1.5707963267948966 rad @@ -15736,10 +16674,10 @@ entities: occludes: True ents: [] - type: PointCannon - linkedConsoleId: 924 + linkedConsoleId: 950 - proto: WeaponTurretPDT entities: - - uid: 1794 + - uid: 1875 components: - type: Transform rot: 3.141592653589793 rad @@ -15762,10 +16700,10 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleId: 924 + linkedConsoleId: 950 - type: Battery startingCharge: 0 - - uid: 1795 + - uid: 1876 components: - type: Transform pos: 13.5,-25.5 @@ -15787,10 +16725,10 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleId: 924 + linkedConsoleId: 950 - type: Battery startingCharge: 0 - - uid: 1796 + - uid: 1877 components: - type: Transform rot: -1.5707963267948966 rad @@ -15813,10 +16751,10 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleId: 924 + linkedConsoleId: 950 - type: Battery startingCharge: 0 - - uid: 1797 + - uid: 1878 components: - type: Transform pos: 7.5,-32.5 @@ -15838,10 +16776,10 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleId: 924 + linkedConsoleId: 950 - type: Battery startingCharge: 0 - - uid: 1798 + - uid: 1879 components: - type: Transform pos: -6.5,-32.5 @@ -15863,10 +16801,10 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleId: 924 + linkedConsoleId: 950 - type: Battery startingCharge: 0 - - uid: 1799 + - uid: 1880 components: - type: Transform rot: 3.141592653589793 rad @@ -15889,10 +16827,10 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleId: 924 + linkedConsoleId: 950 - type: Battery startingCharge: 0 - - uid: 1800 + - uid: 1881 components: - type: Transform rot: -1.5707963267948966 rad @@ -15915,12 +16853,12 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleId: 924 + linkedConsoleId: 950 - type: Battery startingCharge: 0 - proto: WeaponTurretVulcan entities: - - uid: 1801 + - uid: 1882 components: - type: Transform rot: 1.5707963267948966 rad @@ -15951,10 +16889,10 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleId: 924 + linkedConsoleId: 950 - type: Battery startingCharge: 0 - - uid: 1802 + - uid: 1883 components: - type: Transform rot: 1.5707963267948966 rad @@ -15985,18 +16923,18 @@ entities: - type: ApcPowerReceiver powerLoad: 5 - type: PointCannon - linkedConsoleId: 924 + linkedConsoleId: 950 - type: Battery startingCharge: 0 - proto: WindoorSecure entities: - - uid: 1803 + - uid: 1884 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 - - uid: 1804 + - uid: 1885 components: - type: Transform rot: 1.5707963267948966 rad diff --git a/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMShipCaptainNote.yml b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMShipCaptainNote.yml new file mode 100644 index 00000000000..33c75d4cff1 --- /dev/null +++ b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallDSMShipCaptainNote.yml @@ -0,0 +1,65 @@ +- type: entity + parent: Paper + id: UnionfallDSMShipCaptainNote + name: engineering corps report + components: + - type: Paper + content: | + REGIMENT BATTALION + ENGINEERING CORPS REPORT + + Sir, + + I do not wish to speak poorly, + but given our trust I must be honest. + + Keeping this rusted wreck running + is a miracle. The ship is literally + falling apart. + + Supplies have been scarce, the same + engine oil has circulated far too long, + and much of the vessel has rusted and + become filthy. + + Some of the weapons were also corroded. + We emptied them to remove the rust. + + Be sure to reload them before battle. + + ------------------------------------------------ + + SHIP STATUS + + To improve your survival chances in the + upcoming engagements we relocated the + bridge to a more secure position. + + The move was rushed however, and some + prisoners have already turned the old + bridge into a makeshift bar. + + Please excuse the ship's shortcomings. + + The prisoners we carry must either reach + redemption soon, or we must reach our + destination before they worsen the + situation further. + + For the Kaiser! + + ------------------------------------------------ + + NOTE + + Your belongings have been moved to the + new bridge. + + We are aware that some items are missing. + During the relocation several prisoners + managed to loot part of your property. + + We recovered most of it, however we + suspect that your special gun may + currently be somewhere in the + dormitories. \ No newline at end of file diff --git a/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLShipCaptainNote.yml b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLShipCaptainNote.yml new file mode 100644 index 00000000000..a3ad6a19160 --- /dev/null +++ b/Resources/Prototypes/_Crescent/Entities/Objects/Misc/UnionfallNCWLShipCaptainNote.yml @@ -0,0 +1,54 @@ +- type: entity + parent: Paper + id: UnionfallNCWLShipCaptainNote + name: Unionfallnotes + components: + - type: Paper + content: | + NEW CRESCENT WORKERS LEAGUE + ENGINEERING SECTION REPORT + + Comrade Commander, + + Since the loss of our station we + have received no supplies and have + been travelling for a considerable + time. + + I understand that your expectation + of me is to keep this vessel + operational. + + However, without resupply for much + longer, I fear the ship will + eventually lose its ability to + function if we do not reach our + new home soon. + + ------------------------------------------------ + + ENGINEERING STATUS + + My intention is not to damage + morale. + + The engineering team is already + working tirelessly to keep the + ship together and I am doing my + best to maintain their spirits. + + This information remains strictly + between you and me. + + I have not informed them of the + situation. + + To keep morale high I continue + to assure them that everything + is under control. + + ------------------------------------------------ + + Everything for the Cause. + + Glory to the Workers. \ No newline at end of file diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_cadet.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_cadet.yml index fe08e5af975..c613d5e46ef 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_cadet.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_cadet.yml @@ -53,11 +53,11 @@ pocket2: ExGrenade ears: ClothingHeadsetEmpire id: LevymanPDA - suitstorage: WeaponSniperDSMLegax + suitstorage: JetpackBlackFilled eyes: ClothingEyesHudSecurity inhand: - UnionfallDSMCadetNote - - JetpackBlackFilled + storage: back: - ClothingMaskImperialCombatGasmask diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_leader.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_leader.yml index 8d42e7c4197..5ba7799ecd9 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_leader.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_leader.yml @@ -92,7 +92,7 @@ id: KnightPDA belt: ClothingBeltAssaultFilledAdjutant pocket1: DoubleEmergencyOxygenTankFilled - pocket2: SyndicateWhistle + pocket2: Whistle ears: ClothingHeadsetEmpire suitstorage: WeaponSniperDSMLegax eyes: ClothingEyesHudSecurity diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_officer.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_officer.yml index cec0977a474..70d0c330372 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_officer.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_officer.yml @@ -91,7 +91,7 @@ id: KnightPDA belt: ClothingBeltAssaultFilledAdjutant pocket1: DoubleEmergencyOxygenTankFilled - pocket2: SyndicateWhistle + pocket2: Whistle ears: ClothingHeadsetEmpire suitstorage: WeaponSniperDSMLegax eyes: ClothingEyesHudSecurity diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_captain.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_captain.yml index 44724fdca52..403deaedb45 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_captain.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_captain.yml @@ -91,13 +91,14 @@ id: KnightPDA belt: ClothingBeltAssaultFilledCrew pocket1: DoubleEmergencyOxygenTankFilled + pocket2: WeaponPistolNeoVolker + suitstorage: JetpackBlackFilled ears: ClothingHeadsetEmpire eyes: ClothingEyesHudSecurity inhand: - - JetpackBlackFilled + - UnionfallDSMShipCaptainNote storage: back: - - ClothingMaskImperialCombatGasmask - - WeaponPistolNeoVolker - - HandHeldMassScannerEE - - CrowbarRed + - ClothingMaskImperialCombatGasmask + - HandHeldMassScannerEE + - CrowbarRed diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml index ebd5df0d171..e7f58070791 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallDSM/dsm_ship_crew.yml @@ -85,13 +85,14 @@ id: LevymanPDA belt: ClothingBeltAssaultFilledCrew pocket1: DoubleEmergencyOxygenTankFilled + pocket2: WeaponPistolNeoVolker ears: ClothingHeadsetEmpire eyes: ClothingEyesHudSecurity outerClothing: ClothingOuterHardsuitImperialWorker - suitstorage: WeaponPistolNeoVolker + suitstorage: JetpackBlackFilled inhand: - UnionfallDSMCadetNote - - JetpackBlackFilled + storage: back: - ClothingMaskImperialCombatGasmask diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml index 4551b2d92cd..e24fa65ac5b 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_cadet.yml @@ -58,12 +58,12 @@ pocket2: ExGrenade ears: ClothingHeadsetNCWL id: NCWLHomeguardSoldatPDA - suitstorage: WeaponPistolT91 + suitstorage: JetpackBlackFilled gloves: ClothingHandsGlovesCombat eyes: ClothingEyesGlassesNCWL inhand: - UnionfallNCWLCadetNote - - JetpackBlackFilled + storage: back: - ClothingMaskNCWLGasmask diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_leader.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_leader.yml index a4dfae52adc..533ad9b7305 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_leader.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_leader.yml @@ -89,7 +89,7 @@ head: ClothingHeadHatNCWLBeretAdmiral belt: ClothingBeltNCWLPouchesFilledKommissar pocket1: DoubleEmergencyOxygenTankFilled - pocket2: SyndicateWhistle + pocket2: Whistle back: ClothingBackpackNCWL suitstorage: WeaponSniperNCWLNovomosin gloves: ClothingHandsGlovesCombat diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_officer.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_officer.yml index 52c68af83f4..133ed1c969d 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_officer.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_officer.yml @@ -88,7 +88,7 @@ head: ClothingHeadHatNCWLKommissarHat belt: ClothingBeltNCWLPouchesFilledKommissar pocket1: DoubleEmergencyOxygenTankFilled - pocket2: SyndicateWhistle + pocket2: Whistle back: ClothingBackpackNCWL suitstorage: WeaponSniperNCWLNovomosin gloves: ClothingHandsGlovesCombat diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml index 80eb944c94c..a415ec18409 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_captain.yml @@ -96,6 +96,7 @@ inhand: - ClothingOuterHardsuitNCWLPetya + - UnionfallNCWLShipCaptainNote storage: back: diff --git a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_crew.yml b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_crew.yml index 5a7773b9786..2bcc915307a 100644 --- a/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_crew.yml +++ b/Resources/Prototypes/_Crescent/Roles/Jobs/UnionfallNCWL/ncwl_ship_crew.yml @@ -87,19 +87,18 @@ head: ClothingHeadHatNCWLBeret belt: ClothingBeltAssaultFilledCrew #drips better pocket1: DoubleEmergencyOxygenTankFilled + pocket2: WeaponPistolT91 back: ClothingBackpackNCWL gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitNCWLEngi eyes: ClothingEyesHudSecurity - suitstorage: WeaponPistolT91 + suitstorage: JetpackBlackFilled inhand: - UnionfallNCWLCadetNote - - JetpackBlackFilled - + storage: back: - - ClothingMaskNCWLGasmask - - WeaponPistolT91 - - HandHeldMassScannerEE - - CrowbarRed \ No newline at end of file + - ClothingMaskNCWLGasmask + - HandHeldMassScannerEE + - CrowbarRed \ No newline at end of file